@seekora-ai/admin-api 1.0.78 → 1.0.79
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 +16 -16
- package/api.ts +204 -162
- package/dist/api.d.ts +56 -56
- package/dist/api.js +190 -162
- package/dist/esm/api.d.ts +56 -56
- package/dist/esm/api.js +190 -162
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.0.79.tgz +0 -0
- package/seekora-ai-admin-api-1.0.78.tgz +0 -0
package/api.ts
CHANGED
|
@@ -25493,10 +25493,10 @@ export const AnalyticsRulesApiAxiosParamCreator = function (configuration?: Conf
|
|
|
25493
25493
|
* @param {*} [options] Override http request option.
|
|
25494
25494
|
* @throws {RequiredError}
|
|
25495
25495
|
*/
|
|
25496
|
-
|
|
25496
|
+
adminV1AnalyticsRulesGet: async (authorization: string, storeId?: number, collectionName?: string, isActive?: boolean, page?: number, pageSize?: number, limit?: number, offset?: number, sortBy?: string, sortOrder?: string, searchQuery?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
25497
25497
|
// verify required parameter 'authorization' is not null or undefined
|
|
25498
|
-
assertParamExists('
|
|
25499
|
-
const localVarPath = `/
|
|
25498
|
+
assertParamExists('adminV1AnalyticsRulesGet', 'authorization', authorization)
|
|
25499
|
+
const localVarPath = `/admin/v1/analytics/rules`;
|
|
25500
25500
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
25501
25501
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
25502
25502
|
let baseOptions;
|
|
@@ -25508,6 +25508,9 @@ export const AnalyticsRulesApiAxiosParamCreator = function (configuration?: Conf
|
|
|
25508
25508
|
const localVarHeaderParameter = {} as any;
|
|
25509
25509
|
const localVarQueryParameter = {} as any;
|
|
25510
25510
|
|
|
25511
|
+
// authentication BearerAuth required
|
|
25512
|
+
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
25513
|
+
|
|
25511
25514
|
if (storeId !== undefined) {
|
|
25512
25515
|
localVarQueryParameter['store_id'] = storeId;
|
|
25513
25516
|
}
|
|
@@ -25570,12 +25573,12 @@ export const AnalyticsRulesApiAxiosParamCreator = function (configuration?: Conf
|
|
|
25570
25573
|
* @param {*} [options] Override http request option.
|
|
25571
25574
|
* @throws {RequiredError}
|
|
25572
25575
|
*/
|
|
25573
|
-
|
|
25576
|
+
adminV1AnalyticsRulesPost: async (authorization: string, dataTypesCreateAnalyticsRuleRequest: DataTypesCreateAnalyticsRuleRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
25574
25577
|
// verify required parameter 'authorization' is not null or undefined
|
|
25575
|
-
assertParamExists('
|
|
25578
|
+
assertParamExists('adminV1AnalyticsRulesPost', 'authorization', authorization)
|
|
25576
25579
|
// verify required parameter 'dataTypesCreateAnalyticsRuleRequest' is not null or undefined
|
|
25577
|
-
assertParamExists('
|
|
25578
|
-
const localVarPath = `/
|
|
25580
|
+
assertParamExists('adminV1AnalyticsRulesPost', 'dataTypesCreateAnalyticsRuleRequest', dataTypesCreateAnalyticsRuleRequest)
|
|
25581
|
+
const localVarPath = `/admin/v1/analytics/rules`;
|
|
25579
25582
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
25580
25583
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
25581
25584
|
let baseOptions;
|
|
@@ -25587,6 +25590,9 @@ export const AnalyticsRulesApiAxiosParamCreator = function (configuration?: Conf
|
|
|
25587
25590
|
const localVarHeaderParameter = {} as any;
|
|
25588
25591
|
const localVarQueryParameter = {} as any;
|
|
25589
25592
|
|
|
25593
|
+
// authentication BearerAuth required
|
|
25594
|
+
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
25595
|
+
|
|
25590
25596
|
|
|
25591
25597
|
|
|
25592
25598
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -25612,12 +25618,12 @@ export const AnalyticsRulesApiAxiosParamCreator = function (configuration?: Conf
|
|
|
25612
25618
|
* @param {*} [options] Override http request option.
|
|
25613
25619
|
* @throws {RequiredError}
|
|
25614
25620
|
*/
|
|
25615
|
-
|
|
25621
|
+
adminV1AnalyticsRulesRuleIdDelete: async (authorization: string, ruleId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
25616
25622
|
// verify required parameter 'authorization' is not null or undefined
|
|
25617
|
-
assertParamExists('
|
|
25623
|
+
assertParamExists('adminV1AnalyticsRulesRuleIdDelete', 'authorization', authorization)
|
|
25618
25624
|
// verify required parameter 'ruleId' is not null or undefined
|
|
25619
|
-
assertParamExists('
|
|
25620
|
-
const localVarPath = `/
|
|
25625
|
+
assertParamExists('adminV1AnalyticsRulesRuleIdDelete', 'ruleId', ruleId)
|
|
25626
|
+
const localVarPath = `/admin/v1/analytics/rules/{ruleId}`
|
|
25621
25627
|
.replace(`{${"ruleId"}}`, encodeURIComponent(String(ruleId)));
|
|
25622
25628
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
25623
25629
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -25630,6 +25636,9 @@ export const AnalyticsRulesApiAxiosParamCreator = function (configuration?: Conf
|
|
|
25630
25636
|
const localVarHeaderParameter = {} as any;
|
|
25631
25637
|
const localVarQueryParameter = {} as any;
|
|
25632
25638
|
|
|
25639
|
+
// authentication BearerAuth required
|
|
25640
|
+
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
25641
|
+
|
|
25633
25642
|
|
|
25634
25643
|
|
|
25635
25644
|
if (authorization != null) {
|
|
@@ -25652,12 +25661,12 @@ export const AnalyticsRulesApiAxiosParamCreator = function (configuration?: Conf
|
|
|
25652
25661
|
* @param {*} [options] Override http request option.
|
|
25653
25662
|
* @throws {RequiredError}
|
|
25654
25663
|
*/
|
|
25655
|
-
|
|
25664
|
+
adminV1AnalyticsRulesRuleIdGet: async (authorization: string, ruleId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
25656
25665
|
// verify required parameter 'authorization' is not null or undefined
|
|
25657
|
-
assertParamExists('
|
|
25666
|
+
assertParamExists('adminV1AnalyticsRulesRuleIdGet', 'authorization', authorization)
|
|
25658
25667
|
// verify required parameter 'ruleId' is not null or undefined
|
|
25659
|
-
assertParamExists('
|
|
25660
|
-
const localVarPath = `/
|
|
25668
|
+
assertParamExists('adminV1AnalyticsRulesRuleIdGet', 'ruleId', ruleId)
|
|
25669
|
+
const localVarPath = `/admin/v1/analytics/rules/{ruleId}`
|
|
25661
25670
|
.replace(`{${"ruleId"}}`, encodeURIComponent(String(ruleId)));
|
|
25662
25671
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
25663
25672
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -25670,6 +25679,9 @@ export const AnalyticsRulesApiAxiosParamCreator = function (configuration?: Conf
|
|
|
25670
25679
|
const localVarHeaderParameter = {} as any;
|
|
25671
25680
|
const localVarQueryParameter = {} as any;
|
|
25672
25681
|
|
|
25682
|
+
// authentication BearerAuth required
|
|
25683
|
+
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
25684
|
+
|
|
25673
25685
|
|
|
25674
25686
|
|
|
25675
25687
|
if (authorization != null) {
|
|
@@ -25693,14 +25705,14 @@ export const AnalyticsRulesApiAxiosParamCreator = function (configuration?: Conf
|
|
|
25693
25705
|
* @param {*} [options] Override http request option.
|
|
25694
25706
|
* @throws {RequiredError}
|
|
25695
25707
|
*/
|
|
25696
|
-
|
|
25708
|
+
adminV1AnalyticsRulesRuleIdPut: async (authorization: string, ruleId: string, dataTypesUpdateAnalyticsRuleRequest: DataTypesUpdateAnalyticsRuleRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
25697
25709
|
// verify required parameter 'authorization' is not null or undefined
|
|
25698
|
-
assertParamExists('
|
|
25710
|
+
assertParamExists('adminV1AnalyticsRulesRuleIdPut', 'authorization', authorization)
|
|
25699
25711
|
// verify required parameter 'ruleId' is not null or undefined
|
|
25700
|
-
assertParamExists('
|
|
25712
|
+
assertParamExists('adminV1AnalyticsRulesRuleIdPut', 'ruleId', ruleId)
|
|
25701
25713
|
// verify required parameter 'dataTypesUpdateAnalyticsRuleRequest' is not null or undefined
|
|
25702
|
-
assertParamExists('
|
|
25703
|
-
const localVarPath = `/
|
|
25714
|
+
assertParamExists('adminV1AnalyticsRulesRuleIdPut', 'dataTypesUpdateAnalyticsRuleRequest', dataTypesUpdateAnalyticsRuleRequest)
|
|
25715
|
+
const localVarPath = `/admin/v1/analytics/rules/{ruleId}`
|
|
25704
25716
|
.replace(`{${"ruleId"}}`, encodeURIComponent(String(ruleId)));
|
|
25705
25717
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
25706
25718
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -25713,6 +25725,9 @@ export const AnalyticsRulesApiAxiosParamCreator = function (configuration?: Conf
|
|
|
25713
25725
|
const localVarHeaderParameter = {} as any;
|
|
25714
25726
|
const localVarQueryParameter = {} as any;
|
|
25715
25727
|
|
|
25728
|
+
// authentication BearerAuth required
|
|
25729
|
+
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
25730
|
+
|
|
25716
25731
|
|
|
25717
25732
|
|
|
25718
25733
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -25738,12 +25753,12 @@ export const AnalyticsRulesApiAxiosParamCreator = function (configuration?: Conf
|
|
|
25738
25753
|
* @param {*} [options] Override http request option.
|
|
25739
25754
|
* @throws {RequiredError}
|
|
25740
25755
|
*/
|
|
25741
|
-
|
|
25756
|
+
adminV1AnalyticsRulesSyncPost: async (authorization: string, dataTypesAnalyticsRuleSyncRequest: DataTypesAnalyticsRuleSyncRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
25742
25757
|
// verify required parameter 'authorization' is not null or undefined
|
|
25743
|
-
assertParamExists('
|
|
25758
|
+
assertParamExists('adminV1AnalyticsRulesSyncPost', 'authorization', authorization)
|
|
25744
25759
|
// verify required parameter 'dataTypesAnalyticsRuleSyncRequest' is not null or undefined
|
|
25745
|
-
assertParamExists('
|
|
25746
|
-
const localVarPath = `/
|
|
25760
|
+
assertParamExists('adminV1AnalyticsRulesSyncPost', 'dataTypesAnalyticsRuleSyncRequest', dataTypesAnalyticsRuleSyncRequest)
|
|
25761
|
+
const localVarPath = `/admin/v1/analytics/rules/sync`;
|
|
25747
25762
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
25748
25763
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
25749
25764
|
let baseOptions;
|
|
@@ -25755,6 +25770,9 @@ export const AnalyticsRulesApiAxiosParamCreator = function (configuration?: Conf
|
|
|
25755
25770
|
const localVarHeaderParameter = {} as any;
|
|
25756
25771
|
const localVarQueryParameter = {} as any;
|
|
25757
25772
|
|
|
25773
|
+
// authentication BearerAuth required
|
|
25774
|
+
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
25775
|
+
|
|
25758
25776
|
|
|
25759
25777
|
|
|
25760
25778
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -25781,14 +25799,14 @@ export const AnalyticsRulesApiAxiosParamCreator = function (configuration?: Conf
|
|
|
25781
25799
|
* @param {*} [options] Override http request option.
|
|
25782
25800
|
* @throws {RequiredError}
|
|
25783
25801
|
*/
|
|
25784
|
-
|
|
25802
|
+
adminV1StoresXStoreIDAnalyticsRulesItemsItemIdGet: async (authorization: string, xStoreID: string, itemId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
25785
25803
|
// verify required parameter 'authorization' is not null or undefined
|
|
25786
|
-
assertParamExists('
|
|
25804
|
+
assertParamExists('adminV1StoresXStoreIDAnalyticsRulesItemsItemIdGet', 'authorization', authorization)
|
|
25787
25805
|
// verify required parameter 'xStoreID' is not null or undefined
|
|
25788
|
-
assertParamExists('
|
|
25806
|
+
assertParamExists('adminV1StoresXStoreIDAnalyticsRulesItemsItemIdGet', 'xStoreID', xStoreID)
|
|
25789
25807
|
// verify required parameter 'itemId' is not null or undefined
|
|
25790
|
-
assertParamExists('
|
|
25791
|
-
const localVarPath = `/
|
|
25808
|
+
assertParamExists('adminV1StoresXStoreIDAnalyticsRulesItemsItemIdGet', 'itemId', itemId)
|
|
25809
|
+
const localVarPath = `/admin/v1/stores/{xStoreID}/analytics/rules/items/{itemId}`
|
|
25792
25810
|
.replace(`{${"xStoreID"}}`, encodeURIComponent(String(xStoreID)))
|
|
25793
25811
|
.replace(`{${"itemId"}}`, encodeURIComponent(String(itemId)));
|
|
25794
25812
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -25802,6 +25820,9 @@ export const AnalyticsRulesApiAxiosParamCreator = function (configuration?: Conf
|
|
|
25802
25820
|
const localVarHeaderParameter = {} as any;
|
|
25803
25821
|
const localVarQueryParameter = {} as any;
|
|
25804
25822
|
|
|
25823
|
+
// authentication BearerAuth required
|
|
25824
|
+
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
25825
|
+
|
|
25805
25826
|
|
|
25806
25827
|
|
|
25807
25828
|
if (authorization != null) {
|
|
@@ -25825,14 +25846,14 @@ export const AnalyticsRulesApiAxiosParamCreator = function (configuration?: Conf
|
|
|
25825
25846
|
* @param {*} [options] Override http request option.
|
|
25826
25847
|
* @throws {RequiredError}
|
|
25827
25848
|
*/
|
|
25828
|
-
|
|
25849
|
+
adminV1StoresXStoreIDAnalyticsRulesSearchItemsPost: async (authorization: string, xStoreID: string, dataTypesSearchRuleItemsRequest: DataTypesSearchRuleItemsRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
25829
25850
|
// verify required parameter 'authorization' is not null or undefined
|
|
25830
|
-
assertParamExists('
|
|
25851
|
+
assertParamExists('adminV1StoresXStoreIDAnalyticsRulesSearchItemsPost', 'authorization', authorization)
|
|
25831
25852
|
// verify required parameter 'xStoreID' is not null or undefined
|
|
25832
|
-
assertParamExists('
|
|
25853
|
+
assertParamExists('adminV1StoresXStoreIDAnalyticsRulesSearchItemsPost', 'xStoreID', xStoreID)
|
|
25833
25854
|
// verify required parameter 'dataTypesSearchRuleItemsRequest' is not null or undefined
|
|
25834
|
-
assertParamExists('
|
|
25835
|
-
const localVarPath = `/
|
|
25855
|
+
assertParamExists('adminV1StoresXStoreIDAnalyticsRulesSearchItemsPost', 'dataTypesSearchRuleItemsRequest', dataTypesSearchRuleItemsRequest)
|
|
25856
|
+
const localVarPath = `/admin/v1/stores/{xStoreID}/analytics/rules/search-items`
|
|
25836
25857
|
.replace(`{${"xStoreID"}}`, encodeURIComponent(String(xStoreID)));
|
|
25837
25858
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
25838
25859
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -25845,6 +25866,9 @@ export const AnalyticsRulesApiAxiosParamCreator = function (configuration?: Conf
|
|
|
25845
25866
|
const localVarHeaderParameter = {} as any;
|
|
25846
25867
|
const localVarQueryParameter = {} as any;
|
|
25847
25868
|
|
|
25869
|
+
// authentication BearerAuth required
|
|
25870
|
+
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
25871
|
+
|
|
25848
25872
|
|
|
25849
25873
|
|
|
25850
25874
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -25880,12 +25904,12 @@ export const AnalyticsRulesApiAxiosParamCreator = function (configuration?: Conf
|
|
|
25880
25904
|
* @param {*} [options] Override http request option.
|
|
25881
25905
|
* @throws {RequiredError}
|
|
25882
25906
|
*/
|
|
25883
|
-
|
|
25907
|
+
adminV1StoresXstoreidAnalyticsRulesGet: async (authorization: string, xstoreid: string, storeId?: number, collectionName?: string, isActive?: boolean, page?: number, pageSize?: number, limit?: number, offset?: number, sortBy?: string, sortOrder?: string, searchQuery?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
25884
25908
|
// verify required parameter 'authorization' is not null or undefined
|
|
25885
|
-
assertParamExists('
|
|
25909
|
+
assertParamExists('adminV1StoresXstoreidAnalyticsRulesGet', 'authorization', authorization)
|
|
25886
25910
|
// verify required parameter 'xstoreid' is not null or undefined
|
|
25887
|
-
assertParamExists('
|
|
25888
|
-
const localVarPath = `/
|
|
25911
|
+
assertParamExists('adminV1StoresXstoreidAnalyticsRulesGet', 'xstoreid', xstoreid)
|
|
25912
|
+
const localVarPath = `/admin/v1/stores/{xstoreid}/analytics/rules`
|
|
25889
25913
|
.replace(`{${"xstoreid"}}`, encodeURIComponent(String(xstoreid)));
|
|
25890
25914
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
25891
25915
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -25898,6 +25922,9 @@ export const AnalyticsRulesApiAxiosParamCreator = function (configuration?: Conf
|
|
|
25898
25922
|
const localVarHeaderParameter = {} as any;
|
|
25899
25923
|
const localVarQueryParameter = {} as any;
|
|
25900
25924
|
|
|
25925
|
+
// authentication BearerAuth required
|
|
25926
|
+
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
25927
|
+
|
|
25901
25928
|
if (storeId !== undefined) {
|
|
25902
25929
|
localVarQueryParameter['store_id'] = storeId;
|
|
25903
25930
|
}
|
|
@@ -25961,14 +25988,14 @@ export const AnalyticsRulesApiAxiosParamCreator = function (configuration?: Conf
|
|
|
25961
25988
|
* @param {*} [options] Override http request option.
|
|
25962
25989
|
* @throws {RequiredError}
|
|
25963
25990
|
*/
|
|
25964
|
-
|
|
25991
|
+
adminV1StoresXstoreidAnalyticsRulesPost: async (authorization: string, xstoreid: string, dataTypesCreateAnalyticsRuleRequest: DataTypesCreateAnalyticsRuleRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
25965
25992
|
// verify required parameter 'authorization' is not null or undefined
|
|
25966
|
-
assertParamExists('
|
|
25993
|
+
assertParamExists('adminV1StoresXstoreidAnalyticsRulesPost', 'authorization', authorization)
|
|
25967
25994
|
// verify required parameter 'xstoreid' is not null or undefined
|
|
25968
|
-
assertParamExists('
|
|
25995
|
+
assertParamExists('adminV1StoresXstoreidAnalyticsRulesPost', 'xstoreid', xstoreid)
|
|
25969
25996
|
// verify required parameter 'dataTypesCreateAnalyticsRuleRequest' is not null or undefined
|
|
25970
|
-
assertParamExists('
|
|
25971
|
-
const localVarPath = `/
|
|
25997
|
+
assertParamExists('adminV1StoresXstoreidAnalyticsRulesPost', 'dataTypesCreateAnalyticsRuleRequest', dataTypesCreateAnalyticsRuleRequest)
|
|
25998
|
+
const localVarPath = `/admin/v1/stores/{xstoreid}/analytics/rules`
|
|
25972
25999
|
.replace(`{${"xstoreid"}}`, encodeURIComponent(String(xstoreid)));
|
|
25973
26000
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
25974
26001
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -25981,6 +26008,9 @@ export const AnalyticsRulesApiAxiosParamCreator = function (configuration?: Conf
|
|
|
25981
26008
|
const localVarHeaderParameter = {} as any;
|
|
25982
26009
|
const localVarQueryParameter = {} as any;
|
|
25983
26010
|
|
|
26011
|
+
// authentication BearerAuth required
|
|
26012
|
+
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
26013
|
+
|
|
25984
26014
|
|
|
25985
26015
|
|
|
25986
26016
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -26007,14 +26037,14 @@ export const AnalyticsRulesApiAxiosParamCreator = function (configuration?: Conf
|
|
|
26007
26037
|
* @param {*} [options] Override http request option.
|
|
26008
26038
|
* @throws {RequiredError}
|
|
26009
26039
|
*/
|
|
26010
|
-
|
|
26040
|
+
adminV1StoresXstoreidAnalyticsRulesRuleIdDelete: async (authorization: string, xstoreid: string, ruleId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
26011
26041
|
// verify required parameter 'authorization' is not null or undefined
|
|
26012
|
-
assertParamExists('
|
|
26042
|
+
assertParamExists('adminV1StoresXstoreidAnalyticsRulesRuleIdDelete', 'authorization', authorization)
|
|
26013
26043
|
// verify required parameter 'xstoreid' is not null or undefined
|
|
26014
|
-
assertParamExists('
|
|
26044
|
+
assertParamExists('adminV1StoresXstoreidAnalyticsRulesRuleIdDelete', 'xstoreid', xstoreid)
|
|
26015
26045
|
// verify required parameter 'ruleId' is not null or undefined
|
|
26016
|
-
assertParamExists('
|
|
26017
|
-
const localVarPath = `/
|
|
26046
|
+
assertParamExists('adminV1StoresXstoreidAnalyticsRulesRuleIdDelete', 'ruleId', ruleId)
|
|
26047
|
+
const localVarPath = `/admin/v1/stores/{xstoreid}/analytics/rules/{ruleId}`
|
|
26018
26048
|
.replace(`{${"xstoreid"}}`, encodeURIComponent(String(xstoreid)))
|
|
26019
26049
|
.replace(`{${"ruleId"}}`, encodeURIComponent(String(ruleId)));
|
|
26020
26050
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -26028,6 +26058,9 @@ export const AnalyticsRulesApiAxiosParamCreator = function (configuration?: Conf
|
|
|
26028
26058
|
const localVarHeaderParameter = {} as any;
|
|
26029
26059
|
const localVarQueryParameter = {} as any;
|
|
26030
26060
|
|
|
26061
|
+
// authentication BearerAuth required
|
|
26062
|
+
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
26063
|
+
|
|
26031
26064
|
|
|
26032
26065
|
|
|
26033
26066
|
if (authorization != null) {
|
|
@@ -26051,14 +26084,14 @@ export const AnalyticsRulesApiAxiosParamCreator = function (configuration?: Conf
|
|
|
26051
26084
|
* @param {*} [options] Override http request option.
|
|
26052
26085
|
* @throws {RequiredError}
|
|
26053
26086
|
*/
|
|
26054
|
-
|
|
26087
|
+
adminV1StoresXstoreidAnalyticsRulesRuleIdGet: async (authorization: string, xstoreid: string, ruleId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
26055
26088
|
// verify required parameter 'authorization' is not null or undefined
|
|
26056
|
-
assertParamExists('
|
|
26089
|
+
assertParamExists('adminV1StoresXstoreidAnalyticsRulesRuleIdGet', 'authorization', authorization)
|
|
26057
26090
|
// verify required parameter 'xstoreid' is not null or undefined
|
|
26058
|
-
assertParamExists('
|
|
26091
|
+
assertParamExists('adminV1StoresXstoreidAnalyticsRulesRuleIdGet', 'xstoreid', xstoreid)
|
|
26059
26092
|
// verify required parameter 'ruleId' is not null or undefined
|
|
26060
|
-
assertParamExists('
|
|
26061
|
-
const localVarPath = `/
|
|
26093
|
+
assertParamExists('adminV1StoresXstoreidAnalyticsRulesRuleIdGet', 'ruleId', ruleId)
|
|
26094
|
+
const localVarPath = `/admin/v1/stores/{xstoreid}/analytics/rules/{ruleId}`
|
|
26062
26095
|
.replace(`{${"xstoreid"}}`, encodeURIComponent(String(xstoreid)))
|
|
26063
26096
|
.replace(`{${"ruleId"}}`, encodeURIComponent(String(ruleId)));
|
|
26064
26097
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -26072,6 +26105,9 @@ export const AnalyticsRulesApiAxiosParamCreator = function (configuration?: Conf
|
|
|
26072
26105
|
const localVarHeaderParameter = {} as any;
|
|
26073
26106
|
const localVarQueryParameter = {} as any;
|
|
26074
26107
|
|
|
26108
|
+
// authentication BearerAuth required
|
|
26109
|
+
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
26110
|
+
|
|
26075
26111
|
|
|
26076
26112
|
|
|
26077
26113
|
if (authorization != null) {
|
|
@@ -26096,16 +26132,16 @@ export const AnalyticsRulesApiAxiosParamCreator = function (configuration?: Conf
|
|
|
26096
26132
|
* @param {*} [options] Override http request option.
|
|
26097
26133
|
* @throws {RequiredError}
|
|
26098
26134
|
*/
|
|
26099
|
-
|
|
26135
|
+
adminV1StoresXstoreidAnalyticsRulesRuleIdPut: async (authorization: string, xstoreid: string, ruleId: string, dataTypesUpdateAnalyticsRuleRequest: DataTypesUpdateAnalyticsRuleRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
26100
26136
|
// verify required parameter 'authorization' is not null or undefined
|
|
26101
|
-
assertParamExists('
|
|
26137
|
+
assertParamExists('adminV1StoresXstoreidAnalyticsRulesRuleIdPut', 'authorization', authorization)
|
|
26102
26138
|
// verify required parameter 'xstoreid' is not null or undefined
|
|
26103
|
-
assertParamExists('
|
|
26139
|
+
assertParamExists('adminV1StoresXstoreidAnalyticsRulesRuleIdPut', 'xstoreid', xstoreid)
|
|
26104
26140
|
// verify required parameter 'ruleId' is not null or undefined
|
|
26105
|
-
assertParamExists('
|
|
26141
|
+
assertParamExists('adminV1StoresXstoreidAnalyticsRulesRuleIdPut', 'ruleId', ruleId)
|
|
26106
26142
|
// verify required parameter 'dataTypesUpdateAnalyticsRuleRequest' is not null or undefined
|
|
26107
|
-
assertParamExists('
|
|
26108
|
-
const localVarPath = `/
|
|
26143
|
+
assertParamExists('adminV1StoresXstoreidAnalyticsRulesRuleIdPut', 'dataTypesUpdateAnalyticsRuleRequest', dataTypesUpdateAnalyticsRuleRequest)
|
|
26144
|
+
const localVarPath = `/admin/v1/stores/{xstoreid}/analytics/rules/{ruleId}`
|
|
26109
26145
|
.replace(`{${"xstoreid"}}`, encodeURIComponent(String(xstoreid)))
|
|
26110
26146
|
.replace(`{${"ruleId"}}`, encodeURIComponent(String(ruleId)));
|
|
26111
26147
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -26119,6 +26155,9 @@ export const AnalyticsRulesApiAxiosParamCreator = function (configuration?: Conf
|
|
|
26119
26155
|
const localVarHeaderParameter = {} as any;
|
|
26120
26156
|
const localVarQueryParameter = {} as any;
|
|
26121
26157
|
|
|
26158
|
+
// authentication BearerAuth required
|
|
26159
|
+
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
26160
|
+
|
|
26122
26161
|
|
|
26123
26162
|
|
|
26124
26163
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -26145,14 +26184,14 @@ export const AnalyticsRulesApiAxiosParamCreator = function (configuration?: Conf
|
|
|
26145
26184
|
* @param {*} [options] Override http request option.
|
|
26146
26185
|
* @throws {RequiredError}
|
|
26147
26186
|
*/
|
|
26148
|
-
|
|
26187
|
+
adminV1StoresXstoreidAnalyticsRulesSyncPost: async (authorization: string, xstoreid: string, dataTypesAnalyticsRuleSyncRequest: DataTypesAnalyticsRuleSyncRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
26149
26188
|
// verify required parameter 'authorization' is not null or undefined
|
|
26150
|
-
assertParamExists('
|
|
26189
|
+
assertParamExists('adminV1StoresXstoreidAnalyticsRulesSyncPost', 'authorization', authorization)
|
|
26151
26190
|
// verify required parameter 'xstoreid' is not null or undefined
|
|
26152
|
-
assertParamExists('
|
|
26191
|
+
assertParamExists('adminV1StoresXstoreidAnalyticsRulesSyncPost', 'xstoreid', xstoreid)
|
|
26153
26192
|
// verify required parameter 'dataTypesAnalyticsRuleSyncRequest' is not null or undefined
|
|
26154
|
-
assertParamExists('
|
|
26155
|
-
const localVarPath = `/
|
|
26193
|
+
assertParamExists('adminV1StoresXstoreidAnalyticsRulesSyncPost', 'dataTypesAnalyticsRuleSyncRequest', dataTypesAnalyticsRuleSyncRequest)
|
|
26194
|
+
const localVarPath = `/admin/v1/stores/{xstoreid}/analytics/rules/sync`
|
|
26156
26195
|
.replace(`{${"xstoreid"}}`, encodeURIComponent(String(xstoreid)));
|
|
26157
26196
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
26158
26197
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -26165,6 +26204,9 @@ export const AnalyticsRulesApiAxiosParamCreator = function (configuration?: Conf
|
|
|
26165
26204
|
const localVarHeaderParameter = {} as any;
|
|
26166
26205
|
const localVarQueryParameter = {} as any;
|
|
26167
26206
|
|
|
26207
|
+
// authentication BearerAuth required
|
|
26208
|
+
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
26209
|
+
|
|
26168
26210
|
|
|
26169
26211
|
|
|
26170
26212
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -26209,10 +26251,10 @@ export const AnalyticsRulesApiFp = function(configuration?: Configuration) {
|
|
|
26209
26251
|
* @param {*} [options] Override http request option.
|
|
26210
26252
|
* @throws {RequiredError}
|
|
26211
26253
|
*/
|
|
26212
|
-
async
|
|
26213
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
26254
|
+
async adminV1AnalyticsRulesGet(authorization: string, storeId?: number, collectionName?: string, isActive?: boolean, page?: number, pageSize?: number, limit?: number, offset?: number, sortBy?: string, sortOrder?: string, searchQuery?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesAnalyticsRuleListResponse>> {
|
|
26255
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.adminV1AnalyticsRulesGet(authorization, storeId, collectionName, isActive, page, pageSize, limit, offset, sortBy, sortOrder, searchQuery, options);
|
|
26214
26256
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
26215
|
-
const localVarOperationServerBasePath = operationServerMap['AnalyticsRulesApi.
|
|
26257
|
+
const localVarOperationServerBasePath = operationServerMap['AnalyticsRulesApi.adminV1AnalyticsRulesGet']?.[localVarOperationServerIndex]?.url;
|
|
26216
26258
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
26217
26259
|
},
|
|
26218
26260
|
/**
|
|
@@ -26223,10 +26265,10 @@ export const AnalyticsRulesApiFp = function(configuration?: Configuration) {
|
|
|
26223
26265
|
* @param {*} [options] Override http request option.
|
|
26224
26266
|
* @throws {RequiredError}
|
|
26225
26267
|
*/
|
|
26226
|
-
async
|
|
26227
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
26268
|
+
async adminV1AnalyticsRulesPost(authorization: string, dataTypesCreateAnalyticsRuleRequest: DataTypesCreateAnalyticsRuleRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesAnalyticsRuleResponse>> {
|
|
26269
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.adminV1AnalyticsRulesPost(authorization, dataTypesCreateAnalyticsRuleRequest, options);
|
|
26228
26270
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
26229
|
-
const localVarOperationServerBasePath = operationServerMap['AnalyticsRulesApi.
|
|
26271
|
+
const localVarOperationServerBasePath = operationServerMap['AnalyticsRulesApi.adminV1AnalyticsRulesPost']?.[localVarOperationServerIndex]?.url;
|
|
26230
26272
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
26231
26273
|
},
|
|
26232
26274
|
/**
|
|
@@ -26237,10 +26279,10 @@ export const AnalyticsRulesApiFp = function(configuration?: Configuration) {
|
|
|
26237
26279
|
* @param {*} [options] Override http request option.
|
|
26238
26280
|
* @throws {RequiredError}
|
|
26239
26281
|
*/
|
|
26240
|
-
async
|
|
26241
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
26282
|
+
async adminV1AnalyticsRulesRuleIdDelete(authorization: string, ruleId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<{ [key: string]: any; }>> {
|
|
26283
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.adminV1AnalyticsRulesRuleIdDelete(authorization, ruleId, options);
|
|
26242
26284
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
26243
|
-
const localVarOperationServerBasePath = operationServerMap['AnalyticsRulesApi.
|
|
26285
|
+
const localVarOperationServerBasePath = operationServerMap['AnalyticsRulesApi.adminV1AnalyticsRulesRuleIdDelete']?.[localVarOperationServerIndex]?.url;
|
|
26244
26286
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
26245
26287
|
},
|
|
26246
26288
|
/**
|
|
@@ -26251,10 +26293,10 @@ export const AnalyticsRulesApiFp = function(configuration?: Configuration) {
|
|
|
26251
26293
|
* @param {*} [options] Override http request option.
|
|
26252
26294
|
* @throws {RequiredError}
|
|
26253
26295
|
*/
|
|
26254
|
-
async
|
|
26255
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
26296
|
+
async adminV1AnalyticsRulesRuleIdGet(authorization: string, ruleId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesAnalyticsRuleResponse>> {
|
|
26297
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.adminV1AnalyticsRulesRuleIdGet(authorization, ruleId, options);
|
|
26256
26298
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
26257
|
-
const localVarOperationServerBasePath = operationServerMap['AnalyticsRulesApi.
|
|
26299
|
+
const localVarOperationServerBasePath = operationServerMap['AnalyticsRulesApi.adminV1AnalyticsRulesRuleIdGet']?.[localVarOperationServerIndex]?.url;
|
|
26258
26300
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
26259
26301
|
},
|
|
26260
26302
|
/**
|
|
@@ -26266,10 +26308,10 @@ export const AnalyticsRulesApiFp = function(configuration?: Configuration) {
|
|
|
26266
26308
|
* @param {*} [options] Override http request option.
|
|
26267
26309
|
* @throws {RequiredError}
|
|
26268
26310
|
*/
|
|
26269
|
-
async
|
|
26270
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
26311
|
+
async adminV1AnalyticsRulesRuleIdPut(authorization: string, ruleId: string, dataTypesUpdateAnalyticsRuleRequest: DataTypesUpdateAnalyticsRuleRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesAnalyticsRuleResponse>> {
|
|
26312
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.adminV1AnalyticsRulesRuleIdPut(authorization, ruleId, dataTypesUpdateAnalyticsRuleRequest, options);
|
|
26271
26313
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
26272
|
-
const localVarOperationServerBasePath = operationServerMap['AnalyticsRulesApi.
|
|
26314
|
+
const localVarOperationServerBasePath = operationServerMap['AnalyticsRulesApi.adminV1AnalyticsRulesRuleIdPut']?.[localVarOperationServerIndex]?.url;
|
|
26273
26315
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
26274
26316
|
},
|
|
26275
26317
|
/**
|
|
@@ -26280,10 +26322,10 @@ export const AnalyticsRulesApiFp = function(configuration?: Configuration) {
|
|
|
26280
26322
|
* @param {*} [options] Override http request option.
|
|
26281
26323
|
* @throws {RequiredError}
|
|
26282
26324
|
*/
|
|
26283
|
-
async
|
|
26284
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
26325
|
+
async adminV1AnalyticsRulesSyncPost(authorization: string, dataTypesAnalyticsRuleSyncRequest: DataTypesAnalyticsRuleSyncRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesAnalyticsRuleSyncResponse>> {
|
|
26326
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.adminV1AnalyticsRulesSyncPost(authorization, dataTypesAnalyticsRuleSyncRequest, options);
|
|
26285
26327
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
26286
|
-
const localVarOperationServerBasePath = operationServerMap['AnalyticsRulesApi.
|
|
26328
|
+
const localVarOperationServerBasePath = operationServerMap['AnalyticsRulesApi.adminV1AnalyticsRulesSyncPost']?.[localVarOperationServerIndex]?.url;
|
|
26287
26329
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
26288
26330
|
},
|
|
26289
26331
|
/**
|
|
@@ -26295,10 +26337,10 @@ export const AnalyticsRulesApiFp = function(configuration?: Configuration) {
|
|
|
26295
26337
|
* @param {*} [options] Override http request option.
|
|
26296
26338
|
* @throws {RequiredError}
|
|
26297
26339
|
*/
|
|
26298
|
-
async
|
|
26299
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
26340
|
+
async adminV1StoresXStoreIDAnalyticsRulesItemsItemIdGet(authorization: string, xStoreID: string, itemId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesSearchRuleItem>> {
|
|
26341
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.adminV1StoresXStoreIDAnalyticsRulesItemsItemIdGet(authorization, xStoreID, itemId, options);
|
|
26300
26342
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
26301
|
-
const localVarOperationServerBasePath = operationServerMap['AnalyticsRulesApi.
|
|
26343
|
+
const localVarOperationServerBasePath = operationServerMap['AnalyticsRulesApi.adminV1StoresXStoreIDAnalyticsRulesItemsItemIdGet']?.[localVarOperationServerIndex]?.url;
|
|
26302
26344
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
26303
26345
|
},
|
|
26304
26346
|
/**
|
|
@@ -26310,10 +26352,10 @@ export const AnalyticsRulesApiFp = function(configuration?: Configuration) {
|
|
|
26310
26352
|
* @param {*} [options] Override http request option.
|
|
26311
26353
|
* @throws {RequiredError}
|
|
26312
26354
|
*/
|
|
26313
|
-
async
|
|
26314
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
26355
|
+
async adminV1StoresXStoreIDAnalyticsRulesSearchItemsPost(authorization: string, xStoreID: string, dataTypesSearchRuleItemsRequest: DataTypesSearchRuleItemsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesSearchRuleItemsResponse>> {
|
|
26356
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.adminV1StoresXStoreIDAnalyticsRulesSearchItemsPost(authorization, xStoreID, dataTypesSearchRuleItemsRequest, options);
|
|
26315
26357
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
26316
|
-
const localVarOperationServerBasePath = operationServerMap['AnalyticsRulesApi.
|
|
26358
|
+
const localVarOperationServerBasePath = operationServerMap['AnalyticsRulesApi.adminV1StoresXStoreIDAnalyticsRulesSearchItemsPost']?.[localVarOperationServerIndex]?.url;
|
|
26317
26359
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
26318
26360
|
},
|
|
26319
26361
|
/**
|
|
@@ -26334,10 +26376,10 @@ export const AnalyticsRulesApiFp = function(configuration?: Configuration) {
|
|
|
26334
26376
|
* @param {*} [options] Override http request option.
|
|
26335
26377
|
* @throws {RequiredError}
|
|
26336
26378
|
*/
|
|
26337
|
-
async
|
|
26338
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
26379
|
+
async adminV1StoresXstoreidAnalyticsRulesGet(authorization: string, xstoreid: string, storeId?: number, collectionName?: string, isActive?: boolean, page?: number, pageSize?: number, limit?: number, offset?: number, sortBy?: string, sortOrder?: string, searchQuery?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesAnalyticsRuleListResponse>> {
|
|
26380
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.adminV1StoresXstoreidAnalyticsRulesGet(authorization, xstoreid, storeId, collectionName, isActive, page, pageSize, limit, offset, sortBy, sortOrder, searchQuery, options);
|
|
26339
26381
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
26340
|
-
const localVarOperationServerBasePath = operationServerMap['AnalyticsRulesApi.
|
|
26382
|
+
const localVarOperationServerBasePath = operationServerMap['AnalyticsRulesApi.adminV1StoresXstoreidAnalyticsRulesGet']?.[localVarOperationServerIndex]?.url;
|
|
26341
26383
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
26342
26384
|
},
|
|
26343
26385
|
/**
|
|
@@ -26349,10 +26391,10 @@ export const AnalyticsRulesApiFp = function(configuration?: Configuration) {
|
|
|
26349
26391
|
* @param {*} [options] Override http request option.
|
|
26350
26392
|
* @throws {RequiredError}
|
|
26351
26393
|
*/
|
|
26352
|
-
async
|
|
26353
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
26394
|
+
async adminV1StoresXstoreidAnalyticsRulesPost(authorization: string, xstoreid: string, dataTypesCreateAnalyticsRuleRequest: DataTypesCreateAnalyticsRuleRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesAnalyticsRuleResponse>> {
|
|
26395
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.adminV1StoresXstoreidAnalyticsRulesPost(authorization, xstoreid, dataTypesCreateAnalyticsRuleRequest, options);
|
|
26354
26396
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
26355
|
-
const localVarOperationServerBasePath = operationServerMap['AnalyticsRulesApi.
|
|
26397
|
+
const localVarOperationServerBasePath = operationServerMap['AnalyticsRulesApi.adminV1StoresXstoreidAnalyticsRulesPost']?.[localVarOperationServerIndex]?.url;
|
|
26356
26398
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
26357
26399
|
},
|
|
26358
26400
|
/**
|
|
@@ -26364,10 +26406,10 @@ export const AnalyticsRulesApiFp = function(configuration?: Configuration) {
|
|
|
26364
26406
|
* @param {*} [options] Override http request option.
|
|
26365
26407
|
* @throws {RequiredError}
|
|
26366
26408
|
*/
|
|
26367
|
-
async
|
|
26368
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
26409
|
+
async adminV1StoresXstoreidAnalyticsRulesRuleIdDelete(authorization: string, xstoreid: string, ruleId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<{ [key: string]: any; }>> {
|
|
26410
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.adminV1StoresXstoreidAnalyticsRulesRuleIdDelete(authorization, xstoreid, ruleId, options);
|
|
26369
26411
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
26370
|
-
const localVarOperationServerBasePath = operationServerMap['AnalyticsRulesApi.
|
|
26412
|
+
const localVarOperationServerBasePath = operationServerMap['AnalyticsRulesApi.adminV1StoresXstoreidAnalyticsRulesRuleIdDelete']?.[localVarOperationServerIndex]?.url;
|
|
26371
26413
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
26372
26414
|
},
|
|
26373
26415
|
/**
|
|
@@ -26379,10 +26421,10 @@ export const AnalyticsRulesApiFp = function(configuration?: Configuration) {
|
|
|
26379
26421
|
* @param {*} [options] Override http request option.
|
|
26380
26422
|
* @throws {RequiredError}
|
|
26381
26423
|
*/
|
|
26382
|
-
async
|
|
26383
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
26424
|
+
async adminV1StoresXstoreidAnalyticsRulesRuleIdGet(authorization: string, xstoreid: string, ruleId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesAnalyticsRuleResponse>> {
|
|
26425
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.adminV1StoresXstoreidAnalyticsRulesRuleIdGet(authorization, xstoreid, ruleId, options);
|
|
26384
26426
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
26385
|
-
const localVarOperationServerBasePath = operationServerMap['AnalyticsRulesApi.
|
|
26427
|
+
const localVarOperationServerBasePath = operationServerMap['AnalyticsRulesApi.adminV1StoresXstoreidAnalyticsRulesRuleIdGet']?.[localVarOperationServerIndex]?.url;
|
|
26386
26428
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
26387
26429
|
},
|
|
26388
26430
|
/**
|
|
@@ -26395,10 +26437,10 @@ export const AnalyticsRulesApiFp = function(configuration?: Configuration) {
|
|
|
26395
26437
|
* @param {*} [options] Override http request option.
|
|
26396
26438
|
* @throws {RequiredError}
|
|
26397
26439
|
*/
|
|
26398
|
-
async
|
|
26399
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
26440
|
+
async adminV1StoresXstoreidAnalyticsRulesRuleIdPut(authorization: string, xstoreid: string, ruleId: string, dataTypesUpdateAnalyticsRuleRequest: DataTypesUpdateAnalyticsRuleRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesAnalyticsRuleResponse>> {
|
|
26441
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.adminV1StoresXstoreidAnalyticsRulesRuleIdPut(authorization, xstoreid, ruleId, dataTypesUpdateAnalyticsRuleRequest, options);
|
|
26400
26442
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
26401
|
-
const localVarOperationServerBasePath = operationServerMap['AnalyticsRulesApi.
|
|
26443
|
+
const localVarOperationServerBasePath = operationServerMap['AnalyticsRulesApi.adminV1StoresXstoreidAnalyticsRulesRuleIdPut']?.[localVarOperationServerIndex]?.url;
|
|
26402
26444
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
26403
26445
|
},
|
|
26404
26446
|
/**
|
|
@@ -26410,10 +26452,10 @@ export const AnalyticsRulesApiFp = function(configuration?: Configuration) {
|
|
|
26410
26452
|
* @param {*} [options] Override http request option.
|
|
26411
26453
|
* @throws {RequiredError}
|
|
26412
26454
|
*/
|
|
26413
|
-
async
|
|
26414
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
26455
|
+
async adminV1StoresXstoreidAnalyticsRulesSyncPost(authorization: string, xstoreid: string, dataTypesAnalyticsRuleSyncRequest: DataTypesAnalyticsRuleSyncRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesAnalyticsRuleSyncResponse>> {
|
|
26456
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.adminV1StoresXstoreidAnalyticsRulesSyncPost(authorization, xstoreid, dataTypesAnalyticsRuleSyncRequest, options);
|
|
26415
26457
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
26416
|
-
const localVarOperationServerBasePath = operationServerMap['AnalyticsRulesApi.
|
|
26458
|
+
const localVarOperationServerBasePath = operationServerMap['AnalyticsRulesApi.adminV1StoresXstoreidAnalyticsRulesSyncPost']?.[localVarOperationServerIndex]?.url;
|
|
26417
26459
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
26418
26460
|
},
|
|
26419
26461
|
}
|
|
@@ -26443,8 +26485,8 @@ export const AnalyticsRulesApiFactory = function (configuration?: Configuration,
|
|
|
26443
26485
|
* @param {*} [options] Override http request option.
|
|
26444
26486
|
* @throws {RequiredError}
|
|
26445
26487
|
*/
|
|
26446
|
-
|
|
26447
|
-
return localVarFp.
|
|
26488
|
+
adminV1AnalyticsRulesGet(authorization: string, storeId?: number, collectionName?: string, isActive?: boolean, page?: number, pageSize?: number, limit?: number, offset?: number, sortBy?: string, sortOrder?: string, searchQuery?: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesAnalyticsRuleListResponse> {
|
|
26489
|
+
return localVarFp.adminV1AnalyticsRulesGet(authorization, storeId, collectionName, isActive, page, pageSize, limit, offset, sortBy, sortOrder, searchQuery, options).then((request) => request(axios, basePath));
|
|
26448
26490
|
},
|
|
26449
26491
|
/**
|
|
26450
26492
|
* Create a new analytics rule for Typesense curation. Rules define how search results should be modified (promoted, hidden, filtered, sorted) based on query conditions.
|
|
@@ -26454,8 +26496,8 @@ export const AnalyticsRulesApiFactory = function (configuration?: Configuration,
|
|
|
26454
26496
|
* @param {*} [options] Override http request option.
|
|
26455
26497
|
* @throws {RequiredError}
|
|
26456
26498
|
*/
|
|
26457
|
-
|
|
26458
|
-
return localVarFp.
|
|
26499
|
+
adminV1AnalyticsRulesPost(authorization: string, dataTypesCreateAnalyticsRuleRequest: DataTypesCreateAnalyticsRuleRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesAnalyticsRuleResponse> {
|
|
26500
|
+
return localVarFp.adminV1AnalyticsRulesPost(authorization, dataTypesCreateAnalyticsRuleRequest, options).then((request) => request(axios, basePath));
|
|
26459
26501
|
},
|
|
26460
26502
|
/**
|
|
26461
26503
|
* Permanently delete an analytics rule from both the database and Typesense. This operation cannot be undone.
|
|
@@ -26465,8 +26507,8 @@ export const AnalyticsRulesApiFactory = function (configuration?: Configuration,
|
|
|
26465
26507
|
* @param {*} [options] Override http request option.
|
|
26466
26508
|
* @throws {RequiredError}
|
|
26467
26509
|
*/
|
|
26468
|
-
|
|
26469
|
-
return localVarFp.
|
|
26510
|
+
adminV1AnalyticsRulesRuleIdDelete(authorization: string, ruleId: string, options?: RawAxiosRequestConfig): AxiosPromise<{ [key: string]: any; }> {
|
|
26511
|
+
return localVarFp.adminV1AnalyticsRulesRuleIdDelete(authorization, ruleId, options).then((request) => request(axios, basePath));
|
|
26470
26512
|
},
|
|
26471
26513
|
/**
|
|
26472
26514
|
* Retrieve a specific analytics rule by its ID. Returns the complete rule configuration including Typesense override actions.
|
|
@@ -26476,8 +26518,8 @@ export const AnalyticsRulesApiFactory = function (configuration?: Configuration,
|
|
|
26476
26518
|
* @param {*} [options] Override http request option.
|
|
26477
26519
|
* @throws {RequiredError}
|
|
26478
26520
|
*/
|
|
26479
|
-
|
|
26480
|
-
return localVarFp.
|
|
26521
|
+
adminV1AnalyticsRulesRuleIdGet(authorization: string, ruleId: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesAnalyticsRuleResponse> {
|
|
26522
|
+
return localVarFp.adminV1AnalyticsRulesRuleIdGet(authorization, ruleId, options).then((request) => request(axios, basePath));
|
|
26481
26523
|
},
|
|
26482
26524
|
/**
|
|
26483
26525
|
* Update an existing analytics rule. Supports partial updates. When is_active is set to false, the rule is removed from Typesense. When is_active is set to true, the rule is synced to Typesense.
|
|
@@ -26488,8 +26530,8 @@ export const AnalyticsRulesApiFactory = function (configuration?: Configuration,
|
|
|
26488
26530
|
* @param {*} [options] Override http request option.
|
|
26489
26531
|
* @throws {RequiredError}
|
|
26490
26532
|
*/
|
|
26491
|
-
|
|
26492
|
-
return localVarFp.
|
|
26533
|
+
adminV1AnalyticsRulesRuleIdPut(authorization: string, ruleId: string, dataTypesUpdateAnalyticsRuleRequest: DataTypesUpdateAnalyticsRuleRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesAnalyticsRuleResponse> {
|
|
26534
|
+
return localVarFp.adminV1AnalyticsRulesRuleIdPut(authorization, ruleId, dataTypesUpdateAnalyticsRuleRequest, options).then((request) => request(axios, basePath));
|
|
26493
26535
|
},
|
|
26494
26536
|
/**
|
|
26495
26537
|
* Manually synchronize analytics rules to Typesense. This endpoint can be used to force a sync of all active rules or specific rules to Typesense collections.
|
|
@@ -26499,8 +26541,8 @@ export const AnalyticsRulesApiFactory = function (configuration?: Configuration,
|
|
|
26499
26541
|
* @param {*} [options] Override http request option.
|
|
26500
26542
|
* @throws {RequiredError}
|
|
26501
26543
|
*/
|
|
26502
|
-
|
|
26503
|
-
return localVarFp.
|
|
26544
|
+
adminV1AnalyticsRulesSyncPost(authorization: string, dataTypesAnalyticsRuleSyncRequest: DataTypesAnalyticsRuleSyncRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesAnalyticsRuleSyncResponse> {
|
|
26545
|
+
return localVarFp.adminV1AnalyticsRulesSyncPost(authorization, dataTypesAnalyticsRuleSyncRequest, options).then((request) => request(axios, basePath));
|
|
26504
26546
|
},
|
|
26505
26547
|
/**
|
|
26506
26548
|
* Retrieve a specific item by its ID from the Typesense collection. Useful for fetching details of items already in rules or for direct item selection by ID. Uses Redis caching for fast performance.
|
|
@@ -26511,8 +26553,8 @@ export const AnalyticsRulesApiFactory = function (configuration?: Configuration,
|
|
|
26511
26553
|
* @param {*} [options] Override http request option.
|
|
26512
26554
|
* @throws {RequiredError}
|
|
26513
26555
|
*/
|
|
26514
|
-
|
|
26515
|
-
return localVarFp.
|
|
26556
|
+
adminV1StoresXStoreIDAnalyticsRulesItemsItemIdGet(authorization: string, xStoreID: string, itemId: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesSearchRuleItem> {
|
|
26557
|
+
return localVarFp.adminV1StoresXStoreIDAnalyticsRulesItemsItemIdGet(authorization, xStoreID, itemId, options).then((request) => request(axios, basePath));
|
|
26516
26558
|
},
|
|
26517
26559
|
/**
|
|
26518
26560
|
* Search through all items in the store\'s Typesense collection to find items that can be pinned or hidden in rules. Searches across ALL searchable attributes by analyzing Typesense schema. Uses Redis caching for fast performance (same as admin search API).
|
|
@@ -26523,8 +26565,8 @@ export const AnalyticsRulesApiFactory = function (configuration?: Configuration,
|
|
|
26523
26565
|
* @param {*} [options] Override http request option.
|
|
26524
26566
|
* @throws {RequiredError}
|
|
26525
26567
|
*/
|
|
26526
|
-
|
|
26527
|
-
return localVarFp.
|
|
26568
|
+
adminV1StoresXStoreIDAnalyticsRulesSearchItemsPost(authorization: string, xStoreID: string, dataTypesSearchRuleItemsRequest: DataTypesSearchRuleItemsRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesSearchRuleItemsResponse> {
|
|
26569
|
+
return localVarFp.adminV1StoresXStoreIDAnalyticsRulesSearchItemsPost(authorization, xStoreID, dataTypesSearchRuleItemsRequest, options).then((request) => request(axios, basePath));
|
|
26528
26570
|
},
|
|
26529
26571
|
/**
|
|
26530
26572
|
* Retrieve a paginated list of analytics rules with optional filtering by store, collection, and active status. Supports both page-based and offset-based pagination.
|
|
@@ -26544,8 +26586,8 @@ export const AnalyticsRulesApiFactory = function (configuration?: Configuration,
|
|
|
26544
26586
|
* @param {*} [options] Override http request option.
|
|
26545
26587
|
* @throws {RequiredError}
|
|
26546
26588
|
*/
|
|
26547
|
-
|
|
26548
|
-
return localVarFp.
|
|
26589
|
+
adminV1StoresXstoreidAnalyticsRulesGet(authorization: string, xstoreid: string, storeId?: number, collectionName?: string, isActive?: boolean, page?: number, pageSize?: number, limit?: number, offset?: number, sortBy?: string, sortOrder?: string, searchQuery?: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesAnalyticsRuleListResponse> {
|
|
26590
|
+
return localVarFp.adminV1StoresXstoreidAnalyticsRulesGet(authorization, xstoreid, storeId, collectionName, isActive, page, pageSize, limit, offset, sortBy, sortOrder, searchQuery, options).then((request) => request(axios, basePath));
|
|
26549
26591
|
},
|
|
26550
26592
|
/**
|
|
26551
26593
|
* Create a new analytics rule for Typesense curation. Rules define how search results should be modified (promoted, hidden, filtered, sorted) based on query conditions.
|
|
@@ -26556,8 +26598,8 @@ export const AnalyticsRulesApiFactory = function (configuration?: Configuration,
|
|
|
26556
26598
|
* @param {*} [options] Override http request option.
|
|
26557
26599
|
* @throws {RequiredError}
|
|
26558
26600
|
*/
|
|
26559
|
-
|
|
26560
|
-
return localVarFp.
|
|
26601
|
+
adminV1StoresXstoreidAnalyticsRulesPost(authorization: string, xstoreid: string, dataTypesCreateAnalyticsRuleRequest: DataTypesCreateAnalyticsRuleRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesAnalyticsRuleResponse> {
|
|
26602
|
+
return localVarFp.adminV1StoresXstoreidAnalyticsRulesPost(authorization, xstoreid, dataTypesCreateAnalyticsRuleRequest, options).then((request) => request(axios, basePath));
|
|
26561
26603
|
},
|
|
26562
26604
|
/**
|
|
26563
26605
|
* Permanently delete an analytics rule from both the database and Typesense. This operation cannot be undone.
|
|
@@ -26568,8 +26610,8 @@ export const AnalyticsRulesApiFactory = function (configuration?: Configuration,
|
|
|
26568
26610
|
* @param {*} [options] Override http request option.
|
|
26569
26611
|
* @throws {RequiredError}
|
|
26570
26612
|
*/
|
|
26571
|
-
|
|
26572
|
-
return localVarFp.
|
|
26613
|
+
adminV1StoresXstoreidAnalyticsRulesRuleIdDelete(authorization: string, xstoreid: string, ruleId: string, options?: RawAxiosRequestConfig): AxiosPromise<{ [key: string]: any; }> {
|
|
26614
|
+
return localVarFp.adminV1StoresXstoreidAnalyticsRulesRuleIdDelete(authorization, xstoreid, ruleId, options).then((request) => request(axios, basePath));
|
|
26573
26615
|
},
|
|
26574
26616
|
/**
|
|
26575
26617
|
* Retrieve a specific analytics rule by its ID. Returns the complete rule configuration including Typesense override actions.
|
|
@@ -26580,8 +26622,8 @@ export const AnalyticsRulesApiFactory = function (configuration?: Configuration,
|
|
|
26580
26622
|
* @param {*} [options] Override http request option.
|
|
26581
26623
|
* @throws {RequiredError}
|
|
26582
26624
|
*/
|
|
26583
|
-
|
|
26584
|
-
return localVarFp.
|
|
26625
|
+
adminV1StoresXstoreidAnalyticsRulesRuleIdGet(authorization: string, xstoreid: string, ruleId: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesAnalyticsRuleResponse> {
|
|
26626
|
+
return localVarFp.adminV1StoresXstoreidAnalyticsRulesRuleIdGet(authorization, xstoreid, ruleId, options).then((request) => request(axios, basePath));
|
|
26585
26627
|
},
|
|
26586
26628
|
/**
|
|
26587
26629
|
* Update an existing analytics rule. Supports partial updates. When is_active is set to false, the rule is removed from Typesense. When is_active is set to true, the rule is synced to Typesense.
|
|
@@ -26593,8 +26635,8 @@ export const AnalyticsRulesApiFactory = function (configuration?: Configuration,
|
|
|
26593
26635
|
* @param {*} [options] Override http request option.
|
|
26594
26636
|
* @throws {RequiredError}
|
|
26595
26637
|
*/
|
|
26596
|
-
|
|
26597
|
-
return localVarFp.
|
|
26638
|
+
adminV1StoresXstoreidAnalyticsRulesRuleIdPut(authorization: string, xstoreid: string, ruleId: string, dataTypesUpdateAnalyticsRuleRequest: DataTypesUpdateAnalyticsRuleRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesAnalyticsRuleResponse> {
|
|
26639
|
+
return localVarFp.adminV1StoresXstoreidAnalyticsRulesRuleIdPut(authorization, xstoreid, ruleId, dataTypesUpdateAnalyticsRuleRequest, options).then((request) => request(axios, basePath));
|
|
26598
26640
|
},
|
|
26599
26641
|
/**
|
|
26600
26642
|
* Manually synchronize analytics rules to Typesense. This endpoint can be used to force a sync of all active rules or specific rules to Typesense collections.
|
|
@@ -26605,8 +26647,8 @@ export const AnalyticsRulesApiFactory = function (configuration?: Configuration,
|
|
|
26605
26647
|
* @param {*} [options] Override http request option.
|
|
26606
26648
|
* @throws {RequiredError}
|
|
26607
26649
|
*/
|
|
26608
|
-
|
|
26609
|
-
return localVarFp.
|
|
26650
|
+
adminV1StoresXstoreidAnalyticsRulesSyncPost(authorization: string, xstoreid: string, dataTypesAnalyticsRuleSyncRequest: DataTypesAnalyticsRuleSyncRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesAnalyticsRuleSyncResponse> {
|
|
26651
|
+
return localVarFp.adminV1StoresXstoreidAnalyticsRulesSyncPost(authorization, xstoreid, dataTypesAnalyticsRuleSyncRequest, options).then((request) => request(axios, basePath));
|
|
26610
26652
|
},
|
|
26611
26653
|
};
|
|
26612
26654
|
};
|
|
@@ -26636,8 +26678,8 @@ export class AnalyticsRulesApi extends BaseAPI {
|
|
|
26636
26678
|
* @throws {RequiredError}
|
|
26637
26679
|
* @memberof AnalyticsRulesApi
|
|
26638
26680
|
*/
|
|
26639
|
-
public
|
|
26640
|
-
return AnalyticsRulesApiFp(this.configuration).
|
|
26681
|
+
public adminV1AnalyticsRulesGet(authorization: string, storeId?: number, collectionName?: string, isActive?: boolean, page?: number, pageSize?: number, limit?: number, offset?: number, sortBy?: string, sortOrder?: string, searchQuery?: string, options?: RawAxiosRequestConfig) {
|
|
26682
|
+
return AnalyticsRulesApiFp(this.configuration).adminV1AnalyticsRulesGet(authorization, storeId, collectionName, isActive, page, pageSize, limit, offset, sortBy, sortOrder, searchQuery, options).then((request) => request(this.axios, this.basePath));
|
|
26641
26683
|
}
|
|
26642
26684
|
|
|
26643
26685
|
/**
|
|
@@ -26649,8 +26691,8 @@ export class AnalyticsRulesApi extends BaseAPI {
|
|
|
26649
26691
|
* @throws {RequiredError}
|
|
26650
26692
|
* @memberof AnalyticsRulesApi
|
|
26651
26693
|
*/
|
|
26652
|
-
public
|
|
26653
|
-
return AnalyticsRulesApiFp(this.configuration).
|
|
26694
|
+
public adminV1AnalyticsRulesPost(authorization: string, dataTypesCreateAnalyticsRuleRequest: DataTypesCreateAnalyticsRuleRequest, options?: RawAxiosRequestConfig) {
|
|
26695
|
+
return AnalyticsRulesApiFp(this.configuration).adminV1AnalyticsRulesPost(authorization, dataTypesCreateAnalyticsRuleRequest, options).then((request) => request(this.axios, this.basePath));
|
|
26654
26696
|
}
|
|
26655
26697
|
|
|
26656
26698
|
/**
|
|
@@ -26662,8 +26704,8 @@ export class AnalyticsRulesApi extends BaseAPI {
|
|
|
26662
26704
|
* @throws {RequiredError}
|
|
26663
26705
|
* @memberof AnalyticsRulesApi
|
|
26664
26706
|
*/
|
|
26665
|
-
public
|
|
26666
|
-
return AnalyticsRulesApiFp(this.configuration).
|
|
26707
|
+
public adminV1AnalyticsRulesRuleIdDelete(authorization: string, ruleId: string, options?: RawAxiosRequestConfig) {
|
|
26708
|
+
return AnalyticsRulesApiFp(this.configuration).adminV1AnalyticsRulesRuleIdDelete(authorization, ruleId, options).then((request) => request(this.axios, this.basePath));
|
|
26667
26709
|
}
|
|
26668
26710
|
|
|
26669
26711
|
/**
|
|
@@ -26675,8 +26717,8 @@ export class AnalyticsRulesApi extends BaseAPI {
|
|
|
26675
26717
|
* @throws {RequiredError}
|
|
26676
26718
|
* @memberof AnalyticsRulesApi
|
|
26677
26719
|
*/
|
|
26678
|
-
public
|
|
26679
|
-
return AnalyticsRulesApiFp(this.configuration).
|
|
26720
|
+
public adminV1AnalyticsRulesRuleIdGet(authorization: string, ruleId: string, options?: RawAxiosRequestConfig) {
|
|
26721
|
+
return AnalyticsRulesApiFp(this.configuration).adminV1AnalyticsRulesRuleIdGet(authorization, ruleId, options).then((request) => request(this.axios, this.basePath));
|
|
26680
26722
|
}
|
|
26681
26723
|
|
|
26682
26724
|
/**
|
|
@@ -26689,8 +26731,8 @@ export class AnalyticsRulesApi extends BaseAPI {
|
|
|
26689
26731
|
* @throws {RequiredError}
|
|
26690
26732
|
* @memberof AnalyticsRulesApi
|
|
26691
26733
|
*/
|
|
26692
|
-
public
|
|
26693
|
-
return AnalyticsRulesApiFp(this.configuration).
|
|
26734
|
+
public adminV1AnalyticsRulesRuleIdPut(authorization: string, ruleId: string, dataTypesUpdateAnalyticsRuleRequest: DataTypesUpdateAnalyticsRuleRequest, options?: RawAxiosRequestConfig) {
|
|
26735
|
+
return AnalyticsRulesApiFp(this.configuration).adminV1AnalyticsRulesRuleIdPut(authorization, ruleId, dataTypesUpdateAnalyticsRuleRequest, options).then((request) => request(this.axios, this.basePath));
|
|
26694
26736
|
}
|
|
26695
26737
|
|
|
26696
26738
|
/**
|
|
@@ -26702,8 +26744,8 @@ export class AnalyticsRulesApi extends BaseAPI {
|
|
|
26702
26744
|
* @throws {RequiredError}
|
|
26703
26745
|
* @memberof AnalyticsRulesApi
|
|
26704
26746
|
*/
|
|
26705
|
-
public
|
|
26706
|
-
return AnalyticsRulesApiFp(this.configuration).
|
|
26747
|
+
public adminV1AnalyticsRulesSyncPost(authorization: string, dataTypesAnalyticsRuleSyncRequest: DataTypesAnalyticsRuleSyncRequest, options?: RawAxiosRequestConfig) {
|
|
26748
|
+
return AnalyticsRulesApiFp(this.configuration).adminV1AnalyticsRulesSyncPost(authorization, dataTypesAnalyticsRuleSyncRequest, options).then((request) => request(this.axios, this.basePath));
|
|
26707
26749
|
}
|
|
26708
26750
|
|
|
26709
26751
|
/**
|
|
@@ -26716,8 +26758,8 @@ export class AnalyticsRulesApi extends BaseAPI {
|
|
|
26716
26758
|
* @throws {RequiredError}
|
|
26717
26759
|
* @memberof AnalyticsRulesApi
|
|
26718
26760
|
*/
|
|
26719
|
-
public
|
|
26720
|
-
return AnalyticsRulesApiFp(this.configuration).
|
|
26761
|
+
public adminV1StoresXStoreIDAnalyticsRulesItemsItemIdGet(authorization: string, xStoreID: string, itemId: string, options?: RawAxiosRequestConfig) {
|
|
26762
|
+
return AnalyticsRulesApiFp(this.configuration).adminV1StoresXStoreIDAnalyticsRulesItemsItemIdGet(authorization, xStoreID, itemId, options).then((request) => request(this.axios, this.basePath));
|
|
26721
26763
|
}
|
|
26722
26764
|
|
|
26723
26765
|
/**
|
|
@@ -26730,8 +26772,8 @@ export class AnalyticsRulesApi extends BaseAPI {
|
|
|
26730
26772
|
* @throws {RequiredError}
|
|
26731
26773
|
* @memberof AnalyticsRulesApi
|
|
26732
26774
|
*/
|
|
26733
|
-
public
|
|
26734
|
-
return AnalyticsRulesApiFp(this.configuration).
|
|
26775
|
+
public adminV1StoresXStoreIDAnalyticsRulesSearchItemsPost(authorization: string, xStoreID: string, dataTypesSearchRuleItemsRequest: DataTypesSearchRuleItemsRequest, options?: RawAxiosRequestConfig) {
|
|
26776
|
+
return AnalyticsRulesApiFp(this.configuration).adminV1StoresXStoreIDAnalyticsRulesSearchItemsPost(authorization, xStoreID, dataTypesSearchRuleItemsRequest, options).then((request) => request(this.axios, this.basePath));
|
|
26735
26777
|
}
|
|
26736
26778
|
|
|
26737
26779
|
/**
|
|
@@ -26753,8 +26795,8 @@ export class AnalyticsRulesApi extends BaseAPI {
|
|
|
26753
26795
|
* @throws {RequiredError}
|
|
26754
26796
|
* @memberof AnalyticsRulesApi
|
|
26755
26797
|
*/
|
|
26756
|
-
public
|
|
26757
|
-
return AnalyticsRulesApiFp(this.configuration).
|
|
26798
|
+
public adminV1StoresXstoreidAnalyticsRulesGet(authorization: string, xstoreid: string, storeId?: number, collectionName?: string, isActive?: boolean, page?: number, pageSize?: number, limit?: number, offset?: number, sortBy?: string, sortOrder?: string, searchQuery?: string, options?: RawAxiosRequestConfig) {
|
|
26799
|
+
return AnalyticsRulesApiFp(this.configuration).adminV1StoresXstoreidAnalyticsRulesGet(authorization, xstoreid, storeId, collectionName, isActive, page, pageSize, limit, offset, sortBy, sortOrder, searchQuery, options).then((request) => request(this.axios, this.basePath));
|
|
26758
26800
|
}
|
|
26759
26801
|
|
|
26760
26802
|
/**
|
|
@@ -26767,8 +26809,8 @@ export class AnalyticsRulesApi extends BaseAPI {
|
|
|
26767
26809
|
* @throws {RequiredError}
|
|
26768
26810
|
* @memberof AnalyticsRulesApi
|
|
26769
26811
|
*/
|
|
26770
|
-
public
|
|
26771
|
-
return AnalyticsRulesApiFp(this.configuration).
|
|
26812
|
+
public adminV1StoresXstoreidAnalyticsRulesPost(authorization: string, xstoreid: string, dataTypesCreateAnalyticsRuleRequest: DataTypesCreateAnalyticsRuleRequest, options?: RawAxiosRequestConfig) {
|
|
26813
|
+
return AnalyticsRulesApiFp(this.configuration).adminV1StoresXstoreidAnalyticsRulesPost(authorization, xstoreid, dataTypesCreateAnalyticsRuleRequest, options).then((request) => request(this.axios, this.basePath));
|
|
26772
26814
|
}
|
|
26773
26815
|
|
|
26774
26816
|
/**
|
|
@@ -26781,8 +26823,8 @@ export class AnalyticsRulesApi extends BaseAPI {
|
|
|
26781
26823
|
* @throws {RequiredError}
|
|
26782
26824
|
* @memberof AnalyticsRulesApi
|
|
26783
26825
|
*/
|
|
26784
|
-
public
|
|
26785
|
-
return AnalyticsRulesApiFp(this.configuration).
|
|
26826
|
+
public adminV1StoresXstoreidAnalyticsRulesRuleIdDelete(authorization: string, xstoreid: string, ruleId: string, options?: RawAxiosRequestConfig) {
|
|
26827
|
+
return AnalyticsRulesApiFp(this.configuration).adminV1StoresXstoreidAnalyticsRulesRuleIdDelete(authorization, xstoreid, ruleId, options).then((request) => request(this.axios, this.basePath));
|
|
26786
26828
|
}
|
|
26787
26829
|
|
|
26788
26830
|
/**
|
|
@@ -26795,8 +26837,8 @@ export class AnalyticsRulesApi extends BaseAPI {
|
|
|
26795
26837
|
* @throws {RequiredError}
|
|
26796
26838
|
* @memberof AnalyticsRulesApi
|
|
26797
26839
|
*/
|
|
26798
|
-
public
|
|
26799
|
-
return AnalyticsRulesApiFp(this.configuration).
|
|
26840
|
+
public adminV1StoresXstoreidAnalyticsRulesRuleIdGet(authorization: string, xstoreid: string, ruleId: string, options?: RawAxiosRequestConfig) {
|
|
26841
|
+
return AnalyticsRulesApiFp(this.configuration).adminV1StoresXstoreidAnalyticsRulesRuleIdGet(authorization, xstoreid, ruleId, options).then((request) => request(this.axios, this.basePath));
|
|
26800
26842
|
}
|
|
26801
26843
|
|
|
26802
26844
|
/**
|
|
@@ -26810,8 +26852,8 @@ export class AnalyticsRulesApi extends BaseAPI {
|
|
|
26810
26852
|
* @throws {RequiredError}
|
|
26811
26853
|
* @memberof AnalyticsRulesApi
|
|
26812
26854
|
*/
|
|
26813
|
-
public
|
|
26814
|
-
return AnalyticsRulesApiFp(this.configuration).
|
|
26855
|
+
public adminV1StoresXstoreidAnalyticsRulesRuleIdPut(authorization: string, xstoreid: string, ruleId: string, dataTypesUpdateAnalyticsRuleRequest: DataTypesUpdateAnalyticsRuleRequest, options?: RawAxiosRequestConfig) {
|
|
26856
|
+
return AnalyticsRulesApiFp(this.configuration).adminV1StoresXstoreidAnalyticsRulesRuleIdPut(authorization, xstoreid, ruleId, dataTypesUpdateAnalyticsRuleRequest, options).then((request) => request(this.axios, this.basePath));
|
|
26815
26857
|
}
|
|
26816
26858
|
|
|
26817
26859
|
/**
|
|
@@ -26824,8 +26866,8 @@ export class AnalyticsRulesApi extends BaseAPI {
|
|
|
26824
26866
|
* @throws {RequiredError}
|
|
26825
26867
|
* @memberof AnalyticsRulesApi
|
|
26826
26868
|
*/
|
|
26827
|
-
public
|
|
26828
|
-
return AnalyticsRulesApiFp(this.configuration).
|
|
26869
|
+
public adminV1StoresXstoreidAnalyticsRulesSyncPost(authorization: string, xstoreid: string, dataTypesAnalyticsRuleSyncRequest: DataTypesAnalyticsRuleSyncRequest, options?: RawAxiosRequestConfig) {
|
|
26870
|
+
return AnalyticsRulesApiFp(this.configuration).adminV1StoresXstoreidAnalyticsRulesSyncPost(authorization, xstoreid, dataTypesAnalyticsRuleSyncRequest, options).then((request) => request(this.axios, this.basePath));
|
|
26829
26871
|
}
|
|
26830
26872
|
}
|
|
26831
26873
|
|