@aurigma/ng-backoffice-api-client 2.55.1 → 2.55.3
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-backoffice-api-client.metadata.json +1 -1
- package/bundles/aurigma-ng-backoffice-api-client.umd.js +3 -12
- package/bundles/aurigma-ng-backoffice-api-client.umd.js.map +1 -1
- package/bundles/aurigma-ng-backoffice-api-client.umd.min.js +1 -1
- package/bundles/aurigma-ng-backoffice-api-client.umd.min.js.map +1 -1
- package/esm2015/aurigma-ng-backoffice-api-client.js +1 -1
- package/esm2015/lib/backoffice-api-client.js +4 -13
- package/esm2015/lib/backoffice.module.js +1 -1
- package/esm2015/public-api.js +1 -1
- package/fesm2015/aurigma-ng-backoffice-api-client.js +3 -12
- package/fesm2015/aurigma-ng-backoffice-api-client.js.map +1 -1
- package/lib/backoffice-api-client.d.ts +18 -18
- package/package.json +1 -1
|
@@ -268,30 +268,27 @@ export interface IProductsManagementApiClient {
|
|
|
268
268
|
/**
|
|
269
269
|
* Set product variants price. Variants identifiers will be changed.
|
|
270
270
|
* @param id Product identifier.
|
|
271
|
-
* @param productVersionId (optional) Product version identifier.
|
|
272
271
|
* @param tenantId (optional) Tenant identifier.
|
|
273
272
|
* @param body (optional) Set product variants price operation parameters.
|
|
274
273
|
* @return Success
|
|
275
274
|
*/
|
|
276
|
-
setProductVariantPrice(id: number,
|
|
275
|
+
setProductVariantPrice(id: number, tenantId?: number | null | undefined, body?: SetProductVariantPriceDto | null | undefined): Observable<void>;
|
|
277
276
|
/**
|
|
278
277
|
* Set product variants availability. Variants identifiers will be changed.
|
|
279
278
|
* @param id Product identifier.
|
|
280
|
-
* @param productVersionId (optional) Product version identifier.
|
|
281
279
|
* @param tenantId (optional) Tenant identifier.
|
|
282
280
|
* @param body (optional) Set product variants availability operation parameters.
|
|
283
281
|
* @return Success
|
|
284
282
|
*/
|
|
285
|
-
setProductVariantAvailability(id: number,
|
|
283
|
+
setProductVariantAvailability(id: number, tenantId?: number | null | undefined, body?: SetProductVariantAvailabilityDto | null | undefined): Observable<void>;
|
|
286
284
|
/**
|
|
287
285
|
* Set product variants SKU. Variants identifiers will be changed.
|
|
288
286
|
* @param id Product identifier.
|
|
289
|
-
* @param productVersionId (optional) Product version identifier.
|
|
290
287
|
* @param tenantId (optional) Tenant identifier.
|
|
291
288
|
* @param body (optional) Set product variants SKU operation parameters.
|
|
292
289
|
* @return Success
|
|
293
290
|
*/
|
|
294
|
-
setProductVariantSku(id: number,
|
|
291
|
+
setProductVariantSku(id: number, tenantId?: number | null | undefined, body?: SetProductVariantSkuDto | null | undefined): Observable<void>;
|
|
295
292
|
/**
|
|
296
293
|
* Imports products from a specific CSV file and returns a list of imported products descriptions.
|
|
297
294
|
* @param tenantId (optional) Tenant identifier.
|
|
@@ -504,32 +501,29 @@ export declare class ProductsManagementApiClient extends ApiClientBase implement
|
|
|
504
501
|
/**
|
|
505
502
|
* Set product variants price. Variants identifiers will be changed.
|
|
506
503
|
* @param id Product identifier.
|
|
507
|
-
* @param productVersionId (optional) Product version identifier.
|
|
508
504
|
* @param tenantId (optional) Tenant identifier.
|
|
509
505
|
* @param body (optional) Set product variants price operation parameters.
|
|
510
506
|
* @return Success
|
|
511
507
|
*/
|
|
512
|
-
setProductVariantPrice(id: number,
|
|
508
|
+
setProductVariantPrice(id: number, tenantId?: number | null | undefined, body?: SetProductVariantPriceDto | null | undefined): Observable<void>;
|
|
513
509
|
protected processSetProductVariantPrice(response: HttpResponseBase): Observable<void>;
|
|
514
510
|
/**
|
|
515
511
|
* Set product variants availability. Variants identifiers will be changed.
|
|
516
512
|
* @param id Product identifier.
|
|
517
|
-
* @param productVersionId (optional) Product version identifier.
|
|
518
513
|
* @param tenantId (optional) Tenant identifier.
|
|
519
514
|
* @param body (optional) Set product variants availability operation parameters.
|
|
520
515
|
* @return Success
|
|
521
516
|
*/
|
|
522
|
-
setProductVariantAvailability(id: number,
|
|
517
|
+
setProductVariantAvailability(id: number, tenantId?: number | null | undefined, body?: SetProductVariantAvailabilityDto | null | undefined): Observable<void>;
|
|
523
518
|
protected processSetProductVariantAvailability(response: HttpResponseBase): Observable<void>;
|
|
524
519
|
/**
|
|
525
520
|
* Set product variants SKU. Variants identifiers will be changed.
|
|
526
521
|
* @param id Product identifier.
|
|
527
|
-
* @param productVersionId (optional) Product version identifier.
|
|
528
522
|
* @param tenantId (optional) Tenant identifier.
|
|
529
523
|
* @param body (optional) Set product variants SKU operation parameters.
|
|
530
524
|
* @return Success
|
|
531
525
|
*/
|
|
532
|
-
setProductVariantSku(id: number,
|
|
526
|
+
setProductVariantSku(id: number, tenantId?: number | null | undefined, body?: SetProductVariantSkuDto | null | undefined): Observable<void>;
|
|
533
527
|
protected processSetProductVariantSku(response: HttpResponseBase): Observable<void>;
|
|
534
528
|
/**
|
|
535
529
|
* Imports products from a specific CSV file and returns a list of imported products descriptions.
|
|
@@ -1284,6 +1278,8 @@ export interface ProductVariantResourceDto {
|
|
|
1284
1278
|
export interface ProductVariantDesignDto {
|
|
1285
1279
|
/** Product variant identifier. */
|
|
1286
1280
|
productVariantId?: number;
|
|
1281
|
+
/** Product variant unique identifier. */
|
|
1282
|
+
productVariantUID?: string | null;
|
|
1287
1283
|
/** Product version identifier. */
|
|
1288
1284
|
productVersionId?: number;
|
|
1289
1285
|
/** Product identifier. */
|
|
@@ -1336,6 +1332,8 @@ export declare enum SurfaceUsageType {
|
|
|
1336
1332
|
export interface ProductVariantMockupDto {
|
|
1337
1333
|
/** Product variant identifier. */
|
|
1338
1334
|
productVariantId?: number;
|
|
1335
|
+
/** Product variant unique identifier. */
|
|
1336
|
+
productVariantUID?: string | null;
|
|
1339
1337
|
/** Product version identifier. */
|
|
1340
1338
|
productVersionId?: number;
|
|
1341
1339
|
/** Product identifier. */
|
|
@@ -1368,6 +1366,8 @@ export interface PagedOfProductVariantMockupDto {
|
|
|
1368
1366
|
export interface ProductVariantDocumentDto {
|
|
1369
1367
|
/** Product variant identifier. */
|
|
1370
1368
|
productVariantId?: number;
|
|
1369
|
+
/** Product variant unique identifier. */
|
|
1370
|
+
productVariantUID?: string | null;
|
|
1371
1371
|
/** Product version identifier. */
|
|
1372
1372
|
productVersionId?: number;
|
|
1373
1373
|
/** Product identifier. */
|
|
@@ -1404,8 +1404,8 @@ export interface PagedOfProductVariantDocumentDto {
|
|
|
1404
1404
|
export interface ProductVariantPriceDto {
|
|
1405
1405
|
/** Price. */
|
|
1406
1406
|
price?: number | null;
|
|
1407
|
-
/**
|
|
1408
|
-
|
|
1407
|
+
/** UIDs of variants for price setting. */
|
|
1408
|
+
variantUIDs?: string[] | null;
|
|
1409
1409
|
}
|
|
1410
1410
|
/** Product variants price setting operation parameters. */
|
|
1411
1411
|
export interface SetProductVariantPriceDto {
|
|
@@ -1416,8 +1416,8 @@ export interface SetProductVariantPriceDto {
|
|
|
1416
1416
|
export interface ProductVariantAvailabilityDto {
|
|
1417
1417
|
/** Availability. */
|
|
1418
1418
|
availability?: boolean;
|
|
1419
|
-
/**
|
|
1420
|
-
|
|
1419
|
+
/** UIDs of variants for availability setting. */
|
|
1420
|
+
variantUIDs?: string[] | null;
|
|
1421
1421
|
}
|
|
1422
1422
|
/** Product variants availability setting operation parameters. */
|
|
1423
1423
|
export interface SetProductVariantAvailabilityDto {
|
|
@@ -1428,8 +1428,8 @@ export interface SetProductVariantAvailabilityDto {
|
|
|
1428
1428
|
export interface ProductVariantSkuDto {
|
|
1429
1429
|
/** SKU. */
|
|
1430
1430
|
sku?: string | null;
|
|
1431
|
-
/**
|
|
1432
|
-
|
|
1431
|
+
/** UIDs of variants for SKU setting. */
|
|
1432
|
+
variantUIDs?: string[] | null;
|
|
1433
1433
|
}
|
|
1434
1434
|
/** Product variants SKU setting operation parameters. */
|
|
1435
1435
|
export interface SetProductVariantSkuDto {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aurigma/ng-backoffice-api-client",
|
|
3
|
-
"version": "2.55.
|
|
3
|
+
"version": "2.55.3",
|
|
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)",
|