@aurigma/axios-storefront-api-client 2.40.1 → 2.41.2

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.
@@ -55,7 +55,7 @@ export interface IProcessingPipelinesApiClient {
55
55
  getAll(skip?: number | null | undefined, take?: number | null | undefined, search?: string | null | undefined, tenantId?: number | null | undefined): Promise<PagedOfProcessingPipelineDto>;
56
56
  /**
57
57
  * Returns a processing pipeline.
58
- * @param id Processing pipeline identifier..
58
+ * @param id Processing pipeline identifier.
59
59
  * @param tenantId (optional) Tenant identifier.
60
60
  * @return Success
61
61
  */
@@ -78,7 +78,7 @@ export declare class ProcessingPipelinesApiClient extends ApiClientBase implemen
78
78
  protected processGetAll(response: AxiosResponse): Promise<PagedOfProcessingPipelineDto>;
79
79
  /**
80
80
  * Returns a processing pipeline.
81
- * @param id Processing pipeline identifier..
81
+ * @param id Processing pipeline identifier.
82
82
  * @param tenantId (optional) Tenant identifier.
83
83
  * @return Success
84
84
  */
@@ -893,8 +893,8 @@ export interface ProcessingPipelineDto {
893
893
  id?: number;
894
894
  /** Processing pipeline name. */
895
895
  name?: string | null;
896
- /** Processing pipeline content. */
897
- content?: string | null;
896
+ /** Processing pipeline raw (uncompiled) content. */
897
+ rawContent?: string | null;
898
898
  }
899
899
  /** Paged list of items. */
900
900
  export interface PagedOfProcessingPipelineDto {
@@ -989,7 +989,7 @@ export declare enum WorkflowType {
989
989
  UIFramework = "UIFramework",
990
990
  SimpleEditor = "SimpleEditor",
991
991
  DesignEditor = "DesignEditor",
992
- HandyEditor = "HandyEditor"
992
+ WorkflowElements = "WorkflowElements"
993
993
  }
994
994
  /** Personalization workflow description DTO. */
995
995
  export interface PersonalizationWorkflowDto {
@@ -1400,8 +1400,10 @@ export interface TenantApplicationsInfoDto {
1400
1400
  uiFrameworkUrl?: string | null;
1401
1401
  /** An url to the 'Simple editor'. */
1402
1402
  simpleEditorUrl?: string | null;
1403
- /** An url to the 'Handy editor'. */
1404
- handyEditorUrl?: string | null;
1403
+ /** An url to the 'Workflow Elements' web components library. */
1404
+ workflowElementsUrl?: string | null;
1405
+ /** An url to the 'Template editor'. */
1406
+ templateEditorUrl?: string | null;
1405
1407
  /** An url to the 'Preflight' tenant application. */
1406
1408
  preflightUrl?: string | null;
1407
1409
  /** An url to the 'Dynamic Image' tenant application. */
@@ -243,7 +243,7 @@ class ProcessingPipelinesApiClient extends ApiClientBase {
243
243
  }
244
244
  /**
245
245
  * Returns a processing pipeline.
246
- * @param id Processing pipeline identifier..
246
+ * @param id Processing pipeline identifier.
247
247
  * @param tenantId (optional) Tenant identifier.
248
248
  * @return Success
249
249
  */
@@ -3667,7 +3667,7 @@ var WorkflowType;
3667
3667
  WorkflowType["UIFramework"] = "UIFramework";
3668
3668
  WorkflowType["SimpleEditor"] = "SimpleEditor";
3669
3669
  WorkflowType["DesignEditor"] = "DesignEditor";
3670
- WorkflowType["HandyEditor"] = "HandyEditor";
3670
+ WorkflowType["WorkflowElements"] = "WorkflowElements";
3671
3671
  })(WorkflowType = exports.WorkflowType || (exports.WorkflowType = {}));
3672
3672
  /** Defines all available date period filter values for queries. */
3673
3673
  var DatePeriod;