@aurigma/ng-storefront-api-client 2.40.1 → 2.42.1

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.
@@ -58,7 +58,7 @@ export interface IProcessingPipelinesApiClient {
58
58
  getAll(skip?: number | null | undefined, take?: number | null | undefined, search?: string | null | undefined, tenantId?: number | null | undefined): Observable<PagedOfProcessingPipelineDto>;
59
59
  /**
60
60
  * Returns a processing pipeline.
61
- * @param id Processing pipeline identifier..
61
+ * @param id Processing pipeline identifier.
62
62
  * @param tenantId (optional) Tenant identifier.
63
63
  * @return Success
64
64
  */
@@ -81,7 +81,7 @@ export declare class ProcessingPipelinesApiClient extends ApiClientBase implemen
81
81
  protected processGetAll(response: HttpResponseBase): Observable<PagedOfProcessingPipelineDto>;
82
82
  /**
83
83
  * Returns a processing pipeline.
84
- * @param id Processing pipeline identifier..
84
+ * @param id Processing pipeline identifier.
85
85
  * @param tenantId (optional) Tenant identifier.
86
86
  * @return Success
87
87
  */
@@ -845,6 +845,12 @@ export interface ITenantInfoApiClient {
845
845
  * @return Success
846
846
  */
847
847
  getInfo(tenantId?: number | null | undefined): Observable<TenantInfoDto>;
848
+ /**
849
+ * Returns an information about the tenant measure units.
850
+ * @param tenantId (optional) Tenant identifier.
851
+ * @return Success
852
+ */
853
+ getMeasureUnitsInfo(tenantId?: number | null | undefined): Observable<TenantMeasureUnitsInfoDto>;
848
854
  /**
849
855
  * Returns a list of tenant users.
850
856
  * @param tenantId (optional) Tenant identifier.
@@ -871,6 +877,13 @@ export declare class TenantInfoApiClient extends ApiClientBase implements ITenan
871
877
  */
872
878
  getInfo(tenantId?: number | null | undefined): Observable<TenantInfoDto>;
873
879
  protected processGetInfo(response: HttpResponseBase): Observable<TenantInfoDto>;
880
+ /**
881
+ * Returns an information about the tenant measure units.
882
+ * @param tenantId (optional) Tenant identifier.
883
+ * @return Success
884
+ */
885
+ getMeasureUnitsInfo(tenantId?: number | null | undefined): Observable<TenantMeasureUnitsInfoDto>;
886
+ protected processGetMeasureUnitsInfo(response: HttpResponseBase): Observable<TenantMeasureUnitsInfoDto>;
874
887
  /**
875
888
  * Returns a list of tenant users.
876
889
  * @param tenantId (optional) Tenant identifier.
@@ -896,8 +909,8 @@ export interface ProcessingPipelineDto {
896
909
  id?: number;
897
910
  /** Processing pipeline name. */
898
911
  name?: string | null;
899
- /** Processing pipeline content. */
900
- content?: string | null;
912
+ /** Processing pipeline raw (uncompiled) content. */
913
+ rawContent?: string | null;
901
914
  }
902
915
  /** Paged list of items. */
903
916
  export interface PagedOfProcessingPipelineDto {
@@ -992,7 +1005,7 @@ export declare enum WorkflowType {
992
1005
  UIFramework = "UIFramework",
993
1006
  SimpleEditor = "SimpleEditor",
994
1007
  DesignEditor = "DesignEditor",
995
- HandyEditor = "HandyEditor"
1008
+ WorkflowElements = "WorkflowElements"
996
1009
  }
997
1010
  /** Personalization workflow description DTO. */
998
1011
  export interface PersonalizationWorkflowDto {
@@ -1403,8 +1416,10 @@ export interface TenantApplicationsInfoDto {
1403
1416
  uiFrameworkUrl?: string | null;
1404
1417
  /** An url to the 'Simple editor'. */
1405
1418
  simpleEditorUrl?: string | null;
1406
- /** An url to the 'Handy editor'. */
1407
- handyEditorUrl?: string | null;
1419
+ /** An url to the 'Workflow Elements' web components library. */
1420
+ workflowElementsUrl?: string | null;
1421
+ /** An url to the 'Template editor'. */
1422
+ templateEditorUrl?: string | null;
1408
1423
  /** An url to the 'Preflight' tenant application. */
1409
1424
  preflightUrl?: string | null;
1410
1425
  /** An url to the 'Dynamic Image' tenant application. */
@@ -1429,6 +1444,22 @@ export interface TenantInfoDto {
1429
1444
  /** Tenant activeness status. */
1430
1445
  isActive?: boolean;
1431
1446
  }
1447
+ /** Dto class, containing information about size measure unit. */
1448
+ export interface SizeMeasureUnitDto {
1449
+ /** Measure unit full name. */
1450
+ name?: string | null;
1451
+ /** Measure unit short name. */
1452
+ shortName?: string | null;
1453
+ /** Measure unit ratio. */
1454
+ ratio?: number;
1455
+ /** Indicates if measure unit should be used by default. */
1456
+ isDefault?: boolean;
1457
+ }
1458
+ /** Dto class, containing information about tenant measure units. */
1459
+ export interface TenantMeasureUnitsInfoDto {
1460
+ /** A list of all 'size' measure units of the tenant. */
1461
+ sizeMeasureUntis?: SizeMeasureUnitDto[] | null;
1462
+ }
1432
1463
  export interface TenantUserInfoDto {
1433
1464
  /** Tenant identifier. */
1434
1465
  tenantId?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aurigma/ng-storefront-api-client",
3
- "version": "2.40.1",
3
+ "version": "2.42.1",
4
4
  "license": "SEE LICENSE IN License.md",
5
5
  "description": "Angular API Client for Storefront API service of Customer's Canvas web-to-print system.",
6
6
  "author": "Aurigma Inc <info@aurigma.com> (https://customerscanvas.com)",