@seekora-ai/admin-api 1.0.73 → 1.0.74
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 +11 -2
- package/api.ts +628 -0
- package/dist/api.d.ts +373 -0
- package/dist/api.js +463 -1
- package/dist/esm/api.d.ts +373 -0
- package/dist/esm/api.js +458 -0
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.0.74.tgz +0 -0
- package/seekora-ai-admin-api-1.0.73.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.74
|
|
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.74 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -212,6 +212,7 @@ Class | Method | HTTP request | Description
|
|
|
212
212
|
*PaymentGatewayApi* | [**paymentGatewayVerifyPost**](docs/PaymentGatewayApi.md#paymentgatewayverifypost) | **POST** /payment-gateway/verify | Verify payment status
|
|
213
213
|
*PaymentGatewayApi* | [**v1CreditPlansGet**](docs/PaymentGatewayApi.md#v1creditplansget) | **GET** /v1/credit-plans | Get available credit plans
|
|
214
214
|
*PaymentGatewayApi* | [**v1SubscriptionPlansGet**](docs/PaymentGatewayApi.md#v1subscriptionplansget) | **GET** /v1/subscription-plans | Get subscription plans grouped by tier
|
|
215
|
+
*PaymentGatewayApi* | [**v1SubscriptionPlansIdGet**](docs/PaymentGatewayApi.md#v1subscriptionplansidget) | **GET** /v1/subscription-plans/{id} | Get a single subscription plan by ID or identifier
|
|
215
216
|
*PaymentsApi* | [**adminPaymentsGet**](docs/PaymentsApi.md#adminpaymentsget) | **GET** /admin/payments/ | Fetches list of all payments
|
|
216
217
|
*PaymentsApi* | [**adminPaymentsPaymentIDDelete**](docs/PaymentsApi.md#adminpaymentspaymentiddelete) | **DELETE** /admin/payments/{paymentID} | Delete a payment
|
|
217
218
|
*PaymentsApi* | [**adminPaymentsPaymentIDGet**](docs/PaymentsApi.md#adminpaymentspaymentidget) | **GET** /admin/payments/{paymentID} | Fetches payment by id
|
|
@@ -309,6 +310,11 @@ Class | Method | HTTP request | Description
|
|
|
309
310
|
*StopwordsApi* | [**adminStoresXStoreIDStopwordsWordlistsWithStoreWordsGet**](docs/StopwordsApi.md#adminstoresxstoreidstopwordswordlistswithstorewordsget) | **GET** /admin/Stores/{xStoreID}/stopwords/wordlists/with-store-words | Get word lists by language (includes store-specific words)
|
|
310
311
|
*StopwordsApi* | [**adminStoresXStoreIDStopwordsWordlistsWordListIDWordsDelete**](docs/StopwordsApi.md#adminstoresxstoreidstopwordswordlistswordlistidwordsdelete) | **DELETE** /admin/Stores/{xStoreID}/stopwords/wordlists/{wordListID}/words | Remove words from language word list
|
|
311
312
|
*StopwordsApi* | [**adminStoresXStoreIDStopwordsWordlistsWordListIDWordsPost**](docs/StopwordsApi.md#adminstoresxstoreidstopwordswordlistswordlistidwordspost) | **POST** /admin/Stores/{xStoreID}/stopwords/wordlists/{wordListID}/words | Add words to language word list
|
|
313
|
+
*StoreCreationApi* | [**adminV1StoreCreationProgressDelete**](docs/StoreCreationApi.md#adminv1storecreationprogressdelete) | **DELETE** /admin/v1/store-creation/progress | Delete store creation progress
|
|
314
|
+
*StoreCreationApi* | [**adminV1StoreCreationProgressGet**](docs/StoreCreationApi.md#adminv1storecreationprogressget) | **GET** /admin/v1/store-creation/progress | Get current store creation progress
|
|
315
|
+
*StoreCreationApi* | [**adminV1StoreCreationSchemaUploadPost**](docs/StoreCreationApi.md#adminv1storecreationschemauploadpost) | **POST** /admin/v1/store-creation/schema-upload | Upload custom schema for store
|
|
316
|
+
*StoreCreationApi* | [**adminV1StoreCreationStepPost**](docs/StoreCreationApi.md#adminv1storecreationsteppost) | **POST** /admin/v1/store-creation/step | Update store creation step
|
|
317
|
+
*StoreCreationApi* | [**adminV1StoreCreationStoreIdUploadDataPost**](docs/StoreCreationApi.md#adminv1storecreationstoreiduploaddatapost) | **POST** /admin/v1/store-creation/{storeId}/upload-data | Upload custom data file for store
|
|
312
318
|
*StoreDocumentsApi* | [**adminStoresXStoreIDDocumentsBulkPost**](docs/StoreDocumentsApi.md#adminstoresxstoreiddocumentsbulkpost) | **POST** /admin/Stores/{xStoreID}/documents/bulk | Bulk document operations
|
|
313
319
|
*StoreDocumentsApi* | [**adminStoresXStoreIDDocumentsDocumentIDDelete**](docs/StoreDocumentsApi.md#adminstoresxstoreiddocumentsdocumentiddelete) | **DELETE** /admin/Stores/{xStoreID}/documents/{documentID} | Delete document
|
|
314
320
|
*StoreDocumentsApi* | [**adminStoresXStoreIDDocumentsDocumentIDGet**](docs/StoreDocumentsApi.md#adminstoresxstoreiddocumentsdocumentidget) | **GET** /admin/Stores/{xStoreID}/documents/{documentID} | Get single document
|
|
@@ -716,6 +722,9 @@ Class | Method | HTTP request | Description
|
|
|
716
722
|
- [DataTypesSourcesListResponse](docs/DataTypesSourcesListResponse.md)
|
|
717
723
|
- [DataTypesStopwordEntry](docs/DataTypesStopwordEntry.md)
|
|
718
724
|
- [DataTypesStore](docs/DataTypesStore.md)
|
|
725
|
+
- [DataTypesStoreCreationRequest](docs/DataTypesStoreCreationRequest.md)
|
|
726
|
+
- [DataTypesStoreCreationResponse](docs/DataTypesStoreCreationResponse.md)
|
|
727
|
+
- [DataTypesStoreCreationResponseWrapper](docs/DataTypesStoreCreationResponseWrapper.md)
|
|
719
728
|
- [DataTypesStoreCredentials](docs/DataTypesStoreCredentials.md)
|
|
720
729
|
- [DataTypesStoreCredentialsResponse](docs/DataTypesStoreCredentialsResponse.md)
|
|
721
730
|
- [DataTypesStoreKeyResponse](docs/DataTypesStoreKeyResponse.md)
|