@veloceapps/api 12.0.0-17 → 12.0.0-19

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 (141) hide show
  1. package/esm2020/index.mjs +2 -0
  2. package/esm2020/src/index.mjs +16 -0
  3. package/esm2020/src/lib/api.module.mjs +60 -0
  4. package/esm2020/src/lib/services/account-api.service.mjs +87 -0
  5. package/esm2020/src/lib/services/auth.service.mjs +22 -0
  6. package/esm2020/src/lib/services/contracted-price-api.service.mjs +45 -0
  7. package/esm2020/src/lib/services/flow-state-api.mjs +142 -0
  8. package/esm2020/src/lib/services/offers-api.service.mjs +76 -0
  9. package/esm2020/src/lib/services/org-info-api.service.mjs +54 -0
  10. package/esm2020/src/lib/services/portals-api.service.mjs +76 -0
  11. package/esm2020/src/lib/services/promotions-api.service.mjs +68 -0
  12. package/esm2020/src/lib/services/rebate-program-api.service.mjs +68 -0
  13. package/esm2020/src/lib/services/rebate-type-api.service.mjs +68 -0
  14. package/esm2020/src/lib/services/sandbox-manager-api.service.mjs +94 -0
  15. package/esm2020/src/lib/services/stateful-configuration-api.mjs +51 -0
  16. package/esm2020/src/lib/types/auth.types.mjs +2 -0
  17. package/esm2020/src/lib/types/clone-request.types.mjs +2 -0
  18. package/esm2020/src/lib/types/delta-request.types.mjs +2 -0
  19. package/esm2020/src/lib/types/dto/offers-dto.types.mjs +2 -0
  20. package/esm2020/src/lib/types/index.mjs +6 -0
  21. package/esm2020/src/lib/types/org-info.types.mjs +2 -0
  22. package/esm2020/src/lib/types/search-request.types.mjs +2 -0
  23. package/esm2020/src/lib/types/stateful-configuration.types.mjs +2 -0
  24. package/esm2020/src/lib/utils/canvas.utils.mjs +33 -0
  25. package/esm2020/src/lib/utils/index.mjs +2 -0
  26. package/esm2020/v2/api-v2.module.mjs +70 -0
  27. package/esm2020/v2/index.mjs +4 -0
  28. package/esm2020/v2/services/cache-api.service.mjs +22 -0
  29. package/esm2020/v2/services/catalog-admin-api.service.mjs +192 -0
  30. package/esm2020/v2/services/catalog-api.service.mjs +90 -0
  31. package/esm2020/v2/services/configuration-processors-api.service.mjs +38 -0
  32. package/esm2020/v2/services/configuration-settings-api.service.mjs +89 -0
  33. package/esm2020/v2/services/context-definition-admin-api.service.mjs +78 -0
  34. package/esm2020/v2/services/document-attachment-api.service.mjs +66 -0
  35. package/esm2020/v2/services/endpoints-admin-api.service.mjs +79 -0
  36. package/esm2020/v2/services/flows-api.service.mjs +29 -0
  37. package/esm2020/v2/services/functions-admin-api.service.mjs +116 -0
  38. package/esm2020/v2/services/guided-sellings-admin-api.service.mjs +65 -0
  39. package/esm2020/v2/services/guided-sellings-api.service.mjs +37 -0
  40. package/esm2020/v2/services/index.mjs +24 -0
  41. package/esm2020/v2/services/orchestrations-admin-api.service.mjs +87 -0
  42. package/esm2020/v2/services/orchestrations-api.service.mjs +23 -0
  43. package/esm2020/v2/services/pcm-api.service.mjs +38 -0
  44. package/esm2020/v2/services/picklists-admin-api.service.mjs +41 -0
  45. package/esm2020/v2/services/products-admin-api.service.mjs +90 -0
  46. package/esm2020/v2/services/sales-transactions-api.service.mjs +52 -0
  47. package/esm2020/v2/services/salesforce-api.service.mjs +83 -0
  48. package/esm2020/v2/services/shopping-cart-settings-api.service.mjs +28 -0
  49. package/esm2020/v2/services/ui-definitions-admin-api.service.mjs +70 -0
  50. package/esm2020/v2/services/ui-templates-admin-api.service.mjs +286 -0
  51. package/esm2020/v2/services/veloce-objects-api.service.mjs +90 -0
  52. package/esm2020/v2/types/attachment.types.mjs +2 -0
  53. package/esm2020/v2/types/clone-request.types.mjs +2 -0
  54. package/esm2020/v2/types/dto/configuration-settings-dto.types.mjs +22 -0
  55. package/esm2020/v2/types/dto/ui-definition-dto.types.mjs +2 -0
  56. package/esm2020/v2/types/dto/ui-template-dto.types.mjs +2 -0
  57. package/esm2020/v2/types/function.types.mjs +2 -0
  58. package/esm2020/v2/types/index.mjs +7 -0
  59. package/esm2020/v2/types/pcm.types.mjs +2 -0
  60. package/esm2020/v2/types/procedure.types.mjs +2 -0
  61. package/esm2020/v2/types/sales-transaction.types.mjs +2 -0
  62. package/esm2020/v2/types/search-request.types.mjs +2 -0
  63. package/esm2020/v2/utils/ui-definition.utils.mjs +23 -0
  64. package/esm2020/v2/utils/ui-template.utils.mjs +13 -0
  65. package/esm2020/v2/veloceapps-api-v2.mjs +5 -0
  66. package/esm2020/veloceapps-api.mjs +5 -0
  67. package/fesm2015/veloceapps-api-v2.mjs +1726 -0
  68. package/fesm2015/veloceapps-api-v2.mjs.map +1 -0
  69. package/fesm2015/veloceapps-api.mjs +853 -0
  70. package/fesm2015/veloceapps-api.mjs.map +1 -0
  71. package/{fesm2022 → fesm2020}/veloceapps-api-v2.mjs +127 -128
  72. package/fesm2020/veloceapps-api-v2.mjs.map +1 -0
  73. package/{fesm2022 → fesm2020}/veloceapps-api.mjs +70 -70
  74. package/fesm2020/veloceapps-api.mjs.map +1 -0
  75. package/index.d.ts +1 -382
  76. package/package.json +19 -7
  77. package/src/index.d.ts +15 -0
  78. package/src/lib/api.module.d.ts +8 -0
  79. package/src/lib/services/account-api.service.d.ts +23 -0
  80. package/src/lib/services/auth.service.d.ts +11 -0
  81. package/src/lib/services/contracted-price-api.service.d.ts +16 -0
  82. package/src/lib/services/flow-state-api.d.ts +84 -0
  83. package/src/lib/services/offers-api.service.d.ts +19 -0
  84. package/src/lib/services/org-info-api.service.d.ts +19 -0
  85. package/src/lib/services/portals-api.service.d.ts +20 -0
  86. package/src/lib/services/promotions-api.service.d.ts +19 -0
  87. package/src/lib/services/rebate-program-api.service.d.ts +19 -0
  88. package/src/lib/services/rebate-type-api.service.d.ts +19 -0
  89. package/src/lib/services/sandbox-manager-api.service.d.ts +24 -0
  90. package/src/lib/services/stateful-configuration-api.d.ts +30 -0
  91. package/src/lib/types/auth.types.d.ts +4 -0
  92. package/src/lib/types/clone-request.types.d.ts +5 -0
  93. package/src/lib/types/delta-request.types.d.ts +5 -0
  94. package/src/lib/types/dto/offers-dto.types.d.ts +9 -0
  95. package/src/lib/types/index.d.ts +5 -0
  96. package/src/lib/types/org-info.types.d.ts +43 -0
  97. package/src/lib/types/search-request.types.d.ts +8 -0
  98. package/src/lib/types/stateful-configuration.types.d.ts +10 -0
  99. package/src/lib/utils/canvas.utils.d.ts +18 -0
  100. package/src/lib/utils/index.d.ts +1 -0
  101. package/v2/api-v2.module.d.ts +7 -0
  102. package/v2/index.d.ts +3 -562
  103. package/v2/services/cache-api.service.d.ts +11 -0
  104. package/v2/services/catalog-admin-api.service.d.ts +39 -0
  105. package/v2/services/catalog-api.service.d.ts +20 -0
  106. package/v2/services/configuration-processors-api.service.d.ts +14 -0
  107. package/v2/services/configuration-settings-api.service.d.ts +18 -0
  108. package/v2/services/context-definition-admin-api.service.d.ts +16 -0
  109. package/v2/services/document-attachment-api.service.d.ts +17 -0
  110. package/v2/services/endpoints-admin-api.service.d.ts +20 -0
  111. package/v2/services/flows-api.service.d.ts +13 -0
  112. package/v2/services/functions-admin-api.service.d.ts +25 -0
  113. package/v2/services/guided-sellings-admin-api.service.d.ts +20 -0
  114. package/v2/services/guided-sellings-api.service.d.ts +13 -0
  115. package/v2/services/index.d.ts +23 -0
  116. package/v2/services/orchestrations-admin-api.service.d.ts +21 -0
  117. package/v2/services/orchestrations-api.service.d.ts +12 -0
  118. package/v2/services/pcm-api.service.d.ts +12 -0
  119. package/v2/services/picklists-admin-api.service.d.ts +17 -0
  120. package/v2/services/products-admin-api.service.d.ts +21 -0
  121. package/v2/services/sales-transactions-api.service.d.ts +26 -0
  122. package/v2/services/salesforce-api.service.d.ts +26 -0
  123. package/v2/services/shopping-cart-settings-api.service.d.ts +14 -0
  124. package/v2/services/ui-definitions-admin-api.service.d.ts +18 -0
  125. package/v2/services/ui-templates-admin-api.service.d.ts +50 -0
  126. package/v2/services/veloce-objects-api.service.d.ts +23 -0
  127. package/v2/types/attachment.types.d.ts +4 -0
  128. package/v2/types/clone-request.types.d.ts +5 -0
  129. package/v2/types/dto/configuration-settings-dto.types.d.ts +9 -0
  130. package/v2/types/dto/ui-definition-dto.types.d.ts +7 -0
  131. package/v2/types/dto/ui-template-dto.types.d.ts +6 -0
  132. package/v2/types/function.types.d.ts +14 -0
  133. package/v2/types/index.d.ts +6 -0
  134. package/v2/types/pcm.types.d.ts +10 -0
  135. package/v2/types/procedure.types.d.ts +61 -0
  136. package/v2/types/sales-transaction.types.d.ts +13 -0
  137. package/v2/types/search-request.types.d.ts +8 -0
  138. package/v2/utils/ui-definition.utils.d.ts +5 -0
  139. package/v2/utils/ui-template.utils.d.ts +3 -0
  140. package/fesm2022/veloceapps-api-v2.mjs.map +0 -1
  141. package/fesm2022/veloceapps-api.mjs.map +0 -1
