@aurigma/ng-storefront-api-client 2.56.1 → 2.58.1
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 +4 -1
- 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 +5 -2
- package/fesm2015/aurigma-ng-storefront-api-client.js +4 -1
- package/fesm2015/aurigma-ng-storefront-api-client.js.map +1 -1
- package/lib/storefront-api-client.d.ts +12 -2
- package/package.json +1 -1
|
@@ -1300,10 +1300,11 @@ export interface IStorefrontUsersApiClient {
|
|
|
1300
1300
|
* @param take (optional) Defines page length (how many consequent items of sorted result list should be taken).
|
|
1301
1301
|
* @param sorting (optional) Defines sorting order of result list e.g.: "Title ASC, LastModified DESC".
|
|
1302
1302
|
* @param search (optional) Search string for partial match.
|
|
1303
|
+
* @param includeAnonymous (optional) Flag that indicates if anonymous users should be included. `True` by default.
|
|
1303
1304
|
* @param tenantId (optional) Tenant identifier.
|
|
1304
1305
|
* @return Success
|
|
1305
1306
|
*/
|
|
1306
|
-
getAll(storefrontId: number, storefrontUserId?: string | null | undefined, skip?: number | null | undefined, take?: number | null | undefined, sorting?: string | null | undefined, search?: string | null | undefined, tenantId?: number | null | undefined): Observable<PagedOfStorefrontUserDto>;
|
|
1307
|
+
getAll(storefrontId: number, storefrontUserId?: string | null | undefined, skip?: number | null | undefined, take?: number | null | undefined, sorting?: string | null | undefined, search?: string | null | undefined, includeAnonymous?: boolean | null | undefined, tenantId?: number | null | undefined): Observable<PagedOfStorefrontUserDto>;
|
|
1307
1308
|
/**
|
|
1308
1309
|
* Creates a new storefront user.
|
|
1309
1310
|
* @param storefrontId Storefront identifier.
|
|
@@ -1358,10 +1359,11 @@ export declare class StorefrontUsersApiClient extends ApiClientBase implements I
|
|
|
1358
1359
|
* @param take (optional) Defines page length (how many consequent items of sorted result list should be taken).
|
|
1359
1360
|
* @param sorting (optional) Defines sorting order of result list e.g.: "Title ASC, LastModified DESC".
|
|
1360
1361
|
* @param search (optional) Search string for partial match.
|
|
1362
|
+
* @param includeAnonymous (optional) Flag that indicates if anonymous users should be included. `True` by default.
|
|
1361
1363
|
* @param tenantId (optional) Tenant identifier.
|
|
1362
1364
|
* @return Success
|
|
1363
1365
|
*/
|
|
1364
|
-
getAll(storefrontId: number, storefrontUserId?: string | null | undefined, skip?: number | null | undefined, take?: number | null | undefined, sorting?: string | null | undefined, search?: string | null | undefined, tenantId?: number | null | undefined): Observable<PagedOfStorefrontUserDto>;
|
|
1366
|
+
getAll(storefrontId: number, storefrontUserId?: string | null | undefined, skip?: number | null | undefined, take?: number | null | undefined, sorting?: string | null | undefined, search?: string | null | undefined, includeAnonymous?: boolean | null | undefined, tenantId?: number | null | undefined): Observable<PagedOfStorefrontUserDto>;
|
|
1365
1367
|
protected processGetAll(response: HttpResponseBase): Observable<PagedOfStorefrontUserDto>;
|
|
1366
1368
|
/**
|
|
1367
1369
|
* Creates a new storefront user.
|
|
@@ -1621,6 +1623,8 @@ export interface ProductSummaryOptionValueDto {
|
|
|
1621
1623
|
id?: number;
|
|
1622
1624
|
/** Option value identifying tag. */
|
|
1623
1625
|
tag?: string | null;
|
|
1626
|
+
/** Product option value UID. */
|
|
1627
|
+
uid?: string | null;
|
|
1624
1628
|
/** Option value title. */
|
|
1625
1629
|
title?: string | null;
|
|
1626
1630
|
/** Option value value. */
|
|
@@ -1640,6 +1644,8 @@ export interface ProductSummaryOptionDto {
|
|
|
1640
1644
|
id?: number;
|
|
1641
1645
|
/** Option identifying tag. */
|
|
1642
1646
|
tag?: string | null;
|
|
1647
|
+
/** Product option UID. */
|
|
1648
|
+
uid?: string | null;
|
|
1643
1649
|
/** Option title. */
|
|
1644
1650
|
title?: string | null;
|
|
1645
1651
|
/** Option description. */
|
|
@@ -1872,6 +1878,8 @@ export interface ProductOptionValueDto {
|
|
|
1872
1878
|
isDefault?: boolean;
|
|
1873
1879
|
/** Product option value identifying tag. */
|
|
1874
1880
|
tag?: string | null;
|
|
1881
|
+
/** Product option value UID. */
|
|
1882
|
+
uid?: string | null;
|
|
1875
1883
|
/** Product option value description for 'Simple' option type. */
|
|
1876
1884
|
simpleOptionValue?: SimpleOptionValue | null;
|
|
1877
1885
|
/** Product option value description. */
|
|
@@ -1901,6 +1909,8 @@ export interface ProductOptionDto {
|
|
|
1901
1909
|
sortIndex?: number;
|
|
1902
1910
|
/** Product option identifying tag. */
|
|
1903
1911
|
tag?: string | null;
|
|
1912
|
+
/** Product option UID. */
|
|
1913
|
+
uid?: string | null;
|
|
1904
1914
|
/** Specifies if the option is used for design binding. */
|
|
1905
1915
|
useForDesignBinding?: boolean;
|
|
1906
1916
|
/** Specifies if the option is used for mockup binding. */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aurigma/ng-storefront-api-client",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.58.1",
|
|
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)",
|