@seekora-ai/admin-api 1.0.59 → 1.0.60
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 +2294 -2278
- package/dist/api.d.ts +2291 -2255
- package/dist/api.js +40 -60
- package/dist/esm/api.d.ts +2291 -2255
- package/dist/esm/api.js +40 -60
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.0.60.tgz +0 -0
- package/seekora-ai-admin-api-1.0.59.tgz +0 -0
package/dist/api.js
CHANGED
|
@@ -17832,40 +17832,20 @@ const RefundManagementApiAxiosParamCreator = function (configuration) {
|
|
|
17832
17832
|
/**
|
|
17833
17833
|
* Gets a paginated list of refund requests with filtering
|
|
17834
17834
|
* @summary List refund requests
|
|
17835
|
-
* @param {string} dateFrom
|
|
17836
|
-
* @param {string} dateTo
|
|
17837
|
-
* @param {number} orderId
|
|
17838
|
-
* @param {number} page
|
|
17839
|
-
* @param {number} pageSize
|
|
17840
|
-
* @param {string} paymentId
|
|
17841
|
-
* @param {string} refundType
|
|
17842
|
-
* @param {number} requestedBy
|
|
17843
|
-
* @param {boolean} requireApproval
|
|
17844
|
-
* @param {string} status
|
|
17835
|
+
* @param {string} [dateFrom]
|
|
17836
|
+
* @param {string} [dateTo]
|
|
17837
|
+
* @param {number} [orderId]
|
|
17838
|
+
* @param {number} [page]
|
|
17839
|
+
* @param {number} [pageSize]
|
|
17840
|
+
* @param {string} [paymentId]
|
|
17841
|
+
* @param {string} [refundType]
|
|
17842
|
+
* @param {number} [requestedBy]
|
|
17843
|
+
* @param {boolean} [requireApproval]
|
|
17844
|
+
* @param {string} [status]
|
|
17845
17845
|
* @param {*} [options] Override http request option.
|
|
17846
17846
|
* @throws {RequiredError}
|
|
17847
17847
|
*/
|
|
17848
17848
|
paymentGatewayRefundsGet: (dateFrom_1, dateTo_1, orderId_1, page_1, pageSize_1, paymentId_1, refundType_1, requestedBy_1, requireApproval_1, status_1, ...args_1) => __awaiter(this, [dateFrom_1, dateTo_1, orderId_1, page_1, pageSize_1, paymentId_1, refundType_1, requestedBy_1, requireApproval_1, status_1, ...args_1], void 0, function* (dateFrom, dateTo, orderId, page, pageSize, paymentId, refundType, requestedBy, requireApproval, status, options = {}) {
|
|
17849
|
-
// verify required parameter 'dateFrom' is not null or undefined
|
|
17850
|
-
(0, common_1.assertParamExists)('paymentGatewayRefundsGet', 'dateFrom', dateFrom);
|
|
17851
|
-
// verify required parameter 'dateTo' is not null or undefined
|
|
17852
|
-
(0, common_1.assertParamExists)('paymentGatewayRefundsGet', 'dateTo', dateTo);
|
|
17853
|
-
// verify required parameter 'orderId' is not null or undefined
|
|
17854
|
-
(0, common_1.assertParamExists)('paymentGatewayRefundsGet', 'orderId', orderId);
|
|
17855
|
-
// verify required parameter 'page' is not null or undefined
|
|
17856
|
-
(0, common_1.assertParamExists)('paymentGatewayRefundsGet', 'page', page);
|
|
17857
|
-
// verify required parameter 'pageSize' is not null or undefined
|
|
17858
|
-
(0, common_1.assertParamExists)('paymentGatewayRefundsGet', 'pageSize', pageSize);
|
|
17859
|
-
// verify required parameter 'paymentId' is not null or undefined
|
|
17860
|
-
(0, common_1.assertParamExists)('paymentGatewayRefundsGet', 'paymentId', paymentId);
|
|
17861
|
-
// verify required parameter 'refundType' is not null or undefined
|
|
17862
|
-
(0, common_1.assertParamExists)('paymentGatewayRefundsGet', 'refundType', refundType);
|
|
17863
|
-
// verify required parameter 'requestedBy' is not null or undefined
|
|
17864
|
-
(0, common_1.assertParamExists)('paymentGatewayRefundsGet', 'requestedBy', requestedBy);
|
|
17865
|
-
// verify required parameter 'requireApproval' is not null or undefined
|
|
17866
|
-
(0, common_1.assertParamExists)('paymentGatewayRefundsGet', 'requireApproval', requireApproval);
|
|
17867
|
-
// verify required parameter 'status' is not null or undefined
|
|
17868
|
-
(0, common_1.assertParamExists)('paymentGatewayRefundsGet', 'status', status);
|
|
17869
17849
|
const localVarPath = `/payment-gateway/refunds`;
|
|
17870
17850
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
17871
17851
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -17992,16 +17972,16 @@ const RefundManagementApiFp = function (configuration) {
|
|
|
17992
17972
|
/**
|
|
17993
17973
|
* Gets a paginated list of refund requests with filtering
|
|
17994
17974
|
* @summary List refund requests
|
|
17995
|
-
* @param {string} dateFrom
|
|
17996
|
-
* @param {string} dateTo
|
|
17997
|
-
* @param {number} orderId
|
|
17998
|
-
* @param {number} page
|
|
17999
|
-
* @param {number} pageSize
|
|
18000
|
-
* @param {string} paymentId
|
|
18001
|
-
* @param {string} refundType
|
|
18002
|
-
* @param {number} requestedBy
|
|
18003
|
-
* @param {boolean} requireApproval
|
|
18004
|
-
* @param {string} status
|
|
17975
|
+
* @param {string} [dateFrom]
|
|
17976
|
+
* @param {string} [dateTo]
|
|
17977
|
+
* @param {number} [orderId]
|
|
17978
|
+
* @param {number} [page]
|
|
17979
|
+
* @param {number} [pageSize]
|
|
17980
|
+
* @param {string} [paymentId]
|
|
17981
|
+
* @param {string} [refundType]
|
|
17982
|
+
* @param {number} [requestedBy]
|
|
17983
|
+
* @param {boolean} [requireApproval]
|
|
17984
|
+
* @param {string} [status]
|
|
18005
17985
|
* @param {*} [options] Override http request option.
|
|
18006
17986
|
* @throws {RequiredError}
|
|
18007
17987
|
*/
|
|
@@ -18066,16 +18046,16 @@ const RefundManagementApiFactory = function (configuration, basePath, axios) {
|
|
|
18066
18046
|
/**
|
|
18067
18047
|
* Gets a paginated list of refund requests with filtering
|
|
18068
18048
|
* @summary List refund requests
|
|
18069
|
-
* @param {string} dateFrom
|
|
18070
|
-
* @param {string} dateTo
|
|
18071
|
-
* @param {number} orderId
|
|
18072
|
-
* @param {number} page
|
|
18073
|
-
* @param {number} pageSize
|
|
18074
|
-
* @param {string} paymentId
|
|
18075
|
-
* @param {string} refundType
|
|
18076
|
-
* @param {number} requestedBy
|
|
18077
|
-
* @param {boolean} requireApproval
|
|
18078
|
-
* @param {string} status
|
|
18049
|
+
* @param {string} [dateFrom]
|
|
18050
|
+
* @param {string} [dateTo]
|
|
18051
|
+
* @param {number} [orderId]
|
|
18052
|
+
* @param {number} [page]
|
|
18053
|
+
* @param {number} [pageSize]
|
|
18054
|
+
* @param {string} [paymentId]
|
|
18055
|
+
* @param {string} [refundType]
|
|
18056
|
+
* @param {number} [requestedBy]
|
|
18057
|
+
* @param {boolean} [requireApproval]
|
|
18058
|
+
* @param {string} [status]
|
|
18079
18059
|
* @param {*} [options] Override http request option.
|
|
18080
18060
|
* @throws {RequiredError}
|
|
18081
18061
|
*/
|
|
@@ -18138,16 +18118,16 @@ class RefundManagementApi extends base_1.BaseAPI {
|
|
|
18138
18118
|
/**
|
|
18139
18119
|
* Gets a paginated list of refund requests with filtering
|
|
18140
18120
|
* @summary List refund requests
|
|
18141
|
-
* @param {string} dateFrom
|
|
18142
|
-
* @param {string} dateTo
|
|
18143
|
-
* @param {number} orderId
|
|
18144
|
-
* @param {number} page
|
|
18145
|
-
* @param {number} pageSize
|
|
18146
|
-
* @param {string} paymentId
|
|
18147
|
-
* @param {string} refundType
|
|
18148
|
-
* @param {number} requestedBy
|
|
18149
|
-
* @param {boolean} requireApproval
|
|
18150
|
-
* @param {string} status
|
|
18121
|
+
* @param {string} [dateFrom]
|
|
18122
|
+
* @param {string} [dateTo]
|
|
18123
|
+
* @param {number} [orderId]
|
|
18124
|
+
* @param {number} [page]
|
|
18125
|
+
* @param {number} [pageSize]
|
|
18126
|
+
* @param {string} [paymentId]
|
|
18127
|
+
* @param {string} [refundType]
|
|
18128
|
+
* @param {number} [requestedBy]
|
|
18129
|
+
* @param {boolean} [requireApproval]
|
|
18130
|
+
* @param {string} [status]
|
|
18151
18131
|
* @param {*} [options] Override http request option.
|
|
18152
18132
|
* @throws {RequiredError}
|
|
18153
18133
|
* @memberof RefundManagementApi
|