@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.
- package/dist/cjs/storefront-api-client.d.ts +9 -7
- package/dist/cjs/storefront-api-client.js +2 -2
- package/dist/cjs/storefront-api-client.js.map +1 -1
- package/dist/esm/storefront-api-client.d.ts +9 -7
- package/dist/esm/storefront-api-client.js +2 -2
- package/dist/esm/storefront-api-client.js.map +1 -1
- package/package.json +1 -1
|
@@ -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
|
-
|
|
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
|
-
|
|
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 '
|
|
1404
|
-
|
|
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. */
|
|
@@ -237,7 +237,7 @@ export class ProcessingPipelinesApiClient extends ApiClientBase {
|
|
|
237
237
|
}
|
|
238
238
|
/**
|
|
239
239
|
* Returns a processing pipeline.
|
|
240
|
-
* @param id Processing pipeline identifier
|
|
240
|
+
* @param id Processing pipeline identifier.
|
|
241
241
|
* @param tenantId (optional) Tenant identifier.
|
|
242
242
|
* @return Success
|
|
243
243
|
*/
|
|
@@ -3654,7 +3654,7 @@ export var WorkflowType;
|
|
|
3654
3654
|
WorkflowType["UIFramework"] = "UIFramework";
|
|
3655
3655
|
WorkflowType["SimpleEditor"] = "SimpleEditor";
|
|
3656
3656
|
WorkflowType["DesignEditor"] = "DesignEditor";
|
|
3657
|
-
WorkflowType["
|
|
3657
|
+
WorkflowType["WorkflowElements"] = "WorkflowElements";
|
|
3658
3658
|
})(WorkflowType || (WorkflowType = {}));
|
|
3659
3659
|
/** Defines all available date period filter values for queries. */
|
|
3660
3660
|
export var DatePeriod;
|