@aurigma/axios-storefront-api-client 2.44.1 → 2.45.5
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 +14 -4
- package/dist/cjs/storefront-api-client.js +7 -2
- package/dist/cjs/storefront-api-client.js.map +1 -1
- package/dist/esm/storefront-api-client.d.ts +14 -4
- package/dist/esm/storefront-api-client.js +7 -2
- package/dist/esm/storefront-api-client.js.map +1 -1
- package/package.json +1 -1
|
@@ -152,7 +152,10 @@ export interface IProductReferencesApiClient {
|
|
|
152
152
|
*/
|
|
153
153
|
getPersonalizationWorkflow(reference: string | null, storefrontId?: number | undefined, tenantId?: number | null | undefined): Promise<PersonalizationWorkflowDto>;
|
|
154
154
|
/**
|
|
155
|
-
*
|
|
155
|
+
* Returns a product personalization workflow configuration by storefront product reference.
|
|
156
|
+
* @param reference Product reference - external reference to Customer's Canvas product specification, e.g online store product identifier.
|
|
157
|
+
* @param storefrontId Storefront identifier.
|
|
158
|
+
* @param tenantId (optional) Tenant identifier.
|
|
156
159
|
* @return Success
|
|
157
160
|
* @deprecated
|
|
158
161
|
*/
|
|
@@ -236,7 +239,10 @@ export declare class ProductReferencesApiClient extends ApiClientBase implements
|
|
|
236
239
|
getPersonalizationWorkflow(reference: string | null, storefrontId?: number | undefined, tenantId?: number | null | undefined, cancelToken?: CancelToken | undefined): Promise<PersonalizationWorkflowDto>;
|
|
237
240
|
protected processGetPersonalizationWorkflow(response: AxiosResponse): Promise<PersonalizationWorkflowDto>;
|
|
238
241
|
/**
|
|
239
|
-
*
|
|
242
|
+
* Returns a product personalization workflow configuration by storefront product reference.
|
|
243
|
+
* @param reference Product reference - external reference to Customer's Canvas product specification, e.g online store product identifier.
|
|
244
|
+
* @param storefrontId Storefront identifier.
|
|
245
|
+
* @param tenantId (optional) Tenant identifier.
|
|
240
246
|
* @return Success
|
|
241
247
|
* @deprecated
|
|
242
248
|
*/
|
|
@@ -269,7 +275,9 @@ export interface IProductSpecificationsApiClient {
|
|
|
269
275
|
*/
|
|
270
276
|
getPersonalizationWorkflow(id: number, tenantId?: number | null | undefined): Promise<PersonalizationWorkflowDto>;
|
|
271
277
|
/**
|
|
272
|
-
*
|
|
278
|
+
* Returns a product personalization workflow configuration by product specification identifier.
|
|
279
|
+
* @param id Product specification identifier.
|
|
280
|
+
* @param tenantId (optional) Tenant identifier.
|
|
273
281
|
* @return Success
|
|
274
282
|
* @deprecated
|
|
275
283
|
*/
|
|
@@ -308,7 +316,9 @@ export declare class ProductSpecificationsApiClient extends ApiClientBase implem
|
|
|
308
316
|
getPersonalizationWorkflow(id: number, tenantId?: number | null | undefined, cancelToken?: CancelToken | undefined): Promise<PersonalizationWorkflowDto>;
|
|
309
317
|
protected processGetPersonalizationWorkflow(response: AxiosResponse): Promise<PersonalizationWorkflowDto>;
|
|
310
318
|
/**
|
|
311
|
-
*
|
|
319
|
+
* Returns a product personalization workflow configuration by product specification identifier.
|
|
320
|
+
* @param id Product specification identifier.
|
|
321
|
+
* @param tenantId (optional) Tenant identifier.
|
|
312
322
|
* @return Success
|
|
313
323
|
* @deprecated
|
|
314
324
|
*/
|
|
@@ -895,7 +895,10 @@ class ProductReferencesApiClient extends ApiClientBase {
|
|
|
895
895
|
return Promise.resolve(null);
|
|
896
896
|
}
|
|
897
897
|
/**
|
|
898
|
-
*
|
|
898
|
+
* Returns a product personalization workflow configuration by storefront product reference.
|
|
899
|
+
* @param reference Product reference - external reference to Customer's Canvas product specification, e.g online store product identifier.
|
|
900
|
+
* @param storefrontId Storefront identifier.
|
|
901
|
+
* @param tenantId (optional) Tenant identifier.
|
|
899
902
|
* @return Success
|
|
900
903
|
* @deprecated
|
|
901
904
|
*/
|
|
@@ -1202,7 +1205,9 @@ class ProductSpecificationsApiClient extends ApiClientBase {
|
|
|
1202
1205
|
return Promise.resolve(null);
|
|
1203
1206
|
}
|
|
1204
1207
|
/**
|
|
1205
|
-
*
|
|
1208
|
+
* Returns a product personalization workflow configuration by product specification identifier.
|
|
1209
|
+
* @param id Product specification identifier.
|
|
1210
|
+
* @param tenantId (optional) Tenant identifier.
|
|
1206
1211
|
* @return Success
|
|
1207
1212
|
* @deprecated
|
|
1208
1213
|
*/
|