@aurigma/ng-backoffice-api-client 2.65.1 → 2.66.6

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.
@@ -66,7 +66,7 @@ export interface IProductReferencesManagementApiClient {
66
66
  * @param tenantId (optional) Tenant identifier.
67
67
  * @return Success
68
68
  */
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
+ getAll(storefrontId: number, productReference?: string | null | undefined, productSpecificationId?: number | null | undefined, productId?: number | null | undefined, productLinkId?: number | null | undefined, productBundleId?: 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>;
70
70
  /**
71
71
  * Creates a new storefront product reference.
72
72
  * @param storefrontId Storefront identifier.
@@ -116,7 +116,7 @@ export declare class ProductReferencesManagementApiClient extends ApiClientBase
116
116
  * @param tenantId (optional) Tenant identifier.
117
117
  * @return Success
118
118
  */
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>;
119
+ getAll(storefrontId: number, productReference?: string | null | undefined, productSpecificationId?: number | null | undefined, productId?: number | null | undefined, productLinkId?: number | null | undefined, productBundleId?: 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>;
120
120
  protected processGetAll(response: HttpResponseBase): Observable<PagedOfProductReferenceDto>;
121
121
  /**
122
122
  * Creates a new storefront product reference.
@@ -1324,8 +1324,12 @@ export interface PagedOfProductDto {
1324
1324
  }
1325
1325
  /** Product option value creation operation parameters. */
1326
1326
  export interface CreateProductOptionValueDto {
1327
+ /** Product option title. */
1328
+ title?: string | null;
1327
1329
  /** Product option value. */
1328
1330
  value?: string | null;
1331
+ /** Product option description. */
1332
+ description?: string | null;
1329
1333
  }
1330
1334
  /** Product option creation operation parameters. */
1331
1335
  export interface CreateProductOptionDto {
@@ -1473,6 +1477,8 @@ export interface SetProductOptionValueDto {
1473
1477
  sortIndex?: number;
1474
1478
  /** Indicates if product option value is used as a default value. */
1475
1479
  isDefault?: boolean;
1480
+ /** Product option title. */
1481
+ title?: string | null;
1476
1482
  /** Product option value. */
1477
1483
  value?: string | null;
1478
1484
  /** Product option value colors. */
@@ -1901,15 +1907,15 @@ export interface CreateProjectStatusDto {
1901
1907
  /** Project status update parameters. */
1902
1908
  export interface UpdateProjectStatusDto {
1903
1909
  /** Status code. */
1904
- code?: number;
1910
+ code?: number | null;
1905
1911
  /** Status mark color. */
1906
1912
  color?: string | null;
1907
1913
  /** Status display name. */
1908
1914
  displayName?: string | null;
1909
1915
  /** Indicates if status is initial for all projects. Only one status may be used as initial. */
1910
- isInitial?: boolean;
1916
+ isInitial?: boolean | null;
1911
1917
  /** Indicates if status is final. Multiple statuses may be used as final (e.g. Completed, Rejected etc). */
1912
- isFinal?: boolean;
1918
+ isFinal?: boolean | null;
1913
1919
  }
1914
1920
  /** Project status transition dto class. */
1915
1921
  export interface ProjectStatusTransitionDto {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aurigma/ng-backoffice-api-client",
3
- "version": "2.65.1",
3
+ "version": "2.66.6",
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)",