@veloceapps/sdk 11.0.0-5 → 11.0.0-51

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 (177) hide show
  1. package/cms/cms.actions.d.ts +92 -29
  2. package/cms/components/element-renderer/element-renderer.component.d.ts +3 -10
  3. package/cms/services/element-context.service.d.ts +0 -1
  4. package/cms/types/common.types.d.ts +2 -0
  5. package/cms/types/index.d.ts +0 -1
  6. package/cms/utils/path.utils.d.ts +1 -2
  7. package/cms/vendor-map.d.ts +17 -40
  8. package/core/index.d.ts +1 -1
  9. package/core/modules/configuration/index.d.ts +3 -4
  10. package/core/modules/configuration/services/configuration-runtime.service.d.ts +8 -19
  11. package/core/modules/configuration/services/configuration-state.service.d.ts +8 -8
  12. package/core/modules/configuration/services/configuration.service.d.ts +23 -47
  13. package/core/modules/configuration/services/test-mode-configuration.service.d.ts +22 -0
  14. package/core/modules/configuration/types/configuration-runtime.types.d.ts +0 -5
  15. package/core/modules/configuration/types/configuration.types.d.ts +3 -0
  16. package/core/modules/configuration/types/index.d.ts +2 -0
  17. package/core/modules/flow-configuration/index.d.ts +0 -3
  18. package/core/modules/flow-configuration/services/flow-configuration.service.d.ts +11 -40
  19. package/core/operators/filter-successful-execute.operator.d.ts +3 -0
  20. package/core/operators/index.d.ts +1 -0
  21. package/core/services/catalog-products.service.d.ts +11 -0
  22. package/core/services/flow-info.service.d.ts +28 -12
  23. package/core/services/flow-state-configuration.service.d.ts +2 -8
  24. package/core/services/flow-state.service.d.ts +13 -22
  25. package/core/services/index.d.ts +3 -3
  26. package/core/services/integration.state.d.ts +1 -1
  27. package/core/services/product-images.service.d.ts +3 -3
  28. package/core/services/runtime-settings.service.d.ts +1 -1
  29. package/core/services/sales-transaction.service.d.ts +29 -0
  30. package/core/types/flow-customization.types.d.ts +2 -2
  31. package/core/types/flow-state.types.d.ts +2 -2
  32. package/core/types/index.d.ts +0 -1
  33. package/core/utils/index.d.ts +2 -2
  34. package/core/utils/transaction-item.utils.d.ts +7 -0
  35. package/core/utils/transaction-item.worker.d.ts +8 -0
  36. package/esm2020/cms/cms.actions.mjs +93 -71
  37. package/esm2020/cms/cms.default.mjs +2 -3
  38. package/esm2020/cms/components/element-renderer/element-renderer.component.mjs +7 -64
  39. package/esm2020/cms/components/preview/preview.component.mjs +3 -3
  40. package/esm2020/cms/services/element-context.service.mjs +1 -1
  41. package/esm2020/cms/types/common.types.mjs +1 -1
  42. package/esm2020/cms/types/index.mjs +1 -2
  43. package/esm2020/cms/utils/element.utils.mjs +3 -3
  44. package/esm2020/cms/utils/elements-resolver.mjs +16 -5
  45. package/esm2020/cms/utils/path.utils.mjs +1 -10
  46. package/esm2020/cms/vendor-map.mjs +17 -18
  47. package/esm2020/core/core.module.mjs +7 -7
  48. package/esm2020/core/index.mjs +2 -2
  49. package/esm2020/core/modules/configuration/configuration.module.mjs +14 -4
  50. package/esm2020/core/modules/configuration/index.mjs +4 -5
  51. package/esm2020/core/modules/configuration/services/configuration-runtime.service.mjs +16 -101
  52. package/esm2020/core/modules/configuration/services/configuration-state.service.mjs +61 -77
  53. package/esm2020/core/modules/configuration/services/configuration.service.mjs +97 -223
  54. package/esm2020/core/modules/configuration/services/test-mode-configuration.service.mjs +62 -0
  55. package/esm2020/core/modules/configuration/types/configuration-runtime.types.mjs +1 -1
  56. package/esm2020/core/modules/configuration/types/configuration.types.mjs +1 -1
  57. package/esm2020/core/modules/configuration/types/index.mjs +3 -0
  58. package/esm2020/core/modules/flow-configuration/flow-configuration.module.mjs +3 -4
  59. package/esm2020/core/modules/flow-configuration/index.mjs +1 -4
  60. package/esm2020/core/modules/flow-configuration/services/flow-configuration.service.mjs +34 -127
  61. package/esm2020/core/operators/filter-successful-execute.operator.mjs +5 -0
  62. package/esm2020/core/operators/index.mjs +2 -0
  63. package/esm2020/core/services/catalog-products.service.mjs +25 -0
  64. package/esm2020/core/services/flow-info.service.mjs +102 -31
  65. package/esm2020/core/services/flow-state-configuration.service.mjs +10 -25
  66. package/esm2020/core/services/flow-state.service.mjs +60 -172
  67. package/esm2020/core/services/index.mjs +4 -4
  68. package/esm2020/core/services/integration.state.mjs +2 -2
  69. package/esm2020/core/services/product-images.service.mjs +8 -8
  70. package/esm2020/core/services/runtime-settings.service.mjs +3 -3
  71. package/esm2020/core/services/sales-transaction.service.mjs +65 -0
  72. package/esm2020/core/types/flow-customization.types.mjs +1 -1
  73. package/esm2020/core/types/flow-state.types.mjs +1 -1
  74. package/esm2020/core/types/index.mjs +1 -2
  75. package/esm2020/core/utils/index.mjs +3 -3
  76. package/esm2020/core/utils/transaction-item.utils.mjs +60 -0
  77. package/esm2020/core/utils/transaction-item.worker.mjs +16 -0
  78. package/esm2020/src/components/flow-header/flow-header.component.mjs +8 -12
  79. package/esm2020/src/components/guided-selling/guided-selling.component.mjs +8 -12
  80. package/esm2020/src/flow-routing.module.mjs +12 -41
  81. package/esm2020/src/flow.component.mjs +5 -5
  82. package/esm2020/src/guards/flow.guard.mjs +13 -14
  83. package/esm2020/src/guards/product-unload.guard.mjs +7 -9
  84. package/esm2020/src/index.mjs +1 -3
  85. package/esm2020/src/pages/assets/assets.component.mjs +8 -9
  86. package/esm2020/src/pages/catalog/catalog.component.mjs +8 -9
  87. package/esm2020/src/pages/debug/debug.component.mjs +14 -23
  88. package/esm2020/src/pages/product/product.component.mjs +12 -89
  89. package/esm2020/src/pages/product/product.module.mjs +5 -5
  90. package/esm2020/src/pages/record-not-found/record-not-found.component.mjs +5 -6
  91. package/esm2020/src/pages/shopping-cart/shopping-cart.component.mjs +8 -9
  92. package/esm2020/src/resolvers/flow.resolver.mjs +10 -18
  93. package/esm2020/src/resolvers/pcm-model.resolver.mjs +12 -0
  94. package/esm2020/src/resolvers/sales-transaction.resolver.mjs +64 -0
  95. package/esm2020/src/resolvers/ui-definition.resolver.mjs +42 -0
  96. package/esm2020/src/services/flow-dialog.service.mjs +8 -8
  97. package/esm2020/src/services/flow-router.service.mjs +16 -33
  98. package/esm2020/src/services/flow.service.mjs +13 -54
  99. package/esm2020/src/types/index.mjs +2 -3
  100. package/esm2020/src/types/route.types.mjs +1 -1
  101. package/fesm2015/veloceapps-sdk-cms.mjs +138 -275
  102. package/fesm2015/veloceapps-sdk-cms.mjs.map +1 -1
  103. package/fesm2015/veloceapps-sdk-core.mjs +800 -1643
  104. package/fesm2015/veloceapps-sdk-core.mjs.map +1 -1
  105. package/fesm2015/veloceapps-sdk.mjs +188 -801
  106. package/fesm2015/veloceapps-sdk.mjs.map +1 -1
  107. package/fesm2020/veloceapps-sdk-cms.mjs +134 -267
  108. package/fesm2020/veloceapps-sdk-cms.mjs.map +1 -1
  109. package/fesm2020/veloceapps-sdk-core.mjs +859 -1738
  110. package/fesm2020/veloceapps-sdk-core.mjs.map +1 -1
  111. package/fesm2020/veloceapps-sdk.mjs +188 -795
  112. package/fesm2020/veloceapps-sdk.mjs.map +1 -1
  113. package/package.json +1 -1
  114. package/src/components/flow-header/flow-header.component.d.ts +3 -3
  115. package/src/components/guided-selling/guided-selling.component.d.ts +3 -3
  116. package/src/flow-routing.module.d.ts +1 -2
  117. package/src/flow.component.d.ts +2 -2
  118. package/src/guards/product-unload.guard.d.ts +5 -6
  119. package/src/index.d.ts +0 -2
  120. package/src/pages/assets/assets.component.d.ts +3 -3
  121. package/src/pages/catalog/catalog.component.d.ts +3 -3
  122. package/src/pages/debug/debug.component.d.ts +2 -5
  123. package/src/pages/product/product.component.d.ts +5 -14
  124. package/src/pages/product/product.module.d.ts +1 -1
  125. package/src/pages/record-not-found/record-not-found.component.d.ts +2 -3
  126. package/src/pages/shopping-cart/shopping-cart.component.d.ts +3 -3
  127. package/src/resolvers/flow.resolver.d.ts +5 -6
  128. package/src/resolvers/pcm-model.resolver.d.ts +3 -0
  129. package/src/resolvers/sales-transaction.resolver.d.ts +18 -0
  130. package/src/resolvers/ui-definition.resolver.d.ts +3 -0
  131. package/src/services/flow-dialog.service.d.ts +5 -4
  132. package/src/services/flow-router.service.d.ts +4 -6
  133. package/src/services/flow.service.d.ts +2 -7
  134. package/src/types/index.d.ts +1 -2
  135. package/src/types/route.types.d.ts +0 -5
  136. package/cms/plugins/configuration.plugin.d.ts +0 -23
  137. package/cms/types/configuration.types.d.ts +0 -21
  138. package/core/modules/configuration/helpers.d.ts +0 -6
  139. package/core/modules/configuration/services/runtime-context.service.d.ts +0 -12
  140. package/core/modules/flow-configuration/services/flow-update.service.d.ts +0 -13
  141. package/core/modules/flow-configuration/types/update.types.d.ts +0 -12
  142. package/core/services/context.service.d.ts +0 -23
  143. package/core/services/quote-draft.service.d.ts +0 -50
  144. package/core/types/runtime.types.d.ts +0 -30
  145. package/core/utils/line-item.utils.d.ts +0 -25
  146. package/core/utils/line-item.worker.d.ts +0 -9
  147. package/esm2020/cms/plugins/configuration.plugin.mjs +0 -109
  148. package/esm2020/cms/types/configuration.types.mjs +0 -2
  149. package/esm2020/core/modules/configuration/helpers.mjs +0 -73
  150. package/esm2020/core/modules/configuration/services/runtime-context.service.mjs +0 -45
  151. package/esm2020/core/modules/flow-configuration/services/flow-update.service.mjs +0 -138
  152. package/esm2020/core/modules/flow-configuration/types/update.types.mjs +0 -2
  153. package/esm2020/core/services/context.service.mjs +0 -91
  154. package/esm2020/core/services/quote-draft.service.mjs +0 -192
  155. package/esm2020/core/types/runtime.types.mjs +0 -16
  156. package/esm2020/core/utils/line-item.utils.mjs +0 -187
  157. package/esm2020/core/utils/line-item.worker.mjs +0 -19
  158. package/esm2020/src/guards/context.guard.mjs +0 -91
  159. package/esm2020/src/guards/index.mjs +0 -2
  160. package/esm2020/src/pages/remote/remote.component.mjs +0 -342
  161. package/esm2020/src/pages/remote/remote.module.mjs +0 -20
  162. package/esm2020/src/pages/remote/remote.types.mjs +0 -2
  163. package/esm2020/src/resolvers/quote.resolver.mjs +0 -82
  164. package/esm2020/src/types/context-route.types.mjs +0 -2
  165. package/esm2020/src/types/metrics.types.mjs +0 -2
  166. package/esm2020/src/utils/flow.utils.mjs +0 -25
  167. package/esm2020/src/utils/index.mjs +0 -2
  168. package/src/guards/context.guard.d.ts +0 -19
  169. package/src/guards/index.d.ts +0 -1
  170. package/src/pages/remote/remote.component.d.ts +0 -46
  171. package/src/pages/remote/remote.module.d.ts +0 -10
  172. package/src/pages/remote/remote.types.d.ts +0 -4
  173. package/src/resolvers/quote.resolver.d.ts +0 -19
  174. package/src/types/context-route.types.d.ts +0 -5
  175. package/src/types/metrics.types.d.ts +0 -5
  176. package/src/utils/flow.utils.d.ts +0 -8
  177. package/src/utils/index.d.ts +0 -1