@@ -19,15 +19,14 @@ class CacheApiService {
19
19
  ...options,
20
20
  });
21
21
  }
22
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: CacheApiService, deps: [{ token: i1.BaseHttpService }], target: i0.ɵɵFactoryTarget.Injectable }); }
23
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: CacheApiService }); }
24
22
  }
25
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: CacheApiService, decorators: [{
23
+ CacheApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: CacheApiService, deps: [{ token: i1.BaseHttpService }], target: i0.ɵɵFactoryTarget.Injectable });
24
+ CacheApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: CacheApiService });
25
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: CacheApiService, decorators: [{
26
26
  type: Injectable
27
- }], ctorParameters: () => [{ type: i1.BaseHttpService }] });
27
+ }], ctorParameters: function () { return [{ type: i1.BaseHttpService }]; } });
28
28
 
29
29
  class CatalogAdminApiService {
30
- static { this.MAX_RESULTS = 60; }
31
30
  constructor(baseHttpService) {
32
31
  this.baseHttpService = baseHttpService;
33
32
  this.serviceUrl = '/v2/catalogs';
@@ -206,12 +205,13 @@ class CatalogAdminApiService {
206
205
  getImageUrl(catalogId, categoryId) {
207
206
  return `${this.serviceUrl}/${catalogId}/categories/${categoryId}/image`;
208
207
  }
209
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: CatalogAdminApiService, deps: [{ token: i1.BaseHttpService }], target: i0.ɵɵFactoryTarget.Injectable }); }
210
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: CatalogAdminApiService }); }
211
208
  }
