@indigina/wms-api 0.0.19 → 0.0.21

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.
Files changed (42) hide show
  1. package/README.md +4 -2
  2. package/api/api.d.ts +3 -1
  3. package/api/dcSummary.service.d.ts +37 -0
  4. package/esm2022/api/api.mjs +4 -2
  5. package/esm2022/api/dcSummary.service.mjs +142 -0
  6. package/esm2022/api/health.service.mjs +7 -7
  7. package/esm2022/api/permissions.service.mjs +7 -7
  8. package/esm2022/api/reports.service.mjs +7 -7
  9. package/esm2022/api/user.service.mjs +7 -7
  10. package/esm2022/api.module.mjs +5 -5
  11. package/esm2022/configuration.mjs +1 -1
  12. package/esm2022/model/column.mjs +1 -1
  13. package/esm2022/model/commandStatusResult.mjs +1 -2
  14. package/esm2022/model/currentUser.mjs +1 -2
  15. package/esm2022/model/dashboardReportGroup.mjs +1 -1
  16. package/esm2022/model/dashboardReports.mjs +1 -1
  17. package/esm2022/model/dispatchSummary.mjs +12 -0
  18. package/esm2022/model/embedReportInfoModel.mjs +1 -1
  19. package/esm2022/model/embedTokenDto.mjs +1 -2
  20. package/esm2022/model/failures.mjs +1 -2
  21. package/esm2022/model/modelError.mjs +1 -1
  22. package/esm2022/model/models.mjs +2 -1
  23. package/esm2022/model/powerBiTenant.mjs +1 -2
  24. package/esm2022/model/setNewFeaturesVisibilityCommand.mjs +1 -2
  25. package/esm2022/model/userPermissions.mjs +1 -2
  26. package/fesm2022/indigina-wms-api.mjs +174 -37
  27. package/fesm2022/indigina-wms-api.mjs.map +1 -1
  28. package/model/column.d.ts +0 -1
  29. package/model/commandStatusResult.d.ts +0 -1
  30. package/model/currentUser.d.ts +0 -1
  31. package/model/dashboardReportGroup.d.ts +0 -1
  32. package/model/dashboardReports.d.ts +0 -1
  33. package/model/dispatchSummary.d.ts +17 -0
  34. package/model/embedReportInfoModel.d.ts +0 -1
  35. package/model/embedTokenDto.d.ts +0 -1
  36. package/model/failures.d.ts +0 -1
  37. package/model/modelError.d.ts +0 -1
  38. package/model/models.d.ts +1 -0
  39. package/model/powerBiTenant.d.ts +0 -1
  40. package/model/setNewFeaturesVisibilityCommand.d.ts +0 -1
  41. package/model/userPermissions.d.ts +0 -1
  42. package/package.json +2 -2