@@ -1,27 +1,28 @@
1
1
  import * as i2 from '@veloceapps/sdk/core';
2
- import { IntegrationState, ConfigurationService, ConfigurationStateService, QuoteDraftService, FlowConfigurationService, FlowStateService, FlowStateConfigurationService, LineItemWorker, ProductImagesService, ContextService, RuntimeSettingsService, ActionCodePipe, DatePipe, NumberPipe, PricePipe, lineItemUtils, generateLineItem, getAttributeValue, SdkPipesModule, SdkCoreModule, UI_DEFINITION_VERSION } from '@veloceapps/sdk/core';
2
+ import { IntegrationState, ConfigurationService, ConfigurationStateService, filterSuccessfulExecute, FlowInfoService, FlowConfigurationService, FlowStateService, FlowStateConfigurationService, TransactionItemWorker, ProductImagesService, RuntimeSettingsService, ActionCodePipe, DatePipe, NumberPipe, PricePipe, SalesTransactionService, SdkPipesModule, SdkCoreModule, UI_DEFINITION_VERSION } from '@veloceapps/sdk/core';
3
3
  export { IntegrationState } from '@veloceapps/sdk/core';
4
4
  import { __decorate, __param, __metadata, __awaiter, __rest } from 'tslib';
5
5
  import * as i0 from '@angular/core';
