@seekora-ai/admin-api 1.1.79 → 1.1.81
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 +4 -2
- package/api.ts +587 -23
- package/dist/api.d.ts +342 -20
- package/dist/api.js +452 -23
- package/dist/esm/api.d.ts +342 -20
- package/dist/esm/api.js +452 -23
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.1.81.tgz +0 -0
- package/seekora-ai-admin-api-1.1.79.tgz +0 -0
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @seekora-ai/admin-api@1.1.
|
|
1
|
+
## @seekora-ai/admin-api@1.1.81
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install @seekora-ai/admin-api@1.1.
|
|
39
|
+
npm install @seekora-ai/admin-api@1.1.81 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -527,6 +527,7 @@ Class | Method | HTTP request | Description
|
|
|
527
527
|
*SearchApi* | [**v1IndexIndexnameConfigPost**](docs/SearchApi.md#v1indexindexnameconfigpost) | **POST** /v1/index/{indexname}/config | Index Config
|
|
528
528
|
*SearchApi* | [**v1IndexIndexnameConfigPropertyPatch**](docs/SearchApi.md#v1indexindexnameconfigpropertypatch) | **PATCH** /v1/index/{indexname}/config/{property} | Update Index Config Property
|
|
529
529
|
*SearchApi* | [**v1IndexIndexnameDefaultsGet**](docs/SearchApi.md#v1indexindexnamedefaultsget) | **GET** /v1/index/{indexname}/defaults | Get Schema-Based Defaults
|
|
530
|
+
*SearchApi* | [**v1SearchGet**](docs/SearchApi.md#v1searchget) | **GET** /v1/search | Public Search API (GET)
|
|
530
531
|
*SearchApi* | [**v1SearchPost**](docs/SearchApi.md#v1searchpost) | **POST** /v1/search | Public Search API
|
|
531
532
|
*StopwordsApi* | [**adminStoresStopwordsLanguagesGet**](docs/StopwordsApi.md#adminstoresstopwordslanguagesget) | **GET** /admin/Stores/stopwords/languages | Get available languages
|
|
532
533
|
*StopwordsApi* | [**adminStoresXStoreIDStopwordsWordStatusPut**](docs/StopwordsApi.md#adminstoresxstoreidstopwordswordstatusput) | **PUT** /admin/Stores/{xStoreID}/stopwords/word-status | Update word status for store
|
|
@@ -1222,6 +1223,7 @@ Class | Method | HTTP request | Description
|
|
|
1222
1223
|
- [DataTypesSetPasswordRequest](docs/DataTypesSetPasswordRequest.md)
|
|
1223
1224
|
- [DataTypesSetUserCustomPermissionsRequest](docs/DataTypesSetUserCustomPermissionsRequest.md)
|
|
1224
1225
|
- [DataTypesSortField](docs/DataTypesSortField.md)
|
|
1226
|
+
- [DataTypesSortOption](docs/DataTypesSortOption.md)
|
|
1225
1227
|
- [DataTypesSource](docs/DataTypesSource.md)
|
|
1226
1228
|
- [DataTypesSourcesListResponse](docs/DataTypesSourcesListResponse.md)
|
|
1227
1229
|
- [DataTypesStopwordEntry](docs/DataTypesStopwordEntry.md)
|