@veloceapps/sdk 11.0.0-28 → 11.0.0-29

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 (40) hide show
  1. package/cms/vendor-map.d.ts +5 -6
  2. package/core/modules/configuration/services/configuration-runtime.service.d.ts +1 -1
  3. package/core/modules/configuration/services/configuration.service.d.ts +3 -3
  4. package/core/modules/flow-configuration/services/flow-configuration.service.d.ts +3 -3
  5. package/core/services/flow-info.service.d.ts +3 -3
  6. package/core/services/product-images.service.d.ts +3 -3
  7. package/core/services/runtime-settings.service.d.ts +1 -1
  8. package/esm2020/cms/vendor-map.mjs +6 -7
  9. package/esm2020/core/modules/configuration/services/configuration-runtime.service.mjs +3 -3
  10. package/esm2020/core/modules/configuration/services/configuration.service.mjs +7 -7
  11. package/esm2020/core/modules/flow-configuration/services/flow-configuration.service.mjs +7 -7
  12. package/esm2020/core/services/flow-info.service.mjs +7 -7
  13. package/esm2020/core/services/product-images.service.mjs +8 -8
  14. package/esm2020/core/services/runtime-settings.service.mjs +3 -3
  15. package/esm2020/src/components/flow-header/flow-header.component.mjs +7 -7
  16. package/esm2020/src/components/guided-selling/guided-selling.component.mjs +7 -7
  17. package/esm2020/src/pages/assets/assets.component.mjs +7 -7
  18. package/esm2020/src/pages/catalog/catalog.component.mjs +7 -7
  19. package/esm2020/src/pages/debug/debug.component.mjs +3 -3
  20. package/esm2020/src/pages/shopping-cart/shopping-cart.component.mjs +7 -7
  21. package/esm2020/src/resolvers/ui-definition.resolver.mjs +5 -5
  22. package/fesm2015/veloceapps-sdk-cms.mjs +5 -6
  23. package/fesm2015/veloceapps-sdk-cms.mjs.map +1 -1
  24. package/fesm2015/veloceapps-sdk-core.mjs +28 -28
  25. package/fesm2015/veloceapps-sdk-core.mjs.map +1 -1
  26. package/fesm2015/veloceapps-sdk.mjs +31 -32
  27. package/fesm2015/veloceapps-sdk.mjs.map +1 -1
  28. package/fesm2020/veloceapps-sdk-cms.mjs +5 -6
  29. package/fesm2020/veloceapps-sdk-cms.mjs.map +1 -1
  30. package/fesm2020/veloceapps-sdk-core.mjs +28 -28
  31. package/fesm2020/veloceapps-sdk-core.mjs.map +1 -1
  32. package/fesm2020/veloceapps-sdk.mjs +31 -32
  33. package/fesm2020/veloceapps-sdk.mjs.map +1 -1
  34. package/package.json +1 -1
  35. package/src/components/flow-header/flow-header.component.d.ts +3 -3
  36. package/src/components/guided-selling/guided-selling.component.d.ts +3 -3
  37. package/src/pages/assets/assets.component.d.ts +3 -3
  38. package/src/pages/catalog/catalog.component.d.ts +3 -3
  39. package/src/pages/debug/debug.component.d.ts +1 -1
  40. package/src/pages/shopping-cart/shopping-cart.component.d.ts +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veloceapps/sdk",
3
- "version": "11.0.0-28",
3
+ "version": "11.0.0-29",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/animations": "~15.2.0",
@@ -1,12 +1,12 @@
1
1
  import { OnDestroy } from '@angular/core';
2
- import { UITemplatesApiService } from '@veloceapps/api/v2';
2
+ import { UITemplatesAdminApiService } from '@veloceapps/api/v2';
3
3
  import { ToastService } from '@veloceapps/components';
4
4
  import { UIDefinition } from '@veloceapps/core';
5
5
  import { FlowCustomization, FlowInfoService, FlowStateService } from '@veloceapps/sdk/core';
