@seekora-ai/admin-api 1.0.16 → 1.0.18
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 +21 -6
- package/api.ts +1157 -233
- package/dist/api.d.ts +797 -138
- package/dist/api.js +535 -73
- package/dist/esm/api.d.ts +797 -138
- package/dist/esm/api.js +535 -73
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.0.18.tgz +0 -0
- package/seekora-ai-admin-api-1.0.16.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.18
|
|
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.18 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -159,16 +159,23 @@ Class | Method | HTTP request | Description
|
|
|
159
159
|
*RolesApi* | [**adminRolesOrgIdGet**](docs/RolesApi.md#adminrolesorgidget) | **GET** /admin/roles/{OrgId} | Fetches list of all roles
|
|
160
160
|
*RolesApi* | [**adminRolesOrgIdRoleIdGet**](docs/RolesApi.md#adminrolesorgidroleidget) | **GET** /admin/roles/{OrgId}/{RoleId} | Fetches role by id
|
|
161
161
|
*RolesApi* | [**adminRolesPost**](docs/RolesApi.md#adminrolespost) | **POST** /admin/roles | Creates a new role
|
|
162
|
-
*SearchApi* | [**
|
|
162
|
+
*SearchApi* | [**adminV1SearchXStoreIDPost**](docs/SearchApi.md#adminv1searchxstoreidpost) | **POST** /admin/v1/search/{xStoreID} | Admin Search API
|
|
163
|
+
*SearchApi* | [**v1IndexConfigSchemaGet**](docs/SearchApi.md#v1indexconfigschemaget) | **GET** /v1/index/config-schema | Get Configuration Schema
|
|
163
164
|
*SearchApi* | [**v1IndexIndexnameConfigGet**](docs/SearchApi.md#v1indexindexnameconfigget) | **GET** /v1/index/{indexname}/config | Get Index Config
|
|
164
165
|
*SearchApi* | [**v1IndexIndexnameConfigPost**](docs/SearchApi.md#v1indexindexnameconfigpost) | **POST** /v1/index/{indexname}/config | Index Config
|
|
165
166
|
*SearchApi* | [**v1IndexIndexnameConfigPropertyPatch**](docs/SearchApi.md#v1indexindexnameconfigpropertypatch) | **PATCH** /v1/index/{indexname}/config/{property} | Update Index Config Property
|
|
167
|
+
*SearchApi* | [**v1IndexIndexnameDefaultsGet**](docs/SearchApi.md#v1indexindexnamedefaultsget) | **GET** /v1/index/{indexname}/defaults | Get Schema-Based Defaults
|
|
166
168
|
*SearchApi* | [**v1SearchPost**](docs/SearchApi.md#v1searchpost) | **POST** /v1/search | Public Search API
|
|
169
|
+
*StoresApi* | [**adminStoresGet**](docs/StoresApi.md#adminstoresget) | **GET** /admin/Stores | Fetches list of all stores
|
|
167
170
|
*StoresApi* | [**adminStoresGetStoreStoreIDGet**](docs/StoresApi.md#adminstoresgetstorestoreidget) | **GET** /admin/Stores/GetStore/{storeID} | Fetches stores by id
|
|
168
|
-
*StoresApi* | [**
|
|
171
|
+
*StoresApi* | [**adminStoresGetStoreXStoreIDGet**](docs/StoresApi.md#adminstoresgetstorexstoreidget) | **GET** /admin/Stores/GetStore/{xStoreID} | Fetches stores by xStoreID
|
|
169
172
|
*StoresApi* | [**adminStoresPost**](docs/StoresApi.md#adminstorespost) | **POST** /admin/Stores | Creates a new store
|
|
170
173
|
*StoresApi* | [**adminStoresStoreIDPut**](docs/StoresApi.md#adminstoresstoreidput) | **PUT** /admin/Stores/{storeID} | Update an existing store
|
|
171
174
|
*StoresApi* | [**adminStoresUpdateStatusIdStatusPut**](docs/StoresApi.md#adminstoresupdatestatusidstatusput) | **PUT** /admin/Stores/UpdateStatus/{id}/{status} | Update an existing StoreStatus
|
|
175
|
+
*StoresApi* | [**adminStoresXStoreIDConfigGet**](docs/StoresApi.md#adminstoresxstoreidconfigget) | **GET** /admin/Stores/{xStoreID}/config | Get Store Config
|
|
176
|
+
*StoresApi* | [**adminStoresXStoreIDConfigPut**](docs/StoresApi.md#adminstoresxstoreidconfigput) | **PUT** /admin/Stores/{xStoreID}/config | Update Store Config
|
|
177
|
+
*StoresApi* | [**adminStoresXStoreIDConfigSchemaGet**](docs/StoresApi.md#adminstoresxstoreidconfigschemaget) | **GET** /admin/Stores/{xStoreID}/config-schema | Get Store Config Schema
|
|
178
|
+
*StoresApi* | [**adminStoresXStoreIDDefaultsGet**](docs/StoresApi.md#adminstoresxstoreiddefaultsget) | **GET** /admin/Stores/{xStoreID}/defaults | Get Store Schema-Based Defaults
|
|
172
179
|
*SubscriptionsApi* | [**adminSubscriptionsSubscriptionIDPut**](docs/SubscriptionsApi.md#adminsubscriptionssubscriptionidput) | **PUT** /admin/subscriptions/{subscriptionID} | Update an existing Subscription
|
|
173
180
|
*SubscriptionsApi* | [**adminSubscriptionsUpdatestatusSubscriptionIDStatusPut**](docs/SubscriptionsApi.md#adminsubscriptionsupdatestatussubscriptionidstatusput) | **PUT** /admin/subscriptions/updatestatus/{subscriptionID}/{status} | Update an existing Subscription status
|
|
174
181
|
*SubscriptionsApi* | [**miscSubscriptionsGet**](docs/SubscriptionsApi.md#miscsubscriptionsget) | **GET** /misc/subscriptions | Fetches list of all Subscription
|
|
@@ -195,6 +202,9 @@ Class | Method | HTTP request | Description
|
|
|
195
202
|
- [DataTypesAPICallsListResponse](docs/DataTypesAPICallsListResponse.md)
|
|
196
203
|
- [DataTypesAdminSearchRequest](docs/DataTypesAdminSearchRequest.md)
|
|
197
204
|
- [DataTypesAutocompleteSuggestion](docs/DataTypesAutocompleteSuggestion.md)
|
|
205
|
+
- [DataTypesConfigGroup](docs/DataTypesConfigGroup.md)
|
|
206
|
+
- [DataTypesConfigurationSchema](docs/DataTypesConfigurationSchema.md)
|
|
207
|
+
- [DataTypesConfigurationSchemaResponseWrapper](docs/DataTypesConfigurationSchemaResponseWrapper.md)
|
|
198
208
|
- [DataTypesCreateLimitRequestDto](docs/DataTypesCreateLimitRequestDto.md)
|
|
199
209
|
- [DataTypesCreateMenuRequestDto](docs/DataTypesCreateMenuRequestDto.md)
|
|
200
210
|
- [DataTypesCreateOrganizationRequest](docs/DataTypesCreateOrganizationRequest.md)
|
|
@@ -209,9 +219,12 @@ Class | Method | HTTP request | Description
|
|
|
209
219
|
- [DataTypesCreateUserRequestDto](docs/DataTypesCreateUserRequestDto.md)
|
|
210
220
|
- [DataTypesCreateUserResponse](docs/DataTypesCreateUserResponse.md)
|
|
211
221
|
- [DataTypesCreateUserResponseWrapper](docs/DataTypesCreateUserResponseWrapper.md)
|
|
222
|
+
- [DataTypesFieldMetadata](docs/DataTypesFieldMetadata.md)
|
|
212
223
|
- [DataTypesGenericStringArrayResponse](docs/DataTypesGenericStringArrayResponse.md)
|
|
224
|
+
- [DataTypesGetStoreResult](docs/DataTypesGetStoreResult.md)
|
|
213
225
|
- [DataTypesIndexConfig](docs/DataTypesIndexConfig.md)
|
|
214
|
-
- [
|
|
226
|
+
- [DataTypesIndexConfigResponseWrapper](docs/DataTypesIndexConfigResponseWrapper.md)
|
|
227
|
+
- [DataTypesIndexField](docs/DataTypesIndexField.md)
|
|
215
228
|
- [DataTypesJobStatusResponse](docs/DataTypesJobStatusResponse.md)
|
|
216
229
|
- [DataTypesJobStatusResponseWrapper](docs/DataTypesJobStatusResponseWrapper.md)
|
|
217
230
|
- [DataTypesLimit](docs/DataTypesLimit.md)
|
|
@@ -268,15 +281,17 @@ Class | Method | HTTP request | Description
|
|
|
268
281
|
- [DataTypesRolesListResponse](docs/DataTypesRolesListResponse.md)
|
|
269
282
|
- [DataTypesSampleDatasetResponse](docs/DataTypesSampleDatasetResponse.md)
|
|
270
283
|
- [DataTypesSampleDatasetsResponseWrapper](docs/DataTypesSampleDatasetsResponseWrapper.md)
|
|
284
|
+
- [DataTypesSchemaBasedDefaults](docs/DataTypesSchemaBasedDefaults.md)
|
|
285
|
+
- [DataTypesSchemaBasedDefaultsResponseWrapper](docs/DataTypesSchemaBasedDefaultsResponseWrapper.md)
|
|
271
286
|
- [DataTypesSchemaOptionsResponse](docs/DataTypesSchemaOptionsResponse.md)
|
|
272
287
|
- [DataTypesSchemaOptionsResponseWrapper](docs/DataTypesSchemaOptionsResponseWrapper.md)
|
|
273
|
-
- [DataTypesSearchConfig](docs/DataTypesSearchConfig.md)
|
|
274
288
|
- [DataTypesSearchResult](docs/DataTypesSearchResult.md)
|
|
275
289
|
- [DataTypesSearchResultResponse](docs/DataTypesSearchResultResponse.md)
|
|
276
290
|
- [DataTypesServiceRequest](docs/DataTypesServiceRequest.md)
|
|
277
291
|
- [DataTypesServiceRequestDto](docs/DataTypesServiceRequestDto.md)
|
|
278
292
|
- [DataTypesServiceRequestResponse](docs/DataTypesServiceRequestResponse.md)
|
|
279
293
|
- [DataTypesServiceRequestsListResponse](docs/DataTypesServiceRequestsListResponse.md)
|
|
294
|
+
- [DataTypesSortField](docs/DataTypesSortField.md)
|
|
280
295
|
- [DataTypesSource](docs/DataTypesSource.md)
|
|
281
296
|
- [DataTypesSourcesListResponse](docs/DataTypesSourcesListResponse.md)
|
|
282
297
|
- [DataTypesStore](docs/DataTypesStore.md)
|