6
- import { InjectionToken, Component, ChangeDetectionStrategy, Inject, Injector, Injectable, ViewContainerRef, SkipSelf, ViewChild, Input, ViewEncapsulation, NgModule, inject, ElementRef, Directive, ApplicationRef, createComponent, EventEmitter, createNgModule } from '@angular/core';
6
+ import { InjectionToken, Component, ChangeDetectionStrategy, Inject, Injector, Injectable, ViewContainerRef, ViewChild, Input, ViewEncapsulation, NgModule, inject, ElementRef, Directive, ApplicationRef, createComponent, EventEmitter, createNgModule } from '@angular/core';
7
7
  import * as rxjs from 'rxjs';
8
8
  import { BehaviorSubject, Subject, map, distinctUntilChanged, of, tap, switchMap, startWith, takeUntil, combineLatest, catchError, ReplaySubject, noop, filter, take, Observable, from } from 'rxjs';
9
9
  import * as i3 from '@veloceapps/components';
10
10
  import { ToastType, LetDirectiveModule, LoaderModule, ToastService, HiddenTextTooltipModule, ErrorTooltipModule } from '@veloceapps/components';
11
- import lodash, { compact, cloneDeep, isArray, pull, merge, omit, flatten, kebabCase, set } from 'lodash';
12
- import { getCollectionUniqueName, UUID, isDefined, Operator, Predicate, parseJsonSafely, ConfigurationContextMode, parseJwt, TokenInfoService, CoreModule } from '@veloceapps/core';
11
+ import { getCollectionUniqueName, UUID, isDefined, Operator, Predicate, parseJsonSafely, parseJwt, TokenInfoService, UITemplateType, CoreModule } from '@veloceapps/core';
12
+ import lodash, { cloneDeep, isArray, pull, merge, omit, flatten, kebabCase, set } from 'lodash';
13
13
  import { applyPatch } from 'rfc6902';
14
14
  import * as i4 from '@angular/common';
15
15
  import { CommonModule, DOCUMENT } from '@angular/common';
16
16
  import * as i2$1 from 'ngx-drag-drop';
17
17
  import { DndModule } from 'ngx-drag-drop';
18
- import { SalesforceApiService, QuoteApiService, DocumentAttachmentApiService, RampApiService, CatalogApiService, DeltaApiService, PicklistsApiService, PriceApiService, ShoppingCartSettingsApiService, ConfigurationSettingsApiService, GuidedSellingApiService, ContractedPriceApiService, ApiModule } from '@veloceapps/api';
18
+ import { ContractedPriceApiService, ApiModule } from '@veloceapps/api';
19
19
  import { DialogService } from 'primeng/dynamicdialog';
20
20
  import { DragDropModule } from '@angular/cdk/drag-drop';
21
21
  import { ScrollingModule } from '@angular/cdk/scrolling';
22
22
  import * as angularForms from '@angular/forms';
23
23
  import { FormsModule, ReactiveFormsModule } from '@angular/forms';
24
24
  import { DataSource } from '@angular/cdk/collections';
25
+ import { CatalogApiService, ConfigurationSettingsApiService, DocumentAttachmentApiService, GuidedSellingApiService, SalesforceApiService, SalesTransactionApiService, ShoppingCartSettingsApiService } from '@veloceapps/api/v2';
25
26
  import * as rxjsOperators from 'rxjs/operators';
