flexinet-api 0.0.2053-prerelease0-dev → 0.0.2056-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 +163 -59
- package/dist/api.d.ts +136 -36
- package/dist/api.js +66 -59
- package/dist/esm/api.d.ts +136 -36
- package/dist/esm/api.js +66 -59
- package/package.json +1 -1
package/dist/esm/api.d.ts
CHANGED
@@ -134,6 +134,12 @@ export interface AuditLogListResponse {
|
|
134
134
|
* @memberof AuditLogListResponse
|
135
135
|
*/
|
136
136
|
'nextToken'?: string;
|
137
|
+
/**
|
138
|
+
* This is the pagination token
|
139
|
+
* @type {string}
|
140
|
+
* @memberof AuditLogListResponse
|
141
|
+
*/
|
142
|
+
'prevToken'?: string;
|
137
143
|
/**
|
138
144
|
*
|
139
145
|
* @type {boolean}
|
@@ -231,6 +237,12 @@ export interface BalanceBulkTransferRequest {
|
|
231
237
|
* @memberof BalanceBulkTransferRequest
|
232
238
|
*/
|
233
239
|
'beneficiaryReference': string;
|
240
|
+
/**
|
241
|
+
*
|
242
|
+
* @type {string}
|
243
|
+
* @memberof BalanceBulkTransferRequest
|
244
|
+
*/
|
245
|
+
'description'?: string;
|
234
246
|
}
|
235
247
|
/**
|
236
248
|
*
|
@@ -779,6 +791,12 @@ export interface ClientListResponse {
|
|
779
791
|
* @memberof ClientListResponse
|
780
792
|
*/
|
781
793
|
'hasMore': boolean;
|
794
|
+
/**
|
795
|
+
* This is the pagination token
|
796
|
+
* @type {string}
|
797
|
+
* @memberof ClientListResponse
|
798
|
+
*/
|
799
|
+
'prevToken'?: string;
|
782
800
|
}
|
783
801
|
/**
|
784
802
|
*
|
@@ -1331,6 +1349,12 @@ export interface NotificationListResponse {
|
|
1331
1349
|
* @memberof NotificationListResponse
|
1332
1350
|
*/
|
1333
1351
|
'unreadCount': number;
|
1352
|
+
/**
|
1353
|
+
* This is the pagination token
|
1354
|
+
* @type {string}
|
1355
|
+
* @memberof NotificationListResponse
|
1356
|
+
*/
|
1357
|
+
'prevToken'?: string;
|
1334
1358
|
}
|
1335
1359
|
/**
|
1336
1360
|
*
|
@@ -1506,6 +1530,12 @@ export interface OrderListResponse {
|
|
1506
1530
|
* @memberof OrderListResponse
|
1507
1531
|
*/
|
1508
1532
|
'nextToken'?: string;
|
1533
|
+
/**
|
1534
|
+
* This is the pagination token
|
1535
|
+
* @type {string}
|
1536
|
+
* @memberof OrderListResponse
|
1537
|
+
*/
|
1538
|
+
'prevToken'?: string;
|
1509
1539
|
}
|
1510
1540
|
/**
|
1511
1541
|
* @type OrderSourceReference
|
@@ -2048,6 +2078,12 @@ export interface ProductRequestsResponse {
|
|
2048
2078
|
* @memberof ProductRequestsResponse
|
2049
2079
|
*/
|
2050
2080
|
'nextToken'?: string;
|
2081
|
+
/**
|
2082
|
+
* This is the pagination token
|
2083
|
+
* @type {string}
|
2084
|
+
* @memberof ProductRequestsResponse
|
2085
|
+
*/
|
2086
|
+
'prevToken'?: string;
|
2051
2087
|
}
|
2052
2088
|
/**
|
2053
2089
|
*
|
@@ -2095,6 +2131,12 @@ export interface ProductsResponse {
|
|
2095
2131
|
* @memberof ProductsResponse
|
2096
2132
|
*/
|
2097
2133
|
'nextToken'?: string;
|
2134
|
+
/**
|
2135
|
+
* This is the pagination token
|
2136
|
+
* @type {string}
|
2137
|
+
* @memberof ProductsResponse
|
2138
|
+
*/
|
2139
|
+
'prevToken'?: string;
|
2098
2140
|
}
|
2099
2141
|
/**
|
2100
2142
|
*
|
@@ -2208,6 +2250,12 @@ export interface ProgressResponse {
|
|
2208
2250
|
* @memberof ProgressResponse
|
2209
2251
|
*/
|
2210
2252
|
'nextToken'?: string;
|
2253
|
+
/**
|
2254
|
+
* This is the pagination token
|
2255
|
+
* @type {string}
|
2256
|
+
* @memberof ProgressResponse
|
2257
|
+
*/
|
2258
|
+
'prevToken'?: string;
|
2211
2259
|
}
|
2212
2260
|
/**
|
2213
2261
|
*
|
@@ -2452,6 +2500,12 @@ export interface PromotionClientBeneficiaries {
|
|
2452
2500
|
* @memberof PromotionClientBeneficiaries
|
2453
2501
|
*/
|
2454
2502
|
'nextToken'?: string;
|
2503
|
+
/**
|
2504
|
+
* This is the pagination token
|
2505
|
+
* @type {string}
|
2506
|
+
* @memberof PromotionClientBeneficiaries
|
2507
|
+
*/
|
2508
|
+
'prevToken'?: string;
|
2455
2509
|
}
|
2456
2510
|
/**
|
2457
2511
|
*
|
@@ -2686,6 +2740,12 @@ export interface PromotionUserBeneficiaries {
|
|
2686
2740
|
* @memberof PromotionUserBeneficiaries
|
2687
2741
|
*/
|
2688
2742
|
'nextToken'?: string;
|
2743
|
+
/**
|
2744
|
+
* This is the pagination token
|
2745
|
+
* @type {string}
|
2746
|
+
* @memberof PromotionUserBeneficiaries
|
2747
|
+
*/
|
2748
|
+
'prevToken'?: string;
|
2689
2749
|
}
|
2690
2750
|
/**
|
2691
2751
|
*
|
@@ -2705,6 +2765,12 @@ export interface PromotionsResponse {
|
|
2705
2765
|
* @memberof PromotionsResponse
|
2706
2766
|
*/
|
2707
2767
|
'nextToken'?: string;
|
2768
|
+
/**
|
2769
|
+
* This is the pagination token
|
2770
|
+
* @type {string}
|
2771
|
+
* @memberof PromotionsResponse
|
2772
|
+
*/
|
2773
|
+
'prevToken'?: string;
|
2708
2774
|
}
|
2709
2775
|
/**
|
2710
2776
|
*
|
@@ -2942,6 +3008,12 @@ export interface SegmentListResponse {
|
|
2942
3008
|
* @memberof SegmentListResponse
|
2943
3009
|
*/
|
2944
3010
|
'hasMore': boolean;
|
3011
|
+
/**
|
3012
|
+
* This is the pagination token
|
3013
|
+
* @type {string}
|
3014
|
+
* @memberof SegmentListResponse
|
3015
|
+
*/
|
3016
|
+
'prevToken'?: string;
|
2945
3017
|
}
|
2946
3018
|
/**
|
2947
3019
|
*
|
@@ -3789,6 +3861,12 @@ export interface TransactionsResponse {
|
|
3789
3861
|
* @memberof TransactionsResponse
|
3790
3862
|
*/
|
3791
3863
|
'nextToken'?: string;
|
3864
|
+
/**
|
3865
|
+
* This is the pagination token
|
3866
|
+
* @type {string}
|
3867
|
+
* @memberof TransactionsResponse
|
3868
|
+
*/
|
3869
|
+
'prevToken'?: string;
|
3792
3870
|
}
|
3793
3871
|
/**
|
3794
3872
|
*
|
@@ -4091,6 +4169,12 @@ export interface UserListResponse {
|
|
4091
4169
|
* @memberof UserListResponse
|
4092
4170
|
*/
|
4093
4171
|
'hasMore': boolean;
|
4172
|
+
/**
|
4173
|
+
* This is the pagination token
|
4174
|
+
* @type {string}
|
4175
|
+
* @memberof UserListResponse
|
4176
|
+
*/
|
4177
|
+
'prevToken'?: string;
|
4094
4178
|
}
|
4095
4179
|
/**
|
4096
4180
|
*
|
@@ -4177,6 +4261,12 @@ export interface UserOrderListResponse {
|
|
4177
4261
|
* @memberof UserOrderListResponse
|
4178
4262
|
*/
|
4179
4263
|
'nextToken'?: string;
|
4264
|
+
/**
|
4265
|
+
* This is the pagination token
|
4266
|
+
* @type {string}
|
4267
|
+
* @memberof UserOrderListResponse
|
4268
|
+
*/
|
4269
|
+
'prevToken'?: string;
|
4180
4270
|
}
|
4181
4271
|
/**
|
4182
4272
|
* @type UserOrderSourceReference
|
@@ -4423,6 +4513,12 @@ export interface UserPromotionsResponse {
|
|
4423
4513
|
* @memberof UserPromotionsResponse
|
4424
4514
|
*/
|
4425
4515
|
'nextToken'?: string;
|
4516
|
+
/**
|
4517
|
+
* This is the pagination token
|
4518
|
+
* @type {string}
|
4519
|
+
* @memberof UserPromotionsResponse
|
4520
|
+
*/
|
4521
|
+
'prevToken'?: string;
|
4426
4522
|
}
|
4427
4523
|
/**
|
4428
4524
|
*
|
@@ -6046,7 +6142,7 @@ export declare const OrderApiAxiosParamCreator: (configuration?: Configuration)
|
|
6046
6142
|
/**
|
6047
6143
|
* List existing orders
|
6048
6144
|
* @summary List existing orders
|
6049
|
-
* @param {string} [
|
6145
|
+
* @param {string} [nextToken] This is the pagination token
|
6050
6146
|
* @param {string} [search] Search for product or order
|
6051
6147
|
* @param {string} [productId] Filter by token
|
6052
6148
|
* @param {Array<string>} [balanceIDs] Filter by balance ids
|
@@ -6059,11 +6155,11 @@ export declare const OrderApiAxiosParamCreator: (configuration?: Configuration)
|
|
6059
6155
|
* @param {*} [options] Override http request option.
|
6060
6156
|
* @throws {RequiredError}
|
6061
6157
|
*/
|
6062
|
-
listOrders: (
|
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>;
|
6063
6159
|
/**
|
6064
6160
|
* List existing orders
|
6065
6161
|
* @summary List existing orders
|
6066
|
-
* @param {string} [
|
6162
|
+
* @param {string} [nextToken] This is the pagination token
|
6067
6163
|
* @param {string} [search] Search for product or order
|
6068
6164
|
* @param {string} [productID] Filter by token
|
6069
6165
|
* @param {Array<string>} [balanceIDs] Filter by balance ids
|
@@ -6073,7 +6169,7 @@ export declare const OrderApiAxiosParamCreator: (configuration?: Configuration)
|
|
6073
6169
|
* @param {*} [options] Override http request option.
|
6074
6170
|
* @throws {RequiredError}
|
6075
6171
|
*/
|
6076
|
-
listOrdersUser: (
|
6172
|
+
listOrdersUser: (nextToken?: string, search?: string, productID?: string, balanceIDs?: Array<string>, createdAfter?: string, createdBefore?: string, userIDs?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
6077
6173
|
};
|
6078
6174
|
/**
|
6079
6175
|
* OrderApi - functional programming interface
|
@@ -6115,7 +6211,7 @@ export declare const OrderApiFp: (configuration?: Configuration) => {
|
|
6115
6211
|
/**
|
6116
6212
|
* List existing orders
|
6117
6213
|
* @summary List existing orders
|
6118
|
-
* @param {string} [
|
6214
|
+
* @param {string} [nextToken] This is the pagination token
|
6119
6215
|
* @param {string} [search] Search for product or order
|
6120
6216
|
* @param {string} [productId] Filter by token
|
6121
6217
|
* @param {Array<string>} [balanceIDs] Filter by balance ids
|
@@ -6128,11 +6224,11 @@ export declare const OrderApiFp: (configuration?: Configuration) => {
|
|
6128
6224
|
* @param {*} [options] Override http request option.
|
6129
6225
|
* @throws {RequiredError}
|
6130
6226
|
*/
|
6131
|
-
listOrders(
|
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>>;
|
6132
6228
|
/**
|
6133
6229
|
* List existing orders
|
6134
6230
|
* @summary List existing orders
|
6135
|
-
* @param {string} [
|
6231
|
+
* @param {string} [nextToken] This is the pagination token
|
6136
6232
|
* @param {string} [search] Search for product or order
|
6137
6233
|
* @param {string} [productID] Filter by token
|
6138
6234
|
* @param {Array<string>} [balanceIDs] Filter by balance ids
|
@@ -6142,7 +6238,7 @@ export declare const OrderApiFp: (configuration?: Configuration) => {
|
|
6142
6238
|
* @param {*} [options] Override http request option.
|
6143
6239
|
* @throws {RequiredError}
|
6144
6240
|
*/
|
6145
|
-
listOrdersUser(
|
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>>;
|
6146
6242
|
};
|
6147
6243
|
/**
|
6148
6244
|
* OrderApi - factory interface
|
@@ -6184,7 +6280,7 @@ export declare const OrderApiFactory: (configuration?: Configuration, basePath?:
|
|
6184
6280
|
/**
|
6185
6281
|
* List existing orders
|
6186
6282
|
* @summary List existing orders
|
6187
|
-
* @param {string} [
|
6283
|
+
* @param {string} [nextToken] This is the pagination token
|
6188
6284
|
* @param {string} [search] Search for product or order
|
6189
6285
|
* @param {string} [productId] Filter by token
|
6190
6286
|
* @param {Array<string>} [balanceIDs] Filter by balance ids
|
@@ -6197,11 +6293,11 @@ export declare const OrderApiFactory: (configuration?: Configuration, basePath?:
|
|
6197
6293
|
* @param {*} [options] Override http request option.
|
6198
6294
|
* @throws {RequiredError}
|
6199
6295
|
*/
|
6200
|
-
listOrders(
|
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>;
|
6201
6297
|
/**
|
6202
6298
|
* List existing orders
|
6203
6299
|
* @summary List existing orders
|
6204
|
-
* @param {string} [
|
6300
|
+
* @param {string} [nextToken] This is the pagination token
|
6205
6301
|
* @param {string} [search] Search for product or order
|
6206
6302
|
* @param {string} [productID] Filter by token
|
6207
6303
|
* @param {Array<string>} [balanceIDs] Filter by balance ids
|
@@ -6211,7 +6307,7 @@ export declare const OrderApiFactory: (configuration?: Configuration, basePath?:
|
|
6211
6307
|
* @param {*} [options] Override http request option.
|
6212
6308
|
* @throws {RequiredError}
|
6213
6309
|
*/
|
6214
|
-
listOrdersUser(
|
6310
|
+
listOrdersUser(nextToken?: string, search?: string, productID?: string, balanceIDs?: Array<string>, createdAfter?: string, createdBefore?: string, userIDs?: Array<string>, options?: any): AxiosPromise<UserOrderListResponse>;
|
6215
6311
|
};
|
6216
6312
|
/**
|
6217
6313
|
* OrderApi - object-oriented interface
|
@@ -6259,7 +6355,7 @@ export declare class OrderApi extends BaseAPI {
|
|
6259
6355
|
/**
|
6260
6356
|
* List existing orders
|
6261
6357
|
* @summary List existing orders
|
6262
|
-
* @param {string} [
|
6358
|
+
* @param {string} [nextToken] This is the pagination token
|
6263
6359
|
* @param {string} [search] Search for product or order
|
6264
6360
|
* @param {string} [productId] Filter by token
|
6265
6361
|
* @param {Array<string>} [balanceIDs] Filter by balance ids
|
@@ -6273,11 +6369,11 @@ export declare class OrderApi extends BaseAPI {
|
|
6273
6369
|
* @throws {RequiredError}
|
6274
6370
|
* @memberof OrderApi
|
6275
6371
|
*/
|
6276
|
-
listOrders(
|
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>>;
|
6277
6373
|
/**
|
6278
6374
|
* List existing orders
|
6279
6375
|
* @summary List existing orders
|
6280
|
-
* @param {string} [
|
6376
|
+
* @param {string} [nextToken] This is the pagination token
|
6281
6377
|
* @param {string} [search] Search for product or order
|
6282
6378
|
* @param {string} [productID] Filter by token
|
6283
6379
|
* @param {Array<string>} [balanceIDs] Filter by balance ids
|
@@ -6288,7 +6384,7 @@ export declare class OrderApi extends BaseAPI {
|
|
6288
6384
|
* @throws {RequiredError}
|
6289
6385
|
* @memberof OrderApi
|
6290
6386
|
*/
|
6291
|
-
listOrdersUser(
|
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>>;
|
6292
6388
|
}
|
6293
6389
|
/**
|
6294
6390
|
* ProductApi - axios parameter creator
|
@@ -7011,10 +7107,11 @@ export declare const PromotionApiAxiosParamCreator: (configuration?: Configurati
|
|
7011
7107
|
* @param {SortDirection} [sortDirection] sort direction
|
7012
7108
|
* @param {boolean} [onlyClaimable] only claimable promotions
|
7013
7109
|
* @param {Array<string>} [iDs] IDs to filter by
|
7110
|
+
* @param {string} [prevToken] This is the pagination token
|
7014
7111
|
* @param {*} [options] Override http request option.
|
7015
7112
|
* @throws {RequiredError}
|
7016
7113
|
*/
|
7017
|
-
listPromotions: (nextToken?: string, tags?: string, segmentId?: string, ownerID?: string, type?: PromotionType, startingAfter?: string, endingBefore?: string, startingBefore?: string, endingAfter?: string, clientIDs?: Array<string>, search?: string, sortBy?: PromotionSortByField, sortDirection?: SortDirection, onlyClaimable?: boolean, iDs?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
7114
|
+
listPromotions: (nextToken?: string, tags?: string, segmentId?: string, ownerID?: string, type?: PromotionType, startingAfter?: string, endingBefore?: string, startingBefore?: string, endingAfter?: string, clientIDs?: Array<string>, search?: string, sortBy?: PromotionSortByField, sortDirection?: SortDirection, onlyClaimable?: boolean, iDs?: Array<string>, prevToken?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
7018
7115
|
/**
|
7019
7116
|
* List users promotions
|
7020
7117
|
* @summary List promotions
|
@@ -7155,10 +7252,11 @@ export declare const PromotionApiFp: (configuration?: Configuration) => {
|
|
7155
7252
|
* @param {SortDirection} [sortDirection] sort direction
|
7156
7253
|
* @param {boolean} [onlyClaimable] only claimable promotions
|
7157
7254
|
* @param {Array<string>} [iDs] IDs to filter by
|
7255
|
+
* @param {string} [prevToken] This is the pagination token
|
7158
7256
|
* @param {*} [options] Override http request option.
|
7159
7257
|
* @throws {RequiredError}
|
7160
7258
|
*/
|
7161
|
-
listPromotions(nextToken?: string, tags?: string, segmentId?: string, ownerID?: string, type?: PromotionType, startingAfter?: string, endingBefore?: string, startingBefore?: string, endingAfter?: string, clientIDs?: Array<string>, search?: string, sortBy?: PromotionSortByField, sortDirection?: SortDirection, onlyClaimable?: boolean, iDs?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PromotionsResponse>>;
|
7259
|
+
listPromotions(nextToken?: string, tags?: string, segmentId?: string, ownerID?: string, type?: PromotionType, startingAfter?: string, endingBefore?: string, startingBefore?: string, endingAfter?: string, clientIDs?: Array<string>, search?: string, sortBy?: PromotionSortByField, sortDirection?: SortDirection, onlyClaimable?: boolean, iDs?: Array<string>, prevToken?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PromotionsResponse>>;
|
7162
7260
|
/**
|
7163
7261
|
* List users promotions
|
7164
7262
|
* @summary List promotions
|
@@ -7299,10 +7397,11 @@ export declare const PromotionApiFactory: (configuration?: Configuration, basePa
|
|
7299
7397
|
* @param {SortDirection} [sortDirection] sort direction
|
7300
7398
|
* @param {boolean} [onlyClaimable] only claimable promotions
|
7301
7399
|
* @param {Array<string>} [iDs] IDs to filter by
|
7400
|
+
* @param {string} [prevToken] This is the pagination token
|
7302
7401
|
* @param {*} [options] Override http request option.
|
7303
7402
|
* @throws {RequiredError}
|
7304
7403
|
*/
|
7305
|
-
listPromotions(nextToken?: string, tags?: string, segmentId?: string, ownerID?: string, type?: PromotionType, startingAfter?: string, endingBefore?: string, startingBefore?: string, endingAfter?: string, clientIDs?: Array<string>, search?: string, sortBy?: PromotionSortByField, sortDirection?: SortDirection, onlyClaimable?: boolean, iDs?: Array<string>, options?: any): AxiosPromise<PromotionsResponse>;
|
7404
|
+
listPromotions(nextToken?: string, tags?: string, segmentId?: string, ownerID?: string, type?: PromotionType, startingAfter?: string, endingBefore?: string, startingBefore?: string, endingAfter?: string, clientIDs?: Array<string>, search?: string, sortBy?: PromotionSortByField, sortDirection?: SortDirection, onlyClaimable?: boolean, iDs?: Array<string>, prevToken?: string, options?: any): AxiosPromise<PromotionsResponse>;
|
7306
7405
|
/**
|
7307
7406
|
* List users promotions
|
7308
7407
|
* @summary List promotions
|
@@ -7455,11 +7554,12 @@ export declare class PromotionApi extends BaseAPI {
|
|
7455
7554
|
* @param {SortDirection} [sortDirection] sort direction
|
7456
7555
|
* @param {boolean} [onlyClaimable] only claimable promotions
|
7457
7556
|
* @param {Array<string>} [iDs] IDs to filter by
|
7557
|
+
* @param {string} [prevToken] This is the pagination token
|
7458
7558
|
* @param {*} [options] Override http request option.
|
7459
7559
|
* @throws {RequiredError}
|
7460
7560
|
* @memberof PromotionApi
|
7461
7561
|
*/
|
7462
|
-
listPromotions(nextToken?: string, tags?: string, segmentId?: string, ownerID?: string, type?: PromotionType, startingAfter?: string, endingBefore?: string, startingBefore?: string, endingAfter?: string, clientIDs?: Array<string>, search?: string, sortBy?: PromotionSortByField, sortDirection?: SortDirection, onlyClaimable?: boolean, iDs?: Array<string>, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PromotionsResponse, any>>;
|
7562
|
+
listPromotions(nextToken?: string, tags?: string, segmentId?: string, ownerID?: string, type?: PromotionType, startingAfter?: string, endingBefore?: string, startingBefore?: string, endingAfter?: string, clientIDs?: Array<string>, search?: string, sortBy?: PromotionSortByField, sortDirection?: SortDirection, onlyClaimable?: boolean, iDs?: Array<string>, prevToken?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PromotionsResponse, any>>;
|
7463
7563
|
/**
|
7464
7564
|
* List users promotions
|
7465
7565
|
* @summary List promotions
|
@@ -8011,22 +8111,22 @@ export declare const TransactionApiAxiosParamCreator: (configuration?: Configura
|
|
8011
8111
|
/**
|
8012
8112
|
* List existing transactions
|
8013
8113
|
* @summary List existing transactions
|
8014
|
-
* @param {string} [
|
8114
|
+
* @param {string} [nextToken] This is the pagination token
|
8015
8115
|
* @param {Array<string>} [clientIDs] This is the client IDs to filter by
|
8016
8116
|
* @param {Array<string>} [userIDs] This is the user ID
|
8017
8117
|
* @param {*} [options] Override http request option.
|
8018
8118
|
* @throws {RequiredError}
|
8019
8119
|
*/
|
8020
|
-
listTransactions: (
|
8120
|
+
listTransactions: (nextToken?: string, clientIDs?: Array<string>, userIDs?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
8021
8121
|
/**
|
8022
8122
|
* List existing transactions
|
8023
8123
|
* @summary List existing transactions for users
|
8024
|
-
* @param {string} [
|
8124
|
+
* @param {string} [nextToken] This is the pagination token
|
8025
8125
|
* @param {Array<string>} [userIDs] This is the user ID
|
8026
8126
|
* @param {*} [options] Override http request option.
|
8027
8127
|
* @throws {RequiredError}
|
8028
8128
|
*/
|
8029
|
-
listUserTransactions: (
|
8129
|
+
listUserTransactions: (nextToken?: string, userIDs?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
8030
8130
|
};
|
8031
8131
|
/**
|
8032
8132
|
* TransactionApi - functional programming interface
|
@@ -8036,22 +8136,22 @@ export declare const TransactionApiFp: (configuration?: Configuration) => {
|
|
8036
8136
|
/**
|
8037
8137
|
* List existing transactions
|
8038
8138
|
* @summary List existing transactions
|
8039
|
-
* @param {string} [
|
8139
|
+
* @param {string} [nextToken] This is the pagination token
|
8040
8140
|
* @param {Array<string>} [clientIDs] This is the client IDs to filter by
|
8041
8141
|
* @param {Array<string>} [userIDs] This is the user ID
|
8042
8142
|
* @param {*} [options] Override http request option.
|
8043
8143
|
* @throws {RequiredError}
|
8044
8144
|
*/
|
8045
|
-
listTransactions(
|
8145
|
+
listTransactions(nextToken?: string, clientIDs?: Array<string>, userIDs?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TransactionsResponse>>;
|
8046
8146
|
/**
|
8047
8147
|
* List existing transactions
|
8048
8148
|
* @summary List existing transactions for users
|
8049
|
-
* @param {string} [
|
8149
|
+
* @param {string} [nextToken] This is the pagination token
|
8050
8150
|
* @param {Array<string>} [userIDs] This is the user ID
|
8051
8151
|
* @param {*} [options] Override http request option.
|
8052
8152
|
* @throws {RequiredError}
|
8053
8153
|
*/
|
8054
|
-
listUserTransactions(
|
8154
|
+
listUserTransactions(nextToken?: string, userIDs?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TransactionsResponse>>;
|
8055
8155
|
};
|
8056
8156
|
/**
|
8057
8157
|
* TransactionApi - factory interface
|
@@ -8061,22 +8161,22 @@ export declare const TransactionApiFactory: (configuration?: Configuration, base
|
|
8061
8161
|
/**
|
8062
8162
|
* List existing transactions
|
8063
8163
|
* @summary List existing transactions
|
8064
|
-
* @param {string} [
|
8164
|
+
* @param {string} [nextToken] This is the pagination token
|
8065
8165
|
* @param {Array<string>} [clientIDs] This is the client IDs to filter by
|
8066
8166
|
* @param {Array<string>} [userIDs] This is the user ID
|
8067
8167
|
* @param {*} [options] Override http request option.
|
8068
8168
|
* @throws {RequiredError}
|
8069
8169
|
*/
|
8070
|
-
listTransactions(
|
8170
|
+
listTransactions(nextToken?: string, clientIDs?: Array<string>, userIDs?: Array<string>, options?: any): AxiosPromise<TransactionsResponse>;
|
8071
8171
|
/**
|
8072
8172
|
* List existing transactions
|
8073
8173
|
* @summary List existing transactions for users
|
8074
|
-
* @param {string} [
|
8174
|
+
* @param {string} [nextToken] This is the pagination token
|
8075
8175
|
* @param {Array<string>} [userIDs] This is the user ID
|
8076
8176
|
* @param {*} [options] Override http request option.
|
8077
8177
|
* @throws {RequiredError}
|
8078
8178
|
*/
|
8079
|
-
listUserTransactions(
|
8179
|
+
listUserTransactions(nextToken?: string, userIDs?: Array<string>, options?: any): AxiosPromise<TransactionsResponse>;
|
8080
8180
|
};
|
8081
8181
|
/**
|
8082
8182
|
* TransactionApi - object-oriented interface
|
@@ -8088,24 +8188,24 @@ export declare class TransactionApi extends BaseAPI {
|
|
8088
8188
|
/**
|
8089
8189
|
* List existing transactions
|
8090
8190
|
* @summary List existing transactions
|
8091
|
-
* @param {string} [
|
8191
|
+
* @param {string} [nextToken] This is the pagination token
|
8092
8192
|
* @param {Array<string>} [clientIDs] This is the client IDs to filter by
|
8093
8193
|
* @param {Array<string>} [userIDs] This is the user ID
|
8094
8194
|
* @param {*} [options] Override http request option.
|
8095
8195
|
* @throws {RequiredError}
|
8096
8196
|
* @memberof TransactionApi
|
8097
8197
|
*/
|
8098
|
-
listTransactions(
|
8198
|
+
listTransactions(nextToken?: string, clientIDs?: Array<string>, userIDs?: Array<string>, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<TransactionsResponse, any>>;
|
8099
8199
|
/**
|
8100
8200
|
* List existing transactions
|
8101
8201
|
* @summary List existing transactions for users
|
8102
|
-
* @param {string} [
|
8202
|
+
* @param {string} [nextToken] This is the pagination token
|
8103
8203
|
* @param {Array<string>} [userIDs] This is the user ID
|
8104
8204
|
* @param {*} [options] Override http request option.
|
8105
8205
|
* @throws {RequiredError}
|
8106
8206
|
* @memberof TransactionApi
|
8107
8207
|
*/
|
8108
|
-
listUserTransactions(
|
8208
|
+
listUserTransactions(nextToken?: string, userIDs?: Array<string>, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<TransactionsResponse, any>>;
|
8109
8209
|
}
|
8110
8210
|
/**
|
8111
8211
|
* UserApi - axios parameter creator
|