eservices-core 1.0.297 → 1.0.298
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 +2 -1
- package/dist/index.js +15 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -75,7 +75,8 @@ import authService from "./services/AuthService";
|
|
|
75
75
|
import dataService from "./services/data-service";
|
|
76
76
|
import { CommunicationService as communicationService } from "./services/communication-service";
|
|
77
77
|
import viewService from "./services/view-service";
|
|
78
|
-
|
|
78
|
+
import processWizardService from "./services/process-wizard-service";
|
|
79
|
+
export { processWizardService, viewService, authService, dataService, communicationService };
|
|
79
80
|
import WidgetBreadcrumbs from "./widgets/breadcrumbs/widget-breadcrumbs.vue";
|
|
80
81
|
import WidgetCommunication from "./widgets/communication/widget-communication.vue";
|
|
81
82
|
import WidgetList from "./widgets/tables/WidgetList.vue";
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* eservices-core v1.0.
|
|
2
|
+
* eservices-core v1.0.298
|
|
3
3
|
* (c) 2022 ESERVICES
|
|
4
4
|
*/
|
|
5
5
|
'use strict';
|
|
@@ -5240,6 +5240,19 @@ class viewService {
|
|
|
5240
5240
|
}
|
|
5241
5241
|
}
|
|
5242
5242
|
|
|
5243
|
+
class processWizardService {
|
|
5244
|
+
static getStartConfig(process, entity) {
|
|
5245
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
5246
|
+
return Request(`/close-api/views/process-wizard/${process}/${entity}`, {
|
|
5247
|
+
method: 'GET',
|
|
5248
|
+
headers: {
|
|
5249
|
+
'Content-Type': 'application/json',
|
|
5250
|
+
},
|
|
5251
|
+
});
|
|
5252
|
+
});
|
|
5253
|
+
}
|
|
5254
|
+
}
|
|
5255
|
+
|
|
5243
5256
|
const _hoisted_1$7 = { class: "breadcrumb__title" };
|
|
5244
5257
|
var script$7 = /*#__PURE__*/ vue.defineComponent({
|
|
5245
5258
|
props: {
|
|
@@ -5684,5 +5697,6 @@ exports.authService = authService;
|
|
|
5684
5697
|
exports.communicationService = CommunicationService;
|
|
5685
5698
|
exports.dataService = dataService;
|
|
5686
5699
|
exports["default"] = index;
|
|
5700
|
+
exports.processWizardService = processWizardService;
|
|
5687
5701
|
exports.requestHandler = requestHandler;
|
|
5688
5702
|
exports.viewService = viewService;
|