26
27
  import * as sass from 'sass';
27
28
  import { transform } from '@babel/standalone';
@@ -44,58 +45,79 @@ var FlowAction;
44
45
  FlowAction.SUBMIT_GUIDED_SELLING = '[FLOW]_SUBMIT_GUIDED_SELLING';
45
46
  FlowAction.CLOSE_GUIDED_SELLING = '[FLOW]_CLOSE_GUIDED_SELLING';
46
47
  FlowAction.OPEN_DIALOG = '[FLOW]_OPEN_DIALOG';
47
- FlowAction.ConfigureProductAction = ({ lineItemId, productId, }) => ({
48
- type: FlowAction.FLOW_CONFIGURE_PRODUCT,
49
- payload: { lineItemId, productId },
50
- });
51
- FlowAction.NavigateBackAction = () => ({
52
- type: FlowAction.FLOW_NAVIGATE_BACK,
53
- });
54
- FlowAction.NavigateToAction = (path, productId, lineItemId) => ({
48
+ FlowAction.ConfigureProductAction = ({ transactionItemId, productId, }) => {
49
+ return {
50
+ type: FlowAction.FLOW_CONFIGURE_PRODUCT,
51
+ payload: { transactionItemId, productId },
52
+ };
53
+ };
54
+ FlowAction.NavigateBackAction = () => {
55
+ return {
56
+ type: FlowAction.FLOW_NAVIGATE_BACK,
57
+ };
58
+ };
59
+ FlowAction.NavigateToAction = (path, productId, transactionItemId) => ({
55
60
  type: FlowAction.FLOW_NAVIGATE_TO,
56
- payload: { path, productId, lineItemId },
61
+ payload: { path, productId, transactionItemId },
57
62
  });
58
63
  FlowAction.NavigateToCatalogAction = () => ({
59
64
  type: FlowAction.FLOW_NAVIGATE_TO_CATALOG,
60
65
  });
61
- FlowAction.NavigateToShoppingCartAction = () => ({
62
- type: FlowAction.FLOW_NAVIGATE_TO_SHOPPING_CART,
63
- });
64
- FlowAction.ApplyProductConfigurationAction = () => ({
65
- type: FlowAction.FLOW_APPLY_PRODUCT_CONFIGURATION,
66
- });
67
- FlowAction.RemoteApplyAction = () => ({
68
- type: FlowAction.REMOTE_APPLY,
69
- });
70
- FlowAction.RemoteCancelAction = () => ({
71
- type: FlowAction.REMOTE_CANCEL,
72
- });
73
- FlowAction.SwitchObjectAction = (payload) => ({
74
- type: FlowAction.FLOW_SWITCH_OBJECT,
75
- payload,
76
- });
77
- FlowAction.OpenGuidedSelling = (payload) => ({
78
- type: FlowAction.OPEN_GUIDED_SELLING,
79
- payload,
80
- });
81
- FlowAction.CloseGuidedSelling = (payload) => ({
82
- type: FlowAction.CLOSE_GUIDED_SELLING,
83
- payload,
84
- });
85
- FlowAction.SubmitGuidedSelling = (payload) => ({
86
- type: FlowAction.SUBMIT_GUIDED_SELLING,
87
- payload,
88
- });
89
- FlowAction.OpenDialog = (dialog) => ({
90
- type: FlowAction.OPEN_DIALOG,
91
- payload: { dialog },
92
- });
66
+ FlowAction.NavigateToShoppingCartAction = () => {
67
+ return {
68
+ type: FlowAction.FLOW_NAVIGATE_TO_SHOPPING_CART,
69
+ };
70
+ };
71
+ FlowAction.ApplyProductConfigurationAction = () => {
72
+ return {
73
+ type: FlowAction.FLOW_APPLY_PRODUCT_CONFIGURATION,
74
+ };
75
+ };
76
+ FlowAction.RemoteApplyAction = () => {
77
+ return {
78
+ type: FlowAction.REMOTE_APPLY,
79
+ };
80
+ };
81
+ FlowAction.RemoteCancelAction = () => {
82
+ return {
83
+ type: FlowAction.REMOTE_CANCEL,
84
+ };
85
+ };
86
+ FlowAction.SwitchObjectAction = (payload) => {
87
+ return {
88
+ type: FlowAction.FLOW_SWITCH_OBJECT,
89
+ payload,
90
+ };
91
+ };
92
+ FlowAction.OpenGuidedSelling = (payload) => {
93
+ return {
94
+ type: FlowAction.OPEN_GUIDED_SELLING,
95
+ payload,
96
+ };
97
+ };
98
+ FlowAction.CloseGuidedSelling = (payload) => {
99
+ return {
100
+ type: FlowAction.CLOSE_GUIDED_SELLING,
101
+ payload,
102
+ };
103
+ };
104
+ FlowAction.SubmitGuidedSelling = (payload) => {
105
+ return {
106
+ type: FlowAction.SUBMIT_GUIDED_SELLING,
107
+ payload,
108
+ };
109
+ };
110
+ FlowAction.OpenDialog = (dialog) => {
111
+ return {
112
+ type: FlowAction.OPEN_DIALOG,
113
+ payload: { dialog },
114
+ };
115
+ };
93
116
  })(FlowAction || (FlowAction = {}));
94
117
  var CmsAction;
