@seekora-ai/admin-api 1.0.47 → 1.0.48
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 +151 -24
- package/dist/api.d.ts +347 -240
- package/dist/api.js +46 -11
- package/dist/esm/api.d.ts +347 -240
- package/dist/esm/api.js +46 -11
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.0.48.tgz +0 -0
- package/seekora-ai-admin-api-1.0.47.tgz +0 -0
package/dist/api.d.ts
CHANGED
|
@@ -2485,6 +2485,49 @@ export interface AnalyticsKPIPointExtended {
|
|
|
2485
2485
|
*/
|
|
2486
2486
|
'unique_users'?: number;
|
|
2487
2487
|
}
|
|
2488
|
+
/**
|
|
2489
|
+
*
|
|
2490
|
+
* @export
|
|
2491
|
+
* @interface AnalyticsPaginationMeta
|
|
2492
|
+
*/
|
|
2493
|
+
export interface AnalyticsPaginationMeta {
|
|
2494
|
+
/**
|
|
2495
|
+
*
|
|
2496
|
+
* @type {boolean}
|
|
2497
|
+
* @memberof AnalyticsPaginationMeta
|
|
2498
|
+
*/
|
|
2499
|
+
'has_next'?: boolean;
|
|
2500
|
+
/**
|
|
2501
|
+
*
|
|
2502
|
+
* @type {boolean}
|
|
2503
|
+
* @memberof AnalyticsPaginationMeta
|
|
2504
|
+
*/
|
|
2505
|
+
'has_previous'?: boolean;
|
|
2506
|
+
/**
|
|
2507
|
+
*
|
|
2508
|
+
* @type {number}
|
|
2509
|
+
* @memberof AnalyticsPaginationMeta
|
|
2510
|
+
*/
|
|
2511
|
+
'page'?: number;
|
|
2512
|
+
/**
|
|
2513
|
+
*
|
|
2514
|
+
* @type {number}
|
|
2515
|
+
* @memberof AnalyticsPaginationMeta
|
|
2516
|
+
*/
|
|
2517
|
+
'page_size'?: number;
|
|
2518
|
+
/**
|
|
2519
|
+
*
|
|
2520
|
+
* @type {number}
|
|
2521
|
+
* @memberof AnalyticsPaginationMeta
|
|
2522
|
+
*/
|
|
2523
|
+
'total_items'?: number;
|
|
2524
|
+
/**
|
|
2525
|
+
*
|
|
2526
|
+
* @type {number}
|
|
2527
|
+
* @memberof AnalyticsPaginationMeta
|
|
2528
|
+
*/
|
|
2529
|
+
'total_pages'?: number;
|
|
2530
|
+
}
|
|
2488
2531
|
/**
|
|
2489
2532
|
*
|
|
2490
2533
|
* @export
|
|
@@ -2805,16 +2848,16 @@ export interface AnalyticsQueryInsights {
|
|
|
2805
2848
|
'no_results_rate'?: number;
|
|
2806
2849
|
/**
|
|
2807
2850
|
*
|
|
2808
|
-
* @type {
|
|
2851
|
+
* @type {AnalyticsQueryPopularFiltersSection}
|
|
2809
2852
|
* @memberof AnalyticsQueryInsights
|
|
2810
2853
|
*/
|
|
2811
|
-
'popular_filters'?:
|
|
2854
|
+
'popular_filters'?: AnalyticsQueryPopularFiltersSection;
|
|
2812
2855
|
/**
|
|
2813
2856
|
*
|
|
2814
|
-
* @type {
|
|
2857
|
+
* @type {AnalyticsQueryPopularResultsSection}
|
|
2815
2858
|
* @memberof AnalyticsQueryInsights
|
|
2816
2859
|
*/
|
|
2817
|
-
'popular_results'?:
|
|
2860
|
+
'popular_results'?: AnalyticsQueryPopularResultsSection;
|
|
2818
2861
|
/**
|
|
2819
2862
|
*
|
|
2820
2863
|
* @type {string}
|
|
@@ -2965,51 +3008,95 @@ export interface AnalyticsQueryPopularFilter {
|
|
|
2965
3008
|
/**
|
|
2966
3009
|
*
|
|
2967
3010
|
* @export
|
|
2968
|
-
* @interface
|
|
3011
|
+
* @interface AnalyticsQueryPopularFiltersSection
|
|
2969
3012
|
*/
|
|
2970
|
-
export interface
|
|
3013
|
+
export interface AnalyticsQueryPopularFiltersSection {
|
|
3014
|
+
/**
|
|
3015
|
+
*
|
|
3016
|
+
* @type {Array<AnalyticsQueryPopularFilter>}
|
|
3017
|
+
* @memberof AnalyticsQueryPopularFiltersSection
|
|
3018
|
+
*/
|
|
3019
|
+
'items'?: Array<AnalyticsQueryPopularFilter>;
|
|
3020
|
+
/**
|
|
3021
|
+
*
|
|
3022
|
+
* @type {AnalyticsPaginationMeta}
|
|
3023
|
+
* @memberof AnalyticsQueryPopularFiltersSection
|
|
3024
|
+
*/
|
|
3025
|
+
'meta'?: AnalyticsPaginationMeta;
|
|
3026
|
+
}
|
|
3027
|
+
/**
|
|
3028
|
+
*
|
|
3029
|
+
* @export
|
|
3030
|
+
* @interface AnalyticsQueryPopularResultWithWidget
|
|
3031
|
+
*/
|
|
3032
|
+
export interface AnalyticsQueryPopularResultWithWidget {
|
|
2971
3033
|
/**
|
|
2972
3034
|
*
|
|
2973
3035
|
* @type {number}
|
|
2974
|
-
* @memberof
|
|
3036
|
+
* @memberof AnalyticsQueryPopularResultWithWidget
|
|
2975
3037
|
*/
|
|
2976
3038
|
'avg_position'?: number;
|
|
2977
3039
|
/**
|
|
2978
3040
|
*
|
|
2979
3041
|
* @type {number}
|
|
2980
|
-
* @memberof
|
|
3042
|
+
* @memberof AnalyticsQueryPopularResultWithWidget
|
|
2981
3043
|
*/
|
|
2982
3044
|
'click_through_rate'?: number;
|
|
2983
3045
|
/**
|
|
2984
3046
|
*
|
|
2985
3047
|
* @type {number}
|
|
2986
|
-
* @memberof
|
|
3048
|
+
* @memberof AnalyticsQueryPopularResultWithWidget
|
|
2987
3049
|
*/
|
|
2988
3050
|
'clicks'?: number;
|
|
2989
3051
|
/**
|
|
2990
3052
|
*
|
|
2991
3053
|
* @type {number}
|
|
2992
|
-
* @memberof
|
|
3054
|
+
* @memberof AnalyticsQueryPopularResultWithWidget
|
|
2993
3055
|
*/
|
|
2994
3056
|
'impressions'?: number;
|
|
2995
3057
|
/**
|
|
2996
3058
|
*
|
|
2997
3059
|
* @type {string}
|
|
2998
|
-
* @memberof
|
|
3060
|
+
* @memberof AnalyticsQueryPopularResultWithWidget
|
|
2999
3061
|
*/
|
|
3000
3062
|
'item_id'?: string;
|
|
3001
3063
|
/**
|
|
3002
3064
|
*
|
|
3003
3065
|
* @type {string}
|
|
3004
|
-
* @memberof
|
|
3066
|
+
* @memberof AnalyticsQueryPopularResultWithWidget
|
|
3005
3067
|
*/
|
|
3006
3068
|
'item_name'?: string;
|
|
3007
3069
|
/**
|
|
3008
3070
|
* percentage of total impressions for this query
|
|
3009
3071
|
* @type {number}
|
|
3010
|
-
* @memberof
|
|
3072
|
+
* @memberof AnalyticsQueryPopularResultWithWidget
|
|
3011
3073
|
*/
|
|
3012
3074
|
'share'?: number;
|
|
3075
|
+
/**
|
|
3076
|
+
* Widget display fields
|
|
3077
|
+
* @type {AnalyticsWidgetData}
|
|
3078
|
+
* @memberof AnalyticsQueryPopularResultWithWidget
|
|
3079
|
+
*/
|
|
3080
|
+
'widget'?: AnalyticsWidgetData;
|
|
3081
|
+
}
|
|
3082
|
+
/**
|
|
3083
|
+
*
|
|
3084
|
+
* @export
|
|
3085
|
+
* @interface AnalyticsQueryPopularResultsSection
|
|
3086
|
+
*/
|
|
3087
|
+
export interface AnalyticsQueryPopularResultsSection {
|
|
3088
|
+
/**
|
|
3089
|
+
*
|
|
3090
|
+
* @type {Array<AnalyticsQueryPopularResultWithWidget>}
|
|
3091
|
+
* @memberof AnalyticsQueryPopularResultsSection
|
|
3092
|
+
*/
|
|
3093
|
+
'items'?: Array<AnalyticsQueryPopularResultWithWidget>;
|
|
3094
|
+
/**
|
|
3095
|
+
*
|
|
3096
|
+
* @type {AnalyticsPaginationMeta}
|
|
3097
|
+
* @memberof AnalyticsQueryPopularResultsSection
|
|
3098
|
+
*/
|
|
3099
|
+
'meta'?: AnalyticsPaginationMeta;
|
|
3013
3100
|
}
|
|
3014
3101
|
/**
|
|
3015
3102
|
*
|
|
@@ -12552,7 +12639,7 @@ export declare class APICallsApi extends BaseAPI {
|
|
|
12552
12639
|
* @throws {RequiredError}
|
|
12553
12640
|
* @memberof APICallsApi
|
|
12554
12641
|
*/
|
|
12555
|
-
adminAPICallsCallIDDelete(callID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
12642
|
+
adminAPICallsCallIDDelete(callID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
12556
12643
|
/**
|
|
12557
12644
|
* Fetches APICall detail
|
|
12558
12645
|
* @summary Fetches APICall detail
|
|
@@ -12561,7 +12648,7 @@ export declare class APICallsApi extends BaseAPI {
|
|
|
12561
12648
|
* @throws {RequiredError}
|
|
12562
12649
|
* @memberof APICallsApi
|
|
12563
12650
|
*/
|
|
12564
|
-
adminAPICallsCallIDGet(callID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesAPICallResponse, any>>;
|
|
12651
|
+
adminAPICallsCallIDGet(callID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesAPICallResponse, any, {}>>;
|
|
12565
12652
|
/**
|
|
12566
12653
|
* UpdateAPICall information by ID.
|
|
12567
12654
|
* @summary UpdateAPICall an existing apicall details
|
|
@@ -12571,7 +12658,7 @@ export declare class APICallsApi extends BaseAPI {
|
|
|
12571
12658
|
* @throws {RequiredError}
|
|
12572
12659
|
* @memberof APICallsApi
|
|
12573
12660
|
*/
|
|
12574
|
-
adminAPICallsCallIDPut(callID: number, aPICall: DataTypesAPICallRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
12661
|
+
adminAPICallsCallIDPut(callID: number, aPICall: DataTypesAPICallRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
12575
12662
|
/**
|
|
12576
12663
|
* Fetches list of APICalls
|
|
12577
12664
|
* @summary Fetches list of APICalls
|
|
@@ -12579,7 +12666,7 @@ export declare class APICallsApi extends BaseAPI {
|
|
|
12579
12666
|
* @throws {RequiredError}
|
|
12580
12667
|
* @memberof APICallsApi
|
|
12581
12668
|
*/
|
|
12582
|
-
adminAPICallsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesAPICallsListResponse, any>>;
|
|
12669
|
+
adminAPICallsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesAPICallsListResponse, any, {}>>;
|
|
12583
12670
|
/**
|
|
12584
12671
|
* Creates a new apicall
|
|
12585
12672
|
* @summary Creates a new apicall
|
|
@@ -12588,7 +12675,7 @@ export declare class APICallsApi extends BaseAPI {
|
|
|
12588
12675
|
* @throws {RequiredError}
|
|
12589
12676
|
* @memberof APICallsApi
|
|
12590
12677
|
*/
|
|
12591
|
-
adminAPICallsPost(aPICall: DataTypesAPICallRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
12678
|
+
adminAPICallsPost(aPICall: DataTypesAPICallRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
12592
12679
|
}
|
|
12593
12680
|
/**
|
|
12594
12681
|
* AccountSettingsApi - axios parameter creator
|
|
@@ -12781,7 +12868,7 @@ export declare class AccountSettingsApi extends BaseAPI {
|
|
|
12781
12868
|
* @throws {RequiredError}
|
|
12782
12869
|
* @memberof AccountSettingsApi
|
|
12783
12870
|
*/
|
|
12784
|
-
accountSettingsOrganizationGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOrganizationResponse, any>>;
|
|
12871
|
+
accountSettingsOrganizationGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOrganizationResponse, any, {}>>;
|
|
12785
12872
|
/**
|
|
12786
12873
|
* Removes the logo of the currently logged-in user\'s organization
|
|
12787
12874
|
* @summary Delete user\'s organization logo
|
|
@@ -12789,7 +12876,7 @@ export declare class AccountSettingsApi extends BaseAPI {
|
|
|
12789
12876
|
* @throws {RequiredError}
|
|
12790
12877
|
* @memberof AccountSettingsApi
|
|
12791
12878
|
*/
|
|
12792
|
-
accountSettingsOrganizationLogoDelete(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOrganizationResponse, any>>;
|
|
12879
|
+
accountSettingsOrganizationLogoDelete(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOrganizationResponse, any, {}>>;
|
|
12793
12880
|
/**
|
|
12794
12881
|
* Updates the logo of the currently logged-in user\'s organization
|
|
12795
12882
|
* @summary Update user\'s organization logo
|
|
@@ -12798,7 +12885,7 @@ export declare class AccountSettingsApi extends BaseAPI {
|
|
|
12798
12885
|
* @throws {RequiredError}
|
|
12799
12886
|
* @memberof AccountSettingsApi
|
|
12800
12887
|
*/
|
|
12801
|
-
accountSettingsOrganizationLogoPut(logo: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOrganizationResponse, any>>;
|
|
12888
|
+
accountSettingsOrganizationLogoPut(logo: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOrganizationResponse, any, {}>>;
|
|
12802
12889
|
/**
|
|
12803
12890
|
* Updates the organization details of the currently logged-in user
|
|
12804
12891
|
* @summary Update user\'s organization
|
|
@@ -12807,7 +12894,7 @@ export declare class AccountSettingsApi extends BaseAPI {
|
|
|
12807
12894
|
* @throws {RequiredError}
|
|
12808
12895
|
* @memberof AccountSettingsApi
|
|
12809
12896
|
*/
|
|
12810
|
-
accountSettingsOrganizationPut(organization: DataTypesUpdateOrganizationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOrganizationResponse, any>>;
|
|
12897
|
+
accountSettingsOrganizationPut(organization: DataTypesUpdateOrganizationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOrganizationResponse, any, {}>>;
|
|
12811
12898
|
/**
|
|
12812
12899
|
* Updates the password of the currently logged-in user
|
|
12813
12900
|
* @summary Update user password
|
|
@@ -12816,7 +12903,7 @@ export declare class AccountSettingsApi extends BaseAPI {
|
|
|
12816
12903
|
* @throws {RequiredError}
|
|
12817
12904
|
* @memberof AccountSettingsApi
|
|
12818
12905
|
*/
|
|
12819
|
-
accountSettingsPasswordPut(password: DataTypesUpdatePasswordRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
12906
|
+
accountSettingsPasswordPut(password: DataTypesUpdatePasswordRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
12820
12907
|
/**
|
|
12821
12908
|
* Retrieves the profile of the currently logged-in user
|
|
12822
12909
|
* @summary Retrieve user profile
|
|
@@ -12824,7 +12911,7 @@ export declare class AccountSettingsApi extends BaseAPI {
|
|
|
12824
12911
|
* @throws {RequiredError}
|
|
12825
12912
|
* @memberof AccountSettingsApi
|
|
12826
12913
|
*/
|
|
12827
|
-
accountSettingsProfileGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesProfileResponseWrapper, any>>;
|
|
12914
|
+
accountSettingsProfileGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesProfileResponseWrapper, any, {}>>;
|
|
12828
12915
|
/**
|
|
12829
12916
|
* Updates the profile of the currently logged-in user
|
|
12830
12917
|
* @summary Update user profile
|
|
@@ -12833,7 +12920,7 @@ export declare class AccountSettingsApi extends BaseAPI {
|
|
|
12833
12920
|
* @throws {RequiredError}
|
|
12834
12921
|
* @memberof AccountSettingsApi
|
|
12835
12922
|
*/
|
|
12836
|
-
accountSettingsProfilePut(profile: DataTypesUpdateProfileRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesProfileResponseWrapper, any>>;
|
|
12923
|
+
accountSettingsProfilePut(profile: DataTypesUpdateProfileRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesProfileResponseWrapper, any, {}>>;
|
|
12837
12924
|
}
|
|
12838
12925
|
/**
|
|
12839
12926
|
* AnalyticsApi - axios parameter creator
|
|
@@ -13104,16 +13191,21 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
13104
13191
|
*/
|
|
13105
13192
|
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
13193
|
/**
|
|
13107
|
-
* Retrieve comprehensive analytics for a specific search query including popular results, filters, click position histogram, and performance metrics
|
|
13194
|
+
* Retrieve comprehensive analytics for a specific search query including popular results, filters, click position histogram, and performance metrics with independent pagination for popular results and filters
|
|
13108
13195
|
* @summary Get Query Insights
|
|
13109
13196
|
* @param {string} xStoreID Store ID
|
|
13110
13197
|
* @param {string} query Search query to analyze
|
|
13111
13198
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
13112
13199
|
* @param {string} [endTime] End time in RFC3339 format
|
|
13200
|
+
* @param {number} [resultsPage] Page number for popular results pagination
|
|
13201
|
+
* @param {number} [resultsPageSize] Number of results per page for popular results
|
|
13202
|
+
* @param {number} [filtersPage] Page number for popular filters pagination
|
|
13203
|
+
* @param {number} [filtersPageSize] Number of filters per page for popular filters
|
|
13204
|
+
* @param {boolean} [includeWidget] Whether to include widget display fields for popular results
|
|
13113
13205
|
* @param {*} [options] Override http request option.
|
|
13114
13206
|
* @throws {RequiredError}
|
|
13115
13207
|
*/
|
|
13116
|
-
adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet: (xStoreID: string, query: string, startTime?: string, endTime?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13208
|
+
adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet: (xStoreID: string, query: string, startTime?: string, endTime?: string, resultsPage?: number, resultsPageSize?: number, filtersPage?: number, filtersPageSize?: number, includeWidget?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13117
13209
|
/**
|
|
13118
13210
|
* 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
13211
|
* @summary Get Top Results Analytics
|
|
@@ -13456,16 +13548,21 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
|
|
|
13456
13548
|
*/
|
|
13457
13549
|
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
13550
|
/**
|
|
13459
|
-
* Retrieve comprehensive analytics for a specific search query including popular results, filters, click position histogram, and performance metrics
|
|
13551
|
+
* Retrieve comprehensive analytics for a specific search query including popular results, filters, click position histogram, and performance metrics with independent pagination for popular results and filters
|
|
13460
13552
|
* @summary Get Query Insights
|
|
13461
13553
|
* @param {string} xStoreID Store ID
|
|
13462
13554
|
* @param {string} query Search query to analyze
|
|
13463
13555
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
13464
13556
|
* @param {string} [endTime] End time in RFC3339 format
|
|
13557
|
+
* @param {number} [resultsPage] Page number for popular results pagination
|
|
13558
|
+
* @param {number} [resultsPageSize] Number of results per page for popular results
|
|
13559
|
+
* @param {number} [filtersPage] Page number for popular filters pagination
|
|
13560
|
+
* @param {number} [filtersPageSize] Number of filters per page for popular filters
|
|
13561
|
+
* @param {boolean} [includeWidget] Whether to include widget display fields for popular results
|
|
13465
13562
|
* @param {*} [options] Override http request option.
|
|
13466
13563
|
* @throws {RequiredError}
|
|
13467
13564
|
*/
|
|
13468
|
-
adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID: string, query: string, startTime?: string, endTime?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGet200Response>>;
|
|
13565
|
+
adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID: string, query: string, startTime?: string, endTime?: string, resultsPage?: number, resultsPageSize?: number, filtersPage?: number, filtersPageSize?: number, includeWidget?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGet200Response>>;
|
|
13469
13566
|
/**
|
|
13470
13567
|
* 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
13568
|
* @summary Get Top Results Analytics
|
|
@@ -13808,16 +13905,21 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
|
|
|
13808
13905
|
*/
|
|
13809
13906
|
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
13907
|
/**
|
|
13811
|
-
* Retrieve comprehensive analytics for a specific search query including popular results, filters, click position histogram, and performance metrics
|
|
13908
|
+
* Retrieve comprehensive analytics for a specific search query including popular results, filters, click position histogram, and performance metrics with independent pagination for popular results and filters
|
|
13812
13909
|
* @summary Get Query Insights
|
|
13813
13910
|
* @param {string} xStoreID Store ID
|
|
13814
13911
|
* @param {string} query Search query to analyze
|
|
13815
13912
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
13816
13913
|
* @param {string} [endTime] End time in RFC3339 format
|
|
13914
|
+
* @param {number} [resultsPage] Page number for popular results pagination
|
|
13915
|
+
* @param {number} [resultsPageSize] Number of results per page for popular results
|
|
13916
|
+
* @param {number} [filtersPage] Page number for popular filters pagination
|
|
13917
|
+
* @param {number} [filtersPageSize] Number of filters per page for popular filters
|
|
13918
|
+
* @param {boolean} [includeWidget] Whether to include widget display fields for popular results
|
|
13817
13919
|
* @param {*} [options] Override http request option.
|
|
13818
13920
|
* @throws {RequiredError}
|
|
13819
13921
|
*/
|
|
13820
|
-
adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID: string, query: string, startTime?: string, endTime?: string, options?: RawAxiosRequestConfig): AxiosPromise<AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGet200Response>;
|
|
13922
|
+
adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID: string, query: string, startTime?: string, endTime?: string, resultsPage?: number, resultsPageSize?: number, filtersPage?: number, filtersPageSize?: number, includeWidget?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGet200Response>;
|
|
13821
13923
|
/**
|
|
13822
13924
|
* 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
13925
|
* @summary Get Top Results Analytics
|
|
@@ -13906,7 +14008,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
13906
14008
|
* @throws {RequiredError}
|
|
13907
14009
|
* @memberof AnalyticsApi
|
|
13908
14010
|
*/
|
|
13909
|
-
adminAnalyticsStoreXStoreIDConfigGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AnalyticsAnalyticsAPIResponse, any>>;
|
|
14011
|
+
adminAnalyticsStoreXStoreIDConfigGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AnalyticsAnalyticsAPIResponse, any, {}>>;
|
|
13910
14012
|
/**
|
|
13911
14013
|
* Execute a custom ClickHouse query for advanced analytics with parameterized queries
|
|
13912
14014
|
* @summary Execute Custom Analytics Query
|
|
@@ -13916,7 +14018,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
13916
14018
|
* @throws {RequiredError}
|
|
13917
14019
|
* @memberof AnalyticsApi
|
|
13918
14020
|
*/
|
|
13919
|
-
adminAnalyticsStoreXStoreIDCustomPost(xStoreID: string, body: AnalyticsCustomQueryRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDCustomPost200Response, any>>;
|
|
14021
|
+
adminAnalyticsStoreXStoreIDCustomPost(xStoreID: string, body: AnalyticsCustomQueryRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDCustomPost200Response, any, {}>>;
|
|
13920
14022
|
/**
|
|
13921
14023
|
* Retrieve popular filter combinations and their effectiveness metrics
|
|
13922
14024
|
* @summary Get Filter Combinations
|
|
@@ -13935,7 +14037,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
13935
14037
|
* @throws {RequiredError}
|
|
13936
14038
|
* @memberof AnalyticsApi
|
|
13937
14039
|
*/
|
|
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>>;
|
|
14040
|
+
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
14041
|
/**
|
|
13940
14042
|
* Analyze filter effectiveness by comparing search results with and without filters
|
|
13941
14043
|
* @summary Get Filter Effectiveness
|
|
@@ -13953,7 +14055,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
13953
14055
|
* @throws {RequiredError}
|
|
13954
14056
|
* @memberof AnalyticsApi
|
|
13955
14057
|
*/
|
|
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>>;
|
|
14058
|
+
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
14059
|
/**
|
|
13958
14060
|
* Retrieve comprehensive filter usage statistics including popular filters, combinations, and effectiveness metrics
|
|
13959
14061
|
* @summary Get Filter Analytics
|
|
@@ -13975,7 +14077,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
13975
14077
|
* @throws {RequiredError}
|
|
13976
14078
|
* @memberof AnalyticsApi
|
|
13977
14079
|
*/
|
|
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>>;
|
|
14080
|
+
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
14081
|
/**
|
|
13980
14082
|
* Retrieve filter usage trends over time with growth analysis and pattern detection
|
|
13981
14083
|
* @summary Get Filter Trends
|
|
@@ -13996,7 +14098,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
13996
14098
|
* @throws {RequiredError}
|
|
13997
14099
|
* @memberof AnalyticsApi
|
|
13998
14100
|
*/
|
|
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>>;
|
|
14101
|
+
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
14102
|
/**
|
|
14001
14103
|
* Retrieve geographic analytics data showing search behavior by country, region, and city with analytics tags filtering support and comparison mode
|
|
14002
14104
|
* @summary Get Geographic Analytics
|
|
@@ -14028,7 +14130,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
14028
14130
|
* @throws {RequiredError}
|
|
14029
14131
|
* @memberof AnalyticsApi
|
|
14030
14132
|
*/
|
|
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>>;
|
|
14133
|
+
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
14134
|
/**
|
|
14033
14135
|
* Check the health status of analytics service and ClickHouse connection
|
|
14034
14136
|
* @summary Analytics Health Check
|
|
@@ -14037,7 +14139,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
14037
14139
|
* @throws {RequiredError}
|
|
14038
14140
|
* @memberof AnalyticsApi
|
|
14039
14141
|
*/
|
|
14040
|
-
adminAnalyticsStoreXStoreIDHealthGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AnalyticsAnalyticsAPIResponse, any>>;
|
|
14142
|
+
adminAnalyticsStoreXStoreIDHealthGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AnalyticsAnalyticsAPIResponse, any, {}>>;
|
|
14041
14143
|
/**
|
|
14042
14144
|
* 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
14145
|
* @summary Get KPI Analytics
|
|
@@ -14066,7 +14168,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
14066
14168
|
* @throws {RequiredError}
|
|
14067
14169
|
* @memberof AnalyticsApi
|
|
14068
14170
|
*/
|
|
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>>;
|
|
14171
|
+
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
14172
|
/**
|
|
14071
14173
|
* Retrieve real-time KPI metrics for the last hour with minute-level granularity
|
|
14072
14174
|
* @summary Get Realtime KPI Analytics
|
|
@@ -14075,7 +14177,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
14075
14177
|
* @throws {RequiredError}
|
|
14076
14178
|
* @memberof AnalyticsApi
|
|
14077
14179
|
*/
|
|
14078
|
-
adminAnalyticsStoreXStoreIDKpiRealtimeGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AnalyticsAnalyticsAPIResponse, any>>;
|
|
14180
|
+
adminAnalyticsStoreXStoreIDKpiRealtimeGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AnalyticsAnalyticsAPIResponse, any, {}>>;
|
|
14079
14181
|
/**
|
|
14080
14182
|
* 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
14183
|
* @summary Get Query Analytics
|
|
@@ -14109,7 +14211,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
14109
14211
|
* @throws {RequiredError}
|
|
14110
14212
|
* @memberof AnalyticsApi
|
|
14111
14213
|
*/
|
|
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>>;
|
|
14214
|
+
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
14215
|
/**
|
|
14114
14216
|
* Retrieve queries that received searches but no user clicks, indicating poor result relevance with analytics tags filtering and comparison mode support
|
|
14115
14217
|
* @summary Get No-Clicks Queries
|
|
@@ -14141,7 +14243,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
14141
14243
|
* @throws {RequiredError}
|
|
14142
14244
|
* @memberof AnalyticsApi
|
|
14143
14245
|
*/
|
|
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>>;
|
|
14246
|
+
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
14247
|
/**
|
|
14146
14248
|
* Retrieve queries that returned no search results, useful for identifying content gaps with analytics tags filtering and comparison mode support
|
|
14147
14249
|
* @summary Get No-Results Queries
|
|
@@ -14173,19 +14275,24 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
14173
14275
|
* @throws {RequiredError}
|
|
14174
14276
|
* @memberof AnalyticsApi
|
|
14175
14277
|
*/
|
|
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>>;
|
|
14278
|
+
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
14279
|
/**
|
|
14178
|
-
* Retrieve comprehensive analytics for a specific search query including popular results, filters, click position histogram, and performance metrics
|
|
14280
|
+
* Retrieve comprehensive analytics for a specific search query including popular results, filters, click position histogram, and performance metrics with independent pagination for popular results and filters
|
|
14179
14281
|
* @summary Get Query Insights
|
|
14180
14282
|
* @param {string} xStoreID Store ID
|
|
14181
14283
|
* @param {string} query Search query to analyze
|
|
14182
14284
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
14183
14285
|
* @param {string} [endTime] End time in RFC3339 format
|
|
14286
|
+
* @param {number} [resultsPage] Page number for popular results pagination
|
|
14287
|
+
* @param {number} [resultsPageSize] Number of results per page for popular results
|
|
14288
|
+
* @param {number} [filtersPage] Page number for popular filters pagination
|
|
14289
|
+
* @param {number} [filtersPageSize] Number of filters per page for popular filters
|
|
14290
|
+
* @param {boolean} [includeWidget] Whether to include widget display fields for popular results
|
|
14184
14291
|
* @param {*} [options] Override http request option.
|
|
14185
14292
|
* @throws {RequiredError}
|
|
14186
14293
|
* @memberof AnalyticsApi
|
|
14187
14294
|
*/
|
|
14188
|
-
adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID: string, query: string, startTime?: string, endTime?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGet200Response, any>>;
|
|
14295
|
+
adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID: string, query: string, startTime?: string, endTime?: string, resultsPage?: number, resultsPageSize?: number, filtersPage?: number, filtersPageSize?: number, includeWidget?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGet200Response, any, {}>>;
|
|
14189
14296
|
/**
|
|
14190
14297
|
* 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
14298
|
* @summary Get Top Results Analytics
|
|
@@ -14220,7 +14327,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
14220
14327
|
* @throws {RequiredError}
|
|
14221
14328
|
* @memberof AnalyticsApi
|
|
14222
14329
|
*/
|
|
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>>;
|
|
14330
|
+
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
14331
|
/**
|
|
14225
14332
|
* Retrieve analytics tags usage data and filtering capabilities
|
|
14226
14333
|
* @summary Get Analytics Tags
|
|
@@ -14242,7 +14349,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
14242
14349
|
* @throws {RequiredError}
|
|
14243
14350
|
* @memberof AnalyticsApi
|
|
14244
14351
|
*/
|
|
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>>;
|
|
14352
|
+
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
14353
|
/**
|
|
14247
14354
|
* Retrieve high-level summary of analytics tags usage and statistics
|
|
14248
14355
|
* @summary Get Analytics Tags Summary
|
|
@@ -14260,7 +14367,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
14260
14367
|
* @throws {RequiredError}
|
|
14261
14368
|
* @memberof AnalyticsApi
|
|
14262
14369
|
*/
|
|
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>>;
|
|
14370
|
+
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
14371
|
}
|
|
14265
14372
|
/**
|
|
14266
14373
|
* @export
|
|
@@ -14802,7 +14909,7 @@ export declare class AnalyticsEventsApi extends BaseAPI {
|
|
|
14802
14909
|
* @throws {RequiredError}
|
|
14803
14910
|
* @memberof AnalyticsEventsApi
|
|
14804
14911
|
*/
|
|
14805
|
-
apiAnalyticsBatchPost(xStoreid: string, xStoresecret: string, body: ApiAnalyticsBatchPostRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
14912
|
+
apiAnalyticsBatchPost(xStoreid: string, xStoresecret: string, body: ApiAnalyticsBatchPostRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
14806
14913
|
/**
|
|
14807
14914
|
* Retrieve analytics configuration including supported event types, batch limits, and funnel stages for client integration
|
|
14808
14915
|
* @summary Get Analytics Configuration
|
|
@@ -14812,7 +14919,7 @@ export declare class AnalyticsEventsApi extends BaseAPI {
|
|
|
14812
14919
|
* @throws {RequiredError}
|
|
14813
14920
|
* @memberof AnalyticsEventsApi
|
|
14814
14921
|
*/
|
|
14815
|
-
apiAnalyticsConfigGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
14922
|
+
apiAnalyticsConfigGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
14816
14923
|
/**
|
|
14817
14924
|
* Submit a single analytics event for tracking user interactions, search behavior, and conversions
|
|
14818
14925
|
* @summary Submit Analytics Event
|
|
@@ -14823,7 +14930,7 @@ export declare class AnalyticsEventsApi extends BaseAPI {
|
|
|
14823
14930
|
* @throws {RequiredError}
|
|
14824
14931
|
* @memberof AnalyticsEventsApi
|
|
14825
14932
|
*/
|
|
14826
|
-
apiAnalyticsEventPost(xStoreid: string, xStoresecret: string, body: DataTypesEventPayload, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
14933
|
+
apiAnalyticsEventPost(xStoreid: string, xStoresecret: string, body: DataTypesEventPayload, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
14827
14934
|
/**
|
|
14828
14935
|
* Retrieve the complete event schema including required and optional fields, data types, and validation rules
|
|
14829
14936
|
* @summary Get Event Schema
|
|
@@ -14833,7 +14940,7 @@ export declare class AnalyticsEventsApi extends BaseAPI {
|
|
|
14833
14940
|
* @throws {RequiredError}
|
|
14834
14941
|
* @memberof AnalyticsEventsApi
|
|
14835
14942
|
*/
|
|
14836
|
-
apiAnalyticsSchemaGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
14943
|
+
apiAnalyticsSchemaGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
14837
14944
|
/**
|
|
14838
14945
|
* Validate an analytics event payload without actually processing or storing it
|
|
14839
14946
|
* @summary Validate Analytics Event
|
|
@@ -14844,7 +14951,7 @@ export declare class AnalyticsEventsApi extends BaseAPI {
|
|
|
14844
14951
|
* @throws {RequiredError}
|
|
14845
14952
|
* @memberof AnalyticsEventsApi
|
|
14846
14953
|
*/
|
|
14847
|
-
apiAnalyticsValidatePost(xStoreid: string, xStoresecret: string, body: DataTypesEventPayload, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
14954
|
+
apiAnalyticsValidatePost(xStoreid: string, xStoresecret: string, body: DataTypesEventPayload, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
14848
14955
|
}
|
|
14849
14956
|
/**
|
|
14850
14957
|
* ArticlesApi - axios parameter creator
|
|
@@ -14999,7 +15106,7 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
14999
15106
|
* @throws {RequiredError}
|
|
15000
15107
|
* @memberof ArticlesApi
|
|
15001
15108
|
*/
|
|
15002
|
-
adminArticlesArticleIDDelete(articleID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
15109
|
+
adminArticlesArticleIDDelete(articleID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
15003
15110
|
/**
|
|
15004
15111
|
* Fetches article by id
|
|
15005
15112
|
* @summary Fetches article by id
|
|
@@ -15008,7 +15115,7 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
15008
15115
|
* @throws {RequiredError}
|
|
15009
15116
|
* @memberof ArticlesApi
|
|
15010
15117
|
*/
|
|
15011
|
-
adminArticlesArticleIDGet(articleID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMgArticleResponse, any>>;
|
|
15118
|
+
adminArticlesArticleIDGet(articleID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMgArticleResponse, any, {}>>;
|
|
15012
15119
|
/**
|
|
15013
15120
|
* Update article information by ID.
|
|
15014
15121
|
* @summary Update an existing Article
|
|
@@ -15018,7 +15125,7 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
15018
15125
|
* @throws {RequiredError}
|
|
15019
15126
|
* @memberof ArticlesApi
|
|
15020
15127
|
*/
|
|
15021
|
-
adminArticlesArticleIDPut(articleID: number, createArticleRequestDto: MgDocumentTypesCreateArticleRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
15128
|
+
adminArticlesArticleIDPut(articleID: number, createArticleRequestDto: MgDocumentTypesCreateArticleRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
15022
15129
|
/**
|
|
15023
15130
|
* Fetches list of all Articles
|
|
15024
15131
|
* @summary Fetches list of all Articles
|
|
@@ -15026,7 +15133,7 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
15026
15133
|
* @throws {RequiredError}
|
|
15027
15134
|
* @memberof ArticlesApi
|
|
15028
15135
|
*/
|
|
15029
|
-
adminArticlesGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMgArticlesListResponse, any>>;
|
|
15136
|
+
adminArticlesGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMgArticlesListResponse, any, {}>>;
|
|
15030
15137
|
/**
|
|
15031
15138
|
* Adds a new article to the system
|
|
15032
15139
|
* @summary Creates a new article
|
|
@@ -15035,7 +15142,7 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
15035
15142
|
* @throws {RequiredError}
|
|
15036
15143
|
* @memberof ArticlesApi
|
|
15037
15144
|
*/
|
|
15038
|
-
adminArticlesPost(plan: MgDocumentTypesCreateArticleRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
15145
|
+
adminArticlesPost(plan: MgDocumentTypesCreateArticleRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
15039
15146
|
}
|
|
15040
15147
|
/**
|
|
15041
15148
|
* AuthApi - axios parameter creator
|
|
@@ -15136,7 +15243,7 @@ export declare class AuthApi extends BaseAPI {
|
|
|
15136
15243
|
* @throws {RequiredError}
|
|
15137
15244
|
* @memberof AuthApi
|
|
15138
15245
|
*/
|
|
15139
|
-
authLoginPost(login: DataTypesLoginRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesLoginResponseWrapper, any>>;
|
|
15246
|
+
authLoginPost(login: DataTypesLoginRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesLoginResponseWrapper, any, {}>>;
|
|
15140
15247
|
/**
|
|
15141
15248
|
* Logs out the authenticated user
|
|
15142
15249
|
* @summary Logout a user
|
|
@@ -15144,7 +15251,7 @@ export declare class AuthApi extends BaseAPI {
|
|
|
15144
15251
|
* @throws {RequiredError}
|
|
15145
15252
|
* @memberof AuthApi
|
|
15146
15253
|
*/
|
|
15147
|
-
authLogoutPost(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
15254
|
+
authLogoutPost(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
15148
15255
|
/**
|
|
15149
15256
|
* Returns refreshed session data for authenticated user
|
|
15150
15257
|
* @summary Get current auth session
|
|
@@ -15152,7 +15259,7 @@ export declare class AuthApi extends BaseAPI {
|
|
|
15152
15259
|
* @throws {RequiredError}
|
|
15153
15260
|
* @memberof AuthApi
|
|
15154
15261
|
*/
|
|
15155
|
-
authSessionGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesLoginResponseWrapper, any>>;
|
|
15262
|
+
authSessionGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesLoginResponseWrapper, any, {}>>;
|
|
15156
15263
|
}
|
|
15157
15264
|
/**
|
|
15158
15265
|
* ConnectorsApi - axios parameter creator
|
|
@@ -15416,7 +15523,7 @@ export declare class ConnectorsApi extends BaseAPI {
|
|
|
15416
15523
|
* @throws {RequiredError}
|
|
15417
15524
|
* @memberof ConnectorsApi
|
|
15418
15525
|
*/
|
|
15419
|
-
v1ConnectorsSearchIndexGet(index: string, q: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSearchResultResponse, any>>;
|
|
15526
|
+
v1ConnectorsSearchIndexGet(index: string, q: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSearchResultResponse, any, {}>>;
|
|
15420
15527
|
/**
|
|
15421
15528
|
* Get all sources
|
|
15422
15529
|
* @summary Get all sources
|
|
@@ -15424,7 +15531,7 @@ export declare class ConnectorsApi extends BaseAPI {
|
|
|
15424
15531
|
* @throws {RequiredError}
|
|
15425
15532
|
* @memberof ConnectorsApi
|
|
15426
15533
|
*/
|
|
15427
|
-
v1ConnectorsSourcesGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSourcesListResponse, any>>;
|
|
15534
|
+
v1ConnectorsSourcesGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSourcesListResponse, any, {}>>;
|
|
15428
15535
|
/**
|
|
15429
15536
|
* Create source
|
|
15430
15537
|
* @summary Create source
|
|
@@ -15433,7 +15540,7 @@ export declare class ConnectorsApi extends BaseAPI {
|
|
|
15433
15540
|
* @throws {RequiredError}
|
|
15434
15541
|
* @memberof ConnectorsApi
|
|
15435
15542
|
*/
|
|
15436
|
-
v1ConnectorsSourcesPost(source: DataTypesCreateSourceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCreateSourceResponse, any>>;
|
|
15543
|
+
v1ConnectorsSourcesPost(source: DataTypesCreateSourceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCreateSourceResponse, any, {}>>;
|
|
15437
15544
|
/**
|
|
15438
15545
|
* Update source config by id
|
|
15439
15546
|
* @summary Update source config by id
|
|
@@ -15445,7 +15552,7 @@ export declare class ConnectorsApi extends BaseAPI {
|
|
|
15445
15552
|
*/
|
|
15446
15553
|
v1ConnectorsSourcesSourceIdConfigPut(sourceId: string, config: {
|
|
15447
15554
|
[key: string]: any;
|
|
15448
|
-
}, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
15555
|
+
}, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
15449
15556
|
/**
|
|
15450
15557
|
* Get source by id
|
|
15451
15558
|
* @summary Get source by id
|
|
@@ -15453,7 +15560,7 @@ export declare class ConnectorsApi extends BaseAPI {
|
|
|
15453
15560
|
* @throws {RequiredError}
|
|
15454
15561
|
* @memberof ConnectorsApi
|
|
15455
15562
|
*/
|
|
15456
|
-
v1ConnectorsSourcesSourceIdGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateSourceConfigResponseWrapper, any>>;
|
|
15563
|
+
v1ConnectorsSourcesSourceIdGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateSourceConfigResponseWrapper, any, {}>>;
|
|
15457
15564
|
/**
|
|
15458
15565
|
* Update Index schema
|
|
15459
15566
|
* @summary Update Index schema
|
|
@@ -15463,7 +15570,7 @@ export declare class ConnectorsApi extends BaseAPI {
|
|
|
15463
15570
|
* @throws {RequiredError}
|
|
15464
15571
|
* @memberof ConnectorsApi
|
|
15465
15572
|
*/
|
|
15466
|
-
v1ConnectorsSourcesSourceidUpdateschemaPost(sourceid: string, schema: DataTypesUpdateIndexSchemaRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateSchemaResponse, any>>;
|
|
15573
|
+
v1ConnectorsSourcesSourceidUpdateschemaPost(sourceid: string, schema: DataTypesUpdateIndexSchemaRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateSchemaResponse, any, {}>>;
|
|
15467
15574
|
/**
|
|
15468
15575
|
* Upload source data
|
|
15469
15576
|
* @summary Upload source data
|
|
@@ -15472,7 +15579,7 @@ export declare class ConnectorsApi extends BaseAPI {
|
|
|
15472
15579
|
* @throws {RequiredError}
|
|
15473
15580
|
* @memberof ConnectorsApi
|
|
15474
15581
|
*/
|
|
15475
|
-
v1ConnectorsSourcesSourceidUploaddataPost(v1ConnectorsSourcesSourceidUploaddataPostRequest: V1ConnectorsSourcesSourceidUploaddataPostRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUploadSourceDataResponseWrapper, any>>;
|
|
15582
|
+
v1ConnectorsSourcesSourceidUploaddataPost(v1ConnectorsSourcesSourceidUploaddataPostRequest: V1ConnectorsSourcesSourceidUploaddataPostRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUploadSourceDataResponseWrapper, any, {}>>;
|
|
15476
15583
|
/**
|
|
15477
15584
|
* Create task
|
|
15478
15585
|
* @summary Create task
|
|
@@ -15481,7 +15588,7 @@ export declare class ConnectorsApi extends BaseAPI {
|
|
|
15481
15588
|
* @throws {RequiredError}
|
|
15482
15589
|
* @memberof ConnectorsApi
|
|
15483
15590
|
*/
|
|
15484
|
-
v1ConnectorsTasksPost(task: DataTypesCreateTaskRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCreateTaskResponse, any>>;
|
|
15591
|
+
v1ConnectorsTasksPost(task: DataTypesCreateTaskRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCreateTaskResponse, any, {}>>;
|
|
15485
15592
|
/**
|
|
15486
15593
|
* Trigger task run
|
|
15487
15594
|
* @summary Trigger task run
|
|
@@ -15491,7 +15598,7 @@ export declare class ConnectorsApi extends BaseAPI {
|
|
|
15491
15598
|
* @throws {RequiredError}
|
|
15492
15599
|
* @memberof ConnectorsApi
|
|
15493
15600
|
*/
|
|
15494
|
-
v1ConnectorsTasksTaskIdRunPost(taskId: string, initiatedBy: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesTriggerTaskRunResponse, any>>;
|
|
15601
|
+
v1ConnectorsTasksTaskIdRunPost(taskId: string, initiatedBy: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesTriggerTaskRunResponse, any, {}>>;
|
|
15495
15602
|
}
|
|
15496
15603
|
/**
|
|
15497
15604
|
* CreditsApi - axios parameter creator
|
|
@@ -15763,7 +15870,7 @@ export declare class CreditsApi extends BaseAPI {
|
|
|
15763
15870
|
* @throws {RequiredError}
|
|
15764
15871
|
* @memberof CreditsApi
|
|
15765
15872
|
*/
|
|
15766
|
-
apiCreditsAdminAdjustPost(request: DataTypesManualCreditAdjustmentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesCreditAdjustmentResponse, any>>;
|
|
15873
|
+
apiCreditsAdminAdjustPost(request: DataTypesManualCreditAdjustmentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesCreditAdjustmentResponse, any, {}>>;
|
|
15767
15874
|
/**
|
|
15768
15875
|
* Get comprehensive credit balance including recent transactions, usage patterns, and expiry details
|
|
15769
15876
|
* @summary Get detailed organization credit balance
|
|
@@ -15772,7 +15879,7 @@ export declare class CreditsApi extends BaseAPI {
|
|
|
15772
15879
|
* @throws {RequiredError}
|
|
15773
15880
|
* @memberof CreditsApi
|
|
15774
15881
|
*/
|
|
15775
|
-
apiCreditsBalanceDetailedGet(limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesDetailedCreditBalanceResponse, any>>;
|
|
15882
|
+
apiCreditsBalanceDetailedGet(limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesDetailedCreditBalanceResponse, any, {}>>;
|
|
15776
15883
|
/**
|
|
15777
15884
|
* Get current credit balance and summary for the authenticated user\'s organization
|
|
15778
15885
|
* @summary Get organization credit balance
|
|
@@ -15780,7 +15887,7 @@ export declare class CreditsApi extends BaseAPI {
|
|
|
15780
15887
|
* @throws {RequiredError}
|
|
15781
15888
|
* @memberof CreditsApi
|
|
15782
15889
|
*/
|
|
15783
|
-
apiCreditsBalanceGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesCreditBalance, any>>;
|
|
15890
|
+
apiCreditsBalanceGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesCreditBalance, any, {}>>;
|
|
15784
15891
|
/**
|
|
15785
15892
|
* Get current credit balance for a specific store (legacy endpoint - use organization endpoints instead)
|
|
15786
15893
|
* @summary Get store credit balance (legacy)
|
|
@@ -15790,7 +15897,7 @@ export declare class CreditsApi extends BaseAPI {
|
|
|
15790
15897
|
* @throws {RequiredError}
|
|
15791
15898
|
* @memberof CreditsApi
|
|
15792
15899
|
*/
|
|
15793
|
-
apiCreditsBalanceStoreStoreIdGet(storeId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesCreditBalance, any>>;
|
|
15900
|
+
apiCreditsBalanceStoreStoreIdGet(storeId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesCreditBalance, any, {}>>;
|
|
15794
15901
|
/**
|
|
15795
15902
|
* Manually consume credits for testing or administrative purposes using FIFO logic
|
|
15796
15903
|
* @summary Manually consume credits
|
|
@@ -15799,7 +15906,7 @@ export declare class CreditsApi extends BaseAPI {
|
|
|
15799
15906
|
* @throws {RequiredError}
|
|
15800
15907
|
* @memberof CreditsApi
|
|
15801
15908
|
*/
|
|
15802
|
-
apiCreditsConsumePost(request: DataTypesManualConsumeCreditsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesCreditConsumptionResult, any>>;
|
|
15909
|
+
apiCreditsConsumePost(request: DataTypesManualConsumeCreditsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesCreditConsumptionResult, any, {}>>;
|
|
15803
15910
|
/**
|
|
15804
15911
|
* Get detailed history of credit consumption with FIFO breakdown and analytics
|
|
15805
15912
|
* @summary Get FIFO consumption history
|
|
@@ -15812,7 +15919,7 @@ export declare class CreditsApi extends BaseAPI {
|
|
|
15812
15919
|
* @throws {RequiredError}
|
|
15813
15920
|
* @memberof CreditsApi
|
|
15814
15921
|
*/
|
|
15815
|
-
apiCreditsConsumptionHistoryGet(page?: number, limit?: number, endpoint?: string, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesConsumptionHistoryResponse, any>>;
|
|
15922
|
+
apiCreditsConsumptionHistoryGet(page?: number, limit?: number, endpoint?: string, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesConsumptionHistoryResponse, any, {}>>;
|
|
15816
15923
|
/**
|
|
15817
15924
|
* Get all active credit plans available for purchase with detailed pricing and features
|
|
15818
15925
|
* @summary Get available credit plans
|
|
@@ -15820,7 +15927,7 @@ export declare class CreditsApi extends BaseAPI {
|
|
|
15820
15927
|
* @throws {RequiredError}
|
|
15821
15928
|
* @memberof CreditsApi
|
|
15822
15929
|
*/
|
|
15823
|
-
apiCreditsPlansGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseArrayDataTypesCreditPlan, any>>;
|
|
15930
|
+
apiCreditsPlansGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseArrayDataTypesCreditPlan, any, {}>>;
|
|
15824
15931
|
/**
|
|
15825
15932
|
* Purchase credits using a credit plan with payment processing
|
|
15826
15933
|
* @summary Purchase credits
|
|
@@ -15829,7 +15936,7 @@ export declare class CreditsApi extends BaseAPI {
|
|
|
15829
15936
|
* @throws {RequiredError}
|
|
15830
15937
|
* @memberof CreditsApi
|
|
15831
15938
|
*/
|
|
15832
|
-
apiCreditsPurchasePost(request: DataTypesPurchaseCreditsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesPurchaseCreditsResponse, any>>;
|
|
15939
|
+
apiCreditsPurchasePost(request: DataTypesPurchaseCreditsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesPurchaseCreditsResponse, any, {}>>;
|
|
15833
15940
|
/**
|
|
15834
15941
|
* Get paginated credit transaction history for the authenticated organization
|
|
15835
15942
|
* @summary Get organization credit transactions
|
|
@@ -15842,7 +15949,7 @@ export declare class CreditsApi extends BaseAPI {
|
|
|
15842
15949
|
* @throws {RequiredError}
|
|
15843
15950
|
* @memberof CreditsApi
|
|
15844
15951
|
*/
|
|
15845
|
-
apiCreditsTransactionsGet(page?: number, limit?: number, type?: ApiCreditsTransactionsGetTypeEnum, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesPaginatedTransactionsResponse, any>>;
|
|
15952
|
+
apiCreditsTransactionsGet(page?: number, limit?: number, type?: ApiCreditsTransactionsGetTypeEnum, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesPaginatedTransactionsResponse, any, {}>>;
|
|
15846
15953
|
}
|
|
15847
15954
|
/**
|
|
15848
15955
|
* @export
|
|
@@ -16097,7 +16204,7 @@ export declare class CustomStopwordsApi extends BaseAPI {
|
|
|
16097
16204
|
* @throws {RequiredError}
|
|
16098
16205
|
* @memberof CustomStopwordsApi
|
|
16099
16206
|
*/
|
|
16100
|
-
adminStoresXStoreIDStopwordsCustomWordlistsCustomWordListIDDelete(xStoreID: string, customWordListID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateWordStatusResponseWrapper, any>>;
|
|
16207
|
+
adminStoresXStoreIDStopwordsCustomWordlistsCustomWordListIDDelete(xStoreID: string, customWordListID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateWordStatusResponseWrapper, any, {}>>;
|
|
16101
16208
|
/**
|
|
16102
16209
|
* Fetches a specific custom word list by ID
|
|
16103
16210
|
* @summary Get custom word list by ID
|
|
@@ -16107,7 +16214,7 @@ export declare class CustomStopwordsApi extends BaseAPI {
|
|
|
16107
16214
|
* @throws {RequiredError}
|
|
16108
16215
|
* @memberof CustomStopwordsApi
|
|
16109
16216
|
*/
|
|
16110
|
-
adminStoresXStoreIDStopwordsCustomWordlistsCustomWordListIDGet(xStoreID: string, customWordListID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCustomWordListResponseWrapper, any>>;
|
|
16217
|
+
adminStoresXStoreIDStopwordsCustomWordlistsCustomWordListIDGet(xStoreID: string, customWordListID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCustomWordListResponseWrapper, any, {}>>;
|
|
16111
16218
|
/**
|
|
16112
16219
|
* Updates a custom word list
|
|
16113
16220
|
* @summary Update custom word list
|
|
@@ -16118,7 +16225,7 @@ export declare class CustomStopwordsApi extends BaseAPI {
|
|
|
16118
16225
|
* @throws {RequiredError}
|
|
16119
16226
|
* @memberof CustomStopwordsApi
|
|
16120
16227
|
*/
|
|
16121
|
-
adminStoresXStoreIDStopwordsCustomWordlistsCustomWordListIDPut(xStoreID: string, customWordListID: number, body: DataTypesUpdateCustomWordListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateWordStatusResponseWrapper, any>>;
|
|
16228
|
+
adminStoresXStoreIDStopwordsCustomWordlistsCustomWordListIDPut(xStoreID: string, customWordListID: number, body: DataTypesUpdateCustomWordListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateWordStatusResponseWrapper, any, {}>>;
|
|
16122
16229
|
/**
|
|
16123
16230
|
* Removes words from a custom word list
|
|
16124
16231
|
* @summary Remove words from custom word list
|
|
@@ -16129,7 +16236,7 @@ export declare class CustomStopwordsApi extends BaseAPI {
|
|
|
16129
16236
|
* @throws {RequiredError}
|
|
16130
16237
|
* @memberof CustomStopwordsApi
|
|
16131
16238
|
*/
|
|
16132
|
-
adminStoresXStoreIDStopwordsCustomWordlistsCustomWordListIDWordsDelete(xStoreID: string, customWordListID: number, body: DataTypesRemoveWordsFromCustomListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateWordStatusResponseWrapper, any>>;
|
|
16239
|
+
adminStoresXStoreIDStopwordsCustomWordlistsCustomWordListIDWordsDelete(xStoreID: string, customWordListID: number, body: DataTypesRemoveWordsFromCustomListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateWordStatusResponseWrapper, any, {}>>;
|
|
16133
16240
|
/**
|
|
16134
16241
|
* Adds words to an existing custom word list
|
|
16135
16242
|
* @summary Add words to custom word list
|
|
@@ -16140,7 +16247,7 @@ export declare class CustomStopwordsApi extends BaseAPI {
|
|
|
16140
16247
|
* @throws {RequiredError}
|
|
16141
16248
|
* @memberof CustomStopwordsApi
|
|
16142
16249
|
*/
|
|
16143
|
-
adminStoresXStoreIDStopwordsCustomWordlistsCustomWordListIDWordsPost(xStoreID: string, customWordListID: number, body: DataTypesAddWordsToCustomListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateWordStatusResponseWrapper, any>>;
|
|
16250
|
+
adminStoresXStoreIDStopwordsCustomWordlistsCustomWordListIDWordsPost(xStoreID: string, customWordListID: number, body: DataTypesAddWordsToCustomListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateWordStatusResponseWrapper, any, {}>>;
|
|
16144
16251
|
/**
|
|
16145
16252
|
* Fetches custom word lists for a store with pagination
|
|
16146
16253
|
* @summary Get custom word lists
|
|
@@ -16153,7 +16260,7 @@ export declare class CustomStopwordsApi extends BaseAPI {
|
|
|
16153
16260
|
* @throws {RequiredError}
|
|
16154
16261
|
* @memberof CustomStopwordsApi
|
|
16155
16262
|
*/
|
|
16156
|
-
adminStoresXStoreIDStopwordsCustomWordlistsGet(xStoreID: string, lang?: string, type?: string, page?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCustomWordListsResponseWrapper, any>>;
|
|
16263
|
+
adminStoresXStoreIDStopwordsCustomWordlistsGet(xStoreID: string, lang?: string, type?: string, page?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCustomWordListsResponseWrapper, any, {}>>;
|
|
16157
16264
|
/**
|
|
16158
16265
|
* Creates a new custom word list for a store
|
|
16159
16266
|
* @summary Create custom word list
|
|
@@ -16163,7 +16270,7 @@ export declare class CustomStopwordsApi extends BaseAPI {
|
|
|
16163
16270
|
* @throws {RequiredError}
|
|
16164
16271
|
* @memberof CustomStopwordsApi
|
|
16165
16272
|
*/
|
|
16166
|
-
adminStoresXStoreIDStopwordsCustomWordlistsPost(xStoreID: string, body: DataTypesCreateCustomWordListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCustomWordListResponseWrapper, any>>;
|
|
16273
|
+
adminStoresXStoreIDStopwordsCustomWordlistsPost(xStoreID: string, body: DataTypesCreateCustomWordListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCustomWordListResponseWrapper, any, {}>>;
|
|
16167
16274
|
}
|
|
16168
16275
|
/**
|
|
16169
16276
|
* DocumentsApi - axios parameter creator
|
|
@@ -16226,7 +16333,7 @@ export declare class DocumentsApi extends BaseAPI {
|
|
|
16226
16333
|
* @throws {RequiredError}
|
|
16227
16334
|
* @memberof DocumentsApi
|
|
16228
16335
|
*/
|
|
16229
|
-
adminStoresXStoreIDUploadPost(xStoreID: string, file: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
16336
|
+
adminStoresXStoreIDUploadPost(xStoreID: string, file: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
16230
16337
|
}
|
|
16231
16338
|
/**
|
|
16232
16339
|
* ItemAnalyticsApi - axios parameter creator
|
|
@@ -16642,7 +16749,7 @@ export declare class ItemAnalyticsApi extends BaseAPI {
|
|
|
16642
16749
|
* @throws {RequiredError}
|
|
16643
16750
|
* @memberof ItemAnalyticsApi
|
|
16644
16751
|
*/
|
|
16645
|
-
adminAnalyticsStoreXStoreIDItemsComparisonGet(xStoreID: string, itemIds: string, startTime?: string, endTime?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDItemsComparisonGet200Response, any>>;
|
|
16752
|
+
adminAnalyticsStoreXStoreIDItemsComparisonGet(xStoreID: string, itemIds: string, startTime?: string, endTime?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDItemsComparisonGet200Response, any, {}>>;
|
|
16646
16753
|
/**
|
|
16647
16754
|
* Analyze how items are discovered through search queries, filters, and sorts with position distribution data
|
|
16648
16755
|
* @summary Get Item Discovery Analytics
|
|
@@ -16664,7 +16771,7 @@ export declare class ItemAnalyticsApi extends BaseAPI {
|
|
|
16664
16771
|
* @throws {RequiredError}
|
|
16665
16772
|
* @memberof ItemAnalyticsApi
|
|
16666
16773
|
*/
|
|
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>>;
|
|
16774
|
+
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
16775
|
/**
|
|
16669
16776
|
* Retrieve general item performance analytics including impressions, clicks, conversions, and revenue metrics
|
|
16670
16777
|
* @summary Get Item Analytics
|
|
@@ -16686,7 +16793,7 @@ export declare class ItemAnalyticsApi extends BaseAPI {
|
|
|
16686
16793
|
* @throws {RequiredError}
|
|
16687
16794
|
* @memberof ItemAnalyticsApi
|
|
16688
16795
|
*/
|
|
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>>;
|
|
16796
|
+
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
16797
|
/**
|
|
16691
16798
|
* Retrieve detailed analytics for a specific item including performance metrics and discovery data
|
|
16692
16799
|
* @summary Get Item Details
|
|
@@ -16698,7 +16805,7 @@ export declare class ItemAnalyticsApi extends BaseAPI {
|
|
|
16698
16805
|
* @throws {RequiredError}
|
|
16699
16806
|
* @memberof ItemAnalyticsApi
|
|
16700
16807
|
*/
|
|
16701
|
-
adminAnalyticsStoreXStoreIDItemsItemIdGet(xStoreID: string, itemId: string, startTime?: string, endTime?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AnalyticsAnalyticsAPIResponse, any>>;
|
|
16808
|
+
adminAnalyticsStoreXStoreIDItemsItemIdGet(xStoreID: string, itemId: string, startTime?: string, endTime?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AnalyticsAnalyticsAPIResponse, any, {}>>;
|
|
16702
16809
|
/**
|
|
16703
16810
|
* Retrieve detailed performance metrics for items including click-through rates, conversion rates, and revenue data
|
|
16704
16811
|
* @summary Get Item Performance Analytics
|
|
@@ -16720,7 +16827,7 @@ export declare class ItemAnalyticsApi extends BaseAPI {
|
|
|
16720
16827
|
* @throws {RequiredError}
|
|
16721
16828
|
* @memberof ItemAnalyticsApi
|
|
16722
16829
|
*/
|
|
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>>;
|
|
16830
|
+
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
16831
|
/**
|
|
16725
16832
|
* Retrieve item performance trends over time showing how items perform across different time periods
|
|
16726
16833
|
* @summary Get Item Performance Trends
|
|
@@ -16741,7 +16848,7 @@ export declare class ItemAnalyticsApi extends BaseAPI {
|
|
|
16741
16848
|
* @throws {RequiredError}
|
|
16742
16849
|
* @memberof ItemAnalyticsApi
|
|
16743
16850
|
*/
|
|
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>>;
|
|
16851
|
+
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
16852
|
/**
|
|
16746
16853
|
* Analyze query performance with item context showing how queries perform in discovering and ranking items
|
|
16747
16854
|
* @summary Get Query Item Performance Analytics
|
|
@@ -16763,7 +16870,7 @@ export declare class ItemAnalyticsApi extends BaseAPI {
|
|
|
16763
16870
|
* @throws {RequiredError}
|
|
16764
16871
|
* @memberof ItemAnalyticsApi
|
|
16765
16872
|
*/
|
|
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>>;
|
|
16873
|
+
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
16874
|
}
|
|
16768
16875
|
/**
|
|
16769
16876
|
* @export
|
|
@@ -17023,7 +17130,7 @@ export declare class LimitsApi extends BaseAPI {
|
|
|
17023
17130
|
* @throws {RequiredError}
|
|
17024
17131
|
* @memberof LimitsApi
|
|
17025
17132
|
*/
|
|
17026
|
-
miscLimitsChangeStatusLimitIDIsActivePut(limitID: number, isActive: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
17133
|
+
miscLimitsChangeStatusLimitIDIsActivePut(limitID: number, isActive: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
17027
17134
|
/**
|
|
17028
17135
|
* Fetches list of all limits
|
|
17029
17136
|
* @summary Fetches list of all limits
|
|
@@ -17031,7 +17138,7 @@ export declare class LimitsApi extends BaseAPI {
|
|
|
17031
17138
|
* @throws {RequiredError}
|
|
17032
17139
|
* @memberof LimitsApi
|
|
17033
17140
|
*/
|
|
17034
|
-
miscLimitsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesLimitsListResponse, any>>;
|
|
17141
|
+
miscLimitsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesLimitsListResponse, any, {}>>;
|
|
17035
17142
|
/**
|
|
17036
17143
|
* Fetches limit by id
|
|
17037
17144
|
* @summary Fetches limit by id
|
|
@@ -17040,7 +17147,7 @@ export declare class LimitsApi extends BaseAPI {
|
|
|
17040
17147
|
* @throws {RequiredError}
|
|
17041
17148
|
* @memberof LimitsApi
|
|
17042
17149
|
*/
|
|
17043
|
-
miscLimitsLimitIDGet(limitID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesLimitResponse, any>>;
|
|
17150
|
+
miscLimitsLimitIDGet(limitID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesLimitResponse, any, {}>>;
|
|
17044
17151
|
/**
|
|
17045
17152
|
* Updates limit information by ID.
|
|
17046
17153
|
* @summary UpdateLimit an existing limit
|
|
@@ -17050,7 +17157,7 @@ export declare class LimitsApi extends BaseAPI {
|
|
|
17050
17157
|
* @throws {RequiredError}
|
|
17051
17158
|
* @memberof LimitsApi
|
|
17052
17159
|
*/
|
|
17053
|
-
miscLimitsLimitIDPut(limitID: number, limit: DataTypesCreateLimitRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
17160
|
+
miscLimitsLimitIDPut(limitID: number, limit: DataTypesCreateLimitRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
17054
17161
|
/**
|
|
17055
17162
|
* Adds a new limit to the system
|
|
17056
17163
|
* @summary Creates a new limit
|
|
@@ -17059,7 +17166,7 @@ export declare class LimitsApi extends BaseAPI {
|
|
|
17059
17166
|
* @throws {RequiredError}
|
|
17060
17167
|
* @memberof LimitsApi
|
|
17061
17168
|
*/
|
|
17062
|
-
miscLimitsPost(limit: DataTypesCreateLimitRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
17169
|
+
miscLimitsPost(limit: DataTypesCreateLimitRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
17063
17170
|
}
|
|
17064
17171
|
/**
|
|
17065
17172
|
* MenusApi - axios parameter creator
|
|
@@ -17450,7 +17557,7 @@ export declare class MenusApi extends BaseAPI {
|
|
|
17450
17557
|
* @throws {RequiredError}
|
|
17451
17558
|
* @memberof MenusApi
|
|
17452
17559
|
*/
|
|
17453
|
-
miscMenusGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMenusListResponse, any>>;
|
|
17560
|
+
miscMenusGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMenusListResponse, any, {}>>;
|
|
17454
17561
|
/**
|
|
17455
17562
|
* Deletes a menu from the system by ID.
|
|
17456
17563
|
* @summary Delete a menu
|
|
@@ -17459,7 +17566,7 @@ export declare class MenusApi extends BaseAPI {
|
|
|
17459
17566
|
* @throws {RequiredError}
|
|
17460
17567
|
* @memberof MenusApi
|
|
17461
17568
|
*/
|
|
17462
|
-
miscMenusIdDelete(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
17569
|
+
miscMenusIdDelete(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
17463
17570
|
/**
|
|
17464
17571
|
* Fetches menus by id
|
|
17465
17572
|
* @summary Fetches menus by id
|
|
@@ -17468,7 +17575,7 @@ export declare class MenusApi extends BaseAPI {
|
|
|
17468
17575
|
* @throws {RequiredError}
|
|
17469
17576
|
* @memberof MenusApi
|
|
17470
17577
|
*/
|
|
17471
|
-
miscMenusIdGet(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMenuResponse, any>>;
|
|
17578
|
+
miscMenusIdGet(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMenuResponse, any, {}>>;
|
|
17472
17579
|
/**
|
|
17473
17580
|
* Updates menu information by ID.
|
|
17474
17581
|
* @summary Update an existing menu
|
|
@@ -17478,7 +17585,7 @@ export declare class MenusApi extends BaseAPI {
|
|
|
17478
17585
|
* @throws {RequiredError}
|
|
17479
17586
|
* @memberof MenusApi
|
|
17480
17587
|
*/
|
|
17481
|
-
miscMenusIdPut(id: number, menu: DataTypesCreateMenuRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
17588
|
+
miscMenusIdPut(id: number, menu: DataTypesCreateMenuRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
17482
17589
|
/**
|
|
17483
17590
|
* Fetches list of all menus by org id
|
|
17484
17591
|
* @summary Fetches list of all menus by org id
|
|
@@ -17487,7 +17594,7 @@ export declare class MenusApi extends BaseAPI {
|
|
|
17487
17594
|
* @throws {RequiredError}
|
|
17488
17595
|
* @memberof MenusApi
|
|
17489
17596
|
*/
|
|
17490
|
-
miscMenusOrgOrgIdGet(orgId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMenusListResponse, any>>;
|
|
17597
|
+
miscMenusOrgOrgIdGet(orgId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMenusListResponse, any, {}>>;
|
|
17491
17598
|
/**
|
|
17492
17599
|
* Fetches list of all menus by org id and menuid
|
|
17493
17600
|
* @summary Fetches list of all menus by org id and menuid
|
|
@@ -17497,7 +17604,7 @@ export declare class MenusApi extends BaseAPI {
|
|
|
17497
17604
|
* @throws {RequiredError}
|
|
17498
17605
|
* @memberof MenusApi
|
|
17499
17606
|
*/
|
|
17500
|
-
miscMenusOrgOrgIdIdGet(orgId: number, id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMenuResponse, any>>;
|
|
17607
|
+
miscMenusOrgOrgIdIdGet(orgId: number, id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMenuResponse, any, {}>>;
|
|
17501
17608
|
/**
|
|
17502
17609
|
* Updates menu information by ID with orgid.
|
|
17503
17610
|
* @summary Update an existing menu with orgid
|
|
@@ -17508,7 +17615,7 @@ export declare class MenusApi extends BaseAPI {
|
|
|
17508
17615
|
* @throws {RequiredError}
|
|
17509
17616
|
* @memberof MenusApi
|
|
17510
17617
|
*/
|
|
17511
|
-
miscMenusOrgOrgIdIdPut(orgId: number, id: number, menu: DataTypesCreateMenuRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
17618
|
+
miscMenusOrgOrgIdIdPut(orgId: number, id: number, menu: DataTypesCreateMenuRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
17512
17619
|
/**
|
|
17513
17620
|
* Adds a new menu to the system
|
|
17514
17621
|
* @summary Creates a new menu
|
|
@@ -17518,7 +17625,7 @@ export declare class MenusApi extends BaseAPI {
|
|
|
17518
17625
|
* @throws {RequiredError}
|
|
17519
17626
|
* @memberof MenusApi
|
|
17520
17627
|
*/
|
|
17521
|
-
miscMenusOrgOrgIdPost(orgId: number, menu: DataTypesCreateMenuRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
17628
|
+
miscMenusOrgOrgIdPost(orgId: number, menu: DataTypesCreateMenuRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
17522
17629
|
/**
|
|
17523
17630
|
* Adds a new menu to the system
|
|
17524
17631
|
* @summary Creates a new menu
|
|
@@ -17527,7 +17634,7 @@ export declare class MenusApi extends BaseAPI {
|
|
|
17527
17634
|
* @throws {RequiredError}
|
|
17528
17635
|
* @memberof MenusApi
|
|
17529
17636
|
*/
|
|
17530
|
-
miscMenusPost(menu: DataTypesCreateMenuRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
17637
|
+
miscMenusPost(menu: DataTypesCreateMenuRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
17531
17638
|
/**
|
|
17532
17639
|
* Fetches list of all menus by store id
|
|
17533
17640
|
* @summary Fetches list of all menus by store id
|
|
@@ -17536,7 +17643,7 @@ export declare class MenusApi extends BaseAPI {
|
|
|
17536
17643
|
* @throws {RequiredError}
|
|
17537
17644
|
* @memberof MenusApi
|
|
17538
17645
|
*/
|
|
17539
|
-
miscMenusStoreStoreIdGet(storeId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMenusListResponse, any>>;
|
|
17646
|
+
miscMenusStoreStoreIdGet(storeId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMenusListResponse, any, {}>>;
|
|
17540
17647
|
/**
|
|
17541
17648
|
* Fetches list of all menus by storeId and menuid
|
|
17542
17649
|
* @summary Fetches list of all menus by storeId and menuid
|
|
@@ -17546,7 +17653,7 @@ export declare class MenusApi extends BaseAPI {
|
|
|
17546
17653
|
* @throws {RequiredError}
|
|
17547
17654
|
* @memberof MenusApi
|
|
17548
17655
|
*/
|
|
17549
|
-
miscMenusStoreStoreIdIdGet(storeId: number, id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMenuResponse, any>>;
|
|
17656
|
+
miscMenusStoreStoreIdIdGet(storeId: number, id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMenuResponse, any, {}>>;
|
|
17550
17657
|
/**
|
|
17551
17658
|
* Updates menu information by ID with storeId.
|
|
17552
17659
|
* @summary Update an existing menu with storeId
|
|
@@ -17557,7 +17664,7 @@ export declare class MenusApi extends BaseAPI {
|
|
|
17557
17664
|
* @throws {RequiredError}
|
|
17558
17665
|
* @memberof MenusApi
|
|
17559
17666
|
*/
|
|
17560
|
-
miscMenusStoreStoreIdIdPut(storeId: number, id: number, menu: DataTypesCreateMenuRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
17667
|
+
miscMenusStoreStoreIdIdPut(storeId: number, id: number, menu: DataTypesCreateMenuRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
17561
17668
|
/**
|
|
17562
17669
|
* Adds a new menu to the system with storeid
|
|
17563
17670
|
* @summary Creates a new menu with storeid
|
|
@@ -17567,7 +17674,7 @@ export declare class MenusApi extends BaseAPI {
|
|
|
17567
17674
|
* @throws {RequiredError}
|
|
17568
17675
|
* @memberof MenusApi
|
|
17569
17676
|
*/
|
|
17570
|
-
miscMenusStoreStoreIdPost(storeId: number, menu: DataTypesCreateMenuRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
17677
|
+
miscMenusStoreStoreIdPost(storeId: number, menu: DataTypesCreateMenuRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
17571
17678
|
/**
|
|
17572
17679
|
* Fetches hierarchical menu access for the currently logged-in user
|
|
17573
17680
|
* @summary Fetches hierarchical menu access for logged-in user
|
|
@@ -17575,7 +17682,7 @@ export declare class MenusApi extends BaseAPI {
|
|
|
17575
17682
|
* @throws {RequiredError}
|
|
17576
17683
|
* @memberof MenusApi
|
|
17577
17684
|
*/
|
|
17578
|
-
miscMenusUserAccessGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMenuAccessListResponse, any>>;
|
|
17685
|
+
miscMenusUserAccessGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMenuAccessListResponse, any, {}>>;
|
|
17579
17686
|
}
|
|
17580
17687
|
/**
|
|
17581
17688
|
* ModulesApi - axios parameter creator
|
|
@@ -17729,7 +17836,7 @@ export declare class ModulesApi extends BaseAPI {
|
|
|
17729
17836
|
* @throws {RequiredError}
|
|
17730
17837
|
* @memberof ModulesApi
|
|
17731
17838
|
*/
|
|
17732
|
-
miscModulesGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesModuleListResponse, any>>;
|
|
17839
|
+
miscModulesGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesModuleListResponse, any, {}>>;
|
|
17733
17840
|
/**
|
|
17734
17841
|
* Deletes a module from the system by ID.
|
|
17735
17842
|
* @summary Deletes a module
|
|
@@ -17738,7 +17845,7 @@ export declare class ModulesApi extends BaseAPI {
|
|
|
17738
17845
|
* @throws {RequiredError}
|
|
17739
17846
|
* @memberof ModulesApi
|
|
17740
17847
|
*/
|
|
17741
|
-
miscModulesIdDelete(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
17848
|
+
miscModulesIdDelete(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
17742
17849
|
/**
|
|
17743
17850
|
* Fetches a module by its id
|
|
17744
17851
|
* @summary Fetches a module by id
|
|
@@ -17747,7 +17854,7 @@ export declare class ModulesApi extends BaseAPI {
|
|
|
17747
17854
|
* @throws {RequiredError}
|
|
17748
17855
|
* @memberof ModulesApi
|
|
17749
17856
|
*/
|
|
17750
|
-
miscModulesIdGet(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesModuleResponse, any>>;
|
|
17857
|
+
miscModulesIdGet(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesModuleResponse, any, {}>>;
|
|
17751
17858
|
/**
|
|
17752
17859
|
* Updates module information by ID.
|
|
17753
17860
|
* @summary Updates an existing module
|
|
@@ -17757,7 +17864,7 @@ export declare class ModulesApi extends BaseAPI {
|
|
|
17757
17864
|
* @throws {RequiredError}
|
|
17758
17865
|
* @memberof ModulesApi
|
|
17759
17866
|
*/
|
|
17760
|
-
miscModulesIdPut(id: number, module: DataTypesModule, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
17867
|
+
miscModulesIdPut(id: number, module: DataTypesModule, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
17761
17868
|
/**
|
|
17762
17869
|
* Adds a new module to the system
|
|
17763
17870
|
* @summary Creates a new module
|
|
@@ -17766,7 +17873,7 @@ export declare class ModulesApi extends BaseAPI {
|
|
|
17766
17873
|
* @throws {RequiredError}
|
|
17767
17874
|
* @memberof ModulesApi
|
|
17768
17875
|
*/
|
|
17769
|
-
miscModulesPost(module: DataTypesModule, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
17876
|
+
miscModulesPost(module: DataTypesModule, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
17770
17877
|
}
|
|
17771
17878
|
/**
|
|
17772
17879
|
* MongoDbApi - axios parameter creator
|
|
@@ -17949,7 +18056,7 @@ export declare class MongoDbApi extends BaseAPI {
|
|
|
17949
18056
|
* @throws {RequiredError}
|
|
17950
18057
|
* @memberof MongoDbApi
|
|
17951
18058
|
*/
|
|
17952
|
-
mongodbDatabasesDatabaseNameCollectionsCollectionNameDelete(databaseName: string, collectionName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
18059
|
+
mongodbDatabasesDatabaseNameCollectionsCollectionNameDelete(databaseName: string, collectionName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
17953
18060
|
/**
|
|
17954
18061
|
* Creates a new collection within a specified database.
|
|
17955
18062
|
* @summary Create a new collection
|
|
@@ -17959,7 +18066,7 @@ export declare class MongoDbApi extends BaseAPI {
|
|
|
17959
18066
|
* @throws {RequiredError}
|
|
17960
18067
|
* @memberof MongoDbApi
|
|
17961
18068
|
*/
|
|
17962
|
-
mongodbDatabasesDatabaseNameCollectionsCollectionNamePost(databaseName: string, collectionName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
18069
|
+
mongodbDatabasesDatabaseNameCollectionsCollectionNamePost(databaseName: string, collectionName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
17963
18070
|
/**
|
|
17964
18071
|
* Retrieves a list of collections for a given database.
|
|
17965
18072
|
* @summary List collections
|
|
@@ -17968,7 +18075,7 @@ export declare class MongoDbApi extends BaseAPI {
|
|
|
17968
18075
|
* @throws {RequiredError}
|
|
17969
18076
|
* @memberof MongoDbApi
|
|
17970
18077
|
*/
|
|
17971
|
-
mongodbDatabasesDatabaseNameCollectionsGet(databaseName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericStringArrayResponse, any>>;
|
|
18078
|
+
mongodbDatabasesDatabaseNameCollectionsGet(databaseName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericStringArrayResponse, any, {}>>;
|
|
17972
18079
|
/**
|
|
17973
18080
|
* Drops an entire database from the MongoDB instance.
|
|
17974
18081
|
* @summary Drop a database
|
|
@@ -17977,7 +18084,7 @@ export declare class MongoDbApi extends BaseAPI {
|
|
|
17977
18084
|
* @throws {RequiredError}
|
|
17978
18085
|
* @memberof MongoDbApi
|
|
17979
18086
|
*/
|
|
17980
|
-
mongodbDatabasesDatabaseNameDelete(databaseName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
18087
|
+
mongodbDatabasesDatabaseNameDelete(databaseName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
17981
18088
|
/**
|
|
17982
18089
|
* Creates a new database by creating an initial collection in it.
|
|
17983
18090
|
* @summary Create a new database
|
|
@@ -17986,7 +18093,7 @@ export declare class MongoDbApi extends BaseAPI {
|
|
|
17986
18093
|
* @throws {RequiredError}
|
|
17987
18094
|
* @memberof MongoDbApi
|
|
17988
18095
|
*/
|
|
17989
|
-
mongodbDatabasesDatabaseNamePost(databaseName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
18096
|
+
mongodbDatabasesDatabaseNamePost(databaseName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
17990
18097
|
/**
|
|
17991
18098
|
* Retrieves a list of all databases on the MongoDB instance.
|
|
17992
18099
|
* @summary List all databases
|
|
@@ -17994,7 +18101,7 @@ export declare class MongoDbApi extends BaseAPI {
|
|
|
17994
18101
|
* @throws {RequiredError}
|
|
17995
18102
|
* @memberof MongoDbApi
|
|
17996
18103
|
*/
|
|
17997
|
-
mongodbDatabasesGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericStringArrayResponse, any>>;
|
|
18104
|
+
mongodbDatabasesGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericStringArrayResponse, any, {}>>;
|
|
17998
18105
|
}
|
|
17999
18106
|
/**
|
|
18000
18107
|
* NewsLettersApi - axios parameter creator
|
|
@@ -18151,7 +18258,7 @@ export declare class NewsLettersApi extends BaseAPI {
|
|
|
18151
18258
|
* @throws {RequiredError}
|
|
18152
18259
|
* @memberof NewsLettersApi
|
|
18153
18260
|
*/
|
|
18154
|
-
miscNewsLettersGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesNewsLetterRequestsListResponse, any>>;
|
|
18261
|
+
miscNewsLettersGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesNewsLetterRequestsListResponse, any, {}>>;
|
|
18155
18262
|
/**
|
|
18156
18263
|
* Fetches NewsLetterSubscription by id
|
|
18157
18264
|
* @summary Fetches NewsLetterSubscription by id
|
|
@@ -18160,7 +18267,7 @@ export declare class NewsLettersApi extends BaseAPI {
|
|
|
18160
18267
|
* @throws {RequiredError}
|
|
18161
18268
|
* @memberof NewsLettersApi
|
|
18162
18269
|
*/
|
|
18163
|
-
miscNewsLettersIdGet(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesNewsLetterRequestResponse, any>>;
|
|
18270
|
+
miscNewsLettersIdGet(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesNewsLetterRequestResponse, any, {}>>;
|
|
18164
18271
|
/**
|
|
18165
18272
|
* Updates NewsLetterSubscription information by ID.
|
|
18166
18273
|
* @summary Update an existing NewsLetterSubscription
|
|
@@ -18170,7 +18277,7 @@ export declare class NewsLettersApi extends BaseAPI {
|
|
|
18170
18277
|
* @throws {RequiredError}
|
|
18171
18278
|
* @memberof NewsLettersApi
|
|
18172
18279
|
*/
|
|
18173
|
-
miscNewsLettersIdPut(id: number, newsLetterRequest: DataTypesNewsLetterRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
18280
|
+
miscNewsLettersIdPut(id: number, newsLetterRequest: DataTypesNewsLetterRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
18174
18281
|
/**
|
|
18175
18282
|
* Adds a new NewsLetterSubscription to the system
|
|
18176
18283
|
* @summary Creates a new NewsLetterSubscription
|
|
@@ -18179,7 +18286,7 @@ export declare class NewsLettersApi extends BaseAPI {
|
|
|
18179
18286
|
* @throws {RequiredError}
|
|
18180
18287
|
* @memberof NewsLettersApi
|
|
18181
18288
|
*/
|
|
18182
|
-
miscNewsLettersPost(newsLetterRequest: DataTypesNewsLetterRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
18289
|
+
miscNewsLettersPost(newsLetterRequest: DataTypesNewsLetterRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
18183
18290
|
/**
|
|
18184
18291
|
* Updates UpdateNewsLetterStatus information by ID.
|
|
18185
18292
|
* @summary Update an existing UpdateNewsLetterStatus
|
|
@@ -18189,7 +18296,7 @@ export declare class NewsLettersApi extends BaseAPI {
|
|
|
18189
18296
|
* @throws {RequiredError}
|
|
18190
18297
|
* @memberof NewsLettersApi
|
|
18191
18298
|
*/
|
|
18192
|
-
miscNewsLettersUpdateStatusIdStatusPut(id: number, status: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
18299
|
+
miscNewsLettersUpdateStatusIdStatusPut(id: number, status: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
18193
18300
|
}
|
|
18194
18301
|
/**
|
|
18195
18302
|
* OnboardingApi - axios parameter creator
|
|
@@ -18427,7 +18534,7 @@ export declare class OnboardingApi extends BaseAPI {
|
|
|
18427
18534
|
* @throws {RequiredError}
|
|
18428
18535
|
* @memberof OnboardingApi
|
|
18429
18536
|
*/
|
|
18430
|
-
adminV1UsersOnboardingGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOnboardingResponseWrapper, any>>;
|
|
18537
|
+
adminV1UsersOnboardingGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOnboardingResponseWrapper, any, {}>>;
|
|
18431
18538
|
/**
|
|
18432
18539
|
* Get job status
|
|
18433
18540
|
* @summary Get job status
|
|
@@ -18436,7 +18543,7 @@ export declare class OnboardingApi extends BaseAPI {
|
|
|
18436
18543
|
* @throws {RequiredError}
|
|
18437
18544
|
* @memberof OnboardingApi
|
|
18438
18545
|
*/
|
|
18439
|
-
adminV1UsersOnboardingJobstatusJobidGet(jobid: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesJobStatusResponseWrapper, any>>;
|
|
18546
|
+
adminV1UsersOnboardingJobstatusJobidGet(jobid: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesJobStatusResponseWrapper, any, {}>>;
|
|
18440
18547
|
/**
|
|
18441
18548
|
* Updates onboardingstep and merges new data into onboardingdata JSON
|
|
18442
18549
|
* @summary Update user onboarding step
|
|
@@ -18445,7 +18552,7 @@ export declare class OnboardingApi extends BaseAPI {
|
|
|
18445
18552
|
* @throws {RequiredError}
|
|
18446
18553
|
* @memberof OnboardingApi
|
|
18447
18554
|
*/
|
|
18448
|
-
adminV1UsersOnboardingPost(body: DataTypesOnboardingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOnboardingResponseWrapper, any>>;
|
|
18555
|
+
adminV1UsersOnboardingPost(body: DataTypesOnboardingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOnboardingResponseWrapper, any, {}>>;
|
|
18449
18556
|
/**
|
|
18450
18557
|
* Uploads a custom schema JSON file for onboarding and stores it into onboardingdata.customSchema
|
|
18451
18558
|
* @summary Upload custom schema JSON
|
|
@@ -18454,7 +18561,7 @@ export declare class OnboardingApi extends BaseAPI {
|
|
|
18454
18561
|
* @throws {RequiredError}
|
|
18455
18562
|
* @memberof OnboardingApi
|
|
18456
18563
|
*/
|
|
18457
|
-
adminV1UsersOnboardingSchemaUploadPost(file: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
18564
|
+
adminV1UsersOnboardingSchemaUploadPost(file: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
18458
18565
|
/**
|
|
18459
18566
|
* Get schema options
|
|
18460
18567
|
* @summary Get schema options
|
|
@@ -18462,7 +18569,7 @@ export declare class OnboardingApi extends BaseAPI {
|
|
|
18462
18569
|
* @throws {RequiredError}
|
|
18463
18570
|
* @memberof OnboardingApi
|
|
18464
18571
|
*/
|
|
18465
|
-
adminV1UsersOnboardingSchemaoptionsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSchemaOptionsResponseWrapper, any>>;
|
|
18572
|
+
adminV1UsersOnboardingSchemaoptionsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSchemaOptionsResponseWrapper, any, {}>>;
|
|
18466
18573
|
/**
|
|
18467
18574
|
* Test search endpoint
|
|
18468
18575
|
* @summary Test search
|
|
@@ -18471,7 +18578,7 @@ export declare class OnboardingApi extends BaseAPI {
|
|
|
18471
18578
|
* @throws {RequiredError}
|
|
18472
18579
|
* @memberof OnboardingApi
|
|
18473
18580
|
*/
|
|
18474
|
-
adminV1UsersOnboardingSearchGet(q: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOnboardingTestSearchResponseWrapper, any>>;
|
|
18581
|
+
adminV1UsersOnboardingSearchGet(q: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOnboardingTestSearchResponseWrapper, any, {}>>;
|
|
18475
18582
|
/**
|
|
18476
18583
|
* Get store key
|
|
18477
18584
|
* @summary Get store key
|
|
@@ -18479,7 +18586,7 @@ export declare class OnboardingApi extends BaseAPI {
|
|
|
18479
18586
|
* @throws {RequiredError}
|
|
18480
18587
|
* @memberof OnboardingApi
|
|
18481
18588
|
*/
|
|
18482
|
-
adminV1UsersOnboardingStorekeyGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesStoreKeyResponseWrapper, any>>;
|
|
18589
|
+
adminV1UsersOnboardingStorekeyGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesStoreKeyResponseWrapper, any, {}>>;
|
|
18483
18590
|
/**
|
|
18484
18591
|
* Upload source data
|
|
18485
18592
|
* @summary Upload source data
|
|
@@ -18488,7 +18595,7 @@ export declare class OnboardingApi extends BaseAPI {
|
|
|
18488
18595
|
* @throws {RequiredError}
|
|
18489
18596
|
* @memberof OnboardingApi
|
|
18490
18597
|
*/
|
|
18491
|
-
adminV1UsersOnboardingUploaddataPost(file: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUploadSourceDataResponseWrapper, any>>;
|
|
18598
|
+
adminV1UsersOnboardingUploaddataPost(file: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUploadSourceDataResponseWrapper, any, {}>>;
|
|
18492
18599
|
/**
|
|
18493
18600
|
* Get sample datasets
|
|
18494
18601
|
* @summary Get sample datasets
|
|
@@ -18496,7 +18603,7 @@ export declare class OnboardingApi extends BaseAPI {
|
|
|
18496
18603
|
* @throws {RequiredError}
|
|
18497
18604
|
* @memberof OnboardingApi
|
|
18498
18605
|
*/
|
|
18499
|
-
adminV1UsersSampledatasetsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSampleDatasetsResponseWrapper, any>>;
|
|
18606
|
+
adminV1UsersSampledatasetsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSampleDatasetsResponseWrapper, any, {}>>;
|
|
18500
18607
|
}
|
|
18501
18608
|
/**
|
|
18502
18609
|
* OrganizationsApi - axios parameter creator
|
|
@@ -18653,7 +18760,7 @@ export declare class OrganizationsApi extends BaseAPI {
|
|
|
18653
18760
|
* @throws {RequiredError}
|
|
18654
18761
|
* @memberof OrganizationsApi
|
|
18655
18762
|
*/
|
|
18656
|
-
adminOrganizationsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOrganizationsListResponse, any>>;
|
|
18763
|
+
adminOrganizationsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOrganizationsListResponse, any, {}>>;
|
|
18657
18764
|
/**
|
|
18658
18765
|
* Updates Orgnization information by ID.
|
|
18659
18766
|
* @summary Update an existing Orgnization
|
|
@@ -18663,7 +18770,7 @@ export declare class OrganizationsApi extends BaseAPI {
|
|
|
18663
18770
|
* @throws {RequiredError}
|
|
18664
18771
|
* @memberof OrganizationsApi
|
|
18665
18772
|
*/
|
|
18666
|
-
adminOrganizationsIdPut(id: number, organization: DataTypesCreateOrganizationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
18773
|
+
adminOrganizationsIdPut(id: number, organization: DataTypesCreateOrganizationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
18667
18774
|
/**
|
|
18668
18775
|
* Fetches Orgnization by Id
|
|
18669
18776
|
* @summary Fetches Orgnization by Id
|
|
@@ -18672,7 +18779,7 @@ export declare class OrganizationsApi extends BaseAPI {
|
|
|
18672
18779
|
* @throws {RequiredError}
|
|
18673
18780
|
* @memberof OrganizationsApi
|
|
18674
18781
|
*/
|
|
18675
|
-
adminOrganizationsOrgIdGet(orgId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOrganizationResponse, any>>;
|
|
18782
|
+
adminOrganizationsOrgIdGet(orgId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOrganizationResponse, any, {}>>;
|
|
18676
18783
|
/**
|
|
18677
18784
|
* Adds a new Orgnization
|
|
18678
18785
|
* @summary Creates a new Orgnization
|
|
@@ -18681,7 +18788,7 @@ export declare class OrganizationsApi extends BaseAPI {
|
|
|
18681
18788
|
* @throws {RequiredError}
|
|
18682
18789
|
* @memberof OrganizationsApi
|
|
18683
18790
|
*/
|
|
18684
|
-
adminOrganizationsPost(organzation: DataTypesCreateOrganizationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
18791
|
+
adminOrganizationsPost(organzation: DataTypesCreateOrganizationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
18685
18792
|
/**
|
|
18686
18793
|
* Deletes a Orgnization from the system by ID.
|
|
18687
18794
|
* @summary Delete a Orgnization
|
|
@@ -18691,7 +18798,7 @@ export declare class OrganizationsApi extends BaseAPI {
|
|
|
18691
18798
|
* @throws {RequiredError}
|
|
18692
18799
|
* @memberof OrganizationsApi
|
|
18693
18800
|
*/
|
|
18694
|
-
adminOrganizationsUpdateStatusIdStatusDelete(id: number, status: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
18801
|
+
adminOrganizationsUpdateStatusIdStatusDelete(id: number, status: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
18695
18802
|
}
|
|
18696
18803
|
/**
|
|
18697
18804
|
* ParentMenusApi - axios parameter creator
|
|
@@ -18845,7 +18952,7 @@ export declare class ParentMenusApi extends BaseAPI {
|
|
|
18845
18952
|
* @throws {RequiredError}
|
|
18846
18953
|
* @memberof ParentMenusApi
|
|
18847
18954
|
*/
|
|
18848
|
-
miscParentMenusGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesParentMenusListResponse, any>>;
|
|
18955
|
+
miscParentMenusGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesParentMenusListResponse, any, {}>>;
|
|
18849
18956
|
/**
|
|
18850
18957
|
* Deletes a parent menu from the system by ID.
|
|
18851
18958
|
* @summary Delete a parent menu
|
|
@@ -18854,7 +18961,7 @@ export declare class ParentMenusApi extends BaseAPI {
|
|
|
18854
18961
|
* @throws {RequiredError}
|
|
18855
18962
|
* @memberof ParentMenusApi
|
|
18856
18963
|
*/
|
|
18857
|
-
miscParentMenusIdDelete(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
18964
|
+
miscParentMenusIdDelete(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
18858
18965
|
/**
|
|
18859
18966
|
* Fetches parent menus by id
|
|
18860
18967
|
* @summary Fetches parent menus by id
|
|
@@ -18863,7 +18970,7 @@ export declare class ParentMenusApi extends BaseAPI {
|
|
|
18863
18970
|
* @throws {RequiredError}
|
|
18864
18971
|
* @memberof ParentMenusApi
|
|
18865
18972
|
*/
|
|
18866
|
-
miscParentMenusIdGet(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesParentMenuResponse, any>>;
|
|
18973
|
+
miscParentMenusIdGet(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesParentMenuResponse, any, {}>>;
|
|
18867
18974
|
/**
|
|
18868
18975
|
* Updates parent menu information by ID.
|
|
18869
18976
|
* @summary Update an existing parent menu
|
|
@@ -18873,7 +18980,7 @@ export declare class ParentMenusApi extends BaseAPI {
|
|
|
18873
18980
|
* @throws {RequiredError}
|
|
18874
18981
|
* @memberof ParentMenusApi
|
|
18875
18982
|
*/
|
|
18876
|
-
miscParentMenusIdPut(id: number, parentMenu: DataTypesParentMenu, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
18983
|
+
miscParentMenusIdPut(id: number, parentMenu: DataTypesParentMenu, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
18877
18984
|
/**
|
|
18878
18985
|
* Adds a new parent menu to the system
|
|
18879
18986
|
* @summary Creates a new parent menu
|
|
@@ -18882,7 +18989,7 @@ export declare class ParentMenusApi extends BaseAPI {
|
|
|
18882
18989
|
* @throws {RequiredError}
|
|
18883
18990
|
* @memberof ParentMenusApi
|
|
18884
18991
|
*/
|
|
18885
|
-
miscParentMenusPost(parentMenu: DataTypesParentMenu, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
18992
|
+
miscParentMenusPost(parentMenu: DataTypesParentMenu, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
18886
18993
|
}
|
|
18887
18994
|
/**
|
|
18888
18995
|
* PaymentGatewayApi - axios parameter creator
|
|
@@ -19031,7 +19138,7 @@ export declare class PaymentGatewayApi extends BaseAPI {
|
|
|
19031
19138
|
* @throws {RequiredError}
|
|
19032
19139
|
* @memberof PaymentGatewayApi
|
|
19033
19140
|
*/
|
|
19034
|
-
paymentGatewayCreateOrderPost(order: DataTypesCreatePaymentOrderRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCreatePaymentOrderResponse, any>>;
|
|
19141
|
+
paymentGatewayCreateOrderPost(order: DataTypesCreatePaymentOrderRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCreatePaymentOrderResponse, any, {}>>;
|
|
19035
19142
|
/**
|
|
19036
19143
|
* Returns list of all active credit plans for purchase
|
|
19037
19144
|
* @summary Get available credit plans
|
|
@@ -19039,7 +19146,7 @@ export declare class PaymentGatewayApi extends BaseAPI {
|
|
|
19039
19146
|
* @throws {RequiredError}
|
|
19040
19147
|
* @memberof PaymentGatewayApi
|
|
19041
19148
|
*/
|
|
19042
|
-
paymentGatewayCreditPlansGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCreditPlan[], any>>;
|
|
19149
|
+
paymentGatewayCreditPlansGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCreditPlan[], any, {}>>;
|
|
19043
19150
|
/**
|
|
19044
19151
|
* Returns list of all available payment gateways
|
|
19045
19152
|
* @summary Get available payment gateways
|
|
@@ -19047,7 +19154,7 @@ export declare class PaymentGatewayApi extends BaseAPI {
|
|
|
19047
19154
|
* @throws {RequiredError}
|
|
19048
19155
|
* @memberof PaymentGatewayApi
|
|
19049
19156
|
*/
|
|
19050
|
-
paymentGatewayGatewaysGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGatewayListResponse, any>>;
|
|
19157
|
+
paymentGatewayGatewaysGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGatewayListResponse, any, {}>>;
|
|
19051
19158
|
/**
|
|
19052
19159
|
* Processes a refund for a completed payment
|
|
19053
19160
|
* @summary Process payment refund
|
|
@@ -19056,7 +19163,7 @@ export declare class PaymentGatewayApi extends BaseAPI {
|
|
|
19056
19163
|
* @throws {RequiredError}
|
|
19057
19164
|
* @memberof PaymentGatewayApi
|
|
19058
19165
|
*/
|
|
19059
|
-
paymentGatewayRefundPost(refund: DataTypesRefundRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRefundResponseDto, any>>;
|
|
19166
|
+
paymentGatewayRefundPost(refund: DataTypesRefundRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRefundResponseDto, any, {}>>;
|
|
19060
19167
|
/**
|
|
19061
19168
|
* Verifies the current status of a payment
|
|
19062
19169
|
* @summary Verify payment status
|
|
@@ -19065,7 +19172,7 @@ export declare class PaymentGatewayApi extends BaseAPI {
|
|
|
19065
19172
|
* @throws {RequiredError}
|
|
19066
19173
|
* @memberof PaymentGatewayApi
|
|
19067
19174
|
*/
|
|
19068
|
-
paymentGatewayVerifyPost(verify: DataTypesVerifyPaymentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPaymentStatusResponse, any>>;
|
|
19175
|
+
paymentGatewayVerifyPost(verify: DataTypesVerifyPaymentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPaymentStatusResponse, any, {}>>;
|
|
19069
19176
|
}
|
|
19070
19177
|
/**
|
|
19071
19178
|
* PaymentsApi - axios parameter creator
|
|
@@ -19219,7 +19326,7 @@ export declare class PaymentsApi extends BaseAPI {
|
|
|
19219
19326
|
* @throws {RequiredError}
|
|
19220
19327
|
* @memberof PaymentsApi
|
|
19221
19328
|
*/
|
|
19222
|
-
adminPaymentsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPaymentsListResponse, any>>;
|
|
19329
|
+
adminPaymentsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPaymentsListResponse, any, {}>>;
|
|
19223
19330
|
/**
|
|
19224
19331
|
* Deletes a payment from the system by ID.
|
|
19225
19332
|
* @summary Delete a payment
|
|
@@ -19228,7 +19335,7 @@ export declare class PaymentsApi extends BaseAPI {
|
|
|
19228
19335
|
* @throws {RequiredError}
|
|
19229
19336
|
* @memberof PaymentsApi
|
|
19230
19337
|
*/
|
|
19231
|
-
adminPaymentsPaymentIDDelete(paymentID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
19338
|
+
adminPaymentsPaymentIDDelete(paymentID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
19232
19339
|
/**
|
|
19233
19340
|
* Fetches payment by id
|
|
19234
19341
|
* @summary Fetches payment by id
|
|
@@ -19237,7 +19344,7 @@ export declare class PaymentsApi extends BaseAPI {
|
|
|
19237
19344
|
* @throws {RequiredError}
|
|
19238
19345
|
* @memberof PaymentsApi
|
|
19239
19346
|
*/
|
|
19240
|
-
adminPaymentsPaymentIDGet(paymentID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPaymentResponse, any>>;
|
|
19347
|
+
adminPaymentsPaymentIDGet(paymentID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPaymentResponse, any, {}>>;
|
|
19241
19348
|
/**
|
|
19242
19349
|
* Updates payment information by ID.
|
|
19243
19350
|
* @summary Update an existing payment
|
|
@@ -19247,7 +19354,7 @@ export declare class PaymentsApi extends BaseAPI {
|
|
|
19247
19354
|
* @throws {RequiredError}
|
|
19248
19355
|
* @memberof PaymentsApi
|
|
19249
19356
|
*/
|
|
19250
|
-
adminPaymentsPaymentIDPut(paymentID: number, payment: DataTypesPaymentRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
19357
|
+
adminPaymentsPaymentIDPut(paymentID: number, payment: DataTypesPaymentRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
19251
19358
|
/**
|
|
19252
19359
|
* Adds a new payment to the system
|
|
19253
19360
|
* @summary Creates a new payment
|
|
@@ -19256,7 +19363,7 @@ export declare class PaymentsApi extends BaseAPI {
|
|
|
19256
19363
|
* @throws {RequiredError}
|
|
19257
19364
|
* @memberof PaymentsApi
|
|
19258
19365
|
*/
|
|
19259
|
-
adminPaymentsPost(payment: DataTypesPaymentRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
19366
|
+
adminPaymentsPost(payment: DataTypesPaymentRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
19260
19367
|
}
|
|
19261
19368
|
/**
|
|
19262
19369
|
* PlansApi - axios parameter creator
|
|
@@ -19413,7 +19520,7 @@ export declare class PlansApi extends BaseAPI {
|
|
|
19413
19520
|
* @throws {RequiredError}
|
|
19414
19521
|
* @memberof PlansApi
|
|
19415
19522
|
*/
|
|
19416
|
-
miscPlansGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPlansListResponse, any>>;
|
|
19523
|
+
miscPlansGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPlansListResponse, any, {}>>;
|
|
19417
19524
|
/**
|
|
19418
19525
|
* Fetches plan by id
|
|
19419
19526
|
* @summary Fetches plan by id
|
|
@@ -19422,7 +19529,7 @@ export declare class PlansApi extends BaseAPI {
|
|
|
19422
19529
|
* @throws {RequiredError}
|
|
19423
19530
|
* @memberof PlansApi
|
|
19424
19531
|
*/
|
|
19425
|
-
miscPlansPlanIDGet(planID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPlanResponse, any>>;
|
|
19532
|
+
miscPlansPlanIDGet(planID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPlanResponse, any, {}>>;
|
|
19426
19533
|
/**
|
|
19427
19534
|
* Update plan information by ID.
|
|
19428
19535
|
* @summary Update an existing Plan
|
|
@@ -19432,7 +19539,7 @@ export declare class PlansApi extends BaseAPI {
|
|
|
19432
19539
|
* @throws {RequiredError}
|
|
19433
19540
|
* @memberof PlansApi
|
|
19434
19541
|
*/
|
|
19435
|
-
miscPlansPlanIDPut(planID: number, plan: DataTypesPlan, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
19542
|
+
miscPlansPlanIDPut(planID: number, plan: DataTypesPlan, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
19436
19543
|
/**
|
|
19437
19544
|
* Adds a new plan to the system
|
|
19438
19545
|
* @summary Creates a new plan
|
|
@@ -19441,7 +19548,7 @@ export declare class PlansApi extends BaseAPI {
|
|
|
19441
19548
|
* @throws {RequiredError}
|
|
19442
19549
|
* @memberof PlansApi
|
|
19443
19550
|
*/
|
|
19444
|
-
miscPlansPost(plan: DataTypesCreatePlanRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
19551
|
+
miscPlansPost(plan: DataTypesCreatePlanRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
19445
19552
|
/**
|
|
19446
19553
|
* Updates plan status information by ID.
|
|
19447
19554
|
* @summary Update an existing plan status
|
|
@@ -19451,7 +19558,7 @@ export declare class PlansApi extends BaseAPI {
|
|
|
19451
19558
|
* @throws {RequiredError}
|
|
19452
19559
|
* @memberof PlansApi
|
|
19453
19560
|
*/
|
|
19454
|
-
miscPlansUpdateStatusPlanIDStatusPut(planID: number, status: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
19561
|
+
miscPlansUpdateStatusPlanIDStatusPut(planID: number, status: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
19455
19562
|
}
|
|
19456
19563
|
/**
|
|
19457
19564
|
* PluralsDeclensionsApi - axios parameter creator
|
|
@@ -19828,7 +19935,7 @@ export declare class PluralsDeclensionsApi extends BaseAPI {
|
|
|
19828
19935
|
* @throws {RequiredError}
|
|
19829
19936
|
* @memberof PluralsDeclensionsApi
|
|
19830
19937
|
*/
|
|
19831
|
-
adminDefaultDeclensionsCategoriesGet(language?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseArrayString, any>>;
|
|
19938
|
+
adminDefaultDeclensionsCategoriesGet(language?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseArrayString, any, {}>>;
|
|
19832
19939
|
/**
|
|
19833
19940
|
* Get list of available languages in default declensions
|
|
19834
19941
|
* @summary Get available languages
|
|
@@ -19836,7 +19943,7 @@ export declare class PluralsDeclensionsApi extends BaseAPI {
|
|
|
19836
19943
|
* @throws {RequiredError}
|
|
19837
19944
|
* @memberof PluralsDeclensionsApi
|
|
19838
19945
|
*/
|
|
19839
|
-
adminDefaultDeclensionsLanguagesGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseArrayString, any>>;
|
|
19946
|
+
adminDefaultDeclensionsLanguagesGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseArrayString, any, {}>>;
|
|
19840
19947
|
/**
|
|
19841
19948
|
* Search default declensions that can be used as templates for creating custom declensions
|
|
19842
19949
|
* @summary Search default declensions
|
|
@@ -19849,7 +19956,7 @@ export declare class PluralsDeclensionsApi extends BaseAPI {
|
|
|
19849
19956
|
* @throws {RequiredError}
|
|
19850
19957
|
* @memberof PluralsDeclensionsApi
|
|
19851
19958
|
*/
|
|
19852
|
-
adminDefaultDeclensionsSearchGet(lang?: string, category?: string, search?: string, page?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesDefaultDeclensionsResponseWrapper, any>>;
|
|
19959
|
+
adminDefaultDeclensionsSearchGet(lang?: string, category?: string, search?: string, page?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesDefaultDeclensionsResponseWrapper, any, {}>>;
|
|
19853
19960
|
/**
|
|
19854
19961
|
* Bulk upload plural/declension groups from JSON array
|
|
19855
19962
|
* @summary Bulk upload plural/declension groups
|
|
@@ -19859,7 +19966,7 @@ export declare class PluralsDeclensionsApi extends BaseAPI {
|
|
|
19859
19966
|
* @throws {RequiredError}
|
|
19860
19967
|
* @memberof PluralsDeclensionsApi
|
|
19861
19968
|
*/
|
|
19862
|
-
adminStoresXStoreIDPluralsDeclensionsBulkUploadPost(xStoreID: string, body: DataTypesBulkUploadPluralDeclensionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesBulkUploadResponseWrapper, any>>;
|
|
19969
|
+
adminStoresXStoreIDPluralsDeclensionsBulkUploadPost(xStoreID: string, body: DataTypesBulkUploadPluralDeclensionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesBulkUploadResponseWrapper, any, {}>>;
|
|
19863
19970
|
/**
|
|
19864
19971
|
* Export plural/declension groups for a store to CSV format
|
|
19865
19972
|
* @summary Export plural/declension groups to CSV
|
|
@@ -19870,7 +19977,7 @@ export declare class PluralsDeclensionsApi extends BaseAPI {
|
|
|
19870
19977
|
* @throws {RequiredError}
|
|
19871
19978
|
* @memberof PluralsDeclensionsApi
|
|
19872
19979
|
*/
|
|
19873
|
-
adminStoresXStoreIDPluralsDeclensionsExportCsvGet(xStoreID: string, language?: string, type?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any>>;
|
|
19980
|
+
adminStoresXStoreIDPluralsDeclensionsExportCsvGet(xStoreID: string, language?: string, type?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any, {}>>;
|
|
19874
19981
|
/**
|
|
19875
19982
|
* Fetches plural/declension groups for a store with pagination
|
|
19876
19983
|
* @summary Get plural/declension groups
|
|
@@ -19884,7 +19991,7 @@ export declare class PluralsDeclensionsApi extends BaseAPI {
|
|
|
19884
19991
|
* @throws {RequiredError}
|
|
19885
19992
|
* @memberof PluralsDeclensionsApi
|
|
19886
19993
|
*/
|
|
19887
|
-
adminStoresXStoreIDPluralsDeclensionsGet(xStoreID: string, language?: string, type?: string, q?: string, page?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPluralDeclensionsResponseWrapper, any>>;
|
|
19994
|
+
adminStoresXStoreIDPluralsDeclensionsGet(xStoreID: string, language?: string, type?: string, q?: string, page?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPluralDeclensionsResponseWrapper, any, {}>>;
|
|
19888
19995
|
/**
|
|
19889
19996
|
* Deletes a plural/declension group (soft delete)
|
|
19890
19997
|
* @summary Delete plural/declension group
|
|
@@ -19894,7 +20001,7 @@ export declare class PluralsDeclensionsApi extends BaseAPI {
|
|
|
19894
20001
|
* @throws {RequiredError}
|
|
19895
20002
|
* @memberof PluralsDeclensionsApi
|
|
19896
20003
|
*/
|
|
19897
|
-
adminStoresXStoreIDPluralsDeclensionsPluralDeclensionIDDelete(xStoreID: string, pluralDeclensionID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
20004
|
+
adminStoresXStoreIDPluralsDeclensionsPluralDeclensionIDDelete(xStoreID: string, pluralDeclensionID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
19898
20005
|
/**
|
|
19899
20006
|
* Fetches a specific plural/declension group by ID
|
|
19900
20007
|
* @summary Get plural/declension group by ID
|
|
@@ -19904,7 +20011,7 @@ export declare class PluralsDeclensionsApi extends BaseAPI {
|
|
|
19904
20011
|
* @throws {RequiredError}
|
|
19905
20012
|
* @memberof PluralsDeclensionsApi
|
|
19906
20013
|
*/
|
|
19907
|
-
adminStoresXStoreIDPluralsDeclensionsPluralDeclensionIDGet(xStoreID: string, pluralDeclensionID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPluralDeclensionResponseWrapper, any>>;
|
|
20014
|
+
adminStoresXStoreIDPluralsDeclensionsPluralDeclensionIDGet(xStoreID: string, pluralDeclensionID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPluralDeclensionResponseWrapper, any, {}>>;
|
|
19908
20015
|
/**
|
|
19909
20016
|
* Updates a plural/declension group
|
|
19910
20017
|
* @summary Update plural/declension group
|
|
@@ -19915,7 +20022,7 @@ export declare class PluralsDeclensionsApi extends BaseAPI {
|
|
|
19915
20022
|
* @throws {RequiredError}
|
|
19916
20023
|
* @memberof PluralsDeclensionsApi
|
|
19917
20024
|
*/
|
|
19918
|
-
adminStoresXStoreIDPluralsDeclensionsPluralDeclensionIDPut(xStoreID: string, pluralDeclensionID: number, body: DataTypesUpdatePluralDeclensionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
20025
|
+
adminStoresXStoreIDPluralsDeclensionsPluralDeclensionIDPut(xStoreID: string, pluralDeclensionID: number, body: DataTypesUpdatePluralDeclensionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
19919
20026
|
/**
|
|
19920
20027
|
* Creates a new plural/declension group for a store
|
|
19921
20028
|
* @summary Create plural/declension group
|
|
@@ -19925,7 +20032,7 @@ export declare class PluralsDeclensionsApi extends BaseAPI {
|
|
|
19925
20032
|
* @throws {RequiredError}
|
|
19926
20033
|
* @memberof PluralsDeclensionsApi
|
|
19927
20034
|
*/
|
|
19928
|
-
adminStoresXStoreIDPluralsDeclensionsPost(xStoreID: string, body: DataTypesCreatePluralDeclensionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPluralDeclensionResponseWrapper, any>>;
|
|
20035
|
+
adminStoresXStoreIDPluralsDeclensionsPost(xStoreID: string, body: DataTypesCreatePluralDeclensionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPluralDeclensionResponseWrapper, any, {}>>;
|
|
19929
20036
|
/**
|
|
19930
20037
|
* Upload plural/declension groups from CSV file
|
|
19931
20038
|
* @summary Upload plural/declension groups from CSV file
|
|
@@ -19935,7 +20042,7 @@ export declare class PluralsDeclensionsApi extends BaseAPI {
|
|
|
19935
20042
|
* @throws {RequiredError}
|
|
19936
20043
|
* @memberof PluralsDeclensionsApi
|
|
19937
20044
|
*/
|
|
19938
|
-
adminStoresXStoreIDPluralsDeclensionsUploadCsvPost(xStoreID: string, file: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesBulkUploadResponseWrapper, any>>;
|
|
20045
|
+
adminStoresXStoreIDPluralsDeclensionsUploadCsvPost(xStoreID: string, file: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesBulkUploadResponseWrapper, any, {}>>;
|
|
19939
20046
|
/**
|
|
19940
20047
|
* Upload plural/declension groups from JSON file
|
|
19941
20048
|
* @summary Upload plural/declension groups from JSON file
|
|
@@ -19945,7 +20052,7 @@ export declare class PluralsDeclensionsApi extends BaseAPI {
|
|
|
19945
20052
|
* @throws {RequiredError}
|
|
19946
20053
|
* @memberof PluralsDeclensionsApi
|
|
19947
20054
|
*/
|
|
19948
|
-
adminStoresXStoreIDPluralsDeclensionsUploadJsonPost(xStoreID: string, file: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesBulkUploadResponseWrapper, any>>;
|
|
20055
|
+
adminStoresXStoreIDPluralsDeclensionsUploadJsonPost(xStoreID: string, file: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesBulkUploadResponseWrapper, any, {}>>;
|
|
19949
20056
|
}
|
|
19950
20057
|
/**
|
|
19951
20058
|
* RegisterApi - axios parameter creator
|
|
@@ -20048,7 +20155,7 @@ export declare class RegisterApi extends BaseAPI {
|
|
|
20048
20155
|
* @throws {RequiredError}
|
|
20049
20156
|
* @memberof RegisterApi
|
|
20050
20157
|
*/
|
|
20051
|
-
registerUsersOtpResendPost(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
20158
|
+
registerUsersOtpResendPost(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
20052
20159
|
/**
|
|
20053
20160
|
* Verifies OTP and marks user as verified
|
|
20054
20161
|
* @summary Verify OTP
|
|
@@ -20057,7 +20164,7 @@ export declare class RegisterApi extends BaseAPI {
|
|
|
20057
20164
|
* @throws {RequiredError}
|
|
20058
20165
|
* @memberof RegisterApi
|
|
20059
20166
|
*/
|
|
20060
|
-
registerUsersOtpVerifyPost(body: DataTypesOTPPayload, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesVerifyOTPResponseWrapper, any>>;
|
|
20167
|
+
registerUsersOtpVerifyPost(body: DataTypesOTPPayload, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesVerifyOTPResponseWrapper, any, {}>>;
|
|
20061
20168
|
/**
|
|
20062
20169
|
* Creates a new user and sends OTP to email
|
|
20063
20170
|
* @summary Register new user
|
|
@@ -20066,7 +20173,7 @@ export declare class RegisterApi extends BaseAPI {
|
|
|
20066
20173
|
* @throws {RequiredError}
|
|
20067
20174
|
* @memberof RegisterApi
|
|
20068
20175
|
*/
|
|
20069
|
-
registerUsersPost(payload: DataTypesCreateUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCreateUserResponseWrapper, any>>;
|
|
20176
|
+
registerUsersPost(payload: DataTypesCreateUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCreateUserResponseWrapper, any, {}>>;
|
|
20070
20177
|
}
|
|
20071
20178
|
/**
|
|
20072
20179
|
* RequestsApi - axios parameter creator
|
|
@@ -20247,7 +20354,7 @@ export declare class RequestsApi extends BaseAPI {
|
|
|
20247
20354
|
* @throws {RequiredError}
|
|
20248
20355
|
* @memberof RequestsApi
|
|
20249
20356
|
*/
|
|
20250
|
-
miscRequestsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesServiceRequestsListResponse, any>>;
|
|
20357
|
+
miscRequestsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesServiceRequestsListResponse, any, {}>>;
|
|
20251
20358
|
/**
|
|
20252
20359
|
* Updates ServiceRequest information by ID.
|
|
20253
20360
|
* @summary Deletes an existing ServiceRequest
|
|
@@ -20256,7 +20363,7 @@ export declare class RequestsApi extends BaseAPI {
|
|
|
20256
20363
|
* @throws {RequiredError}
|
|
20257
20364
|
* @memberof RequestsApi
|
|
20258
20365
|
*/
|
|
20259
|
-
miscRequestsIdDelete(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
20366
|
+
miscRequestsIdDelete(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
20260
20367
|
/**
|
|
20261
20368
|
* Updates ServiceRequest information by ID.
|
|
20262
20369
|
* @summary Update an existing ServiceRequest
|
|
@@ -20266,7 +20373,7 @@ export declare class RequestsApi extends BaseAPI {
|
|
|
20266
20373
|
* @throws {RequiredError}
|
|
20267
20374
|
* @memberof RequestsApi
|
|
20268
20375
|
*/
|
|
20269
|
-
miscRequestsIdPut(id: number, serviceRequest: DataTypesServiceRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
20376
|
+
miscRequestsIdPut(id: number, serviceRequest: DataTypesServiceRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
20270
20377
|
/**
|
|
20271
20378
|
* Adds a new ServiceRequest to the system
|
|
20272
20379
|
* @summary Creates a new ServiceRequest
|
|
@@ -20275,7 +20382,7 @@ export declare class RequestsApi extends BaseAPI {
|
|
|
20275
20382
|
* @throws {RequiredError}
|
|
20276
20383
|
* @memberof RequestsApi
|
|
20277
20384
|
*/
|
|
20278
|
-
miscRequestsPost(serviceRequest: DataTypesServiceRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
20385
|
+
miscRequestsPost(serviceRequest: DataTypesServiceRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
20279
20386
|
/**
|
|
20280
20387
|
* Fetches ServiceRequest by id
|
|
20281
20388
|
* @summary Fetches ServiceRequest by id
|
|
@@ -20284,7 +20391,7 @@ export declare class RequestsApi extends BaseAPI {
|
|
|
20284
20391
|
* @throws {RequiredError}
|
|
20285
20392
|
* @memberof RequestsApi
|
|
20286
20393
|
*/
|
|
20287
|
-
miscRequestsRequestIdGet(requestId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesServiceRequestResponse, any>>;
|
|
20394
|
+
miscRequestsRequestIdGet(requestId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesServiceRequestResponse, any, {}>>;
|
|
20288
20395
|
/**
|
|
20289
20396
|
* Updates ServiceRequest status information by ID.
|
|
20290
20397
|
* @summary Update an existing ServiceRequest status
|
|
@@ -20294,7 +20401,7 @@ export declare class RequestsApi extends BaseAPI {
|
|
|
20294
20401
|
* @throws {RequiredError}
|
|
20295
20402
|
* @memberof RequestsApi
|
|
20296
20403
|
*/
|
|
20297
|
-
miscRequestsUpdateStatusIdStatusPut(id: number, status: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
20404
|
+
miscRequestsUpdateStatusIdStatusPut(id: number, status: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
20298
20405
|
}
|
|
20299
20406
|
/**
|
|
20300
20407
|
* RoleRightsApi - axios parameter creator
|
|
@@ -20521,7 +20628,7 @@ export declare class RoleRightsApi extends BaseAPI {
|
|
|
20521
20628
|
* @throws {RequiredError}
|
|
20522
20629
|
* @memberof RoleRightsApi
|
|
20523
20630
|
*/
|
|
20524
|
-
adminRolerightsBulkPost(roleRight: Array<DataTypesRoleRightRequestDto>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
20631
|
+
adminRolerightsBulkPost(roleRight: Array<DataTypesRoleRightRequestDto>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
20525
20632
|
/**
|
|
20526
20633
|
* Fetches list of all roleright
|
|
20527
20634
|
* @summary Fetches list of all roleright
|
|
@@ -20529,7 +20636,7 @@ export declare class RoleRightsApi extends BaseAPI {
|
|
|
20529
20636
|
* @throws {RequiredError}
|
|
20530
20637
|
* @memberof RoleRightsApi
|
|
20531
20638
|
*/
|
|
20532
|
-
adminRolerightsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRoleRightsListResponse, any>>;
|
|
20639
|
+
adminRolerightsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRoleRightsListResponse, any, {}>>;
|
|
20533
20640
|
/**
|
|
20534
20641
|
* Fetches roleright by role id
|
|
20535
20642
|
* @summary Fetches roleright by role id
|
|
@@ -20538,7 +20645,7 @@ export declare class RoleRightsApi extends BaseAPI {
|
|
|
20538
20645
|
* @throws {RequiredError}
|
|
20539
20646
|
* @memberof RoleRightsApi
|
|
20540
20647
|
*/
|
|
20541
|
-
adminRolerightsGetRoleRightsByRoleIdIdGet(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRoleRightResponse, any>>;
|
|
20648
|
+
adminRolerightsGetRoleRightsByRoleIdIdGet(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRoleRightResponse, any, {}>>;
|
|
20542
20649
|
/**
|
|
20543
20650
|
* Fetches roleright by id
|
|
20544
20651
|
* @summary Fetches roleright by id
|
|
@@ -20547,7 +20654,7 @@ export declare class RoleRightsApi extends BaseAPI {
|
|
|
20547
20654
|
* @throws {RequiredError}
|
|
20548
20655
|
* @memberof RoleRightsApi
|
|
20549
20656
|
*/
|
|
20550
|
-
adminRolerightsIdGet(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRoleRightResponse, any>>;
|
|
20657
|
+
adminRolerightsIdGet(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRoleRightResponse, any, {}>>;
|
|
20551
20658
|
/**
|
|
20552
20659
|
* Updates roleright information by ID.
|
|
20553
20660
|
* @summary Update an existing roleright
|
|
@@ -20557,7 +20664,7 @@ export declare class RoleRightsApi extends BaseAPI {
|
|
|
20557
20664
|
* @throws {RequiredError}
|
|
20558
20665
|
* @memberof RoleRightsApi
|
|
20559
20666
|
*/
|
|
20560
|
-
adminRolerightsIdPut(id: number, roleRight: DataTypesRoleRightRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
20667
|
+
adminRolerightsIdPut(id: number, roleRight: DataTypesRoleRightRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
20561
20668
|
/**
|
|
20562
20669
|
* Fetches list of all roleright by orgId
|
|
20563
20670
|
* @summary Fetches list of all roleright by orgId
|
|
@@ -20566,7 +20673,7 @@ export declare class RoleRightsApi extends BaseAPI {
|
|
|
20566
20673
|
* @throws {RequiredError}
|
|
20567
20674
|
* @memberof RoleRightsApi
|
|
20568
20675
|
*/
|
|
20569
|
-
adminRolerightsOrgOrgIdGet(orgId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRoleRightsListResponse, any>>;
|
|
20676
|
+
adminRolerightsOrgOrgIdGet(orgId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRoleRightsListResponse, any, {}>>;
|
|
20570
20677
|
/**
|
|
20571
20678
|
* Adds a new roleright to the system
|
|
20572
20679
|
* @summary Creates a new roleright
|
|
@@ -20575,7 +20682,7 @@ export declare class RoleRightsApi extends BaseAPI {
|
|
|
20575
20682
|
* @throws {RequiredError}
|
|
20576
20683
|
* @memberof RoleRightsApi
|
|
20577
20684
|
*/
|
|
20578
|
-
adminRolerightsPost(roleRight: DataTypesRoleRightRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
20685
|
+
adminRolerightsPost(roleRight: DataTypesRoleRightRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
20579
20686
|
/**
|
|
20580
20687
|
* Fetches list of all roleright by storeid
|
|
20581
20688
|
* @summary Fetches list of all roleright by storeid
|
|
@@ -20584,7 +20691,7 @@ export declare class RoleRightsApi extends BaseAPI {
|
|
|
20584
20691
|
* @throws {RequiredError}
|
|
20585
20692
|
* @memberof RoleRightsApi
|
|
20586
20693
|
*/
|
|
20587
|
-
adminRolerightsStoreStoreIdGet(storeId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRoleRightsListResponse, any>>;
|
|
20694
|
+
adminRolerightsStoreStoreIdGet(storeId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRoleRightsListResponse, any, {}>>;
|
|
20588
20695
|
}
|
|
20589
20696
|
/**
|
|
20590
20697
|
* RolesApi - axios parameter creator
|
|
@@ -20745,7 +20852,7 @@ export declare class RolesApi extends BaseAPI {
|
|
|
20745
20852
|
* @throws {RequiredError}
|
|
20746
20853
|
* @memberof RolesApi
|
|
20747
20854
|
*/
|
|
20748
|
-
adminRolesIdDelete(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
20855
|
+
adminRolesIdDelete(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
20749
20856
|
/**
|
|
20750
20857
|
* Updates role information by ID.
|
|
20751
20858
|
* @summary Update an existing role
|
|
@@ -20755,7 +20862,7 @@ export declare class RolesApi extends BaseAPI {
|
|
|
20755
20862
|
* @throws {RequiredError}
|
|
20756
20863
|
* @memberof RolesApi
|
|
20757
20864
|
*/
|
|
20758
|
-
adminRolesIdPut(id: number, role: DataTypesCreateRoleRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
20865
|
+
adminRolesIdPut(id: number, role: DataTypesCreateRoleRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
20759
20866
|
/**
|
|
20760
20867
|
* Fetches list of all roles
|
|
20761
20868
|
* @summary Fetches list of all roles
|
|
@@ -20764,7 +20871,7 @@ export declare class RolesApi extends BaseAPI {
|
|
|
20764
20871
|
* @throws {RequiredError}
|
|
20765
20872
|
* @memberof RolesApi
|
|
20766
20873
|
*/
|
|
20767
|
-
adminRolesOrgIdGet(orgId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRolesListResponse, any>>;
|
|
20874
|
+
adminRolesOrgIdGet(orgId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRolesListResponse, any, {}>>;
|
|
20768
20875
|
/**
|
|
20769
20876
|
* Fetches role by id
|
|
20770
20877
|
* @summary Fetches role by id
|
|
@@ -20774,7 +20881,7 @@ export declare class RolesApi extends BaseAPI {
|
|
|
20774
20881
|
* @throws {RequiredError}
|
|
20775
20882
|
* @memberof RolesApi
|
|
20776
20883
|
*/
|
|
20777
|
-
adminRolesOrgIdRoleIdGet(orgId: number, roleId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRoleResponse, any>>;
|
|
20884
|
+
adminRolesOrgIdRoleIdGet(orgId: number, roleId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRoleResponse, any, {}>>;
|
|
20778
20885
|
/**
|
|
20779
20886
|
* Adds a new role to the system
|
|
20780
20887
|
* @summary Creates a new role
|
|
@@ -20783,7 +20890,7 @@ export declare class RolesApi extends BaseAPI {
|
|
|
20783
20890
|
* @throws {RequiredError}
|
|
20784
20891
|
* @memberof RolesApi
|
|
20785
20892
|
*/
|
|
20786
|
-
adminRolesPost(role: DataTypesCreateRoleRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
20893
|
+
adminRolesPost(role: DataTypesCreateRoleRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
20787
20894
|
}
|
|
20788
20895
|
/**
|
|
20789
20896
|
* SearchApi - axios parameter creator
|
|
@@ -21005,7 +21112,7 @@ export declare class SearchApi extends BaseAPI {
|
|
|
21005
21112
|
* @throws {RequiredError}
|
|
21006
21113
|
* @memberof SearchApi
|
|
21007
21114
|
*/
|
|
21008
|
-
adminV1SearchXStoreIDPost(xStoreID: string, body: DataTypesAdminSearchRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCombinedSearchResponseWrapper, any>>;
|
|
21115
|
+
adminV1SearchXStoreIDPost(xStoreID: string, body: DataTypesAdminSearchRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCombinedSearchResponseWrapper, any, {}>>;
|
|
21009
21116
|
/**
|
|
21010
21117
|
* Get metadata about all configurable fields for dynamic form generation
|
|
21011
21118
|
* @summary Get Configuration Schema
|
|
@@ -21014,7 +21121,7 @@ export declare class SearchApi extends BaseAPI {
|
|
|
21014
21121
|
* @throws {RequiredError}
|
|
21015
21122
|
* @memberof SearchApi
|
|
21016
21123
|
*/
|
|
21017
|
-
v1IndexConfigSchemaGet(indexname?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesConfigurationSchemaResponseWrapper, any>>;
|
|
21124
|
+
v1IndexConfigSchemaGet(indexname?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesConfigurationSchemaResponseWrapper, any, {}>>;
|
|
21018
21125
|
/**
|
|
21019
21126
|
* Get the current index configuration
|
|
21020
21127
|
* @summary Get Index Config
|
|
@@ -21023,7 +21130,7 @@ export declare class SearchApi extends BaseAPI {
|
|
|
21023
21130
|
* @throws {RequiredError}
|
|
21024
21131
|
* @memberof SearchApi
|
|
21025
21132
|
*/
|
|
21026
|
-
v1IndexIndexnameConfigGet(indexname: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesIndexConfigResponseWrapper, any>>;
|
|
21133
|
+
v1IndexIndexnameConfigGet(indexname: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesIndexConfigResponseWrapper, any, {}>>;
|
|
21027
21134
|
/**
|
|
21028
21135
|
* Configure the index for search
|
|
21029
21136
|
* @summary Index Config
|
|
@@ -21033,7 +21140,7 @@ export declare class SearchApi extends BaseAPI {
|
|
|
21033
21140
|
* @throws {RequiredError}
|
|
21034
21141
|
* @memberof SearchApi
|
|
21035
21142
|
*/
|
|
21036
|
-
v1IndexIndexnameConfigPost(indexname: string, body: DataTypesIndexConfig, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
21143
|
+
v1IndexIndexnameConfigPost(indexname: string, body: DataTypesIndexConfig, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
21037
21144
|
/**
|
|
21038
21145
|
* Update a single property of the index configuration
|
|
21039
21146
|
* @summary Update Index Config Property
|
|
@@ -21044,7 +21151,7 @@ export declare class SearchApi extends BaseAPI {
|
|
|
21044
21151
|
* @throws {RequiredError}
|
|
21045
21152
|
* @memberof SearchApi
|
|
21046
21153
|
*/
|
|
21047
|
-
v1IndexIndexnameConfigPropertyPatch(indexname: string, property: string, body: object, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
21154
|
+
v1IndexIndexnameConfigPropertyPatch(indexname: string, property: string, body: object, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
21048
21155
|
/**
|
|
21049
21156
|
* Get default configuration values computed from the Typesense schema
|
|
21050
21157
|
* @summary Get Schema-Based Defaults
|
|
@@ -21053,7 +21160,7 @@ export declare class SearchApi extends BaseAPI {
|
|
|
21053
21160
|
* @throws {RequiredError}
|
|
21054
21161
|
* @memberof SearchApi
|
|
21055
21162
|
*/
|
|
21056
|
-
v1IndexIndexnameDefaultsGet(indexname: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSchemaBasedDefaultsResponseWrapper, any>>;
|
|
21163
|
+
v1IndexIndexnameDefaultsGet(indexname: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSchemaBasedDefaultsResponseWrapper, any, {}>>;
|
|
21057
21164
|
/**
|
|
21058
21165
|
* Search documents using store credentials with optional autocomplete suggestions and configurable stopwords/synonyms
|
|
21059
21166
|
* @summary Public Search API
|
|
@@ -21064,7 +21171,7 @@ export declare class SearchApi extends BaseAPI {
|
|
|
21064
21171
|
* @throws {RequiredError}
|
|
21065
21172
|
* @memberof SearchApi
|
|
21066
21173
|
*/
|
|
21067
|
-
v1SearchPost(xStoreid: string, xStoresecret: string, body: DataTypesPublicSearchRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOfficialSearchResponseWrapper, any>>;
|
|
21174
|
+
v1SearchPost(xStoreid: string, xStoresecret: string, body: DataTypesPublicSearchRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOfficialSearchResponseWrapper, any, {}>>;
|
|
21068
21175
|
}
|
|
21069
21176
|
/**
|
|
21070
21177
|
* StopwordsApi - axios parameter creator
|
|
@@ -21293,7 +21400,7 @@ export declare class StopwordsApi extends BaseAPI {
|
|
|
21293
21400
|
* @throws {RequiredError}
|
|
21294
21401
|
* @memberof StopwordsApi
|
|
21295
21402
|
*/
|
|
21296
|
-
adminStoresStopwordsLanguagesGet(type?: string, page?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesLanguagesResponseWrapper, any>>;
|
|
21403
|
+
adminStoresStopwordsLanguagesGet(type?: string, page?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesLanguagesResponseWrapper, any, {}>>;
|
|
21297
21404
|
/**
|
|
21298
21405
|
* Enables or disables a specific word for a store. Supports default words, store-specific words, and custom words.
|
|
21299
21406
|
* @summary Update word status for store
|
|
@@ -21303,7 +21410,7 @@ export declare class StopwordsApi extends BaseAPI {
|
|
|
21303
21410
|
* @throws {RequiredError}
|
|
21304
21411
|
* @memberof StopwordsApi
|
|
21305
21412
|
*/
|
|
21306
|
-
adminStoresXStoreIDStopwordsWordStatusPut(xStoreID: string, body: DataTypesUpdateWordStatusRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateWordStatusResponseWrapper, any>>;
|
|
21413
|
+
adminStoresXStoreIDStopwordsWordStatusPut(xStoreID: string, body: DataTypesUpdateWordStatusRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateWordStatusResponseWrapper, any, {}>>;
|
|
21307
21414
|
/**
|
|
21308
21415
|
* Fetches a single word list by language with pagination on words within the wordlist
|
|
21309
21416
|
* @summary Get word lists by language
|
|
@@ -21316,7 +21423,7 @@ export declare class StopwordsApi extends BaseAPI {
|
|
|
21316
21423
|
* @throws {RequiredError}
|
|
21317
21424
|
* @memberof StopwordsApi
|
|
21318
21425
|
*/
|
|
21319
|
-
adminStoresXStoreIDStopwordsWordlistsGet(xStoreID: string, lang?: string, type?: string, page?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesWordListResponseWrapper, any>>;
|
|
21426
|
+
adminStoresXStoreIDStopwordsWordlistsGet(xStoreID: string, lang?: string, type?: string, page?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesWordListResponseWrapper, any, {}>>;
|
|
21320
21427
|
/**
|
|
21321
21428
|
* 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
21429
|
* @summary Get word lists by language (includes store-specific words)
|
|
@@ -21330,7 +21437,7 @@ export declare class StopwordsApi extends BaseAPI {
|
|
|
21330
21437
|
* @throws {RequiredError}
|
|
21331
21438
|
* @memberof StopwordsApi
|
|
21332
21439
|
*/
|
|
21333
|
-
adminStoresXStoreIDStopwordsWordlistsWithStoreWordsGet(xStoreID: string, lang?: string, type?: string, q?: string, page?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesWordListResponseEnhancedWrapper, any>>;
|
|
21440
|
+
adminStoresXStoreIDStopwordsWordlistsWithStoreWordsGet(xStoreID: string, lang?: string, type?: string, q?: string, page?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesWordListResponseEnhancedWrapper, any, {}>>;
|
|
21334
21441
|
/**
|
|
21335
21442
|
* Removes store-specific words from a language word list
|
|
21336
21443
|
* @summary Remove words from language word list
|
|
@@ -21341,7 +21448,7 @@ export declare class StopwordsApi extends BaseAPI {
|
|
|
21341
21448
|
* @throws {RequiredError}
|
|
21342
21449
|
* @memberof StopwordsApi
|
|
21343
21450
|
*/
|
|
21344
|
-
adminStoresXStoreIDStopwordsWordlistsWordListIDWordsDelete(xStoreID: string, wordListID: number, body: DataTypesRemoveWordsFromLanguageListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateWordStatusResponseWrapper, any>>;
|
|
21451
|
+
adminStoresXStoreIDStopwordsWordlistsWordListIDWordsDelete(xStoreID: string, wordListID: number, body: DataTypesRemoveWordsFromLanguageListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateWordStatusResponseWrapper, any, {}>>;
|
|
21345
21452
|
/**
|
|
21346
21453
|
* Adds words directly to a language word list for a specific store
|
|
21347
21454
|
* @summary Add words to language word list
|
|
@@ -21352,7 +21459,7 @@ export declare class StopwordsApi extends BaseAPI {
|
|
|
21352
21459
|
* @throws {RequiredError}
|
|
21353
21460
|
* @memberof StopwordsApi
|
|
21354
21461
|
*/
|
|
21355
|
-
adminStoresXStoreIDStopwordsWordlistsWordListIDWordsPost(xStoreID: string, wordListID: number, body: DataTypesAddWordsToLanguageListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateWordStatusResponseWrapper, any>>;
|
|
21462
|
+
adminStoresXStoreIDStopwordsWordlistsWordListIDWordsPost(xStoreID: string, wordListID: number, body: DataTypesAddWordsToLanguageListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateWordStatusResponseWrapper, any, {}>>;
|
|
21356
21463
|
}
|
|
21357
21464
|
/**
|
|
21358
21465
|
* StoreDocumentsApi - axios parameter creator
|
|
@@ -21565,7 +21672,7 @@ export declare class StoreDocumentsApi extends BaseAPI {
|
|
|
21565
21672
|
* @throws {RequiredError}
|
|
21566
21673
|
* @memberof StoreDocumentsApi
|
|
21567
21674
|
*/
|
|
21568
|
-
adminStoresXStoreIDDocumentsBulkPost(xStoreID: string, body: DataTypesBulkDocumentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesBulkDocumentResponseWrapper, any>>;
|
|
21675
|
+
adminStoresXStoreIDDocumentsBulkPost(xStoreID: string, body: DataTypesBulkDocumentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesBulkDocumentResponseWrapper, any, {}>>;
|
|
21569
21676
|
/**
|
|
21570
21677
|
* Deletes a document by ID from a store
|
|
21571
21678
|
* @summary Delete document
|
|
@@ -21575,7 +21682,7 @@ export declare class StoreDocumentsApi extends BaseAPI {
|
|
|
21575
21682
|
* @throws {RequiredError}
|
|
21576
21683
|
* @memberof StoreDocumentsApi
|
|
21577
21684
|
*/
|
|
21578
|
-
adminStoresXStoreIDDocumentsDocumentIDDelete(xStoreID: string, documentID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesDocumentResponseWrapper, any>>;
|
|
21685
|
+
adminStoresXStoreIDDocumentsDocumentIDDelete(xStoreID: string, documentID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesDocumentResponseWrapper, any, {}>>;
|
|
21579
21686
|
/**
|
|
21580
21687
|
* Retrieves a single document by ID from a store
|
|
21581
21688
|
* @summary Get single document
|
|
@@ -21585,7 +21692,7 @@ export declare class StoreDocumentsApi extends BaseAPI {
|
|
|
21585
21692
|
* @throws {RequiredError}
|
|
21586
21693
|
* @memberof StoreDocumentsApi
|
|
21587
21694
|
*/
|
|
21588
|
-
adminStoresXStoreIDDocumentsDocumentIDGet(xStoreID: string, documentID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesDocumentResponseWrapper, any>>;
|
|
21695
|
+
adminStoresXStoreIDDocumentsDocumentIDGet(xStoreID: string, documentID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesDocumentResponseWrapper, any, {}>>;
|
|
21589
21696
|
/**
|
|
21590
21697
|
* Updates an existing document by ID. The document ID will not change even if document properties change.
|
|
21591
21698
|
* @summary Update document
|
|
@@ -21596,7 +21703,7 @@ export declare class StoreDocumentsApi extends BaseAPI {
|
|
|
21596
21703
|
* @throws {RequiredError}
|
|
21597
21704
|
* @memberof StoreDocumentsApi
|
|
21598
21705
|
*/
|
|
21599
|
-
adminStoresXStoreIDDocumentsDocumentIDPut(xStoreID: string, documentID: string, body: object, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesDocumentResponseWrapper, any>>;
|
|
21706
|
+
adminStoresXStoreIDDocumentsDocumentIDPut(xStoreID: string, documentID: string, body: object, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesDocumentResponseWrapper, any, {}>>;
|
|
21600
21707
|
/**
|
|
21601
21708
|
* Retrieves documents from a store with pagination and optional filtering
|
|
21602
21709
|
* @summary Get documents from store
|
|
@@ -21610,7 +21717,7 @@ export declare class StoreDocumentsApi extends BaseAPI {
|
|
|
21610
21717
|
* @throws {RequiredError}
|
|
21611
21718
|
* @memberof StoreDocumentsApi
|
|
21612
21719
|
*/
|
|
21613
|
-
adminStoresXStoreIDDocumentsGet(xStoreID: string, page?: number, limit?: number, search?: string, filter?: string, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesDocumentListResponseWrapper, any>>;
|
|
21720
|
+
adminStoresXStoreIDDocumentsGet(xStoreID: string, page?: number, limit?: number, search?: string, filter?: string, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesDocumentListResponseWrapper, any, {}>>;
|
|
21614
21721
|
/**
|
|
21615
21722
|
* 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
21723
|
* @summary Insert document
|
|
@@ -21620,7 +21727,7 @@ export declare class StoreDocumentsApi extends BaseAPI {
|
|
|
21620
21727
|
* @throws {RequiredError}
|
|
21621
21728
|
* @memberof StoreDocumentsApi
|
|
21622
21729
|
*/
|
|
21623
|
-
adminStoresXStoreIDDocumentsPost(xStoreID: string, body: object, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesDocumentResponseWrapper, any>>;
|
|
21730
|
+
adminStoresXStoreIDDocumentsPost(xStoreID: string, body: object, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesDocumentResponseWrapper, any, {}>>;
|
|
21624
21731
|
}
|
|
21625
21732
|
/**
|
|
21626
21733
|
* StoresApi - axios parameter creator
|
|
@@ -21924,7 +22031,7 @@ export declare class StoresApi extends BaseAPI {
|
|
|
21924
22031
|
* @throws {RequiredError}
|
|
21925
22032
|
* @memberof StoresApi
|
|
21926
22033
|
*/
|
|
21927
|
-
adminStoresGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesStoresListResponse, any>>;
|
|
22034
|
+
adminStoresGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesStoresListResponse, any, {}>>;
|
|
21928
22035
|
/**
|
|
21929
22036
|
* Fetches stores by xStoreID
|
|
21930
22037
|
* @summary Fetches stores by xStoreID
|
|
@@ -21933,7 +22040,7 @@ export declare class StoresApi extends BaseAPI {
|
|
|
21933
22040
|
* @throws {RequiredError}
|
|
21934
22041
|
* @memberof StoresApi
|
|
21935
22042
|
*/
|
|
21936
|
-
adminStoresGetStoreXStoreIDGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesStoreResponse, any>>;
|
|
22043
|
+
adminStoresGetStoreXStoreIDGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesStoreResponse, any, {}>>;
|
|
21937
22044
|
/**
|
|
21938
22045
|
* Adds a new store to the system
|
|
21939
22046
|
* @summary Creates a new store
|
|
@@ -21942,7 +22049,7 @@ export declare class StoresApi extends BaseAPI {
|
|
|
21942
22049
|
* @throws {RequiredError}
|
|
21943
22050
|
* @memberof StoresApi
|
|
21944
22051
|
*/
|
|
21945
|
-
adminStoresPost(store: DataTypesStoreRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
22052
|
+
adminStoresPost(store: DataTypesStoreRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
21946
22053
|
/**
|
|
21947
22054
|
* Updates store information by ID.
|
|
21948
22055
|
* @summary Update an existing store
|
|
@@ -21952,7 +22059,7 @@ export declare class StoresApi extends BaseAPI {
|
|
|
21952
22059
|
* @throws {RequiredError}
|
|
21953
22060
|
* @memberof StoresApi
|
|
21954
22061
|
*/
|
|
21955
|
-
adminStoresStoreIDPut(storeID: number, store: DataTypesStoreRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
22062
|
+
adminStoresStoreIDPut(storeID: number, store: DataTypesStoreRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
21956
22063
|
/**
|
|
21957
22064
|
* Updates StoreStatus information by ID.
|
|
21958
22065
|
* @summary Update an existing StoreStatus
|
|
@@ -21962,7 +22069,7 @@ export declare class StoresApi extends BaseAPI {
|
|
|
21962
22069
|
* @throws {RequiredError}
|
|
21963
22070
|
* @memberof StoresApi
|
|
21964
22071
|
*/
|
|
21965
|
-
adminStoresUpdateStatusIdStatusPut(id: number, status: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
22072
|
+
adminStoresUpdateStatusIdStatusPut(id: number, status: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
21966
22073
|
/**
|
|
21967
22074
|
* Retrieves the store configuration using x-store ID
|
|
21968
22075
|
* @summary Get Store Config
|
|
@@ -21971,7 +22078,7 @@ export declare class StoresApi extends BaseAPI {
|
|
|
21971
22078
|
* @throws {RequiredError}
|
|
21972
22079
|
* @memberof StoresApi
|
|
21973
22080
|
*/
|
|
21974
|
-
adminStoresXStoreIDConfigGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesIndexConfigResponseWrapper, any>>;
|
|
22081
|
+
adminStoresXStoreIDConfigGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesIndexConfigResponseWrapper, any, {}>>;
|
|
21975
22082
|
/**
|
|
21976
22083
|
* 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
22084
|
* @summary Update Store Config (Partial)
|
|
@@ -21981,7 +22088,7 @@ export declare class StoresApi extends BaseAPI {
|
|
|
21981
22088
|
* @throws {RequiredError}
|
|
21982
22089
|
* @memberof StoresApi
|
|
21983
22090
|
*/
|
|
21984
|
-
adminStoresXStoreIDConfigPut(xStoreID: string, body: DataTypesIndexConfig, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesIndexConfigResponseWrapper, any>>;
|
|
22091
|
+
adminStoresXStoreIDConfigPut(xStoreID: string, body: DataTypesIndexConfig, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesIndexConfigResponseWrapper, any, {}>>;
|
|
21985
22092
|
/**
|
|
21986
22093
|
* Get metadata about all configurable fields for store configuration using x-store ID
|
|
21987
22094
|
* @summary Get Store Config Schema
|
|
@@ -21990,7 +22097,7 @@ export declare class StoresApi extends BaseAPI {
|
|
|
21990
22097
|
* @throws {RequiredError}
|
|
21991
22098
|
* @memberof StoresApi
|
|
21992
22099
|
*/
|
|
21993
|
-
adminStoresXStoreIDConfigSchemaGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesConfigurationSchemaResponseWrapper, any>>;
|
|
22100
|
+
adminStoresXStoreIDConfigSchemaGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesConfigurationSchemaResponseWrapper, any, {}>>;
|
|
21994
22101
|
/**
|
|
21995
22102
|
* Retrieves all store credentials (XStoreID, XStoreSecret, XStoreWriteSecret) for a given x-store ID
|
|
21996
22103
|
* @summary Get store credentials
|
|
@@ -21999,7 +22106,7 @@ export declare class StoresApi extends BaseAPI {
|
|
|
21999
22106
|
* @throws {RequiredError}
|
|
22000
22107
|
* @memberof StoresApi
|
|
22001
22108
|
*/
|
|
22002
|
-
adminStoresXStoreIDCredentialsGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesStoreCredentialsResponse, any>>;
|
|
22109
|
+
adminStoresXStoreIDCredentialsGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesStoreCredentialsResponse, any, {}>>;
|
|
22003
22110
|
/**
|
|
22004
22111
|
* Get default configuration values computed from the store\'s index schema using x-store ID
|
|
22005
22112
|
* @summary Get Store Schema-Based Defaults
|
|
@@ -22008,7 +22115,7 @@ export declare class StoresApi extends BaseAPI {
|
|
|
22008
22115
|
* @throws {RequiredError}
|
|
22009
22116
|
* @memberof StoresApi
|
|
22010
22117
|
*/
|
|
22011
|
-
adminStoresXStoreIDDefaultsGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSchemaBasedDefaultsResponseWrapper, any>>;
|
|
22118
|
+
adminStoresXStoreIDDefaultsGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSchemaBasedDefaultsResponseWrapper, any, {}>>;
|
|
22012
22119
|
/**
|
|
22013
22120
|
* Generates and assigns a new X-Store Secret for an existing store, keeping the same X-Store ID.
|
|
22014
22121
|
* @summary Regenerate X-Store Secret
|
|
@@ -22017,7 +22124,7 @@ export declare class StoresApi extends BaseAPI {
|
|
|
22017
22124
|
* @throws {RequiredError}
|
|
22018
22125
|
* @memberof StoresApi
|
|
22019
22126
|
*/
|
|
22020
|
-
xStoreIDRegenerateSecretPost(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesRegenerateXStoreSecretResponse, any>>;
|
|
22127
|
+
xStoreIDRegenerateSecretPost(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesRegenerateXStoreSecretResponse, any, {}>>;
|
|
22021
22128
|
}
|
|
22022
22129
|
/**
|
|
22023
22130
|
* SubscriptionsApi - axios parameter creator
|
|
@@ -22176,7 +22283,7 @@ export declare class SubscriptionsApi extends BaseAPI {
|
|
|
22176
22283
|
* @throws {RequiredError}
|
|
22177
22284
|
* @memberof SubscriptionsApi
|
|
22178
22285
|
*/
|
|
22179
|
-
adminSubscriptionsSubscriptionIDPut(subscriptionID: number, subscription: DataTypesCreateSubscriptionRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
22286
|
+
adminSubscriptionsSubscriptionIDPut(subscriptionID: number, subscription: DataTypesCreateSubscriptionRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
22180
22287
|
/**
|
|
22181
22288
|
* Updates Subscription status information by ID.
|
|
22182
22289
|
* @summary Update an existing Subscription status
|
|
@@ -22186,7 +22293,7 @@ export declare class SubscriptionsApi extends BaseAPI {
|
|
|
22186
22293
|
* @throws {RequiredError}
|
|
22187
22294
|
* @memberof SubscriptionsApi
|
|
22188
22295
|
*/
|
|
22189
|
-
adminSubscriptionsUpdatestatusSubscriptionIDStatusPut(subscriptionID: number, status: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
22296
|
+
adminSubscriptionsUpdatestatusSubscriptionIDStatusPut(subscriptionID: number, status: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
22190
22297
|
/**
|
|
22191
22298
|
* Fetches list of all Subscription
|
|
22192
22299
|
* @summary Fetches list of all Subscription
|
|
@@ -22194,7 +22301,7 @@ export declare class SubscriptionsApi extends BaseAPI {
|
|
|
22194
22301
|
* @throws {RequiredError}
|
|
22195
22302
|
* @memberof SubscriptionsApi
|
|
22196
22303
|
*/
|
|
22197
|
-
miscSubscriptionsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSubscriptionsListResponse, any>>;
|
|
22304
|
+
miscSubscriptionsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSubscriptionsListResponse, any, {}>>;
|
|
22198
22305
|
/**
|
|
22199
22306
|
* Adds a new Subscription to the system
|
|
22200
22307
|
* @summary Creates a new Subscription
|
|
@@ -22203,7 +22310,7 @@ export declare class SubscriptionsApi extends BaseAPI {
|
|
|
22203
22310
|
* @throws {RequiredError}
|
|
22204
22311
|
* @memberof SubscriptionsApi
|
|
22205
22312
|
*/
|
|
22206
|
-
miscSubscriptionsPost(subscription: DataTypesCreateSubscriptionRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
22313
|
+
miscSubscriptionsPost(subscription: DataTypesCreateSubscriptionRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
22207
22314
|
/**
|
|
22208
22315
|
* Fetches Subscription by id
|
|
22209
22316
|
* @summary Fetches Subscription by id
|
|
@@ -22212,7 +22319,7 @@ export declare class SubscriptionsApi extends BaseAPI {
|
|
|
22212
22319
|
* @throws {RequiredError}
|
|
22213
22320
|
* @memberof SubscriptionsApi
|
|
22214
22321
|
*/
|
|
22215
|
-
miscSubscriptionsSubscriptionIDGet(subscriptionID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSubscriptionResponse, any>>;
|
|
22322
|
+
miscSubscriptionsSubscriptionIDGet(subscriptionID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSubscriptionResponse, any, {}>>;
|
|
22216
22323
|
}
|
|
22217
22324
|
/**
|
|
22218
22325
|
* UserApi - axios parameter creator
|
|
@@ -22419,7 +22526,7 @@ export declare class UserApi extends BaseAPI {
|
|
|
22419
22526
|
* @throws {RequiredError}
|
|
22420
22527
|
* @memberof UserApi
|
|
22421
22528
|
*/
|
|
22422
|
-
adminUsersActivateUserIdStatusPut(id: number, status: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
22529
|
+
adminUsersActivateUserIdStatusPut(id: number, status: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
22423
22530
|
/**
|
|
22424
22531
|
* Fetches list of all users
|
|
22425
22532
|
* @summary Fetches list of all users
|
|
@@ -22427,7 +22534,7 @@ export declare class UserApi extends BaseAPI {
|
|
|
22427
22534
|
* @throws {RequiredError}
|
|
22428
22535
|
* @memberof UserApi
|
|
22429
22536
|
*/
|
|
22430
|
-
adminUsersGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUsersListResponse, any>>;
|
|
22537
|
+
adminUsersGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUsersListResponse, any, {}>>;
|
|
22431
22538
|
/**
|
|
22432
22539
|
* Deletes a user from the system by ID.
|
|
22433
22540
|
* @summary Delete a user
|
|
@@ -22436,7 +22543,7 @@ export declare class UserApi extends BaseAPI {
|
|
|
22436
22543
|
* @throws {RequiredError}
|
|
22437
22544
|
* @memberof UserApi
|
|
22438
22545
|
*/
|
|
22439
|
-
adminUsersIdDelete(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
22546
|
+
adminUsersIdDelete(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
22440
22547
|
/**
|
|
22441
22548
|
* Fetches user by id
|
|
22442
22549
|
* @summary Fetches user by id
|
|
@@ -22445,7 +22552,7 @@ export declare class UserApi extends BaseAPI {
|
|
|
22445
22552
|
* @throws {RequiredError}
|
|
22446
22553
|
* @memberof UserApi
|
|
22447
22554
|
*/
|
|
22448
|
-
adminUsersIdGet(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUserResponse, any>>;
|
|
22555
|
+
adminUsersIdGet(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUserResponse, any, {}>>;
|
|
22449
22556
|
/**
|
|
22450
22557
|
* Updates user information by ID.
|
|
22451
22558
|
* @summary Update an existing user
|
|
@@ -22455,7 +22562,7 @@ export declare class UserApi extends BaseAPI {
|
|
|
22455
22562
|
* @throws {RequiredError}
|
|
22456
22563
|
* @memberof UserApi
|
|
22457
22564
|
*/
|
|
22458
|
-
adminUsersIdPut(id: number, user: DataTypesCreateUserRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
22565
|
+
adminUsersIdPut(id: number, user: DataTypesCreateUserRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
22459
22566
|
/**
|
|
22460
22567
|
* Adds a new user to the system
|
|
22461
22568
|
* @summary Creates a new user
|
|
@@ -22464,7 +22571,7 @@ export declare class UserApi extends BaseAPI {
|
|
|
22464
22571
|
* @throws {RequiredError}
|
|
22465
22572
|
* @memberof UserApi
|
|
22466
22573
|
*/
|
|
22467
|
-
adminUsersPost(user: DataTypesCreateUserRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
22574
|
+
adminUsersPost(user: DataTypesCreateUserRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
22468
22575
|
/**
|
|
22469
22576
|
* Resets the password for a specified user by ID and logs out the user.
|
|
22470
22577
|
* @summary Reset a user\'s password
|
|
@@ -22473,5 +22580,5 @@ export declare class UserApi extends BaseAPI {
|
|
|
22473
22580
|
* @throws {RequiredError}
|
|
22474
22581
|
* @memberof UserApi
|
|
22475
22582
|
*/
|
|
22476
|
-
adminUsersResetpasswordIdPut(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
22583
|
+
adminUsersResetpasswordIdPut(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
22477
22584
|
}
|