@seekora-ai/admin-api 1.0.47 → 1.0.49
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 +6 -3
- package/api.ts +303 -38
- package/dist/api.d.ts +467 -254
- package/dist/api.js +112 -14
- package/dist/esm/api.d.ts +467 -254
- package/dist/esm/api.js +109 -11
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.0.49.tgz +0 -0
- package/seekora-ai-admin-api-1.0.47.tgz +0 -0
package/dist/esm/api.d.ts
CHANGED
|
@@ -1066,11 +1066,11 @@ export interface AnalyticsExtendedKPIResponse {
|
|
|
1066
1066
|
*/
|
|
1067
1067
|
'compare_summary'?: AnalyticsKPIMetrics;
|
|
1068
1068
|
/**
|
|
1069
|
-
*
|
|
1070
|
-
* @type {
|
|
1069
|
+
* Can be []KPIPointExtended or []ComparisonMetrics
|
|
1070
|
+
* @type {object}
|
|
1071
1071
|
* @memberof AnalyticsExtendedKPIResponse
|
|
1072
1072
|
*/
|
|
1073
|
-
'data'?:
|
|
1073
|
+
'data'?: object;
|
|
1074
1074
|
/**
|
|
1075
1075
|
*
|
|
1076
1076
|
* @type {string}
|
|
@@ -1138,12 +1138,24 @@ export interface AnalyticsFilterAnalyticsResponse {
|
|
|
1138
1138
|
* @memberof AnalyticsFilterAnalyticsResponse
|
|
1139
1139
|
*/
|
|
1140
1140
|
'filter_key'?: string;
|
|
1141
|
+
/**
|
|
1142
|
+
*
|
|
1143
|
+
* @type {number}
|
|
1144
|
+
* @memberof AnalyticsFilterAnalyticsResponse
|
|
1145
|
+
*/
|
|
1146
|
+
'limit'?: number;
|
|
1141
1147
|
/**
|
|
1142
1148
|
*
|
|
1143
1149
|
* @type {string}
|
|
1144
1150
|
* @memberof AnalyticsFilterAnalyticsResponse
|
|
1145
1151
|
*/
|
|
1146
1152
|
'org_id'?: string;
|
|
1153
|
+
/**
|
|
1154
|
+
*
|
|
1155
|
+
* @type {number}
|
|
1156
|
+
* @memberof AnalyticsFilterAnalyticsResponse
|
|
1157
|
+
*/
|
|
1158
|
+
'page'?: number;
|
|
1147
1159
|
/**
|
|
1148
1160
|
*
|
|
1149
1161
|
* @type {string}
|
|
@@ -1174,6 +1186,12 @@ export interface AnalyticsFilterAnalyticsResponse {
|
|
|
1174
1186
|
* @memberof AnalyticsFilterAnalyticsResponse
|
|
1175
1187
|
*/
|
|
1176
1188
|
'store_id'?: string;
|
|
1189
|
+
/**
|
|
1190
|
+
*
|
|
1191
|
+
* @type {number}
|
|
1192
|
+
* @memberof AnalyticsFilterAnalyticsResponse
|
|
1193
|
+
*/
|
|
1194
|
+
'total'?: number;
|
|
1177
1195
|
}
|
|
1178
1196
|
/**
|
|
1179
1197
|
*
|
|
@@ -1409,12 +1427,24 @@ export interface AnalyticsFilterTrendsResponse {
|
|
|
1409
1427
|
* @memberof AnalyticsFilterTrendsResponse
|
|
1410
1428
|
*/
|
|
1411
1429
|
'granularity'?: string;
|
|
1430
|
+
/**
|
|
1431
|
+
*
|
|
1432
|
+
* @type {number}
|
|
1433
|
+
* @memberof AnalyticsFilterTrendsResponse
|
|
1434
|
+
*/
|
|
1435
|
+
'limit'?: number;
|
|
1412
1436
|
/**
|
|
1413
1437
|
*
|
|
1414
1438
|
* @type {string}
|
|
1415
1439
|
* @memberof AnalyticsFilterTrendsResponse
|
|
1416
1440
|
*/
|
|
1417
1441
|
'org_id'?: string;
|
|
1442
|
+
/**
|
|
1443
|
+
*
|
|
1444
|
+
* @type {number}
|
|
1445
|
+
* @memberof AnalyticsFilterTrendsResponse
|
|
1446
|
+
*/
|
|
1447
|
+
'page'?: number;
|
|
1418
1448
|
/**
|
|
1419
1449
|
*
|
|
1420
1450
|
* @type {string}
|
|
@@ -1445,6 +1475,12 @@ export interface AnalyticsFilterTrendsResponse {
|
|
|
1445
1475
|
* @memberof AnalyticsFilterTrendsResponse
|
|
1446
1476
|
*/
|
|
1447
1477
|
'top_filters'?: number;
|
|
1478
|
+
/**
|
|
1479
|
+
*
|
|
1480
|
+
* @type {number}
|
|
1481
|
+
* @memberof AnalyticsFilterTrendsResponse
|
|
1482
|
+
*/
|
|
1483
|
+
'total'?: number;
|
|
1448
1484
|
/**
|
|
1449
1485
|
*
|
|
1450
1486
|
* @type {{ [key: string]: Array<AnalyticsTimeSeriesPoint>; }}
|
|
@@ -2485,6 +2521,49 @@ export interface AnalyticsKPIPointExtended {
|
|
|
2485
2521
|
*/
|
|
2486
2522
|
'unique_users'?: number;
|
|
2487
2523
|
}
|
|
2524
|
+
/**
|
|
2525
|
+
*
|
|
2526
|
+
* @export
|
|
2527
|
+
* @interface AnalyticsPaginationMeta
|
|
2528
|
+
*/
|
|
2529
|
+
export interface AnalyticsPaginationMeta {
|
|
2530
|
+
/**
|
|
2531
|
+
*
|
|
2532
|
+
* @type {boolean}
|
|
2533
|
+
* @memberof AnalyticsPaginationMeta
|
|
2534
|
+
*/
|
|
2535
|
+
'has_next'?: boolean;
|
|
2536
|
+
/**
|
|
2537
|
+
*
|
|
2538
|
+
* @type {boolean}
|
|
2539
|
+
* @memberof AnalyticsPaginationMeta
|
|
2540
|
+
*/
|
|
2541
|
+
'has_previous'?: boolean;
|
|
2542
|
+
/**
|
|
2543
|
+
*
|
|
2544
|
+
* @type {number}
|
|
2545
|
+
* @memberof AnalyticsPaginationMeta
|
|
2546
|
+
*/
|
|
2547
|
+
'page'?: number;
|
|
2548
|
+
/**
|
|
2549
|
+
*
|
|
2550
|
+
* @type {number}
|
|
2551
|
+
* @memberof AnalyticsPaginationMeta
|
|
2552
|
+
*/
|
|
2553
|
+
'page_size'?: number;
|
|
2554
|
+
/**
|
|
2555
|
+
*
|
|
2556
|
+
* @type {number}
|
|
2557
|
+
* @memberof AnalyticsPaginationMeta
|
|
2558
|
+
*/
|
|
2559
|
+
'total_items'?: number;
|
|
2560
|
+
/**
|
|
2561
|
+
*
|
|
2562
|
+
* @type {number}
|
|
2563
|
+
* @memberof AnalyticsPaginationMeta
|
|
2564
|
+
*/
|
|
2565
|
+
'total_pages'?: number;
|
|
2566
|
+
}
|
|
2488
2567
|
/**
|
|
2489
2568
|
*
|
|
2490
2569
|
* @export
|
|
@@ -2805,16 +2884,16 @@ export interface AnalyticsQueryInsights {
|
|
|
2805
2884
|
'no_results_rate'?: number;
|
|
2806
2885
|
/**
|
|
2807
2886
|
*
|
|
2808
|
-
* @type {
|
|
2887
|
+
* @type {AnalyticsQueryPopularFiltersSection}
|
|
2809
2888
|
* @memberof AnalyticsQueryInsights
|
|
2810
2889
|
*/
|
|
2811
|
-
'popular_filters'?:
|
|
2890
|
+
'popular_filters'?: AnalyticsQueryPopularFiltersSection;
|
|
2812
2891
|
/**
|
|
2813
2892
|
*
|
|
2814
|
-
* @type {
|
|
2893
|
+
* @type {AnalyticsQueryPopularResultsSection}
|
|
2815
2894
|
* @memberof AnalyticsQueryInsights
|
|
2816
2895
|
*/
|
|
2817
|
-
'popular_results'?:
|
|
2896
|
+
'popular_results'?: AnalyticsQueryPopularResultsSection;
|
|
2818
2897
|
/**
|
|
2819
2898
|
*
|
|
2820
2899
|
* @type {string}
|
|
@@ -2965,51 +3044,95 @@ export interface AnalyticsQueryPopularFilter {
|
|
|
2965
3044
|
/**
|
|
2966
3045
|
*
|
|
2967
3046
|
* @export
|
|
2968
|
-
* @interface
|
|
3047
|
+
* @interface AnalyticsQueryPopularFiltersSection
|
|
2969
3048
|
*/
|
|
2970
|
-
export interface
|
|
3049
|
+
export interface AnalyticsQueryPopularFiltersSection {
|
|
3050
|
+
/**
|
|
3051
|
+
*
|
|
3052
|
+
* @type {Array<AnalyticsQueryPopularFilter>}
|
|
3053
|
+
* @memberof AnalyticsQueryPopularFiltersSection
|
|
3054
|
+
*/
|
|
3055
|
+
'items'?: Array<AnalyticsQueryPopularFilter>;
|
|
3056
|
+
/**
|
|
3057
|
+
*
|
|
3058
|
+
* @type {AnalyticsPaginationMeta}
|
|
3059
|
+
* @memberof AnalyticsQueryPopularFiltersSection
|
|
3060
|
+
*/
|
|
3061
|
+
'meta'?: AnalyticsPaginationMeta;
|
|
3062
|
+
}
|
|
3063
|
+
/**
|
|
3064
|
+
*
|
|
3065
|
+
* @export
|
|
3066
|
+
* @interface AnalyticsQueryPopularResultWithWidget
|
|
3067
|
+
*/
|
|
3068
|
+
export interface AnalyticsQueryPopularResultWithWidget {
|
|
2971
3069
|
/**
|
|
2972
3070
|
*
|
|
2973
3071
|
* @type {number}
|
|
2974
|
-
* @memberof
|
|
3072
|
+
* @memberof AnalyticsQueryPopularResultWithWidget
|
|
2975
3073
|
*/
|
|
2976
3074
|
'avg_position'?: number;
|
|
2977
3075
|
/**
|
|
2978
3076
|
*
|
|
2979
3077
|
* @type {number}
|
|
2980
|
-
* @memberof
|
|
3078
|
+
* @memberof AnalyticsQueryPopularResultWithWidget
|
|
2981
3079
|
*/
|
|
2982
3080
|
'click_through_rate'?: number;
|
|
2983
3081
|
/**
|
|
2984
3082
|
*
|
|
2985
3083
|
* @type {number}
|
|
2986
|
-
* @memberof
|
|
3084
|
+
* @memberof AnalyticsQueryPopularResultWithWidget
|
|
2987
3085
|
*/
|
|
2988
3086
|
'clicks'?: number;
|
|
2989
3087
|
/**
|
|
2990
3088
|
*
|
|
2991
3089
|
* @type {number}
|
|
2992
|
-
* @memberof
|
|
3090
|
+
* @memberof AnalyticsQueryPopularResultWithWidget
|
|
2993
3091
|
*/
|
|
2994
3092
|
'impressions'?: number;
|
|
2995
3093
|
/**
|
|
2996
3094
|
*
|
|
2997
3095
|
* @type {string}
|
|
2998
|
-
* @memberof
|
|
3096
|
+
* @memberof AnalyticsQueryPopularResultWithWidget
|
|
2999
3097
|
*/
|
|
3000
3098
|
'item_id'?: string;
|
|
3001
3099
|
/**
|
|
3002
3100
|
*
|
|
3003
3101
|
* @type {string}
|
|
3004
|
-
* @memberof
|
|
3102
|
+
* @memberof AnalyticsQueryPopularResultWithWidget
|
|
3005
3103
|
*/
|
|
3006
3104
|
'item_name'?: string;
|
|
3007
3105
|
/**
|
|
3008
3106
|
* percentage of total impressions for this query
|
|
3009
3107
|
* @type {number}
|
|
3010
|
-
* @memberof
|
|
3108
|
+
* @memberof AnalyticsQueryPopularResultWithWidget
|
|
3011
3109
|
*/
|
|
3012
3110
|
'share'?: number;
|
|
3111
|
+
/**
|
|
3112
|
+
* Widget display fields
|
|
3113
|
+
* @type {AnalyticsWidgetData}
|
|
3114
|
+
* @memberof AnalyticsQueryPopularResultWithWidget
|
|
3115
|
+
*/
|
|
3116
|
+
'widget'?: AnalyticsWidgetData;
|
|
3117
|
+
}
|
|
3118
|
+
/**
|
|
3119
|
+
*
|
|
3120
|
+
* @export
|
|
3121
|
+
* @interface AnalyticsQueryPopularResultsSection
|
|
3122
|
+
*/
|
|
3123
|
+
export interface AnalyticsQueryPopularResultsSection {
|
|
3124
|
+
/**
|
|
3125
|
+
*
|
|
3126
|
+
* @type {Array<AnalyticsQueryPopularResultWithWidget>}
|
|
3127
|
+
* @memberof AnalyticsQueryPopularResultsSection
|
|
3128
|
+
*/
|
|
3129
|
+
'items'?: Array<AnalyticsQueryPopularResultWithWidget>;
|
|
3130
|
+
/**
|
|
3131
|
+
*
|
|
3132
|
+
* @type {AnalyticsPaginationMeta}
|
|
3133
|
+
* @memberof AnalyticsQueryPopularResultsSection
|
|
3134
|
+
*/
|
|
3135
|
+
'meta'?: AnalyticsPaginationMeta;
|
|
3013
3136
|
}
|
|
3014
3137
|
/**
|
|
3015
3138
|
*
|
|
@@ -5928,11 +6051,17 @@ export interface DataTypesErrorMetaResponse {
|
|
|
5928
6051
|
*/
|
|
5929
6052
|
export interface DataTypesEventPayload {
|
|
5930
6053
|
/**
|
|
5931
|
-
*
|
|
6054
|
+
* Journey Tracking & Analytics
|
|
5932
6055
|
* @type {Array<string>}
|
|
5933
6056
|
* @memberof DataTypesEventPayload
|
|
5934
6057
|
*/
|
|
5935
6058
|
'analytics_tags'?: Array<string>;
|
|
6059
|
+
/**
|
|
6060
|
+
* Anonymous user identifier
|
|
6061
|
+
* @type {string}
|
|
6062
|
+
* @memberof DataTypesEventPayload
|
|
6063
|
+
*/
|
|
6064
|
+
'anon_id'?: string;
|
|
5936
6065
|
/**
|
|
5937
6066
|
*
|
|
5938
6067
|
* @type {string}
|
|
@@ -5940,13 +6069,13 @@ export interface DataTypesEventPayload {
|
|
|
5940
6069
|
*/
|
|
5941
6070
|
'city'?: string;
|
|
5942
6071
|
/**
|
|
5943
|
-
*
|
|
6072
|
+
* Click/Interaction Event Fields
|
|
5944
6073
|
* @type {string}
|
|
5945
6074
|
* @memberof DataTypesEventPayload
|
|
5946
6075
|
*/
|
|
5947
6076
|
'clicked_product_id'?: string;
|
|
5948
6077
|
/**
|
|
5949
|
-
* Geo data fields for direct submission
|
|
6078
|
+
* Enhanced Geo data fields for direct submission
|
|
5950
6079
|
* @type {string}
|
|
5951
6080
|
* @memberof DataTypesEventPayload
|
|
5952
6081
|
*/
|
|
@@ -5957,6 +6086,12 @@ export interface DataTypesEventPayload {
|
|
|
5957
6086
|
* @memberof DataTypesEventPayload
|
|
5958
6087
|
*/
|
|
5959
6088
|
'country_code'?: string;
|
|
6089
|
+
/**
|
|
6090
|
+
* Currency for value
|
|
6091
|
+
* @type {string}
|
|
6092
|
+
* @memberof DataTypesEventPayload
|
|
6093
|
+
*/
|
|
6094
|
+
'currency'?: string;
|
|
5960
6095
|
/**
|
|
5961
6096
|
*
|
|
5962
6097
|
* @type {string}
|
|
@@ -5964,7 +6099,7 @@ export interface DataTypesEventPayload {
|
|
|
5964
6099
|
*/
|
|
5965
6100
|
'device_type'?: string;
|
|
5966
6101
|
/**
|
|
5967
|
-
*
|
|
6102
|
+
* Core Event Information
|
|
5968
6103
|
* @type {string}
|
|
5969
6104
|
* @memberof DataTypesEventPayload
|
|
5970
6105
|
*/
|
|
@@ -5976,25 +6111,25 @@ export interface DataTypesEventPayload {
|
|
|
5976
6111
|
*/
|
|
5977
6112
|
'event_name'?: string;
|
|
5978
6113
|
/**
|
|
5979
|
-
*
|
|
6114
|
+
* Device & Location Context
|
|
5980
6115
|
* @type {string}
|
|
5981
6116
|
* @memberof DataTypesEventPayload
|
|
5982
6117
|
*/
|
|
5983
6118
|
'ip'?: string;
|
|
5984
6119
|
/**
|
|
5985
|
-
*
|
|
6120
|
+
* Performance
|
|
5986
6121
|
* @type {number}
|
|
5987
6122
|
* @memberof DataTypesEventPayload
|
|
5988
6123
|
*/
|
|
5989
6124
|
'latency_ms'?: number;
|
|
5990
6125
|
/**
|
|
5991
|
-
*
|
|
6126
|
+
* Legacy field
|
|
5992
6127
|
* @type {string}
|
|
5993
6128
|
* @memberof DataTypesEventPayload
|
|
5994
6129
|
*/
|
|
5995
6130
|
'location'?: string;
|
|
5996
6131
|
/**
|
|
5997
|
-
*
|
|
6132
|
+
* Flexible metadata including search_id, position, etc.
|
|
5998
6133
|
* @type {{ [key: string]: any; }}
|
|
5999
6134
|
* @memberof DataTypesEventPayload
|
|
6000
6135
|
*/
|
|
@@ -6008,7 +6143,13 @@ export interface DataTypesEventPayload {
|
|
|
6008
6143
|
*/
|
|
6009
6144
|
'org_id'?: string;
|
|
6010
6145
|
/**
|
|
6011
|
-
*
|
|
6146
|
+
* web, ios, android
|
|
6147
|
+
* @type {string}
|
|
6148
|
+
* @memberof DataTypesEventPayload
|
|
6149
|
+
*/
|
|
6150
|
+
'platform'?: string;
|
|
6151
|
+
/**
|
|
6152
|
+
* Search Event Fields
|
|
6012
6153
|
* @type {string}
|
|
6013
6154
|
* @memberof DataTypesEventPayload
|
|
6014
6155
|
*/
|
|
@@ -6026,7 +6167,13 @@ export interface DataTypesEventPayload {
|
|
|
6026
6167
|
*/
|
|
6027
6168
|
'results_count'?: number;
|
|
6028
6169
|
/**
|
|
6029
|
-
*
|
|
6170
|
+
* Session identifier for journey tracking
|
|
6171
|
+
* @type {string}
|
|
6172
|
+
* @memberof DataTypesEventPayload
|
|
6173
|
+
*/
|
|
6174
|
+
'session_id'?: string;
|
|
6175
|
+
/**
|
|
6176
|
+
* Organization Context
|
|
6030
6177
|
* @type {string}
|
|
6031
6178
|
* @memberof DataTypesEventPayload
|
|
6032
6179
|
*/
|
|
@@ -6038,11 +6185,17 @@ export interface DataTypesEventPayload {
|
|
|
6038
6185
|
*/
|
|
6039
6186
|
'timestamp'?: string;
|
|
6040
6187
|
/**
|
|
6041
|
-
*
|
|
6188
|
+
* User Context
|
|
6042
6189
|
* @type {string}
|
|
6043
6190
|
* @memberof DataTypesEventPayload
|
|
6044
6191
|
*/
|
|
6045
6192
|
'user_id'?: string;
|
|
6193
|
+
/**
|
|
6194
|
+
* Business Context
|
|
6195
|
+
* @type {number}
|
|
6196
|
+
* @memberof DataTypesEventPayload
|
|
6197
|
+
*/
|
|
6198
|
+
'value'?: number;
|
|
6046
6199
|
}
|
|
6047
6200
|
/**
|
|
6048
6201
|
*
|
|
@@ -12552,7 +12705,7 @@ export declare class APICallsApi extends BaseAPI {
|
|
|
12552
12705
|
* @throws {RequiredError}
|
|
12553
12706
|
* @memberof APICallsApi
|
|
12554
12707
|
*/
|
|
12555
|
-
adminAPICallsCallIDDelete(callID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
12708
|
+
adminAPICallsCallIDDelete(callID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
12556
12709
|
/**
|
|
12557
12710
|
* Fetches APICall detail
|
|
12558
12711
|
* @summary Fetches APICall detail
|
|
@@ -12561,7 +12714,7 @@ export declare class APICallsApi extends BaseAPI {
|
|
|
12561
12714
|
* @throws {RequiredError}
|
|
12562
12715
|
* @memberof APICallsApi
|
|
12563
12716
|
*/
|
|
12564
|
-
adminAPICallsCallIDGet(callID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesAPICallResponse, any>>;
|
|
12717
|
+
adminAPICallsCallIDGet(callID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesAPICallResponse, any, {}>>;
|
|
12565
12718
|
/**
|
|
12566
12719
|
* UpdateAPICall information by ID.
|
|
12567
12720
|
* @summary UpdateAPICall an existing apicall details
|
|
@@ -12571,7 +12724,7 @@ export declare class APICallsApi extends BaseAPI {
|
|
|
12571
12724
|
* @throws {RequiredError}
|
|
12572
12725
|
* @memberof APICallsApi
|
|
12573
12726
|
*/
|
|
12574
|
-
adminAPICallsCallIDPut(callID: number, aPICall: DataTypesAPICallRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
12727
|
+
adminAPICallsCallIDPut(callID: number, aPICall: DataTypesAPICallRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
12575
12728
|
/**
|
|
12576
12729
|
* Fetches list of APICalls
|
|
12577
12730
|
* @summary Fetches list of APICalls
|
|
@@ -12579,7 +12732,7 @@ export declare class APICallsApi extends BaseAPI {
|
|
|
12579
12732
|
* @throws {RequiredError}
|
|
12580
12733
|
* @memberof APICallsApi
|
|
12581
12734
|
*/
|
|
12582
|
-
adminAPICallsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesAPICallsListResponse, any>>;
|
|
12735
|
+
adminAPICallsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesAPICallsListResponse, any, {}>>;
|
|
12583
12736
|
/**
|
|
12584
12737
|
* Creates a new apicall
|
|
12585
12738
|
* @summary Creates a new apicall
|
|
@@ -12588,7 +12741,7 @@ export declare class APICallsApi extends BaseAPI {
|
|
|
12588
12741
|
* @throws {RequiredError}
|
|
12589
12742
|
* @memberof APICallsApi
|
|
12590
12743
|
*/
|
|
12591
|
-
adminAPICallsPost(aPICall: DataTypesAPICallRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
12744
|
+
adminAPICallsPost(aPICall: DataTypesAPICallRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
12592
12745
|
}
|
|
12593
12746
|
/**
|
|
12594
12747
|
* AccountSettingsApi - axios parameter creator
|
|
@@ -12781,7 +12934,7 @@ export declare class AccountSettingsApi extends BaseAPI {
|
|
|
12781
12934
|
* @throws {RequiredError}
|
|
12782
12935
|
* @memberof AccountSettingsApi
|
|
12783
12936
|
*/
|
|
12784
|
-
accountSettingsOrganizationGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOrganizationResponse, any>>;
|
|
12937
|
+
accountSettingsOrganizationGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOrganizationResponse, any, {}>>;
|
|
12785
12938
|
/**
|
|
12786
12939
|
* Removes the logo of the currently logged-in user\'s organization
|
|
12787
12940
|
* @summary Delete user\'s organization logo
|
|
@@ -12789,7 +12942,7 @@ export declare class AccountSettingsApi extends BaseAPI {
|
|
|
12789
12942
|
* @throws {RequiredError}
|
|
12790
12943
|
* @memberof AccountSettingsApi
|
|
12791
12944
|
*/
|
|
12792
|
-
accountSettingsOrganizationLogoDelete(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOrganizationResponse, any>>;
|
|
12945
|
+
accountSettingsOrganizationLogoDelete(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOrganizationResponse, any, {}>>;
|
|
12793
12946
|
/**
|
|
12794
12947
|
* Updates the logo of the currently logged-in user\'s organization
|
|
12795
12948
|
* @summary Update user\'s organization logo
|
|
@@ -12798,7 +12951,7 @@ export declare class AccountSettingsApi extends BaseAPI {
|
|
|
12798
12951
|
* @throws {RequiredError}
|
|
12799
12952
|
* @memberof AccountSettingsApi
|
|
12800
12953
|
*/
|
|
12801
|
-
accountSettingsOrganizationLogoPut(logo: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOrganizationResponse, any>>;
|
|
12954
|
+
accountSettingsOrganizationLogoPut(logo: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOrganizationResponse, any, {}>>;
|
|
12802
12955
|
/**
|
|
12803
12956
|
* Updates the organization details of the currently logged-in user
|
|
12804
12957
|
* @summary Update user\'s organization
|
|
@@ -12807,7 +12960,7 @@ export declare class AccountSettingsApi extends BaseAPI {
|
|
|
12807
12960
|
* @throws {RequiredError}
|
|
12808
12961
|
* @memberof AccountSettingsApi
|
|
12809
12962
|
*/
|
|
12810
|
-
accountSettingsOrganizationPut(organization: DataTypesUpdateOrganizationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOrganizationResponse, any>>;
|
|
12963
|
+
accountSettingsOrganizationPut(organization: DataTypesUpdateOrganizationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOrganizationResponse, any, {}>>;
|
|
12811
12964
|
/**
|
|
12812
12965
|
* Updates the password of the currently logged-in user
|
|
12813
12966
|
* @summary Update user password
|
|
@@ -12816,7 +12969,7 @@ export declare class AccountSettingsApi extends BaseAPI {
|
|
|
12816
12969
|
* @throws {RequiredError}
|
|
12817
12970
|
* @memberof AccountSettingsApi
|
|
12818
12971
|
*/
|
|
12819
|
-
accountSettingsPasswordPut(password: DataTypesUpdatePasswordRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
12972
|
+
accountSettingsPasswordPut(password: DataTypesUpdatePasswordRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
12820
12973
|
/**
|
|
12821
12974
|
* Retrieves the profile of the currently logged-in user
|
|
12822
12975
|
* @summary Retrieve user profile
|
|
@@ -12824,7 +12977,7 @@ export declare class AccountSettingsApi extends BaseAPI {
|
|
|
12824
12977
|
* @throws {RequiredError}
|
|
12825
12978
|
* @memberof AccountSettingsApi
|
|
12826
12979
|
*/
|
|
12827
|
-
accountSettingsProfileGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesProfileResponseWrapper, any>>;
|
|
12980
|
+
accountSettingsProfileGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesProfileResponseWrapper, any, {}>>;
|
|
12828
12981
|
/**
|
|
12829
12982
|
* Updates the profile of the currently logged-in user
|
|
12830
12983
|
* @summary Update user profile
|
|
@@ -12833,7 +12986,7 @@ export declare class AccountSettingsApi extends BaseAPI {
|
|
|
12833
12986
|
* @throws {RequiredError}
|
|
12834
12987
|
* @memberof AccountSettingsApi
|
|
12835
12988
|
*/
|
|
12836
|
-
accountSettingsProfilePut(profile: DataTypesUpdateProfileRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesProfileResponseWrapper, any>>;
|
|
12989
|
+
accountSettingsProfilePut(profile: DataTypesUpdateProfileRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesProfileResponseWrapper, any, {}>>;
|
|
12837
12990
|
}
|
|
12838
12991
|
/**
|
|
12839
12992
|
* AnalyticsApi - axios parameter creator
|
|
@@ -13104,16 +13257,29 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
13104
13257
|
*/
|
|
13105
13258
|
adminAnalyticsStoreXStoreIDQueriesNoResultsGet: (xStoreID: string, startTime?: string, endTime?: string, search?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13106
13259
|
/**
|
|
13107
|
-
* Retrieve comprehensive analytics for a specific search query including popular results, filters, click position histogram, and performance metrics
|
|
13260
|
+
* Retrieve comprehensive analytics for a specific search query including popular results, filters, click position histogram, and performance metrics with deep comparison mode support and independent pagination for popular results and filters
|
|
13108
13261
|
* @summary Get Query Insights
|
|
13109
13262
|
* @param {string} xStoreID Store ID
|
|
13110
13263
|
* @param {string} query Search query to analyze
|
|
13111
13264
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
13112
13265
|
* @param {string} [endTime] End time in RFC3339 format
|
|
13266
|
+
* @param {boolean} [compareMode] Enable comparison mode to compare with another time period/tag set
|
|
13267
|
+
* @param {string} [compareStartTime] Comparison period start time in RFC3339 format
|
|
13268
|
+
* @param {string} [compareEndTime] Comparison period end time in RFC3339 format
|
|
13269
|
+
* @param {string} [compareAnalyticsTags] Comma-separated analytics tags for comparison period
|
|
13270
|
+
* @param {AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum} [compareTagsMatchMode] How to match comparison analytics tags
|
|
13271
|
+
* @param {string} [compareTagsExclude] Comma-separated analytics tags to exclude in comparison
|
|
13272
|
+
* @param {string} [compareTagKeyFilter] Tag key filter for comparison period
|
|
13273
|
+
* @param {string} [compareTagValueFilter] Tag value filter for comparison period
|
|
13274
|
+
* @param {number} [resultsPage] Page number for popular results pagination
|
|
13275
|
+
* @param {number} [resultsPageSize] Number of results per page for popular results
|
|
13276
|
+
* @param {number} [filtersPage] Page number for popular filters pagination
|
|
13277
|
+
* @param {number} [filtersPageSize] Number of filters per page for popular filters
|
|
13278
|
+
* @param {boolean} [includeWidget] Whether to include widget display fields for popular results
|
|
13113
13279
|
* @param {*} [options] Override http request option.
|
|
13114
13280
|
* @throws {RequiredError}
|
|
13115
13281
|
*/
|
|
13116
|
-
adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet: (xStoreID: string, query: string, startTime?: string, endTime?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13282
|
+
adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet: (xStoreID: string, query: string, startTime?: string, endTime?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, resultsPage?: number, resultsPageSize?: number, filtersPage?: number, filtersPageSize?: number, includeWidget?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13117
13283
|
/**
|
|
13118
13284
|
* Retrieve analytics for top performing search results with optional enrichment. By default returns widget display fields for UI presentation. Use include_documents=true for full document data (heavier response). Supports lightweight widget-only mode for dashboards with analytics tags filtering and comparison mode support.
|
|
13119
13285
|
* @summary Get Top Results Analytics
|
|
@@ -13456,16 +13622,29 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
|
|
|
13456
13622
|
*/
|
|
13457
13623
|
adminAnalyticsStoreXStoreIDQueriesNoResultsGet(xStoreID: string, startTime?: string, endTime?: string, search?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminAnalyticsStoreXStoreIDQueriesNoClicksGet200Response>>;
|
|
13458
13624
|
/**
|
|
13459
|
-
* Retrieve comprehensive analytics for a specific search query including popular results, filters, click position histogram, and performance metrics
|
|
13625
|
+
* Retrieve comprehensive analytics for a specific search query including popular results, filters, click position histogram, and performance metrics with deep comparison mode support and independent pagination for popular results and filters
|
|
13460
13626
|
* @summary Get Query Insights
|
|
13461
13627
|
* @param {string} xStoreID Store ID
|
|
13462
13628
|
* @param {string} query Search query to analyze
|
|
13463
13629
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
13464
13630
|
* @param {string} [endTime] End time in RFC3339 format
|
|
13631
|
+
* @param {boolean} [compareMode] Enable comparison mode to compare with another time period/tag set
|
|
13632
|
+
* @param {string} [compareStartTime] Comparison period start time in RFC3339 format
|
|
13633
|
+
* @param {string} [compareEndTime] Comparison period end time in RFC3339 format
|
|
13634
|
+
* @param {string} [compareAnalyticsTags] Comma-separated analytics tags for comparison period
|
|
13635
|
+
* @param {AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum} [compareTagsMatchMode] How to match comparison analytics tags
|
|
13636
|
+
* @param {string} [compareTagsExclude] Comma-separated analytics tags to exclude in comparison
|
|
13637
|
+
* @param {string} [compareTagKeyFilter] Tag key filter for comparison period
|
|
13638
|
+
* @param {string} [compareTagValueFilter] Tag value filter for comparison period
|
|
13639
|
+
* @param {number} [resultsPage] Page number for popular results pagination
|
|
13640
|
+
* @param {number} [resultsPageSize] Number of results per page for popular results
|
|
13641
|
+
* @param {number} [filtersPage] Page number for popular filters pagination
|
|
13642
|
+
* @param {number} [filtersPageSize] Number of filters per page for popular filters
|
|
13643
|
+
* @param {boolean} [includeWidget] Whether to include widget display fields for popular results
|
|
13465
13644
|
* @param {*} [options] Override http request option.
|
|
13466
13645
|
* @throws {RequiredError}
|
|
13467
13646
|
*/
|
|
13468
|
-
adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID: string, query: string, startTime?: string, endTime?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGet200Response>>;
|
|
13647
|
+
adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID: string, query: string, startTime?: string, endTime?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, resultsPage?: number, resultsPageSize?: number, filtersPage?: number, filtersPageSize?: number, includeWidget?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGet200Response>>;
|
|
13469
13648
|
/**
|
|
13470
13649
|
* Retrieve analytics for top performing search results with optional enrichment. By default returns widget display fields for UI presentation. Use include_documents=true for full document data (heavier response). Supports lightweight widget-only mode for dashboards with analytics tags filtering and comparison mode support.
|
|
13471
13650
|
* @summary Get Top Results Analytics
|
|
@@ -13808,16 +13987,29 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
|
|
|
13808
13987
|
*/
|
|
13809
13988
|
adminAnalyticsStoreXStoreIDQueriesNoResultsGet(xStoreID: string, startTime?: string, endTime?: string, search?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): AxiosPromise<AdminAnalyticsStoreXStoreIDQueriesNoClicksGet200Response>;
|
|
13810
13989
|
/**
|
|
13811
|
-
* Retrieve comprehensive analytics for a specific search query including popular results, filters, click position histogram, and performance metrics
|
|
13990
|
+
* Retrieve comprehensive analytics for a specific search query including popular results, filters, click position histogram, and performance metrics with deep comparison mode support and independent pagination for popular results and filters
|
|
13812
13991
|
* @summary Get Query Insights
|
|
13813
13992
|
* @param {string} xStoreID Store ID
|
|
13814
13993
|
* @param {string} query Search query to analyze
|
|
13815
13994
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
13816
13995
|
* @param {string} [endTime] End time in RFC3339 format
|
|
13996
|
+
* @param {boolean} [compareMode] Enable comparison mode to compare with another time period/tag set
|
|
13997
|
+
* @param {string} [compareStartTime] Comparison period start time in RFC3339 format
|
|
13998
|
+
* @param {string} [compareEndTime] Comparison period end time in RFC3339 format
|
|
13999
|
+
* @param {string} [compareAnalyticsTags] Comma-separated analytics tags for comparison period
|
|
14000
|
+
* @param {AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum} [compareTagsMatchMode] How to match comparison analytics tags
|
|
14001
|
+
* @param {string} [compareTagsExclude] Comma-separated analytics tags to exclude in comparison
|
|
14002
|
+
* @param {string} [compareTagKeyFilter] Tag key filter for comparison period
|
|
14003
|
+
* @param {string} [compareTagValueFilter] Tag value filter for comparison period
|
|
14004
|
+
* @param {number} [resultsPage] Page number for popular results pagination
|
|
14005
|
+
* @param {number} [resultsPageSize] Number of results per page for popular results
|
|
14006
|
+
* @param {number} [filtersPage] Page number for popular filters pagination
|
|
14007
|
+
* @param {number} [filtersPageSize] Number of filters per page for popular filters
|
|
14008
|
+
* @param {boolean} [includeWidget] Whether to include widget display fields for popular results
|
|
13817
14009
|
* @param {*} [options] Override http request option.
|
|
13818
14010
|
* @throws {RequiredError}
|
|
13819
14011
|
*/
|
|
13820
|
-
adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID: string, query: string, startTime?: string, endTime?: string, options?: RawAxiosRequestConfig): AxiosPromise<AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGet200Response>;
|
|
14012
|
+
adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID: string, query: string, startTime?: string, endTime?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, resultsPage?: number, resultsPageSize?: number, filtersPage?: number, filtersPageSize?: number, includeWidget?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGet200Response>;
|
|
13821
14013
|
/**
|
|
13822
14014
|
* Retrieve analytics for top performing search results with optional enrichment. By default returns widget display fields for UI presentation. Use include_documents=true for full document data (heavier response). Supports lightweight widget-only mode for dashboards with analytics tags filtering and comparison mode support.
|
|
13823
14015
|
* @summary Get Top Results Analytics
|
|
@@ -13906,7 +14098,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
13906
14098
|
* @throws {RequiredError}
|
|
13907
14099
|
* @memberof AnalyticsApi
|
|
13908
14100
|
*/
|
|
13909
|
-
adminAnalyticsStoreXStoreIDConfigGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AnalyticsAnalyticsAPIResponse, any>>;
|
|
14101
|
+
adminAnalyticsStoreXStoreIDConfigGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AnalyticsAnalyticsAPIResponse, any, {}>>;
|
|
13910
14102
|
/**
|
|
13911
14103
|
* Execute a custom ClickHouse query for advanced analytics with parameterized queries
|
|
13912
14104
|
* @summary Execute Custom Analytics Query
|
|
@@ -13916,7 +14108,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
13916
14108
|
* @throws {RequiredError}
|
|
13917
14109
|
* @memberof AnalyticsApi
|
|
13918
14110
|
*/
|
|
13919
|
-
adminAnalyticsStoreXStoreIDCustomPost(xStoreID: string, body: AnalyticsCustomQueryRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDCustomPost200Response, any>>;
|
|
14111
|
+
adminAnalyticsStoreXStoreIDCustomPost(xStoreID: string, body: AnalyticsCustomQueryRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDCustomPost200Response, any, {}>>;
|
|
13920
14112
|
/**
|
|
13921
14113
|
* Retrieve popular filter combinations and their effectiveness metrics
|
|
13922
14114
|
* @summary Get Filter Combinations
|
|
@@ -13935,7 +14127,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
13935
14127
|
* @throws {RequiredError}
|
|
13936
14128
|
* @memberof AnalyticsApi
|
|
13937
14129
|
*/
|
|
13938
|
-
adminAnalyticsStoreXStoreIDFiltersCombinationsGet(xStoreID: string, startTime?: string, endTime?: string, minUsage?: number, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDFiltersCombinationsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDFiltersCombinationsGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDFiltersCombinationsGet200Response, any>>;
|
|
14130
|
+
adminAnalyticsStoreXStoreIDFiltersCombinationsGet(xStoreID: string, startTime?: string, endTime?: string, minUsage?: number, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDFiltersCombinationsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDFiltersCombinationsGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDFiltersCombinationsGet200Response, any, {}>>;
|
|
13939
14131
|
/**
|
|
13940
14132
|
* Analyze filter effectiveness by comparing search results with and without filters
|
|
13941
14133
|
* @summary Get Filter Effectiveness
|
|
@@ -13953,7 +14145,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
13953
14145
|
* @throws {RequiredError}
|
|
13954
14146
|
* @memberof AnalyticsApi
|
|
13955
14147
|
*/
|
|
13956
|
-
adminAnalyticsStoreXStoreIDFiltersEffectivenessGet(xStoreID: string, startTime?: string, endTime?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDFiltersEffectivenessGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDFiltersEffectivenessGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDFiltersEffectivenessGet200Response, any>>;
|
|
14148
|
+
adminAnalyticsStoreXStoreIDFiltersEffectivenessGet(xStoreID: string, startTime?: string, endTime?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDFiltersEffectivenessGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDFiltersEffectivenessGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDFiltersEffectivenessGet200Response, any, {}>>;
|
|
13957
14149
|
/**
|
|
13958
14150
|
* Retrieve comprehensive filter usage statistics including popular filters, combinations, and effectiveness metrics
|
|
13959
14151
|
* @summary Get Filter Analytics
|
|
@@ -13975,7 +14167,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
13975
14167
|
* @throws {RequiredError}
|
|
13976
14168
|
* @memberof AnalyticsApi
|
|
13977
14169
|
*/
|
|
13978
|
-
adminAnalyticsStoreXStoreIDFiltersGet(xStoreID: string, startTime?: string, endTime?: string, granularity?: AdminAnalyticsStoreXStoreIDFiltersGetGranularityEnum, filterKey?: string, includeCombinations?: boolean, includeEffectiveness?: boolean, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDFiltersGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDFiltersGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDFiltersGet200Response, any>>;
|
|
14170
|
+
adminAnalyticsStoreXStoreIDFiltersGet(xStoreID: string, startTime?: string, endTime?: string, granularity?: AdminAnalyticsStoreXStoreIDFiltersGetGranularityEnum, filterKey?: string, includeCombinations?: boolean, includeEffectiveness?: boolean, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDFiltersGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDFiltersGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDFiltersGet200Response, any, {}>>;
|
|
13979
14171
|
/**
|
|
13980
14172
|
* Retrieve filter usage trends over time with growth analysis and pattern detection
|
|
13981
14173
|
* @summary Get Filter Trends
|
|
@@ -13996,7 +14188,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
13996
14188
|
* @throws {RequiredError}
|
|
13997
14189
|
* @memberof AnalyticsApi
|
|
13998
14190
|
*/
|
|
13999
|
-
adminAnalyticsStoreXStoreIDFiltersTrendsGet(xStoreID: string, startTime?: string, endTime?: string, granularity?: AdminAnalyticsStoreXStoreIDFiltersTrendsGetGranularityEnum, filterKey?: string, topFilters?: number, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDFiltersTrendsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDFiltersTrendsGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDFiltersTrendsGet200Response, any>>;
|
|
14191
|
+
adminAnalyticsStoreXStoreIDFiltersTrendsGet(xStoreID: string, startTime?: string, endTime?: string, granularity?: AdminAnalyticsStoreXStoreIDFiltersTrendsGetGranularityEnum, filterKey?: string, topFilters?: number, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDFiltersTrendsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDFiltersTrendsGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDFiltersTrendsGet200Response, any, {}>>;
|
|
14000
14192
|
/**
|
|
14001
14193
|
* Retrieve geographic analytics data showing search behavior by country, region, and city with analytics tags filtering support and comparison mode
|
|
14002
14194
|
* @summary Get Geographic Analytics
|
|
@@ -14028,7 +14220,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
14028
14220
|
* @throws {RequiredError}
|
|
14029
14221
|
* @memberof AnalyticsApi
|
|
14030
14222
|
*/
|
|
14031
|
-
adminAnalyticsStoreXStoreIDGeoGet(xStoreID: string, startTime?: string, endTime?: string, granularity?: AdminAnalyticsStoreXStoreIDGeoGetGranularityEnum, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDGeoGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDGeoGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDGeoGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDGeoGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDGeoGet200Response, any>>;
|
|
14223
|
+
adminAnalyticsStoreXStoreIDGeoGet(xStoreID: string, startTime?: string, endTime?: string, granularity?: AdminAnalyticsStoreXStoreIDGeoGetGranularityEnum, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDGeoGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDGeoGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDGeoGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDGeoGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDGeoGet200Response, any, {}>>;
|
|
14032
14224
|
/**
|
|
14033
14225
|
* Check the health status of analytics service and ClickHouse connection
|
|
14034
14226
|
* @summary Analytics Health Check
|
|
@@ -14037,7 +14229,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
14037
14229
|
* @throws {RequiredError}
|
|
14038
14230
|
* @memberof AnalyticsApi
|
|
14039
14231
|
*/
|
|
14040
|
-
adminAnalyticsStoreXStoreIDHealthGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AnalyticsAnalyticsAPIResponse, any>>;
|
|
14232
|
+
adminAnalyticsStoreXStoreIDHealthGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AnalyticsAnalyticsAPIResponse, any, {}>>;
|
|
14041
14233
|
/**
|
|
14042
14234
|
* Retrieve comprehensive KPI metrics including searches, clicks, conversions, and revenue data with time series and summary. Supports analytics tags filtering with AND/OR operators and comparison mode between different timelines and tag sets.
|
|
14043
14235
|
* @summary Get KPI Analytics
|
|
@@ -14066,7 +14258,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
14066
14258
|
* @throws {RequiredError}
|
|
14067
14259
|
* @memberof AnalyticsApi
|
|
14068
14260
|
*/
|
|
14069
|
-
adminAnalyticsStoreXStoreIDKpiGet(xStoreID: string, startTime?: string, endTime?: string, granularity?: AdminAnalyticsStoreXStoreIDKpiGetGranularityEnum, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDKpiGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDKpiGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDKpiGet200Response, any>>;
|
|
14261
|
+
adminAnalyticsStoreXStoreIDKpiGet(xStoreID: string, startTime?: string, endTime?: string, granularity?: AdminAnalyticsStoreXStoreIDKpiGetGranularityEnum, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDKpiGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDKpiGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDKpiGet200Response, any, {}>>;
|
|
14070
14262
|
/**
|
|
14071
14263
|
* Retrieve real-time KPI metrics for the last hour with minute-level granularity
|
|
14072
14264
|
* @summary Get Realtime KPI Analytics
|
|
@@ -14075,7 +14267,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
14075
14267
|
* @throws {RequiredError}
|
|
14076
14268
|
* @memberof AnalyticsApi
|
|
14077
14269
|
*/
|
|
14078
|
-
adminAnalyticsStoreXStoreIDKpiRealtimeGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AnalyticsAnalyticsAPIResponse, any>>;
|
|
14270
|
+
adminAnalyticsStoreXStoreIDKpiRealtimeGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AnalyticsAnalyticsAPIResponse, any, {}>>;
|
|
14079
14271
|
/**
|
|
14080
14272
|
* Retrieve detailed analytics for search queries including performance metrics, click-through rates, and conversion data with advanced analytics tags filtering and comparison mode support
|
|
14081
14273
|
* @summary Get Query Analytics
|
|
@@ -14109,7 +14301,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
14109
14301
|
* @throws {RequiredError}
|
|
14110
14302
|
* @memberof AnalyticsApi
|
|
14111
14303
|
*/
|
|
14112
|
-
adminAnalyticsStoreXStoreIDQueriesGet(xStoreID: string, startTime?: string, endTime?: string, granularity?: AdminAnalyticsStoreXStoreIDQueriesGetGranularityEnum, search?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, limit?: number, offset?: number, page?: number, pageSize?: number, orderBy?: string, sortBy?: AdminAnalyticsStoreXStoreIDQueriesGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDQueriesGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDQueriesGet200Response, any>>;
|
|
14304
|
+
adminAnalyticsStoreXStoreIDQueriesGet(xStoreID: string, startTime?: string, endTime?: string, granularity?: AdminAnalyticsStoreXStoreIDQueriesGetGranularityEnum, search?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, limit?: number, offset?: number, page?: number, pageSize?: number, orderBy?: string, sortBy?: AdminAnalyticsStoreXStoreIDQueriesGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDQueriesGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDQueriesGet200Response, any, {}>>;
|
|
14113
14305
|
/**
|
|
14114
14306
|
* Retrieve queries that received searches but no user clicks, indicating poor result relevance with analytics tags filtering and comparison mode support
|
|
14115
14307
|
* @summary Get No-Clicks Queries
|
|
@@ -14141,7 +14333,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
14141
14333
|
* @throws {RequiredError}
|
|
14142
14334
|
* @memberof AnalyticsApi
|
|
14143
14335
|
*/
|
|
14144
|
-
adminAnalyticsStoreXStoreIDQueriesNoClicksGet(xStoreID: string, startTime?: string, endTime?: string, search?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesNoClicksGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesNoClicksGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDQueriesNoClicksGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDQueriesNoClicksGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDQueriesNoClicksGet200Response, any>>;
|
|
14336
|
+
adminAnalyticsStoreXStoreIDQueriesNoClicksGet(xStoreID: string, startTime?: string, endTime?: string, search?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesNoClicksGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesNoClicksGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDQueriesNoClicksGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDQueriesNoClicksGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDQueriesNoClicksGet200Response, any, {}>>;
|
|
14145
14337
|
/**
|
|
14146
14338
|
* Retrieve queries that returned no search results, useful for identifying content gaps with analytics tags filtering and comparison mode support
|
|
14147
14339
|
* @summary Get No-Results Queries
|
|
@@ -14173,19 +14365,32 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
14173
14365
|
* @throws {RequiredError}
|
|
14174
14366
|
* @memberof AnalyticsApi
|
|
14175
14367
|
*/
|
|
14176
|
-
adminAnalyticsStoreXStoreIDQueriesNoResultsGet(xStoreID: string, startTime?: string, endTime?: string, search?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDQueriesNoClicksGet200Response, any>>;
|
|
14368
|
+
adminAnalyticsStoreXStoreIDQueriesNoResultsGet(xStoreID: string, startTime?: string, endTime?: string, search?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDQueriesNoClicksGet200Response, any, {}>>;
|
|
14177
14369
|
/**
|
|
14178
|
-
* Retrieve comprehensive analytics for a specific search query including popular results, filters, click position histogram, and performance metrics
|
|
14370
|
+
* Retrieve comprehensive analytics for a specific search query including popular results, filters, click position histogram, and performance metrics with deep comparison mode support and independent pagination for popular results and filters
|
|
14179
14371
|
* @summary Get Query Insights
|
|
14180
14372
|
* @param {string} xStoreID Store ID
|
|
14181
14373
|
* @param {string} query Search query to analyze
|
|
14182
14374
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
14183
14375
|
* @param {string} [endTime] End time in RFC3339 format
|
|
14376
|
+
* @param {boolean} [compareMode] Enable comparison mode to compare with another time period/tag set
|
|
14377
|
+
* @param {string} [compareStartTime] Comparison period start time in RFC3339 format
|
|
14378
|
+
* @param {string} [compareEndTime] Comparison period end time in RFC3339 format
|
|
14379
|
+
* @param {string} [compareAnalyticsTags] Comma-separated analytics tags for comparison period
|
|
14380
|
+
* @param {AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum} [compareTagsMatchMode] How to match comparison analytics tags
|
|
14381
|
+
* @param {string} [compareTagsExclude] Comma-separated analytics tags to exclude in comparison
|
|
14382
|
+
* @param {string} [compareTagKeyFilter] Tag key filter for comparison period
|
|
14383
|
+
* @param {string} [compareTagValueFilter] Tag value filter for comparison period
|
|
14384
|
+
* @param {number} [resultsPage] Page number for popular results pagination
|
|
14385
|
+
* @param {number} [resultsPageSize] Number of results per page for popular results
|
|
14386
|
+
* @param {number} [filtersPage] Page number for popular filters pagination
|
|
14387
|
+
* @param {number} [filtersPageSize] Number of filters per page for popular filters
|
|
14388
|
+
* @param {boolean} [includeWidget] Whether to include widget display fields for popular results
|
|
14184
14389
|
* @param {*} [options] Override http request option.
|
|
14185
14390
|
* @throws {RequiredError}
|
|
14186
14391
|
* @memberof AnalyticsApi
|
|
14187
14392
|
*/
|
|
14188
|
-
adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID: string, query: string, startTime?: string, endTime?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGet200Response, any>>;
|
|
14393
|
+
adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID: string, query: string, startTime?: string, endTime?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, resultsPage?: number, resultsPageSize?: number, filtersPage?: number, filtersPageSize?: number, includeWidget?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGet200Response, any, {}>>;
|
|
14189
14394
|
/**
|
|
14190
14395
|
* Retrieve analytics for top performing search results with optional enrichment. By default returns widget display fields for UI presentation. Use include_documents=true for full document data (heavier response). Supports lightweight widget-only mode for dashboards with analytics tags filtering and comparison mode support.
|
|
14191
14396
|
* @summary Get Top Results Analytics
|
|
@@ -14220,7 +14425,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
14220
14425
|
* @throws {RequiredError}
|
|
14221
14426
|
* @memberof AnalyticsApi
|
|
14222
14427
|
*/
|
|
14223
|
-
adminAnalyticsStoreXStoreIDResultsGet(xStoreID: string, startTime?: string, endTime?: string, itemIds?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, minImpressions?: number, sortBy?: AdminAnalyticsStoreXStoreIDResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDResultsGetSortOrderEnum, sort?: string, includeDocuments?: boolean, includeWidget?: boolean, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDItemsPerformanceGet200Response, any>>;
|
|
14428
|
+
adminAnalyticsStoreXStoreIDResultsGet(xStoreID: string, startTime?: string, endTime?: string, itemIds?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, minImpressions?: number, sortBy?: AdminAnalyticsStoreXStoreIDResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDResultsGetSortOrderEnum, sort?: string, includeDocuments?: boolean, includeWidget?: boolean, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDItemsPerformanceGet200Response, any, {}>>;
|
|
14224
14429
|
/**
|
|
14225
14430
|
* Retrieve analytics tags usage data and filtering capabilities
|
|
14226
14431
|
* @summary Get Analytics Tags
|
|
@@ -14242,7 +14447,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
14242
14447
|
* @throws {RequiredError}
|
|
14243
14448
|
* @memberof AnalyticsApi
|
|
14244
14449
|
*/
|
|
14245
|
-
adminAnalyticsStoreXStoreIDTagsGet(xStoreID: string, startTime?: string, endTime?: string, search?: string, tagKey?: string, tagValue?: string, minUsage?: number, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDTagsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDTagsGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AnalyticsAnalyticsAPIResponse, any>>;
|
|
14450
|
+
adminAnalyticsStoreXStoreIDTagsGet(xStoreID: string, startTime?: string, endTime?: string, search?: string, tagKey?: string, tagValue?: string, minUsage?: number, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDTagsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDTagsGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AnalyticsAnalyticsAPIResponse, any, {}>>;
|
|
14246
14451
|
/**
|
|
14247
14452
|
* Retrieve high-level summary of analytics tags usage and statistics
|
|
14248
14453
|
* @summary Get Analytics Tags Summary
|
|
@@ -14260,7 +14465,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
14260
14465
|
* @throws {RequiredError}
|
|
14261
14466
|
* @memberof AnalyticsApi
|
|
14262
14467
|
*/
|
|
14263
|
-
adminAnalyticsStoreXStoreIDTagsSummaryGet(xStoreID: string, startTime?: string, endTime?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDTagsSummaryGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDTagsSummaryGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AnalyticsAnalyticsAPIResponse, any>>;
|
|
14468
|
+
adminAnalyticsStoreXStoreIDTagsSummaryGet(xStoreID: string, startTime?: string, endTime?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDTagsSummaryGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDTagsSummaryGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AnalyticsAnalyticsAPIResponse, any, {}>>;
|
|
14264
14469
|
}
|
|
14265
14470
|
/**
|
|
14266
14471
|
* @export
|
|
@@ -14551,6 +14756,14 @@ export declare const AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortOrderEnum
|
|
|
14551
14756
|
readonly Desc: "desc";
|
|
14552
14757
|
};
|
|
14553
14758
|
export type AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortOrderEnum = typeof AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortOrderEnum[keyof typeof AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortOrderEnum];
|
|
14759
|
+
/**
|
|
14760
|
+
* @export
|
|
14761
|
+
*/
|
|
14762
|
+
export declare const AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum: {
|
|
14763
|
+
readonly Any: "any";
|
|
14764
|
+
readonly All: "all";
|
|
14765
|
+
};
|
|
14766
|
+
export type AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum = typeof AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum[keyof typeof AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum];
|
|
14554
14767
|
/**
|
|
14555
14768
|
* @export
|
|
14556
14769
|
*/
|
|
@@ -14802,7 +15015,7 @@ export declare class AnalyticsEventsApi extends BaseAPI {
|
|
|
14802
15015
|
* @throws {RequiredError}
|
|
14803
15016
|
* @memberof AnalyticsEventsApi
|
|
14804
15017
|
*/
|
|
14805
|
-
apiAnalyticsBatchPost(xStoreid: string, xStoresecret: string, body: ApiAnalyticsBatchPostRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
15018
|
+
apiAnalyticsBatchPost(xStoreid: string, xStoresecret: string, body: ApiAnalyticsBatchPostRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
14806
15019
|
/**
|
|
14807
15020
|
* Retrieve analytics configuration including supported event types, batch limits, and funnel stages for client integration
|
|
14808
15021
|
* @summary Get Analytics Configuration
|
|
@@ -14812,7 +15025,7 @@ export declare class AnalyticsEventsApi extends BaseAPI {
|
|
|
14812
15025
|
* @throws {RequiredError}
|
|
14813
15026
|
* @memberof AnalyticsEventsApi
|
|
14814
15027
|
*/
|
|
14815
|
-
apiAnalyticsConfigGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
15028
|
+
apiAnalyticsConfigGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
14816
15029
|
/**
|
|
14817
15030
|
* Submit a single analytics event for tracking user interactions, search behavior, and conversions
|
|
14818
15031
|
* @summary Submit Analytics Event
|
|
@@ -14823,7 +15036,7 @@ export declare class AnalyticsEventsApi extends BaseAPI {
|
|
|
14823
15036
|
* @throws {RequiredError}
|
|
14824
15037
|
* @memberof AnalyticsEventsApi
|
|
14825
15038
|
*/
|
|
14826
|
-
apiAnalyticsEventPost(xStoreid: string, xStoresecret: string, body: DataTypesEventPayload, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
15039
|
+
apiAnalyticsEventPost(xStoreid: string, xStoresecret: string, body: DataTypesEventPayload, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
14827
15040
|
/**
|
|
14828
15041
|
* Retrieve the complete event schema including required and optional fields, data types, and validation rules
|
|
14829
15042
|
* @summary Get Event Schema
|
|
@@ -14833,7 +15046,7 @@ export declare class AnalyticsEventsApi extends BaseAPI {
|
|
|
14833
15046
|
* @throws {RequiredError}
|
|
14834
15047
|
* @memberof AnalyticsEventsApi
|
|
14835
15048
|
*/
|
|
14836
|
-
apiAnalyticsSchemaGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
15049
|
+
apiAnalyticsSchemaGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
14837
15050
|
/**
|
|
14838
15051
|
* Validate an analytics event payload without actually processing or storing it
|
|
14839
15052
|
* @summary Validate Analytics Event
|
|
@@ -14844,7 +15057,7 @@ export declare class AnalyticsEventsApi extends BaseAPI {
|
|
|
14844
15057
|
* @throws {RequiredError}
|
|
14845
15058
|
* @memberof AnalyticsEventsApi
|
|
14846
15059
|
*/
|
|
14847
|
-
apiAnalyticsValidatePost(xStoreid: string, xStoresecret: string, body: DataTypesEventPayload, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
15060
|
+
apiAnalyticsValidatePost(xStoreid: string, xStoresecret: string, body: DataTypesEventPayload, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
14848
15061
|
}
|
|
14849
15062
|
/**
|
|
14850
15063
|
* ArticlesApi - axios parameter creator
|
|
@@ -14999,7 +15212,7 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
14999
15212
|
* @throws {RequiredError}
|
|
15000
15213
|
* @memberof ArticlesApi
|
|
15001
15214
|
*/
|
|
15002
|
-
adminArticlesArticleIDDelete(articleID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
15215
|
+
adminArticlesArticleIDDelete(articleID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
15003
15216
|
/**
|
|
15004
15217
|
* Fetches article by id
|
|
15005
15218
|
* @summary Fetches article by id
|
|
@@ -15008,7 +15221,7 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
15008
15221
|
* @throws {RequiredError}
|
|
15009
15222
|
* @memberof ArticlesApi
|
|
15010
15223
|
*/
|
|
15011
|
-
adminArticlesArticleIDGet(articleID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMgArticleResponse, any>>;
|
|
15224
|
+
adminArticlesArticleIDGet(articleID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMgArticleResponse, any, {}>>;
|
|
15012
15225
|
/**
|
|
15013
15226
|
* Update article information by ID.
|
|
15014
15227
|
* @summary Update an existing Article
|
|
@@ -15018,7 +15231,7 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
15018
15231
|
* @throws {RequiredError}
|
|
15019
15232
|
* @memberof ArticlesApi
|
|
15020
15233
|
*/
|
|
15021
|
-
adminArticlesArticleIDPut(articleID: number, createArticleRequestDto: MgDocumentTypesCreateArticleRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
15234
|
+
adminArticlesArticleIDPut(articleID: number, createArticleRequestDto: MgDocumentTypesCreateArticleRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
15022
15235
|
/**
|
|
15023
15236
|
* Fetches list of all Articles
|
|
15024
15237
|
* @summary Fetches list of all Articles
|
|
@@ -15026,7 +15239,7 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
15026
15239
|
* @throws {RequiredError}
|
|
15027
15240
|
* @memberof ArticlesApi
|
|
15028
15241
|
*/
|
|
15029
|
-
adminArticlesGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMgArticlesListResponse, any>>;
|
|
15242
|
+
adminArticlesGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMgArticlesListResponse, any, {}>>;
|
|
15030
15243
|
/**
|
|
15031
15244
|
* Adds a new article to the system
|
|
15032
15245
|
* @summary Creates a new article
|
|
@@ -15035,7 +15248,7 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
15035
15248
|
* @throws {RequiredError}
|
|
15036
15249
|
* @memberof ArticlesApi
|
|
15037
15250
|
*/
|
|
15038
|
-
adminArticlesPost(plan: MgDocumentTypesCreateArticleRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
15251
|
+
adminArticlesPost(plan: MgDocumentTypesCreateArticleRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
15039
15252
|
}
|
|
15040
15253
|
/**
|
|
15041
15254
|
* AuthApi - axios parameter creator
|
|
@@ -15136,7 +15349,7 @@ export declare class AuthApi extends BaseAPI {
|
|
|
15136
15349
|
* @throws {RequiredError}
|
|
15137
15350
|
* @memberof AuthApi
|
|
15138
15351
|
*/
|
|
15139
|
-
authLoginPost(login: DataTypesLoginRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesLoginResponseWrapper, any>>;
|
|
15352
|
+
authLoginPost(login: DataTypesLoginRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesLoginResponseWrapper, any, {}>>;
|
|
15140
15353
|
/**
|
|
15141
15354
|
* Logs out the authenticated user
|
|
15142
15355
|
* @summary Logout a user
|
|
@@ -15144,7 +15357,7 @@ export declare class AuthApi extends BaseAPI {
|
|
|
15144
15357
|
* @throws {RequiredError}
|
|
15145
15358
|
* @memberof AuthApi
|
|
15146
15359
|
*/
|
|
15147
|
-
authLogoutPost(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
15360
|
+
authLogoutPost(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
15148
15361
|
/**
|
|
15149
15362
|
* Returns refreshed session data for authenticated user
|
|
15150
15363
|
* @summary Get current auth session
|
|
@@ -15152,7 +15365,7 @@ export declare class AuthApi extends BaseAPI {
|
|
|
15152
15365
|
* @throws {RequiredError}
|
|
15153
15366
|
* @memberof AuthApi
|
|
15154
15367
|
*/
|
|
15155
|
-
authSessionGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesLoginResponseWrapper, any>>;
|
|
15368
|
+
authSessionGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesLoginResponseWrapper, any, {}>>;
|
|
15156
15369
|
}
|
|
15157
15370
|
/**
|
|
15158
15371
|
* ConnectorsApi - axios parameter creator
|
|
@@ -15416,7 +15629,7 @@ export declare class ConnectorsApi extends BaseAPI {
|
|
|
15416
15629
|
* @throws {RequiredError}
|
|
15417
15630
|
* @memberof ConnectorsApi
|
|
15418
15631
|
*/
|
|
15419
|
-
v1ConnectorsSearchIndexGet(index: string, q: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSearchResultResponse, any>>;
|
|
15632
|
+
v1ConnectorsSearchIndexGet(index: string, q: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSearchResultResponse, any, {}>>;
|
|
15420
15633
|
/**
|
|
15421
15634
|
* Get all sources
|
|
15422
15635
|
* @summary Get all sources
|
|
@@ -15424,7 +15637,7 @@ export declare class ConnectorsApi extends BaseAPI {
|
|
|
15424
15637
|
* @throws {RequiredError}
|
|
15425
15638
|
* @memberof ConnectorsApi
|
|
15426
15639
|
*/
|
|
15427
|
-
v1ConnectorsSourcesGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSourcesListResponse, any>>;
|
|
15640
|
+
v1ConnectorsSourcesGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSourcesListResponse, any, {}>>;
|
|
15428
15641
|
/**
|
|
15429
15642
|
* Create source
|
|
15430
15643
|
* @summary Create source
|
|
@@ -15433,7 +15646,7 @@ export declare class ConnectorsApi extends BaseAPI {
|
|
|
15433
15646
|
* @throws {RequiredError}
|
|
15434
15647
|
* @memberof ConnectorsApi
|
|
15435
15648
|
*/
|
|
15436
|
-
v1ConnectorsSourcesPost(source: DataTypesCreateSourceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCreateSourceResponse, any>>;
|
|
15649
|
+
v1ConnectorsSourcesPost(source: DataTypesCreateSourceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCreateSourceResponse, any, {}>>;
|
|
15437
15650
|
/**
|
|
15438
15651
|
* Update source config by id
|
|
15439
15652
|
* @summary Update source config by id
|
|
@@ -15445,7 +15658,7 @@ export declare class ConnectorsApi extends BaseAPI {
|
|
|
15445
15658
|
*/
|
|
15446
15659
|
v1ConnectorsSourcesSourceIdConfigPut(sourceId: string, config: {
|
|
15447
15660
|
[key: string]: any;
|
|
15448
|
-
}, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
15661
|
+
}, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
15449
15662
|
/**
|
|
15450
15663
|
* Get source by id
|
|
15451
15664
|
* @summary Get source by id
|
|
@@ -15453,7 +15666,7 @@ export declare class ConnectorsApi extends BaseAPI {
|
|
|
15453
15666
|
* @throws {RequiredError}
|
|
15454
15667
|
* @memberof ConnectorsApi
|
|
15455
15668
|
*/
|
|
15456
|
-
v1ConnectorsSourcesSourceIdGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateSourceConfigResponseWrapper, any>>;
|
|
15669
|
+
v1ConnectorsSourcesSourceIdGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateSourceConfigResponseWrapper, any, {}>>;
|
|
15457
15670
|
/**
|
|
15458
15671
|
* Update Index schema
|
|
15459
15672
|
* @summary Update Index schema
|
|
@@ -15463,7 +15676,7 @@ export declare class ConnectorsApi extends BaseAPI {
|
|
|
15463
15676
|
* @throws {RequiredError}
|
|
15464
15677
|
* @memberof ConnectorsApi
|
|
15465
15678
|
*/
|
|
15466
|
-
v1ConnectorsSourcesSourceidUpdateschemaPost(sourceid: string, schema: DataTypesUpdateIndexSchemaRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateSchemaResponse, any>>;
|
|
15679
|
+
v1ConnectorsSourcesSourceidUpdateschemaPost(sourceid: string, schema: DataTypesUpdateIndexSchemaRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateSchemaResponse, any, {}>>;
|
|
15467
15680
|
/**
|
|
15468
15681
|
* Upload source data
|
|
15469
15682
|
* @summary Upload source data
|
|
@@ -15472,7 +15685,7 @@ export declare class ConnectorsApi extends BaseAPI {
|
|
|
15472
15685
|
* @throws {RequiredError}
|
|
15473
15686
|
* @memberof ConnectorsApi
|
|
15474
15687
|
*/
|
|
15475
|
-
v1ConnectorsSourcesSourceidUploaddataPost(v1ConnectorsSourcesSourceidUploaddataPostRequest: V1ConnectorsSourcesSourceidUploaddataPostRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUploadSourceDataResponseWrapper, any>>;
|
|
15688
|
+
v1ConnectorsSourcesSourceidUploaddataPost(v1ConnectorsSourcesSourceidUploaddataPostRequest: V1ConnectorsSourcesSourceidUploaddataPostRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUploadSourceDataResponseWrapper, any, {}>>;
|
|
15476
15689
|
/**
|
|
15477
15690
|
* Create task
|
|
15478
15691
|
* @summary Create task
|
|
@@ -15481,7 +15694,7 @@ export declare class ConnectorsApi extends BaseAPI {
|
|
|
15481
15694
|
* @throws {RequiredError}
|
|
15482
15695
|
* @memberof ConnectorsApi
|
|
15483
15696
|
*/
|
|
15484
|
-
v1ConnectorsTasksPost(task: DataTypesCreateTaskRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCreateTaskResponse, any>>;
|
|
15697
|
+
v1ConnectorsTasksPost(task: DataTypesCreateTaskRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCreateTaskResponse, any, {}>>;
|
|
15485
15698
|
/**
|
|
15486
15699
|
* Trigger task run
|
|
15487
15700
|
* @summary Trigger task run
|
|
@@ -15491,7 +15704,7 @@ export declare class ConnectorsApi extends BaseAPI {
|
|
|
15491
15704
|
* @throws {RequiredError}
|
|
15492
15705
|
* @memberof ConnectorsApi
|
|
15493
15706
|
*/
|
|
15494
|
-
v1ConnectorsTasksTaskIdRunPost(taskId: string, initiatedBy: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesTriggerTaskRunResponse, any>>;
|
|
15707
|
+
v1ConnectorsTasksTaskIdRunPost(taskId: string, initiatedBy: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesTriggerTaskRunResponse, any, {}>>;
|
|
15495
15708
|
}
|
|
15496
15709
|
/**
|
|
15497
15710
|
* CreditsApi - axios parameter creator
|
|
@@ -15763,7 +15976,7 @@ export declare class CreditsApi extends BaseAPI {
|
|
|
15763
15976
|
* @throws {RequiredError}
|
|
15764
15977
|
* @memberof CreditsApi
|
|
15765
15978
|
*/
|
|
15766
|
-
apiCreditsAdminAdjustPost(request: DataTypesManualCreditAdjustmentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesCreditAdjustmentResponse, any>>;
|
|
15979
|
+
apiCreditsAdminAdjustPost(request: DataTypesManualCreditAdjustmentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesCreditAdjustmentResponse, any, {}>>;
|
|
15767
15980
|
/**
|
|
15768
15981
|
* Get comprehensive credit balance including recent transactions, usage patterns, and expiry details
|
|
15769
15982
|
* @summary Get detailed organization credit balance
|
|
@@ -15772,7 +15985,7 @@ export declare class CreditsApi extends BaseAPI {
|
|
|
15772
15985
|
* @throws {RequiredError}
|
|
15773
15986
|
* @memberof CreditsApi
|
|
15774
15987
|
*/
|
|
15775
|
-
apiCreditsBalanceDetailedGet(limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesDetailedCreditBalanceResponse, any>>;
|
|
15988
|
+
apiCreditsBalanceDetailedGet(limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesDetailedCreditBalanceResponse, any, {}>>;
|
|
15776
15989
|
/**
|
|
15777
15990
|
* Get current credit balance and summary for the authenticated user\'s organization
|
|
15778
15991
|
* @summary Get organization credit balance
|
|
@@ -15780,7 +15993,7 @@ export declare class CreditsApi extends BaseAPI {
|
|
|
15780
15993
|
* @throws {RequiredError}
|
|
15781
15994
|
* @memberof CreditsApi
|
|
15782
15995
|
*/
|
|
15783
|
-
apiCreditsBalanceGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesCreditBalance, any>>;
|
|
15996
|
+
apiCreditsBalanceGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesCreditBalance, any, {}>>;
|
|
15784
15997
|
/**
|
|
15785
15998
|
* Get current credit balance for a specific store (legacy endpoint - use organization endpoints instead)
|
|
15786
15999
|
* @summary Get store credit balance (legacy)
|
|
@@ -15790,7 +16003,7 @@ export declare class CreditsApi extends BaseAPI {
|
|
|
15790
16003
|
* @throws {RequiredError}
|
|
15791
16004
|
* @memberof CreditsApi
|
|
15792
16005
|
*/
|
|
15793
|
-
apiCreditsBalanceStoreStoreIdGet(storeId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesCreditBalance, any>>;
|
|
16006
|
+
apiCreditsBalanceStoreStoreIdGet(storeId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesCreditBalance, any, {}>>;
|
|
15794
16007
|
/**
|
|
15795
16008
|
* Manually consume credits for testing or administrative purposes using FIFO logic
|
|
15796
16009
|
* @summary Manually consume credits
|
|
@@ -15799,7 +16012,7 @@ export declare class CreditsApi extends BaseAPI {
|
|
|
15799
16012
|
* @throws {RequiredError}
|
|
15800
16013
|
* @memberof CreditsApi
|
|
15801
16014
|
*/
|
|
15802
|
-
apiCreditsConsumePost(request: DataTypesManualConsumeCreditsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesCreditConsumptionResult, any>>;
|
|
16015
|
+
apiCreditsConsumePost(request: DataTypesManualConsumeCreditsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesCreditConsumptionResult, any, {}>>;
|
|
15803
16016
|
/**
|
|
15804
16017
|
* Get detailed history of credit consumption with FIFO breakdown and analytics
|
|
15805
16018
|
* @summary Get FIFO consumption history
|
|
@@ -15812,7 +16025,7 @@ export declare class CreditsApi extends BaseAPI {
|
|
|
15812
16025
|
* @throws {RequiredError}
|
|
15813
16026
|
* @memberof CreditsApi
|
|
15814
16027
|
*/
|
|
15815
|
-
apiCreditsConsumptionHistoryGet(page?: number, limit?: number, endpoint?: string, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesConsumptionHistoryResponse, any>>;
|
|
16028
|
+
apiCreditsConsumptionHistoryGet(page?: number, limit?: number, endpoint?: string, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesConsumptionHistoryResponse, any, {}>>;
|
|
15816
16029
|
/**
|
|
15817
16030
|
* Get all active credit plans available for purchase with detailed pricing and features
|
|
15818
16031
|
* @summary Get available credit plans
|
|
@@ -15820,7 +16033,7 @@ export declare class CreditsApi extends BaseAPI {
|
|
|
15820
16033
|
* @throws {RequiredError}
|
|
15821
16034
|
* @memberof CreditsApi
|
|
15822
16035
|
*/
|
|
15823
|
-
apiCreditsPlansGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseArrayDataTypesCreditPlan, any>>;
|
|
16036
|
+
apiCreditsPlansGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseArrayDataTypesCreditPlan, any, {}>>;
|
|
15824
16037
|
/**
|
|
15825
16038
|
* Purchase credits using a credit plan with payment processing
|
|
15826
16039
|
* @summary Purchase credits
|
|
@@ -15829,7 +16042,7 @@ export declare class CreditsApi extends BaseAPI {
|
|
|
15829
16042
|
* @throws {RequiredError}
|
|
15830
16043
|
* @memberof CreditsApi
|
|
15831
16044
|
*/
|
|
15832
|
-
apiCreditsPurchasePost(request: DataTypesPurchaseCreditsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesPurchaseCreditsResponse, any>>;
|
|
16045
|
+
apiCreditsPurchasePost(request: DataTypesPurchaseCreditsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesPurchaseCreditsResponse, any, {}>>;
|
|
15833
16046
|
/**
|
|
15834
16047
|
* Get paginated credit transaction history for the authenticated organization
|
|
15835
16048
|
* @summary Get organization credit transactions
|
|
@@ -15842,7 +16055,7 @@ export declare class CreditsApi extends BaseAPI {
|
|
|
15842
16055
|
* @throws {RequiredError}
|
|
15843
16056
|
* @memberof CreditsApi
|
|
15844
16057
|
*/
|
|
15845
|
-
apiCreditsTransactionsGet(page?: number, limit?: number, type?: ApiCreditsTransactionsGetTypeEnum, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesPaginatedTransactionsResponse, any>>;
|
|
16058
|
+
apiCreditsTransactionsGet(page?: number, limit?: number, type?: ApiCreditsTransactionsGetTypeEnum, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesPaginatedTransactionsResponse, any, {}>>;
|
|
15846
16059
|
}
|
|
15847
16060
|
/**
|
|
15848
16061
|
* @export
|
|
@@ -16097,7 +16310,7 @@ export declare class CustomStopwordsApi extends BaseAPI {
|
|
|
16097
16310
|
* @throws {RequiredError}
|
|
16098
16311
|
* @memberof CustomStopwordsApi
|
|
16099
16312
|
*/
|
|
16100
|
-
adminStoresXStoreIDStopwordsCustomWordlistsCustomWordListIDDelete(xStoreID: string, customWordListID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateWordStatusResponseWrapper, any>>;
|
|
16313
|
+
adminStoresXStoreIDStopwordsCustomWordlistsCustomWordListIDDelete(xStoreID: string, customWordListID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateWordStatusResponseWrapper, any, {}>>;
|
|
16101
16314
|
/**
|
|
16102
16315
|
* Fetches a specific custom word list by ID
|
|
16103
16316
|
* @summary Get custom word list by ID
|
|
@@ -16107,7 +16320,7 @@ export declare class CustomStopwordsApi extends BaseAPI {
|
|
|
16107
16320
|
* @throws {RequiredError}
|
|
16108
16321
|
* @memberof CustomStopwordsApi
|
|
16109
16322
|
*/
|
|
16110
|
-
adminStoresXStoreIDStopwordsCustomWordlistsCustomWordListIDGet(xStoreID: string, customWordListID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCustomWordListResponseWrapper, any>>;
|
|
16323
|
+
adminStoresXStoreIDStopwordsCustomWordlistsCustomWordListIDGet(xStoreID: string, customWordListID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCustomWordListResponseWrapper, any, {}>>;
|
|
16111
16324
|
/**
|
|
16112
16325
|
* Updates a custom word list
|
|
16113
16326
|
* @summary Update custom word list
|
|
@@ -16118,7 +16331,7 @@ export declare class CustomStopwordsApi extends BaseAPI {
|
|
|
16118
16331
|
* @throws {RequiredError}
|
|
16119
16332
|
* @memberof CustomStopwordsApi
|
|
16120
16333
|
*/
|
|
16121
|
-
adminStoresXStoreIDStopwordsCustomWordlistsCustomWordListIDPut(xStoreID: string, customWordListID: number, body: DataTypesUpdateCustomWordListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateWordStatusResponseWrapper, any>>;
|
|
16334
|
+
adminStoresXStoreIDStopwordsCustomWordlistsCustomWordListIDPut(xStoreID: string, customWordListID: number, body: DataTypesUpdateCustomWordListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateWordStatusResponseWrapper, any, {}>>;
|
|
16122
16335
|
/**
|
|
16123
16336
|
* Removes words from a custom word list
|
|
16124
16337
|
* @summary Remove words from custom word list
|
|
@@ -16129,7 +16342,7 @@ export declare class CustomStopwordsApi extends BaseAPI {
|
|
|
16129
16342
|
* @throws {RequiredError}
|
|
16130
16343
|
* @memberof CustomStopwordsApi
|
|
16131
16344
|
*/
|
|
16132
|
-
adminStoresXStoreIDStopwordsCustomWordlistsCustomWordListIDWordsDelete(xStoreID: string, customWordListID: number, body: DataTypesRemoveWordsFromCustomListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateWordStatusResponseWrapper, any>>;
|
|
16345
|
+
adminStoresXStoreIDStopwordsCustomWordlistsCustomWordListIDWordsDelete(xStoreID: string, customWordListID: number, body: DataTypesRemoveWordsFromCustomListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateWordStatusResponseWrapper, any, {}>>;
|
|
16133
16346
|
/**
|
|
16134
16347
|
* Adds words to an existing custom word list
|
|
16135
16348
|
* @summary Add words to custom word list
|
|
@@ -16140,7 +16353,7 @@ export declare class CustomStopwordsApi extends BaseAPI {
|
|
|
16140
16353
|
* @throws {RequiredError}
|
|
16141
16354
|
* @memberof CustomStopwordsApi
|
|
16142
16355
|
*/
|
|
16143
|
-
adminStoresXStoreIDStopwordsCustomWordlistsCustomWordListIDWordsPost(xStoreID: string, customWordListID: number, body: DataTypesAddWordsToCustomListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateWordStatusResponseWrapper, any>>;
|
|
16356
|
+
adminStoresXStoreIDStopwordsCustomWordlistsCustomWordListIDWordsPost(xStoreID: string, customWordListID: number, body: DataTypesAddWordsToCustomListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateWordStatusResponseWrapper, any, {}>>;
|
|
16144
16357
|
/**
|
|
16145
16358
|
* Fetches custom word lists for a store with pagination
|
|
16146
16359
|
* @summary Get custom word lists
|
|
@@ -16153,7 +16366,7 @@ export declare class CustomStopwordsApi extends BaseAPI {
|
|
|
16153
16366
|
* @throws {RequiredError}
|
|
16154
16367
|
* @memberof CustomStopwordsApi
|
|
16155
16368
|
*/
|
|
16156
|
-
adminStoresXStoreIDStopwordsCustomWordlistsGet(xStoreID: string, lang?: string, type?: string, page?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCustomWordListsResponseWrapper, any>>;
|
|
16369
|
+
adminStoresXStoreIDStopwordsCustomWordlistsGet(xStoreID: string, lang?: string, type?: string, page?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCustomWordListsResponseWrapper, any, {}>>;
|
|
16157
16370
|
/**
|
|
16158
16371
|
* Creates a new custom word list for a store
|
|
16159
16372
|
* @summary Create custom word list
|
|
@@ -16163,7 +16376,7 @@ export declare class CustomStopwordsApi extends BaseAPI {
|
|
|
16163
16376
|
* @throws {RequiredError}
|
|
16164
16377
|
* @memberof CustomStopwordsApi
|
|
16165
16378
|
*/
|
|
16166
|
-
adminStoresXStoreIDStopwordsCustomWordlistsPost(xStoreID: string, body: DataTypesCreateCustomWordListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCustomWordListResponseWrapper, any>>;
|
|
16379
|
+
adminStoresXStoreIDStopwordsCustomWordlistsPost(xStoreID: string, body: DataTypesCreateCustomWordListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCustomWordListResponseWrapper, any, {}>>;
|
|
16167
16380
|
}
|
|
16168
16381
|
/**
|
|
16169
16382
|
* DocumentsApi - axios parameter creator
|
|
@@ -16226,7 +16439,7 @@ export declare class DocumentsApi extends BaseAPI {
|
|
|
16226
16439
|
* @throws {RequiredError}
|
|
16227
16440
|
* @memberof DocumentsApi
|
|
16228
16441
|
*/
|
|
16229
|
-
adminStoresXStoreIDUploadPost(xStoreID: string, file: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
16442
|
+
adminStoresXStoreIDUploadPost(xStoreID: string, file: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
16230
16443
|
}
|
|
16231
16444
|
/**
|
|
16232
16445
|
* ItemAnalyticsApi - axios parameter creator
|
|
@@ -16642,7 +16855,7 @@ export declare class ItemAnalyticsApi extends BaseAPI {
|
|
|
16642
16855
|
* @throws {RequiredError}
|
|
16643
16856
|
* @memberof ItemAnalyticsApi
|
|
16644
16857
|
*/
|
|
16645
|
-
adminAnalyticsStoreXStoreIDItemsComparisonGet(xStoreID: string, itemIds: string, startTime?: string, endTime?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDItemsComparisonGet200Response, any>>;
|
|
16858
|
+
adminAnalyticsStoreXStoreIDItemsComparisonGet(xStoreID: string, itemIds: string, startTime?: string, endTime?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDItemsComparisonGet200Response, any, {}>>;
|
|
16646
16859
|
/**
|
|
16647
16860
|
* Analyze how items are discovered through search queries, filters, and sorts with position distribution data
|
|
16648
16861
|
* @summary Get Item Discovery Analytics
|
|
@@ -16664,7 +16877,7 @@ export declare class ItemAnalyticsApi extends BaseAPI {
|
|
|
16664
16877
|
* @throws {RequiredError}
|
|
16665
16878
|
* @memberof ItemAnalyticsApi
|
|
16666
16879
|
*/
|
|
16667
|
-
adminAnalyticsStoreXStoreIDItemsDiscoveryGet(xStoreID: string, startTime?: string, endTime?: string, itemIds?: string, queries?: string, itemLimit?: number, minImpressions?: number, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDItemsDiscoveryGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDItemsDiscoveryGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDItemsDiscoveryGet200Response, any>>;
|
|
16880
|
+
adminAnalyticsStoreXStoreIDItemsDiscoveryGet(xStoreID: string, startTime?: string, endTime?: string, itemIds?: string, queries?: string, itemLimit?: number, minImpressions?: number, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDItemsDiscoveryGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDItemsDiscoveryGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDItemsDiscoveryGet200Response, any, {}>>;
|
|
16668
16881
|
/**
|
|
16669
16882
|
* Retrieve general item performance analytics including impressions, clicks, conversions, and revenue metrics
|
|
16670
16883
|
* @summary Get Item Analytics
|
|
@@ -16686,7 +16899,7 @@ export declare class ItemAnalyticsApi extends BaseAPI {
|
|
|
16686
16899
|
* @throws {RequiredError}
|
|
16687
16900
|
* @memberof ItemAnalyticsApi
|
|
16688
16901
|
*/
|
|
16689
|
-
adminAnalyticsStoreXStoreIDItemsGet(xStoreID: string, startTime?: string, endTime?: string, itemIds?: string, itemLimit?: number, minImpressions?: number, maxPosition?: number, sortBy?: AdminAnalyticsStoreXStoreIDItemsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDItemsGetSortOrderEnum, sort?: string, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AnalyticsAnalyticsAPIResponse, any>>;
|
|
16902
|
+
adminAnalyticsStoreXStoreIDItemsGet(xStoreID: string, startTime?: string, endTime?: string, itemIds?: string, itemLimit?: number, minImpressions?: number, maxPosition?: number, sortBy?: AdminAnalyticsStoreXStoreIDItemsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDItemsGetSortOrderEnum, sort?: string, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AnalyticsAnalyticsAPIResponse, any, {}>>;
|
|
16690
16903
|
/**
|
|
16691
16904
|
* Retrieve detailed analytics for a specific item including performance metrics and discovery data
|
|
16692
16905
|
* @summary Get Item Details
|
|
@@ -16698,7 +16911,7 @@ export declare class ItemAnalyticsApi extends BaseAPI {
|
|
|
16698
16911
|
* @throws {RequiredError}
|
|
16699
16912
|
* @memberof ItemAnalyticsApi
|
|
16700
16913
|
*/
|
|
16701
|
-
adminAnalyticsStoreXStoreIDItemsItemIdGet(xStoreID: string, itemId: string, startTime?: string, endTime?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AnalyticsAnalyticsAPIResponse, any>>;
|
|
16914
|
+
adminAnalyticsStoreXStoreIDItemsItemIdGet(xStoreID: string, itemId: string, startTime?: string, endTime?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AnalyticsAnalyticsAPIResponse, any, {}>>;
|
|
16702
16915
|
/**
|
|
16703
16916
|
* Retrieve detailed performance metrics for items including click-through rates, conversion rates, and revenue data
|
|
16704
16917
|
* @summary Get Item Performance Analytics
|
|
@@ -16720,7 +16933,7 @@ export declare class ItemAnalyticsApi extends BaseAPI {
|
|
|
16720
16933
|
* @throws {RequiredError}
|
|
16721
16934
|
* @memberof ItemAnalyticsApi
|
|
16722
16935
|
*/
|
|
16723
|
-
adminAnalyticsStoreXStoreIDItemsPerformanceGet(xStoreID: string, startTime?: string, endTime?: string, itemIds?: string, itemLimit?: number, minImpressions?: number, maxPosition?: number, sortBy?: AdminAnalyticsStoreXStoreIDItemsPerformanceGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDItemsPerformanceGetSortOrderEnum, sort?: string, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDItemsPerformanceGet200Response, any>>;
|
|
16936
|
+
adminAnalyticsStoreXStoreIDItemsPerformanceGet(xStoreID: string, startTime?: string, endTime?: string, itemIds?: string, itemLimit?: number, minImpressions?: number, maxPosition?: number, sortBy?: AdminAnalyticsStoreXStoreIDItemsPerformanceGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDItemsPerformanceGetSortOrderEnum, sort?: string, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDItemsPerformanceGet200Response, any, {}>>;
|
|
16724
16937
|
/**
|
|
16725
16938
|
* Retrieve item performance trends over time showing how items perform across different time periods
|
|
16726
16939
|
* @summary Get Item Performance Trends
|
|
@@ -16741,7 +16954,7 @@ export declare class ItemAnalyticsApi extends BaseAPI {
|
|
|
16741
16954
|
* @throws {RequiredError}
|
|
16742
16955
|
* @memberof ItemAnalyticsApi
|
|
16743
16956
|
*/
|
|
16744
|
-
adminAnalyticsStoreXStoreIDItemsTrendsGet(xStoreID: string, startTime?: string, endTime?: string, granularity?: AdminAnalyticsStoreXStoreIDItemsTrendsGetGranularityEnum, itemIds?: string, itemLimit?: number, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDItemsTrendsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDItemsTrendsGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDItemsTrendsGet200Response, any>>;
|
|
16957
|
+
adminAnalyticsStoreXStoreIDItemsTrendsGet(xStoreID: string, startTime?: string, endTime?: string, granularity?: AdminAnalyticsStoreXStoreIDItemsTrendsGetGranularityEnum, itemIds?: string, itemLimit?: number, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDItemsTrendsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDItemsTrendsGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDItemsTrendsGet200Response, any, {}>>;
|
|
16745
16958
|
/**
|
|
16746
16959
|
* Analyze query performance with item context showing how queries perform in discovering and ranking items
|
|
16747
16960
|
* @summary Get Query Item Performance Analytics
|
|
@@ -16763,7 +16976,7 @@ export declare class ItemAnalyticsApi extends BaseAPI {
|
|
|
16763
16976
|
* @throws {RequiredError}
|
|
16764
16977
|
* @memberof ItemAnalyticsApi
|
|
16765
16978
|
*/
|
|
16766
|
-
adminAnalyticsStoreXStoreIDQueriesItemPerformanceGet(xStoreID: string, startTime?: string, endTime?: string, queries?: string, itemIds?: string, queryLimit?: number, minImpressions?: number, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDQueriesItemPerformanceGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDQueriesItemPerformanceGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDQueriesItemPerformanceGet200Response, any>>;
|
|
16979
|
+
adminAnalyticsStoreXStoreIDQueriesItemPerformanceGet(xStoreID: string, startTime?: string, endTime?: string, queries?: string, itemIds?: string, queryLimit?: number, minImpressions?: number, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDQueriesItemPerformanceGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDQueriesItemPerformanceGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDQueriesItemPerformanceGet200Response, any, {}>>;
|
|
16767
16980
|
}
|
|
16768
16981
|
/**
|
|
16769
16982
|
* @export
|
|
@@ -17023,7 +17236,7 @@ export declare class LimitsApi extends BaseAPI {
|
|
|
17023
17236
|
* @throws {RequiredError}
|
|
17024
17237
|
* @memberof LimitsApi
|
|
17025
17238
|
*/
|
|
17026
|
-
miscLimitsChangeStatusLimitIDIsActivePut(limitID: number, isActive: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
17239
|
+
miscLimitsChangeStatusLimitIDIsActivePut(limitID: number, isActive: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
17027
17240
|
/**
|
|
17028
17241
|
* Fetches list of all limits
|
|
17029
17242
|
* @summary Fetches list of all limits
|
|
@@ -17031,7 +17244,7 @@ export declare class LimitsApi extends BaseAPI {
|
|
|
17031
17244
|
* @throws {RequiredError}
|
|
17032
17245
|
* @memberof LimitsApi
|
|
17033
17246
|
*/
|
|
17034
|
-
miscLimitsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesLimitsListResponse, any>>;
|
|
17247
|
+
miscLimitsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesLimitsListResponse, any, {}>>;
|
|
17035
17248
|
/**
|
|
17036
17249
|
* Fetches limit by id
|
|
17037
17250
|
* @summary Fetches limit by id
|
|
@@ -17040,7 +17253,7 @@ export declare class LimitsApi extends BaseAPI {
|
|
|
17040
17253
|
* @throws {RequiredError}
|
|
17041
17254
|
* @memberof LimitsApi
|
|
17042
17255
|
*/
|
|
17043
|
-
miscLimitsLimitIDGet(limitID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesLimitResponse, any>>;
|
|
17256
|
+
miscLimitsLimitIDGet(limitID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesLimitResponse, any, {}>>;
|
|
17044
17257
|
/**
|
|
17045
17258
|
* Updates limit information by ID.
|
|
17046
17259
|
* @summary UpdateLimit an existing limit
|
|
@@ -17050,7 +17263,7 @@ export declare class LimitsApi extends BaseAPI {
|
|
|
17050
17263
|
* @throws {RequiredError}
|
|
17051
17264
|
* @memberof LimitsApi
|
|
17052
17265
|
*/
|
|
17053
|
-
miscLimitsLimitIDPut(limitID: number, limit: DataTypesCreateLimitRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
17266
|
+
miscLimitsLimitIDPut(limitID: number, limit: DataTypesCreateLimitRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
17054
17267
|
/**
|
|
17055
17268
|
* Adds a new limit to the system
|
|
17056
17269
|
* @summary Creates a new limit
|
|
@@ -17059,7 +17272,7 @@ export declare class LimitsApi extends BaseAPI {
|
|
|
17059
17272
|
* @throws {RequiredError}
|
|
17060
17273
|
* @memberof LimitsApi
|
|
17061
17274
|
*/
|
|
17062
|
-
miscLimitsPost(limit: DataTypesCreateLimitRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
17275
|
+
miscLimitsPost(limit: DataTypesCreateLimitRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
17063
17276
|
}
|
|
17064
17277
|
/**
|
|
17065
17278
|
* MenusApi - axios parameter creator
|
|
@@ -17450,7 +17663,7 @@ export declare class MenusApi extends BaseAPI {
|
|
|
17450
17663
|
* @throws {RequiredError}
|
|
17451
17664
|
* @memberof MenusApi
|
|
17452
17665
|
*/
|
|
17453
|
-
miscMenusGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMenusListResponse, any>>;
|
|
17666
|
+
miscMenusGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMenusListResponse, any, {}>>;
|
|
17454
17667
|
/**
|
|
17455
17668
|
* Deletes a menu from the system by ID.
|
|
17456
17669
|
* @summary Delete a menu
|
|
@@ -17459,7 +17672,7 @@ export declare class MenusApi extends BaseAPI {
|
|
|
17459
17672
|
* @throws {RequiredError}
|
|
17460
17673
|
* @memberof MenusApi
|
|
17461
17674
|
*/
|
|
17462
|
-
miscMenusIdDelete(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
17675
|
+
miscMenusIdDelete(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
17463
17676
|
/**
|
|
17464
17677
|
* Fetches menus by id
|
|
17465
17678
|
* @summary Fetches menus by id
|
|
@@ -17468,7 +17681,7 @@ export declare class MenusApi extends BaseAPI {
|
|
|
17468
17681
|
* @throws {RequiredError}
|
|
17469
17682
|
* @memberof MenusApi
|
|
17470
17683
|
*/
|
|
17471
|
-
miscMenusIdGet(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMenuResponse, any>>;
|
|
17684
|
+
miscMenusIdGet(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMenuResponse, any, {}>>;
|
|
17472
17685
|
/**
|
|
17473
17686
|
* Updates menu information by ID.
|
|
17474
17687
|
* @summary Update an existing menu
|
|
@@ -17478,7 +17691,7 @@ export declare class MenusApi extends BaseAPI {
|
|
|
17478
17691
|
* @throws {RequiredError}
|
|
17479
17692
|
* @memberof MenusApi
|
|
17480
17693
|
*/
|
|
17481
|
-
miscMenusIdPut(id: number, menu: DataTypesCreateMenuRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
17694
|
+
miscMenusIdPut(id: number, menu: DataTypesCreateMenuRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
17482
17695
|
/**
|
|
17483
17696
|
* Fetches list of all menus by org id
|
|
17484
17697
|
* @summary Fetches list of all menus by org id
|
|
@@ -17487,7 +17700,7 @@ export declare class MenusApi extends BaseAPI {
|
|
|
17487
17700
|
* @throws {RequiredError}
|
|
17488
17701
|
* @memberof MenusApi
|
|
17489
17702
|
*/
|
|
17490
|
-
miscMenusOrgOrgIdGet(orgId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMenusListResponse, any>>;
|
|
17703
|
+
miscMenusOrgOrgIdGet(orgId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMenusListResponse, any, {}>>;
|
|
17491
17704
|
/**
|
|
17492
17705
|
* Fetches list of all menus by org id and menuid
|
|
17493
17706
|
* @summary Fetches list of all menus by org id and menuid
|
|
@@ -17497,7 +17710,7 @@ export declare class MenusApi extends BaseAPI {
|
|
|
17497
17710
|
* @throws {RequiredError}
|
|
17498
17711
|
* @memberof MenusApi
|
|
17499
17712
|
*/
|
|
17500
|
-
miscMenusOrgOrgIdIdGet(orgId: number, id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMenuResponse, any>>;
|
|
17713
|
+
miscMenusOrgOrgIdIdGet(orgId: number, id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMenuResponse, any, {}>>;
|
|
17501
17714
|
/**
|
|
17502
17715
|
* Updates menu information by ID with orgid.
|
|
17503
17716
|
* @summary Update an existing menu with orgid
|
|
@@ -17508,7 +17721,7 @@ export declare class MenusApi extends BaseAPI {
|
|
|
17508
17721
|
* @throws {RequiredError}
|
|
17509
17722
|
* @memberof MenusApi
|
|
17510
17723
|
*/
|
|
17511
|
-
miscMenusOrgOrgIdIdPut(orgId: number, id: number, menu: DataTypesCreateMenuRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
17724
|
+
miscMenusOrgOrgIdIdPut(orgId: number, id: number, menu: DataTypesCreateMenuRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
17512
17725
|
/**
|
|
17513
17726
|
* Adds a new menu to the system
|
|
17514
17727
|
* @summary Creates a new menu
|
|
@@ -17518,7 +17731,7 @@ export declare class MenusApi extends BaseAPI {
|
|
|
17518
17731
|
* @throws {RequiredError}
|
|
17519
17732
|
* @memberof MenusApi
|
|
17520
17733
|
*/
|
|
17521
|
-
miscMenusOrgOrgIdPost(orgId: number, menu: DataTypesCreateMenuRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
17734
|
+
miscMenusOrgOrgIdPost(orgId: number, menu: DataTypesCreateMenuRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
17522
17735
|
/**
|
|
17523
17736
|
* Adds a new menu to the system
|
|
17524
17737
|
* @summary Creates a new menu
|
|
@@ -17527,7 +17740,7 @@ export declare class MenusApi extends BaseAPI {
|
|
|
17527
17740
|
* @throws {RequiredError}
|
|
17528
17741
|
* @memberof MenusApi
|
|
17529
17742
|
*/
|
|
17530
|
-
miscMenusPost(menu: DataTypesCreateMenuRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
17743
|
+
miscMenusPost(menu: DataTypesCreateMenuRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
17531
17744
|
/**
|
|
17532
17745
|
* Fetches list of all menus by store id
|
|
17533
17746
|
* @summary Fetches list of all menus by store id
|
|
@@ -17536,7 +17749,7 @@ export declare class MenusApi extends BaseAPI {
|
|
|
17536
17749
|
* @throws {RequiredError}
|
|
17537
17750
|
* @memberof MenusApi
|
|
17538
17751
|
*/
|
|
17539
|
-
miscMenusStoreStoreIdGet(storeId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMenusListResponse, any>>;
|
|
17752
|
+
miscMenusStoreStoreIdGet(storeId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMenusListResponse, any, {}>>;
|
|
17540
17753
|
/**
|
|
17541
17754
|
* Fetches list of all menus by storeId and menuid
|
|
17542
17755
|
* @summary Fetches list of all menus by storeId and menuid
|
|
@@ -17546,7 +17759,7 @@ export declare class MenusApi extends BaseAPI {
|
|
|
17546
17759
|
* @throws {RequiredError}
|
|
17547
17760
|
* @memberof MenusApi
|
|
17548
17761
|
*/
|
|
17549
|
-
miscMenusStoreStoreIdIdGet(storeId: number, id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMenuResponse, any>>;
|
|
17762
|
+
miscMenusStoreStoreIdIdGet(storeId: number, id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMenuResponse, any, {}>>;
|
|
17550
17763
|
/**
|
|
17551
17764
|
* Updates menu information by ID with storeId.
|
|
17552
17765
|
* @summary Update an existing menu with storeId
|
|
@@ -17557,7 +17770,7 @@ export declare class MenusApi extends BaseAPI {
|
|
|
17557
17770
|
* @throws {RequiredError}
|
|
17558
17771
|
* @memberof MenusApi
|
|
17559
17772
|
*/
|
|
17560
|
-
miscMenusStoreStoreIdIdPut(storeId: number, id: number, menu: DataTypesCreateMenuRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
17773
|
+
miscMenusStoreStoreIdIdPut(storeId: number, id: number, menu: DataTypesCreateMenuRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
17561
17774
|
/**
|
|
17562
17775
|
* Adds a new menu to the system with storeid
|
|
17563
17776
|
* @summary Creates a new menu with storeid
|
|
@@ -17567,7 +17780,7 @@ export declare class MenusApi extends BaseAPI {
|
|
|
17567
17780
|
* @throws {RequiredError}
|
|
17568
17781
|
* @memberof MenusApi
|
|
17569
17782
|
*/
|
|
17570
|
-
miscMenusStoreStoreIdPost(storeId: number, menu: DataTypesCreateMenuRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
17783
|
+
miscMenusStoreStoreIdPost(storeId: number, menu: DataTypesCreateMenuRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
17571
17784
|
/**
|
|
17572
17785
|
* Fetches hierarchical menu access for the currently logged-in user
|
|
17573
17786
|
* @summary Fetches hierarchical menu access for logged-in user
|
|
@@ -17575,7 +17788,7 @@ export declare class MenusApi extends BaseAPI {
|
|
|
17575
17788
|
* @throws {RequiredError}
|
|
17576
17789
|
* @memberof MenusApi
|
|
17577
17790
|
*/
|
|
17578
|
-
miscMenusUserAccessGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMenuAccessListResponse, any>>;
|
|
17791
|
+
miscMenusUserAccessGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMenuAccessListResponse, any, {}>>;
|
|
17579
17792
|
}
|
|
17580
17793
|
/**
|
|
17581
17794
|
* ModulesApi - axios parameter creator
|
|
@@ -17729,7 +17942,7 @@ export declare class ModulesApi extends BaseAPI {
|
|
|
17729
17942
|
* @throws {RequiredError}
|
|
17730
17943
|
* @memberof ModulesApi
|
|
17731
17944
|
*/
|
|
17732
|
-
miscModulesGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesModuleListResponse, any>>;
|
|
17945
|
+
miscModulesGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesModuleListResponse, any, {}>>;
|
|
17733
17946
|
/**
|
|
17734
17947
|
* Deletes a module from the system by ID.
|
|
17735
17948
|
* @summary Deletes a module
|
|
@@ -17738,7 +17951,7 @@ export declare class ModulesApi extends BaseAPI {
|
|
|
17738
17951
|
* @throws {RequiredError}
|
|
17739
17952
|
* @memberof ModulesApi
|
|
17740
17953
|
*/
|
|
17741
|
-
miscModulesIdDelete(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
17954
|
+
miscModulesIdDelete(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
17742
17955
|
/**
|
|
17743
17956
|
* Fetches a module by its id
|
|
17744
17957
|
* @summary Fetches a module by id
|
|
@@ -17747,7 +17960,7 @@ export declare class ModulesApi extends BaseAPI {
|
|
|
17747
17960
|
* @throws {RequiredError}
|
|
17748
17961
|
* @memberof ModulesApi
|
|
17749
17962
|
*/
|
|
17750
|
-
miscModulesIdGet(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesModuleResponse, any>>;
|
|
17963
|
+
miscModulesIdGet(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesModuleResponse, any, {}>>;
|
|
17751
17964
|
/**
|
|
17752
17965
|
* Updates module information by ID.
|
|
17753
17966
|
* @summary Updates an existing module
|
|
@@ -17757,7 +17970,7 @@ export declare class ModulesApi extends BaseAPI {
|
|
|
17757
17970
|
* @throws {RequiredError}
|
|
17758
17971
|
* @memberof ModulesApi
|
|
17759
17972
|
*/
|
|
17760
|
-
miscModulesIdPut(id: number, module: DataTypesModule, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
17973
|
+
miscModulesIdPut(id: number, module: DataTypesModule, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
17761
17974
|
/**
|
|
17762
17975
|
* Adds a new module to the system
|
|
17763
17976
|
* @summary Creates a new module
|
|
@@ -17766,7 +17979,7 @@ export declare class ModulesApi extends BaseAPI {
|
|
|
17766
17979
|
* @throws {RequiredError}
|
|
17767
17980
|
* @memberof ModulesApi
|
|
17768
17981
|
*/
|
|
17769
|
-
miscModulesPost(module: DataTypesModule, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
17982
|
+
miscModulesPost(module: DataTypesModule, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
17770
17983
|
}
|
|
17771
17984
|
/**
|
|
17772
17985
|
* MongoDbApi - axios parameter creator
|
|
@@ -17949,7 +18162,7 @@ export declare class MongoDbApi extends BaseAPI {
|
|
|
17949
18162
|
* @throws {RequiredError}
|
|
17950
18163
|
* @memberof MongoDbApi
|
|
17951
18164
|
*/
|
|
17952
|
-
mongodbDatabasesDatabaseNameCollectionsCollectionNameDelete(databaseName: string, collectionName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
18165
|
+
mongodbDatabasesDatabaseNameCollectionsCollectionNameDelete(databaseName: string, collectionName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
17953
18166
|
/**
|
|
17954
18167
|
* Creates a new collection within a specified database.
|
|
17955
18168
|
* @summary Create a new collection
|
|
@@ -17959,7 +18172,7 @@ export declare class MongoDbApi extends BaseAPI {
|
|
|
17959
18172
|
* @throws {RequiredError}
|
|
17960
18173
|
* @memberof MongoDbApi
|
|
17961
18174
|
*/
|
|
17962
|
-
mongodbDatabasesDatabaseNameCollectionsCollectionNamePost(databaseName: string, collectionName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
18175
|
+
mongodbDatabasesDatabaseNameCollectionsCollectionNamePost(databaseName: string, collectionName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
17963
18176
|
/**
|
|
17964
18177
|
* Retrieves a list of collections for a given database.
|
|
17965
18178
|
* @summary List collections
|
|
@@ -17968,7 +18181,7 @@ export declare class MongoDbApi extends BaseAPI {
|
|
|
17968
18181
|
* @throws {RequiredError}
|
|
17969
18182
|
* @memberof MongoDbApi
|
|
17970
18183
|
*/
|
|
17971
|
-
mongodbDatabasesDatabaseNameCollectionsGet(databaseName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericStringArrayResponse, any>>;
|
|
18184
|
+
mongodbDatabasesDatabaseNameCollectionsGet(databaseName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericStringArrayResponse, any, {}>>;
|
|
17972
18185
|
/**
|
|
17973
18186
|
* Drops an entire database from the MongoDB instance.
|
|
17974
18187
|
* @summary Drop a database
|
|
@@ -17977,7 +18190,7 @@ export declare class MongoDbApi extends BaseAPI {
|
|
|
17977
18190
|
* @throws {RequiredError}
|
|
17978
18191
|
* @memberof MongoDbApi
|
|
17979
18192
|
*/
|
|
17980
|
-
mongodbDatabasesDatabaseNameDelete(databaseName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
18193
|
+
mongodbDatabasesDatabaseNameDelete(databaseName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
17981
18194
|
/**
|
|
17982
18195
|
* Creates a new database by creating an initial collection in it.
|
|
17983
18196
|
* @summary Create a new database
|
|
@@ -17986,7 +18199,7 @@ export declare class MongoDbApi extends BaseAPI {
|
|
|
17986
18199
|
* @throws {RequiredError}
|
|
17987
18200
|
* @memberof MongoDbApi
|
|
17988
18201
|
*/
|
|
17989
|
-
mongodbDatabasesDatabaseNamePost(databaseName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
18202
|
+
mongodbDatabasesDatabaseNamePost(databaseName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
17990
18203
|
/**
|
|
17991
18204
|
* Retrieves a list of all databases on the MongoDB instance.
|
|
17992
18205
|
* @summary List all databases
|
|
@@ -17994,7 +18207,7 @@ export declare class MongoDbApi extends BaseAPI {
|
|
|
17994
18207
|
* @throws {RequiredError}
|
|
17995
18208
|
* @memberof MongoDbApi
|
|
17996
18209
|
*/
|
|
17997
|
-
mongodbDatabasesGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericStringArrayResponse, any>>;
|
|
18210
|
+
mongodbDatabasesGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericStringArrayResponse, any, {}>>;
|
|
17998
18211
|
}
|
|
17999
18212
|
/**
|
|
18000
18213
|
* NewsLettersApi - axios parameter creator
|
|
@@ -18151,7 +18364,7 @@ export declare class NewsLettersApi extends BaseAPI {
|
|
|
18151
18364
|
* @throws {RequiredError}
|
|
18152
18365
|
* @memberof NewsLettersApi
|
|
18153
18366
|
*/
|
|
18154
|
-
miscNewsLettersGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesNewsLetterRequestsListResponse, any>>;
|
|
18367
|
+
miscNewsLettersGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesNewsLetterRequestsListResponse, any, {}>>;
|
|
18155
18368
|
/**
|
|
18156
18369
|
* Fetches NewsLetterSubscription by id
|
|
18157
18370
|
* @summary Fetches NewsLetterSubscription by id
|
|
@@ -18160,7 +18373,7 @@ export declare class NewsLettersApi extends BaseAPI {
|
|
|
18160
18373
|
* @throws {RequiredError}
|
|
18161
18374
|
* @memberof NewsLettersApi
|
|
18162
18375
|
*/
|
|
18163
|
-
miscNewsLettersIdGet(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesNewsLetterRequestResponse, any>>;
|
|
18376
|
+
miscNewsLettersIdGet(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesNewsLetterRequestResponse, any, {}>>;
|
|
18164
18377
|
/**
|
|
18165
18378
|
* Updates NewsLetterSubscription information by ID.
|
|
18166
18379
|
* @summary Update an existing NewsLetterSubscription
|
|
@@ -18170,7 +18383,7 @@ export declare class NewsLettersApi extends BaseAPI {
|
|
|
18170
18383
|
* @throws {RequiredError}
|
|
18171
18384
|
* @memberof NewsLettersApi
|
|
18172
18385
|
*/
|
|
18173
|
-
miscNewsLettersIdPut(id: number, newsLetterRequest: DataTypesNewsLetterRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
18386
|
+
miscNewsLettersIdPut(id: number, newsLetterRequest: DataTypesNewsLetterRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
18174
18387
|
/**
|
|
18175
18388
|
* Adds a new NewsLetterSubscription to the system
|
|
18176
18389
|
* @summary Creates a new NewsLetterSubscription
|
|
@@ -18179,7 +18392,7 @@ export declare class NewsLettersApi extends BaseAPI {
|
|
|
18179
18392
|
* @throws {RequiredError}
|
|
18180
18393
|
* @memberof NewsLettersApi
|
|
18181
18394
|
*/
|
|
18182
|
-
miscNewsLettersPost(newsLetterRequest: DataTypesNewsLetterRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
18395
|
+
miscNewsLettersPost(newsLetterRequest: DataTypesNewsLetterRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
18183
18396
|
/**
|
|
18184
18397
|
* Updates UpdateNewsLetterStatus information by ID.
|
|
18185
18398
|
* @summary Update an existing UpdateNewsLetterStatus
|
|
@@ -18189,7 +18402,7 @@ export declare class NewsLettersApi extends BaseAPI {
|
|
|
18189
18402
|
* @throws {RequiredError}
|
|
18190
18403
|
* @memberof NewsLettersApi
|
|
18191
18404
|
*/
|
|
18192
|
-
miscNewsLettersUpdateStatusIdStatusPut(id: number, status: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
18405
|
+
miscNewsLettersUpdateStatusIdStatusPut(id: number, status: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
18193
18406
|
}
|
|
18194
18407
|
/**
|
|
18195
18408
|
* OnboardingApi - axios parameter creator
|
|
@@ -18427,7 +18640,7 @@ export declare class OnboardingApi extends BaseAPI {
|
|
|
18427
18640
|
* @throws {RequiredError}
|
|
18428
18641
|
* @memberof OnboardingApi
|
|
18429
18642
|
*/
|
|
18430
|
-
adminV1UsersOnboardingGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOnboardingResponseWrapper, any>>;
|
|
18643
|
+
adminV1UsersOnboardingGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOnboardingResponseWrapper, any, {}>>;
|
|
18431
18644
|
/**
|
|
18432
18645
|
* Get job status
|
|
18433
18646
|
* @summary Get job status
|
|
@@ -18436,7 +18649,7 @@ export declare class OnboardingApi extends BaseAPI {
|
|
|
18436
18649
|
* @throws {RequiredError}
|
|
18437
18650
|
* @memberof OnboardingApi
|
|
18438
18651
|
*/
|
|
18439
|
-
adminV1UsersOnboardingJobstatusJobidGet(jobid: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesJobStatusResponseWrapper, any>>;
|
|
18652
|
+
adminV1UsersOnboardingJobstatusJobidGet(jobid: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesJobStatusResponseWrapper, any, {}>>;
|
|
18440
18653
|
/**
|
|
18441
18654
|
* Updates onboardingstep and merges new data into onboardingdata JSON
|
|
18442
18655
|
* @summary Update user onboarding step
|
|
@@ -18445,7 +18658,7 @@ export declare class OnboardingApi extends BaseAPI {
|
|
|
18445
18658
|
* @throws {RequiredError}
|
|
18446
18659
|
* @memberof OnboardingApi
|
|
18447
18660
|
*/
|
|
18448
|
-
adminV1UsersOnboardingPost(body: DataTypesOnboardingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOnboardingResponseWrapper, any>>;
|
|
18661
|
+
adminV1UsersOnboardingPost(body: DataTypesOnboardingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOnboardingResponseWrapper, any, {}>>;
|
|
18449
18662
|
/**
|
|
18450
18663
|
* Uploads a custom schema JSON file for onboarding and stores it into onboardingdata.customSchema
|
|
18451
18664
|
* @summary Upload custom schema JSON
|
|
@@ -18454,7 +18667,7 @@ export declare class OnboardingApi extends BaseAPI {
|
|
|
18454
18667
|
* @throws {RequiredError}
|
|
18455
18668
|
* @memberof OnboardingApi
|
|
18456
18669
|
*/
|
|
18457
|
-
adminV1UsersOnboardingSchemaUploadPost(file: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
18670
|
+
adminV1UsersOnboardingSchemaUploadPost(file: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
18458
18671
|
/**
|
|
18459
18672
|
* Get schema options
|
|
18460
18673
|
* @summary Get schema options
|
|
@@ -18462,7 +18675,7 @@ export declare class OnboardingApi extends BaseAPI {
|
|
|
18462
18675
|
* @throws {RequiredError}
|
|
18463
18676
|
* @memberof OnboardingApi
|
|
18464
18677
|
*/
|
|
18465
|
-
adminV1UsersOnboardingSchemaoptionsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSchemaOptionsResponseWrapper, any>>;
|
|
18678
|
+
adminV1UsersOnboardingSchemaoptionsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSchemaOptionsResponseWrapper, any, {}>>;
|
|
18466
18679
|
/**
|
|
18467
18680
|
* Test search endpoint
|
|
18468
18681
|
* @summary Test search
|
|
@@ -18471,7 +18684,7 @@ export declare class OnboardingApi extends BaseAPI {
|
|
|
18471
18684
|
* @throws {RequiredError}
|
|
18472
18685
|
* @memberof OnboardingApi
|
|
18473
18686
|
*/
|
|
18474
|
-
adminV1UsersOnboardingSearchGet(q: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOnboardingTestSearchResponseWrapper, any>>;
|
|
18687
|
+
adminV1UsersOnboardingSearchGet(q: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOnboardingTestSearchResponseWrapper, any, {}>>;
|
|
18475
18688
|
/**
|
|
18476
18689
|
* Get store key
|
|
18477
18690
|
* @summary Get store key
|
|
@@ -18479,7 +18692,7 @@ export declare class OnboardingApi extends BaseAPI {
|
|
|
18479
18692
|
* @throws {RequiredError}
|
|
18480
18693
|
* @memberof OnboardingApi
|
|
18481
18694
|
*/
|
|
18482
|
-
adminV1UsersOnboardingStorekeyGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesStoreKeyResponseWrapper, any>>;
|
|
18695
|
+
adminV1UsersOnboardingStorekeyGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesStoreKeyResponseWrapper, any, {}>>;
|
|
18483
18696
|
/**
|
|
18484
18697
|
* Upload source data
|
|
18485
18698
|
* @summary Upload source data
|
|
@@ -18488,7 +18701,7 @@ export declare class OnboardingApi extends BaseAPI {
|
|
|
18488
18701
|
* @throws {RequiredError}
|
|
18489
18702
|
* @memberof OnboardingApi
|
|
18490
18703
|
*/
|
|
18491
|
-
adminV1UsersOnboardingUploaddataPost(file: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUploadSourceDataResponseWrapper, any>>;
|
|
18704
|
+
adminV1UsersOnboardingUploaddataPost(file: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUploadSourceDataResponseWrapper, any, {}>>;
|
|
18492
18705
|
/**
|
|
18493
18706
|
* Get sample datasets
|
|
18494
18707
|
* @summary Get sample datasets
|
|
@@ -18496,7 +18709,7 @@ export declare class OnboardingApi extends BaseAPI {
|
|
|
18496
18709
|
* @throws {RequiredError}
|
|
18497
18710
|
* @memberof OnboardingApi
|
|
18498
18711
|
*/
|
|
18499
|
-
adminV1UsersSampledatasetsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSampleDatasetsResponseWrapper, any>>;
|
|
18712
|
+
adminV1UsersSampledatasetsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSampleDatasetsResponseWrapper, any, {}>>;
|
|
18500
18713
|
}
|
|
18501
18714
|
/**
|
|
18502
18715
|
* OrganizationsApi - axios parameter creator
|
|
@@ -18653,7 +18866,7 @@ export declare class OrganizationsApi extends BaseAPI {
|
|
|
18653
18866
|
* @throws {RequiredError}
|
|
18654
18867
|
* @memberof OrganizationsApi
|
|
18655
18868
|
*/
|
|
18656
|
-
adminOrganizationsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOrganizationsListResponse, any>>;
|
|
18869
|
+
adminOrganizationsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOrganizationsListResponse, any, {}>>;
|
|
18657
18870
|
/**
|
|
18658
18871
|
* Updates Orgnization information by ID.
|
|
18659
18872
|
* @summary Update an existing Orgnization
|
|
@@ -18663,7 +18876,7 @@ export declare class OrganizationsApi extends BaseAPI {
|
|
|
18663
18876
|
* @throws {RequiredError}
|
|
18664
18877
|
* @memberof OrganizationsApi
|
|
18665
18878
|
*/
|
|
18666
|
-
adminOrganizationsIdPut(id: number, organization: DataTypesCreateOrganizationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
18879
|
+
adminOrganizationsIdPut(id: number, organization: DataTypesCreateOrganizationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
18667
18880
|
/**
|
|
18668
18881
|
* Fetches Orgnization by Id
|
|
18669
18882
|
* @summary Fetches Orgnization by Id
|
|
@@ -18672,7 +18885,7 @@ export declare class OrganizationsApi extends BaseAPI {
|
|
|
18672
18885
|
* @throws {RequiredError}
|
|
18673
18886
|
* @memberof OrganizationsApi
|
|
18674
18887
|
*/
|
|
18675
|
-
adminOrganizationsOrgIdGet(orgId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOrganizationResponse, any>>;
|
|
18888
|
+
adminOrganizationsOrgIdGet(orgId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOrganizationResponse, any, {}>>;
|
|
18676
18889
|
/**
|
|
18677
18890
|
* Adds a new Orgnization
|
|
18678
18891
|
* @summary Creates a new Orgnization
|
|
@@ -18681,7 +18894,7 @@ export declare class OrganizationsApi extends BaseAPI {
|
|
|
18681
18894
|
* @throws {RequiredError}
|
|
18682
18895
|
* @memberof OrganizationsApi
|
|
18683
18896
|
*/
|
|
18684
|
-
adminOrganizationsPost(organzation: DataTypesCreateOrganizationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
18897
|
+
adminOrganizationsPost(organzation: DataTypesCreateOrganizationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
18685
18898
|
/**
|
|
18686
18899
|
* Deletes a Orgnization from the system by ID.
|
|
18687
18900
|
* @summary Delete a Orgnization
|
|
@@ -18691,7 +18904,7 @@ export declare class OrganizationsApi extends BaseAPI {
|
|
|
18691
18904
|
* @throws {RequiredError}
|
|
18692
18905
|
* @memberof OrganizationsApi
|
|
18693
18906
|
*/
|
|
18694
|
-
adminOrganizationsUpdateStatusIdStatusDelete(id: number, status: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
18907
|
+
adminOrganizationsUpdateStatusIdStatusDelete(id: number, status: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
18695
18908
|
}
|
|
18696
18909
|
/**
|
|
18697
18910
|
* ParentMenusApi - axios parameter creator
|
|
@@ -18845,7 +19058,7 @@ export declare class ParentMenusApi extends BaseAPI {
|
|
|
18845
19058
|
* @throws {RequiredError}
|
|
18846
19059
|
* @memberof ParentMenusApi
|
|
18847
19060
|
*/
|
|
18848
|
-
miscParentMenusGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesParentMenusListResponse, any>>;
|
|
19061
|
+
miscParentMenusGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesParentMenusListResponse, any, {}>>;
|
|
18849
19062
|
/**
|
|
18850
19063
|
* Deletes a parent menu from the system by ID.
|
|
18851
19064
|
* @summary Delete a parent menu
|
|
@@ -18854,7 +19067,7 @@ export declare class ParentMenusApi extends BaseAPI {
|
|
|
18854
19067
|
* @throws {RequiredError}
|
|
18855
19068
|
* @memberof ParentMenusApi
|
|
18856
19069
|
*/
|
|
18857
|
-
miscParentMenusIdDelete(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
19070
|
+
miscParentMenusIdDelete(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
18858
19071
|
/**
|
|
18859
19072
|
* Fetches parent menus by id
|
|
18860
19073
|
* @summary Fetches parent menus by id
|
|
@@ -18863,7 +19076,7 @@ export declare class ParentMenusApi extends BaseAPI {
|
|
|
18863
19076
|
* @throws {RequiredError}
|
|
18864
19077
|
* @memberof ParentMenusApi
|
|
18865
19078
|
*/
|
|
18866
|
-
miscParentMenusIdGet(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesParentMenuResponse, any>>;
|
|
19079
|
+
miscParentMenusIdGet(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesParentMenuResponse, any, {}>>;
|
|
18867
19080
|
/**
|
|
18868
19081
|
* Updates parent menu information by ID.
|
|
18869
19082
|
* @summary Update an existing parent menu
|
|
@@ -18873,7 +19086,7 @@ export declare class ParentMenusApi extends BaseAPI {
|
|
|
18873
19086
|
* @throws {RequiredError}
|
|
18874
19087
|
* @memberof ParentMenusApi
|
|
18875
19088
|
*/
|
|
18876
|
-
miscParentMenusIdPut(id: number, parentMenu: DataTypesParentMenu, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
19089
|
+
miscParentMenusIdPut(id: number, parentMenu: DataTypesParentMenu, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
18877
19090
|
/**
|
|
18878
19091
|
* Adds a new parent menu to the system
|
|
18879
19092
|
* @summary Creates a new parent menu
|
|
@@ -18882,7 +19095,7 @@ export declare class ParentMenusApi extends BaseAPI {
|
|
|
18882
19095
|
* @throws {RequiredError}
|
|
18883
19096
|
* @memberof ParentMenusApi
|
|
18884
19097
|
*/
|
|
18885
|
-
miscParentMenusPost(parentMenu: DataTypesParentMenu, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
19098
|
+
miscParentMenusPost(parentMenu: DataTypesParentMenu, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
18886
19099
|
}
|
|
18887
19100
|
/**
|
|
18888
19101
|
* PaymentGatewayApi - axios parameter creator
|
|
@@ -19031,7 +19244,7 @@ export declare class PaymentGatewayApi extends BaseAPI {
|
|
|
19031
19244
|
* @throws {RequiredError}
|
|
19032
19245
|
* @memberof PaymentGatewayApi
|
|
19033
19246
|
*/
|
|
19034
|
-
paymentGatewayCreateOrderPost(order: DataTypesCreatePaymentOrderRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCreatePaymentOrderResponse, any>>;
|
|
19247
|
+
paymentGatewayCreateOrderPost(order: DataTypesCreatePaymentOrderRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCreatePaymentOrderResponse, any, {}>>;
|
|
19035
19248
|
/**
|
|
19036
19249
|
* Returns list of all active credit plans for purchase
|
|
19037
19250
|
* @summary Get available credit plans
|
|
@@ -19039,7 +19252,7 @@ export declare class PaymentGatewayApi extends BaseAPI {
|
|
|
19039
19252
|
* @throws {RequiredError}
|
|
19040
19253
|
* @memberof PaymentGatewayApi
|
|
19041
19254
|
*/
|
|
19042
|
-
paymentGatewayCreditPlansGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCreditPlan[], any>>;
|
|
19255
|
+
paymentGatewayCreditPlansGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCreditPlan[], any, {}>>;
|
|
19043
19256
|
/**
|
|
19044
19257
|
* Returns list of all available payment gateways
|
|
19045
19258
|
* @summary Get available payment gateways
|
|
@@ -19047,7 +19260,7 @@ export declare class PaymentGatewayApi extends BaseAPI {
|
|
|
19047
19260
|
* @throws {RequiredError}
|
|
19048
19261
|
* @memberof PaymentGatewayApi
|
|
19049
19262
|
*/
|
|
19050
|
-
paymentGatewayGatewaysGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGatewayListResponse, any>>;
|
|
19263
|
+
paymentGatewayGatewaysGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGatewayListResponse, any, {}>>;
|
|
19051
19264
|
/**
|
|
19052
19265
|
* Processes a refund for a completed payment
|
|
19053
19266
|
* @summary Process payment refund
|
|
@@ -19056,7 +19269,7 @@ export declare class PaymentGatewayApi extends BaseAPI {
|
|
|
19056
19269
|
* @throws {RequiredError}
|
|
19057
19270
|
* @memberof PaymentGatewayApi
|
|
19058
19271
|
*/
|
|
19059
|
-
paymentGatewayRefundPost(refund: DataTypesRefundRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRefundResponseDto, any>>;
|
|
19272
|
+
paymentGatewayRefundPost(refund: DataTypesRefundRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRefundResponseDto, any, {}>>;
|
|
19060
19273
|
/**
|
|
19061
19274
|
* Verifies the current status of a payment
|
|
19062
19275
|
* @summary Verify payment status
|
|
@@ -19065,7 +19278,7 @@ export declare class PaymentGatewayApi extends BaseAPI {
|
|
|
19065
19278
|
* @throws {RequiredError}
|
|
19066
19279
|
* @memberof PaymentGatewayApi
|
|
19067
19280
|
*/
|
|
19068
|
-
paymentGatewayVerifyPost(verify: DataTypesVerifyPaymentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPaymentStatusResponse, any>>;
|
|
19281
|
+
paymentGatewayVerifyPost(verify: DataTypesVerifyPaymentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPaymentStatusResponse, any, {}>>;
|
|
19069
19282
|
}
|
|
19070
19283
|
/**
|
|
19071
19284
|
* PaymentsApi - axios parameter creator
|
|
@@ -19219,7 +19432,7 @@ export declare class PaymentsApi extends BaseAPI {
|
|
|
19219
19432
|
* @throws {RequiredError}
|
|
19220
19433
|
* @memberof PaymentsApi
|
|
19221
19434
|
*/
|
|
19222
|
-
adminPaymentsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPaymentsListResponse, any>>;
|
|
19435
|
+
adminPaymentsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPaymentsListResponse, any, {}>>;
|
|
19223
19436
|
/**
|
|
19224
19437
|
* Deletes a payment from the system by ID.
|
|
19225
19438
|
* @summary Delete a payment
|
|
@@ -19228,7 +19441,7 @@ export declare class PaymentsApi extends BaseAPI {
|
|
|
19228
19441
|
* @throws {RequiredError}
|
|
19229
19442
|
* @memberof PaymentsApi
|
|
19230
19443
|
*/
|
|
19231
|
-
adminPaymentsPaymentIDDelete(paymentID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
19444
|
+
adminPaymentsPaymentIDDelete(paymentID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
19232
19445
|
/**
|
|
19233
19446
|
* Fetches payment by id
|
|
19234
19447
|
* @summary Fetches payment by id
|
|
@@ -19237,7 +19450,7 @@ export declare class PaymentsApi extends BaseAPI {
|
|
|
19237
19450
|
* @throws {RequiredError}
|
|
19238
19451
|
* @memberof PaymentsApi
|
|
19239
19452
|
*/
|
|
19240
|
-
adminPaymentsPaymentIDGet(paymentID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPaymentResponse, any>>;
|
|
19453
|
+
adminPaymentsPaymentIDGet(paymentID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPaymentResponse, any, {}>>;
|
|
19241
19454
|
/**
|
|
19242
19455
|
* Updates payment information by ID.
|
|
19243
19456
|
* @summary Update an existing payment
|
|
@@ -19247,7 +19460,7 @@ export declare class PaymentsApi extends BaseAPI {
|
|
|
19247
19460
|
* @throws {RequiredError}
|
|
19248
19461
|
* @memberof PaymentsApi
|
|
19249
19462
|
*/
|
|
19250
|
-
adminPaymentsPaymentIDPut(paymentID: number, payment: DataTypesPaymentRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
19463
|
+
adminPaymentsPaymentIDPut(paymentID: number, payment: DataTypesPaymentRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
19251
19464
|
/**
|
|
19252
19465
|
* Adds a new payment to the system
|
|
19253
19466
|
* @summary Creates a new payment
|
|
@@ -19256,7 +19469,7 @@ export declare class PaymentsApi extends BaseAPI {
|
|
|
19256
19469
|
* @throws {RequiredError}
|
|
19257
19470
|
* @memberof PaymentsApi
|
|
19258
19471
|
*/
|
|
19259
|
-
adminPaymentsPost(payment: DataTypesPaymentRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
19472
|
+
adminPaymentsPost(payment: DataTypesPaymentRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
19260
19473
|
}
|
|
19261
19474
|
/**
|
|
19262
19475
|
* PlansApi - axios parameter creator
|
|
@@ -19413,7 +19626,7 @@ export declare class PlansApi extends BaseAPI {
|
|
|
19413
19626
|
* @throws {RequiredError}
|
|
19414
19627
|
* @memberof PlansApi
|
|
19415
19628
|
*/
|
|
19416
|
-
miscPlansGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPlansListResponse, any>>;
|
|
19629
|
+
miscPlansGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPlansListResponse, any, {}>>;
|
|
19417
19630
|
/**
|
|
19418
19631
|
* Fetches plan by id
|
|
19419
19632
|
* @summary Fetches plan by id
|
|
@@ -19422,7 +19635,7 @@ export declare class PlansApi extends BaseAPI {
|
|
|
19422
19635
|
* @throws {RequiredError}
|
|
19423
19636
|
* @memberof PlansApi
|
|
19424
19637
|
*/
|
|
19425
|
-
miscPlansPlanIDGet(planID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPlanResponse, any>>;
|
|
19638
|
+
miscPlansPlanIDGet(planID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPlanResponse, any, {}>>;
|
|
19426
19639
|
/**
|
|
19427
19640
|
* Update plan information by ID.
|
|
19428
19641
|
* @summary Update an existing Plan
|
|
@@ -19432,7 +19645,7 @@ export declare class PlansApi extends BaseAPI {
|
|
|
19432
19645
|
* @throws {RequiredError}
|
|
19433
19646
|
* @memberof PlansApi
|
|
19434
19647
|
*/
|
|
19435
|
-
miscPlansPlanIDPut(planID: number, plan: DataTypesPlan, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
19648
|
+
miscPlansPlanIDPut(planID: number, plan: DataTypesPlan, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
19436
19649
|
/**
|
|
19437
19650
|
* Adds a new plan to the system
|
|
19438
19651
|
* @summary Creates a new plan
|
|
@@ -19441,7 +19654,7 @@ export declare class PlansApi extends BaseAPI {
|
|
|
19441
19654
|
* @throws {RequiredError}
|
|
19442
19655
|
* @memberof PlansApi
|
|
19443
19656
|
*/
|
|
19444
|
-
miscPlansPost(plan: DataTypesCreatePlanRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
19657
|
+
miscPlansPost(plan: DataTypesCreatePlanRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
19445
19658
|
/**
|
|
19446
19659
|
* Updates plan status information by ID.
|
|
19447
19660
|
* @summary Update an existing plan status
|
|
@@ -19451,7 +19664,7 @@ export declare class PlansApi extends BaseAPI {
|
|
|
19451
19664
|
* @throws {RequiredError}
|
|
19452
19665
|
* @memberof PlansApi
|
|
19453
19666
|
*/
|
|
19454
|
-
miscPlansUpdateStatusPlanIDStatusPut(planID: number, status: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
19667
|
+
miscPlansUpdateStatusPlanIDStatusPut(planID: number, status: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
19455
19668
|
}
|
|
19456
19669
|
/**
|
|
19457
19670
|
* PluralsDeclensionsApi - axios parameter creator
|
|
@@ -19828,7 +20041,7 @@ export declare class PluralsDeclensionsApi extends BaseAPI {
|
|
|
19828
20041
|
* @throws {RequiredError}
|
|
19829
20042
|
* @memberof PluralsDeclensionsApi
|
|
19830
20043
|
*/
|
|
19831
|
-
adminDefaultDeclensionsCategoriesGet(language?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseArrayString, any>>;
|
|
20044
|
+
adminDefaultDeclensionsCategoriesGet(language?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseArrayString, any, {}>>;
|
|
19832
20045
|
/**
|
|
19833
20046
|
* Get list of available languages in default declensions
|
|
19834
20047
|
* @summary Get available languages
|
|
@@ -19836,7 +20049,7 @@ export declare class PluralsDeclensionsApi extends BaseAPI {
|
|
|
19836
20049
|
* @throws {RequiredError}
|
|
19837
20050
|
* @memberof PluralsDeclensionsApi
|
|
19838
20051
|
*/
|
|
19839
|
-
adminDefaultDeclensionsLanguagesGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseArrayString, any>>;
|
|
20052
|
+
adminDefaultDeclensionsLanguagesGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseArrayString, any, {}>>;
|
|
19840
20053
|
/**
|
|
19841
20054
|
* Search default declensions that can be used as templates for creating custom declensions
|
|
19842
20055
|
* @summary Search default declensions
|
|
@@ -19849,7 +20062,7 @@ export declare class PluralsDeclensionsApi extends BaseAPI {
|
|
|
19849
20062
|
* @throws {RequiredError}
|
|
19850
20063
|
* @memberof PluralsDeclensionsApi
|
|
19851
20064
|
*/
|
|
19852
|
-
adminDefaultDeclensionsSearchGet(lang?: string, category?: string, search?: string, page?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesDefaultDeclensionsResponseWrapper, any>>;
|
|
20065
|
+
adminDefaultDeclensionsSearchGet(lang?: string, category?: string, search?: string, page?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesDefaultDeclensionsResponseWrapper, any, {}>>;
|
|
19853
20066
|
/**
|
|
19854
20067
|
* Bulk upload plural/declension groups from JSON array
|
|
19855
20068
|
* @summary Bulk upload plural/declension groups
|
|
@@ -19859,7 +20072,7 @@ export declare class PluralsDeclensionsApi extends BaseAPI {
|
|
|
19859
20072
|
* @throws {RequiredError}
|
|
19860
20073
|
* @memberof PluralsDeclensionsApi
|
|
19861
20074
|
*/
|
|
19862
|
-
adminStoresXStoreIDPluralsDeclensionsBulkUploadPost(xStoreID: string, body: DataTypesBulkUploadPluralDeclensionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesBulkUploadResponseWrapper, any>>;
|
|
20075
|
+
adminStoresXStoreIDPluralsDeclensionsBulkUploadPost(xStoreID: string, body: DataTypesBulkUploadPluralDeclensionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesBulkUploadResponseWrapper, any, {}>>;
|
|
19863
20076
|
/**
|
|
19864
20077
|
* Export plural/declension groups for a store to CSV format
|
|
19865
20078
|
* @summary Export plural/declension groups to CSV
|
|
@@ -19870,7 +20083,7 @@ export declare class PluralsDeclensionsApi extends BaseAPI {
|
|
|
19870
20083
|
* @throws {RequiredError}
|
|
19871
20084
|
* @memberof PluralsDeclensionsApi
|
|
19872
20085
|
*/
|
|
19873
|
-
adminStoresXStoreIDPluralsDeclensionsExportCsvGet(xStoreID: string, language?: string, type?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any>>;
|
|
20086
|
+
adminStoresXStoreIDPluralsDeclensionsExportCsvGet(xStoreID: string, language?: string, type?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any, {}>>;
|
|
19874
20087
|
/**
|
|
19875
20088
|
* Fetches plural/declension groups for a store with pagination
|
|
19876
20089
|
* @summary Get plural/declension groups
|
|
@@ -19884,7 +20097,7 @@ export declare class PluralsDeclensionsApi extends BaseAPI {
|
|
|
19884
20097
|
* @throws {RequiredError}
|
|
19885
20098
|
* @memberof PluralsDeclensionsApi
|
|
19886
20099
|
*/
|
|
19887
|
-
adminStoresXStoreIDPluralsDeclensionsGet(xStoreID: string, language?: string, type?: string, q?: string, page?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPluralDeclensionsResponseWrapper, any>>;
|
|
20100
|
+
adminStoresXStoreIDPluralsDeclensionsGet(xStoreID: string, language?: string, type?: string, q?: string, page?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPluralDeclensionsResponseWrapper, any, {}>>;
|
|
19888
20101
|
/**
|
|
19889
20102
|
* Deletes a plural/declension group (soft delete)
|
|
19890
20103
|
* @summary Delete plural/declension group
|
|
@@ -19894,7 +20107,7 @@ export declare class PluralsDeclensionsApi extends BaseAPI {
|
|
|
19894
20107
|
* @throws {RequiredError}
|
|
19895
20108
|
* @memberof PluralsDeclensionsApi
|
|
19896
20109
|
*/
|
|
19897
|
-
adminStoresXStoreIDPluralsDeclensionsPluralDeclensionIDDelete(xStoreID: string, pluralDeclensionID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
20110
|
+
adminStoresXStoreIDPluralsDeclensionsPluralDeclensionIDDelete(xStoreID: string, pluralDeclensionID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
19898
20111
|
/**
|
|
19899
20112
|
* Fetches a specific plural/declension group by ID
|
|
19900
20113
|
* @summary Get plural/declension group by ID
|
|
@@ -19904,7 +20117,7 @@ export declare class PluralsDeclensionsApi extends BaseAPI {
|
|
|
19904
20117
|
* @throws {RequiredError}
|
|
19905
20118
|
* @memberof PluralsDeclensionsApi
|
|
19906
20119
|
*/
|
|
19907
|
-
adminStoresXStoreIDPluralsDeclensionsPluralDeclensionIDGet(xStoreID: string, pluralDeclensionID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPluralDeclensionResponseWrapper, any>>;
|
|
20120
|
+
adminStoresXStoreIDPluralsDeclensionsPluralDeclensionIDGet(xStoreID: string, pluralDeclensionID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPluralDeclensionResponseWrapper, any, {}>>;
|
|
19908
20121
|
/**
|
|
19909
20122
|
* Updates a plural/declension group
|
|
19910
20123
|
* @summary Update plural/declension group
|
|
@@ -19915,7 +20128,7 @@ export declare class PluralsDeclensionsApi extends BaseAPI {
|
|
|
19915
20128
|
* @throws {RequiredError}
|
|
19916
20129
|
* @memberof PluralsDeclensionsApi
|
|
19917
20130
|
*/
|
|
19918
|
-
adminStoresXStoreIDPluralsDeclensionsPluralDeclensionIDPut(xStoreID: string, pluralDeclensionID: number, body: DataTypesUpdatePluralDeclensionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
20131
|
+
adminStoresXStoreIDPluralsDeclensionsPluralDeclensionIDPut(xStoreID: string, pluralDeclensionID: number, body: DataTypesUpdatePluralDeclensionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
19919
20132
|
/**
|
|
19920
20133
|
* Creates a new plural/declension group for a store
|
|
19921
20134
|
* @summary Create plural/declension group
|
|
@@ -19925,7 +20138,7 @@ export declare class PluralsDeclensionsApi extends BaseAPI {
|
|
|
19925
20138
|
* @throws {RequiredError}
|
|
19926
20139
|
* @memberof PluralsDeclensionsApi
|
|
19927
20140
|
*/
|
|
19928
|
-
adminStoresXStoreIDPluralsDeclensionsPost(xStoreID: string, body: DataTypesCreatePluralDeclensionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPluralDeclensionResponseWrapper, any>>;
|
|
20141
|
+
adminStoresXStoreIDPluralsDeclensionsPost(xStoreID: string, body: DataTypesCreatePluralDeclensionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPluralDeclensionResponseWrapper, any, {}>>;
|
|
19929
20142
|
/**
|
|
19930
20143
|
* Upload plural/declension groups from CSV file
|
|
19931
20144
|
* @summary Upload plural/declension groups from CSV file
|
|
@@ -19935,7 +20148,7 @@ export declare class PluralsDeclensionsApi extends BaseAPI {
|
|
|
19935
20148
|
* @throws {RequiredError}
|
|
19936
20149
|
* @memberof PluralsDeclensionsApi
|
|
19937
20150
|
*/
|
|
19938
|
-
adminStoresXStoreIDPluralsDeclensionsUploadCsvPost(xStoreID: string, file: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesBulkUploadResponseWrapper, any>>;
|
|
20151
|
+
adminStoresXStoreIDPluralsDeclensionsUploadCsvPost(xStoreID: string, file: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesBulkUploadResponseWrapper, any, {}>>;
|
|
19939
20152
|
/**
|
|
19940
20153
|
* Upload plural/declension groups from JSON file
|
|
19941
20154
|
* @summary Upload plural/declension groups from JSON file
|
|
@@ -19945,7 +20158,7 @@ export declare class PluralsDeclensionsApi extends BaseAPI {
|
|
|
19945
20158
|
* @throws {RequiredError}
|
|
19946
20159
|
* @memberof PluralsDeclensionsApi
|
|
19947
20160
|
*/
|
|
19948
|
-
adminStoresXStoreIDPluralsDeclensionsUploadJsonPost(xStoreID: string, file: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesBulkUploadResponseWrapper, any>>;
|
|
20161
|
+
adminStoresXStoreIDPluralsDeclensionsUploadJsonPost(xStoreID: string, file: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesBulkUploadResponseWrapper, any, {}>>;
|
|
19949
20162
|
}
|
|
19950
20163
|
/**
|
|
19951
20164
|
* RegisterApi - axios parameter creator
|
|
@@ -20048,7 +20261,7 @@ export declare class RegisterApi extends BaseAPI {
|
|
|
20048
20261
|
* @throws {RequiredError}
|
|
20049
20262
|
* @memberof RegisterApi
|
|
20050
20263
|
*/
|
|
20051
|
-
registerUsersOtpResendPost(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
20264
|
+
registerUsersOtpResendPost(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
20052
20265
|
/**
|
|
20053
20266
|
* Verifies OTP and marks user as verified
|
|
20054
20267
|
* @summary Verify OTP
|
|
@@ -20057,7 +20270,7 @@ export declare class RegisterApi extends BaseAPI {
|
|
|
20057
20270
|
* @throws {RequiredError}
|
|
20058
20271
|
* @memberof RegisterApi
|
|
20059
20272
|
*/
|
|
20060
|
-
registerUsersOtpVerifyPost(body: DataTypesOTPPayload, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesVerifyOTPResponseWrapper, any>>;
|
|
20273
|
+
registerUsersOtpVerifyPost(body: DataTypesOTPPayload, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesVerifyOTPResponseWrapper, any, {}>>;
|
|
20061
20274
|
/**
|
|
20062
20275
|
* Creates a new user and sends OTP to email
|
|
20063
20276
|
* @summary Register new user
|
|
@@ -20066,7 +20279,7 @@ export declare class RegisterApi extends BaseAPI {
|
|
|
20066
20279
|
* @throws {RequiredError}
|
|
20067
20280
|
* @memberof RegisterApi
|
|
20068
20281
|
*/
|
|
20069
|
-
registerUsersPost(payload: DataTypesCreateUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCreateUserResponseWrapper, any>>;
|
|
20282
|
+
registerUsersPost(payload: DataTypesCreateUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCreateUserResponseWrapper, any, {}>>;
|
|
20070
20283
|
}
|
|
20071
20284
|
/**
|
|
20072
20285
|
* RequestsApi - axios parameter creator
|
|
@@ -20247,7 +20460,7 @@ export declare class RequestsApi extends BaseAPI {
|
|
|
20247
20460
|
* @throws {RequiredError}
|
|
20248
20461
|
* @memberof RequestsApi
|
|
20249
20462
|
*/
|
|
20250
|
-
miscRequestsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesServiceRequestsListResponse, any>>;
|
|
20463
|
+
miscRequestsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesServiceRequestsListResponse, any, {}>>;
|
|
20251
20464
|
/**
|
|
20252
20465
|
* Updates ServiceRequest information by ID.
|
|
20253
20466
|
* @summary Deletes an existing ServiceRequest
|
|
@@ -20256,7 +20469,7 @@ export declare class RequestsApi extends BaseAPI {
|
|
|
20256
20469
|
* @throws {RequiredError}
|
|
20257
20470
|
* @memberof RequestsApi
|
|
20258
20471
|
*/
|
|
20259
|
-
miscRequestsIdDelete(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
20472
|
+
miscRequestsIdDelete(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
20260
20473
|
/**
|
|
20261
20474
|
* Updates ServiceRequest information by ID.
|
|
20262
20475
|
* @summary Update an existing ServiceRequest
|
|
@@ -20266,7 +20479,7 @@ export declare class RequestsApi extends BaseAPI {
|
|
|
20266
20479
|
* @throws {RequiredError}
|
|
20267
20480
|
* @memberof RequestsApi
|
|
20268
20481
|
*/
|
|
20269
|
-
miscRequestsIdPut(id: number, serviceRequest: DataTypesServiceRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
20482
|
+
miscRequestsIdPut(id: number, serviceRequest: DataTypesServiceRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
20270
20483
|
/**
|
|
20271
20484
|
* Adds a new ServiceRequest to the system
|
|
20272
20485
|
* @summary Creates a new ServiceRequest
|
|
@@ -20275,7 +20488,7 @@ export declare class RequestsApi extends BaseAPI {
|
|
|
20275
20488
|
* @throws {RequiredError}
|
|
20276
20489
|
* @memberof RequestsApi
|
|
20277
20490
|
*/
|
|
20278
|
-
miscRequestsPost(serviceRequest: DataTypesServiceRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
20491
|
+
miscRequestsPost(serviceRequest: DataTypesServiceRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
20279
20492
|
/**
|
|
20280
20493
|
* Fetches ServiceRequest by id
|
|
20281
20494
|
* @summary Fetches ServiceRequest by id
|
|
@@ -20284,7 +20497,7 @@ export declare class RequestsApi extends BaseAPI {
|
|
|
20284
20497
|
* @throws {RequiredError}
|
|
20285
20498
|
* @memberof RequestsApi
|
|
20286
20499
|
*/
|
|
20287
|
-
miscRequestsRequestIdGet(requestId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesServiceRequestResponse, any>>;
|
|
20500
|
+
miscRequestsRequestIdGet(requestId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesServiceRequestResponse, any, {}>>;
|
|
20288
20501
|
/**
|
|
20289
20502
|
* Updates ServiceRequest status information by ID.
|
|
20290
20503
|
* @summary Update an existing ServiceRequest status
|
|
@@ -20294,7 +20507,7 @@ export declare class RequestsApi extends BaseAPI {
|
|
|
20294
20507
|
* @throws {RequiredError}
|
|
20295
20508
|
* @memberof RequestsApi
|
|
20296
20509
|
*/
|
|
20297
|
-
miscRequestsUpdateStatusIdStatusPut(id: number, status: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
20510
|
+
miscRequestsUpdateStatusIdStatusPut(id: number, status: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
20298
20511
|
}
|
|
20299
20512
|
/**
|
|
20300
20513
|
* RoleRightsApi - axios parameter creator
|
|
@@ -20521,7 +20734,7 @@ export declare class RoleRightsApi extends BaseAPI {
|
|
|
20521
20734
|
* @throws {RequiredError}
|
|
20522
20735
|
* @memberof RoleRightsApi
|
|
20523
20736
|
*/
|
|
20524
|
-
adminRolerightsBulkPost(roleRight: Array<DataTypesRoleRightRequestDto>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
20737
|
+
adminRolerightsBulkPost(roleRight: Array<DataTypesRoleRightRequestDto>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
20525
20738
|
/**
|
|
20526
20739
|
* Fetches list of all roleright
|
|
20527
20740
|
* @summary Fetches list of all roleright
|
|
@@ -20529,7 +20742,7 @@ export declare class RoleRightsApi extends BaseAPI {
|
|
|
20529
20742
|
* @throws {RequiredError}
|
|
20530
20743
|
* @memberof RoleRightsApi
|
|
20531
20744
|
*/
|
|
20532
|
-
adminRolerightsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRoleRightsListResponse, any>>;
|
|
20745
|
+
adminRolerightsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRoleRightsListResponse, any, {}>>;
|
|
20533
20746
|
/**
|
|
20534
20747
|
* Fetches roleright by role id
|
|
20535
20748
|
* @summary Fetches roleright by role id
|
|
@@ -20538,7 +20751,7 @@ export declare class RoleRightsApi extends BaseAPI {
|
|
|
20538
20751
|
* @throws {RequiredError}
|
|
20539
20752
|
* @memberof RoleRightsApi
|
|
20540
20753
|
*/
|
|
20541
|
-
adminRolerightsGetRoleRightsByRoleIdIdGet(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRoleRightResponse, any>>;
|
|
20754
|
+
adminRolerightsGetRoleRightsByRoleIdIdGet(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRoleRightResponse, any, {}>>;
|
|
20542
20755
|
/**
|
|
20543
20756
|
* Fetches roleright by id
|
|
20544
20757
|
* @summary Fetches roleright by id
|
|
@@ -20547,7 +20760,7 @@ export declare class RoleRightsApi extends BaseAPI {
|
|
|
20547
20760
|
* @throws {RequiredError}
|
|
20548
20761
|
* @memberof RoleRightsApi
|
|
20549
20762
|
*/
|
|
20550
|
-
adminRolerightsIdGet(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRoleRightResponse, any>>;
|
|
20763
|
+
adminRolerightsIdGet(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRoleRightResponse, any, {}>>;
|
|
20551
20764
|
/**
|
|
20552
20765
|
* Updates roleright information by ID.
|
|
20553
20766
|
* @summary Update an existing roleright
|
|
@@ -20557,7 +20770,7 @@ export declare class RoleRightsApi extends BaseAPI {
|
|
|
20557
20770
|
* @throws {RequiredError}
|
|
20558
20771
|
* @memberof RoleRightsApi
|
|
20559
20772
|
*/
|
|
20560
|
-
adminRolerightsIdPut(id: number, roleRight: DataTypesRoleRightRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
20773
|
+
adminRolerightsIdPut(id: number, roleRight: DataTypesRoleRightRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
20561
20774
|
/**
|
|
20562
20775
|
* Fetches list of all roleright by orgId
|
|
20563
20776
|
* @summary Fetches list of all roleright by orgId
|
|
@@ -20566,7 +20779,7 @@ export declare class RoleRightsApi extends BaseAPI {
|
|
|
20566
20779
|
* @throws {RequiredError}
|
|
20567
20780
|
* @memberof RoleRightsApi
|
|
20568
20781
|
*/
|
|
20569
|
-
adminRolerightsOrgOrgIdGet(orgId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRoleRightsListResponse, any>>;
|
|
20782
|
+
adminRolerightsOrgOrgIdGet(orgId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRoleRightsListResponse, any, {}>>;
|
|
20570
20783
|
/**
|
|
20571
20784
|
* Adds a new roleright to the system
|
|
20572
20785
|
* @summary Creates a new roleright
|
|
@@ -20575,7 +20788,7 @@ export declare class RoleRightsApi extends BaseAPI {
|
|
|
20575
20788
|
* @throws {RequiredError}
|
|
20576
20789
|
* @memberof RoleRightsApi
|
|
20577
20790
|
*/
|
|
20578
|
-
adminRolerightsPost(roleRight: DataTypesRoleRightRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
20791
|
+
adminRolerightsPost(roleRight: DataTypesRoleRightRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
20579
20792
|
/**
|
|
20580
20793
|
* Fetches list of all roleright by storeid
|
|
20581
20794
|
* @summary Fetches list of all roleright by storeid
|
|
@@ -20584,7 +20797,7 @@ export declare class RoleRightsApi extends BaseAPI {
|
|
|
20584
20797
|
* @throws {RequiredError}
|
|
20585
20798
|
* @memberof RoleRightsApi
|
|
20586
20799
|
*/
|
|
20587
|
-
adminRolerightsStoreStoreIdGet(storeId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRoleRightsListResponse, any>>;
|
|
20800
|
+
adminRolerightsStoreStoreIdGet(storeId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRoleRightsListResponse, any, {}>>;
|
|
20588
20801
|
}
|
|
20589
20802
|
/**
|
|
20590
20803
|
* RolesApi - axios parameter creator
|
|
@@ -20745,7 +20958,7 @@ export declare class RolesApi extends BaseAPI {
|
|
|
20745
20958
|
* @throws {RequiredError}
|
|
20746
20959
|
* @memberof RolesApi
|
|
20747
20960
|
*/
|
|
20748
|
-
adminRolesIdDelete(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
20961
|
+
adminRolesIdDelete(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
20749
20962
|
/**
|
|
20750
20963
|
* Updates role information by ID.
|
|
20751
20964
|
* @summary Update an existing role
|
|
@@ -20755,7 +20968,7 @@ export declare class RolesApi extends BaseAPI {
|
|
|
20755
20968
|
* @throws {RequiredError}
|
|
20756
20969
|
* @memberof RolesApi
|
|
20757
20970
|
*/
|
|
20758
|
-
adminRolesIdPut(id: number, role: DataTypesCreateRoleRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
20971
|
+
adminRolesIdPut(id: number, role: DataTypesCreateRoleRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
20759
20972
|
/**
|
|
20760
20973
|
* Fetches list of all roles
|
|
20761
20974
|
* @summary Fetches list of all roles
|
|
@@ -20764,7 +20977,7 @@ export declare class RolesApi extends BaseAPI {
|
|
|
20764
20977
|
* @throws {RequiredError}
|
|
20765
20978
|
* @memberof RolesApi
|
|
20766
20979
|
*/
|
|
20767
|
-
adminRolesOrgIdGet(orgId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRolesListResponse, any>>;
|
|
20980
|
+
adminRolesOrgIdGet(orgId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRolesListResponse, any, {}>>;
|
|
20768
20981
|
/**
|
|
20769
20982
|
* Fetches role by id
|
|
20770
20983
|
* @summary Fetches role by id
|
|
@@ -20774,7 +20987,7 @@ export declare class RolesApi extends BaseAPI {
|
|
|
20774
20987
|
* @throws {RequiredError}
|
|
20775
20988
|
* @memberof RolesApi
|
|
20776
20989
|
*/
|
|
20777
|
-
adminRolesOrgIdRoleIdGet(orgId: number, roleId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRoleResponse, any>>;
|
|
20990
|
+
adminRolesOrgIdRoleIdGet(orgId: number, roleId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRoleResponse, any, {}>>;
|
|
20778
20991
|
/**
|
|
20779
20992
|
* Adds a new role to the system
|
|
20780
20993
|
* @summary Creates a new role
|
|
@@ -20783,7 +20996,7 @@ export declare class RolesApi extends BaseAPI {
|
|
|
20783
20996
|
* @throws {RequiredError}
|
|
20784
20997
|
* @memberof RolesApi
|
|
20785
20998
|
*/
|
|
20786
|
-
adminRolesPost(role: DataTypesCreateRoleRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
20999
|
+
adminRolesPost(role: DataTypesCreateRoleRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
20787
21000
|
}
|
|
20788
21001
|
/**
|
|
20789
21002
|
* SearchApi - axios parameter creator
|
|
@@ -21005,7 +21218,7 @@ export declare class SearchApi extends BaseAPI {
|
|
|
21005
21218
|
* @throws {RequiredError}
|
|
21006
21219
|
* @memberof SearchApi
|
|
21007
21220
|
*/
|
|
21008
|
-
adminV1SearchXStoreIDPost(xStoreID: string, body: DataTypesAdminSearchRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCombinedSearchResponseWrapper, any>>;
|
|
21221
|
+
adminV1SearchXStoreIDPost(xStoreID: string, body: DataTypesAdminSearchRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCombinedSearchResponseWrapper, any, {}>>;
|
|
21009
21222
|
/**
|
|
21010
21223
|
* Get metadata about all configurable fields for dynamic form generation
|
|
21011
21224
|
* @summary Get Configuration Schema
|
|
@@ -21014,7 +21227,7 @@ export declare class SearchApi extends BaseAPI {
|
|
|
21014
21227
|
* @throws {RequiredError}
|
|
21015
21228
|
* @memberof SearchApi
|
|
21016
21229
|
*/
|
|
21017
|
-
v1IndexConfigSchemaGet(indexname?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesConfigurationSchemaResponseWrapper, any>>;
|
|
21230
|
+
v1IndexConfigSchemaGet(indexname?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesConfigurationSchemaResponseWrapper, any, {}>>;
|
|
21018
21231
|
/**
|
|
21019
21232
|
* Get the current index configuration
|
|
21020
21233
|
* @summary Get Index Config
|
|
@@ -21023,7 +21236,7 @@ export declare class SearchApi extends BaseAPI {
|
|
|
21023
21236
|
* @throws {RequiredError}
|
|
21024
21237
|
* @memberof SearchApi
|
|
21025
21238
|
*/
|
|
21026
|
-
v1IndexIndexnameConfigGet(indexname: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesIndexConfigResponseWrapper, any>>;
|
|
21239
|
+
v1IndexIndexnameConfigGet(indexname: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesIndexConfigResponseWrapper, any, {}>>;
|
|
21027
21240
|
/**
|
|
21028
21241
|
* Configure the index for search
|
|
21029
21242
|
* @summary Index Config
|
|
@@ -21033,7 +21246,7 @@ export declare class SearchApi extends BaseAPI {
|
|
|
21033
21246
|
* @throws {RequiredError}
|
|
21034
21247
|
* @memberof SearchApi
|
|
21035
21248
|
*/
|
|
21036
|
-
v1IndexIndexnameConfigPost(indexname: string, body: DataTypesIndexConfig, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
21249
|
+
v1IndexIndexnameConfigPost(indexname: string, body: DataTypesIndexConfig, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
21037
21250
|
/**
|
|
21038
21251
|
* Update a single property of the index configuration
|
|
21039
21252
|
* @summary Update Index Config Property
|
|
@@ -21044,7 +21257,7 @@ export declare class SearchApi extends BaseAPI {
|
|
|
21044
21257
|
* @throws {RequiredError}
|
|
21045
21258
|
* @memberof SearchApi
|
|
21046
21259
|
*/
|
|
21047
|
-
v1IndexIndexnameConfigPropertyPatch(indexname: string, property: string, body: object, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
21260
|
+
v1IndexIndexnameConfigPropertyPatch(indexname: string, property: string, body: object, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
21048
21261
|
/**
|
|
21049
21262
|
* Get default configuration values computed from the Typesense schema
|
|
21050
21263
|
* @summary Get Schema-Based Defaults
|
|
@@ -21053,7 +21266,7 @@ export declare class SearchApi extends BaseAPI {
|
|
|
21053
21266
|
* @throws {RequiredError}
|
|
21054
21267
|
* @memberof SearchApi
|
|
21055
21268
|
*/
|
|
21056
|
-
v1IndexIndexnameDefaultsGet(indexname: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSchemaBasedDefaultsResponseWrapper, any>>;
|
|
21269
|
+
v1IndexIndexnameDefaultsGet(indexname: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSchemaBasedDefaultsResponseWrapper, any, {}>>;
|
|
21057
21270
|
/**
|
|
21058
21271
|
* Search documents using store credentials with optional autocomplete suggestions and configurable stopwords/synonyms
|
|
21059
21272
|
* @summary Public Search API
|
|
@@ -21064,7 +21277,7 @@ export declare class SearchApi extends BaseAPI {
|
|
|
21064
21277
|
* @throws {RequiredError}
|
|
21065
21278
|
* @memberof SearchApi
|
|
21066
21279
|
*/
|
|
21067
|
-
v1SearchPost(xStoreid: string, xStoresecret: string, body: DataTypesPublicSearchRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOfficialSearchResponseWrapper, any>>;
|
|
21280
|
+
v1SearchPost(xStoreid: string, xStoresecret: string, body: DataTypesPublicSearchRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOfficialSearchResponseWrapper, any, {}>>;
|
|
21068
21281
|
}
|
|
21069
21282
|
/**
|
|
21070
21283
|
* StopwordsApi - axios parameter creator
|
|
@@ -21293,7 +21506,7 @@ export declare class StopwordsApi extends BaseAPI {
|
|
|
21293
21506
|
* @throws {RequiredError}
|
|
21294
21507
|
* @memberof StopwordsApi
|
|
21295
21508
|
*/
|
|
21296
|
-
adminStoresStopwordsLanguagesGet(type?: string, page?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesLanguagesResponseWrapper, any>>;
|
|
21509
|
+
adminStoresStopwordsLanguagesGet(type?: string, page?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesLanguagesResponseWrapper, any, {}>>;
|
|
21297
21510
|
/**
|
|
21298
21511
|
* Enables or disables a specific word for a store. Supports default words, store-specific words, and custom words.
|
|
21299
21512
|
* @summary Update word status for store
|
|
@@ -21303,7 +21516,7 @@ export declare class StopwordsApi extends BaseAPI {
|
|
|
21303
21516
|
* @throws {RequiredError}
|
|
21304
21517
|
* @memberof StopwordsApi
|
|
21305
21518
|
*/
|
|
21306
|
-
adminStoresXStoreIDStopwordsWordStatusPut(xStoreID: string, body: DataTypesUpdateWordStatusRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateWordStatusResponseWrapper, any>>;
|
|
21519
|
+
adminStoresXStoreIDStopwordsWordStatusPut(xStoreID: string, body: DataTypesUpdateWordStatusRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateWordStatusResponseWrapper, any, {}>>;
|
|
21307
21520
|
/**
|
|
21308
21521
|
* Fetches a single word list by language with pagination on words within the wordlist
|
|
21309
21522
|
* @summary Get word lists by language
|
|
@@ -21316,7 +21529,7 @@ export declare class StopwordsApi extends BaseAPI {
|
|
|
21316
21529
|
* @throws {RequiredError}
|
|
21317
21530
|
* @memberof StopwordsApi
|
|
21318
21531
|
*/
|
|
21319
|
-
adminStoresXStoreIDStopwordsWordlistsGet(xStoreID: string, lang?: string, type?: string, page?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesWordListResponseWrapper, any>>;
|
|
21532
|
+
adminStoresXStoreIDStopwordsWordlistsGet(xStoreID: string, lang?: string, type?: string, page?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesWordListResponseWrapper, any, {}>>;
|
|
21320
21533
|
/**
|
|
21321
21534
|
* Fetches a single word list by language with pagination on words, including store-specific enabled/disabled status and store-specific added words. Supports search functionality.
|
|
21322
21535
|
* @summary Get word lists by language (includes store-specific words)
|
|
@@ -21330,7 +21543,7 @@ export declare class StopwordsApi extends BaseAPI {
|
|
|
21330
21543
|
* @throws {RequiredError}
|
|
21331
21544
|
* @memberof StopwordsApi
|
|
21332
21545
|
*/
|
|
21333
|
-
adminStoresXStoreIDStopwordsWordlistsWithStoreWordsGet(xStoreID: string, lang?: string, type?: string, q?: string, page?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesWordListResponseEnhancedWrapper, any>>;
|
|
21546
|
+
adminStoresXStoreIDStopwordsWordlistsWithStoreWordsGet(xStoreID: string, lang?: string, type?: string, q?: string, page?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesWordListResponseEnhancedWrapper, any, {}>>;
|
|
21334
21547
|
/**
|
|
21335
21548
|
* Removes store-specific words from a language word list
|
|
21336
21549
|
* @summary Remove words from language word list
|
|
@@ -21341,7 +21554,7 @@ export declare class StopwordsApi extends BaseAPI {
|
|
|
21341
21554
|
* @throws {RequiredError}
|
|
21342
21555
|
* @memberof StopwordsApi
|
|
21343
21556
|
*/
|
|
21344
|
-
adminStoresXStoreIDStopwordsWordlistsWordListIDWordsDelete(xStoreID: string, wordListID: number, body: DataTypesRemoveWordsFromLanguageListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateWordStatusResponseWrapper, any>>;
|
|
21557
|
+
adminStoresXStoreIDStopwordsWordlistsWordListIDWordsDelete(xStoreID: string, wordListID: number, body: DataTypesRemoveWordsFromLanguageListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateWordStatusResponseWrapper, any, {}>>;
|
|
21345
21558
|
/**
|
|
21346
21559
|
* Adds words directly to a language word list for a specific store
|
|
21347
21560
|
* @summary Add words to language word list
|
|
@@ -21352,7 +21565,7 @@ export declare class StopwordsApi extends BaseAPI {
|
|
|
21352
21565
|
* @throws {RequiredError}
|
|
21353
21566
|
* @memberof StopwordsApi
|
|
21354
21567
|
*/
|
|
21355
|
-
adminStoresXStoreIDStopwordsWordlistsWordListIDWordsPost(xStoreID: string, wordListID: number, body: DataTypesAddWordsToLanguageListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateWordStatusResponseWrapper, any>>;
|
|
21568
|
+
adminStoresXStoreIDStopwordsWordlistsWordListIDWordsPost(xStoreID: string, wordListID: number, body: DataTypesAddWordsToLanguageListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateWordStatusResponseWrapper, any, {}>>;
|
|
21356
21569
|
}
|
|
21357
21570
|
/**
|
|
21358
21571
|
* StoreDocumentsApi - axios parameter creator
|
|
@@ -21565,7 +21778,7 @@ export declare class StoreDocumentsApi extends BaseAPI {
|
|
|
21565
21778
|
* @throws {RequiredError}
|
|
21566
21779
|
* @memberof StoreDocumentsApi
|
|
21567
21780
|
*/
|
|
21568
|
-
adminStoresXStoreIDDocumentsBulkPost(xStoreID: string, body: DataTypesBulkDocumentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesBulkDocumentResponseWrapper, any>>;
|
|
21781
|
+
adminStoresXStoreIDDocumentsBulkPost(xStoreID: string, body: DataTypesBulkDocumentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesBulkDocumentResponseWrapper, any, {}>>;
|
|
21569
21782
|
/**
|
|
21570
21783
|
* Deletes a document by ID from a store
|
|
21571
21784
|
* @summary Delete document
|
|
@@ -21575,7 +21788,7 @@ export declare class StoreDocumentsApi extends BaseAPI {
|
|
|
21575
21788
|
* @throws {RequiredError}
|
|
21576
21789
|
* @memberof StoreDocumentsApi
|
|
21577
21790
|
*/
|
|
21578
|
-
adminStoresXStoreIDDocumentsDocumentIDDelete(xStoreID: string, documentID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesDocumentResponseWrapper, any>>;
|
|
21791
|
+
adminStoresXStoreIDDocumentsDocumentIDDelete(xStoreID: string, documentID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesDocumentResponseWrapper, any, {}>>;
|
|
21579
21792
|
/**
|
|
21580
21793
|
* Retrieves a single document by ID from a store
|
|
21581
21794
|
* @summary Get single document
|
|
@@ -21585,7 +21798,7 @@ export declare class StoreDocumentsApi extends BaseAPI {
|
|
|
21585
21798
|
* @throws {RequiredError}
|
|
21586
21799
|
* @memberof StoreDocumentsApi
|
|
21587
21800
|
*/
|
|
21588
|
-
adminStoresXStoreIDDocumentsDocumentIDGet(xStoreID: string, documentID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesDocumentResponseWrapper, any>>;
|
|
21801
|
+
adminStoresXStoreIDDocumentsDocumentIDGet(xStoreID: string, documentID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesDocumentResponseWrapper, any, {}>>;
|
|
21589
21802
|
/**
|
|
21590
21803
|
* Updates an existing document by ID. The document ID will not change even if document properties change.
|
|
21591
21804
|
* @summary Update document
|
|
@@ -21596,7 +21809,7 @@ export declare class StoreDocumentsApi extends BaseAPI {
|
|
|
21596
21809
|
* @throws {RequiredError}
|
|
21597
21810
|
* @memberof StoreDocumentsApi
|
|
21598
21811
|
*/
|
|
21599
|
-
adminStoresXStoreIDDocumentsDocumentIDPut(xStoreID: string, documentID: string, body: object, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesDocumentResponseWrapper, any>>;
|
|
21812
|
+
adminStoresXStoreIDDocumentsDocumentIDPut(xStoreID: string, documentID: string, body: object, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesDocumentResponseWrapper, any, {}>>;
|
|
21600
21813
|
/**
|
|
21601
21814
|
* Retrieves documents from a store with pagination and optional filtering
|
|
21602
21815
|
* @summary Get documents from store
|
|
@@ -21610,7 +21823,7 @@ export declare class StoreDocumentsApi extends BaseAPI {
|
|
|
21610
21823
|
* @throws {RequiredError}
|
|
21611
21824
|
* @memberof StoreDocumentsApi
|
|
21612
21825
|
*/
|
|
21613
|
-
adminStoresXStoreIDDocumentsGet(xStoreID: string, page?: number, limit?: number, search?: string, filter?: string, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesDocumentListResponseWrapper, any>>;
|
|
21826
|
+
adminStoresXStoreIDDocumentsGet(xStoreID: string, page?: number, limit?: number, search?: string, filter?: string, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesDocumentListResponseWrapper, any, {}>>;
|
|
21614
21827
|
/**
|
|
21615
21828
|
* Inserts a new document into a store. If ID is provided, it will be used; otherwise, a hash-based ID will be generated. If a document with the same hash already exists, it will be updated.
|
|
21616
21829
|
* @summary Insert document
|
|
@@ -21620,7 +21833,7 @@ export declare class StoreDocumentsApi extends BaseAPI {
|
|
|
21620
21833
|
* @throws {RequiredError}
|
|
21621
21834
|
* @memberof StoreDocumentsApi
|
|
21622
21835
|
*/
|
|
21623
|
-
adminStoresXStoreIDDocumentsPost(xStoreID: string, body: object, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesDocumentResponseWrapper, any>>;
|
|
21836
|
+
adminStoresXStoreIDDocumentsPost(xStoreID: string, body: object, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesDocumentResponseWrapper, any, {}>>;
|
|
21624
21837
|
}
|
|
21625
21838
|
/**
|
|
21626
21839
|
* StoresApi - axios parameter creator
|
|
@@ -21924,7 +22137,7 @@ export declare class StoresApi extends BaseAPI {
|
|
|
21924
22137
|
* @throws {RequiredError}
|
|
21925
22138
|
* @memberof StoresApi
|
|
21926
22139
|
*/
|
|
21927
|
-
adminStoresGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesStoresListResponse, any>>;
|
|
22140
|
+
adminStoresGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesStoresListResponse, any, {}>>;
|
|
21928
22141
|
/**
|
|
21929
22142
|
* Fetches stores by xStoreID
|
|
21930
22143
|
* @summary Fetches stores by xStoreID
|
|
@@ -21933,7 +22146,7 @@ export declare class StoresApi extends BaseAPI {
|
|
|
21933
22146
|
* @throws {RequiredError}
|
|
21934
22147
|
* @memberof StoresApi
|
|
21935
22148
|
*/
|
|
21936
|
-
adminStoresGetStoreXStoreIDGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesStoreResponse, any>>;
|
|
22149
|
+
adminStoresGetStoreXStoreIDGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesStoreResponse, any, {}>>;
|
|
21937
22150
|
/**
|
|
21938
22151
|
* Adds a new store to the system
|
|
21939
22152
|
* @summary Creates a new store
|
|
@@ -21942,7 +22155,7 @@ export declare class StoresApi extends BaseAPI {
|
|
|
21942
22155
|
* @throws {RequiredError}
|
|
21943
22156
|
* @memberof StoresApi
|
|
21944
22157
|
*/
|
|
21945
|
-
adminStoresPost(store: DataTypesStoreRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
22158
|
+
adminStoresPost(store: DataTypesStoreRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
21946
22159
|
/**
|
|
21947
22160
|
* Updates store information by ID.
|
|
21948
22161
|
* @summary Update an existing store
|
|
@@ -21952,7 +22165,7 @@ export declare class StoresApi extends BaseAPI {
|
|
|
21952
22165
|
* @throws {RequiredError}
|
|
21953
22166
|
* @memberof StoresApi
|
|
21954
22167
|
*/
|
|
21955
|
-
adminStoresStoreIDPut(storeID: number, store: DataTypesStoreRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
22168
|
+
adminStoresStoreIDPut(storeID: number, store: DataTypesStoreRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
21956
22169
|
/**
|
|
21957
22170
|
* Updates StoreStatus information by ID.
|
|
21958
22171
|
* @summary Update an existing StoreStatus
|
|
@@ -21962,7 +22175,7 @@ export declare class StoresApi extends BaseAPI {
|
|
|
21962
22175
|
* @throws {RequiredError}
|
|
21963
22176
|
* @memberof StoresApi
|
|
21964
22177
|
*/
|
|
21965
|
-
adminStoresUpdateStatusIdStatusPut(id: number, status: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
22178
|
+
adminStoresUpdateStatusIdStatusPut(id: number, status: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
21966
22179
|
/**
|
|
21967
22180
|
* Retrieves the store configuration using x-store ID
|
|
21968
22181
|
* @summary Get Store Config
|
|
@@ -21971,7 +22184,7 @@ export declare class StoresApi extends BaseAPI {
|
|
|
21971
22184
|
* @throws {RequiredError}
|
|
21972
22185
|
* @memberof StoresApi
|
|
21973
22186
|
*/
|
|
21974
|
-
adminStoresXStoreIDConfigGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesIndexConfigResponseWrapper, any>>;
|
|
22187
|
+
adminStoresXStoreIDConfigGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesIndexConfigResponseWrapper, any, {}>>;
|
|
21975
22188
|
/**
|
|
21976
22189
|
* Updates the store configuration using x-store ID. Supports partial updates - you can update individual fields without providing all required fields. Now supports stopwords and synonyms configuration for enhanced search capabilities.
|
|
21977
22190
|
* @summary Update Store Config (Partial)
|
|
@@ -21981,7 +22194,7 @@ export declare class StoresApi extends BaseAPI {
|
|
|
21981
22194
|
* @throws {RequiredError}
|
|
21982
22195
|
* @memberof StoresApi
|
|
21983
22196
|
*/
|
|
21984
|
-
adminStoresXStoreIDConfigPut(xStoreID: string, body: DataTypesIndexConfig, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesIndexConfigResponseWrapper, any>>;
|
|
22197
|
+
adminStoresXStoreIDConfigPut(xStoreID: string, body: DataTypesIndexConfig, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesIndexConfigResponseWrapper, any, {}>>;
|
|
21985
22198
|
/**
|
|
21986
22199
|
* Get metadata about all configurable fields for store configuration using x-store ID
|
|
21987
22200
|
* @summary Get Store Config Schema
|
|
@@ -21990,7 +22203,7 @@ export declare class StoresApi extends BaseAPI {
|
|
|
21990
22203
|
* @throws {RequiredError}
|
|
21991
22204
|
* @memberof StoresApi
|
|
21992
22205
|
*/
|
|
21993
|
-
adminStoresXStoreIDConfigSchemaGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesConfigurationSchemaResponseWrapper, any>>;
|
|
22206
|
+
adminStoresXStoreIDConfigSchemaGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesConfigurationSchemaResponseWrapper, any, {}>>;
|
|
21994
22207
|
/**
|
|
21995
22208
|
* Retrieves all store credentials (XStoreID, XStoreSecret, XStoreWriteSecret) for a given x-store ID
|
|
21996
22209
|
* @summary Get store credentials
|
|
@@ -21999,7 +22212,7 @@ export declare class StoresApi extends BaseAPI {
|
|
|
21999
22212
|
* @throws {RequiredError}
|
|
22000
22213
|
* @memberof StoresApi
|
|
22001
22214
|
*/
|
|
22002
|
-
adminStoresXStoreIDCredentialsGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesStoreCredentialsResponse, any>>;
|
|
22215
|
+
adminStoresXStoreIDCredentialsGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesStoreCredentialsResponse, any, {}>>;
|
|
22003
22216
|
/**
|
|
22004
22217
|
* Get default configuration values computed from the store\'s index schema using x-store ID
|
|
22005
22218
|
* @summary Get Store Schema-Based Defaults
|
|
@@ -22008,7 +22221,7 @@ export declare class StoresApi extends BaseAPI {
|
|
|
22008
22221
|
* @throws {RequiredError}
|
|
22009
22222
|
* @memberof StoresApi
|
|
22010
22223
|
*/
|
|
22011
|
-
adminStoresXStoreIDDefaultsGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSchemaBasedDefaultsResponseWrapper, any>>;
|
|
22224
|
+
adminStoresXStoreIDDefaultsGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSchemaBasedDefaultsResponseWrapper, any, {}>>;
|
|
22012
22225
|
/**
|
|
22013
22226
|
* Generates and assigns a new X-Store Secret for an existing store, keeping the same X-Store ID.
|
|
22014
22227
|
* @summary Regenerate X-Store Secret
|
|
@@ -22017,7 +22230,7 @@ export declare class StoresApi extends BaseAPI {
|
|
|
22017
22230
|
* @throws {RequiredError}
|
|
22018
22231
|
* @memberof StoresApi
|
|
22019
22232
|
*/
|
|
22020
|
-
xStoreIDRegenerateSecretPost(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesRegenerateXStoreSecretResponse, any>>;
|
|
22233
|
+
xStoreIDRegenerateSecretPost(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesRegenerateXStoreSecretResponse, any, {}>>;
|
|
22021
22234
|
}
|
|
22022
22235
|
/**
|
|
22023
22236
|
* SubscriptionsApi - axios parameter creator
|
|
@@ -22176,7 +22389,7 @@ export declare class SubscriptionsApi extends BaseAPI {
|
|
|
22176
22389
|
* @throws {RequiredError}
|
|
22177
22390
|
* @memberof SubscriptionsApi
|
|
22178
22391
|
*/
|
|
22179
|
-
adminSubscriptionsSubscriptionIDPut(subscriptionID: number, subscription: DataTypesCreateSubscriptionRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
22392
|
+
adminSubscriptionsSubscriptionIDPut(subscriptionID: number, subscription: DataTypesCreateSubscriptionRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
22180
22393
|
/**
|
|
22181
22394
|
* Updates Subscription status information by ID.
|
|
22182
22395
|
* @summary Update an existing Subscription status
|
|
@@ -22186,7 +22399,7 @@ export declare class SubscriptionsApi extends BaseAPI {
|
|
|
22186
22399
|
* @throws {RequiredError}
|
|
22187
22400
|
* @memberof SubscriptionsApi
|
|
22188
22401
|
*/
|
|
22189
|
-
adminSubscriptionsUpdatestatusSubscriptionIDStatusPut(subscriptionID: number, status: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
22402
|
+
adminSubscriptionsUpdatestatusSubscriptionIDStatusPut(subscriptionID: number, status: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
22190
22403
|
/**
|
|
22191
22404
|
* Fetches list of all Subscription
|
|
22192
22405
|
* @summary Fetches list of all Subscription
|
|
@@ -22194,7 +22407,7 @@ export declare class SubscriptionsApi extends BaseAPI {
|
|
|
22194
22407
|
* @throws {RequiredError}
|
|
22195
22408
|
* @memberof SubscriptionsApi
|
|
22196
22409
|
*/
|
|
22197
|
-
miscSubscriptionsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSubscriptionsListResponse, any>>;
|
|
22410
|
+
miscSubscriptionsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSubscriptionsListResponse, any, {}>>;
|
|
22198
22411
|
/**
|
|
22199
22412
|
* Adds a new Subscription to the system
|
|
22200
22413
|
* @summary Creates a new Subscription
|
|
@@ -22203,7 +22416,7 @@ export declare class SubscriptionsApi extends BaseAPI {
|
|
|
22203
22416
|
* @throws {RequiredError}
|
|
22204
22417
|
* @memberof SubscriptionsApi
|
|
22205
22418
|
*/
|
|
22206
|
-
miscSubscriptionsPost(subscription: DataTypesCreateSubscriptionRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
22419
|
+
miscSubscriptionsPost(subscription: DataTypesCreateSubscriptionRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
22207
22420
|
/**
|
|
22208
22421
|
* Fetches Subscription by id
|
|
22209
22422
|
* @summary Fetches Subscription by id
|
|
@@ -22212,7 +22425,7 @@ export declare class SubscriptionsApi extends BaseAPI {
|
|
|
22212
22425
|
* @throws {RequiredError}
|
|
22213
22426
|
* @memberof SubscriptionsApi
|
|
22214
22427
|
*/
|
|
22215
|
-
miscSubscriptionsSubscriptionIDGet(subscriptionID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSubscriptionResponse, any>>;
|
|
22428
|
+
miscSubscriptionsSubscriptionIDGet(subscriptionID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSubscriptionResponse, any, {}>>;
|
|
22216
22429
|
}
|
|
22217
22430
|
/**
|
|
22218
22431
|
* UserApi - axios parameter creator
|
|
@@ -22419,7 +22632,7 @@ export declare class UserApi extends BaseAPI {
|
|
|
22419
22632
|
* @throws {RequiredError}
|
|
22420
22633
|
* @memberof UserApi
|
|
22421
22634
|
*/
|
|
22422
|
-
adminUsersActivateUserIdStatusPut(id: number, status: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
22635
|
+
adminUsersActivateUserIdStatusPut(id: number, status: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
22423
22636
|
/**
|
|
22424
22637
|
* Fetches list of all users
|
|
22425
22638
|
* @summary Fetches list of all users
|
|
@@ -22427,7 +22640,7 @@ export declare class UserApi extends BaseAPI {
|
|
|
22427
22640
|
* @throws {RequiredError}
|
|
22428
22641
|
* @memberof UserApi
|
|
22429
22642
|
*/
|
|
22430
|
-
adminUsersGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUsersListResponse, any>>;
|
|
22643
|
+
adminUsersGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUsersListResponse, any, {}>>;
|
|
22431
22644
|
/**
|
|
22432
22645
|
* Deletes a user from the system by ID.
|
|
22433
22646
|
* @summary Delete a user
|
|
@@ -22436,7 +22649,7 @@ export declare class UserApi extends BaseAPI {
|
|
|
22436
22649
|
* @throws {RequiredError}
|
|
22437
22650
|
* @memberof UserApi
|
|
22438
22651
|
*/
|
|
22439
|
-
adminUsersIdDelete(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
22652
|
+
adminUsersIdDelete(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
22440
22653
|
/**
|
|
22441
22654
|
* Fetches user by id
|
|
22442
22655
|
* @summary Fetches user by id
|
|
@@ -22445,7 +22658,7 @@ export declare class UserApi extends BaseAPI {
|
|
|
22445
22658
|
* @throws {RequiredError}
|
|
22446
22659
|
* @memberof UserApi
|
|
22447
22660
|
*/
|
|
22448
|
-
adminUsersIdGet(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUserResponse, any>>;
|
|
22661
|
+
adminUsersIdGet(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUserResponse, any, {}>>;
|
|
22449
22662
|
/**
|
|
22450
22663
|
* Updates user information by ID.
|
|
22451
22664
|
* @summary Update an existing user
|
|
@@ -22455,7 +22668,7 @@ export declare class UserApi extends BaseAPI {
|
|
|
22455
22668
|
* @throws {RequiredError}
|
|
22456
22669
|
* @memberof UserApi
|
|
22457
22670
|
*/
|
|
22458
|
-
adminUsersIdPut(id: number, user: DataTypesCreateUserRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
22671
|
+
adminUsersIdPut(id: number, user: DataTypesCreateUserRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
22459
22672
|
/**
|
|
22460
22673
|
* Adds a new user to the system
|
|
22461
22674
|
* @summary Creates a new user
|
|
@@ -22464,7 +22677,7 @@ export declare class UserApi extends BaseAPI {
|
|
|
22464
22677
|
* @throws {RequiredError}
|
|
22465
22678
|
* @memberof UserApi
|
|
22466
22679
|
*/
|
|
22467
|
-
adminUsersPost(user: DataTypesCreateUserRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
22680
|
+
adminUsersPost(user: DataTypesCreateUserRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
22468
22681
|
/**
|
|
22469
22682
|
* Resets the password for a specified user by ID and logs out the user.
|
|
22470
22683
|
* @summary Reset a user\'s password
|
|
@@ -22473,5 +22686,5 @@ export declare class UserApi extends BaseAPI {
|
|
|
22473
22686
|
* @throws {RequiredError}
|
|
22474
22687
|
* @memberof UserApi
|
|
22475
22688
|
*/
|
|
22476
|
-
adminUsersResetpasswordIdPut(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
22689
|
+
adminUsersResetpasswordIdPut(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
22477
22690
|
}
|