212
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: CatalogAdminApiService, decorators: [{
209
+ CatalogAdminApiService.MAX_RESULTS = 60;
210
+ CatalogAdminApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: CatalogAdminApiService, deps: [{ token: i1.BaseHttpService }], target: i0.ɵɵFactoryTarget.Injectable });
211
+ CatalogAdminApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: CatalogAdminApiService });
212
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: CatalogAdminApiService, decorators: [{
213
213
  type: Injectable
214
- }], ctorParameters: () => [{ type: i1.BaseHttpService }] });
214
+ }], ctorParameters: function () { return [{ type: i1.BaseHttpService }]; } });
215
215
 
216
216
  class CatalogApiService {
217
217
  constructor(service) {
@@ -292,12 +292,12 @@ class CatalogApiService {
292
292
  params: params,
293
293
  });
294
294
  }
295
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: CatalogApiService, deps: [{ token: i1.BaseHttpService }], target: i0.ɵɵFactoryTarget.Injectable }); }
296
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: CatalogApiService }); }
297
295
  }
298
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: CatalogApiService, decorators: [{
296
+ CatalogApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: CatalogApiService, deps: [{ token: i1.BaseHttpService }], target: i0.ɵɵFactoryTarget.Injectable });
297
+ CatalogApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: CatalogApiService });
298
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: CatalogApiService, decorators: [{
299
299
  type: Injectable
300
- }], ctorParameters: () => [{ type: i1.BaseHttpService }] });
300
+ }], ctorParameters: function () { return [{ type: i1.BaseHttpService }]; } });
301
301
 
302
302
  class ConfigurationProcessorsApiService {
303
303
  constructor(baseHttpService) {
@@ -327,12 +327,12 @@ class ConfigurationProcessorsApiService {
327
327
  });
328
328
  };
329
329
  }
330
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: ConfigurationProcessorsApiService, deps: [{ token: i1.BaseHttpService }], target: i0.ɵɵFactoryTarget.Injectable }); }
331
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: ConfigurationProcessorsApiService }); }
332
330
  }
333
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: ConfigurationProcessorsApiService, decorators: [{
331
+ ConfigurationProcessorsApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ConfigurationProcessorsApiService, deps: [{ token: i1.BaseHttpService }], target: i0.ɵɵFactoryTarget.Injectable });
332
+ ConfigurationProcessorsApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ConfigurationProcessorsApiService });
333
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ConfigurationProcessorsApiService, decorators: [{
334
334
  type: Injectable
335
- }], ctorParameters: () => [{ type: i1.BaseHttpService }] });
335
+ }], ctorParameters: function () { return [{ type: i1.BaseHttpService }]; } });
336
336
 