@@ -155,7 +155,139 @@ class Configuration {
155
155
  * Wms.API.Client
156
156
  * WMS API Client for Angular applications
157
157
  *
158
- * The version of the OpenAPI document: v1
158
+ *
159
+ *
160
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
161
+ * https://openapi-generator.tech
162
+ * Do not edit the class manually.
163
+ */
164
+ /* tslint:disable:no-unused-variable member-ordering */
165
+ class DcSummaryService {
166
+ httpClient;
167
+ basePath = 'http://localhost';
168
+ defaultHeaders = new HttpHeaders();
169
+ configuration = new Configuration();
170
+ encoder;
171
+ constructor(httpClient, basePath, configuration) {
172
+ this.httpClient = httpClient;
173
+ if (configuration) {
174
+ this.configuration = configuration;
175
+ }
176
+ if (typeof this.configuration.basePath !== 'string') {
177
+ const firstBasePath = Array.isArray(basePath) ? basePath[0] : undefined;
178
+ if (firstBasePath != undefined) {
179
+ basePath = firstBasePath;
180
+ }
181
+ if (typeof basePath !== 'string') {
182
+ basePath = this.basePath;
183
+ }
184
+ this.configuration.basePath = basePath;
185
+ }
186
+ this.encoder = this.configuration.encoder || new CustomHttpParameterCodec();
187
+ }
188
+ // @ts-ignore
189
+ addToHttpParams(httpParams, value, key) {
190
+ if (typeof value === "object" && value instanceof Date === false) {
191
+ httpParams = this.addToHttpParamsRecursive(httpParams, value);
192
+ }
193
+ else {
194
+ httpParams = this.addToHttpParamsRecursive(httpParams, value, key);
195
+ }
196
+ return httpParams;
197
+ }
198
+ addToHttpParamsRecursive(httpParams, value, key) {
199
+ if (value == null) {
200
+ return httpParams;
201
+ }
202
+ if (typeof value === "object") {
203
+ if (Array.isArray(value)) {
204
+ value.forEach(elem => httpParams = this.addToHttpParamsRecursive(httpParams, elem, key));
205
+ }
206
+ else if (value instanceof Date) {
207
+ if (key != null) {
208
+ httpParams = httpParams.append(key, value.toISOString().substring(0, 10));
209
+ }
210
+ else {
211
+ throw Error("key may not be null if value is Date");
212
+ }
213
+ }
214
+ else {
215
+ Object.keys(value).forEach(k => httpParams = this.addToHttpParamsRecursive(httpParams, value[k], key != null ? `${key}.${k}` : k));
216
+ }
217
+ }
218
+ else if (key != null) {
219
+ httpParams = httpParams.append(key, value);
220
+ }
221
+ else {
222
+ throw Error("key may not be null if value is not object or array");
223
+ }
224
+ return httpParams;
225
+ }
226
+ getDispatchSummary(observe = 'body', reportProgress = false, options) {
227
+ let localVarHeaders = this.defaultHeaders;
228
+ let localVarHttpHeaderAcceptSelected = options && options.httpHeaderAccept;
229
+ if (localVarHttpHeaderAcceptSelected === undefined) {
230
+ // to determine the Accept header
231
+ const httpHeaderAccepts = [
232
+ 'application/json'
233
+ ];
234
+ localVarHttpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
235
+ }
236
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
237
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
238
+ }
239
+ let localVarHttpContext = options && options.context;
240
+ if (localVarHttpContext === undefined) {
241
+ localVarHttpContext = new HttpContext();
242
+ }
243
+ let localVarTransferCache = options && options.transferCache;
244
+ if (localVarTransferCache === undefined) {
245
+ localVarTransferCache = true;
246
+ }
247
+ let responseType_ = 'json';
248
+ if (localVarHttpHeaderAcceptSelected) {
249
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
250
+ responseType_ = 'text';
251
+ }
252
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
253
+ responseType_ = 'json';
254
+ }
255
+ else {
256
+ responseType_ = 'blob';
257
+ }
258
+ }
259
+ let localVarPath = `/dc-summary/dispatch-summary`;
260
+ return this.httpClient.request('get', `${this.configuration.basePath}${localVarPath}`, {
261
+ context: localVarHttpContext,
262
+ responseType: responseType_,
263
+ withCredentials: this.configuration.withCredentials,
264
+ headers: localVarHeaders,
265
+ observe: observe,
266
+ transferCache: localVarTransferCache,
267
+ reportProgress: reportProgress
268
+ });
269
+ }
270
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: DcSummaryService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
271
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: DcSummaryService, providedIn: 'root' });
272
+ }
273
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: DcSummaryService, decorators: [{
274
+ type: Injectable,
275
+ args: [{
276
+ providedIn: 'root'
277
+ }]
278
+ }], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
279
+ type: Optional
280
+ }, {
281
+ type: Inject,
282
+ args: [BASE_PATH]
283
+ }] }, { type: Configuration, decorators: [{
284
+ type: Optional
285
+ }] }] });
286
+
287
+ /**
288
+ * Wms.API.Client
289
+ * WMS API Client for Angular applications
290
+ *
159
291
  *
160
292
  *
161
293
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -175,8 +307,9 @@ class HealthService {
175
307
  this.configuration = configuration;
176
308
  }
177
309
  if (typeof this.configuration.basePath !== 'string') {
178
- if (Array.isArray(basePath) && basePath.length > 0) {
179
- basePath = basePath[0];
310
+ const firstBasePath = Array.isArray(basePath) ? basePath[0] : undefined;
311
+ if (firstBasePath != undefined) {
312
+ basePath = firstBasePath;
180
313
  }
181
314
  if (typeof basePath !== 'string') {
182
315
  basePath = this.basePath;
@@ -268,10 +401,10 @@ class HealthService {
268
401
  reportProgress: reportProgress
269
402
  });
270
403
  }
271
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: HealthService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
272
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: HealthService, providedIn: 'root' });
404
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: HealthService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
405
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: HealthService, providedIn: 'root' });
273
406
  }
274
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: HealthService, decorators: [{
407
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: HealthService, decorators: [{
275
408
  type: Injectable,
276
409
  args: [{
277
410
  providedIn: 'root'
@@ -289,7 +422,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImpor
289
422
  * Wms.API.Client
290
423
  * WMS API Client for Angular applications
291
424
  *
292
- * The version of the OpenAPI document: v1
293
425
  *
294
426
  *
295
427
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -309,8 +441,9 @@ class PermissionsService {
309
441
  this.configuration = configuration;
310
442
  }
311
443
  if (typeof this.configuration.basePath !== 'string') {
312
- if (Array.isArray(basePath) && basePath.length > 0) {
313
- basePath = basePath[0];
444
+ const firstBasePath = Array.isArray(basePath) ? basePath[0] : undefined;
445
+ if (firstBasePath != undefined) {
446
+ basePath = firstBasePath;
314
447
  }
315
448
  if (typeof basePath !== 'string') {
316
449
  basePath = this.basePath;
@@ -401,10 +534,10 @@ class PermissionsService {
401
534
  reportProgress: reportProgress
402
535
  });
403
536
  }
404
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: PermissionsService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
405
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: PermissionsService, providedIn: 'root' });
537
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: PermissionsService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
538
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: PermissionsService, providedIn: 'root' });
406
539
  }
407
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: PermissionsService, decorators: [{
540
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: PermissionsService, decorators: [{
408
541
  type: Injectable,
409
542
  args: [{
410
543
  providedIn: 'root'
@@ -422,7 +555,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImpor
422
555
  * Wms.API.Client
423
556
  * WMS API Client for Angular applications
424
557
  *
425
- * The version of the OpenAPI document: v1
426
558
  *
427
559
  *
428
560
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -442,8 +574,9 @@ class ReportsService {
442
574
  this.configuration = configuration;
443
575
  }
444
576
  if (typeof this.configuration.basePath !== 'string') {
445
- if (Array.isArray(basePath) && basePath.length > 0) {
446
- basePath = basePath[0];
577
+ const firstBasePath = Array.isArray(basePath) ? basePath[0] : undefined;
578
+ if (firstBasePath != undefined) {
579
+ basePath = firstBasePath;
447
580
  }
448
581
  if (typeof basePath !== 'string') {
449
582
  basePath = this.basePath;
@@ -534,10 +667,10 @@ class ReportsService {
534
667
  reportProgress: reportProgress
535
668
  });
536
669
  }
537
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: ReportsService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
538
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: ReportsService, providedIn: 'root' });
670
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ReportsService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
671
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ReportsService, providedIn: 'root' });
539
672
  }
540
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: ReportsService, decorators: [{
673
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ReportsService, decorators: [{
541
674
  type: Injectable,
542
675
  args: [{
543
676
  providedIn: 'root'
@@ -555,7 +688,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImpor
555
688
  * Wms.API.Client
556
689
  * WMS API Client for Angular applications
557
690
  *
558
- * The version of the OpenAPI document: v1
559
691
  *
560
692
  *
561
693
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -575,8 +707,9 @@ class UserService {
575
707
  this.configuration = configuration;
576
708
  }
577
709
  if (typeof this.configuration.basePath !== 'string') {
578
- if (Array.isArray(basePath) && basePath.length > 0) {
579
- basePath = basePath[0];
710
+ const firstBasePath = Array.isArray(basePath) ? basePath[0] : undefined;
711
+ if (firstBasePath != undefined) {
712
+ basePath = firstBasePath;
580
713
  }
581
714
  if (typeof basePath !== 'string') {
582
715
  basePath = this.basePath;
@@ -720,10 +853,10 @@ class UserService {
720
853
  reportProgress: reportProgress
721
854
  });
722
855
  }
723
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: UserService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
724
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: UserService, providedIn: 'root' });
856
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: UserService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
857
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: UserService, providedIn: 'root' });
725
858
  }
726
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: UserService, decorators: [{
859
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: UserService, decorators: [{
727
860
  type: Injectable,
728
861
  args: [{
729
862
  providedIn: 'root'
@@ -737,13 +870,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImpor
737
870
  type: Optional
738
871
  }] }] });
739
872
 
740
- const APIS = [HealthService, PermissionsService, ReportsService, UserService];
873
+ const APIS = [DcSummaryService, HealthService, PermissionsService, ReportsService, UserService];
874
+
875
+ /**
876
+ * Wms.API.Client
877
+ * WMS API Client for Angular applications
878
+ *
879
+ *
880
+ *
881
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
882
+ * https://openapi-generator.tech
883
+ * Do not edit the class manually.
884
+ */
741
885
 
