mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-26 17:24:56 +00:00
* added message events api * added export * added the getProcessInstance method in the queryservice * added form-cloud.service with method to submit the form. * added form-cloud.service with method to submit the form. * returning the error instead of throwing, which can be used in expected negative api assertions in the test. * added getTaskByNAme method to filter a task by unique task-name within a process-instance * linting fix * made correlation key as optional parameter * removed the unnecessary tslint disable statements * removed the unnecessary tslint disable statements and reverted the throw error statement * logging response is not needed * added return type * added return type
28 lines
1.0 KiB
TypeScript
28 lines
1.0 KiB
TypeScript
/*!
|
|
* @license
|
|
* Copyright 2019 Alfresco Software, Ltd.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
export * from './lib/core/public-api';
|
|
export * from './lib/form-cloud/public-api';
|
|
export * from './lib/material/public-api';
|
|
export * from './lib/content-services/public-api';
|
|
export * from './lib/material/public-api';
|
|
export * from './lib/process-services/public-api';
|
|
export * from './lib/process-services-cloud/public-api';
|
|
export * from './lib/testing.module';
|
|
|
|
export * from './lib/test.configuration';
|