@seekora-ai/admin-api 1.0.9 → 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 +9 -2
- package/api.ts +677 -5
- package/dist/api.d.ts +463 -6
- package/dist/api.js +407 -1
- package/dist/esm/api.d.ts +463 -6
- 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.9.tgz +0 -0
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @seekora-ai/admin-api@1.0.
|
|
1
|
+
## @seekora-ai/admin-api@1.0.11
|
|
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.0.
|
|
39
|
+
npm install @seekora-ai/admin-api@1.0.11 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -157,6 +157,10 @@ Class | Method | HTTP request | Description
|
|
|
157
157
|
*RolesApi* | [**adminRolesOrgIdGet**](docs/RolesApi.md#adminrolesorgidget) | **GET** /admin/roles/{OrgId} | Fetches list of all roles
|
|
158
158
|
*RolesApi* | [**adminRolesOrgIdRoleIdGet**](docs/RolesApi.md#adminrolesorgidroleidget) | **GET** /admin/roles/{OrgId}/{RoleId} | Fetches role by id
|
|
159
159
|
*RolesApi* | [**adminRolesPost**](docs/RolesApi.md#adminrolespost) | **POST** /admin/roles | Creates a new role
|
|
160
|
+
*SearchApi* | [**v1IndexConfigPost**](docs/SearchApi.md#v1indexconfigpost) | **POST** /v1/index/config | Index Config
|
|
161
|
+
*SearchApi* | [**v1IndexConfigPropertyPatch**](docs/SearchApi.md#v1indexconfigpropertypatch) | **PATCH** /v1/index/config/{property} | Update Index Config Property
|
|
162
|
+
*SearchApi* | [**v1IndexIndexnameConfigPost**](docs/SearchApi.md#v1indexindexnameconfigpost) | **POST** /v1/index/{indexname}/config | Index Config
|
|
163
|
+
*SearchApi* | [**v1IndexIndexnameConfigPropertyPatch**](docs/SearchApi.md#v1indexindexnameconfigpropertypatch) | **PATCH** /v1/index/{indexname}/config/{property} | Update Index Config Property
|
|
160
164
|
*StoresApi* | [**adminStoresGetStoreStoreIDGet**](docs/StoresApi.md#adminstoresgetstorestoreidget) | **GET** /admin/Stores/GetStore/{storeID} | Fetches stores by id
|
|
161
165
|
*StoresApi* | [**adminStoresOrgIdGet**](docs/StoresApi.md#adminstoresorgidget) | **GET** /admin/Stores/{OrgId} | Fetches list of all stores
|
|
162
166
|
*StoresApi* | [**adminStoresPost**](docs/StoresApi.md#adminstorespost) | **POST** /admin/Stores | Creates a new store
|
|
@@ -201,6 +205,7 @@ Class | Method | HTTP request | Description
|
|
|
201
205
|
- [DataTypesCreateUserResponse](docs/DataTypesCreateUserResponse.md)
|
|
202
206
|
- [DataTypesCreateUserResponseWrapper](docs/DataTypesCreateUserResponseWrapper.md)
|
|
203
207
|
- [DataTypesGenericStringArrayResponse](docs/DataTypesGenericStringArrayResponse.md)
|
|
208
|
+
- [DataTypesIndexConfig](docs/DataTypesIndexConfig.md)
|
|
204
209
|
- [DataTypesJobStatusResponse](docs/DataTypesJobStatusResponse.md)
|
|
205
210
|
- [DataTypesJobStatusResponseWrapper](docs/DataTypesJobStatusResponseWrapper.md)
|
|
206
211
|
- [DataTypesLimit](docs/DataTypesLimit.md)
|
|
@@ -250,6 +255,8 @@ Class | Method | HTTP request | Description
|
|
|
250
255
|
- [DataTypesRoleRightResponse](docs/DataTypesRoleRightResponse.md)
|
|
251
256
|
- [DataTypesRoleRightsListResponse](docs/DataTypesRoleRightsListResponse.md)
|
|
252
257
|
- [DataTypesRolesListResponse](docs/DataTypesRolesListResponse.md)
|
|
258
|
+
- [DataTypesSampleDatasetResponse](docs/DataTypesSampleDatasetResponse.md)
|
|
259
|
+
- [DataTypesSampleDatasetsResponseWrapper](docs/DataTypesSampleDatasetsResponseWrapper.md)
|
|
253
260
|
- [DataTypesSchemaOptionsResponse](docs/DataTypesSchemaOptionsResponse.md)
|
|
254
261
|
- [DataTypesSchemaOptionsResponseWrapper](docs/DataTypesSchemaOptionsResponseWrapper.md)
|
|
255
262
|
- [DataTypesSearchResult](docs/DataTypesSearchResult.md)
|