742
886
  /**
743
887
  * Wms.API.Client
744
888
  * WMS API Client for Angular applications
745
889
  *
746
- * The version of the OpenAPI document: v1
747
890
  *
748
891
  *
749
892
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -755,7 +898,6 @@ const APIS = [HealthService, PermissionsService, ReportsService, UserService];
755
898
  * Wms.API.Client
756
899
  * WMS API Client for Angular applications
757
900
  *
758
- * The version of the OpenAPI document: v1
759
901
  *
760
902
  *
761
903
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -767,7 +909,6 @@ const APIS = [HealthService, PermissionsService, ReportsService, UserService];
767
909
  * Wms.API.Client
768
910
  * WMS API Client for Angular applications
769
911
  *
770
- * The version of the OpenAPI document: v1
771
912
  *
772
913
  *
773
914
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -779,7 +920,6 @@ const APIS = [HealthService, PermissionsService, ReportsService, UserService];
779
920
  * Wms.API.Client
780
921
  * WMS API Client for Angular applications
781
922
  *
782
- * The version of the OpenAPI document: v1
783
923
  *
784
924
  *
785
925
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -791,7 +931,6 @@ const APIS = [HealthService, PermissionsService, ReportsService, UserService];
791
931
  * Wms.API.Client
792
932
  * WMS API Client for Angular applications
793
933
  *
794
- * The version of the OpenAPI document: v1
795
934
  *
796
935
  *
797
936
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -807,7 +946,6 @@ const PowerBiTenant = {
807
946
  * Wms.API.Client
808
947
  * WMS API Client for Angular applications
809
948
  *
810
- * The version of the OpenAPI document: v1
811
949
  *
812
950
  *
813
951
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -819,7 +957,6 @@ const PowerBiTenant = {
819
957
  * Wms.API.Client
820
958
  * WMS API Client for Angular applications
821
959
  *
822
- * The version of the OpenAPI document: v1
823
960
  *
824
961
  *
825
962
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -843,11 +980,11 @@ class ApiModule {
843
980
  'See also https://github.com/angular/angular/issues/20575');
844
981
  }
845
982
  }
846
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: ApiModule, deps: [{ token: ApiModule, optional: true, skipSelf: true }, { token: i1.HttpClient, optional: true }], target: i0.ɵɵFactoryTarget.NgModule });
847
- static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.1.3", ngImport: i0, type: ApiModule });
848
- static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: ApiModule });
983
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ApiModule, deps: [{ token: ApiModule, optional: true, skipSelf: true }, { token: i1.HttpClient, optional: true }], target: i0.ɵɵFactoryTarget.NgModule });
984
+ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.6", ngImport: i0, type: ApiModule });
985
+ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ApiModule });
849
986
  }
850
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: ApiModule, decorators: [{
987
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ApiModule, decorators: [{
851
988
  type: NgModule,
852
989
  args: [{
853
990
  imports: [],
@@ -867,5 +1004,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImpor
867
1004
  * Generated bundle index. Do not edit.
868
1005
  */
869
1006
 
870
- export { APIS, ApiModule, BASE_PATH, COLLECTION_FORMATS, Configuration, HealthService, PermissionsService, PowerBiTenant, ReportsService, UserService };
1007
+ export { APIS, ApiModule, BASE_PATH, COLLECTION_FORMATS, Configuration, DcSummaryService, HealthService, PermissionsService, PowerBiTenant, ReportsService, UserService };
871
1008
  //# sourceMappingURL=indigina-wms-api.mjs.map