95
118
  (function (CmsAction) {
96
119
  CmsAction.GO_TO_PAGE = '[CMS]_GO_TO_PAGE';
97
120
  CmsAction.UPDATE_CUSTOMIZATION = '[CMS]_UPDATE_CUSTOMIZATION';
98
- CmsAction.EMIT_CUSTOMIZATION_CHANGES = '[CMS]_EMIT_CUSTOMIZATION_CHANGES';
99
121
  CmsAction.SHOW_OVERLAY = '[CMS]_SHOW_OVERLAY';
100
122
  CmsAction.HIDE_OVERLAY = '[CMS]_HIDE_OVERLAY';
101
123
  CmsAction.HIDE_ALL_OVERLAYS = '[CMS]_HIDE_ALL_OVERLAYS';
@@ -104,56 +126,57 @@ var CmsAction;
104
126
  *
105
127
  * @param pageName name of the page
106
128
  */
107
- CmsAction.GoToPage = (pageName) => ({
108
- type: CmsAction.GO_TO_PAGE,
109
- payload: { pageName },
110
- });
129
+ CmsAction.GoToPage = (pageName) => {
130
+ return {
131
+ type: CmsAction.GO_TO_PAGE,
132
+ payload: { pageName },
133
+ };
134
+ };
111
135
  /**
112
136
  * Update UI definition customization state
113
137
  *
114
138
  * @param pageName name of the page
115
139
  */
116
- CmsAction.UpdateCustomization = (value) => ({
117
- type: CmsAction.UPDATE_CUSTOMIZATION,
118
- payload: { value },
119
- });
120
- /**
121
- * Emit customization page changes
122
- *
123
- * @param changes - object with customization page changes
124
- */
125
- CmsAction.EmitCustomizationChanges = (changes) => ({
126
- type: CmsAction.EMIT_CUSTOMIZATION_CHANGES,
127
- payload: { changes },
128
- });
140
+ CmsAction.UpdateCustomization = (value) => {
141
+ return {
142
+ type: CmsAction.UPDATE_CUSTOMIZATION,
143
+ payload: { value },
144
+ };
145
+ };
129
146
  /**
130
147
  * Show an Overlay on the selected page
131
148
  *
132
149
  * @param name - name of the overlay
133
150
  * @returns void
134
151
  */
135
- CmsAction.ShowOverlay = (name) => ({
136
- type: CmsAction.SHOW_OVERLAY,
137
- payload: { name },
138
- });
152
+ CmsAction.ShowOverlay = (name) => {
153
+ return {
154
+ type: CmsAction.SHOW_OVERLAY,
155
+ payload: { name },
156
+ };
157
+ };
139
158
  /**
140
159
  * Hide an Overlay on the selected page
141
160
  *
142
161
  * @param name - name of the overlay
143
162
  * @returns void
144
163
  */
145
- CmsAction.HideOverlay = (name) => ({
146
- type: CmsAction.HIDE_OVERLAY,
147
- payload: { name },
148
- });
164
+ CmsAction.HideOverlay = (name) => {
165
+ return {
166
+ type: CmsAction.HIDE_OVERLAY,
167
+ payload: { name },
168
+ };
169
+ };
149
170
  /**
150
171
  * Hide all Overlays on the selected page
151
172
  *
152
173
  * @returns void
153
174
  */
154
- CmsAction.HideAllOverlays = () => ({
155
- type: CmsAction.HIDE_ALL_OVERLAYS,
156
- });
175
+ CmsAction.HideAllOverlays = () => {
176
+ return {
177
+ type: CmsAction.HIDE_ALL_OVERLAYS,
178
+ };
179
+ };
157
180
  })(CmsAction || (CmsAction = {}));
158
181
 
159
182
  var cmsActions = /*#__PURE__*/Object.freeze({
@@ -551,15 +574,6 @@ const findElement = (source, comparatorFn) => {
551
574
  return;
552
575
  };
553
576
 
554
- const parseBoundPath = (path) => {
555
- var _a, _b;
556
- const regexp = new RegExp(`(?:\\/)(?:\\w+)(?:\\/)(?:ports|attributes)(?:\\/)(?:\\w+)|(?:\\/)(?:\\w+)`, 'g');
557
- const blocks = (_b = (_a = path.match(regexp)) === null || _a === void 0 ? void 0 : _a.map(match => {
558
- const [type, property, name] = compact(match.split('/'));
559
- return { type: type !== null && type !== void 0 ? type : '', property, name };
560
- })) !== null && _b !== void 0 ? _b : [];
561
- return blocks;
562
- };
563
577
  const parsePath = (path) => {
564
578
  var _a, _b, _c, _d;
565
579
  const segments = path.split('/');
@@ -796,13 +810,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
796
810
  }] });
797
811
 
