@seekora-ai/admin-api 1.0.13 → 1.0.14
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 +14 -5
- package/api.ts +587 -167
- package/dist/api.d.ts +504 -97
- package/dist/api.js +181 -152
- package/dist/esm/api.d.ts +504 -97
- package/dist/esm/api.js +181 -152
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.0.14.tgz +0 -0
- package/seekora-ai-admin-api-1.0.13.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.14
|
|
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.14 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -157,10 +157,11 @@ 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* | [**
|
|
161
|
-
*SearchApi* | [**
|
|
160
|
+
*SearchApi* | [**adminV1SearchPost**](docs/SearchApi.md#adminv1searchpost) | **POST** /admin/v1/search | Admin Search API
|
|
161
|
+
*SearchApi* | [**v1IndexIndexnameConfigGet**](docs/SearchApi.md#v1indexindexnameconfigget) | **GET** /v1/index/{indexname}/config | Get Index Config
|
|
162
162
|
*SearchApi* | [**v1IndexIndexnameConfigPost**](docs/SearchApi.md#v1indexindexnameconfigpost) | **POST** /v1/index/{indexname}/config | Index Config
|
|
163
163
|
*SearchApi* | [**v1IndexIndexnameConfigPropertyPatch**](docs/SearchApi.md#v1indexindexnameconfigpropertypatch) | **PATCH** /v1/index/{indexname}/config/{property} | Update Index Config Property
|
|
164
|
+
*SearchApi* | [**v1SearchPost**](docs/SearchApi.md#v1searchpost) | **POST** /v1/search | Public Search API
|
|
164
165
|
*StoresApi* | [**adminStoresGetStoreStoreIDGet**](docs/StoresApi.md#adminstoresgetstorestoreidget) | **GET** /admin/Stores/GetStore/{storeID} | Fetches stores by id
|
|
165
166
|
*StoresApi* | [**adminStoresOrgIdGet**](docs/StoresApi.md#adminstoresorgidget) | **GET** /admin/Stores/{OrgId} | Fetches list of all stores
|
|
166
167
|
*StoresApi* | [**adminStoresPost**](docs/StoresApi.md#adminstorespost) | **POST** /admin/Stores | Creates a new store
|
|
@@ -182,14 +183,16 @@ Class | Method | HTTP request | Description
|
|
|
182
183
|
|
|
183
184
|
### Documentation For Models
|
|
184
185
|
|
|
185
|
-
- [AdminV1UsersOnboardingUploaddataPostRequest](docs/AdminV1UsersOnboardingUploaddataPostRequest.md)
|
|
186
186
|
- [ApiSearchHighlight](docs/ApiSearchHighlight.md)
|
|
187
187
|
- [ApiSearchResultHit](docs/ApiSearchResultHit.md)
|
|
188
|
+
- [ApiSearchResultHitTextMatchInfo](docs/ApiSearchResultHitTextMatchInfo.md)
|
|
188
189
|
- [BatchRecordResult](docs/BatchRecordResult.md)
|
|
189
190
|
- [DataTypesAPICall](docs/DataTypesAPICall.md)
|
|
190
191
|
- [DataTypesAPICallRequestDto](docs/DataTypesAPICallRequestDto.md)
|
|
191
192
|
- [DataTypesAPICallResponse](docs/DataTypesAPICallResponse.md)
|
|
192
193
|
- [DataTypesAPICallsListResponse](docs/DataTypesAPICallsListResponse.md)
|
|
194
|
+
- [DataTypesAdminSearchRequest](docs/DataTypesAdminSearchRequest.md)
|
|
195
|
+
- [DataTypesAutocompleteSuggestion](docs/DataTypesAutocompleteSuggestion.md)
|
|
193
196
|
- [DataTypesCreateLimitRequestDto](docs/DataTypesCreateLimitRequestDto.md)
|
|
194
197
|
- [DataTypesCreateMenuRequestDto](docs/DataTypesCreateMenuRequestDto.md)
|
|
195
198
|
- [DataTypesCreateOrganizationRequest](docs/DataTypesCreateOrganizationRequest.md)
|
|
@@ -206,6 +209,7 @@ Class | Method | HTTP request | Description
|
|
|
206
209
|
- [DataTypesCreateUserResponseWrapper](docs/DataTypesCreateUserResponseWrapper.md)
|
|
207
210
|
- [DataTypesGenericStringArrayResponse](docs/DataTypesGenericStringArrayResponse.md)
|
|
208
211
|
- [DataTypesIndexConfig](docs/DataTypesIndexConfig.md)
|
|
212
|
+
- [DataTypesIndexConfigResponse](docs/DataTypesIndexConfigResponse.md)
|
|
209
213
|
- [DataTypesJobStatusResponse](docs/DataTypesJobStatusResponse.md)
|
|
210
214
|
- [DataTypesJobStatusResponseWrapper](docs/DataTypesJobStatusResponseWrapper.md)
|
|
211
215
|
- [DataTypesLimit](docs/DataTypesLimit.md)
|
|
@@ -228,6 +232,9 @@ Class | Method | HTTP request | Description
|
|
|
228
232
|
- [DataTypesNewsLetterRequestResponse](docs/DataTypesNewsLetterRequestResponse.md)
|
|
229
233
|
- [DataTypesNewsLetterRequestsListResponse](docs/DataTypesNewsLetterRequestsListResponse.md)
|
|
230
234
|
- [DataTypesOTPPayload](docs/DataTypesOTPPayload.md)
|
|
235
|
+
- [DataTypesOfficialSearchResponse](docs/DataTypesOfficialSearchResponse.md)
|
|
236
|
+
- [DataTypesOfficialSearchResponseWrapper](docs/DataTypesOfficialSearchResponseWrapper.md)
|
|
237
|
+
- [DataTypesOfficialSearchResult](docs/DataTypesOfficialSearchResult.md)
|
|
231
238
|
- [DataTypesOnboardingRequest](docs/DataTypesOnboardingRequest.md)
|
|
232
239
|
- [DataTypesOnboardingResponse](docs/DataTypesOnboardingResponse.md)
|
|
233
240
|
- [DataTypesOnboardingResponseWrapper](docs/DataTypesOnboardingResponseWrapper.md)
|
|
@@ -247,6 +254,7 @@ Class | Method | HTTP request | Description
|
|
|
247
254
|
- [DataTypesPlan](docs/DataTypesPlan.md)
|
|
248
255
|
- [DataTypesPlanResponse](docs/DataTypesPlanResponse.md)
|
|
249
256
|
- [DataTypesPlansListResponse](docs/DataTypesPlansListResponse.md)
|
|
257
|
+
- [DataTypesPublicSearchRequest](docs/DataTypesPublicSearchRequest.md)
|
|
250
258
|
- [DataTypesResponse](docs/DataTypesResponse.md)
|
|
251
259
|
- [DataTypesRole](docs/DataTypesRole.md)
|
|
252
260
|
- [DataTypesRoleResponse](docs/DataTypesRoleResponse.md)
|
|
@@ -259,6 +267,7 @@ Class | Method | HTTP request | Description
|
|
|
259
267
|
- [DataTypesSampleDatasetsResponseWrapper](docs/DataTypesSampleDatasetsResponseWrapper.md)
|
|
260
268
|
- [DataTypesSchemaOptionsResponse](docs/DataTypesSchemaOptionsResponse.md)
|
|
261
269
|
- [DataTypesSchemaOptionsResponseWrapper](docs/DataTypesSchemaOptionsResponseWrapper.md)
|
|
270
|
+
- [DataTypesSearchConfig](docs/DataTypesSearchConfig.md)
|
|
262
271
|
- [DataTypesSearchResult](docs/DataTypesSearchResult.md)
|
|
263
272
|
- [DataTypesSearchResultResponse](docs/DataTypesSearchResultResponse.md)
|
|
264
273
|
- [DataTypesServiceRequest](docs/DataTypesServiceRequest.md)
|