@seekora-ai/admin-api 1.0.59 → 1.0.61
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 +2316 -2282
- package/dist/api.d.ts +2313 -2259
- package/dist/api.js +44 -64
- package/dist/esm/api.d.ts +2313 -2259
- package/dist/esm/api.js +44 -64
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.0.61.tgz +0 -0
- package/seekora-ai-admin-api-1.0.59.tgz +0 -0
package/dist/esm/api.js
CHANGED
|
@@ -16122,7 +16122,7 @@ export const QuerySuggestionsManagementApiAxiosParamCreator = function (configur
|
|
|
16122
16122
|
};
|
|
16123
16123
|
}),
|
|
16124
16124
|
/**
|
|
16125
|
-
* Enable or disable auto-generated and
|
|
16125
|
+
* Enable or disable auto-generated, manual, imported, and facet-based query suggestions for a store
|
|
16126
16126
|
* @summary Update Query Suggestions Configuration
|
|
16127
16127
|
* @param {string} xStoreID Store ID
|
|
16128
16128
|
* @param {AnalyticsUpdateSuggestionConfigRequest} analyticsUpdateSuggestionConfigRequest Configuration update request
|
|
@@ -16808,7 +16808,7 @@ export const QuerySuggestionsManagementApiFp = function (configuration) {
|
|
|
16808
16808
|
});
|
|
16809
16809
|
},
|
|
16810
16810
|
/**
|
|
16811
|
-
* Enable or disable auto-generated and
|
|
16811
|
+
* Enable or disable auto-generated, manual, imported, and facet-based query suggestions for a store
|
|
16812
16812
|
* @summary Update Query Suggestions Configuration
|
|
16813
16813
|
* @param {string} xStoreID Store ID
|
|
16814
16814
|
* @param {AnalyticsUpdateSuggestionConfigRequest} analyticsUpdateSuggestionConfigRequest Configuration update request
|
|
@@ -17144,7 +17144,7 @@ export const QuerySuggestionsManagementApiFactory = function (configuration, bas
|
|
|
17144
17144
|
return localVarFp.adminV1QuerySuggestionsXStoreIDConfigGet(xStoreID, options).then((request) => request(axios, basePath));
|
|
17145
17145
|
},
|
|
17146
17146
|
/**
|
|
17147
|
-
* Enable or disable auto-generated and
|
|
17147
|
+
* Enable or disable auto-generated, manual, imported, and facet-based query suggestions for a store
|
|
17148
17148
|
* @summary Update Query Suggestions Configuration
|
|
17149
17149
|
* @param {string} xStoreID Store ID
|
|
17150
17150
|
* @param {AnalyticsUpdateSuggestionConfigRequest} analyticsUpdateSuggestionConfigRequest Configuration update request
|
|
@@ -17388,7 +17388,7 @@ export class QuerySuggestionsManagementApi extends BaseAPI {
|
|
|
17388
17388
|
return QuerySuggestionsManagementApiFp(this.configuration).adminV1QuerySuggestionsXStoreIDConfigGet(xStoreID, options).then((request) => request(this.axios, this.basePath));
|
|
17389
17389
|
}
|
|
17390
17390
|
/**
|
|
17391
|
-
* Enable or disable auto-generated and
|
|
17391
|
+
* Enable or disable auto-generated, manual, imported, and facet-based query suggestions for a store
|
|
17392
17392
|
* @summary Update Query Suggestions Configuration
|
|
17393
17393
|
* @param {string} xStoreID Store ID
|
|
17394
17394
|
* @param {AnalyticsUpdateSuggestionConfigRequest} analyticsUpdateSuggestionConfigRequest Configuration update request
|
|
@@ -17721,40 +17721,20 @@ export const RefundManagementApiAxiosParamCreator = function (configuration) {
|
|
|
17721
17721
|
/**
|
|
17722
17722
|
* Gets a paginated list of refund requests with filtering
|
|
17723
17723
|
* @summary List refund requests
|
|
17724
|
-
* @param {string} dateFrom
|
|
17725
|
-
* @param {string} dateTo
|
|
17726
|
-
* @param {number} orderId
|
|
17727
|
-
* @param {number} page
|
|
17728
|
-
* @param {number} pageSize
|
|
17729
|
-
* @param {string} paymentId
|
|
17730
|
-
* @param {string} refundType
|
|
17731
|
-
* @param {number} requestedBy
|
|
17732
|
-
* @param {boolean} requireApproval
|
|
17733
|
-
* @param {string} status
|
|
17724
|
+
* @param {string} [dateFrom]
|
|
17725
|
+
* @param {string} [dateTo]
|
|
17726
|
+
* @param {number} [orderId]
|
|
17727
|
+
* @param {number} [page]
|
|
17728
|
+
* @param {number} [pageSize]
|
|
17729
|
+
* @param {string} [paymentId]
|
|
17730
|
+
* @param {string} [refundType]
|
|
17731
|
+
* @param {number} [requestedBy]
|
|
17732
|
+
* @param {boolean} [requireApproval]
|
|
17733
|
+
* @param {string} [status]
|
|
17734
17734
|
* @param {*} [options] Override http request option.
|
|
17735
17735
|
* @throws {RequiredError}
|
|
17736
17736
|
*/
|
|
17737
17737
|
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 = {}) {
|
|
17738
|
-
// verify required parameter 'dateFrom' is not null or undefined
|
|
17739
|
-
assertParamExists('paymentGatewayRefundsGet', 'dateFrom', dateFrom);
|
|
17740
|
-
// verify required parameter 'dateTo' is not null or undefined
|
|
17741
|
-
assertParamExists('paymentGatewayRefundsGet', 'dateTo', dateTo);
|
|
17742
|
-
// verify required parameter 'orderId' is not null or undefined
|
|
17743
|
-
assertParamExists('paymentGatewayRefundsGet', 'orderId', orderId);
|
|
17744
|
-
// verify required parameter 'page' is not null or undefined
|
|
17745
|
-
assertParamExists('paymentGatewayRefundsGet', 'page', page);
|
|
17746
|
-
// verify required parameter 'pageSize' is not null or undefined
|
|
17747
|
-
assertParamExists('paymentGatewayRefundsGet', 'pageSize', pageSize);
|
|
17748
|
-
// verify required parameter 'paymentId' is not null or undefined
|
|
17749
|
-
assertParamExists('paymentGatewayRefundsGet', 'paymentId', paymentId);
|
|
17750
|
-
// verify required parameter 'refundType' is not null or undefined
|
|
17751
|
-
assertParamExists('paymentGatewayRefundsGet', 'refundType', refundType);
|
|
17752
|
-
// verify required parameter 'requestedBy' is not null or undefined
|
|
17753
|
-
assertParamExists('paymentGatewayRefundsGet', 'requestedBy', requestedBy);
|
|
17754
|
-
// verify required parameter 'requireApproval' is not null or undefined
|
|
17755
|
-
assertParamExists('paymentGatewayRefundsGet', 'requireApproval', requireApproval);
|
|
17756
|
-
// verify required parameter 'status' is not null or undefined
|
|
17757
|
-
assertParamExists('paymentGatewayRefundsGet', 'status', status);
|
|
17758
17738
|
const localVarPath = `/payment-gateway/refunds`;
|
|
17759
17739
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
17760
17740
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -17880,16 +17860,16 @@ export const RefundManagementApiFp = function (configuration) {
|
|
|
17880
17860
|
/**
|
|
17881
17861
|
* Gets a paginated list of refund requests with filtering
|
|
17882
17862
|
* @summary List refund requests
|
|
17883
|
-
* @param {string} dateFrom
|
|
17884
|
-
* @param {string} dateTo
|
|
17885
|
-
* @param {number} orderId
|
|
17886
|
-
* @param {number} page
|
|
17887
|
-
* @param {number} pageSize
|
|
17888
|
-
* @param {string} paymentId
|
|
17889
|
-
* @param {string} refundType
|
|
17890
|
-
* @param {number} requestedBy
|
|
17891
|
-
* @param {boolean} requireApproval
|
|
17892
|
-
* @param {string} status
|
|
17863
|
+
* @param {string} [dateFrom]
|
|
17864
|
+
* @param {string} [dateTo]
|
|
17865
|
+
* @param {number} [orderId]
|
|
17866
|
+
* @param {number} [page]
|
|
17867
|
+
* @param {number} [pageSize]
|
|
17868
|
+
* @param {string} [paymentId]
|
|
17869
|
+
* @param {string} [refundType]
|
|
17870
|
+
* @param {number} [requestedBy]
|
|
17871
|
+
* @param {boolean} [requireApproval]
|
|
17872
|
+
* @param {string} [status]
|
|
17893
17873
|
* @param {*} [options] Override http request option.
|
|
17894
17874
|
* @throws {RequiredError}
|
|
17895
17875
|
*/
|
|
@@ -17953,16 +17933,16 @@ export const RefundManagementApiFactory = function (configuration, basePath, axi
|
|
|
17953
17933
|
/**
|
|
17954
17934
|
* Gets a paginated list of refund requests with filtering
|
|
17955
17935
|
* @summary List refund requests
|
|
17956
|
-
* @param {string} dateFrom
|
|
17957
|
-
* @param {string} dateTo
|
|
17958
|
-
* @param {number} orderId
|
|
17959
|
-
* @param {number} page
|
|
17960
|
-
* @param {number} pageSize
|
|
17961
|
-
* @param {string} paymentId
|
|
17962
|
-
* @param {string} refundType
|
|
17963
|
-
* @param {number} requestedBy
|
|
17964
|
-
* @param {boolean} requireApproval
|
|
17965
|
-
* @param {string} status
|
|
17936
|
+
* @param {string} [dateFrom]
|
|
17937
|
+
* @param {string} [dateTo]
|
|
17938
|
+
* @param {number} [orderId]
|
|
17939
|
+
* @param {number} [page]
|
|
17940
|
+
* @param {number} [pageSize]
|
|
17941
|
+
* @param {string} [paymentId]
|
|
17942
|
+
* @param {string} [refundType]
|
|
17943
|
+
* @param {number} [requestedBy]
|
|
17944
|
+
* @param {boolean} [requireApproval]
|
|
17945
|
+
* @param {string} [status]
|
|
17966
17946
|
* @param {*} [options] Override http request option.
|
|
17967
17947
|
* @throws {RequiredError}
|
|
17968
17948
|
*/
|
|
@@ -18024,16 +18004,16 @@ export class RefundManagementApi extends BaseAPI {
|
|
|
18024
18004
|
/**
|
|
18025
18005
|
* Gets a paginated list of refund requests with filtering
|
|
18026
18006
|
* @summary List refund requests
|
|
18027
|
-
* @param {string} dateFrom
|
|
18028
|
-
* @param {string} dateTo
|
|
18029
|
-
* @param {number} orderId
|
|
18030
|
-
* @param {number} page
|
|
18031
|
-
* @param {number} pageSize
|
|
18032
|
-
* @param {string} paymentId
|
|
18033
|
-
* @param {string} refundType
|
|
18034
|
-
* @param {number} requestedBy
|
|
18035
|
-
* @param {boolean} requireApproval
|
|
18036
|
-
* @param {string} status
|
|
18007
|
+
* @param {string} [dateFrom]
|
|
18008
|
+
* @param {string} [dateTo]
|
|
18009
|
+
* @param {number} [orderId]
|
|
18010
|
+
* @param {number} [page]
|
|
18011
|
+
* @param {number} [pageSize]
|
|
18012
|
+
* @param {string} [paymentId]
|
|
18013
|
+
* @param {string} [refundType]
|
|
18014
|
+
* @param {number} [requestedBy]
|
|
18015
|
+
* @param {boolean} [requireApproval]
|
|
18016
|
+
* @param {string} [status]
|
|
18037
18017
|
* @param {*} [options] Override http request option.
|
|
18038
18018
|
* @throws {RequiredError}
|
|
18039
18019
|
* @memberof RefundManagementApi
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|