@veloceapps/sdk 11.0.0-20 → 11.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.
@@ -146,7 +146,6 @@ class FlowHeaderComponent {
146
146
  const uiDef = {
147
147
  name: '',
148
148
  createdTimestamp: 0,
149
- primary: true,
150
149
  type: 'DEFAULT',
151
150
  version: 2,
152
151
  children: metaList.map(meta => ({
@@ -256,7 +255,6 @@ class GuidedSellingComponent {
256
255
  const uiDef = {
257
256
  name: '',
258
257
  createdTimestamp: 0,
259
- primary: true,
260
258
  type: 'DEFAULT',
261
259
  version: 2,
262
260
  children: metaList.map(meta => ({
@@ -910,7 +908,6 @@ class AssetsComponent {
910
908
  const uiDef = {
911
909
  name: '',
912
910
  createdTimestamp: 0,
913
- primary: true,
914
911
  type: 'DEFAULT',
915
912
  version: 2,
916
913
  children: metaList.map(meta => ({
@@ -1019,7 +1016,6 @@ class CatalogComponent {
1019
1016
  const uiDef = {
1020
1017
  name: '',
1021
1018
  createdTimestamp: 0,
1022
- primary: true,
1023
1019
  type: 'DEFAULT',
1024
1020
  version: 2,
1025
1021
  children: metaList.map(meta => ({
@@ -1269,7 +1265,6 @@ class ShoppingCartComponent {
1269
1265
  const uiDef = {
1270
1266
  name: '',
1271
1267
  createdTimestamp: 0,
1272
- primary: true,
1273
1268
  type: 'DEFAULT',
1274
1269
  version: 2,
1275
1270
  children: metaList.map(meta => ({
@@ -1440,10 +1435,10 @@ const resolveUIDefinition = () => {
1440
1435
  return of(uiDefContainer);
1441
1436
  }
1442
1437
  if (flowInfoService.context.requiredUIDefinitionId) {
1443
- return uiDefinitionsApiService.fetchUIDefinition$(flowInfoService.context.requiredUIDefinitionId);
1438
+ return uiDefinitionsApiService.fetch$(flowInfoService.context.requiredUIDefinitionId);
1444
1439
  }
1445
1440
  return uiDefinitionsApiService
1446
- .fetchUIDefinitions$({
1441
+ .fetchAll$({
1447
1442
  productId,
1448
1443
  defaultUIDefinitionId: flowInfoService.context.defaultUIDefinitionId,
1449
1444
  })