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.js
CHANGED
@@ -3423,7 +3423,7 @@ export const OrderApiAxiosParamCreator = function (configuration) {
|
|
3423
3423
|
/**
|
3424
3424
|
* List existing orders
|
3425
3425
|
* @summary List existing orders
|
3426
|
-
* @param {string} [
|
3426
|
+
* @param {string} [nextToken] This is the pagination token
|
3427
3427
|
* @param {string} [search] Search for product or order
|
3428
3428
|
* @param {string} [productId] Filter by token
|
3429
3429
|
* @param {Array<string>} [balanceIDs] Filter by balance ids
|
@@ -3436,7 +3436,7 @@ export const OrderApiAxiosParamCreator = function (configuration) {
|
|
3436
3436
|
* @param {*} [options] Override http request option.
|
3437
3437
|
* @throws {RequiredError}
|
3438
3438
|
*/
|
3439
|
-
listOrders: (
|
3439
|
+
listOrders: (nextToken, search, productId, balanceIDs, createdAfter, createdBefore, userIDs, clientIDs, kind, source, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
3440
3440
|
const localVarPath = `/admins/orders`;
|
3441
3441
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
3442
3442
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
@@ -3450,8 +3450,8 @@ export const OrderApiAxiosParamCreator = function (configuration) {
|
|
3450
3450
|
// authentication systemJWT required
|
3451
3451
|
// http bearer authentication required
|
3452
3452
|
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
3453
|
-
if (
|
3454
|
-
localVarQueryParameter['
|
3453
|
+
if (nextToken !== undefined) {
|
3454
|
+
localVarQueryParameter['nextToken'] = nextToken;
|
3455
3455
|
}
|
3456
3456
|
if (search !== undefined) {
|
3457
3457
|
localVarQueryParameter['search'] = search;
|
@@ -3495,7 +3495,7 @@ export const OrderApiAxiosParamCreator = function (configuration) {
|
|
3495
3495
|
/**
|
3496
3496
|
* List existing orders
|
3497
3497
|
* @summary List existing orders
|
3498
|
-
* @param {string} [
|
3498
|
+
* @param {string} [nextToken] This is the pagination token
|
3499
3499
|
* @param {string} [search] Search for product or order
|
3500
3500
|
* @param {string} [productID] Filter by token
|
3501
3501
|
* @param {Array<string>} [balanceIDs] Filter by balance ids
|
@@ -3505,7 +3505,7 @@ export const OrderApiAxiosParamCreator = function (configuration) {
|
|
3505
3505
|
* @param {*} [options] Override http request option.
|
3506
3506
|
* @throws {RequiredError}
|
3507
3507
|
*/
|
3508
|
-
listOrdersUser: (
|
3508
|
+
listOrdersUser: (nextToken, search, productID, balanceIDs, createdAfter, createdBefore, userIDs, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
3509
3509
|
const localVarPath = `/users/orders`;
|
3510
3510
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
3511
3511
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
@@ -3519,8 +3519,8 @@ export const OrderApiAxiosParamCreator = function (configuration) {
|
|
3519
3519
|
// authentication customerJWT required
|
3520
3520
|
// http bearer authentication required
|
3521
3521
|
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
3522
|
-
if (
|
3523
|
-
localVarQueryParameter['
|
3522
|
+
if (nextToken !== undefined) {
|
3523
|
+
localVarQueryParameter['nextToken'] = nextToken;
|
3524
3524
|
}
|
3525
3525
|
if (search !== undefined) {
|
3526
3526
|
localVarQueryParameter['search'] = search;
|
@@ -3616,7 +3616,7 @@ export const OrderApiFp = function (configuration) {
|
|
3616
3616
|
/**
|
3617
3617
|
* List existing orders
|
3618
3618
|
* @summary List existing orders
|
3619
|
-
* @param {string} [
|
3619
|
+
* @param {string} [nextToken] This is the pagination token
|
3620
3620
|
* @param {string} [search] Search for product or order
|
3621
3621
|
* @param {string} [productId] Filter by token
|
3622
3622
|
* @param {Array<string>} [balanceIDs] Filter by balance ids
|
@@ -3629,16 +3629,16 @@ export const OrderApiFp = function (configuration) {
|
|
3629
3629
|
* @param {*} [options] Override http request option.
|
3630
3630
|
* @throws {RequiredError}
|
3631
3631
|
*/
|
3632
|
-
listOrders(
|
3632
|
+
listOrders(nextToken, search, productId, balanceIDs, createdAfter, createdBefore, userIDs, clientIDs, kind, source, options) {
|
3633
3633
|
return __awaiter(this, void 0, void 0, function* () {
|
3634
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.listOrders(
|
3634
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.listOrders(nextToken, search, productId, balanceIDs, createdAfter, createdBefore, userIDs, clientIDs, kind, source, options);
|
3635
3635
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
3636
3636
|
});
|
3637
3637
|
},
|
3638
3638
|
/**
|
3639
3639
|
* List existing orders
|
3640
3640
|
* @summary List existing orders
|
3641
|
-
* @param {string} [
|
3641
|
+
* @param {string} [nextToken] This is the pagination token
|
3642
3642
|
* @param {string} [search] Search for product or order
|
3643
3643
|
* @param {string} [productID] Filter by token
|
3644
3644
|
* @param {Array<string>} [balanceIDs] Filter by balance ids
|
@@ -3648,9 +3648,9 @@ export const OrderApiFp = function (configuration) {
|
|
3648
3648
|
* @param {*} [options] Override http request option.
|
3649
3649
|
* @throws {RequiredError}
|
3650
3650
|
*/
|
3651
|
-
listOrdersUser(
|
3651
|
+
listOrdersUser(nextToken, search, productID, balanceIDs, createdAfter, createdBefore, userIDs, options) {
|
3652
3652
|
return __awaiter(this, void 0, void 0, function* () {
|
3653
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.listOrdersUser(
|
3653
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.listOrdersUser(nextToken, search, productID, balanceIDs, createdAfter, createdBefore, userIDs, options);
|
3654
3654
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
3655
3655
|
});
|
3656
3656
|
},
|
@@ -3706,7 +3706,7 @@ export const OrderApiFactory = function (configuration, basePath, axios) {
|
|
3706
3706
|
/**
|
3707
3707
|
* List existing orders
|
3708
3708
|
* @summary List existing orders
|
3709
|
-
* @param {string} [
|
3709
|
+
* @param {string} [nextToken] This is the pagination token
|
3710
3710
|
* @param {string} [search] Search for product or order
|
3711
3711
|
* @param {string} [productId] Filter by token
|
3712
3712
|
* @param {Array<string>} [balanceIDs] Filter by balance ids
|
@@ -3719,13 +3719,13 @@ export const OrderApiFactory = function (configuration, basePath, axios) {
|
|
3719
3719
|
* @param {*} [options] Override http request option.
|
3720
3720
|
* @throws {RequiredError}
|
3721
3721
|
*/
|
3722
|
-
listOrders(
|
3723
|
-
return localVarFp.listOrders(
|
3722
|
+
listOrders(nextToken, search, productId, balanceIDs, createdAfter, createdBefore, userIDs, clientIDs, kind, source, options) {
|
3723
|
+
return localVarFp.listOrders(nextToken, search, productId, balanceIDs, createdAfter, createdBefore, userIDs, clientIDs, kind, source, options).then((request) => request(axios, basePath));
|
3724
3724
|
},
|
3725
3725
|
/**
|
3726
3726
|
* List existing orders
|
3727
3727
|
* @summary List existing orders
|
3728
|
-
* @param {string} [
|
3728
|
+
* @param {string} [nextToken] This is the pagination token
|
3729
3729
|
* @param {string} [search] Search for product or order
|
3730
3730
|
* @param {string} [productID] Filter by token
|
3731
3731
|
* @param {Array<string>} [balanceIDs] Filter by balance ids
|
@@ -3735,8 +3735,8 @@ export const OrderApiFactory = function (configuration, basePath, axios) {
|
|
3735
3735
|
* @param {*} [options] Override http request option.
|
3736
3736
|
* @throws {RequiredError}
|
3737
3737
|
*/
|
3738
|
-
listOrdersUser(
|
3739
|
-
return localVarFp.listOrdersUser(
|
3738
|
+
listOrdersUser(nextToken, search, productID, balanceIDs, createdAfter, createdBefore, userIDs, options) {
|
3739
|
+
return localVarFp.listOrdersUser(nextToken, search, productID, balanceIDs, createdAfter, createdBefore, userIDs, options).then((request) => request(axios, basePath));
|
3740
3740
|
},
|
3741
3741
|
};
|
3742
3742
|
};
|
@@ -3794,7 +3794,7 @@ export class OrderApi extends BaseAPI {
|
|
3794
3794
|
/**
|
3795
3795
|
* List existing orders
|
3796
3796
|
* @summary List existing orders
|
3797
|
-
* @param {string} [
|
3797
|
+
* @param {string} [nextToken] This is the pagination token
|
3798
3798
|
* @param {string} [search] Search for product or order
|
3799
3799
|
* @param {string} [productId] Filter by token
|
3800
3800
|
* @param {Array<string>} [balanceIDs] Filter by balance ids
|
@@ -3808,13 +3808,13 @@ export class OrderApi extends BaseAPI {
|
|
3808
3808
|
* @throws {RequiredError}
|
3809
3809
|
* @memberof OrderApi
|
3810
3810
|
*/
|
3811
|
-
listOrders(
|
3812
|
-
return OrderApiFp(this.configuration).listOrders(
|
3811
|
+
listOrders(nextToken, search, productId, balanceIDs, createdAfter, createdBefore, userIDs, clientIDs, kind, source, options) {
|
3812
|
+
return OrderApiFp(this.configuration).listOrders(nextToken, search, productId, balanceIDs, createdAfter, createdBefore, userIDs, clientIDs, kind, source, options).then((request) => request(this.axios, this.basePath));
|
3813
3813
|
}
|
3814
3814
|
/**
|
3815
3815
|
* List existing orders
|
3816
3816
|
* @summary List existing orders
|
3817
|
-
* @param {string} [
|
3817
|
+
* @param {string} [nextToken] This is the pagination token
|
3818
3818
|
* @param {string} [search] Search for product or order
|
3819
3819
|
* @param {string} [productID] Filter by token
|
3820
3820
|
* @param {Array<string>} [balanceIDs] Filter by balance ids
|
@@ -3825,8 +3825,8 @@ export class OrderApi extends BaseAPI {
|
|
3825
3825
|
* @throws {RequiredError}
|
3826
3826
|
* @memberof OrderApi
|
3827
3827
|
*/
|
3828
|
-
listOrdersUser(
|
3829
|
-
return OrderApiFp(this.configuration).listOrdersUser(
|
3828
|
+
listOrdersUser(nextToken, search, productID, balanceIDs, createdAfter, createdBefore, userIDs, options) {
|
3829
|
+
return OrderApiFp(this.configuration).listOrdersUser(nextToken, search, productID, balanceIDs, createdAfter, createdBefore, userIDs, options).then((request) => request(this.axios, this.basePath));
|
3830
3830
|
}
|
3831
3831
|
}
|
3832
3832
|
/**
|
@@ -5365,10 +5365,11 @@ export const PromotionApiAxiosParamCreator = function (configuration) {
|
|
5365
5365
|
* @param {SortDirection} [sortDirection] sort direction
|
5366
5366
|
* @param {boolean} [onlyClaimable] only claimable promotions
|
5367
5367
|
* @param {Array<string>} [iDs] IDs to filter by
|
5368
|
+
* @param {string} [prevToken] This is the pagination token
|
5368
5369
|
* @param {*} [options] Override http request option.
|
5369
5370
|
* @throws {RequiredError}
|
5370
5371
|
*/
|
5371
|
-
listPromotions: (nextToken, tags, segmentId, ownerID, type, startingAfter, endingBefore, startingBefore, endingAfter, clientIDs, search, sortBy, sortDirection, onlyClaimable, iDs, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
5372
|
+
listPromotions: (nextToken, tags, segmentId, ownerID, type, startingAfter, endingBefore, startingBefore, endingAfter, clientIDs, search, sortBy, sortDirection, onlyClaimable, iDs, prevToken, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
5372
5373
|
const localVarPath = `/admins/promotions`;
|
5373
5374
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
5374
5375
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
@@ -5435,6 +5436,9 @@ export const PromotionApiAxiosParamCreator = function (configuration) {
|
|
5435
5436
|
if (iDs) {
|
5436
5437
|
localVarQueryParameter['IDs'] = iDs;
|
5437
5438
|
}
|
5439
|
+
if (prevToken !== undefined) {
|
5440
|
+
localVarQueryParameter['PrevToken'] = prevToken;
|
5441
|
+
}
|
5438
5442
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
5439
5443
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
5440
5444
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
@@ -5729,12 +5733,13 @@ export const PromotionApiFp = function (configuration) {
|
|
5729
5733
|
* @param {SortDirection} [sortDirection] sort direction
|
5730
5734
|
* @param {boolean} [onlyClaimable] only claimable promotions
|
5731
5735
|
* @param {Array<string>} [iDs] IDs to filter by
|
5736
|
+
* @param {string} [prevToken] This is the pagination token
|
5732
5737
|
* @param {*} [options] Override http request option.
|
5733
5738
|
* @throws {RequiredError}
|
5734
5739
|
*/
|
5735
|
-
listPromotions(nextToken, tags, segmentId, ownerID, type, startingAfter, endingBefore, startingBefore, endingAfter, clientIDs, search, sortBy, sortDirection, onlyClaimable, iDs, options) {
|
5740
|
+
listPromotions(nextToken, tags, segmentId, ownerID, type, startingAfter, endingBefore, startingBefore, endingAfter, clientIDs, search, sortBy, sortDirection, onlyClaimable, iDs, prevToken, options) {
|
5736
5741
|
return __awaiter(this, void 0, void 0, function* () {
|
5737
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.listPromotions(nextToken, tags, segmentId, ownerID, type, startingAfter, endingBefore, startingBefore, endingAfter, clientIDs, search, sortBy, sortDirection, onlyClaimable, iDs, options);
|
5742
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.listPromotions(nextToken, tags, segmentId, ownerID, type, startingAfter, endingBefore, startingBefore, endingAfter, clientIDs, search, sortBy, sortDirection, onlyClaimable, iDs, prevToken, options);
|
5738
5743
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
5739
5744
|
});
|
5740
5745
|
},
|
@@ -5911,11 +5916,12 @@ export const PromotionApiFactory = function (configuration, basePath, axios) {
|
|
5911
5916
|
* @param {SortDirection} [sortDirection] sort direction
|
5912
5917
|
* @param {boolean} [onlyClaimable] only claimable promotions
|
5913
5918
|
* @param {Array<string>} [iDs] IDs to filter by
|
5919
|
+
* @param {string} [prevToken] This is the pagination token
|
5914
5920
|
* @param {*} [options] Override http request option.
|
5915
5921
|
* @throws {RequiredError}
|
5916
5922
|
*/
|
5917
|
-
listPromotions(nextToken, tags, segmentId, ownerID, type, startingAfter, endingBefore, startingBefore, endingAfter, clientIDs, search, sortBy, sortDirection, onlyClaimable, iDs, options) {
|
5918
|
-
return localVarFp.listPromotions(nextToken, tags, segmentId, ownerID, type, startingAfter, endingBefore, startingBefore, endingAfter, clientIDs, search, sortBy, sortDirection, onlyClaimable, iDs, options).then((request) => request(axios, basePath));
|
5923
|
+
listPromotions(nextToken, tags, segmentId, ownerID, type, startingAfter, endingBefore, startingBefore, endingAfter, clientIDs, search, sortBy, sortDirection, onlyClaimable, iDs, prevToken, options) {
|
5924
|
+
return localVarFp.listPromotions(nextToken, tags, segmentId, ownerID, type, startingAfter, endingBefore, startingBefore, endingAfter, clientIDs, search, sortBy, sortDirection, onlyClaimable, iDs, prevToken, options).then((request) => request(axios, basePath));
|
5919
5925
|
},
|
5920
5926
|
/**
|
5921
5927
|
* List users promotions
|
@@ -6094,12 +6100,13 @@ export class PromotionApi extends BaseAPI {
|
|
6094
6100
|
* @param {SortDirection} [sortDirection] sort direction
|
6095
6101
|
* @param {boolean} [onlyClaimable] only claimable promotions
|
6096
6102
|
* @param {Array<string>} [iDs] IDs to filter by
|
6103
|
+
* @param {string} [prevToken] This is the pagination token
|
6097
6104
|
* @param {*} [options] Override http request option.
|
6098
6105
|
* @throws {RequiredError}
|
6099
6106
|
* @memberof PromotionApi
|
6100
6107
|
*/
|
6101
|
-
listPromotions(nextToken, tags, segmentId, ownerID, type, startingAfter, endingBefore, startingBefore, endingAfter, clientIDs, search, sortBy, sortDirection, onlyClaimable, iDs, options) {
|
6102
|
-
return PromotionApiFp(this.configuration).listPromotions(nextToken, tags, segmentId, ownerID, type, startingAfter, endingBefore, startingBefore, endingAfter, clientIDs, search, sortBy, sortDirection, onlyClaimable, iDs, options).then((request) => request(this.axios, this.basePath));
|
6108
|
+
listPromotions(nextToken, tags, segmentId, ownerID, type, startingAfter, endingBefore, startingBefore, endingAfter, clientIDs, search, sortBy, sortDirection, onlyClaimable, iDs, prevToken, options) {
|
6109
|
+
return PromotionApiFp(this.configuration).listPromotions(nextToken, tags, segmentId, ownerID, type, startingAfter, endingBefore, startingBefore, endingAfter, clientIDs, search, sortBy, sortDirection, onlyClaimable, iDs, prevToken, options).then((request) => request(this.axios, this.basePath));
|
6103
6110
|
}
|
6104
6111
|
/**
|
6105
6112
|
* List users promotions
|
@@ -7095,13 +7102,13 @@ export const TransactionApiAxiosParamCreator = function (configuration) {
|
|
7095
7102
|
/**
|
7096
7103
|
* List existing transactions
|
7097
7104
|
* @summary List existing transactions
|
7098
|
-
* @param {string} [
|
7105
|
+
* @param {string} [nextToken] This is the pagination token
|
7099
7106
|
* @param {Array<string>} [clientIDs] This is the client IDs to filter by
|
7100
7107
|
* @param {Array<string>} [userIDs] This is the user ID
|
7101
7108
|
* @param {*} [options] Override http request option.
|
7102
7109
|
* @throws {RequiredError}
|
7103
7110
|
*/
|
7104
|
-
listTransactions: (
|
7111
|
+
listTransactions: (nextToken, clientIDs, userIDs, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
7105
7112
|
const localVarPath = `/admins/transactions`;
|
7106
7113
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
7107
7114
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
@@ -7115,8 +7122,8 @@ export const TransactionApiAxiosParamCreator = function (configuration) {
|
|
7115
7122
|
// authentication systemJWT required
|
7116
7123
|
// http bearer authentication required
|
7117
7124
|
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
7118
|
-
if (
|
7119
|
-
localVarQueryParameter['
|
7125
|
+
if (nextToken !== undefined) {
|
7126
|
+
localVarQueryParameter['nextToken'] = nextToken;
|
7120
7127
|
}
|
7121
7128
|
if (clientIDs) {
|
7122
7129
|
localVarQueryParameter['clientIDs'] = clientIDs;
|
@@ -7135,12 +7142,12 @@ export const TransactionApiAxiosParamCreator = function (configuration) {
|
|
7135
7142
|
/**
|
7136
7143
|
* List existing transactions
|
7137
7144
|
* @summary List existing transactions for users
|
7138
|
-
* @param {string} [
|
7145
|
+
* @param {string} [nextToken] This is the pagination token
|
7139
7146
|
* @param {Array<string>} [userIDs] This is the user ID
|
7140
7147
|
* @param {*} [options] Override http request option.
|
7141
7148
|
* @throws {RequiredError}
|
7142
7149
|
*/
|
7143
|
-
listUserTransactions: (
|
7150
|
+
listUserTransactions: (nextToken, userIDs, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
7144
7151
|
const localVarPath = `/users/transactions`;
|
7145
7152
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
7146
7153
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
@@ -7154,8 +7161,8 @@ export const TransactionApiAxiosParamCreator = function (configuration) {
|
|
7154
7161
|
// authentication customerJWT required
|
7155
7162
|
// http bearer authentication required
|
7156
7163
|
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
7157
|
-
if (
|
7158
|
-
localVarQueryParameter['
|
7164
|
+
if (nextToken !== undefined) {
|
7165
|
+
localVarQueryParameter['nextToken'] = nextToken;
|
7159
7166
|
}
|
7160
7167
|
if (userIDs) {
|
7161
7168
|
localVarQueryParameter['userIDs'] = userIDs;
|
@@ -7180,29 +7187,29 @@ export const TransactionApiFp = function (configuration) {
|
|
7180
7187
|
/**
|
7181
7188
|
* List existing transactions
|
7182
7189
|
* @summary List existing transactions
|
7183
|
-
* @param {string} [
|
7190
|
+
* @param {string} [nextToken] This is the pagination token
|
7184
7191
|
* @param {Array<string>} [clientIDs] This is the client IDs to filter by
|
7185
7192
|
* @param {Array<string>} [userIDs] This is the user ID
|
7186
7193
|
* @param {*} [options] Override http request option.
|
7187
7194
|
* @throws {RequiredError}
|
7188
7195
|
*/
|
7189
|
-
listTransactions(
|
7196
|
+
listTransactions(nextToken, clientIDs, userIDs, options) {
|
7190
7197
|
return __awaiter(this, void 0, void 0, function* () {
|
7191
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.listTransactions(
|
7198
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.listTransactions(nextToken, clientIDs, userIDs, options);
|
7192
7199
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
7193
7200
|
});
|
7194
7201
|
},
|
7195
7202
|
/**
|
7196
7203
|
* List existing transactions
|
7197
7204
|
* @summary List existing transactions for users
|
7198
|
-
* @param {string} [
|
7205
|
+
* @param {string} [nextToken] This is the pagination token
|
7199
7206
|
* @param {Array<string>} [userIDs] This is the user ID
|
7200
7207
|
* @param {*} [options] Override http request option.
|
7201
7208
|
* @throws {RequiredError}
|
7202
7209
|
*/
|
7203
|
-
listUserTransactions(
|
7210
|
+
listUserTransactions(nextToken, userIDs, options) {
|
7204
7211
|
return __awaiter(this, void 0, void 0, function* () {
|
7205
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.listUserTransactions(
|
7212
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.listUserTransactions(nextToken, userIDs, options);
|
7206
7213
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
7207
7214
|
});
|
7208
7215
|
},
|
@@ -7218,25 +7225,25 @@ export const TransactionApiFactory = function (configuration, basePath, axios) {
|
|
7218
7225
|
/**
|
7219
7226
|
* List existing transactions
|
7220
7227
|
* @summary List existing transactions
|
7221
|
-
* @param {string} [
|
7228
|
+
* @param {string} [nextToken] This is the pagination token
|
7222
7229
|
* @param {Array<string>} [clientIDs] This is the client IDs to filter by
|
7223
7230
|
* @param {Array<string>} [userIDs] This is the user ID
|
7224
7231
|
* @param {*} [options] Override http request option.
|
7225
7232
|
* @throws {RequiredError}
|
7226
7233
|
*/
|
7227
|
-
listTransactions(
|
7228
|
-
return localVarFp.listTransactions(
|
7234
|
+
listTransactions(nextToken, clientIDs, userIDs, options) {
|
7235
|
+
return localVarFp.listTransactions(nextToken, clientIDs, userIDs, options).then((request) => request(axios, basePath));
|
7229
7236
|
},
|
7230
7237
|
/**
|
7231
7238
|
* List existing transactions
|
7232
7239
|
* @summary List existing transactions for users
|
7233
|
-
* @param {string} [
|
7240
|
+
* @param {string} [nextToken] This is the pagination token
|
7234
7241
|
* @param {Array<string>} [userIDs] This is the user ID
|
7235
7242
|
* @param {*} [options] Override http request option.
|
7236
7243
|
* @throws {RequiredError}
|
7237
7244
|
*/
|
7238
|
-
listUserTransactions(
|
7239
|
-
return localVarFp.listUserTransactions(
|
7245
|
+
listUserTransactions(nextToken, userIDs, options) {
|
7246
|
+
return localVarFp.listUserTransactions(nextToken, userIDs, options).then((request) => request(axios, basePath));
|
7240
7247
|
},
|
7241
7248
|
};
|
7242
7249
|
};
|
@@ -7250,27 +7257,27 @@ export class TransactionApi extends BaseAPI {
|
|
7250
7257
|
/**
|
7251
7258
|
* List existing transactions
|
7252
7259
|
* @summary List existing transactions
|
7253
|
-
* @param {string} [
|
7260
|
+
* @param {string} [nextToken] This is the pagination token
|
7254
7261
|
* @param {Array<string>} [clientIDs] This is the client IDs to filter by
|
7255
7262
|
* @param {Array<string>} [userIDs] This is the user ID
|
7256
7263
|
* @param {*} [options] Override http request option.
|
7257
7264
|
* @throws {RequiredError}
|
7258
7265
|
* @memberof TransactionApi
|
7259
7266
|
*/
|
7260
|
-
listTransactions(
|
7261
|
-
return TransactionApiFp(this.configuration).listTransactions(
|
7267
|
+
listTransactions(nextToken, clientIDs, userIDs, options) {
|
7268
|
+
return TransactionApiFp(this.configuration).listTransactions(nextToken, clientIDs, userIDs, options).then((request) => request(this.axios, this.basePath));
|
7262
7269
|
}
|
7263
7270
|
/**
|
7264
7271
|
* List existing transactions
|
7265
7272
|
* @summary List existing transactions for users
|
7266
|
-
* @param {string} [
|
7273
|
+
* @param {string} [nextToken] This is the pagination token
|
7267
7274
|
* @param {Array<string>} [userIDs] This is the user ID
|
7268
7275
|
* @param {*} [options] Override http request option.
|
7269
7276
|
* @throws {RequiredError}
|
7270
7277
|
* @memberof TransactionApi
|
7271
7278
|
*/
|
7272
|
-
listUserTransactions(
|
7273
|
-
return TransactionApiFp(this.configuration).listUserTransactions(
|
7279
|
+
listUserTransactions(nextToken, userIDs, options) {
|
7280
|
+
return TransactionApiFp(this.configuration).listUserTransactions(nextToken, userIDs, options).then((request) => request(this.axios, this.basePath));
|
7274
7281
|
}
|
7275
7282
|
}
|
7276
7283
|
/**
|