337
337
  class ConfigurationSettingsDTO {
338
338
  static fromDTO(dto, key) {
@@ -430,12 +430,12 @@ class ConfigurationSettingsApiService {
430
430
  ...options,
431
431
  });
432
432
  }
433
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: ConfigurationSettingsApiService, deps: [{ token: i1.BaseHttpService }, { token: i2.MessageService }], target: i0.ɵɵFactoryTarget.Injectable }); }
434
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: ConfigurationSettingsApiService }); }
435
433
  }
436
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: ConfigurationSettingsApiService, decorators: [{
434
+ ConfigurationSettingsApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ConfigurationSettingsApiService, deps: [{ token: i1.BaseHttpService }, { token: i2.MessageService }], target: i0.ɵɵFactoryTarget.Injectable });
435
+ ConfigurationSettingsApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ConfigurationSettingsApiService });
436
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ConfigurationSettingsApiService, decorators: [{
437
437
  type: Injectable
438
- }], ctorParameters: () => [{ type: i1.BaseHttpService }, { type: i2.MessageService }] });
438
+ }], ctorParameters: function () { return [{ type: i1.BaseHttpService }, { type: i2.MessageService }]; } });
439
439
 
440
440
  class ContextDefinitionAdminApiService {
441
441
  constructor(baseHttpService) {
@@ -503,12 +503,12 @@ class ContextDefinitionAdminApiService {
503
503
  params,
504
504
  });
505
505
  }
506
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: ContextDefinitionAdminApiService, deps: [{ token: i1.BaseHttpService }], target: i0.ɵɵFactoryTarget.Injectable }); }
507
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: ContextDefinitionAdminApiService }); }
508
506
  }
509
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: ContextDefinitionAdminApiService, decorators: [{
507
+ ContextDefinitionAdminApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ContextDefinitionAdminApiService, deps: [{ token: i1.BaseHttpService }], target: i0.ɵɵFactoryTarget.Injectable });
508
+ ContextDefinitionAdminApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ContextDefinitionAdminApiService });
509
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ContextDefinitionAdminApiService, decorators: [{
510
510
  type: Injectable
511
- }], ctorParameters: () => [{ type: i1.BaseHttpService }] });
511
+ }], ctorParameters: function () { return [{ type: i1.BaseHttpService }]; } });
512
512
 
513
513
  class DocumentAttachmentApiService {
514
514
  constructor(httpService, fileDownloadService) {
@@ -565,12 +565,12 @@ class DocumentAttachmentApiService {
565
565
  method: 'delete',
566
566
  });
567
567
  }
568
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: DocumentAttachmentApiService, deps: [{ token: i1.BaseHttpService }, { token: i1.FileDownloadService }], target: i0.ɵɵFactoryTarget.Injectable }); }
569
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: DocumentAttachmentApiService }); }
570
568
  }
571
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: DocumentAttachmentApiService, decorators: [{
569
+ DocumentAttachmentApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: DocumentAttachmentApiService, deps: [{ token: i1.BaseHttpService }, { token: i1.FileDownloadService }], target: i0.ɵɵFactoryTarget.Injectable });
570
+ DocumentAttachmentApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: DocumentAttachmentApiService });
571
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: DocumentAttachmentApiService, decorators: [{
572
572
  type: Injectable
573
- }], ctorParameters: () => [{ type: i1.BaseHttpService }, { type: i1.FileDownloadService }] });
573
+ }], ctorParameters: function () { return [{ type: i1.BaseHttpService }, { type: i1.FileDownloadService }]; } });
574
574
 
575
575
  class EndpointsAdminApiService {
576
576
  constructor(baseHttpService) {
@@ -631,21 +631,20 @@ class EndpointsAdminApiService {
631
631
  });
632
632
  }
633
633
  executeEndpoint$(body) {
634
- return this.baseHttpService
635
- .api({
634
+ return this.baseHttpService.api({
636
635
  url: `${this.serviceUrl}/execute`,
637
636
  method: 'post',
638
637
  body,
638
+ responseType: 'text',
639
639
  skipErrorHandler: true,
640
- })
641
- .pipe(map$1(result => result || {}));
640
+ });
642
641
  }
643
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: EndpointsAdminApiService, deps: [{ token: i1.BaseHttpService }], target: i0.ɵɵFactoryTarget.Injectable }); }
644
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: EndpointsAdminApiService }); }
645
642
  }
646
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: EndpointsAdminApiService, decorators: [{
643
+ EndpointsAdminApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: EndpointsAdminApiService, deps: [{ token: i1.BaseHttpService }], target: i0.ɵɵFactoryTarget.Injectable });
644
+ EndpointsAdminApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: EndpointsAdminApiService });
645
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: EndpointsAdminApiService, decorators: [{
647
646
  type: Injectable
648
- }], ctorParameters: () => [{ type: i1.BaseHttpService }] });
647
+ }], ctorParameters: function () { return [{ type: i1.BaseHttpService }]; } });
649
648
 