6
6
  import { BehaviorSubject } from 'rxjs';
7
7
  import * as i0 from "@angular/core";
8
8
  export declare class FlowHeaderComponent implements OnDestroy {
9
- private templatesApi;
9
+ private templatesAdminApiService;
10
10
  private flowStateService;
11
11
  private flowInfo;
12
12
  private toastService;
@@ -14,7 +14,7 @@ export declare class FlowHeaderComponent implements OnDestroy {
14
14
  uiDefinition$: BehaviorSubject<UIDefinition | null>;
15
15
  private templateApiName;
16
16
  private destroy$;
17
- constructor(templatesApi: UITemplatesApiService, flowStateService: FlowStateService, flowInfo: FlowInfoService, toastService: ToastService, customizationService?: FlowCustomization | undefined);
17
+ constructor(templatesAdminApiService: UITemplatesAdminApiService, flowStateService: FlowStateService, flowInfo: FlowInfoService, toastService: ToastService, customizationService?: FlowCustomization | undefined);
18
18
  ngOnDestroy(): void;
19
19
  private initialize;
20
20
  private getLocalMeta$;
@@ -1,12 +1,12 @@
1
1
  import { OnDestroy } from '@angular/core';
2
- import { UITemplatesApiService } from '@veloceapps/api/v2';
2
+ import { UITemplatesAdminApiService } from '@veloceapps/api/v2';
3
3
  import { ToastService } from '@veloceapps/components';
4
4
  import { UIDefinition } from '@veloceapps/core';
5
5
  import { FlowCustomization, FlowInfoService, FlowStateService } from '@veloceapps/sdk/core';
6
6
  import { BehaviorSubject } from 'rxjs';
7
7
  import * as i0 from "@angular/core";
8
8
  export declare class GuidedSellingComponent implements OnDestroy {
9
- private templatesApi;
9
+ private templatesAdminApiService;
10
10
  private flowStateService;
11
11
  private flowInfo;
12
12
  private toastService;
@@ -14,7 +14,7 @@ export declare class GuidedSellingComponent implements OnDestroy {
14
14
  uiDefinition$: BehaviorSubject<UIDefinition | null>;
15
15
  private templateApiName;
16
16
  private destroy$;
17
- constructor(templatesApi: UITemplatesApiService, flowStateService: FlowStateService, flowInfo: FlowInfoService, toastService: ToastService, customizationService?: FlowCustomization | undefined);
17
+ constructor(templatesAdminApiService: UITemplatesAdminApiService, flowStateService: FlowStateService, flowInfo: FlowInfoService, toastService: ToastService, customizationService?: FlowCustomization | undefined);
18
18
  ngOnDestroy(): void;
19
19
  private initialize;
20
20
  private getLocalMeta$;
@@ -1,5 +1,5 @@
1
1
  import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core';
2
- import { UITemplatesApiService } from '@veloceapps/api/v2';
2
+ import { UITemplatesAdminApiService } from '@veloceapps/api/v2';
3
3
  import { ToastService } from '@veloceapps/components';
4
4
  import { UIDefinition } from '@veloceapps/core';
5
5
  import { FlowCustomization, FlowInfoService } from '@veloceapps/sdk/core';
@@ -10,7 +10,7 @@ interface State {
10
10
  failure: boolean;
11
11
  }
12
12
  export declare class AssetsComponent implements OnInit, OnDestroy {
13
- private templatesApi;
13
+ private templatesAdminApiService;
14
14
  private cdr;
15
15
  private toastService;
16
16
  private flowInfo;
@@ -19,7 +19,7 @@ export declare class AssetsComponent implements OnInit, OnDestroy {
19
19
  state$: BehaviorSubject<State>;
20
20
  private templateApiName;
21
21
  private destroyed$;
22
- constructor(templatesApi: UITemplatesApiService, cdr: ChangeDetectorRef, toastService: ToastService, flowInfo: FlowInfoService, customizationService?: FlowCustomization | undefined);
22
+ constructor(templatesAdminApiService: UITemplatesAdminApiService, cdr: ChangeDetectorRef, toastService: ToastService, flowInfo: FlowInfoService, customizationService?: FlowCustomization | undefined);
23
23
  ngOnInit(): void;
24
24
  ngOnDestroy(): void;
25
25
  private getLocalMeta$;
@@ -1,5 +1,5 @@
1
1
  import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core';
2
- import { UITemplatesApiService } from '@veloceapps/api/v2';
2
+ import { UITemplatesAdminApiService } from '@veloceapps/api/v2';
3
3
  import { ToastService } from '@veloceapps/components';
4
4
  import { UIDefinition } from '@veloceapps/core';
5
5
  import { FlowCustomization, FlowInfoService } from '@veloceapps/sdk/core';
@@ -10,7 +10,7 @@ interface State {
10
10
  failure: boolean;
11
11
  }
12
12
  export declare class CatalogComponent implements OnInit, OnDestroy {
13
- private templatesApi;
13
+ private templatesAdminApiService;
14
14
  private cdr;
15
15
  private toastService;
16
16
  private flowInfo;
@@ -19,7 +19,7 @@ export declare class CatalogComponent implements OnInit, OnDestroy {
19
19
  state$: BehaviorSubject<State>;
20
20
  private templateApiName;
21
21
  private destroyed$;
22
- constructor(templatesApi: UITemplatesApiService, cdr: ChangeDetectorRef, toastService: ToastService, flowInfo: FlowInfoService, customizationService?: FlowCustomization | undefined);
22
+ constructor(templatesAdminApiService: UITemplatesAdminApiService, cdr: ChangeDetectorRef, toastService: ToastService, flowInfo: FlowInfoService, customizationService?: FlowCustomization | undefined);
23
23
  ngOnInit(): void;
24
24
  ngOnDestroy(): void;
25
25
  private getLocalMeta$;
@@ -1,6 +1,6 @@
1
1
  import { FormControl, FormGroup } from '@angular/forms';
2
2
  import { ActivatedRoute, Params, Router } from '@angular/router';
3
- import { FlowsApiService } from '@veloceapps/api';
3
+ import { FlowsApiService } from '@veloceapps/api/v2';
4
4
  import { Flow } from '@veloceapps/core';
5
5
  import { Observable } from 'rxjs';
6
6
  import * as i0 from "@angular/core";
@@ -1,5 +1,5 @@
1
1
  import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core';
2
- import { UITemplatesApiService } from '@veloceapps/api/v2';
2
+ import { UITemplatesAdminApiService } from '@veloceapps/api/v2';
3
3
  import { ToastService } from '@veloceapps/components';
4
4
  import { UIDefinition } from '@veloceapps/core';
5
5
  import { FlowCustomization, FlowInfoService } from '@veloceapps/sdk/core';
@@ -10,7 +10,7 @@ interface State {
10
10
  failure: boolean;
11
11
  }
12
12
  export declare class ShoppingCartComponent implements OnInit, OnDestroy {
13
- private templatesApi;
13
+ private templatesAdminApiService;
14
14
  private cdr;
15
15
  private toastService;
16
16
  private flowInfo;
@@ -19,7 +19,7 @@ export declare class ShoppingCartComponent implements OnInit, OnDestroy {
19
19
  state$: BehaviorSubject<State>;
20
20
  private templateApiName;
21
21
  private destroyed$;
22
- constructor(templatesApi: UITemplatesApiService, cdr: ChangeDetectorRef, toastService: ToastService, flowInfo: FlowInfoService, customizationService?: FlowCustomization | undefined);
22
+ constructor(templatesAdminApiService: UITemplatesAdminApiService, cdr: ChangeDetectorRef, toastService: ToastService, flowInfo: FlowInfoService, customizationService?: FlowCustomization | undefined);
23
23
  ngOnInit(): void;
24
24
  ngOnDestroy(): void;
25
25
  private getLocalMeta$;