@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
|
*/
|
|
@@ -888,7 +888,10 @@ export class ProductReferencesApiClient extends ApiClientBase {
|
|
|
888
888
|
return Promise.resolve(null);
|
|
889
889
|
}
|
|
890
890
|
/**
|
|
891
|
-
*
|
|
891
|
+
* Returns a product personalization workflow configuration by storefront product reference.
|
|
892
|
+
* @param reference Product reference - external reference to Customer's Canvas product specification, e.g online store product identifier.
|
|
893
|
+
* @param storefrontId Storefront identifier.
|
|
894
|
+
* @param tenantId (optional) Tenant identifier.
|
|
892
895
|
* @return Success
|
|
893
896
|
* @deprecated
|
|
894
897
|
*/
|
|
@@ -1194,7 +1197,9 @@ export class ProductSpecificationsApiClient extends ApiClientBase {
|
|
|
1194
1197
|
return Promise.resolve(null);
|
|
1195
1198
|
}
|
|
1196
1199
|
/**
|
|
1197
|
-
*
|
|
1200
|
+
* Returns a product personalization workflow configuration by product specification identifier.
|
|
1201
|
+
* @param id Product specification identifier.
|
|
1202
|
+
* @param tenantId (optional) Tenant identifier.
|
|
1198
1203
|
* @return Success
|
|
1199
1204
|
* @deprecated
|
|
1200
1205
|
*/
|