flexinet-api 0.0.2054-prerelease0-dev → 0.0.2057-prerelease0-dev
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/README.md +2 -2
- package/api.ts +139 -285
- package/dist/api.d.ts +82 -152
- package/dist/api.js +133 -266
- package/dist/esm/api.d.ts +82 -152
- package/dist/esm/api.js +133 -266
- package/package.json +1 -1
package/dist/esm/api.d.ts
CHANGED
@@ -237,6 +237,12 @@ export interface BalanceBulkTransferRequest {
|
|
237
237
|
* @memberof BalanceBulkTransferRequest
|
238
238
|
*/
|
239
239
|
'beneficiaryReference': string;
|
240
|
+
/**
|
241
|
+
*
|
242
|
+
* @type {string}
|
243
|
+
* @memberof BalanceBulkTransferRequest
|
244
|
+
*/
|
245
|
+
'description'?: string;
|
240
246
|
}
|
241
247
|
/**
|
242
248
|
*
|
@@ -4602,11 +4608,10 @@ export declare const AuditApiAxiosParamCreator: (configuration?: Configuration)
|
|
4602
4608
|
* @summary List audit logs for given object type and ID
|
4603
4609
|
* @param {string} userID id of the user
|
4604
4610
|
* @param {string} [nextToken] This is the pagination token
|
4605
|
-
* @param {string} [prevToken] This is the pagination token
|
4606
4611
|
* @param {*} [options] Override http request option.
|
4607
4612
|
* @throws {RequiredError}
|
4608
4613
|
*/
|
4609
|
-
listUserAuditLogs: (userID: string, nextToken?: string,
|
4614
|
+
listUserAuditLogs: (userID: string, nextToken?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
4610
4615
|
};
|
4611
4616
|
/**
|
4612
4617
|
* AuditApi - functional programming interface
|
@@ -4627,11 +4632,10 @@ export declare const AuditApiFp: (configuration?: Configuration) => {
|
|
4627
4632
|
* @summary List audit logs for given object type and ID
|
4628
4633
|
* @param {string} userID id of the user
|
4629
4634
|
* @param {string} [nextToken] This is the pagination token
|
4630
|
-
* @param {string} [prevToken] This is the pagination token
|
4631
4635
|
* @param {*} [options] Override http request option.
|
4632
4636
|
* @throws {RequiredError}
|
4633
4637
|
*/
|
4634
|
-
listUserAuditLogs(userID: string, nextToken?: string,
|
4638
|
+
listUserAuditLogs(userID: string, nextToken?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuditLogListResponse>>;
|
4635
4639
|
};
|
4636
4640
|
/**
|
4637
4641
|
* AuditApi - factory interface
|
@@ -4652,11 +4656,10 @@ export declare const AuditApiFactory: (configuration?: Configuration, basePath?:
|
|
4652
4656
|
* @summary List audit logs for given object type and ID
|
4653
4657
|
* @param {string} userID id of the user
|
4654
4658
|
* @param {string} [nextToken] This is the pagination token
|
4655
|
-
* @param {string} [prevToken] This is the pagination token
|
4656
4659
|
* @param {*} [options] Override http request option.
|
4657
4660
|
* @throws {RequiredError}
|
4658
4661
|
*/
|
4659
|
-
listUserAuditLogs(userID: string, nextToken?: string,
|
4662
|
+
listUserAuditLogs(userID: string, nextToken?: string, options?: any): AxiosPromise<AuditLogListResponse>;
|
4660
4663
|
};
|
4661
4664
|
/**
|
4662
4665
|
* AuditApi - object-oriented interface
|
@@ -4680,12 +4683,11 @@ export declare class AuditApi extends BaseAPI {
|
|
4680
4683
|
* @summary List audit logs for given object type and ID
|
4681
4684
|
* @param {string} userID id of the user
|
4682
4685
|
* @param {string} [nextToken] This is the pagination token
|
4683
|
-
* @param {string} [prevToken] This is the pagination token
|
4684
4686
|
* @param {*} [options] Override http request option.
|
4685
4687
|
* @throws {RequiredError}
|
4686
4688
|
* @memberof AuditApi
|
4687
4689
|
*/
|
4688
|
-
listUserAuditLogs(userID: string, nextToken?: string,
|
4690
|
+
listUserAuditLogs(userID: string, nextToken?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AuditLogListResponse, any>>;
|
4689
4691
|
}
|
4690
4692
|
/**
|
4691
4693
|
* BalanceApi - axios parameter creator
|
@@ -5207,11 +5209,10 @@ export declare const ClientApiAxiosParamCreator: (configuration?: Configuration)
|
|
5207
5209
|
* @param {Array<string>} [clientIDs] client IDs
|
5208
5210
|
* @param {string} [managerID] manager ID for whose clients we want to list
|
5209
5211
|
* @param {boolean} [isExcluded] is client excluded
|
5210
|
-
* @param {string} [prevToken] This is the pagination token
|
5211
5212
|
* @param {*} [options] Override http request option.
|
5212
5213
|
* @throws {RequiredError}
|
5213
5214
|
*/
|
5214
|
-
listClients: (nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, managerID?: string, isExcluded?: boolean,
|
5215
|
+
listClients: (nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, managerID?: string, isExcluded?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
5215
5216
|
/**
|
5216
5217
|
* Update client
|
5217
5218
|
* @summary Update client
|
@@ -5252,11 +5253,10 @@ export declare const ClientApiFp: (configuration?: Configuration) => {
|
|
5252
5253
|
* @param {Array<string>} [clientIDs] client IDs
|
5253
5254
|
* @param {string} [managerID] manager ID for whose clients we want to list
|
5254
5255
|
* @param {boolean} [isExcluded] is client excluded
|
5255
|
-
* @param {string} [prevToken] This is the pagination token
|
5256
5256
|
* @param {*} [options] Override http request option.
|
5257
5257
|
* @throws {RequiredError}
|
5258
5258
|
*/
|
5259
|
-
listClients(nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, managerID?: string, isExcluded?: boolean,
|
5259
|
+
listClients(nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, managerID?: string, isExcluded?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClientListResponse>>;
|
5260
5260
|
/**
|
5261
5261
|
* Update client
|
5262
5262
|
* @summary Update client
|
@@ -5297,11 +5297,10 @@ export declare const ClientApiFactory: (configuration?: Configuration, basePath?
|
|
5297
5297
|
* @param {Array<string>} [clientIDs] client IDs
|
5298
5298
|
* @param {string} [managerID] manager ID for whose clients we want to list
|
5299
5299
|
* @param {boolean} [isExcluded] is client excluded
|
5300
|
-
* @param {string} [prevToken] This is the pagination token
|
5301
5300
|
* @param {*} [options] Override http request option.
|
5302
5301
|
* @throws {RequiredError}
|
5303
5302
|
*/
|
5304
|
-
listClients(nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, managerID?: string, isExcluded?: boolean,
|
5303
|
+
listClients(nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, managerID?: string, isExcluded?: boolean, options?: any): AxiosPromise<ClientListResponse>;
|
5305
5304
|
/**
|
5306
5305
|
* Update client
|
5307
5306
|
* @summary Update client
|
@@ -5346,12 +5345,11 @@ export declare class ClientApi extends BaseAPI {
|
|
5346
5345
|
* @param {Array<string>} [clientIDs] client IDs
|
5347
5346
|
* @param {string} [managerID] manager ID for whose clients we want to list
|
5348
5347
|
* @param {boolean} [isExcluded] is client excluded
|
5349
|
-
* @param {string} [prevToken] This is the pagination token
|
5350
5348
|
* @param {*} [options] Override http request option.
|
5351
5349
|
* @throws {RequiredError}
|
5352
5350
|
* @memberof ClientApi
|
5353
5351
|
*/
|
5354
|
-
listClients(nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, managerID?: string, isExcluded?: boolean,
|
5352
|
+
listClients(nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, managerID?: string, isExcluded?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ClientListResponse, any>>;
|
5355
5353
|
/**
|
5356
5354
|
* Update client
|
5357
5355
|
* @summary Update client
|
@@ -5381,11 +5379,10 @@ export declare const ConfigurationApiAxiosParamCreator: (configuration?: Configu
|
|
5381
5379
|
* @summary List configurations
|
5382
5380
|
* @param {string} [nextToken] This is the pagination token
|
5383
5381
|
* @param {string} [search] search string
|
5384
|
-
* @param {string} [prevToken] This is the pagination token
|
5385
5382
|
* @param {*} [options] Override http request option.
|
5386
5383
|
* @throws {RequiredError}
|
5387
5384
|
*/
|
5388
|
-
listConfigurations: (nextToken?: string, search?: string,
|
5385
|
+
listConfigurations: (nextToken?: string, search?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
5389
5386
|
/**
|
5390
5387
|
* List all features
|
5391
5388
|
* @summary List features
|
@@ -5419,11 +5416,10 @@ export declare const ConfigurationApiFp: (configuration?: Configuration) => {
|
|
5419
5416
|
* @summary List configurations
|
5420
5417
|
* @param {string} [nextToken] This is the pagination token
|
5421
5418
|
* @param {string} [search] search string
|
5422
|
-
* @param {string} [prevToken] This is the pagination token
|
5423
5419
|
* @param {*} [options] Override http request option.
|
5424
5420
|
* @throws {RequiredError}
|
5425
5421
|
*/
|
5426
|
-
listConfigurations(nextToken?: string, search?: string,
|
5422
|
+
listConfigurations(nextToken?: string, search?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BackofficeConfig>>;
|
5427
5423
|
/**
|
5428
5424
|
* List all features
|
5429
5425
|
* @summary List features
|
@@ -5457,11 +5453,10 @@ export declare const ConfigurationApiFactory: (configuration?: Configuration, ba
|
|
5457
5453
|
* @summary List configurations
|
5458
5454
|
* @param {string} [nextToken] This is the pagination token
|
5459
5455
|
* @param {string} [search] search string
|
5460
|
-
* @param {string} [prevToken] This is the pagination token
|
5461
5456
|
* @param {*} [options] Override http request option.
|
5462
5457
|
* @throws {RequiredError}
|
5463
5458
|
*/
|
5464
|
-
listConfigurations(nextToken?: string, search?: string,
|
5459
|
+
listConfigurations(nextToken?: string, search?: string, options?: any): AxiosPromise<BackofficeConfig>;
|
5465
5460
|
/**
|
5466
5461
|
* List all features
|
5467
5462
|
* @summary List features
|
@@ -5498,12 +5493,11 @@ export declare class ConfigurationApi extends BaseAPI {
|
|
5498
5493
|
* @summary List configurations
|
5499
5494
|
* @param {string} [nextToken] This is the pagination token
|
5500
5495
|
* @param {string} [search] search string
|
5501
|
-
* @param {string} [prevToken] This is the pagination token
|
5502
5496
|
* @param {*} [options] Override http request option.
|
5503
5497
|
* @throws {RequiredError}
|
5504
5498
|
* @memberof ConfigurationApi
|
5505
5499
|
*/
|
5506
|
-
listConfigurations(nextToken?: string, search?: string,
|
5500
|
+
listConfigurations(nextToken?: string, search?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BackofficeConfig, any>>;
|
5507
5501
|
/**
|
5508
5502
|
* List all features
|
5509
5503
|
* @summary List features
|
@@ -5862,11 +5856,10 @@ export declare const NotificationApiAxiosParamCreator: (configuration?: Configur
|
|
5862
5856
|
* @summary List notifications
|
5863
5857
|
* @param {string} [nextToken] This is the pagination token
|
5864
5858
|
* @param {NotificationStatus} [status] Notification status
|
5865
|
-
* @param {string} [prevToken] This is the pagination token
|
5866
5859
|
* @param {*} [options] Override http request option.
|
5867
5860
|
* @throws {RequiredError}
|
5868
5861
|
*/
|
5869
|
-
listNotifications: (nextToken?: string, status?: NotificationStatus,
|
5862
|
+
listNotifications: (nextToken?: string, status?: NotificationStatus, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
5870
5863
|
/**
|
5871
5864
|
* Update notification by ID
|
5872
5865
|
* @summary Update notification
|
@@ -5932,11 +5925,10 @@ export declare const NotificationApiFp: (configuration?: Configuration) => {
|
|
5932
5925
|
* @summary List notifications
|
5933
5926
|
* @param {string} [nextToken] This is the pagination token
|
5934
5927
|
* @param {NotificationStatus} [status] Notification status
|
5935
|
-
* @param {string} [prevToken] This is the pagination token
|
5936
5928
|
* @param {*} [options] Override http request option.
|
5937
5929
|
* @throws {RequiredError}
|
5938
5930
|
*/
|
5939
|
-
listNotifications(nextToken?: string, status?: NotificationStatus,
|
5931
|
+
listNotifications(nextToken?: string, status?: NotificationStatus, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NotificationListResponse>>;
|
5940
5932
|
/**
|
5941
5933
|
* Update notification by ID
|
5942
5934
|
* @summary Update notification
|
@@ -6002,11 +5994,10 @@ export declare const NotificationApiFactory: (configuration?: Configuration, bas
|
|
6002
5994
|
* @summary List notifications
|
6003
5995
|
* @param {string} [nextToken] This is the pagination token
|
6004
5996
|
* @param {NotificationStatus} [status] Notification status
|
6005
|
-
* @param {string} [prevToken] This is the pagination token
|
6006
5997
|
* @param {*} [options] Override http request option.
|
6007
5998
|
* @throws {RequiredError}
|
6008
5999
|
*/
|
6009
|
-
listNotifications(nextToken?: string, status?: NotificationStatus,
|
6000
|
+
listNotifications(nextToken?: string, status?: NotificationStatus, options?: any): AxiosPromise<NotificationListResponse>;
|
6010
6001
|
/**
|
6011
6002
|
* Update notification by ID
|
6012
6003
|
* @summary Update notification
|
@@ -6078,12 +6069,11 @@ export declare class NotificationApi extends BaseAPI {
|
|
6078
6069
|
* @summary List notifications
|
6079
6070
|
* @param {string} [nextToken] This is the pagination token
|
6080
6071
|
* @param {NotificationStatus} [status] Notification status
|
6081
|
-
* @param {string} [prevToken] This is the pagination token
|
6082
6072
|
* @param {*} [options] Override http request option.
|
6083
6073
|
* @throws {RequiredError}
|
6084
6074
|
* @memberof NotificationApi
|
6085
6075
|
*/
|
6086
|
-
listNotifications(nextToken?: string, status?: NotificationStatus,
|
6076
|
+
listNotifications(nextToken?: string, status?: NotificationStatus, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<NotificationListResponse, any>>;
|
6087
6077
|
/**
|
6088
6078
|
* Update notification by ID
|
6089
6079
|
* @summary Update notification
|
@@ -6162,11 +6152,10 @@ export declare const OrderApiAxiosParamCreator: (configuration?: Configuration)
|
|
6162
6152
|
* @param {Array<string>} [clientIDs] Filter by client ids
|
6163
6153
|
* @param {OrderKind} [kind] Filter by kind
|
6164
6154
|
* @param {string} [source] Filter by order source. Either promotion or user reference, depending on the kind.
|
6165
|
-
* @param {string} [prevToken] This is the pagination token
|
6166
6155
|
* @param {*} [options] Override http request option.
|
6167
6156
|
* @throws {RequiredError}
|
6168
6157
|
*/
|
6169
|
-
listOrders: (nextToken?: string, search?: string, productId?: string, balanceIDs?: Array<string>, createdAfter?: string, createdBefore?: string, userIDs?: Array<string>, clientIDs?: Array<string>, kind?: OrderKind, source?: string,
|
6158
|
+
listOrders: (nextToken?: string, search?: string, productId?: string, balanceIDs?: Array<string>, createdAfter?: string, createdBefore?: string, userIDs?: Array<string>, clientIDs?: Array<string>, kind?: OrderKind, source?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
6170
6159
|
/**
|
6171
6160
|
* List existing orders
|
6172
6161
|
* @summary List existing orders
|
@@ -6177,11 +6166,10 @@ export declare const OrderApiAxiosParamCreator: (configuration?: Configuration)
|
|
6177
6166
|
* @param {string} [createdAfter] Filter orders created after the specified date
|
6178
6167
|
* @param {string} [createdBefore] Filter orders created before the specified date
|
6179
6168
|
* @param {Array<string>} [userIDs] Filter by user ids
|
6180
|
-
* @param {string} [prevToken] This is the pagination token
|
6181
6169
|
* @param {*} [options] Override http request option.
|
6182
6170
|
* @throws {RequiredError}
|
6183
6171
|
*/
|
6184
|
-
listOrdersUser: (nextToken?: string, search?: string, productID?: string, balanceIDs?: Array<string>, createdAfter?: string, createdBefore?: string, userIDs?: Array<string>,
|
6172
|
+
listOrdersUser: (nextToken?: string, search?: string, productID?: string, balanceIDs?: Array<string>, createdAfter?: string, createdBefore?: string, userIDs?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
6185
6173
|
};
|
6186
6174
|
/**
|
6187
6175
|
* OrderApi - functional programming interface
|
@@ -6233,11 +6221,10 @@ export declare const OrderApiFp: (configuration?: Configuration) => {
|
|
6233
6221
|
* @param {Array<string>} [clientIDs] Filter by client ids
|
6234
6222
|
* @param {OrderKind} [kind] Filter by kind
|
6235
6223
|
* @param {string} [source] Filter by order source. Either promotion or user reference, depending on the kind.
|
6236
|
-
* @param {string} [prevToken] This is the pagination token
|
6237
6224
|
* @param {*} [options] Override http request option.
|
6238
6225
|
* @throws {RequiredError}
|
6239
6226
|
*/
|
6240
|
-
listOrders(nextToken?: string, search?: string, productId?: string, balanceIDs?: Array<string>, createdAfter?: string, createdBefore?: string, userIDs?: Array<string>, clientIDs?: Array<string>, kind?: OrderKind, source?: string,
|
6227
|
+
listOrders(nextToken?: string, search?: string, productId?: string, balanceIDs?: Array<string>, createdAfter?: string, createdBefore?: string, userIDs?: Array<string>, clientIDs?: Array<string>, kind?: OrderKind, source?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OrderListResponse>>;
|
6241
6228
|
/**
|
6242
6229
|
* List existing orders
|
6243
6230
|
* @summary List existing orders
|
@@ -6248,11 +6235,10 @@ export declare const OrderApiFp: (configuration?: Configuration) => {
|
|
6248
6235
|
* @param {string} [createdAfter] Filter orders created after the specified date
|
6249
6236
|
* @param {string} [createdBefore] Filter orders created before the specified date
|
6250
6237
|
* @param {Array<string>} [userIDs] Filter by user ids
|
6251
|
-
* @param {string} [prevToken] This is the pagination token
|
6252
6238
|
* @param {*} [options] Override http request option.
|
6253
6239
|
* @throws {RequiredError}
|
6254
6240
|
*/
|
6255
|
-
listOrdersUser(nextToken?: string, search?: string, productID?: string, balanceIDs?: Array<string>, createdAfter?: string, createdBefore?: string, userIDs?: Array<string>,
|
6241
|
+
listOrdersUser(nextToken?: string, search?: string, productID?: string, balanceIDs?: Array<string>, createdAfter?: string, createdBefore?: string, userIDs?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserOrderListResponse>>;
|
6256
6242
|
};
|
6257
6243
|
/**
|
6258
6244
|
* OrderApi - factory interface
|
@@ -6304,11 +6290,10 @@ export declare const OrderApiFactory: (configuration?: Configuration, basePath?:
|
|
6304
6290
|
* @param {Array<string>} [clientIDs] Filter by client ids
|
6305
6291
|
* @param {OrderKind} [kind] Filter by kind
|
6306
6292
|
* @param {string} [source] Filter by order source. Either promotion or user reference, depending on the kind.
|
6307
|
-
* @param {string} [prevToken] This is the pagination token
|
6308
6293
|
* @param {*} [options] Override http request option.
|
6309
6294
|
* @throws {RequiredError}
|
6310
6295
|
*/
|
6311
|
-
listOrders(nextToken?: string, search?: string, productId?: string, balanceIDs?: Array<string>, createdAfter?: string, createdBefore?: string, userIDs?: Array<string>, clientIDs?: Array<string>, kind?: OrderKind, source?: string,
|
6296
|
+
listOrders(nextToken?: string, search?: string, productId?: string, balanceIDs?: Array<string>, createdAfter?: string, createdBefore?: string, userIDs?: Array<string>, clientIDs?: Array<string>, kind?: OrderKind, source?: string, options?: any): AxiosPromise<OrderListResponse>;
|
6312
6297
|
/**
|
6313
6298
|
* List existing orders
|
6314
6299
|
* @summary List existing orders
|
@@ -6319,11 +6304,10 @@ export declare const OrderApiFactory: (configuration?: Configuration, basePath?:
|
|
6319
6304
|
* @param {string} [createdAfter] Filter orders created after the specified date
|
6320
6305
|
* @param {string} [createdBefore] Filter orders created before the specified date
|
6321
6306
|
* @param {Array<string>} [userIDs] Filter by user ids
|
6322
|
-
* @param {string} [prevToken] This is the pagination token
|
6323
6307
|
* @param {*} [options] Override http request option.
|
6324
6308
|
* @throws {RequiredError}
|
6325
6309
|
*/
|
6326
|
-
listOrdersUser(nextToken?: string, search?: string, productID?: string, balanceIDs?: Array<string>, createdAfter?: string, createdBefore?: string, userIDs?: Array<string>,
|
6310
|
+
listOrdersUser(nextToken?: string, search?: string, productID?: string, balanceIDs?: Array<string>, createdAfter?: string, createdBefore?: string, userIDs?: Array<string>, options?: any): AxiosPromise<UserOrderListResponse>;
|
6327
6311
|
};
|
6328
6312
|
/**
|
6329
6313
|
* OrderApi - object-oriented interface
|
@@ -6381,12 +6365,11 @@ export declare class OrderApi extends BaseAPI {
|
|
6381
6365
|
* @param {Array<string>} [clientIDs] Filter by client ids
|
6382
6366
|
* @param {OrderKind} [kind] Filter by kind
|
6383
6367
|
* @param {string} [source] Filter by order source. Either promotion or user reference, depending on the kind.
|
6384
|
-
* @param {string} [prevToken] This is the pagination token
|
6385
6368
|
* @param {*} [options] Override http request option.
|
6386
6369
|
* @throws {RequiredError}
|
6387
6370
|
* @memberof OrderApi
|
6388
6371
|
*/
|
6389
|
-
listOrders(nextToken?: string, search?: string, productId?: string, balanceIDs?: Array<string>, createdAfter?: string, createdBefore?: string, userIDs?: Array<string>, clientIDs?: Array<string>, kind?: OrderKind, source?: string,
|
6372
|
+
listOrders(nextToken?: string, search?: string, productId?: string, balanceIDs?: Array<string>, createdAfter?: string, createdBefore?: string, userIDs?: Array<string>, clientIDs?: Array<string>, kind?: OrderKind, source?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderListResponse, any>>;
|
6390
6373
|
/**
|
6391
6374
|
* List existing orders
|
6392
6375
|
* @summary List existing orders
|
@@ -6397,12 +6380,11 @@ export declare class OrderApi extends BaseAPI {
|
|
6397
6380
|
* @param {string} [createdAfter] Filter orders created after the specified date
|
6398
6381
|
* @param {string} [createdBefore] Filter orders created before the specified date
|
6399
6382
|
* @param {Array<string>} [userIDs] Filter by user ids
|
6400
|
-
* @param {string} [prevToken] This is the pagination token
|
6401
6383
|
* @param {*} [options] Override http request option.
|
6402
6384
|
* @throws {RequiredError}
|
6403
6385
|
* @memberof OrderApi
|
6404
6386
|
*/
|
6405
|
-
listOrdersUser(nextToken?: string, search?: string, productID?: string, balanceIDs?: Array<string>, createdAfter?: string, createdBefore?: string, userIDs?: Array<string>,
|
6387
|
+
listOrdersUser(nextToken?: string, search?: string, productID?: string, balanceIDs?: Array<string>, createdAfter?: string, createdBefore?: string, userIDs?: Array<string>, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UserOrderListResponse, any>>;
|
6406
6388
|
}
|
6407
6389
|
/**
|
6408
6390
|
* ProductApi - axios parameter creator
|
@@ -6470,11 +6452,10 @@ export declare const ProductApiAxiosParamCreator: (configuration?: Configuration
|
|
6470
6452
|
* @summary List existing product requests
|
6471
6453
|
* @param {ProductRequestStatus} [status] The product request status
|
6472
6454
|
* @param {string} [nextToken] This is the pagination token
|
6473
|
-
* @param {string} [prevToken] This is the pagination token
|
6474
6455
|
* @param {*} [options] Override http request option.
|
6475
6456
|
* @throws {RequiredError}
|
6476
6457
|
*/
|
6477
|
-
listProductRequests: (status?: ProductRequestStatus, nextToken?: string,
|
6458
|
+
listProductRequests: (status?: ProductRequestStatus, nextToken?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
6478
6459
|
/**
|
6479
6460
|
* List existing products
|
6480
6461
|
* @summary List existing products
|
@@ -6487,20 +6468,18 @@ export declare const ProductApiAxiosParamCreator: (configuration?: Configuration
|
|
6487
6468
|
* @param {string} [segmentID] The segment ID
|
6488
6469
|
* @param {string} [nextToken] This is the pagination token
|
6489
6470
|
* @param {Array<string>} [ids] This a list of ids to filter by
|
6490
|
-
* @param {string} [prevToken] This is the pagination token
|
6491
6471
|
* @param {*} [options] Override http request option.
|
6492
6472
|
* @throws {RequiredError}
|
6493
6473
|
*/
|
6494
|
-
listProducts: (kind?: ProductKind, categoryID?: string, search?: string, usage?: ProductUsage, status?: ProductStatus, availability?: ProductAvailability, segmentID?: string, nextToken?: string, ids?: Array<string>,
|
6474
|
+
listProducts: (kind?: ProductKind, categoryID?: string, search?: string, usage?: ProductUsage, status?: ProductStatus, availability?: ProductAvailability, segmentID?: string, nextToken?: string, ids?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
6495
6475
|
/**
|
6496
6476
|
* List product requests
|
6497
6477
|
* @summary List product requests
|
6498
6478
|
* @param {string} [nextToken] This is the pagination token
|
6499
|
-
* @param {string} [prevToken] This is the pagination token
|
6500
6479
|
* @param {*} [options] Override http request option.
|
6501
6480
|
* @throws {RequiredError}
|
6502
6481
|
*/
|
6503
|
-
listUserProductRequests: (nextToken?: string,
|
6482
|
+
listUserProductRequests: (nextToken?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
6504
6483
|
/**
|
6505
6484
|
* List existing products for the user
|
6506
6485
|
* @summary List existing products
|
@@ -6510,11 +6489,10 @@ export declare const ProductApiAxiosParamCreator: (configuration?: Configuration
|
|
6510
6489
|
* @param {string} [search] search string
|
6511
6490
|
* @param {ProductAvailability} [availability] The product availability
|
6512
6491
|
* @param {Array<string>} [ids] This a list of ids to filter by
|
6513
|
-
* @param {string} [prevToken] This is the pagination token
|
6514
6492
|
* @param {*} [options] Override http request option.
|
6515
6493
|
* @throws {RequiredError}
|
6516
6494
|
*/
|
6517
|
-
listUserProducts: (kind?: ProductKind, nextToken?: string, categoryID?: string, search?: string, availability?: ProductAvailability, ids?: Array<string>,
|
6495
|
+
listUserProducts: (kind?: ProductKind, nextToken?: string, categoryID?: string, search?: string, availability?: ProductAvailability, ids?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
6518
6496
|
/**
|
6519
6497
|
* Update a product by id
|
6520
6498
|
* @summary Update a product by id
|
@@ -6591,11 +6569,10 @@ export declare const ProductApiFp: (configuration?: Configuration) => {
|
|
6591
6569
|
* @summary List existing product requests
|
6592
6570
|
* @param {ProductRequestStatus} [status] The product request status
|
6593
6571
|
* @param {string} [nextToken] This is the pagination token
|
6594
|
-
* @param {string} [prevToken] This is the pagination token
|
6595
6572
|
* @param {*} [options] Override http request option.
|
6596
6573
|
* @throws {RequiredError}
|
6597
6574
|
*/
|
6598
|
-
listProductRequests(status?: ProductRequestStatus, nextToken?: string,
|
6575
|
+
listProductRequests(status?: ProductRequestStatus, nextToken?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductRequestsResponse>>;
|
6599
6576
|
/**
|
6600
6577
|
* List existing products
|
6601
6578
|
* @summary List existing products
|
@@ -6608,20 +6585,18 @@ export declare const ProductApiFp: (configuration?: Configuration) => {
|
|
6608
6585
|
* @param {string} [segmentID] The segment ID
|
6609
6586
|
* @param {string} [nextToken] This is the pagination token
|
6610
6587
|
* @param {Array<string>} [ids] This a list of ids to filter by
|
6611
|
-
* @param {string} [prevToken] This is the pagination token
|
6612
6588
|
* @param {*} [options] Override http request option.
|
6613
6589
|
* @throws {RequiredError}
|
6614
6590
|
*/
|
6615
|
-
listProducts(kind?: ProductKind, categoryID?: string, search?: string, usage?: ProductUsage, status?: ProductStatus, availability?: ProductAvailability, segmentID?: string, nextToken?: string, ids?: Array<string>,
|
6591
|
+
listProducts(kind?: ProductKind, categoryID?: string, search?: string, usage?: ProductUsage, status?: ProductStatus, availability?: ProductAvailability, segmentID?: string, nextToken?: string, ids?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductsResponse>>;
|
6616
6592
|
/**
|
6617
6593
|
* List product requests
|
6618
6594
|
* @summary List product requests
|
6619
6595
|
* @param {string} [nextToken] This is the pagination token
|
6620
|
-
* @param {string} [prevToken] This is the pagination token
|
6621
6596
|
* @param {*} [options] Override http request option.
|
6622
6597
|
* @throws {RequiredError}
|
6623
6598
|
*/
|
6624
|
-
listUserProductRequests(nextToken?: string,
|
6599
|
+
listUserProductRequests(nextToken?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductRequestsResponse>>;
|
6625
6600
|
/**
|
6626
6601
|
* List existing products for the user
|
6627
6602
|
* @summary List existing products
|
@@ -6631,11 +6606,10 @@ export declare const ProductApiFp: (configuration?: Configuration) => {
|
|
6631
6606
|
* @param {string} [search] search string
|
6632
6607
|
* @param {ProductAvailability} [availability] The product availability
|
6633
6608
|
* @param {Array<string>} [ids] This a list of ids to filter by
|
6634
|
-
* @param {string} [prevToken] This is the pagination token
|
6635
6609
|
* @param {*} [options] Override http request option.
|
6636
6610
|
* @throws {RequiredError}
|
6637
6611
|
*/
|
6638
|
-
listUserProducts(kind?: ProductKind, nextToken?: string, categoryID?: string, search?: string, availability?: ProductAvailability, ids?: Array<string>,
|
6612
|
+
listUserProducts(kind?: ProductKind, nextToken?: string, categoryID?: string, search?: string, availability?: ProductAvailability, ids?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductsResponse>>;
|
6639
6613
|
/**
|
6640
6614
|
* Update a product by id
|
6641
6615
|
* @summary Update a product by id
|
@@ -6712,11 +6686,10 @@ export declare const ProductApiFactory: (configuration?: Configuration, basePath
|
|
6712
6686
|
* @summary List existing product requests
|
6713
6687
|
* @param {ProductRequestStatus} [status] The product request status
|
6714
6688
|
* @param {string} [nextToken] This is the pagination token
|
6715
|
-
* @param {string} [prevToken] This is the pagination token
|
6716
6689
|
* @param {*} [options] Override http request option.
|
6717
6690
|
* @throws {RequiredError}
|
6718
6691
|
*/
|
6719
|
-
listProductRequests(status?: ProductRequestStatus, nextToken?: string,
|
6692
|
+
listProductRequests(status?: ProductRequestStatus, nextToken?: string, options?: any): AxiosPromise<ProductRequestsResponse>;
|
6720
6693
|
/**
|
6721
6694
|
* List existing products
|
6722
6695
|
* @summary List existing products
|
@@ -6729,20 +6702,18 @@ export declare const ProductApiFactory: (configuration?: Configuration, basePath
|
|
6729
6702
|
* @param {string} [segmentID] The segment ID
|
6730
6703
|
* @param {string} [nextToken] This is the pagination token
|
6731
6704
|
* @param {Array<string>} [ids] This a list of ids to filter by
|
6732
|
-
* @param {string} [prevToken] This is the pagination token
|
6733
6705
|
* @param {*} [options] Override http request option.
|
6734
6706
|
* @throws {RequiredError}
|
6735
6707
|
*/
|
6736
|
-
listProducts(kind?: ProductKind, categoryID?: string, search?: string, usage?: ProductUsage, status?: ProductStatus, availability?: ProductAvailability, segmentID?: string, nextToken?: string, ids?: Array<string>,
|
6708
|
+
listProducts(kind?: ProductKind, categoryID?: string, search?: string, usage?: ProductUsage, status?: ProductStatus, availability?: ProductAvailability, segmentID?: string, nextToken?: string, ids?: Array<string>, options?: any): AxiosPromise<ProductsResponse>;
|
6737
6709
|
/**
|
6738
6710
|
* List product requests
|
6739
6711
|
* @summary List product requests
|
6740
6712
|
* @param {string} [nextToken] This is the pagination token
|
6741
|
-
* @param {string} [prevToken] This is the pagination token
|
6742
6713
|
* @param {*} [options] Override http request option.
|
6743
6714
|
* @throws {RequiredError}
|
6744
6715
|
*/
|
6745
|
-
listUserProductRequests(nextToken?: string,
|
6716
|
+
listUserProductRequests(nextToken?: string, options?: any): AxiosPromise<ProductRequestsResponse>;
|
6746
6717
|
/**
|
6747
6718
|
* List existing products for the user
|
6748
6719
|
* @summary List existing products
|
@@ -6752,11 +6723,10 @@ export declare const ProductApiFactory: (configuration?: Configuration, basePath
|
|
6752
6723
|
* @param {string} [search] search string
|
6753
6724
|
* @param {ProductAvailability} [availability] The product availability
|
6754
6725
|
* @param {Array<string>} [ids] This a list of ids to filter by
|
6755
|
-
* @param {string} [prevToken] This is the pagination token
|
6756
6726
|
* @param {*} [options] Override http request option.
|
6757
6727
|
* @throws {RequiredError}
|
6758
6728
|
*/
|
6759
|
-
listUserProducts(kind?: ProductKind, nextToken?: string, categoryID?: string, search?: string, availability?: ProductAvailability, ids?: Array<string>,
|
6729
|
+
listUserProducts(kind?: ProductKind, nextToken?: string, categoryID?: string, search?: string, availability?: ProductAvailability, ids?: Array<string>, options?: any): AxiosPromise<ProductsResponse>;
|
6760
6730
|
/**
|
6761
6731
|
* Update a product by id
|
6762
6732
|
* @summary Update a product by id
|
@@ -6842,12 +6812,11 @@ export declare class ProductApi extends BaseAPI {
|
|
6842
6812
|
* @summary List existing product requests
|
6843
6813
|
* @param {ProductRequestStatus} [status] The product request status
|
6844
6814
|
* @param {string} [nextToken] This is the pagination token
|
6845
|
-
* @param {string} [prevToken] This is the pagination token
|
6846
6815
|
* @param {*} [options] Override http request option.
|
6847
6816
|
* @throws {RequiredError}
|
6848
6817
|
* @memberof ProductApi
|
6849
6818
|
*/
|
6850
|
-
listProductRequests(status?: ProductRequestStatus, nextToken?: string,
|
6819
|
+
listProductRequests(status?: ProductRequestStatus, nextToken?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductRequestsResponse, any>>;
|
6851
6820
|
/**
|
6852
6821
|
* List existing products
|
6853
6822
|
* @summary List existing products
|
@@ -6860,22 +6829,20 @@ export declare class ProductApi extends BaseAPI {
|
|
6860
6829
|
* @param {string} [segmentID] The segment ID
|
6861
6830
|
* @param {string} [nextToken] This is the pagination token
|
6862
6831
|
* @param {Array<string>} [ids] This a list of ids to filter by
|
6863
|
-
* @param {string} [prevToken] This is the pagination token
|
6864
6832
|
* @param {*} [options] Override http request option.
|
6865
6833
|
* @throws {RequiredError}
|
6866
6834
|
* @memberof ProductApi
|
6867
6835
|
*/
|
6868
|
-
listProducts(kind?: ProductKind, categoryID?: string, search?: string, usage?: ProductUsage, status?: ProductStatus, availability?: ProductAvailability, segmentID?: string, nextToken?: string, ids?: Array<string>,
|
6836
|
+
listProducts(kind?: ProductKind, categoryID?: string, search?: string, usage?: ProductUsage, status?: ProductStatus, availability?: ProductAvailability, segmentID?: string, nextToken?: string, ids?: Array<string>, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductsResponse, any>>;
|
6869
6837
|
/**
|
6870
6838
|
* List product requests
|
6871
6839
|
* @summary List product requests
|
6872
6840
|
* @param {string} [nextToken] This is the pagination token
|
6873
|
-
* @param {string} [prevToken] This is the pagination token
|
6874
6841
|
* @param {*} [options] Override http request option.
|
6875
6842
|
* @throws {RequiredError}
|
6876
6843
|
* @memberof ProductApi
|
6877
6844
|
*/
|
6878
|
-
listUserProductRequests(nextToken?: string,
|
6845
|
+
listUserProductRequests(nextToken?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductRequestsResponse, any>>;
|
6879
6846
|
/**
|
6880
6847
|
* List existing products for the user
|
6881
6848
|
* @summary List existing products
|
@@ -6885,12 +6852,11 @@ export declare class ProductApi extends BaseAPI {
|
|
6885
6852
|
* @param {string} [search] search string
|
6886
6853
|
* @param {ProductAvailability} [availability] The product availability
|
6887
6854
|
* @param {Array<string>} [ids] This a list of ids to filter by
|
6888
|
-
* @param {string} [prevToken] This is the pagination token
|
6889
6855
|
* @param {*} [options] Override http request option.
|
6890
6856
|
* @throws {RequiredError}
|
6891
6857
|
* @memberof ProductApi
|
6892
6858
|
*/
|
6893
|
-
listUserProducts(kind?: ProductKind, nextToken?: string, categoryID?: string, search?: string, availability?: ProductAvailability, ids?: Array<string>,
|
6859
|
+
listUserProducts(kind?: ProductKind, nextToken?: string, categoryID?: string, search?: string, availability?: ProductAvailability, ids?: Array<string>, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductsResponse, any>>;
|
6894
6860
|
/**
|
6895
6861
|
* Update a product by id
|
6896
6862
|
* @summary Update a product by id
|
@@ -6917,11 +6883,10 @@ export declare const ProgressApiAxiosParamCreator: (configuration?: Configuratio
|
|
6917
6883
|
* @param {ProgressInterval} [interval] Interval
|
6918
6884
|
* @param {string} [nextToken] This is the pagination token
|
6919
6885
|
* @param {ProgressStateAggregation} [state] Progress state
|
6920
|
-
* @param {string} [prevToken] This is the pagination token
|
6921
6886
|
* @param {*} [options] Override http request option.
|
6922
6887
|
* @throws {RequiredError}
|
6923
6888
|
*/
|
6924
|
-
listProgress: (promotionIDs: Array<string>, periodID?: number, userIDs?: Array<string>, clientIDs?: Array<string>, interval?: ProgressInterval, nextToken?: string, state?: ProgressStateAggregation,
|
6889
|
+
listProgress: (promotionIDs: Array<string>, periodID?: number, userIDs?: Array<string>, clientIDs?: Array<string>, interval?: ProgressInterval, nextToken?: string, state?: ProgressStateAggregation, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
6925
6890
|
/**
|
6926
6891
|
* List users progress
|
6927
6892
|
* @summary List progress
|
@@ -6929,11 +6894,10 @@ export declare const ProgressApiAxiosParamCreator: (configuration?: Configuratio
|
|
6929
6894
|
* @param {number} [periodID] Period ID
|
6930
6895
|
* @param {string} [nextToken] This is the pagination token
|
6931
6896
|
* @param {ProgressStateAggregation} [state] Progress state
|
6932
|
-
* @param {string} [prevToken] This is the pagination token
|
6933
6897
|
* @param {*} [options] Override http request option.
|
6934
6898
|
* @throws {RequiredError}
|
6935
6899
|
*/
|
6936
|
-
listUserProgress: (promotionIDs: Array<string>, periodID?: number, nextToken?: string, state?: ProgressStateAggregation,
|
6900
|
+
listUserProgress: (promotionIDs: Array<string>, periodID?: number, nextToken?: string, state?: ProgressStateAggregation, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
6937
6901
|
};
|
6938
6902
|
/**
|
6939
6903
|
* ProgressApi - functional programming interface
|
@@ -6950,11 +6914,10 @@ export declare const ProgressApiFp: (configuration?: Configuration) => {
|
|
6950
6914
|
* @param {ProgressInterval} [interval] Interval
|
6951
6915
|
* @param {string} [nextToken] This is the pagination token
|
6952
6916
|
* @param {ProgressStateAggregation} [state] Progress state
|
6953
|
-
* @param {string} [prevToken] This is the pagination token
|
6954
6917
|
* @param {*} [options] Override http request option.
|
6955
6918
|
* @throws {RequiredError}
|
6956
6919
|
*/
|
6957
|
-
listProgress(promotionIDs: Array<string>, periodID?: number, userIDs?: Array<string>, clientIDs?: Array<string>, interval?: ProgressInterval, nextToken?: string, state?: ProgressStateAggregation,
|
6920
|
+
listProgress(promotionIDs: Array<string>, periodID?: number, userIDs?: Array<string>, clientIDs?: Array<string>, interval?: ProgressInterval, nextToken?: string, state?: ProgressStateAggregation, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProgressResponse>>;
|
6958
6921
|
/**
|
6959
6922
|
* List users progress
|
6960
6923
|
* @summary List progress
|
@@ -6962,11 +6925,10 @@ export declare const ProgressApiFp: (configuration?: Configuration) => {
|
|
6962
6925
|
* @param {number} [periodID] Period ID
|
6963
6926
|
* @param {string} [nextToken] This is the pagination token
|
6964
6927
|
* @param {ProgressStateAggregation} [state] Progress state
|
6965
|
-
* @param {string} [prevToken] This is the pagination token
|
6966
6928
|
* @param {*} [options] Override http request option.
|
6967
6929
|
* @throws {RequiredError}
|
6968
6930
|
*/
|
6969
|
-
listUserProgress(promotionIDs: Array<string>, periodID?: number, nextToken?: string, state?: ProgressStateAggregation,
|
6931
|
+
listUserProgress(promotionIDs: Array<string>, periodID?: number, nextToken?: string, state?: ProgressStateAggregation, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProgressResponse>>;
|
6970
6932
|
};
|
6971
6933
|
/**
|
6972
6934
|
* ProgressApi - factory interface
|
@@ -6983,11 +6945,10 @@ export declare const ProgressApiFactory: (configuration?: Configuration, basePat
|
|
6983
6945
|
* @param {ProgressInterval} [interval] Interval
|
6984
6946
|
* @param {string} [nextToken] This is the pagination token
|
6985
6947
|
* @param {ProgressStateAggregation} [state] Progress state
|
6986
|
-
* @param {string} [prevToken] This is the pagination token
|
6987
6948
|
* @param {*} [options] Override http request option.
|
6988
6949
|
* @throws {RequiredError}
|
6989
6950
|
*/
|
6990
|
-
listProgress(promotionIDs: Array<string>, periodID?: number, userIDs?: Array<string>, clientIDs?: Array<string>, interval?: ProgressInterval, nextToken?: string, state?: ProgressStateAggregation,
|
6951
|
+
listProgress(promotionIDs: Array<string>, periodID?: number, userIDs?: Array<string>, clientIDs?: Array<string>, interval?: ProgressInterval, nextToken?: string, state?: ProgressStateAggregation, options?: any): AxiosPromise<ProgressResponse>;
|
6991
6952
|
/**
|
6992
6953
|
* List users progress
|
6993
6954
|
* @summary List progress
|
@@ -6995,11 +6956,10 @@ export declare const ProgressApiFactory: (configuration?: Configuration, basePat
|
|
6995
6956
|
* @param {number} [periodID] Period ID
|
6996
6957
|
* @param {string} [nextToken] This is the pagination token
|
6997
6958
|
* @param {ProgressStateAggregation} [state] Progress state
|
6998
|
-
* @param {string} [prevToken] This is the pagination token
|
6999
6959
|
* @param {*} [options] Override http request option.
|
7000
6960
|
* @throws {RequiredError}
|
7001
6961
|
*/
|
7002
|
-
listUserProgress(promotionIDs: Array<string>, periodID?: number, nextToken?: string, state?: ProgressStateAggregation,
|
6962
|
+
listUserProgress(promotionIDs: Array<string>, periodID?: number, nextToken?: string, state?: ProgressStateAggregation, options?: any): AxiosPromise<ProgressResponse>;
|
7003
6963
|
};
|
7004
6964
|
/**
|
7005
6965
|
* ProgressApi - object-oriented interface
|
@@ -7018,12 +6978,11 @@ export declare class ProgressApi extends BaseAPI {
|
|
7018
6978
|
* @param {ProgressInterval} [interval] Interval
|
7019
6979
|
* @param {string} [nextToken] This is the pagination token
|
7020
6980
|
* @param {ProgressStateAggregation} [state] Progress state
|
7021
|
-
* @param {string} [prevToken] This is the pagination token
|
7022
6981
|
* @param {*} [options] Override http request option.
|
7023
6982
|
* @throws {RequiredError}
|
7024
6983
|
* @memberof ProgressApi
|
7025
6984
|
*/
|
7026
|
-
listProgress(promotionIDs: Array<string>, periodID?: number, userIDs?: Array<string>, clientIDs?: Array<string>, interval?: ProgressInterval, nextToken?: string, state?: ProgressStateAggregation,
|
6985
|
+
listProgress(promotionIDs: Array<string>, periodID?: number, userIDs?: Array<string>, clientIDs?: Array<string>, interval?: ProgressInterval, nextToken?: string, state?: ProgressStateAggregation, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ProgressResponse, any>>;
|
7027
6986
|
/**
|
7028
6987
|
* List users progress
|
7029
6988
|
* @summary List progress
|
@@ -7031,12 +6990,11 @@ export declare class ProgressApi extends BaseAPI {
|
|
7031
6990
|
* @param {number} [periodID] Period ID
|
7032
6991
|
* @param {string} [nextToken] This is the pagination token
|
7033
6992
|
* @param {ProgressStateAggregation} [state] Progress state
|
7034
|
-
* @param {string} [prevToken] This is the pagination token
|
7035
6993
|
* @param {*} [options] Override http request option.
|
7036
6994
|
* @throws {RequiredError}
|
7037
6995
|
* @memberof ProgressApi
|
7038
6996
|
*/
|
7039
|
-
listUserProgress(promotionIDs: Array<string>, periodID?: number, nextToken?: string, state?: ProgressStateAggregation,
|
6997
|
+
listUserProgress(promotionIDs: Array<string>, periodID?: number, nextToken?: string, state?: ProgressStateAggregation, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ProgressResponse, any>>;
|
7040
6998
|
}
|
7041
6999
|
/**
|
7042
7000
|
* PromotionApi - axios parameter creator
|
@@ -7127,11 +7085,10 @@ export declare const PromotionApiAxiosParamCreator: (configuration?: Configurati
|
|
7127
7085
|
* @param {string} [search] search string, searches in client name/referenceID or user name/referenceID
|
7128
7086
|
* @param {ProgressInterval} [interval] Progress interval to filter by
|
7129
7087
|
* @param {ProgressStateAggregation} [state] Progress state
|
7130
|
-
* @param {string} [prevToken] This is the pagination token
|
7131
7088
|
* @param {*} [options] Override http request option.
|
7132
7089
|
* @throws {RequiredError}
|
7133
7090
|
*/
|
7134
|
-
listPromotionBeneficiaries: (id: string, periodID?: number, hasProgress?: boolean, nextToken?: string, search?: string, interval?: ProgressInterval, state?: ProgressStateAggregation,
|
7091
|
+
listPromotionBeneficiaries: (id: string, periodID?: number, hasProgress?: boolean, nextToken?: string, search?: string, interval?: ProgressInterval, state?: ProgressStateAggregation, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
7135
7092
|
/**
|
7136
7093
|
* List all promotions
|
7137
7094
|
* @summary List promotions
|
@@ -7170,11 +7127,10 @@ export declare const PromotionApiAxiosParamCreator: (configuration?: Configurati
|
|
7170
7127
|
* @param {boolean} [onlyClaimable] only claimable promotions
|
7171
7128
|
* @param {PromotionType} [type] promotion type
|
7172
7129
|
* @param {Array<string>} [iDs] IDs to filter by
|
7173
|
-
* @param {string} [prevToken] This is the pagination token
|
7174
7130
|
* @param {*} [options] Override http request option.
|
7175
7131
|
* @throws {RequiredError}
|
7176
7132
|
*/
|
7177
|
-
listUserPromotions: (nextToken?: string, tags?: string, startingAfter?: string, endingBefore?: string, startingBefore?: string, endingAfter?: string, search?: string, sortBy?: PromotionSortByField, sortDirection?: SortDirection, onlyClaimable?: boolean, type?: PromotionType, iDs?: Array<string>,
|
7133
|
+
listUserPromotions: (nextToken?: string, tags?: string, startingAfter?: string, endingBefore?: string, startingBefore?: string, endingAfter?: string, search?: string, sortBy?: PromotionSortByField, sortDirection?: SortDirection, onlyClaimable?: boolean, type?: PromotionType, iDs?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
7178
7134
|
/**
|
7179
7135
|
* Update promotion by id
|
7180
7136
|
* @summary Update promotion
|
@@ -7274,11 +7230,10 @@ export declare const PromotionApiFp: (configuration?: Configuration) => {
|
|
7274
7230
|
* @param {string} [search] search string, searches in client name/referenceID or user name/referenceID
|
7275
7231
|
* @param {ProgressInterval} [interval] Progress interval to filter by
|
7276
7232
|
* @param {ProgressStateAggregation} [state] Progress state
|
7277
|
-
* @param {string} [prevToken] This is the pagination token
|
7278
7233
|
* @param {*} [options] Override http request option.
|
7279
7234
|
* @throws {RequiredError}
|
7280
7235
|
*/
|
7281
|
-
listPromotionBeneficiaries(id: string, periodID?: number, hasProgress?: boolean, nextToken?: string, search?: string, interval?: ProgressInterval, state?: ProgressStateAggregation,
|
7236
|
+
listPromotionBeneficiaries(id: string, periodID?: number, hasProgress?: boolean, nextToken?: string, search?: string, interval?: ProgressInterval, state?: ProgressStateAggregation, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PromotionBeneficiariesResponse>>;
|
7282
7237
|
/**
|
7283
7238
|
* List all promotions
|
7284
7239
|
* @summary List promotions
|
@@ -7317,11 +7272,10 @@ export declare const PromotionApiFp: (configuration?: Configuration) => {
|
|
7317
7272
|
* @param {boolean} [onlyClaimable] only claimable promotions
|
7318
7273
|
* @param {PromotionType} [type] promotion type
|
7319
7274
|
* @param {Array<string>} [iDs] IDs to filter by
|
7320
|
-
* @param {string} [prevToken] This is the pagination token
|
7321
7275
|
* @param {*} [options] Override http request option.
|
7322
7276
|
* @throws {RequiredError}
|
7323
7277
|
*/
|
7324
|
-
listUserPromotions(nextToken?: string, tags?: string, startingAfter?: string, endingBefore?: string, startingBefore?: string, endingAfter?: string, search?: string, sortBy?: PromotionSortByField, sortDirection?: SortDirection, onlyClaimable?: boolean, type?: PromotionType, iDs?: Array<string>,
|
7278
|
+
listUserPromotions(nextToken?: string, tags?: string, startingAfter?: string, endingBefore?: string, startingBefore?: string, endingAfter?: string, search?: string, sortBy?: PromotionSortByField, sortDirection?: SortDirection, onlyClaimable?: boolean, type?: PromotionType, iDs?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserPromotionsResponse>>;
|
7325
7279
|
/**
|
7326
7280
|
* Update promotion by id
|
7327
7281
|
* @summary Update promotion
|
@@ -7421,11 +7375,10 @@ export declare const PromotionApiFactory: (configuration?: Configuration, basePa
|
|
7421
7375
|
* @param {string} [search] search string, searches in client name/referenceID or user name/referenceID
|
7422
7376
|
* @param {ProgressInterval} [interval] Progress interval to filter by
|
7423
7377
|
* @param {ProgressStateAggregation} [state] Progress state
|
7424
|
-
* @param {string} [prevToken] This is the pagination token
|
7425
7378
|
* @param {*} [options] Override http request option.
|
7426
7379
|
* @throws {RequiredError}
|
7427
7380
|
*/
|
7428
|
-
listPromotionBeneficiaries(id: string, periodID?: number, hasProgress?: boolean, nextToken?: string, search?: string, interval?: ProgressInterval, state?: ProgressStateAggregation,
|
7381
|
+
listPromotionBeneficiaries(id: string, periodID?: number, hasProgress?: boolean, nextToken?: string, search?: string, interval?: ProgressInterval, state?: ProgressStateAggregation, options?: any): AxiosPromise<PromotionBeneficiariesResponse>;
|
7429
7382
|
/**
|
7430
7383
|
* List all promotions
|
7431
7384
|
* @summary List promotions
|
@@ -7464,11 +7417,10 @@ export declare const PromotionApiFactory: (configuration?: Configuration, basePa
|
|
7464
7417
|
* @param {boolean} [onlyClaimable] only claimable promotions
|
7465
7418
|
* @param {PromotionType} [type] promotion type
|
7466
7419
|
* @param {Array<string>} [iDs] IDs to filter by
|
7467
|
-
* @param {string} [prevToken] This is the pagination token
|
7468
7420
|
* @param {*} [options] Override http request option.
|
7469
7421
|
* @throws {RequiredError}
|
7470
7422
|
*/
|
7471
|
-
listUserPromotions(nextToken?: string, tags?: string, startingAfter?: string, endingBefore?: string, startingBefore?: string, endingAfter?: string, search?: string, sortBy?: PromotionSortByField, sortDirection?: SortDirection, onlyClaimable?: boolean, type?: PromotionType, iDs?: Array<string>,
|
7423
|
+
listUserPromotions(nextToken?: string, tags?: string, startingAfter?: string, endingBefore?: string, startingBefore?: string, endingAfter?: string, search?: string, sortBy?: PromotionSortByField, sortDirection?: SortDirection, onlyClaimable?: boolean, type?: PromotionType, iDs?: Array<string>, options?: any): AxiosPromise<UserPromotionsResponse>;
|
7472
7424
|
/**
|
7473
7425
|
* Update promotion by id
|
7474
7426
|
* @summary Update promotion
|
@@ -7579,12 +7531,11 @@ export declare class PromotionApi extends BaseAPI {
|
|
7579
7531
|
* @param {string} [search] search string, searches in client name/referenceID or user name/referenceID
|
7580
7532
|
* @param {ProgressInterval} [interval] Progress interval to filter by
|
7581
7533
|
* @param {ProgressStateAggregation} [state] Progress state
|
7582
|
-
* @param {string} [prevToken] This is the pagination token
|
7583
7534
|
* @param {*} [options] Override http request option.
|
7584
7535
|
* @throws {RequiredError}
|
7585
7536
|
* @memberof PromotionApi
|
7586
7537
|
*/
|
7587
|
-
listPromotionBeneficiaries(id: string, periodID?: number, hasProgress?: boolean, nextToken?: string, search?: string, interval?: ProgressInterval, state?: ProgressStateAggregation,
|
7538
|
+
listPromotionBeneficiaries(id: string, periodID?: number, hasProgress?: boolean, nextToken?: string, search?: string, interval?: ProgressInterval, state?: ProgressStateAggregation, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PromotionBeneficiariesResponse, any>>;
|
7588
7539
|
/**
|
7589
7540
|
* List all promotions
|
7590
7541
|
* @summary List promotions
|
@@ -7624,12 +7575,11 @@ export declare class PromotionApi extends BaseAPI {
|
|
7624
7575
|
* @param {boolean} [onlyClaimable] only claimable promotions
|
7625
7576
|
* @param {PromotionType} [type] promotion type
|
7626
7577
|
* @param {Array<string>} [iDs] IDs to filter by
|
7627
|
-
* @param {string} [prevToken] This is the pagination token
|
7628
7578
|
* @param {*} [options] Override http request option.
|
7629
7579
|
* @throws {RequiredError}
|
7630
7580
|
* @memberof PromotionApi
|
7631
7581
|
*/
|
7632
|
-
listUserPromotions(nextToken?: string, tags?: string, startingAfter?: string, endingBefore?: string, startingBefore?: string, endingAfter?: string, search?: string, sortBy?: PromotionSortByField, sortDirection?: SortDirection, onlyClaimable?: boolean, type?: PromotionType, iDs?: Array<string>,
|
7582
|
+
listUserPromotions(nextToken?: string, tags?: string, startingAfter?: string, endingBefore?: string, startingBefore?: string, endingAfter?: string, search?: string, sortBy?: PromotionSortByField, sortDirection?: SortDirection, onlyClaimable?: boolean, type?: PromotionType, iDs?: Array<string>, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UserPromotionsResponse, any>>;
|
7633
7583
|
/**
|
7634
7584
|
* Update promotion by id
|
7635
7585
|
* @summary Update promotion
|
@@ -7792,11 +7742,10 @@ export declare const SegmentApiAxiosParamCreator: (configuration?: Configuration
|
|
7792
7742
|
* @summary Method returns segments list.
|
7793
7743
|
* @param {string} [nextToken]
|
7794
7744
|
* @param {string} [search] search string
|
7795
|
-
* @param {string} [prevToken]
|
7796
7745
|
* @param {*} [options] Override http request option.
|
7797
7746
|
* @throws {RequiredError}
|
7798
7747
|
*/
|
7799
|
-
listSegments: (nextToken?: string, search?: string,
|
7748
|
+
listSegments: (nextToken?: string, search?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
7800
7749
|
};
|
7801
7750
|
/**
|
7802
7751
|
* SegmentApi - functional programming interface
|
@@ -7824,11 +7773,10 @@ export declare const SegmentApiFp: (configuration?: Configuration) => {
|
|
7824
7773
|
* @summary Method returns segments list.
|
7825
7774
|
* @param {string} [nextToken]
|
7826
7775
|
* @param {string} [search] search string
|
7827
|
-
* @param {string} [prevToken]
|
7828
7776
|
* @param {*} [options] Override http request option.
|
7829
7777
|
* @throws {RequiredError}
|
7830
7778
|
*/
|
7831
|
-
listSegments(nextToken?: string, search?: string,
|
7779
|
+
listSegments(nextToken?: string, search?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SegmentListResponse>>;
|
7832
7780
|
};
|
7833
7781
|
/**
|
7834
7782
|
* SegmentApi - factory interface
|
@@ -7856,11 +7804,10 @@ export declare const SegmentApiFactory: (configuration?: Configuration, basePath
|
|
7856
7804
|
* @summary Method returns segments list.
|
7857
7805
|
* @param {string} [nextToken]
|
7858
7806
|
* @param {string} [search] search string
|
7859
|
-
* @param {string} [prevToken]
|
7860
7807
|
* @param {*} [options] Override http request option.
|
7861
7808
|
* @throws {RequiredError}
|
7862
7809
|
*/
|
7863
|
-
listSegments(nextToken?: string, search?: string,
|
7810
|
+
listSegments(nextToken?: string, search?: string, options?: any): AxiosPromise<SegmentListResponse>;
|
7864
7811
|
};
|
7865
7812
|
/**
|
7866
7813
|
* SegmentApi - object-oriented interface
|
@@ -7892,12 +7839,11 @@ export declare class SegmentApi extends BaseAPI {
|
|
7892
7839
|
* @summary Method returns segments list.
|
7893
7840
|
* @param {string} [nextToken]
|
7894
7841
|
* @param {string} [search] search string
|
7895
|
-
* @param {string} [prevToken]
|
7896
7842
|
* @param {*} [options] Override http request option.
|
7897
7843
|
* @throws {RequiredError}
|
7898
7844
|
* @memberof SegmentApi
|
7899
7845
|
*/
|
7900
|
-
listSegments(nextToken?: string, search?: string,
|
7846
|
+
listSegments(nextToken?: string, search?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SegmentListResponse, any>>;
|
7901
7847
|
}
|
7902
7848
|
/**
|
7903
7849
|
* TagApi - axios parameter creator
|
@@ -8168,21 +8114,19 @@ export declare const TransactionApiAxiosParamCreator: (configuration?: Configura
|
|
8168
8114
|
* @param {string} [nextToken] This is the pagination token
|
8169
8115
|
* @param {Array<string>} [clientIDs] This is the client IDs to filter by
|
8170
8116
|
* @param {Array<string>} [userIDs] This is the user ID
|
8171
|
-
* @param {string} [prevToken] This is the pagination token
|
8172
8117
|
* @param {*} [options] Override http request option.
|
8173
8118
|
* @throws {RequiredError}
|
8174
8119
|
*/
|
8175
|
-
listTransactions: (nextToken?: string, clientIDs?: Array<string>, userIDs?: Array<string>,
|
8120
|
+
listTransactions: (nextToken?: string, clientIDs?: Array<string>, userIDs?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
8176
8121
|
/**
|
8177
8122
|
* List existing transactions
|
8178
8123
|
* @summary List existing transactions for users
|
8179
8124
|
* @param {string} [nextToken] This is the pagination token
|
8180
8125
|
* @param {Array<string>} [userIDs] This is the user ID
|
8181
|
-
* @param {string} [prevToken] This is the pagination token
|
8182
8126
|
* @param {*} [options] Override http request option.
|
8183
8127
|
* @throws {RequiredError}
|
8184
8128
|
*/
|
8185
|
-
listUserTransactions: (nextToken?: string, userIDs?: Array<string>,
|
8129
|
+
listUserTransactions: (nextToken?: string, userIDs?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
8186
8130
|
};
|
8187
8131
|
/**
|
8188
8132
|
* TransactionApi - functional programming interface
|
@@ -8195,21 +8139,19 @@ export declare const TransactionApiFp: (configuration?: Configuration) => {
|
|
8195
8139
|
* @param {string} [nextToken] This is the pagination token
|
8196
8140
|
* @param {Array<string>} [clientIDs] This is the client IDs to filter by
|
8197
8141
|
* @param {Array<string>} [userIDs] This is the user ID
|
8198
|
-
* @param {string} [prevToken] This is the pagination token
|
8199
8142
|
* @param {*} [options] Override http request option.
|
8200
8143
|
* @throws {RequiredError}
|
8201
8144
|
*/
|
8202
|
-
listTransactions(nextToken?: string, clientIDs?: Array<string>, userIDs?: Array<string>,
|
8145
|
+
listTransactions(nextToken?: string, clientIDs?: Array<string>, userIDs?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TransactionsResponse>>;
|
8203
8146
|
/**
|
8204
8147
|
* List existing transactions
|
8205
8148
|
* @summary List existing transactions for users
|
8206
8149
|
* @param {string} [nextToken] This is the pagination token
|
8207
8150
|
* @param {Array<string>} [userIDs] This is the user ID
|
8208
|
-
* @param {string} [prevToken] This is the pagination token
|
8209
8151
|
* @param {*} [options] Override http request option.
|
8210
8152
|
* @throws {RequiredError}
|
8211
8153
|
*/
|
8212
|
-
listUserTransactions(nextToken?: string, userIDs?: Array<string>,
|
8154
|
+
listUserTransactions(nextToken?: string, userIDs?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TransactionsResponse>>;
|
8213
8155
|
};
|
8214
8156
|
/**
|
8215
8157
|
* TransactionApi - factory interface
|
@@ -8222,21 +8164,19 @@ export declare const TransactionApiFactory: (configuration?: Configuration, base
|
|
8222
8164
|
* @param {string} [nextToken] This is the pagination token
|
8223
8165
|
* @param {Array<string>} [clientIDs] This is the client IDs to filter by
|
8224
8166
|
* @param {Array<string>} [userIDs] This is the user ID
|
8225
|
-
* @param {string} [prevToken] This is the pagination token
|
8226
8167
|
* @param {*} [options] Override http request option.
|
8227
8168
|
* @throws {RequiredError}
|
8228
8169
|
*/
|
8229
|
-
listTransactions(nextToken?: string, clientIDs?: Array<string>, userIDs?: Array<string>,
|
8170
|
+
listTransactions(nextToken?: string, clientIDs?: Array<string>, userIDs?: Array<string>, options?: any): AxiosPromise<TransactionsResponse>;
|
8230
8171
|
/**
|
8231
8172
|
* List existing transactions
|
8232
8173
|
* @summary List existing transactions for users
|
8233
8174
|
* @param {string} [nextToken] This is the pagination token
|
8234
8175
|
* @param {Array<string>} [userIDs] This is the user ID
|
8235
|
-
* @param {string} [prevToken] This is the pagination token
|
8236
8176
|
* @param {*} [options] Override http request option.
|
8237
8177
|
* @throws {RequiredError}
|
8238
8178
|
*/
|
8239
|
-
listUserTransactions(nextToken?: string, userIDs?: Array<string>,
|
8179
|
+
listUserTransactions(nextToken?: string, userIDs?: Array<string>, options?: any): AxiosPromise<TransactionsResponse>;
|
8240
8180
|
};
|
8241
8181
|
/**
|
8242
8182
|
* TransactionApi - object-oriented interface
|
@@ -8251,23 +8191,21 @@ export declare class TransactionApi extends BaseAPI {
|
|
8251
8191
|
* @param {string} [nextToken] This is the pagination token
|
8252
8192
|
* @param {Array<string>} [clientIDs] This is the client IDs to filter by
|
8253
8193
|
* @param {Array<string>} [userIDs] This is the user ID
|
8254
|
-
* @param {string} [prevToken] This is the pagination token
|
8255
8194
|
* @param {*} [options] Override http request option.
|
8256
8195
|
* @throws {RequiredError}
|
8257
8196
|
* @memberof TransactionApi
|
8258
8197
|
*/
|
8259
|
-
listTransactions(nextToken?: string, clientIDs?: Array<string>, userIDs?: Array<string>,
|
8198
|
+
listTransactions(nextToken?: string, clientIDs?: Array<string>, userIDs?: Array<string>, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<TransactionsResponse, any>>;
|
8260
8199
|
/**
|
8261
8200
|
* List existing transactions
|
8262
8201
|
* @summary List existing transactions for users
|
8263
8202
|
* @param {string} [nextToken] This is the pagination token
|
8264
8203
|
* @param {Array<string>} [userIDs] This is the user ID
|
8265
|
-
* @param {string} [prevToken] This is the pagination token
|
8266
8204
|
* @param {*} [options] Override http request option.
|
8267
8205
|
* @throws {RequiredError}
|
8268
8206
|
* @memberof TransactionApi
|
8269
8207
|
*/
|
8270
|
-
listUserTransactions(nextToken?: string, userIDs?: Array<string>,
|
8208
|
+
listUserTransactions(nextToken?: string, userIDs?: Array<string>, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<TransactionsResponse, any>>;
|
8271
8209
|
}
|
8272
8210
|
/**
|
8273
8211
|
* UserApi - axios parameter creator
|
@@ -8303,11 +8241,10 @@ export declare const UserApiAxiosParamCreator: (configuration?: Configuration) =
|
|
8303
8241
|
* @param {string} [nextToken] This is the pagination token
|
8304
8242
|
* @param {string} [search] search string
|
8305
8243
|
* @param {Array<string>} [userIDs] user ids to filter by
|
8306
|
-
* @param {string} [prevToken] This is the pagination token
|
8307
8244
|
* @param {*} [options] Override http request option.
|
8308
8245
|
* @throws {RequiredError}
|
8309
8246
|
*/
|
8310
|
-
listCustomerUsers: (nextToken?: string, search?: string, userIDs?: Array<string>,
|
8247
|
+
listCustomerUsers: (nextToken?: string, search?: string, userIDs?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
8311
8248
|
/**
|
8312
8249
|
* List all users
|
8313
8250
|
* @summary List users
|
@@ -8317,11 +8254,10 @@ export declare const UserApiAxiosParamCreator: (configuration?: Configuration) =
|
|
8317
8254
|
* @param {Array<string>} [clientIDs] client IDs to filter by
|
8318
8255
|
* @param {Array<string>} [userIDs] user ids to filter by
|
8319
8256
|
* @param {UserSource} [source] source to filter by
|
8320
|
-
* @param {string} [prevToken] This is the pagination token
|
8321
8257
|
* @param {*} [options] Override http request option.
|
8322
8258
|
* @throws {RequiredError}
|
8323
8259
|
*/
|
8324
|
-
listUsers: (nextToken?: string, role?: UserRole, search?: string, clientIDs?: Array<string>, userIDs?: Array<string>, source?: UserSource,
|
8260
|
+
listUsers: (nextToken?: string, role?: UserRole, search?: string, clientIDs?: Array<string>, userIDs?: Array<string>, source?: UserSource, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
8325
8261
|
};
|
8326
8262
|
/**
|
8327
8263
|
* UserApi - functional programming interface
|
@@ -8357,11 +8293,10 @@ export declare const UserApiFp: (configuration?: Configuration) => {
|
|
8357
8293
|
* @param {string} [nextToken] This is the pagination token
|
8358
8294
|
* @param {string} [search] search string
|
8359
8295
|
* @param {Array<string>} [userIDs] user ids to filter by
|
8360
|
-
* @param {string} [prevToken] This is the pagination token
|
8361
8296
|
* @param {*} [options] Override http request option.
|
8362
8297
|
* @throws {RequiredError}
|
8363
8298
|
*/
|
8364
|
-
listCustomerUsers(nextToken?: string, search?: string, userIDs?: Array<string>,
|
8299
|
+
listCustomerUsers(nextToken?: string, search?: string, userIDs?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserListResponse>>;
|
8365
8300
|
/**
|
8366
8301
|
* List all users
|
8367
8302
|
* @summary List users
|
@@ -8371,11 +8306,10 @@ export declare const UserApiFp: (configuration?: Configuration) => {
|
|
8371
8306
|
* @param {Array<string>} [clientIDs] client IDs to filter by
|
8372
8307
|
* @param {Array<string>} [userIDs] user ids to filter by
|
8373
8308
|
* @param {UserSource} [source] source to filter by
|
8374
|
-
* @param {string} [prevToken] This is the pagination token
|
8375
8309
|
* @param {*} [options] Override http request option.
|
8376
8310
|
* @throws {RequiredError}
|
8377
8311
|
*/
|
8378
|
-
listUsers(nextToken?: string, role?: UserRole, search?: string, clientIDs?: Array<string>, userIDs?: Array<string>, source?: UserSource,
|
8312
|
+
listUsers(nextToken?: string, role?: UserRole, search?: string, clientIDs?: Array<string>, userIDs?: Array<string>, source?: UserSource, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserListResponse>>;
|
8379
8313
|
};
|
8380
8314
|
/**
|
8381
8315
|
* UserApi - factory interface
|
@@ -8411,11 +8345,10 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
|
|
8411
8345
|
* @param {string} [nextToken] This is the pagination token
|
8412
8346
|
* @param {string} [search] search string
|
8413
8347
|
* @param {Array<string>} [userIDs] user ids to filter by
|
8414
|
-
* @param {string} [prevToken] This is the pagination token
|
8415
8348
|
* @param {*} [options] Override http request option.
|
8416
8349
|
* @throws {RequiredError}
|
8417
8350
|
*/
|
8418
|
-
listCustomerUsers(nextToken?: string, search?: string, userIDs?: Array<string>,
|
8351
|
+
listCustomerUsers(nextToken?: string, search?: string, userIDs?: Array<string>, options?: any): AxiosPromise<UserListResponse>;
|
8419
8352
|
/**
|
8420
8353
|
* List all users
|
8421
8354
|
* @summary List users
|
@@ -8425,11 +8358,10 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
|
|
8425
8358
|
* @param {Array<string>} [clientIDs] client IDs to filter by
|
8426
8359
|
* @param {Array<string>} [userIDs] user ids to filter by
|
8427
8360
|
* @param {UserSource} [source] source to filter by
|
8428
|
-
* @param {string} [prevToken] This is the pagination token
|
8429
8361
|
* @param {*} [options] Override http request option.
|
8430
8362
|
* @throws {RequiredError}
|
8431
8363
|
*/
|
8432
|
-
listUsers(nextToken?: string, role?: UserRole, search?: string, clientIDs?: Array<string>, userIDs?: Array<string>, source?: UserSource,
|
8364
|
+
listUsers(nextToken?: string, role?: UserRole, search?: string, clientIDs?: Array<string>, userIDs?: Array<string>, source?: UserSource, options?: any): AxiosPromise<UserListResponse>;
|
8433
8365
|
};
|
8434
8366
|
/**
|
8435
8367
|
* UserApi - object-oriented interface
|
@@ -8470,12 +8402,11 @@ export declare class UserApi extends BaseAPI {
|
|
8470
8402
|
* @param {string} [nextToken] This is the pagination token
|
8471
8403
|
* @param {string} [search] search string
|
8472
8404
|
* @param {Array<string>} [userIDs] user ids to filter by
|
8473
|
-
* @param {string} [prevToken] This is the pagination token
|
8474
8405
|
* @param {*} [options] Override http request option.
|
8475
8406
|
* @throws {RequiredError}
|
8476
8407
|
* @memberof UserApi
|
8477
8408
|
*/
|
8478
|
-
listCustomerUsers(nextToken?: string, search?: string, userIDs?: Array<string>,
|
8409
|
+
listCustomerUsers(nextToken?: string, search?: string, userIDs?: Array<string>, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UserListResponse, any>>;
|
8479
8410
|
/**
|
8480
8411
|
* List all users
|
8481
8412
|
* @summary List users
|
@@ -8485,10 +8416,9 @@ export declare class UserApi extends BaseAPI {
|
|
8485
8416
|
* @param {Array<string>} [clientIDs] client IDs to filter by
|
8486
8417
|
* @param {Array<string>} [userIDs] user ids to filter by
|
8487
8418
|
* @param {UserSource} [source] source to filter by
|
8488
|
-
* @param {string} [prevToken] This is the pagination token
|
8489
8419
|
* @param {*} [options] Override http request option.
|
8490
8420
|
* @throws {RequiredError}
|
8491
8421
|
* @memberof UserApi
|
8492
8422
|
*/
|
8493
|
-
listUsers(nextToken?: string, role?: UserRole, search?: string, clientIDs?: Array<string>, userIDs?: Array<string>, source?: UserSource,
|
8423
|
+
listUsers(nextToken?: string, role?: UserRole, search?: string, clientIDs?: Array<string>, userIDs?: Array<string>, source?: UserSource, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UserListResponse, any>>;
|
8494
8424
|
}
|