@seekora-ai/admin-api 1.0.10 → 1.0.11
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 +7 -2
- package/api.ts +619 -3
- package/dist/api.d.ts +404 -3
- package/dist/api.js +407 -1
- package/dist/esm/api.d.ts +404 -3
- package/dist/esm/api.js +402 -0
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.0.11.tgz +0 -0
- package/seekora-ai-admin-api-1.0.10.tgz +0 -0
package/dist/esm/api.d.ts
CHANGED
|
@@ -953,6 +953,187 @@ export interface DataTypesGenericStringArrayResponse {
|
|
|
953
953
|
*/
|
|
954
954
|
'status'?: number;
|
|
955
955
|
}
|
|
956
|
+
/**
|
|
957
|
+
*
|
|
958
|
+
* @export
|
|
959
|
+
* @interface DataTypesIndexConfig
|
|
960
|
+
*/
|
|
961
|
+
export interface DataTypesIndexConfig {
|
|
962
|
+
/**
|
|
963
|
+
*
|
|
964
|
+
* @type {boolean}
|
|
965
|
+
* @memberof DataTypesIndexConfig
|
|
966
|
+
*/
|
|
967
|
+
'allowTyposOnNumericTokens'?: boolean;
|
|
968
|
+
/**
|
|
969
|
+
*
|
|
970
|
+
* @type {Array<string>}
|
|
971
|
+
* @memberof DataTypesIndexConfig
|
|
972
|
+
*/
|
|
973
|
+
'alternativesAsExact'?: Array<string>;
|
|
974
|
+
/**
|
|
975
|
+
*
|
|
976
|
+
* @type {string}
|
|
977
|
+
* @memberof DataTypesIndexConfig
|
|
978
|
+
*/
|
|
979
|
+
'attributeForDistinct'?: string;
|
|
980
|
+
/**
|
|
981
|
+
*
|
|
982
|
+
* @type {Array<string>}
|
|
983
|
+
* @memberof DataTypesIndexConfig
|
|
984
|
+
*/
|
|
985
|
+
'attributesForFaceting'?: Array<string>;
|
|
986
|
+
/**
|
|
987
|
+
*
|
|
988
|
+
* @type {Array<string>}
|
|
989
|
+
* @memberof DataTypesIndexConfig
|
|
990
|
+
*/
|
|
991
|
+
'attributesToHighlight'?: Array<string>;
|
|
992
|
+
/**
|
|
993
|
+
*
|
|
994
|
+
* @type {Array<string>}
|
|
995
|
+
* @memberof DataTypesIndexConfig
|
|
996
|
+
*/
|
|
997
|
+
'attributesToRetrieve'?: Array<string>;
|
|
998
|
+
/**
|
|
999
|
+
*
|
|
1000
|
+
* @type {Array<string>}
|
|
1001
|
+
* @memberof DataTypesIndexConfig
|
|
1002
|
+
*/
|
|
1003
|
+
'attributesToSnippet'?: Array<string>;
|
|
1004
|
+
/**
|
|
1005
|
+
*
|
|
1006
|
+
* @type {Array<string>}
|
|
1007
|
+
* @memberof DataTypesIndexConfig
|
|
1008
|
+
*/
|
|
1009
|
+
'customRanking'?: Array<string>;
|
|
1010
|
+
/**
|
|
1011
|
+
*
|
|
1012
|
+
* @type {string}
|
|
1013
|
+
* @memberof DataTypesIndexConfig
|
|
1014
|
+
*/
|
|
1015
|
+
'exactOnSingleWordQuery'?: string;
|
|
1016
|
+
/**
|
|
1017
|
+
*
|
|
1018
|
+
* @type {string}
|
|
1019
|
+
* @memberof DataTypesIndexConfig
|
|
1020
|
+
*/
|
|
1021
|
+
'highlightPostTag'?: string;
|
|
1022
|
+
/**
|
|
1023
|
+
*
|
|
1024
|
+
* @type {string}
|
|
1025
|
+
* @memberof DataTypesIndexConfig
|
|
1026
|
+
*/
|
|
1027
|
+
'highlightPreTag'?: string;
|
|
1028
|
+
/**
|
|
1029
|
+
*
|
|
1030
|
+
* @type {number}
|
|
1031
|
+
* @memberof DataTypesIndexConfig
|
|
1032
|
+
*/
|
|
1033
|
+
'hitsPerPage'?: number;
|
|
1034
|
+
/**
|
|
1035
|
+
*
|
|
1036
|
+
* @type {number}
|
|
1037
|
+
* @memberof DataTypesIndexConfig
|
|
1038
|
+
*/
|
|
1039
|
+
'indexingGeolocPrecision'?: number;
|
|
1040
|
+
/**
|
|
1041
|
+
*
|
|
1042
|
+
* @type {number}
|
|
1043
|
+
* @memberof DataTypesIndexConfig
|
|
1044
|
+
*/
|
|
1045
|
+
'maxNbHits'?: number;
|
|
1046
|
+
/**
|
|
1047
|
+
*
|
|
1048
|
+
* @type {number}
|
|
1049
|
+
* @memberof DataTypesIndexConfig
|
|
1050
|
+
*/
|
|
1051
|
+
'maxValuesPerFacet'?: number;
|
|
1052
|
+
/**
|
|
1053
|
+
*
|
|
1054
|
+
* @type {number}
|
|
1055
|
+
* @memberof DataTypesIndexConfig
|
|
1056
|
+
*/
|
|
1057
|
+
'minWordSizefor1Typo'?: number;
|
|
1058
|
+
/**
|
|
1059
|
+
*
|
|
1060
|
+
* @type {number}
|
|
1061
|
+
* @memberof DataTypesIndexConfig
|
|
1062
|
+
*/
|
|
1063
|
+
'minWordSizefor2Typos'?: number;
|
|
1064
|
+
/**
|
|
1065
|
+
*
|
|
1066
|
+
* @type {number}
|
|
1067
|
+
* @memberof DataTypesIndexConfig
|
|
1068
|
+
*/
|
|
1069
|
+
'nbShardsAuto'?: number;
|
|
1070
|
+
/**
|
|
1071
|
+
*
|
|
1072
|
+
* @type {Array<string>}
|
|
1073
|
+
* @memberof DataTypesIndexConfig
|
|
1074
|
+
*/
|
|
1075
|
+
'numericAttributesToIndex'?: Array<string>;
|
|
1076
|
+
/**
|
|
1077
|
+
*
|
|
1078
|
+
* @type {Array<string>}
|
|
1079
|
+
* @memberof DataTypesIndexConfig
|
|
1080
|
+
*/
|
|
1081
|
+
'optionalWords'?: Array<string>;
|
|
1082
|
+
/**
|
|
1083
|
+
*
|
|
1084
|
+
* @type {number}
|
|
1085
|
+
* @memberof DataTypesIndexConfig
|
|
1086
|
+
*/
|
|
1087
|
+
'paginationLimitedTo'?: number;
|
|
1088
|
+
/**
|
|
1089
|
+
*
|
|
1090
|
+
* @type {string}
|
|
1091
|
+
* @memberof DataTypesIndexConfig
|
|
1092
|
+
*/
|
|
1093
|
+
'primary'?: string;
|
|
1094
|
+
/**
|
|
1095
|
+
*
|
|
1096
|
+
* @type {string}
|
|
1097
|
+
* @memberof DataTypesIndexConfig
|
|
1098
|
+
*/
|
|
1099
|
+
'queryType'?: string;
|
|
1100
|
+
/**
|
|
1101
|
+
*
|
|
1102
|
+
* @type {Array<string>}
|
|
1103
|
+
* @memberof DataTypesIndexConfig
|
|
1104
|
+
*/
|
|
1105
|
+
'ranking'?: Array<string>;
|
|
1106
|
+
/**
|
|
1107
|
+
*
|
|
1108
|
+
* @type {string}
|
|
1109
|
+
* @memberof DataTypesIndexConfig
|
|
1110
|
+
*/
|
|
1111
|
+
'removeWordsIfNoResults'?: string;
|
|
1112
|
+
/**
|
|
1113
|
+
*
|
|
1114
|
+
* @type {Array<string>}
|
|
1115
|
+
* @memberof DataTypesIndexConfig
|
|
1116
|
+
*/
|
|
1117
|
+
'searchableAttributes'?: Array<string>;
|
|
1118
|
+
/**
|
|
1119
|
+
*
|
|
1120
|
+
* @type {string}
|
|
1121
|
+
* @memberof DataTypesIndexConfig
|
|
1122
|
+
*/
|
|
1123
|
+
'separatorsToIndex'?: string;
|
|
1124
|
+
/**
|
|
1125
|
+
*
|
|
1126
|
+
* @type {Array<string>}
|
|
1127
|
+
* @memberof DataTypesIndexConfig
|
|
1128
|
+
*/
|
|
1129
|
+
'unretrievableAttributes'?: Array<string>;
|
|
1130
|
+
/**
|
|
1131
|
+
*
|
|
1132
|
+
* @type {number}
|
|
1133
|
+
* @memberof DataTypesIndexConfig
|
|
1134
|
+
*/
|
|
1135
|
+
'version'?: number;
|
|
1136
|
+
}
|
|
956
1137
|
/**
|
|
957
1138
|
*
|
|
958
1139
|
* @export
|
|
@@ -1742,7 +1923,7 @@ export interface DataTypesOnboardingRequest {
|
|
|
1742
1923
|
* @type {{ [key: string]: any; }}
|
|
1743
1924
|
* @memberof DataTypesOnboardingRequest
|
|
1744
1925
|
*/
|
|
1745
|
-
'data'
|
|
1926
|
+
'data'?: {
|
|
1746
1927
|
[key: string]: any;
|
|
1747
1928
|
};
|
|
1748
1929
|
/**
|
|
@@ -1751,6 +1932,12 @@ export interface DataTypesOnboardingRequest {
|
|
|
1751
1932
|
* @memberof DataTypesOnboardingRequest
|
|
1752
1933
|
*/
|
|
1753
1934
|
'step': string;
|
|
1935
|
+
/**
|
|
1936
|
+
* Optional visible step
|
|
1937
|
+
* @type {string}
|
|
1938
|
+
* @memberof DataTypesOnboardingRequest
|
|
1939
|
+
*/
|
|
1940
|
+
'visibleStep'?: string;
|
|
1754
1941
|
}
|
|
1755
1942
|
/**
|
|
1756
1943
|
*
|
|
@@ -1766,16 +1953,24 @@ export interface DataTypesOnboardingResponse {
|
|
|
1766
1953
|
'jobId'?: string;
|
|
1767
1954
|
/**
|
|
1768
1955
|
*
|
|
1769
|
-
* @type {
|
|
1956
|
+
* @type {{ [key: string]: any; }}
|
|
1770
1957
|
* @memberof DataTypesOnboardingResponse
|
|
1771
1958
|
*/
|
|
1772
|
-
'state'?:
|
|
1959
|
+
'state'?: {
|
|
1960
|
+
[key: string]: any;
|
|
1961
|
+
};
|
|
1773
1962
|
/**
|
|
1774
1963
|
*
|
|
1775
1964
|
* @type {string}
|
|
1776
1965
|
* @memberof DataTypesOnboardingResponse
|
|
1777
1966
|
*/
|
|
1778
1967
|
'step'?: string;
|
|
1968
|
+
/**
|
|
1969
|
+
*
|
|
1970
|
+
* @type {string}
|
|
1971
|
+
* @memberof DataTypesOnboardingResponse
|
|
1972
|
+
*/
|
|
1973
|
+
'visibleStep'?: string;
|
|
1779
1974
|
}
|
|
1780
1975
|
/**
|
|
1781
1976
|
*
|
|
@@ -8502,6 +8697,212 @@ export declare class RolesApi extends BaseAPI {
|
|
|
8502
8697
|
*/
|
|
8503
8698
|
adminRolesPost(role: DataTypesCreateRoleRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
8504
8699
|
}
|
|
8700
|
+
/**
|
|
8701
|
+
* SearchApi - axios parameter creator
|
|
8702
|
+
* @export
|
|
8703
|
+
*/
|
|
8704
|
+
export declare const SearchApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
8705
|
+
/**
|
|
8706
|
+
* Configure the index for search
|
|
8707
|
+
* @summary Index Config
|
|
8708
|
+
* @param {string} xStoreid Store ID
|
|
8709
|
+
* @param {string} xStoresecret Store Secret
|
|
8710
|
+
* @param {DataTypesIndexConfig} body Index configuration
|
|
8711
|
+
* @param {*} [options] Override http request option.
|
|
8712
|
+
* @throws {RequiredError}
|
|
8713
|
+
*/
|
|
8714
|
+
v1IndexConfigPost: (xStoreid: string, xStoresecret: string, body: DataTypesIndexConfig, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8715
|
+
/**
|
|
8716
|
+
* Update a single property of the index configuration
|
|
8717
|
+
* @summary Update Index Config Property
|
|
8718
|
+
* @param {string} xStoreid Store ID
|
|
8719
|
+
* @param {string} xStoresecret Store Secret
|
|
8720
|
+
* @param {string} property Property name
|
|
8721
|
+
* @param {object} body Property value
|
|
8722
|
+
* @param {*} [options] Override http request option.
|
|
8723
|
+
* @throws {RequiredError}
|
|
8724
|
+
*/
|
|
8725
|
+
v1IndexConfigPropertyPatch: (xStoreid: string, xStoresecret: string, property: string, body: object, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8726
|
+
/**
|
|
8727
|
+
* Configure the index for search
|
|
8728
|
+
* @summary Index Config
|
|
8729
|
+
* @param {string} xStoreid Store ID
|
|
8730
|
+
* @param {string} xStoresecret Store Secret
|
|
8731
|
+
* @param {string} indexname Index Name
|
|
8732
|
+
* @param {DataTypesIndexConfig} body Index configuration
|
|
8733
|
+
* @param {*} [options] Override http request option.
|
|
8734
|
+
* @throws {RequiredError}
|
|
8735
|
+
*/
|
|
8736
|
+
v1IndexIndexnameConfigPost: (xStoreid: string, xStoresecret: string, indexname: string, body: DataTypesIndexConfig, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8737
|
+
/**
|
|
8738
|
+
* Update a single property of the index configuration
|
|
8739
|
+
* @summary Update Index Config Property
|
|
8740
|
+
* @param {string} xStoreid Store ID
|
|
8741
|
+
* @param {string} xStoresecret Store Secret
|
|
8742
|
+
* @param {string} indexname Index Name
|
|
8743
|
+
* @param {string} property Property name
|
|
8744
|
+
* @param {object} body Property value
|
|
8745
|
+
* @param {*} [options] Override http request option.
|
|
8746
|
+
* @throws {RequiredError}
|
|
8747
|
+
*/
|
|
8748
|
+
v1IndexIndexnameConfigPropertyPatch: (xStoreid: string, xStoresecret: string, indexname: string, property: string, body: object, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8749
|
+
};
|
|
8750
|
+
/**
|
|
8751
|
+
* SearchApi - functional programming interface
|
|
8752
|
+
* @export
|
|
8753
|
+
*/
|
|
8754
|
+
export declare const SearchApiFp: (configuration?: Configuration) => {
|
|
8755
|
+
/**
|
|
8756
|
+
* Configure the index for search
|
|
8757
|
+
* @summary Index Config
|
|
8758
|
+
* @param {string} xStoreid Store ID
|
|
8759
|
+
* @param {string} xStoresecret Store Secret
|
|
8760
|
+
* @param {DataTypesIndexConfig} body Index configuration
|
|
8761
|
+
* @param {*} [options] Override http request option.
|
|
8762
|
+
* @throws {RequiredError}
|
|
8763
|
+
*/
|
|
8764
|
+
v1IndexConfigPost(xStoreid: string, xStoresecret: string, body: DataTypesIndexConfig, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
8765
|
+
/**
|
|
8766
|
+
* Update a single property of the index configuration
|
|
8767
|
+
* @summary Update Index Config Property
|
|
8768
|
+
* @param {string} xStoreid Store ID
|
|
8769
|
+
* @param {string} xStoresecret Store Secret
|
|
8770
|
+
* @param {string} property Property name
|
|
8771
|
+
* @param {object} body Property value
|
|
8772
|
+
* @param {*} [options] Override http request option.
|
|
8773
|
+
* @throws {RequiredError}
|
|
8774
|
+
*/
|
|
8775
|
+
v1IndexConfigPropertyPatch(xStoreid: string, xStoresecret: string, property: string, body: object, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
8776
|
+
/**
|
|
8777
|
+
* Configure the index for search
|
|
8778
|
+
* @summary Index Config
|
|
8779
|
+
* @param {string} xStoreid Store ID
|
|
8780
|
+
* @param {string} xStoresecret Store Secret
|
|
8781
|
+
* @param {string} indexname Index Name
|
|
8782
|
+
* @param {DataTypesIndexConfig} body Index configuration
|
|
8783
|
+
* @param {*} [options] Override http request option.
|
|
8784
|
+
* @throws {RequiredError}
|
|
8785
|
+
*/
|
|
8786
|
+
v1IndexIndexnameConfigPost(xStoreid: string, xStoresecret: string, indexname: string, body: DataTypesIndexConfig, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
8787
|
+
/**
|
|
8788
|
+
* Update a single property of the index configuration
|
|
8789
|
+
* @summary Update Index Config Property
|
|
8790
|
+
* @param {string} xStoreid Store ID
|
|
8791
|
+
* @param {string} xStoresecret Store Secret
|
|
8792
|
+
* @param {string} indexname Index Name
|
|
8793
|
+
* @param {string} property Property name
|
|
8794
|
+
* @param {object} body Property value
|
|
8795
|
+
* @param {*} [options] Override http request option.
|
|
8796
|
+
* @throws {RequiredError}
|
|
8797
|
+
*/
|
|
8798
|
+
v1IndexIndexnameConfigPropertyPatch(xStoreid: string, xStoresecret: string, indexname: string, property: string, body: object, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
8799
|
+
};
|
|
8800
|
+
/**
|
|
8801
|
+
* SearchApi - factory interface
|
|
8802
|
+
* @export
|
|
8803
|
+
*/
|
|
8804
|
+
export declare const SearchApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
8805
|
+
/**
|
|
8806
|
+
* Configure the index for search
|
|
8807
|
+
* @summary Index Config
|
|
8808
|
+
* @param {string} xStoreid Store ID
|
|
8809
|
+
* @param {string} xStoresecret Store Secret
|
|
8810
|
+
* @param {DataTypesIndexConfig} body Index configuration
|
|
8811
|
+
* @param {*} [options] Override http request option.
|
|
8812
|
+
* @throws {RequiredError}
|
|
8813
|
+
*/
|
|
8814
|
+
v1IndexConfigPost(xStoreid: string, xStoresecret: string, body: DataTypesIndexConfig, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
8815
|
+
/**
|
|
8816
|
+
* Update a single property of the index configuration
|
|
8817
|
+
* @summary Update Index Config Property
|
|
8818
|
+
* @param {string} xStoreid Store ID
|
|
8819
|
+
* @param {string} xStoresecret Store Secret
|
|
8820
|
+
* @param {string} property Property name
|
|
8821
|
+
* @param {object} body Property value
|
|
8822
|
+
* @param {*} [options] Override http request option.
|
|
8823
|
+
* @throws {RequiredError}
|
|
8824
|
+
*/
|
|
8825
|
+
v1IndexConfigPropertyPatch(xStoreid: string, xStoresecret: string, property: string, body: object, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
8826
|
+
/**
|
|
8827
|
+
* Configure the index for search
|
|
8828
|
+
* @summary Index Config
|
|
8829
|
+
* @param {string} xStoreid Store ID
|
|
8830
|
+
* @param {string} xStoresecret Store Secret
|
|
8831
|
+
* @param {string} indexname Index Name
|
|
8832
|
+
* @param {DataTypesIndexConfig} body Index configuration
|
|
8833
|
+
* @param {*} [options] Override http request option.
|
|
8834
|
+
* @throws {RequiredError}
|
|
8835
|
+
*/
|
|
8836
|
+
v1IndexIndexnameConfigPost(xStoreid: string, xStoresecret: string, indexname: string, body: DataTypesIndexConfig, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
8837
|
+
/**
|
|
8838
|
+
* Update a single property of the index configuration
|
|
8839
|
+
* @summary Update Index Config Property
|
|
8840
|
+
* @param {string} xStoreid Store ID
|
|
8841
|
+
* @param {string} xStoresecret Store Secret
|
|
8842
|
+
* @param {string} indexname Index Name
|
|
8843
|
+
* @param {string} property Property name
|
|
8844
|
+
* @param {object} body Property value
|
|
8845
|
+
* @param {*} [options] Override http request option.
|
|
8846
|
+
* @throws {RequiredError}
|
|
8847
|
+
*/
|
|
8848
|
+
v1IndexIndexnameConfigPropertyPatch(xStoreid: string, xStoresecret: string, indexname: string, property: string, body: object, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
8849
|
+
};
|
|
8850
|
+
/**
|
|
8851
|
+
* SearchApi - object-oriented interface
|
|
8852
|
+
* @export
|
|
8853
|
+
* @class SearchApi
|
|
8854
|
+
* @extends {BaseAPI}
|
|
8855
|
+
*/
|
|
8856
|
+
export declare class SearchApi extends BaseAPI {
|
|
8857
|
+
/**
|
|
8858
|
+
* Configure the index for search
|
|
8859
|
+
* @summary Index Config
|
|
8860
|
+
* @param {string} xStoreid Store ID
|
|
8861
|
+
* @param {string} xStoresecret Store Secret
|
|
8862
|
+
* @param {DataTypesIndexConfig} body Index configuration
|
|
8863
|
+
* @param {*} [options] Override http request option.
|
|
8864
|
+
* @throws {RequiredError}
|
|
8865
|
+
* @memberof SearchApi
|
|
8866
|
+
*/
|
|
8867
|
+
v1IndexConfigPost(xStoreid: string, xStoresecret: string, body: DataTypesIndexConfig, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
8868
|
+
/**
|
|
8869
|
+
* Update a single property of the index configuration
|
|
8870
|
+
* @summary Update Index Config Property
|
|
8871
|
+
* @param {string} xStoreid Store ID
|
|
8872
|
+
* @param {string} xStoresecret Store Secret
|
|
8873
|
+
* @param {string} property Property name
|
|
8874
|
+
* @param {object} body Property value
|
|
8875
|
+
* @param {*} [options] Override http request option.
|
|
8876
|
+
* @throws {RequiredError}
|
|
8877
|
+
* @memberof SearchApi
|
|
8878
|
+
*/
|
|
8879
|
+
v1IndexConfigPropertyPatch(xStoreid: string, xStoresecret: string, property: string, body: object, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
8880
|
+
/**
|
|
8881
|
+
* Configure the index for search
|
|
8882
|
+
* @summary Index Config
|
|
8883
|
+
* @param {string} xStoreid Store ID
|
|
8884
|
+
* @param {string} xStoresecret Store Secret
|
|
8885
|
+
* @param {string} indexname Index Name
|
|
8886
|
+
* @param {DataTypesIndexConfig} body Index configuration
|
|
8887
|
+
* @param {*} [options] Override http request option.
|
|
8888
|
+
* @throws {RequiredError}
|
|
8889
|
+
* @memberof SearchApi
|
|
8890
|
+
*/
|
|
8891
|
+
v1IndexIndexnameConfigPost(xStoreid: string, xStoresecret: string, indexname: string, body: DataTypesIndexConfig, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
8892
|
+
/**
|
|
8893
|
+
* Update a single property of the index configuration
|
|
8894
|
+
* @summary Update Index Config Property
|
|
8895
|
+
* @param {string} xStoreid Store ID
|
|
8896
|
+
* @param {string} xStoresecret Store Secret
|
|
8897
|
+
* @param {string} indexname Index Name
|
|
8898
|
+
* @param {string} property Property name
|
|
8899
|
+
* @param {object} body Property value
|
|
8900
|
+
* @param {*} [options] Override http request option.
|
|
8901
|
+
* @throws {RequiredError}
|
|
8902
|
+
* @memberof SearchApi
|
|
8903
|
+
*/
|
|
8904
|
+
v1IndexIndexnameConfigPropertyPatch(xStoreid: string, xStoresecret: string, indexname: string, property: string, body: object, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
8905
|
+
}
|
|
8505
8906
|
/**
|
|
8506
8907
|
* StoresApi - axios parameter creator
|
|
8507
8908
|
* @export
|