650
649
  class FlowsApiService {
651
650
  constructor(configurationSettingsApiService) {
@@ -665,12 +664,12 @@ class FlowsApiService {
665
664
  .fetchSetting(this.flowsKey)
666
665
  .pipe(map((setting) => (setting?.value ? JSON.parse(setting.value) : [])));
667
666
  }
668
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: FlowsApiService, deps: [{ token: ConfigurationSettingsApiService }], target: i0.ɵɵFactoryTarget.Injectable }); }
669
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: FlowsApiService }); }
670
667
  }
671
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: FlowsApiService, decorators: [{
668
+ FlowsApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowsApiService, deps: [{ token: ConfigurationSettingsApiService }], target: i0.ɵɵFactoryTarget.Injectable });
669
+ FlowsApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowsApiService });
670
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowsApiService, decorators: [{
672
671
  type: Injectable
673
- }], ctorParameters: () => [{ type: ConfigurationSettingsApiService }] });
672
+ }], ctorParameters: function () { return [{ type: ConfigurationSettingsApiService }]; } });
674
673
 
675
674
  class FunctionsAdminApiService {
676
675
  constructor(baseHttpService) {
@@ -775,15 +774,14 @@ class FunctionsAdminApiService {
775
774
  method: 'get',
776
775
  });
777
776
  }
778
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: FunctionsAdminApiService, deps: [{ token: i1.BaseHttpService }], target: i0.ɵɵFactoryTarget.Injectable }); }
779
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: FunctionsAdminApiService }); }
780
777
  }
781
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: FunctionsAdminApiService, decorators: [{
778
+ FunctionsAdminApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FunctionsAdminApiService, deps: [{ token: i1.BaseHttpService }], target: i0.ɵɵFactoryTarget.Injectable });
779
+ FunctionsAdminApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FunctionsAdminApiService });
780
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FunctionsAdminApiService, decorators: [{
782
781
  type: Injectable
783
- }], ctorParameters: () => [{ type: i1.BaseHttpService }] });
782
+ }], ctorParameters: function () { return [{ type: i1.BaseHttpService }]; } });
784
783
 
785
784
  class GuidedSellingsAdminApiService {
786
- static { this.MAX_RESULTS = 60; }
787
785
  constructor(baseHttpService) {
788
786
  this.baseHttpService = baseHttpService;
789
787
  this.serviceUrl = '/admin/v2/guided-selling';
@@ -836,12 +834,13 @@ class GuidedSellingsAdminApiService {
836
834
  });
837
835
  };
838
836
  }
839
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: GuidedSellingsAdminApiService, deps: [{ token: i1.BaseHttpService }], target: i0.ɵɵFactoryTarget.Injectable }); }
840
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: GuidedSellingsAdminApiService }); }
841
837
  }
842
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: GuidedSellingsAdminApiService, decorators: [{
838
+ GuidedSellingsAdminApiService.MAX_RESULTS = 60;
839
+ GuidedSellingsAdminApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: GuidedSellingsAdminApiService, deps: [{ token: i1.BaseHttpService }], target: i0.ɵɵFactoryTarget.Injectable });
840
+ GuidedSellingsAdminApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: GuidedSellingsAdminApiService });
841
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: GuidedSellingsAdminApiService, decorators: [{
843
842
  type: Injectable
844
- }], ctorParameters: () => [{ type: i1.BaseHttpService }] });
843
+ }], ctorParameters: function () { return [{ type: i1.BaseHttpService }]; } });
845
844
 
846
845
  class GuidedSellingApiService {
847
846
  constructor(http) {
@@ -868,12 +867,12 @@ class GuidedSellingApiService {
868
867
  body: expression || {},
869
868
  });
870
869
  }
871
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: GuidedSellingApiService, deps: [{ token: i1.BaseHttpService }], target: i0.ɵɵFactoryTarget.Injectable }); }
872
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: GuidedSellingApiService }); }
873
870
  }
874
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: GuidedSellingApiService, decorators: [{
871
+ GuidedSellingApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: GuidedSellingApiService, deps: [{ token: i1.BaseHttpService }], target: i0.ɵɵFactoryTarget.Injectable });
872
+ GuidedSellingApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: GuidedSellingApiService });
873
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: GuidedSellingApiService, decorators: [{
875
874
  type: Injectable
876
- }], ctorParameters: () => [{ type: i1.BaseHttpService }] });
875
+ }], ctorParameters: function () { return [{ type: i1.BaseHttpService }]; } });
877
876
 
878
877
  class OrchestrationsAdminApiService {
879
878
  constructor(baseHttpService) {
@@ -949,12 +948,12 @@ class OrchestrationsAdminApiService {
949
948
  body,
950
949
  });
951
950
  }
