eservices-core 1.0.515 → 1.0.516
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts
CHANGED
|
@@ -15,6 +15,7 @@ import { INotificationCard } from "./classes/NotificationSystem";
|
|
|
15
15
|
import { ListCell } from "./classes/List";
|
|
16
16
|
import { IListCell } from "./classes/new/List";
|
|
17
17
|
import { IAffectedEntity } from "./hooks/use-form-action";
|
|
18
|
+
import { IWizardFixedResponse } from "./services/process-wizard-service";
|
|
18
19
|
import { setupSocket, useSocket } from "./socket/use-socket";
|
|
19
20
|
import WidgetBreadcrumbs from "./widgets/breadcrumbs/widget-breadcrumbs.vue";
|
|
20
21
|
import WidgetList from "./widgets/list/widget-list.vue";
|
|
@@ -109,7 +110,7 @@ export { utils, Request };
|
|
|
109
110
|
/**
|
|
110
111
|
* Interfaces and Types
|
|
111
112
|
* */
|
|
112
|
-
export { IListCell, IListConfig, IFilterConfig, ISortConfig, ICustomerContext, IActionExecuteResult, IValidationEffect, INotificationCard, ApplicationType, IAffectedEntity };
|
|
113
|
+
export { IListCell, IListConfig, IFilterConfig, ISortConfig, ICustomerContext, IActionExecuteResult, IValidationEffect, INotificationCard, ApplicationType, IAffectedEntity, IWizardFixedResponse };
|
|
113
114
|
declare const _default: {
|
|
114
115
|
widgets: {
|
|
115
116
|
inputs: {
|
package/dist/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
export default class processWizardService {
|
|
2
2
|
static readonly url = "/close-api/views/process-wizard";
|
|
3
3
|
static getStartConfig(process: string, entity: string): Promise<IProcessWizard>;
|
|
4
|
-
static startProcess(process: string, entity: string): Promise<
|
|
5
|
-
static runStep(process: string, entity: string, stepName: string, token: string, values: any): Promise<
|
|
4
|
+
static startProcess(process: string, entity: string): Promise<IWizardFixedResponse>;
|
|
5
|
+
static runStep(process: string, entity: string, stepName: string, token: string, values: any): Promise<IWizardFixedResponse>;
|
|
6
6
|
}
|
|
7
7
|
interface IProcessWizard {
|
|
8
8
|
processName: string;
|
|
@@ -39,7 +39,7 @@ interface IWizardProcessResponse {
|
|
|
39
39
|
token: string;
|
|
40
40
|
validationResults: [];
|
|
41
41
|
}
|
|
42
|
-
declare type
|
|
42
|
+
export declare type IWizardFixedResponse = Omit<IWizardProcessResponse, 'createdEntites'> & {
|
|
43
43
|
createdEntities: IWizardProcessResponse['createdEntites'];
|
|
44
44
|
};
|
|
45
45
|
export {};
|