flexinet-api 0.0.429-prerelease0 → 0.0.430-prerelease0
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 +126 -95
- package/dist/api.d.ts +89 -64
- package/dist/api.js +105 -95
- package/dist/esm/api.d.ts +89 -64
- package/dist/esm/api.js +105 -95
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -159,6 +159,19 @@ export interface BalanceUpdateRequest {
|
|
|
159
159
|
*/
|
|
160
160
|
'beneficiaryKind': BeneficiaryKind;
|
|
161
161
|
}
|
|
162
|
+
/**
|
|
163
|
+
*
|
|
164
|
+
* @export
|
|
165
|
+
* @interface BalancesResponse
|
|
166
|
+
*/
|
|
167
|
+
export interface BalancesResponse {
|
|
168
|
+
/**
|
|
169
|
+
*
|
|
170
|
+
* @type {Array<Balance>}
|
|
171
|
+
* @memberof BalancesResponse
|
|
172
|
+
*/
|
|
173
|
+
'balances': Array<Balance>;
|
|
174
|
+
}
|
|
162
175
|
/**
|
|
163
176
|
*
|
|
164
177
|
* @export
|
|
@@ -2548,6 +2561,14 @@ export interface TransactionEventDetails {
|
|
|
2548
2561
|
* @memberof TransactionEventDetails
|
|
2549
2562
|
*/
|
|
2550
2563
|
'originalTimestamp'?: string;
|
|
2564
|
+
/**
|
|
2565
|
+
*
|
|
2566
|
+
* @type {{ [key: string]: string; }}
|
|
2567
|
+
* @memberof TransactionEventDetails
|
|
2568
|
+
*/
|
|
2569
|
+
'metadata'?: {
|
|
2570
|
+
[key: string]: string;
|
|
2571
|
+
};
|
|
2551
2572
|
}
|
|
2552
2573
|
/**
|
|
2553
2574
|
*
|
|
@@ -3114,12 +3135,12 @@ export declare const BalanceApiAxiosParamCreator: (configuration?: Configuration
|
|
|
3114
3135
|
/**
|
|
3115
3136
|
* Get balance
|
|
3116
3137
|
* @summary Get balance
|
|
3117
|
-
* @param {string}
|
|
3138
|
+
* @param {Array<string>} beneficiaryValues Beneficiary values to filter by
|
|
3118
3139
|
* @param {BeneficiaryKind} kind This is the beneficiary kind
|
|
3119
3140
|
* @param {*} [options] Override http request option.
|
|
3120
3141
|
* @throws {RequiredError}
|
|
3121
3142
|
*/
|
|
3122
|
-
getBalance: (
|
|
3143
|
+
getBalance: (beneficiaryValues: Array<string>, kind: BeneficiaryKind, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3123
3144
|
/**
|
|
3124
3145
|
* Get balance for the user
|
|
3125
3146
|
* @summary Get balance
|
|
@@ -3154,12 +3175,12 @@ export declare const BalanceApiFp: (configuration?: Configuration) => {
|
|
|
3154
3175
|
/**
|
|
3155
3176
|
* Get balance
|
|
3156
3177
|
* @summary Get balance
|
|
3157
|
-
* @param {string}
|
|
3178
|
+
* @param {Array<string>} beneficiaryValues Beneficiary values to filter by
|
|
3158
3179
|
* @param {BeneficiaryKind} kind This is the beneficiary kind
|
|
3159
3180
|
* @param {*} [options] Override http request option.
|
|
3160
3181
|
* @throws {RequiredError}
|
|
3161
3182
|
*/
|
|
3162
|
-
getBalance(
|
|
3183
|
+
getBalance(beneficiaryValues: Array<string>, kind: BeneficiaryKind, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BalancesResponse>>;
|
|
3163
3184
|
/**
|
|
3164
3185
|
* Get balance for the user
|
|
3165
3186
|
* @summary Get balance
|
|
@@ -3194,12 +3215,12 @@ export declare const BalanceApiFactory: (configuration?: Configuration, basePath
|
|
|
3194
3215
|
/**
|
|
3195
3216
|
* Get balance
|
|
3196
3217
|
* @summary Get balance
|
|
3197
|
-
* @param {string}
|
|
3218
|
+
* @param {Array<string>} beneficiaryValues Beneficiary values to filter by
|
|
3198
3219
|
* @param {BeneficiaryKind} kind This is the beneficiary kind
|
|
3199
3220
|
* @param {*} [options] Override http request option.
|
|
3200
3221
|
* @throws {RequiredError}
|
|
3201
3222
|
*/
|
|
3202
|
-
getBalance(
|
|
3223
|
+
getBalance(beneficiaryValues: Array<string>, kind: BeneficiaryKind, options?: any): AxiosPromise<BalancesResponse>;
|
|
3203
3224
|
/**
|
|
3204
3225
|
* Get balance for the user
|
|
3205
3226
|
* @summary Get balance
|
|
@@ -3236,13 +3257,13 @@ export declare class BalanceApi extends BaseAPI {
|
|
|
3236
3257
|
/**
|
|
3237
3258
|
* Get balance
|
|
3238
3259
|
* @summary Get balance
|
|
3239
|
-
* @param {string}
|
|
3260
|
+
* @param {Array<string>} beneficiaryValues Beneficiary values to filter by
|
|
3240
3261
|
* @param {BeneficiaryKind} kind This is the beneficiary kind
|
|
3241
3262
|
* @param {*} [options] Override http request option.
|
|
3242
3263
|
* @throws {RequiredError}
|
|
3243
3264
|
* @memberof BalanceApi
|
|
3244
3265
|
*/
|
|
3245
|
-
getBalance(
|
|
3266
|
+
getBalance(beneficiaryValues: Array<string>, kind: BeneficiaryKind, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BalancesResponse, any>>;
|
|
3246
3267
|
/**
|
|
3247
3268
|
* Get balance for the user
|
|
3248
3269
|
* @summary Get balance
|
|
@@ -4042,26 +4063,26 @@ export declare const OrderApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
4042
4063
|
* @param {string} [paginationToken] This is the pagination token
|
|
4043
4064
|
* @param {string} [search] Search for product or order
|
|
4044
4065
|
* @param {string} [productId] Filter by token
|
|
4045
|
-
* @param {string} [
|
|
4066
|
+
* @param {Array<string>} [balanceIDs] Filter by balance ids
|
|
4046
4067
|
* @param {string} [createdAfter] Filter orders created after the specified date
|
|
4047
4068
|
* @param {string} [createdBefore] Filter orders created before the specified date
|
|
4048
4069
|
* @param {*} [options] Override http request option.
|
|
4049
4070
|
* @throws {RequiredError}
|
|
4050
4071
|
*/
|
|
4051
|
-
listOrders: (paginationToken?: string, search?: string, productId?: string,
|
|
4072
|
+
listOrders: (paginationToken?: string, search?: string, productId?: string, balanceIDs?: Array<string>, createdAfter?: string, createdBefore?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4052
4073
|
/**
|
|
4053
4074
|
* List existing orders
|
|
4054
4075
|
* @summary List existing orders
|
|
4055
4076
|
* @param {string} [paginationToken] This is the pagination token
|
|
4056
4077
|
* @param {string} [search] Search for product or order
|
|
4057
|
-
* @param {string} [
|
|
4058
|
-
* @param {string} [
|
|
4078
|
+
* @param {string} [productID] Filter by token
|
|
4079
|
+
* @param {Array<string>} [balanceIDs] Filter by balance ids
|
|
4059
4080
|
* @param {string} [createdAfter] Filter orders created after the specified date
|
|
4060
4081
|
* @param {string} [createdBefore] Filter orders created before the specified date
|
|
4061
4082
|
* @param {*} [options] Override http request option.
|
|
4062
4083
|
* @throws {RequiredError}
|
|
4063
4084
|
*/
|
|
4064
|
-
listOrdersUser: (paginationToken?: string, search?: string,
|
|
4085
|
+
listOrdersUser: (paginationToken?: string, search?: string, productID?: string, balanceIDs?: Array<string>, createdAfter?: string, createdBefore?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4065
4086
|
};
|
|
4066
4087
|
/**
|
|
4067
4088
|
* OrderApi - functional programming interface
|
|
@@ -4090,26 +4111,26 @@ export declare const OrderApiFp: (configuration?: Configuration) => {
|
|
|
4090
4111
|
* @param {string} [paginationToken] This is the pagination token
|
|
4091
4112
|
* @param {string} [search] Search for product or order
|
|
4092
4113
|
* @param {string} [productId] Filter by token
|
|
4093
|
-
* @param {string} [
|
|
4114
|
+
* @param {Array<string>} [balanceIDs] Filter by balance ids
|
|
4094
4115
|
* @param {string} [createdAfter] Filter orders created after the specified date
|
|
4095
4116
|
* @param {string} [createdBefore] Filter orders created before the specified date
|
|
4096
4117
|
* @param {*} [options] Override http request option.
|
|
4097
4118
|
* @throws {RequiredError}
|
|
4098
4119
|
*/
|
|
4099
|
-
listOrders(paginationToken?: string, search?: string, productId?: string,
|
|
4120
|
+
listOrders(paginationToken?: string, search?: string, productId?: string, balanceIDs?: Array<string>, createdAfter?: string, createdBefore?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OrderListResponse>>;
|
|
4100
4121
|
/**
|
|
4101
4122
|
* List existing orders
|
|
4102
4123
|
* @summary List existing orders
|
|
4103
4124
|
* @param {string} [paginationToken] This is the pagination token
|
|
4104
4125
|
* @param {string} [search] Search for product or order
|
|
4105
|
-
* @param {string} [
|
|
4106
|
-
* @param {string} [
|
|
4126
|
+
* @param {string} [productID] Filter by token
|
|
4127
|
+
* @param {Array<string>} [balanceIDs] Filter by balance ids
|
|
4107
4128
|
* @param {string} [createdAfter] Filter orders created after the specified date
|
|
4108
4129
|
* @param {string} [createdBefore] Filter orders created before the specified date
|
|
4109
4130
|
* @param {*} [options] Override http request option.
|
|
4110
4131
|
* @throws {RequiredError}
|
|
4111
4132
|
*/
|
|
4112
|
-
listOrdersUser(paginationToken?: string, search?: string,
|
|
4133
|
+
listOrdersUser(paginationToken?: string, search?: string, productID?: string, balanceIDs?: Array<string>, createdAfter?: string, createdBefore?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OrderListResponse>>;
|
|
4113
4134
|
};
|
|
4114
4135
|
/**
|
|
4115
4136
|
* OrderApi - factory interface
|
|
@@ -4138,26 +4159,26 @@ export declare const OrderApiFactory: (configuration?: Configuration, basePath?:
|
|
|
4138
4159
|
* @param {string} [paginationToken] This is the pagination token
|
|
4139
4160
|
* @param {string} [search] Search for product or order
|
|
4140
4161
|
* @param {string} [productId] Filter by token
|
|
4141
|
-
* @param {string} [
|
|
4162
|
+
* @param {Array<string>} [balanceIDs] Filter by balance ids
|
|
4142
4163
|
* @param {string} [createdAfter] Filter orders created after the specified date
|
|
4143
4164
|
* @param {string} [createdBefore] Filter orders created before the specified date
|
|
4144
4165
|
* @param {*} [options] Override http request option.
|
|
4145
4166
|
* @throws {RequiredError}
|
|
4146
4167
|
*/
|
|
4147
|
-
listOrders(paginationToken?: string, search?: string, productId?: string,
|
|
4168
|
+
listOrders(paginationToken?: string, search?: string, productId?: string, balanceIDs?: Array<string>, createdAfter?: string, createdBefore?: string, options?: any): AxiosPromise<OrderListResponse>;
|
|
4148
4169
|
/**
|
|
4149
4170
|
* List existing orders
|
|
4150
4171
|
* @summary List existing orders
|
|
4151
4172
|
* @param {string} [paginationToken] This is the pagination token
|
|
4152
4173
|
* @param {string} [search] Search for product or order
|
|
4153
|
-
* @param {string} [
|
|
4154
|
-
* @param {string} [
|
|
4174
|
+
* @param {string} [productID] Filter by token
|
|
4175
|
+
* @param {Array<string>} [balanceIDs] Filter by balance ids
|
|
4155
4176
|
* @param {string} [createdAfter] Filter orders created after the specified date
|
|
4156
4177
|
* @param {string} [createdBefore] Filter orders created before the specified date
|
|
4157
4178
|
* @param {*} [options] Override http request option.
|
|
4158
4179
|
* @throws {RequiredError}
|
|
4159
4180
|
*/
|
|
4160
|
-
listOrdersUser(paginationToken?: string, search?: string,
|
|
4181
|
+
listOrdersUser(paginationToken?: string, search?: string, productID?: string, balanceIDs?: Array<string>, createdAfter?: string, createdBefore?: string, options?: any): AxiosPromise<OrderListResponse>;
|
|
4161
4182
|
};
|
|
4162
4183
|
/**
|
|
4163
4184
|
* OrderApi - object-oriented interface
|
|
@@ -4190,28 +4211,28 @@ export declare class OrderApi extends BaseAPI {
|
|
|
4190
4211
|
* @param {string} [paginationToken] This is the pagination token
|
|
4191
4212
|
* @param {string} [search] Search for product or order
|
|
4192
4213
|
* @param {string} [productId] Filter by token
|
|
4193
|
-
* @param {string} [
|
|
4214
|
+
* @param {Array<string>} [balanceIDs] Filter by balance ids
|
|
4194
4215
|
* @param {string} [createdAfter] Filter orders created after the specified date
|
|
4195
4216
|
* @param {string} [createdBefore] Filter orders created before the specified date
|
|
4196
4217
|
* @param {*} [options] Override http request option.
|
|
4197
4218
|
* @throws {RequiredError}
|
|
4198
4219
|
* @memberof OrderApi
|
|
4199
4220
|
*/
|
|
4200
|
-
listOrders(paginationToken?: string, search?: string, productId?: string,
|
|
4221
|
+
listOrders(paginationToken?: string, search?: string, productId?: string, balanceIDs?: Array<string>, createdAfter?: string, createdBefore?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderListResponse, any>>;
|
|
4201
4222
|
/**
|
|
4202
4223
|
* List existing orders
|
|
4203
4224
|
* @summary List existing orders
|
|
4204
4225
|
* @param {string} [paginationToken] This is the pagination token
|
|
4205
4226
|
* @param {string} [search] Search for product or order
|
|
4206
|
-
* @param {string} [
|
|
4207
|
-
* @param {string} [
|
|
4227
|
+
* @param {string} [productID] Filter by token
|
|
4228
|
+
* @param {Array<string>} [balanceIDs] Filter by balance ids
|
|
4208
4229
|
* @param {string} [createdAfter] Filter orders created after the specified date
|
|
4209
4230
|
* @param {string} [createdBefore] Filter orders created before the specified date
|
|
4210
4231
|
* @param {*} [options] Override http request option.
|
|
4211
4232
|
* @throws {RequiredError}
|
|
4212
4233
|
* @memberof OrderApi
|
|
4213
4234
|
*/
|
|
4214
|
-
listOrdersUser(paginationToken?: string, search?: string,
|
|
4235
|
+
listOrdersUser(paginationToken?: string, search?: string, productID?: string, balanceIDs?: Array<string>, createdAfter?: string, createdBefore?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderListResponse, any>>;
|
|
4215
4236
|
}
|
|
4216
4237
|
/**
|
|
4217
4238
|
* ProductApi - axios parameter creator
|
|
@@ -4699,10 +4720,10 @@ export declare const ProgressApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
4699
4720
|
/**
|
|
4700
4721
|
* List progress
|
|
4701
4722
|
* @summary List progress
|
|
4702
|
-
* @param {Array<string>} promotionIDs Promotion
|
|
4723
|
+
* @param {Array<string>} promotionIDs Promotion IDs to filter by
|
|
4703
4724
|
* @param {number} [periodID] Period ID
|
|
4704
|
-
* @param {Array<string>} [userIDs] User
|
|
4705
|
-
* @param {Array<string>} [clientIDs] Client
|
|
4725
|
+
* @param {Array<string>} [userIDs] User IDs to filter by
|
|
4726
|
+
* @param {Array<string>} [clientIDs] Client IDs to filter by
|
|
4706
4727
|
* @param {ListProgressIntervalEnum} [interval] Interval
|
|
4707
4728
|
* @param {string} [nextToken] This is the pagination token
|
|
4708
4729
|
* @param {*} [options] Override http request option.
|
|
@@ -4728,10 +4749,10 @@ export declare const ProgressApiFp: (configuration?: Configuration) => {
|
|
|
4728
4749
|
/**
|
|
4729
4750
|
* List progress
|
|
4730
4751
|
* @summary List progress
|
|
4731
|
-
* @param {Array<string>} promotionIDs Promotion
|
|
4752
|
+
* @param {Array<string>} promotionIDs Promotion IDs to filter by
|
|
4732
4753
|
* @param {number} [periodID] Period ID
|
|
4733
|
-
* @param {Array<string>} [userIDs] User
|
|
4734
|
-
* @param {Array<string>} [clientIDs] Client
|
|
4754
|
+
* @param {Array<string>} [userIDs] User IDs to filter by
|
|
4755
|
+
* @param {Array<string>} [clientIDs] Client IDs to filter by
|
|
4735
4756
|
* @param {ListProgressIntervalEnum} [interval] Interval
|
|
4736
4757
|
* @param {string} [nextToken] This is the pagination token
|
|
4737
4758
|
* @param {*} [options] Override http request option.
|
|
@@ -4757,10 +4778,10 @@ export declare const ProgressApiFactory: (configuration?: Configuration, basePat
|
|
|
4757
4778
|
/**
|
|
4758
4779
|
* List progress
|
|
4759
4780
|
* @summary List progress
|
|
4760
|
-
* @param {Array<string>} promotionIDs Promotion
|
|
4781
|
+
* @param {Array<string>} promotionIDs Promotion IDs to filter by
|
|
4761
4782
|
* @param {number} [periodID] Period ID
|
|
4762
|
-
* @param {Array<string>} [userIDs] User
|
|
4763
|
-
* @param {Array<string>} [clientIDs] Client
|
|
4783
|
+
* @param {Array<string>} [userIDs] User IDs to filter by
|
|
4784
|
+
* @param {Array<string>} [clientIDs] Client IDs to filter by
|
|
4764
4785
|
* @param {ListProgressIntervalEnum} [interval] Interval
|
|
4765
4786
|
* @param {string} [nextToken] This is the pagination token
|
|
4766
4787
|
* @param {*} [options] Override http request option.
|
|
@@ -4788,10 +4809,10 @@ export declare class ProgressApi extends BaseAPI {
|
|
|
4788
4809
|
/**
|
|
4789
4810
|
* List progress
|
|
4790
4811
|
* @summary List progress
|
|
4791
|
-
* @param {Array<string>} promotionIDs Promotion
|
|
4812
|
+
* @param {Array<string>} promotionIDs Promotion IDs to filter by
|
|
4792
4813
|
* @param {number} [periodID] Period ID
|
|
4793
|
-
* @param {Array<string>} [userIDs] User
|
|
4794
|
-
* @param {Array<string>} [clientIDs] Client
|
|
4814
|
+
* @param {Array<string>} [userIDs] User IDs to filter by
|
|
4815
|
+
* @param {Array<string>} [clientIDs] Client IDs to filter by
|
|
4795
4816
|
* @param {ListProgressIntervalEnum} [interval] Interval
|
|
4796
4817
|
* @param {string} [nextToken] This is the pagination token
|
|
4797
4818
|
* @param {*} [options] Override http request option.
|
|
@@ -4912,7 +4933,7 @@ export declare const PromotionApiAxiosParamCreator: (configuration?: Configurati
|
|
|
4912
4933
|
* @param {string} [endingBefore] end time before time
|
|
4913
4934
|
* @param {string} [startingBefore] start time before time
|
|
4914
4935
|
* @param {string} [endingAfter] end time after time
|
|
4915
|
-
* @param {Array<string>} [clientIDs] client
|
|
4936
|
+
* @param {Array<string>} [clientIDs] client IDs to filter by
|
|
4916
4937
|
* @param {string} [search] search by name or description
|
|
4917
4938
|
* @param {PromotionSortByField} [sortBy] sort by field
|
|
4918
4939
|
* @param {SortDirection} [sortDirection] sort direction
|
|
@@ -5037,7 +5058,7 @@ export declare const PromotionApiFp: (configuration?: Configuration) => {
|
|
|
5037
5058
|
* @param {string} [endingBefore] end time before time
|
|
5038
5059
|
* @param {string} [startingBefore] start time before time
|
|
5039
5060
|
* @param {string} [endingAfter] end time after time
|
|
5040
|
-
* @param {Array<string>} [clientIDs] client
|
|
5061
|
+
* @param {Array<string>} [clientIDs] client IDs to filter by
|
|
5041
5062
|
* @param {string} [search] search by name or description
|
|
5042
5063
|
* @param {PromotionSortByField} [sortBy] sort by field
|
|
5043
5064
|
* @param {SortDirection} [sortDirection] sort direction
|
|
@@ -5162,7 +5183,7 @@ export declare const PromotionApiFactory: (configuration?: Configuration, basePa
|
|
|
5162
5183
|
* @param {string} [endingBefore] end time before time
|
|
5163
5184
|
* @param {string} [startingBefore] start time before time
|
|
5164
5185
|
* @param {string} [endingAfter] end time after time
|
|
5165
|
-
* @param {Array<string>} [clientIDs] client
|
|
5186
|
+
* @param {Array<string>} [clientIDs] client IDs to filter by
|
|
5166
5187
|
* @param {string} [search] search by name or description
|
|
5167
5188
|
* @param {PromotionSortByField} [sortBy] sort by field
|
|
5168
5189
|
* @param {SortDirection} [sortDirection] sort direction
|
|
@@ -5298,7 +5319,7 @@ export declare class PromotionApi extends BaseAPI {
|
|
|
5298
5319
|
* @param {string} [endingBefore] end time before time
|
|
5299
5320
|
* @param {string} [startingBefore] start time before time
|
|
5300
5321
|
* @param {string} [endingAfter] end time after time
|
|
5301
|
-
* @param {Array<string>} [clientIDs] client
|
|
5322
|
+
* @param {Array<string>} [clientIDs] client IDs to filter by
|
|
5302
5323
|
* @param {string} [search] search by name or description
|
|
5303
5324
|
* @param {PromotionSortByField} [sortBy] sort by field
|
|
5304
5325
|
* @param {SortDirection} [sortDirection] sort direction
|
|
@@ -5668,11 +5689,12 @@ export declare const TransactionApiAxiosParamCreator: (configuration?: Configura
|
|
|
5668
5689
|
* List existing transactions
|
|
5669
5690
|
* @summary List existing transactions
|
|
5670
5691
|
* @param {string} [paginationToken] This is the pagination token
|
|
5671
|
-
* @param {string} [
|
|
5692
|
+
* @param {Array<string>} [clientIDs] This is the client IDs to filter by
|
|
5693
|
+
* @param {Array<string>} [userIDs] This is the user ID
|
|
5672
5694
|
* @param {*} [options] Override http request option.
|
|
5673
5695
|
* @throws {RequiredError}
|
|
5674
5696
|
*/
|
|
5675
|
-
listTransactions: (paginationToken?: string,
|
|
5697
|
+
listTransactions: (paginationToken?: string, clientIDs?: Array<string>, userIDs?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5676
5698
|
};
|
|
5677
5699
|
/**
|
|
5678
5700
|
* TransactionApi - functional programming interface
|
|
@@ -5683,11 +5705,12 @@ export declare const TransactionApiFp: (configuration?: Configuration) => {
|
|
|
5683
5705
|
* List existing transactions
|
|
5684
5706
|
* @summary List existing transactions
|
|
5685
5707
|
* @param {string} [paginationToken] This is the pagination token
|
|
5686
|
-
* @param {string} [
|
|
5708
|
+
* @param {Array<string>} [clientIDs] This is the client IDs to filter by
|
|
5709
|
+
* @param {Array<string>} [userIDs] This is the user ID
|
|
5687
5710
|
* @param {*} [options] Override http request option.
|
|
5688
5711
|
* @throws {RequiredError}
|
|
5689
5712
|
*/
|
|
5690
|
-
listTransactions(paginationToken?: string,
|
|
5713
|
+
listTransactions(paginationToken?: string, clientIDs?: Array<string>, userIDs?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TransactionsResponse>>;
|
|
5691
5714
|
};
|
|
5692
5715
|
/**
|
|
5693
5716
|
* TransactionApi - factory interface
|
|
@@ -5698,11 +5721,12 @@ export declare const TransactionApiFactory: (configuration?: Configuration, base
|
|
|
5698
5721
|
* List existing transactions
|
|
5699
5722
|
* @summary List existing transactions
|
|
5700
5723
|
* @param {string} [paginationToken] This is the pagination token
|
|
5701
|
-
* @param {string} [
|
|
5724
|
+
* @param {Array<string>} [clientIDs] This is the client IDs to filter by
|
|
5725
|
+
* @param {Array<string>} [userIDs] This is the user ID
|
|
5702
5726
|
* @param {*} [options] Override http request option.
|
|
5703
5727
|
* @throws {RequiredError}
|
|
5704
5728
|
*/
|
|
5705
|
-
listTransactions(paginationToken?: string,
|
|
5729
|
+
listTransactions(paginationToken?: string, clientIDs?: Array<string>, userIDs?: Array<string>, options?: any): AxiosPromise<TransactionsResponse>;
|
|
5706
5730
|
};
|
|
5707
5731
|
/**
|
|
5708
5732
|
* TransactionApi - object-oriented interface
|
|
@@ -5715,12 +5739,13 @@ export declare class TransactionApi extends BaseAPI {
|
|
|
5715
5739
|
* List existing transactions
|
|
5716
5740
|
* @summary List existing transactions
|
|
5717
5741
|
* @param {string} [paginationToken] This is the pagination token
|
|
5718
|
-
* @param {string} [
|
|
5742
|
+
* @param {Array<string>} [clientIDs] This is the client IDs to filter by
|
|
5743
|
+
* @param {Array<string>} [userIDs] This is the user ID
|
|
5719
5744
|
* @param {*} [options] Override http request option.
|
|
5720
5745
|
* @throws {RequiredError}
|
|
5721
5746
|
* @memberof TransactionApi
|
|
5722
5747
|
*/
|
|
5723
|
-
listTransactions(paginationToken?: string,
|
|
5748
|
+
listTransactions(paginationToken?: string, clientIDs?: Array<string>, userIDs?: Array<string>, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<TransactionsResponse, any>>;
|
|
5724
5749
|
}
|
|
5725
5750
|
/**
|
|
5726
5751
|
* UserApi - axios parameter creator
|
|
@@ -5749,13 +5774,13 @@ export declare const UserApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
5749
5774
|
* @param {string} [nextToken] This is the pagination token
|
|
5750
5775
|
* @param {UserRole} [role] role to filter by
|
|
5751
5776
|
* @param {string} [search] search string
|
|
5752
|
-
* @param {string} [
|
|
5753
|
-
* @param {string} [
|
|
5777
|
+
* @param {Array<string>} [clientIDs] client IDs to filter by
|
|
5778
|
+
* @param {Array<string>} [userIDs] user ids to filter by
|
|
5754
5779
|
* @param {UserSource} [source] source to filter by
|
|
5755
5780
|
* @param {*} [options] Override http request option.
|
|
5756
5781
|
* @throws {RequiredError}
|
|
5757
5782
|
*/
|
|
5758
|
-
listUsers: (nextToken?: string, role?: UserRole, search?: string,
|
|
5783
|
+
listUsers: (nextToken?: string, role?: UserRole, search?: string, clientIDs?: Array<string>, userIDs?: Array<string>, source?: UserSource, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5759
5784
|
};
|
|
5760
5785
|
/**
|
|
5761
5786
|
* UserApi - functional programming interface
|
|
@@ -5784,13 +5809,13 @@ export declare const UserApiFp: (configuration?: Configuration) => {
|
|
|
5784
5809
|
* @param {string} [nextToken] This is the pagination token
|
|
5785
5810
|
* @param {UserRole} [role] role to filter by
|
|
5786
5811
|
* @param {string} [search] search string
|
|
5787
|
-
* @param {string} [
|
|
5788
|
-
* @param {string} [
|
|
5812
|
+
* @param {Array<string>} [clientIDs] client IDs to filter by
|
|
5813
|
+
* @param {Array<string>} [userIDs] user ids to filter by
|
|
5789
5814
|
* @param {UserSource} [source] source to filter by
|
|
5790
5815
|
* @param {*} [options] Override http request option.
|
|
5791
5816
|
* @throws {RequiredError}
|
|
5792
5817
|
*/
|
|
5793
|
-
listUsers(nextToken?: string, role?: UserRole, search?: string,
|
|
5818
|
+
listUsers(nextToken?: string, role?: UserRole, search?: string, clientIDs?: Array<string>, userIDs?: Array<string>, source?: UserSource, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserListResponse>>;
|
|
5794
5819
|
};
|
|
5795
5820
|
/**
|
|
5796
5821
|
* UserApi - factory interface
|
|
@@ -5819,13 +5844,13 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
|
|
|
5819
5844
|
* @param {string} [nextToken] This is the pagination token
|
|
5820
5845
|
* @param {UserRole} [role] role to filter by
|
|
5821
5846
|
* @param {string} [search] search string
|
|
5822
|
-
* @param {string} [
|
|
5823
|
-
* @param {string} [
|
|
5847
|
+
* @param {Array<string>} [clientIDs] client IDs to filter by
|
|
5848
|
+
* @param {Array<string>} [userIDs] user ids to filter by
|
|
5824
5849
|
* @param {UserSource} [source] source to filter by
|
|
5825
5850
|
* @param {*} [options] Override http request option.
|
|
5826
5851
|
* @throws {RequiredError}
|
|
5827
5852
|
*/
|
|
5828
|
-
listUsers(nextToken?: string, role?: UserRole, search?: string,
|
|
5853
|
+
listUsers(nextToken?: string, role?: UserRole, search?: string, clientIDs?: Array<string>, userIDs?: Array<string>, source?: UserSource, options?: any): AxiosPromise<UserListResponse>;
|
|
5829
5854
|
};
|
|
5830
5855
|
/**
|
|
5831
5856
|
* UserApi - object-oriented interface
|
|
@@ -5858,12 +5883,12 @@ export declare class UserApi extends BaseAPI {
|
|
|
5858
5883
|
* @param {string} [nextToken] This is the pagination token
|
|
5859
5884
|
* @param {UserRole} [role] role to filter by
|
|
5860
5885
|
* @param {string} [search] search string
|
|
5861
|
-
* @param {string} [
|
|
5862
|
-
* @param {string} [
|
|
5886
|
+
* @param {Array<string>} [clientIDs] client IDs to filter by
|
|
5887
|
+
* @param {Array<string>} [userIDs] user ids to filter by
|
|
5863
5888
|
* @param {UserSource} [source] source to filter by
|
|
5864
5889
|
* @param {*} [options] Override http request option.
|
|
5865
5890
|
* @throws {RequiredError}
|
|
5866
5891
|
* @memberof UserApi
|
|
5867
5892
|
*/
|
|
5868
|
-
listUsers(nextToken?: string, role?: UserRole, search?: string,
|
|
5893
|
+
listUsers(nextToken?: string, role?: UserRole, search?: string, clientIDs?: Array<string>, userIDs?: Array<string>, source?: UserSource, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UserListResponse, any>>;
|
|
5869
5894
|
}
|