@aurigma/ng-storefront-api-client 2.60.2 → 2.62.12
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/aurigma-ng-storefront-api-client.metadata.json +1 -1
- package/bundles/aurigma-ng-storefront-api-client.umd.js +9 -2
- package/bundles/aurigma-ng-storefront-api-client.umd.js.map +1 -1
- package/bundles/aurigma-ng-storefront-api-client.umd.min.js +1 -1
- package/bundles/aurigma-ng-storefront-api-client.umd.min.js.map +1 -1
- package/esm2015/lib/storefront-api-client.js +10 -3
- package/fesm2015/aurigma-ng-storefront-api-client.js +9 -2
- package/fesm2015/aurigma-ng-storefront-api-client.js.map +1 -1
- package/lib/storefront-api-client.d.ts +14 -4
- package/package.json +1 -1
|
@@ -677,7 +677,7 @@ export interface IProductsApiClient {
|
|
|
677
677
|
/**
|
|
678
678
|
* Returns a list of product links.
|
|
679
679
|
* @param id Product identifier.
|
|
680
|
-
* @param productVersionId (optional)
|
|
680
|
+
* @param productVersionId (optional) Product version identifier.
|
|
681
681
|
* @param skip (optional) Defines page start offset from beginning of sorted result list.
|
|
682
682
|
* @param take (optional) Defines page length (how many consequent items of sorted result list should be taken).
|
|
683
683
|
* @param sorting (optional) Defines sorting order of result list e.g.: "Title ASC, LastModified DESC".
|
|
@@ -690,7 +690,7 @@ export interface IProductsApiClient {
|
|
|
690
690
|
* Returns a product link.
|
|
691
691
|
* @param id Product identifier.
|
|
692
692
|
* @param productLinkId Product link identifier.
|
|
693
|
-
* @param productVersionId (optional)
|
|
693
|
+
* @param productVersionId (optional) Product version identifier.
|
|
694
694
|
* @param tenantId (optional) Tenant identifier.
|
|
695
695
|
* @return Success
|
|
696
696
|
*/
|
|
@@ -857,7 +857,7 @@ export declare class ProductsApiClient extends ApiClientBase implements IProduct
|
|
|
857
857
|
/**
|
|
858
858
|
* Returns a list of product links.
|
|
859
859
|
* @param id Product identifier.
|
|
860
|
-
* @param productVersionId (optional)
|
|
860
|
+
* @param productVersionId (optional) Product version identifier.
|
|
861
861
|
* @param skip (optional) Defines page start offset from beginning of sorted result list.
|
|
862
862
|
* @param take (optional) Defines page length (how many consequent items of sorted result list should be taken).
|
|
863
863
|
* @param sorting (optional) Defines sorting order of result list e.g.: "Title ASC, LastModified DESC".
|
|
@@ -871,7 +871,7 @@ export declare class ProductsApiClient extends ApiClientBase implements IProduct
|
|
|
871
871
|
* Returns a product link.
|
|
872
872
|
* @param id Product identifier.
|
|
873
873
|
* @param productLinkId Product link identifier.
|
|
874
|
-
* @param productVersionId (optional)
|
|
874
|
+
* @param productVersionId (optional) Product version identifier.
|
|
875
875
|
* @param tenantId (optional) Tenant identifier.
|
|
876
876
|
* @return Success
|
|
877
877
|
*/
|
|
@@ -1690,6 +1690,10 @@ export interface ProductBundleResourceDto {
|
|
|
1690
1690
|
export interface ProductBundleItemDto {
|
|
1691
1691
|
/** Product bundle item identifier. */
|
|
1692
1692
|
id?: number;
|
|
1693
|
+
/** Product bundle item name. */
|
|
1694
|
+
name?: string | null;
|
|
1695
|
+
/** Product bundle item description. */
|
|
1696
|
+
description?: string | null;
|
|
1693
1697
|
/** Bundled product identifier. */
|
|
1694
1698
|
productId?: number | null;
|
|
1695
1699
|
/** Bundled product version identifier. */
|
|
@@ -2354,6 +2358,8 @@ export interface ProductVariantMockupDto {
|
|
|
2354
2358
|
mockupId?: string | null;
|
|
2355
2359
|
/** Mockup name. */
|
|
2356
2360
|
mockupName?: string | null;
|
|
2361
|
+
/** Mockup validation type. */
|
|
2362
|
+
mockupValidationType?: string | null;
|
|
2357
2363
|
/** Mockup type. */
|
|
2358
2364
|
mockupType?: ProductVariantMockupType;
|
|
2359
2365
|
/** Surface index indicates a surface of a design to which mockup should be applied. */
|
|
@@ -2445,6 +2451,8 @@ export interface ProjectItemDto {
|
|
|
2445
2451
|
id?: number;
|
|
2446
2452
|
/** Item name. */
|
|
2447
2453
|
name?: string | null;
|
|
2454
|
+
/** Project item group identifier. */
|
|
2455
|
+
groupId?: string | null;
|
|
2448
2456
|
/** Item quantity information. */
|
|
2449
2457
|
quantity?: number | null;
|
|
2450
2458
|
/** Order item identifier from storefront order. */
|
|
@@ -2548,6 +2556,8 @@ May keep reference to version of `Product` (depending on `Type` value). */
|
|
|
2548
2556
|
export interface ProjectItemParametersDto {
|
|
2549
2557
|
/** Item name. */
|
|
2550
2558
|
name?: string | null;
|
|
2559
|
+
/** Project item group identifier. */
|
|
2560
|
+
groupId?: string | null;
|
|
2551
2561
|
/** Item quantity information. */
|
|
2552
2562
|
quantity?: number | null;
|
|
2553
2563
|
/** Line item index from ecommerce system order. */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aurigma/ng-storefront-api-client",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.62.12",
|
|
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)",
|