952
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: OrchestrationsAdminApiService, deps: [{ token: i1.BaseHttpService }], target: i0.ɵɵFactoryTarget.Injectable }); }
953
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: OrchestrationsAdminApiService }); }
954
951
  }
955
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: OrchestrationsAdminApiService, decorators: [{
952
+ OrchestrationsAdminApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: OrchestrationsAdminApiService, deps: [{ token: i1.BaseHttpService }], target: i0.ɵɵFactoryTarget.Injectable });
953
+ OrchestrationsAdminApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: OrchestrationsAdminApiService });
954
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: OrchestrationsAdminApiService, decorators: [{
956
955
  type: Injectable
957
- }], ctorParameters: () => [{ type: i1.BaseHttpService }] });
956
+ }], ctorParameters: function () { return [{ type: i1.BaseHttpService }]; } });
958
957
 
959
958
  class OrchestrationsApiService {
960
959
  constructor(baseHttpService) {
@@ -969,12 +968,12 @@ class OrchestrationsApiService {
969
968
  ...options,
970
969
  });
971
970
  }
972
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: OrchestrationsApiService, deps: [{ token: i1.BaseHttpService }], target: i0.ɵɵFactoryTarget.Injectable }); }
973
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: OrchestrationsApiService }); }
974
971
  }
975
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: OrchestrationsApiService, decorators: [{
972
+ OrchestrationsApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: OrchestrationsApiService, deps: [{ token: i1.BaseHttpService }], target: i0.ɵɵFactoryTarget.Injectable });
973
+ OrchestrationsApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: OrchestrationsApiService });
974
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: OrchestrationsApiService, decorators: [{
976
975
  type: Injectable
977
- }], ctorParameters: () => [{ type: i1.BaseHttpService }] });
976
+ }], ctorParameters: function () { return [{ type: i1.BaseHttpService }]; } });
978
977
 
979
978
  class SalesforceApiService {
980
979
  constructor(httpService) {
@@ -1048,12 +1047,12 @@ class SalesforceApiService {
1048
1047
  url: `${this.SERVICE_URL}/globalvalueset/${id}/values`,
1049
1048
  });
1050
1049
  }
1051
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: SalesforceApiService, deps: [{ token: i1.BaseHttpService }], target: i0.ɵɵFactoryTarget.Injectable }); }
1052
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: SalesforceApiService }); }
1053
1050
  }
1054
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: SalesforceApiService, decorators: [{
1051
+ SalesforceApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SalesforceApiService, deps: [{ token: i1.BaseHttpService }], target: i0.ɵɵFactoryTarget.Injectable });
1052
+ SalesforceApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SalesforceApiService });
1053
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SalesforceApiService, decorators: [{
1055
1054
  type: Injectable
1056
- }], ctorParameters: () => [{ type: i1.BaseHttpService }] });
1055
+ }], ctorParameters: function () { return [{ type: i1.BaseHttpService }]; } });
1057
1056
 
1058
1057
  class PCMApiService {
1059
1058
  constructor(sfApiService) {
@@ -1081,12 +1080,12 @@ class PCMApiService {
1081
1080
  group.components.forEach(component => this.fixUrls(component));
1082
1081
  });
1083
1082
  }
1084
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: PCMApiService, deps: [{ token: SalesforceApiService }], target: i0.ɵɵFactoryTarget.Injectable }); }
1085
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: PCMApiService }); }
1086
1083
  }
1087
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: PCMApiService, decorators: [{
1084
+ PCMApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PCMApiService, deps: [{ token: SalesforceApiService }], target: i0.ɵɵFactoryTarget.Injectable });
1085
+ PCMApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PCMApiService });
1086
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PCMApiService, decorators: [{
1088
1087
  type: Injectable
1089
- }], ctorParameters: () => [{ type: SalesforceApiService }] });
1088
+ }], ctorParameters: function () { return [{ type: SalesforceApiService }]; } });
1090
1089
 
1091
1090
  class PicklistsAdminApiService {
1092
1091
  constructor(baseHttpService) {
@@ -1119,12 +1118,12 @@ class PicklistsAdminApiService {
1119
1118
  return this.baseHttpService.api({ method: 'put', url: `${this.serviceUrl}/${picklist.id}`, body: data });
1120
1119
  };
1121
1120
  }
1122
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: PicklistsAdminApiService, deps: [{ token: i1.BaseHttpService }], target: i0.ɵɵFactoryTarget.Injectable }); }
1123
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: PicklistsAdminApiService }); }
1124
1121
  }
1125
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: PicklistsAdminApiService, decorators: [{
1122
+ PicklistsAdminApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PicklistsAdminApiService, deps: [{ token: i1.BaseHttpService }], target: i0.ɵɵFactoryTarget.Injectable });
1123
+ PicklistsAdminApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PicklistsAdminApiService });
1124
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PicklistsAdminApiService, decorators: [{
1126
1125
  type: Injectable
1127
- }], ctorParameters: () => [{ type: i1.BaseHttpService }] });
1126
+ }], ctorParameters: function () { return [{ type: i1.BaseHttpService }]; } });
1128
1127
 
