@aurigma/ng-backoffice-api-client 2.58.1 → 2.60.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,6 +55,7 @@ export interface IProductReferencesManagementApiClient {
55
55
  * @param productSpecificationId (optional) Customer's Canvas product specification filter.
56
56
  * @param productId (optional) Customer's Canvas product filter.
57
57
  * @param productLinkId (optional) Customer's Canvas product link filter.
58
+ * @param productBundleId (optional) Customer's Canvas product bundle filter.
58
59
  * @param skip (optional) Defines page start offset from beginning of sorted result list.
59
60
  * @param take (optional) Defines page length (how many consequent items of sorted result list should be taken).
60
61
  * @param sorting (optional) Defines sorting order of result list e.g.: "Title ASC, LastModified DESC".
@@ -65,7 +66,7 @@ export interface IProductReferencesManagementApiClient {
65
66
  * @param tenantId (optional) Tenant identifier.
66
67
  * @return Success
67
68
  */
68
- getAll(storefrontId: number, productReference?: string | null | undefined, productSpecificationId?: number | null | undefined, productId?: number | null | undefined, productLinkId?: number | null | undefined, skip?: number | null | undefined, take?: number | null | undefined, sorting?: string | null | undefined, search?: string | null | undefined, sku?: string | null | undefined, tags?: string[] | null | undefined, customFields?: string | null | undefined, tenantId?: number | null | undefined): Observable<PagedOfProductReferenceDto>;
69
+ getAll(storefrontId: number, productReference?: string | null | undefined, productSpecificationId?: number | null | undefined, productId?: number | null | undefined, productLinkId?: number | null | undefined, productBundleId?: number | undefined, skip?: number | null | undefined, take?: number | null | undefined, sorting?: string | null | undefined, search?: string | null | undefined, sku?: string | null | undefined, tags?: string[] | null | undefined, customFields?: string | null | undefined, tenantId?: number | null | undefined): Observable<PagedOfProductReferenceDto>;
69
70
  /**
70
71
  * Creates a new storefront product reference.
71
72
  * @param storefrontId Storefront identifier.
@@ -104,6 +105,7 @@ export declare class ProductReferencesManagementApiClient extends ApiClientBase
104
105
  * @param productSpecificationId (optional) Customer's Canvas product specification filter.
105
106
  * @param productId (optional) Customer's Canvas product filter.
106
107
  * @param productLinkId (optional) Customer's Canvas product link filter.
108
+ * @param productBundleId (optional) Customer's Canvas product bundle filter.
107
109
  * @param skip (optional) Defines page start offset from beginning of sorted result list.
108
110
  * @param take (optional) Defines page length (how many consequent items of sorted result list should be taken).
109
111
  * @param sorting (optional) Defines sorting order of result list e.g.: "Title ASC, LastModified DESC".
@@ -114,7 +116,7 @@ export declare class ProductReferencesManagementApiClient extends ApiClientBase
114
116
  * @param tenantId (optional) Tenant identifier.
115
117
  * @return Success
116
118
  */
117
- getAll(storefrontId: number, productReference?: string | null | undefined, productSpecificationId?: number | null | undefined, productId?: number | null | undefined, productLinkId?: number | null | undefined, skip?: number | null | undefined, take?: number | null | undefined, sorting?: string | null | undefined, search?: string | null | undefined, sku?: string | null | undefined, tags?: string[] | null | undefined, customFields?: string | null | undefined, tenantId?: number | null | undefined): Observable<PagedOfProductReferenceDto>;
119
+ getAll(storefrontId: number, productReference?: string | null | undefined, productSpecificationId?: number | null | undefined, productId?: number | null | undefined, productLinkId?: number | null | undefined, productBundleId?: number | undefined, skip?: number | null | undefined, take?: number | null | undefined, sorting?: string | null | undefined, search?: string | null | undefined, sku?: string | null | undefined, tags?: string[] | null | undefined, customFields?: string | null | undefined, tenantId?: number | null | undefined): Observable<PagedOfProductReferenceDto>;
118
120
  protected processGetAll(response: HttpResponseBase): Observable<PagedOfProductReferenceDto>;
119
121
  /**
120
122
  * Creates a new storefront product reference.
@@ -161,7 +163,7 @@ export interface IProductsManagementApiClient {
161
163
  /**
162
164
  * Creates a new product and returns its description.
163
165
  * @param tenantId (optional) Tenant identifier.
164
- * @param body (optional)
166
+ * @param body (optional) Product creation parameters.
165
167
  * @return Success
166
168
  */
167
169
  createProduct(tenantId?: number | null | undefined, body?: CreateProductDto | null | undefined): Observable<ProductDto>;
@@ -394,7 +396,7 @@ export declare class ProductsManagementApiClient extends ApiClientBase implement
394
396
  /**
395
397
  * Creates a new product and returns its description.
396
398
  * @param tenantId (optional) Tenant identifier.
397
- * @param body (optional)
399
+ * @param body (optional) Product creation parameters.
398
400
  * @return Success
399
401
  */
400
402
  createProduct(tenantId?: number | null | undefined, body?: CreateProductDto | null | undefined): Observable<ProductDto>;
@@ -940,7 +942,8 @@ export interface BuildInfoModel {
940
942
  export declare enum ProductReferenceType {
941
943
  ProductSpecification = "ProductSpecification",
942
944
  Product = "Product",
943
- ProductLink = "ProductLink"
945
+ ProductLink = "ProductLink",
946
+ ProductBundle = "ProductBundle"
944
947
  }
945
948
  /** DTO class, containing information about storefront product reference. */
946
949
  export interface ProductReferenceDto {
@@ -958,6 +961,8 @@ export interface ProductReferenceDto {
958
961
  productVersionId?: number;
959
962
  /** Customer's Canvas product link identifier. */
960
963
  productLinkId?: number;
964
+ /** Customer's Canvas product bundle identifier. */
965
+ productBundleId?: number;
961
966
  /** Storefront identifier. */
962
967
  storefrontId?: number;
963
968
  /** Tenant identifier. */
@@ -998,6 +1003,8 @@ export interface CreateProductReferenceDto {
998
1003
  productId?: number | null;
999
1004
  /** Customer's Canvas product link identifier. */
1000
1005
  productLinkId?: number | null;
1006
+ /** Customer's Canvas product bundle identifier. */
1007
+ productBundleId?: number | null;
1001
1008
  }
1002
1009
  export interface ProblemDetails {
1003
1010
  type?: string | null;
@@ -1020,6 +1027,8 @@ export interface ProductReferenceInfo {
1020
1027
  productId?: number;
1021
1028
  /** Customer's Canvas product link identifier. */
1022
1029
  productLinkId?: number;
1030
+ /** Customer's Canvas product bundle identifier. */
1031
+ productBundleId?: number;
1023
1032
  /** Storefront identifier. */
1024
1033
  storefrontId?: number;
1025
1034
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aurigma/ng-backoffice-api-client",
3
- "version": "2.58.1",
3
+ "version": "2.60.2",
4
4
  "license": "SEE LICENSE IN License.md",
5
5
  "description": "Angular API Client for BackOffice API service of Customer's Canvas web-to-print system.",
6
6
  "author": "Aurigma Inc <info@aurigma.com> (https://customerscanvas.com)",