@finos/legend-extension-dsl-service 0.0.2 → 0.0.4
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/lib/components/query/DSL_Service_LegendQueryApplicationPlugin.d.ts.map +1 -1
- package/lib/components/query/DSL_Service_LegendQueryApplicationPlugin.js +2 -2
- package/lib/components/query/DSL_Service_LegendQueryApplicationPlugin.js.map +1 -1
- package/lib/components/studio/QueryProductionizer.js +1 -2
- package/lib/components/studio/QueryProductionizer.js.map +1 -1
- package/lib/components/studio/ServiceQueryEditor.js +4 -5
- package/lib/components/studio/ServiceQueryEditor.js.map +1 -1
- package/lib/components/studio/ServiceQueryEditorReviewAction.js +1 -1
- package/lib/components/studio/ServiceQueryEditorReviewAction.js.map +1 -1
- package/lib/components/studio/UpdateProjectServiceQuerySetup.js +2 -2
- package/lib/components/studio/UpdateProjectServiceQuerySetup.js.map +1 -1
- package/lib/components/studio/UpdateServiceQuerySetup.js +2 -2
- package/lib/components/studio/UpdateServiceQuerySetup.js.map +1 -1
- package/lib/index.css +1 -1
- package/lib/package.json +2 -3
- package/lib/stores/studio/DSL_Service_LegendStudioRouter.d.ts.map +1 -1
- package/lib/stores/studio/DSL_Service_LegendStudioRouter.js +1 -2
- package/lib/stores/studio/DSL_Service_LegendStudioRouter.js.map +1 -1
- package/lib/stores/studio/QueryProductionizerStore.d.ts.map +1 -1
- package/lib/stores/studio/QueryProductionizerStore.js +7 -7
- package/lib/stores/studio/QueryProductionizerStore.js.map +1 -1
- package/lib/stores/studio/ServiceQueryEditorStore.js +2 -2
- package/lib/stores/studio/ServiceQueryEditorStore.js.map +1 -1
- package/lib/stores/studio/UpdateProjectServiceQuerySetupStore.js +3 -3
- package/lib/stores/studio/UpdateProjectServiceQuerySetupStore.js.map +1 -1
- package/lib/stores/studio/UpdateServiceQuerySetupStore.js +3 -3
- package/lib/stores/studio/UpdateServiceQuerySetupStore.js.map +1 -1
- package/package.json +13 -14
- package/src/components/query/DSL_Service_LegendQueryApplicationPlugin.tsx +2 -1
- package/src/components/studio/QueryProductionizer.tsx +1 -1
- package/src/components/studio/ServiceQueryEditor.tsx +5 -5
- package/src/components/studio/ServiceQueryEditorReviewAction.tsx +2 -2
- package/src/components/studio/UpdateProjectServiceQuerySetup.tsx +2 -2
- package/src/components/studio/UpdateServiceQuerySetup.tsx +2 -2
- package/src/stores/studio/DSL_Service_LegendStudioRouter.ts +4 -2
- package/src/stores/studio/QueryProductionizerStore.ts +19 -25
- package/src/stores/studio/ServiceQueryEditorStore.ts +2 -2
- package/src/stores/studio/UpdateProjectServiceQuerySetupStore.ts +3 -3
- package/src/stores/studio/UpdateServiceQuerySetupStore.ts +3 -3
|
@@ -110,7 +110,7 @@ export class UpdateServiceQuerySetupStore {
|
|
|
110
110
|
this.currentSnapshotService = undefined;
|
|
111
111
|
this.groupWorkspaces = [];
|
|
112
112
|
this.resetCurrentGroupWorkspace();
|
|
113
|
-
this.applicationStore.navigator.
|
|
113
|
+
this.applicationStore.navigator.goToLocation(
|
|
114
114
|
generateServiceQueryUpdaterSetupRoute(undefined, undefined, undefined),
|
|
115
115
|
);
|
|
116
116
|
}
|
|
@@ -198,7 +198,7 @@ export class UpdateServiceQuerySetupStore {
|
|
|
198
198
|
}
|
|
199
199
|
|
|
200
200
|
if (!project || !serviceEntity) {
|
|
201
|
-
this.applicationStore.navigator.
|
|
201
|
+
this.applicationStore.navigator.goToLocation(
|
|
202
202
|
generateServiceQueryUpdaterSetupRoute(
|
|
203
203
|
undefined,
|
|
204
204
|
undefined,
|
|
@@ -222,7 +222,7 @@ export class UpdateServiceQuerySetupStore {
|
|
|
222
222
|
entity: serviceEntity,
|
|
223
223
|
});
|
|
224
224
|
|
|
225
|
-
this.applicationStore.navigator.
|
|
225
|
+
this.applicationStore.navigator.goToLocation(
|
|
226
226
|
generateServiceQueryUpdaterSetupRoute(
|
|
227
227
|
project.groupId,
|
|
228
228
|
project.artifactId,
|