1129
1128
  class ProductsAdminApiService {
1130
1129
  constructor(baseHttpService) {
@@ -1204,12 +1203,12 @@ class ProductsAdminApiService {
1204
1203
  getImageUrl(productId) {
1205
1204
  return `${this.serviceUrl}/${productId}/image`;
1206
1205
  }
1207
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: ProductsAdminApiService, deps: [{ token: i1.BaseHttpService }], target: i0.ɵɵFactoryTarget.Injectable }); }
1208
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: ProductsAdminApiService }); }
1209
1206
  }
1210
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: ProductsAdminApiService, decorators: [{
1207
+ ProductsAdminApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ProductsAdminApiService, deps: [{ token: i1.BaseHttpService }], target: i0.ɵɵFactoryTarget.Injectable });
1208
+ ProductsAdminApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ProductsAdminApiService });
1209
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ProductsAdminApiService, decorators: [{
1211
1210
  type: Injectable
1212
- }], ctorParameters: () => [{ type: i1.BaseHttpService }] });
1211
+ }], ctorParameters: function () { return [{ type: i1.BaseHttpService }]; } });
1213
1212
 
1214
1213
  class SalesTransactionApiService {
1215
1214
  constructor(httpService) {
@@ -1253,12 +1252,12 @@ class SalesTransactionApiService {
1253
1252
  responseType: 'text',
1254
1253
  });
1255
1254
  }
1256
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: SalesTransactionApiService, deps: [{ token: i1.BaseHttpService }], target: i0.ɵɵFactoryTarget.Injectable }); }
1257
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: SalesTransactionApiService }); }
1258
1255
  }
1259
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: SalesTransactionApiService, decorators: [{
1256
+ SalesTransactionApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SalesTransactionApiService, deps: [{ token: i1.BaseHttpService }], target: i0.ɵɵFactoryTarget.Injectable });
1257
+ SalesTransactionApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SalesTransactionApiService });
1258
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SalesTransactionApiService, decorators: [{
1260
1259
  type: Injectable
1261
- }], ctorParameters: () => [{ type: i1.BaseHttpService }] });
1260
+ }], ctorParameters: function () { return [{ type: i1.BaseHttpService }]; } });
1262
1261
 
1263
1262
  class ShoppingCartSettingsApiService {
1264
1263
  constructor(configurationSettingsApiService) {
@@ -1276,12 +1275,12 @@ class ShoppingCartSettingsApiService {
1276
1275
  return { ...acc, [setting.id]: setting.properties };
1277
1276
  }, {})));
1278
1277
  }
1279
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: ShoppingCartSettingsApiService, deps: [{ token: ConfigurationSettingsApiService }], target: i0.ɵɵFactoryTarget.Injectable }); }
1280
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: ShoppingCartSettingsApiService }); }
1281
1278
  }
1282
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: ShoppingCartSettingsApiService, decorators: [{
1279
+ ShoppingCartSettingsApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ShoppingCartSettingsApiService, deps: [{ token: ConfigurationSettingsApiService }], target: i0.ɵɵFactoryTarget.Injectable });
1280
+ ShoppingCartSettingsApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ShoppingCartSettingsApiService });
1281
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ShoppingCartSettingsApiService, decorators: [{
1283
1282
  type: Injectable
1284
- }], ctorParameters: () => [{ type: ConfigurationSettingsApiService }] });
1283
+ }], ctorParameters: function () { return [{ type: ConfigurationSettingsApiService }]; } });
1285
1284
 
1286
1285
  function uiDefinitionFromDTO(container) {
1287
1286
  const { sourceBlob, ...rest } = container;
@@ -1362,12 +1361,12 @@ class UIDefinitionsAdminApiService {
1362
1361
  url: `${this.serviceUrl}/${id}`,
1363
1362
  });
1364
1363
  }
1365
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: UIDefinitionsAdminApiService, deps: [{ token: i1.BaseHttpService }], target: i0.ɵɵFactoryTarget.Injectable }); }
1366
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: UIDefinitionsAdminApiService }); }
1367
1364
  }
1368
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: UIDefinitionsAdminApiService, decorators: [{
1365
+ UIDefinitionsAdminApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: UIDefinitionsAdminApiService, deps: [{ token: i1.BaseHttpService }], target: i0.ɵɵFactoryTarget.Injectable });
1366
+ UIDefinitionsAdminApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: UIDefinitionsAdminApiService });
1367
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: UIDefinitionsAdminApiService, decorators: [{
1369
1368
  type: Injectable
1370
- }], ctorParameters: () => [{ type: i1.BaseHttpService }] });
1369
+ }], ctorParameters: function () { return [{ type: i1.BaseHttpService }]; } });
1371
1370
 
1372
1371
  const fromUIComponentStoryDTO = (dto, attachments) => {
1373
1372
  return {
@@ -1655,12 +1654,12 @@ class UITemplatesAdminApiService {
1655
1654
  url: `${this.serviceUrl}/${templateId}/thumbnail`,
1656
1655
  });
1657
1656
  }