798
812
  class ElementRendererComponent {
799
- constructor(parentInjector, runtimeService, elementContext, ioProviderService, configurationService, elementRef, cdr) {
800
- this.parentInjector = parentInjector;
813
+ constructor(runtimeService, elementContext, ioProviderService, cdr) {
801
814
  this.runtimeService = runtimeService;
802
815
  this.elementContext = elementContext;
803
816
  this.ioProviderService = ioProviderService;
804
- this.configurationService = configurationService;
805
- this.elementRef = elementRef;
806
817
  this.cdr = cdr;
807
818
  this.refs = {};
808
819
  this.destroy$ = new Subject();
@@ -826,10 +837,7 @@ class ElementRendererComponent {
826
837
  this.refs[UUID.UUID()] = this.createComponent();
827
838
  return;
828
839
  }
829
- if (modelMeta.lineItem) {
830
- this.createFromLineItem(modelMeta.lineItem);
831
- }
832
- else if (modelMeta.path) {
840
+ if (modelMeta.path) {
833
841
  this.createFromPath(modelMeta.path);
834
842
  }
835
843
  }
@@ -842,45 +850,6 @@ class ElementRendererComponent {
842
850
  this.processChildren(children);
843
851
  });
844
852
  }
845
- getModelComponent() {
846
- let component = null;
847
- let injector = this.parentInjector;
848
- while (!component) {
849
- const parentComp = injector.get(ElementRendererComponent, null);
850
- if (parentComp === null || parentComp === void 0 ? void 0 : parentComp.meta.model) {
851
- component = parentComp;
852
- break;
853
- }
854
- if (parentComp) {
855
- injector = parentComp.parentInjector;
856
- }
857
- else {
858
- break;
859
- }
860
- }
861
- return component;
862
- }
863
- createFromLineItem(path) {
864
- var _a, _b;
865
- const parentComp = this.getModelComponent();
866
- const parentPath = (_a = parentComp === null || parentComp === void 0 ? void 0 : parentComp.meta.model) === null || _a === void 0 ? void 0 : _a.lineItem;
867
- const pathBlocks = parseBoundPath(path).reverse();
868
- const { property, name } = (_b = pathBlocks[1]) !== null && _b !== void 0 ? _b : {};
869
- const finalPath = pathBlocks[0];
870
- const children$ = this.getParentLineItem$(parentComp).pipe(map(model => {
871
- var _a;
872
- if (!model) {
873
- return [];
874
- }
875
- if (property === 'ports' && !(finalPath === null || finalPath === void 0 ? void 0 : finalPath.property) && parentPath !== path) {
876
- return (_a = model.lineItems.filter(({ port }) => port === name)) !== null && _a !== void 0 ? _a : [];
877
- }
878
- return [model];
879
- }));
880
- children$.pipe(takeUntil(this.destroy$)).subscribe(children => {
881
- this.processChildren(children);
882
- });
883
- }
884
853
  processChildren(children) {
885
854
  var _a;
886
855
  (_a = this.runtimeService.moduleRefs[0]) === null || _a === void 0 ? void 0 : _a.injector.runInContext(() => {
@@ -903,16 +872,6 @@ class ElementRendererComponent {
903
872
  this.cdr.detectChanges();
904
873
  });
905
874
  }
906
- getParentLineItem$(parentComp) {
907
- var _a;
908
- const parentRefs = Object.values((_a = parentComp === null || parentComp === void 0 ? void 0 : parentComp.refs) !== null && _a !== void 0 ? _a : {});
909
- const parentRef = parentRefs.find(ref => { var _a; return (_a = ref === null || ref === void 0 ? void 0 : ref.location.nativeElement) === null || _a === void 0 ? void 0 : _a.contains(this.elementRef.nativeElement); });
910
- let parentModel$;
911
- if ((parentRef === null || parentRef === void 0 ? void 0 : parentRef.instance) instanceof ElementComponent) {
912
- parentModel$ = parentRef === null || parentRef === void 0 ? void 0 : parentRef.instance.model$;
913
- }
914
- return parentModel$ !== null && parentModel$ !== void 0 ? parentModel$ : this.configurationService.get();
915
- }
916
875
  createComponent(data, index) {
917
876
  var _a;
918
877
  if (!this.type) {
@@ -947,16 +906,12 @@ class ElementRendererComponent {
947
906
  this.refs = {};
948
907
  }
949
908
  }
950
- ElementRendererComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ElementRendererComponent, deps: [{ token: i0.Injector, skipSelf: true }, { token: RuntimeService }, { token: ElementContextService }, { token: IOProviderService }, { token: i2.ConfigurationService }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
909
+ ElementRendererComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ElementRendererComponent, deps: [{ token: RuntimeService }, { token: ElementContextService }, { token: IOProviderService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
951
910
  ElementRendererComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: ElementRendererComponent, selector: "vl-cms-element-renderer", inputs: { meta: "meta" }, providers: [ElementContextService], viewQueries: [{ propertyName: "el", first: true, predicate: ["el"], descendants: true, read: ViewContainerRef, static: true }], ngImport: i0, template: "<ng-template #el></ng-template>\n", styles: [":host{display:contents}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush });
952
911
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ElementRendererComponent, decorators: [{
953
912
  type: Component,
954
913
  args: [{ selector: 'vl-cms-element-renderer', changeDetection: ChangeDetectionStrategy.OnPush, providers: [ElementContextService], template: "<ng-template #el></ng-template>\n", styles: [":host{display:contents}\n"] }]
955
- }], ctorParameters: function () {
956
- return [{ type: i0.Injector, decorators: [{
957
- type: SkipSelf
958
- }] }, { type: RuntimeService }, { type: ElementContextService }, { type: IOProviderService }, { type: i2.ConfigurationService }, { type: i0.ElementRef }, { type: i0.ChangeDetectorRef }];
959
- }, propDecorators: { el: [{
914
+ }], ctorParameters: function () { return [{ type: RuntimeService }, { type: ElementContextService }, { type: IOProviderService }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { el: [{
960
915
  type: ViewChild,
961
916
  args: ['el', { read: ViewContainerRef, static: true }]
962
917
  }], meta: [{
@@ -987,7 +942,7 @@ class PreviewComponent {
987
942
  ngOnInit() {
988
943
  var _a;
989
944
  if ((_a = this.config) === null || _a === void 0 ? void 0 : _a.clearStateOnInit) {
990
- this.integrationState.clear();
945
+ this.integrationState.reset();
991
946
  }
992
947
  this.startPreview();
993
948
  }
@@ -1612,43 +1567,44 @@ const vendorMap = {
1612
1567
  Operator,
1613
1568
  Predicate,
1614
1569
  parseJsonSafely,
1615
- ConfigurationContextMode,
1616
1570
  parseJwt,
1617
1571
  TokenInfoService,
1572
+ UITemplateType,
1618
1573
  },
1619
1574
  '@veloceapps/components': {
1620
1575
  ToastService,
1621
1576
  ToastType,
1622
1577
  },
1623
1578
  '@veloceapps/api': {
1624
- SalesforceApiService,
1625
- QuoteApiService,
1626
- DocumentAttachmentApiService,
1627
- RampApiService,
1579
+ ContractedPriceApiService,
1580
+ },
1581
+ '@veloceapps/api/v2': {
1628
1582
  CatalogApiService,
1629
- DeltaApiService,
1630
- PicklistsApiService,
1631
- PriceApiService,
1632
- ShoppingCartSettingsApiService,
1633
1583
  ConfigurationSettingsApiService,
1584
+ DocumentAttachmentApiService,
1634
1585
  GuidedSellingApiService,
1635
- ContractedPriceApiService,
1586
+ SalesforceApiService,
1587
+ SalesTransactionApiService,
1588
+ ShoppingCartSettingsApiService,
1636
1589
  },
1637
- '@veloceapps/sdk/core': Object.assign({ ConfigurationService,
1590
+ '@veloceapps/sdk/core': {
1591
+ ConfigurationService,
1638
1592
  ConfigurationStateService,
1639
- QuoteDraftService,
1593
+ filterSuccessfulExecute,
1594
+ FlowInfoService,
1640
1595
  FlowConfigurationService,
1641
1596
  IntegrationState,
1642
1597
  FlowStateService,
1643
1598
  FlowStateConfigurationService,
1644
- LineItemWorker,
1599
+ TransactionItemWorker,
1645
1600
  ProductImagesService,
1646
- ContextService,
1647
1601
  RuntimeSettingsService,
1648
1602
  ActionCodePipe,
1649
1603
  DatePipe,
1650
1604
  NumberPipe,
1651
- PricePipe }, lineItemUtils),
1605
+ PricePipe,
1606
+ SalesTransactionService,
1607
+ },
1652
1608
  '@veloceapps/sdk/cms': Object.assign(Object.assign(Object.assign({}, cmsInjectionTokens), cmsActions), { TemplatesService,
1653
1609
  IntegrationState,
1654
1610
  ResourcesService,
@@ -1860,8 +1816,8 @@ const normalizeElementMetadata = (elementMetadata) => {
1860
1816
  var _a, _b, _c, _d;
1861
1817
  const metadata = Object.assign({}, elementMetadata);
1862
1818
  // model
1863
- const { lineItem, path } = (_a = metadata.model) !== null && _a !== void 0 ? _a : {};
1864
- const model = lineItem ? { lineItem } : path ? { path } : undefined;
1819
+ const { path } = (_a = metadata.model) !== null && _a !== void 0 ? _a : {};
1820
+ const model = path ? { path } : undefined;
1865
1821
  if (model) {
1866
1822
  metadata.model = model;
1867
1823
  }
@@ -2018,112 +1974,8 @@ class ElementMetadataWorker {
2018
1974
  }
2019
1975
  }
2020
1976
 
2021
- class ConfigurationPlugin {
2022
- constructor(host) {
2023
- var _a, _b;
2024
- this.host = host;
2025
- this.destroy$ = new Subject();
2026
- this.elementMetadata = this.host.injector.get(ELEMENT_METADATA);
2027
- this.configurationService = this.host.injector.get(ConfigurationService);
2028
- if ((_a = this.elementMetadata.model) === null || _a === void 0 ? void 0 : _a.lineItem) {
2029
- this.host.model$.pipe(takeUntil(this.destroy$)).subscribe(model => (this.modelSnapshot = model));
2030
- const pathBlocks = parseBoundPath((_b = this.elementMetadata.model) === null || _b === void 0 ? void 0 : _b.lineItem);
2031
- const firstPathBlock = pathBlocks.reverse()[0];
2032
- if (!firstPathBlock) {
2033
- return;
2034
- }
2035
- const { type, property, name } = firstPathBlock;
2036
- this.host.boundName = name !== null && name !== void 0 ? name : type;
2037
- this.register(type, property, name);
2038
- }
2039
- }
2040
- ngOnDestroy() {
2041
- this.destroy$.next();
2042
- this.destroy$.complete();
2043
- }
2044
- register(type, property, name) {
2045
- if (!type) {
2046
- return;
2047
- }
2048
- if (!property) {
2049
- this.registerType();
2050
- }
2051
- else if (property === 'ports' && name) {
2052
- this.registerPort(name);
2053
- }
2054
- else if (property === 'attributes' && name) {
2055
- this.registerAttribute(name);
2056
- }
2057
- }
2058
- registerType() {
2059
- const remove = () => {
2060
- const rootLineItem = this.configurationService.getSnapshot();
2061
- if (!rootLineItem || !this.modelSnapshot) {
2062
- return;
2063
- }
2064
- this.configurationService.patch(new LineItemWorker(rootLineItem).remove(this.modelSnapshot.id).li);
2065
- };
2066
- const updateQty = (qty) => {
2067
- const rootLineItem = this.configurationService.getSnapshot();
2068
- if (!rootLineItem || !this.modelSnapshot) {
2069
- return;
2070
- }
2071
- this.configurationService.patch(new LineItemWorker(rootLineItem).replace(Object.assign(Object.assign({}, this.modelSnapshot), { qty })).li);
2072
- };
2073
- this.typeHost.remove = remove;
2074
- this.typeHost.updateQty = updateQty;
2075
- }
2076
- registerPort(name) {
2077
- const model$ = this.host.model$;
2078
- const portItems$ = model$.pipe(map(model => { var _a; return (_a = model === null || model === void 0 ? void 0 : model.lineItems.filter(li => li.port === this.host.boundName)) !== null && _a !== void 0 ? _a : []; }));
2079
- const portDomain$ = model$.pipe(map(model => model === null || model === void 0 ? void 0 : model.portDomains[this.host.boundName]));
2080
- const add = (type, attributes = []) => {
2081
- if (!this.modelSnapshot) {
2082
- return;
2083
- }
2084
- const portDomain = this.modelSnapshot.portDomains[name];
2085
- if (!portDomain) {
2086
- return;
2087
- }
2088
- const generated = generateLineItem(portDomain.name, type, this.modelSnapshot.id, attributes);
2089
- this.configurationService.patch(new LineItemWorker(this.modelSnapshot).insert(this.modelSnapshot.id, generated).li);
2090
- };
2091
- this.portHost.portItems$ = portItems$;
2092
- this.portHost.portDomain$ = portDomain$;
2093
- this.portHost.addPortItem = add;
2094
- }
2095
- registerAttribute(name) {
2096
- if (!this.host.model$) {
2097
- return;
2098
- }
2099
- const value$ = this.host.model$.pipe(map(model => { var _a; return getAttributeValue((_a = model === null || model === void 0 ? void 0 : model.attributes) !== null && _a !== void 0 ? _a : [], name); }));
2100
- const patch = (value) => {
2101
- if (!this.modelSnapshot) {
2102
- return;
2103
- }
2104
- this.configurationService.patch(new LineItemWorker(this.modelSnapshot).patchAttribute([{ name, value }]).li);
2105
- };
2106
- this.attributeHost.value$ = value$;
2107
- this.attributeHost.patch = patch;
2108
- }
2109
- get attributeHost() {
2110
- return this.host;
2111
- }
2112
- get typeHost() {
2113
- return this.host;
2114
- }
2115
- get portHost() {
2116
- return this.host;
2117
- }
2118
- }
2119
- ConfigurationPlugin.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ConfigurationPlugin, deps: "invalid", target: i0.ɵɵFactoryTarget.Directive });
2120
- ConfigurationPlugin.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.9", type: ConfigurationPlugin, ngImport: i0 });
2121
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ConfigurationPlugin, decorators: [{
2122
- type: Directive
2123
- }], ctorParameters: function () { return [{ type: undefined }]; } });
2124
-
2125
1977
  const DEFAULT_PLUGINS = {
2126
- CONFIGURATION: [ConfigurationPlugin],
1978
+ CONFIGURATION: [],
2127
1979
  DEFAULT: [],
2128
1980
  };
2129
1981
 
@@ -2185,10 +2037,18 @@ class ElementsResolver {
2185
2037
  this.config = config;
2186
2038
  this.renderableElements = [];
2187
2039
  this.sharedElements = [];
2188
- this.sharedElements = this.flattenElements(elements)
2189
- .filter(el => this.isSharedElement(el))
2190
- .concat(sharedElements);
2191
- this.elements = elements.map(el => this.processElementMetadata(el)).filter(isDefined);
2040
+ const services = [];
2041
+ const shared = [];
2042
+ for (const el of this.flattenElements(elements)) {
2043
+ if (el.type === 'SERVICE') {
2044
+ services.push(el);
2045
+ }
2046
+ else if (this.isSharedElement(el)) {
2047
+ shared.push(el);
2048
+ }
2049
+ }
2050
+ this.sharedElements = shared.concat(sharedElements);
2051
+ this.elements = [...services, ...elements.map(el => this.processElementMetadata(el)).filter(isDefined)];
2192
2052
  this.renderableElements = this.getRenderableElements(this.elements);
2193
2053
  this.uiDefMetadata = Object.assign(Object.assign({}, this.uiDef), { customization: (_a = this.uiDef.customization) !== null && _a !== void 0 ? _a : this.getDefaultCustomizationState() });
2194
2054
  }
@@ -2247,6 +2107,9 @@ class ElementsResolver {
2247
2107
  processElementMetadata(sourceElement) {
2248
2108
  var _a, _b;
2249
2109
  let finalElement;
2110
+ if (sourceElement.type === 'SERVICE') {
2111
+ return;
2112
+ }
2250
2113
  if (sourceElement.type === 'REFERENCE') {
2251
2114
  const sharedElement = this.getSharedElement(sourceElement);
2252
2115
  if (!sharedElement) {
@@ -2652,5 +2515,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
2652
2515
  * Generated bundle index. Do not edit.
2653
2516
  */
2654
2517
 
2655
- export { CmsAction, DEFAULT_ELEMENT, DEFAULT_PLUGINS_TOKEN, ELEMENT_CONFIG, ELEMENT_METADATA, ElementComponent, ElementDefinition, ElementMetadataWorker, ElementsResolver, FlowAction, LAYOUT, LauncherModule, MigrationsModule, MigrationsService, PreviewComponent, PreviewModule, ResourcesService, RuntimeEditorService, RuntimeModule, RuntimeService, SHARED_ELEMENT_METADATA, STARTING_PAGE_LAYOUT, STARTING_PAGE_NAME, STARTING_PAGE_STYLES, STARTING_PAGE_TYPE, TemplatesService, TranspilationWorker, UI_DEFINITION_METADATA, UiBuildError, atobSafe, btoaSafe, cmsInject, constructPage, constructPageChildren, constructRegion, doesElementSupportIO, elementToMetadata, extendElementMetadata, extractElementMetadata, findElement, findElementByModule, findElementByPath, flattenElements, getAbsolutePath, getElementAngularIOs, getElementConfig, insertElement, isElementAngularIO, isSharedElement, isValidScript, metadataToElement, normalizeElementMetadata, parseBoundPath, parsePath, removeElement, stringifyElementMetadata, toElementAngularIO };
2518
+ export { CmsAction, DEFAULT_ELEMENT, DEFAULT_PLUGINS_TOKEN, ELEMENT_CONFIG, ELEMENT_METADATA, ElementComponent, ElementDefinition, ElementMetadataWorker, ElementsResolver, FlowAction, LAYOUT, LauncherModule, MigrationsModule, MigrationsService, PreviewComponent, PreviewModule, ResourcesService, RuntimeEditorService, RuntimeModule, RuntimeService, SHARED_ELEMENT_METADATA, STARTING_PAGE_LAYOUT, STARTING_PAGE_NAME, STARTING_PAGE_STYLES, STARTING_PAGE_TYPE, TemplatesService, TranspilationWorker, UI_DEFINITION_METADATA, UiBuildError, atobSafe, btoaSafe, cmsInject, constructPage, constructPageChildren, constructRegion, doesElementSupportIO, elementToMetadata, extendElementMetadata, extractElementMetadata, findElement, findElementByModule, findElementByPath, flattenElements, getAbsolutePath, getElementAngularIOs, getElementConfig, insertElement, isElementAngularIO, isSharedElement, isValidScript, metadataToElement, normalizeElementMetadata, parsePath, removeElement, stringifyElementMetadata, toElementAngularIO };
2656
2519
  //# sourceMappingURL=veloceapps-sdk-cms.mjs.map