@aurigma/axios-storefront-api-client 2.55.3 → 2.57.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/dist/cjs/storefront-api-client.d.ts +4 -2
- package/dist/cjs/storefront-api-client.js +4 -1
- package/dist/cjs/storefront-api-client.js.map +1 -1
- package/dist/esm/storefront-api-client.d.ts +4 -2
- package/dist/esm/storefront-api-client.js +4 -1
- package/dist/esm/storefront-api-client.js.map +1 -1
- package/package.json +1 -1
|
@@ -1297,10 +1297,11 @@ export interface IStorefrontUsersApiClient {
|
|
|
1297
1297
|
* @param take (optional) Defines page length (how many consequent items of sorted result list should be taken).
|
|
1298
1298
|
* @param sorting (optional) Defines sorting order of result list e.g.: "Title ASC, LastModified DESC".
|
|
1299
1299
|
* @param search (optional) Search string for partial match.
|
|
1300
|
+
* @param includeAnonymous (optional) Flag that indicates if anonymous users should be included. `True` by default.
|
|
1300
1301
|
* @param tenantId (optional) Tenant identifier.
|
|
1301
1302
|
* @return Success
|
|
1302
1303
|
*/
|
|
1303
|
-
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): Promise<PagedOfStorefrontUserDto>;
|
|
1304
|
+
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): Promise<PagedOfStorefrontUserDto>;
|
|
1304
1305
|
/**
|
|
1305
1306
|
* Creates a new storefront user.
|
|
1306
1307
|
* @param storefrontId Storefront identifier.
|
|
@@ -1355,10 +1356,11 @@ export declare class StorefrontUsersApiClient extends ApiClientBase implements I
|
|
|
1355
1356
|
* @param take (optional) Defines page length (how many consequent items of sorted result list should be taken).
|
|
1356
1357
|
* @param sorting (optional) Defines sorting order of result list e.g.: "Title ASC, LastModified DESC".
|
|
1357
1358
|
* @param search (optional) Search string for partial match.
|
|
1359
|
+
* @param includeAnonymous (optional) Flag that indicates if anonymous users should be included. `True` by default.
|
|
1358
1360
|
* @param tenantId (optional) Tenant identifier.
|
|
1359
1361
|
* @return Success
|
|
1360
1362
|
*/
|
|
1361
|
-
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, cancelToken?: CancelToken | undefined): Promise<PagedOfStorefrontUserDto>;
|
|
1363
|
+
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, cancelToken?: CancelToken | undefined): Promise<PagedOfStorefrontUserDto>;
|
|
1362
1364
|
protected processGetAll(response: AxiosResponse): Promise<PagedOfStorefrontUserDto>;
|
|
1363
1365
|
/**
|
|
1364
1366
|
* Creates a new storefront user.
|
|
@@ -5116,10 +5116,11 @@ export class StorefrontUsersApiClient extends ApiClientBase {
|
|
|
5116
5116
|
* @param take (optional) Defines page length (how many consequent items of sorted result list should be taken).
|
|
5117
5117
|
* @param sorting (optional) Defines sorting order of result list e.g.: "Title ASC, LastModified DESC".
|
|
5118
5118
|
* @param search (optional) Search string for partial match.
|
|
5119
|
+
* @param includeAnonymous (optional) Flag that indicates if anonymous users should be included. `True` by default.
|
|
5119
5120
|
* @param tenantId (optional) Tenant identifier.
|
|
5120
5121
|
* @return Success
|
|
5121
5122
|
*/
|
|
5122
|
-
getAll(storefrontId, storefrontUserId, skip, take, sorting, search, tenantId, cancelToken) {
|
|
5123
|
+
getAll(storefrontId, storefrontUserId, skip, take, sorting, search, includeAnonymous, tenantId, cancelToken) {
|
|
5123
5124
|
let url_ = this.baseUrl + "/api/storefront/v1/storefront-users?";
|
|
5124
5125
|
if (storefrontId === undefined || storefrontId === null)
|
|
5125
5126
|
throw new Error("The parameter 'storefrontId' must be defined and cannot be null.");
|
|
@@ -5135,6 +5136,8 @@ export class StorefrontUsersApiClient extends ApiClientBase {
|
|
|
5135
5136
|
url_ += "sorting=" + encodeURIComponent("" + sorting) + "&";
|
|
5136
5137
|
if (search !== undefined && search !== null)
|
|
5137
5138
|
url_ += "search=" + encodeURIComponent("" + search) + "&";
|
|
5139
|
+
if (includeAnonymous !== undefined && includeAnonymous !== null)
|
|
5140
|
+
url_ += "includeAnonymous=" + encodeURIComponent("" + includeAnonymous) + "&";
|
|
5138
5141
|
if (tenantId !== undefined && tenantId !== null)
|
|
5139
5142
|
url_ += "tenantId=" + encodeURIComponent("" + tenantId) + "&";
|
|
5140
5143
|
url_ = url_.replace(/[?&]$/, "");
|