1658
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: UITemplatesAdminApiService, deps: [{ token: i1.BaseHttpService }], target: i0.ɵɵFactoryTarget.Injectable }); }
1659
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: UITemplatesAdminApiService }); }
1660
1657
  }
1661
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: UITemplatesAdminApiService, decorators: [{
1658
+ UITemplatesAdminApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: UITemplatesAdminApiService, deps: [{ token: i1.BaseHttpService }], target: i0.ɵɵFactoryTarget.Injectable });
1659
+ UITemplatesAdminApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: UITemplatesAdminApiService });
1660
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: UITemplatesAdminApiService, decorators: [{
1662
1661
  type: Injectable
1663
- }], ctorParameters: () => [{ type: i1.BaseHttpService }] });
1662
+ }], ctorParameters: function () { return [{ type: i1.BaseHttpService }]; } });
1664
1663
 
1665
1664
  class VeloceObjectsAdminApiService {
1666
1665
  constructor(baseHttpService) {
@@ -1740,45 +1739,45 @@ class VeloceObjectsAdminApiService {
1740
1739
  body: object,
1741
1740
  });
1742
1741
  }
1743
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: VeloceObjectsAdminApiService, deps: [{ token: i1.BaseHttpService }], target: i0.ɵɵFactoryTarget.Injectable }); }
1744
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: VeloceObjectsAdminApiService }); }
1745
1742
  }
1746
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: VeloceObjectsAdminApiService, decorators: [{
1743
+ VeloceObjectsAdminApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: VeloceObjectsAdminApiService, deps: [{ token: i1.BaseHttpService }], target: i0.ɵɵFactoryTarget.Injectable });
1744
+ VeloceObjectsAdminApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: VeloceObjectsAdminApiService });
1745
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: VeloceObjectsAdminApiService, decorators: [{
1747
1746
  type: Injectable
1748
- }], ctorParameters: () => [{ type: i1.BaseHttpService }] });
1747
+ }], ctorParameters: function () { return [{ type: i1.BaseHttpService }]; } });
1749
1748
 
1750
1749
  class ApiV2Module {
1751
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: ApiV2Module, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
1752
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.1.4", ngImport: i0, type: ApiV2Module, imports: [HttpClientModule] }); }
1753
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: ApiV2Module, providers: [
1754
- BaseHttpService,
1755
- CacheApiService,
1756
- CatalogAdminApiService,
1757
- CatalogApiService,
1758
- ConfigurationProcessorsApiService,
1759
- ConfigurationSettingsApiService,
1760
- ContextDefinitionAdminApiService,
1761
- DocumentAttachmentApiService,
1762
- EndpointsAdminApiService,
1763
- FlowsApiService,
1764
- OrchestrationsAdminApiService,
1765
- OrchestrationsApiService,
1766
- PCMApiService,
1767
- PicklistsAdminApiService,
1768
- ProductsAdminApiService,
1769
- FunctionsAdminApiService,
1770
- GuidedSellingsAdminApiService,
1771
- GuidedSellingApiService,
1772
- SalesforceApiService,
1773
- SalesTransactionApiService,
1774
- ShoppingCartSettingsApiService,
1775
- UIDefinitionsAdminApiService,
1776
- UITemplatesAdminApiService,
1777
- VeloceObjectsAdminApiService,
1778
- XrayService,
1779
- ], imports: [HttpClientModule] }); }
1780
1750
  }
1781
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: ApiV2Module, decorators: [{
1751
+ ApiV2Module.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ApiV2Module, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1752
+ ApiV2Module.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: ApiV2Module, imports: [HttpClientModule] });
1753
+ ApiV2Module.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ApiV2Module, providers: [
1754
+ BaseHttpService,
1755
+ CacheApiService,
1756
+ CatalogAdminApiService,
1757
+ CatalogApiService,
1758
+ ConfigurationProcessorsApiService,
1759
+ ConfigurationSettingsApiService,
1760
+ ContextDefinitionAdminApiService,
1761
+ DocumentAttachmentApiService,
1762
+ EndpointsAdminApiService,
1763
+ FlowsApiService,
1764
+ OrchestrationsAdminApiService,
1765
+ OrchestrationsApiService,
1766
+ PCMApiService,
1767
+ PicklistsAdminApiService,
1768
+ ProductsAdminApiService,
1769
+ FunctionsAdminApiService,
1770
+ GuidedSellingsAdminApiService,
1771
+ GuidedSellingApiService,
1772
+ SalesforceApiService,
1773
+ SalesTransactionApiService,
1774
+ ShoppingCartSettingsApiService,
1775
+ UIDefinitionsAdminApiService,
1776
+ UITemplatesAdminApiService,
1777
+ VeloceObjectsAdminApiService,
1778
+ XrayService,
1779
+ ], imports: [HttpClientModule] });
1780
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ApiV2Module, decorators: [{
1782
1781
  type: NgModule,
1783
1782
  args: [{
1784
1783
  imports: [HttpClientModule],