@seekora-ai/admin-api 1.0.33 → 1.0.34
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 +16 -2
- package/api.ts +877 -0
- package/dist/api.d.ts +528 -0
- package/dist/api.js +647 -3
- package/dist/esm/api.d.ts +528 -0
- package/dist/esm/api.js +636 -0
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.0.34.tgz +0 -0
- package/seekora-ai-admin-api-1.0.33.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.34
|
|
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.34 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -96,6 +96,7 @@ Class | Method | HTTP request | Description
|
|
|
96
96
|
*CustomStopwordsApi* | [**adminStoresXStoreIDStopwordsCustomWordlistsCustomWordListIDWordsPost**](docs/CustomStopwordsApi.md#adminstoresxstoreidstopwordscustomwordlistscustomwordlistidwordspost) | **POST** /admin/Stores/{xStoreID}/stopwords/custom-wordlists/{customWordListID}/words | Add words to custom word list
|
|
97
97
|
*CustomStopwordsApi* | [**adminStoresXStoreIDStopwordsCustomWordlistsGet**](docs/CustomStopwordsApi.md#adminstoresxstoreidstopwordscustomwordlistsget) | **GET** /admin/Stores/{xStoreID}/stopwords/custom-wordlists | Get custom word lists
|
|
98
98
|
*CustomStopwordsApi* | [**adminStoresXStoreIDStopwordsCustomWordlistsPost**](docs/CustomStopwordsApi.md#adminstoresxstoreidstopwordscustomwordlistspost) | **POST** /admin/Stores/{xStoreID}/stopwords/custom-wordlists | Create custom word list
|
|
99
|
+
*DocumentsApi* | [**adminStoresXStoreIDUploadPost**](docs/DocumentsApi.md#adminstoresxstoreiduploadpost) | **POST** /admin/Stores/{xStoreID}/upload | Upload a document
|
|
99
100
|
*LimitsApi* | [**miscLimitsChangeStatusLimitIDIsActivePut**](docs/LimitsApi.md#misclimitschangestatuslimitidisactiveput) | **PUT** /misc/limits/ChangeStatus/{limitID}/{isActive} | Change Limit Status of an existing limit
|
|
100
101
|
*LimitsApi* | [**miscLimitsGet**](docs/LimitsApi.md#misclimitsget) | **GET** /misc/limits | Fetches list of all limits
|
|
101
102
|
*LimitsApi* | [**miscLimitsLimitIDGet**](docs/LimitsApi.md#misclimitslimitidget) | **GET** /misc/limits/{limitID} | Fetches limit by id
|
|
@@ -204,6 +205,12 @@ Class | Method | HTTP request | Description
|
|
|
204
205
|
*StopwordsApi* | [**adminStoresXStoreIDStopwordsWordlistsWithStoreWordsGet**](docs/StopwordsApi.md#adminstoresxstoreidstopwordswordlistswithstorewordsget) | **GET** /admin/Stores/{xStoreID}/stopwords/wordlists/with-store-words | Get word lists by language (includes store-specific words)
|
|
205
206
|
*StopwordsApi* | [**adminStoresXStoreIDStopwordsWordlistsWordListIDWordsDelete**](docs/StopwordsApi.md#adminstoresxstoreidstopwordswordlistswordlistidwordsdelete) | **DELETE** /admin/Stores/{xStoreID}/stopwords/wordlists/{wordListID}/words | Remove words from language word list
|
|
206
207
|
*StopwordsApi* | [**adminStoresXStoreIDStopwordsWordlistsWordListIDWordsPost**](docs/StopwordsApi.md#adminstoresxstoreidstopwordswordlistswordlistidwordspost) | **POST** /admin/Stores/{xStoreID}/stopwords/wordlists/{wordListID}/words | Add words to language word list
|
|
208
|
+
*StoreDocumentsApi* | [**adminStoresXStoreIDDocumentsBulkPost**](docs/StoreDocumentsApi.md#adminstoresxstoreiddocumentsbulkpost) | **POST** /admin/Stores/{xStoreID}/documents/bulk | Bulk document operations
|
|
209
|
+
*StoreDocumentsApi* | [**adminStoresXStoreIDDocumentsDocumentIDDelete**](docs/StoreDocumentsApi.md#adminstoresxstoreiddocumentsdocumentiddelete) | **DELETE** /admin/Stores/{xStoreID}/documents/{documentID} | Delete document
|
|
210
|
+
*StoreDocumentsApi* | [**adminStoresXStoreIDDocumentsDocumentIDGet**](docs/StoreDocumentsApi.md#adminstoresxstoreiddocumentsdocumentidget) | **GET** /admin/Stores/{xStoreID}/documents/{documentID} | Get single document
|
|
211
|
+
*StoreDocumentsApi* | [**adminStoresXStoreIDDocumentsDocumentIDPut**](docs/StoreDocumentsApi.md#adminstoresxstoreiddocumentsdocumentidput) | **PUT** /admin/Stores/{xStoreID}/documents/{documentID} | Update document
|
|
212
|
+
*StoreDocumentsApi* | [**adminStoresXStoreIDDocumentsGet**](docs/StoreDocumentsApi.md#adminstoresxstoreiddocumentsget) | **GET** /admin/Stores/{xStoreID}/documents | Get documents from store
|
|
213
|
+
*StoreDocumentsApi* | [**adminStoresXStoreIDDocumentsPost**](docs/StoreDocumentsApi.md#adminstoresxstoreiddocumentspost) | **POST** /admin/Stores/{xStoreID}/documents | Insert document
|
|
207
214
|
*StoresApi* | [**adminStoresGet**](docs/StoresApi.md#adminstoresget) | **GET** /admin/Stores | Fetches list of all stores
|
|
208
215
|
*StoresApi* | [**adminStoresGetStoreXStoreIDGet**](docs/StoresApi.md#adminstoresgetstorexstoreidget) | **GET** /admin/Stores/GetStore/{xStoreID} | Fetches stores by xStoreID
|
|
209
216
|
*StoresApi* | [**adminStoresPost**](docs/StoresApi.md#adminstorespost) | **POST** /admin/Stores | Creates a new store
|
|
@@ -242,6 +249,9 @@ Class | Method | HTTP request | Description
|
|
|
242
249
|
- [DataTypesAddWordsToLanguageListRequest](docs/DataTypesAddWordsToLanguageListRequest.md)
|
|
243
250
|
- [DataTypesAdminSearchRequest](docs/DataTypesAdminSearchRequest.md)
|
|
244
251
|
- [DataTypesAutocompleteSuggestion](docs/DataTypesAutocompleteSuggestion.md)
|
|
252
|
+
- [DataTypesBulkDocumentRequest](docs/DataTypesBulkDocumentRequest.md)
|
|
253
|
+
- [DataTypesBulkDocumentResponse](docs/DataTypesBulkDocumentResponse.md)
|
|
254
|
+
- [DataTypesBulkDocumentResponseWrapper](docs/DataTypesBulkDocumentResponseWrapper.md)
|
|
245
255
|
- [DataTypesBulkUploadPluralDeclensionRequest](docs/DataTypesBulkUploadPluralDeclensionRequest.md)
|
|
246
256
|
- [DataTypesBulkUploadResponseWrapper](docs/DataTypesBulkUploadResponseWrapper.md)
|
|
247
257
|
- [DataTypesCombinedSearchResponse](docs/DataTypesCombinedSearchResponse.md)
|
|
@@ -280,6 +290,10 @@ Class | Method | HTTP request | Description
|
|
|
280
290
|
- [DataTypesCustomWordListsResponseWrapper](docs/DataTypesCustomWordListsResponseWrapper.md)
|
|
281
291
|
- [DataTypesCustomWordWithStatus](docs/DataTypesCustomWordWithStatus.md)
|
|
282
292
|
- [DataTypesDetailedCreditBalanceResponse](docs/DataTypesDetailedCreditBalanceResponse.md)
|
|
293
|
+
- [DataTypesDocumentListResponse](docs/DataTypesDocumentListResponse.md)
|
|
294
|
+
- [DataTypesDocumentListResponseWrapper](docs/DataTypesDocumentListResponseWrapper.md)
|
|
295
|
+
- [DataTypesDocumentResponse](docs/DataTypesDocumentResponse.md)
|
|
296
|
+
- [DataTypesDocumentResponseWrapper](docs/DataTypesDocumentResponseWrapper.md)
|
|
283
297
|
- [DataTypesErrorMeta](docs/DataTypesErrorMeta.md)
|
|
284
298
|
- [DataTypesErrorMetaResponse](docs/DataTypesErrorMetaResponse.md)
|
|
285
299
|
- [DataTypesFieldMetadata](docs/DataTypesFieldMetadata.md)
|