@seekora-ai/admin-api 1.0.72 → 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 CHANGED
@@ -1,4 +1,4 @@
1
- ## @seekora-ai/admin-api@1.0.72
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.72 --save
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
@@ -326,6 +332,8 @@ Class | Method | HTTP request | Description
326
332
  *StoresApi* | [**adminStoresXStoreIDCredentialsGet**](docs/StoresApi.md#adminstoresxstoreidcredentialsget) | **GET** /admin/Stores/{xStoreID}/credentials | Get store credentials
327
333
  *StoresApi* | [**adminStoresXStoreIDDefaultsGet**](docs/StoresApi.md#adminstoresxstoreiddefaultsget) | **GET** /admin/Stores/{xStoreID}/defaults | Get Store Schema-Based Defaults
328
334
  *StoresApi* | [**xStoreIDRegenerateSecretPost**](docs/StoresApi.md#xstoreidregeneratesecretpost) | **POST** /{xStoreID}/regenerate-secret | Regenerate X-Store Secret
335
+ *SubscriptionsApi* | [**adminSubscriptionsCancelPreviewPost**](docs/SubscriptionsApi.md#adminsubscriptionscancelpreviewpost) | **POST** /admin/subscriptions/cancel/preview | Preview subscription cancellation details
336
+ *SubscriptionsApi* | [**adminSubscriptionsCancelProcessPost**](docs/SubscriptionsApi.md#adminsubscriptionscancelprocesspost) | **POST** /admin/subscriptions/cancel/process | Process subscription cancellation
329
337
  *SubscriptionsApi* | [**adminSubscriptionsSubscriptionIDPut**](docs/SubscriptionsApi.md#adminsubscriptionssubscriptionidput) | **PUT** /admin/subscriptions/{subscriptionID} | Update an existing Subscription
330
338
  *SubscriptionsApi* | [**adminSubscriptionsUpdatestatusSubscriptionIDStatusPut**](docs/SubscriptionsApi.md#adminsubscriptionsupdatestatussubscriptionidstatusput) | **PUT** /admin/subscriptions/updatestatus/{subscriptionID}/{status} | Update an existing Subscription status
331
339
  *SubscriptionsApi* | [**miscSubscriptionsGet**](docs/SubscriptionsApi.md#miscsubscriptionsget) | **GET** /misc/subscriptions | Fetches list of all Subscription
@@ -714,6 +722,9 @@ Class | Method | HTTP request | Description
714
722
  - [DataTypesSourcesListResponse](docs/DataTypesSourcesListResponse.md)
715
723
  - [DataTypesStopwordEntry](docs/DataTypesStopwordEntry.md)
716
724
  - [DataTypesStore](docs/DataTypesStore.md)
725
+ - [DataTypesStoreCreationRequest](docs/DataTypesStoreCreationRequest.md)
726
+ - [DataTypesStoreCreationResponse](docs/DataTypesStoreCreationResponse.md)
727
+ - [DataTypesStoreCreationResponseWrapper](docs/DataTypesStoreCreationResponseWrapper.md)
717
728
  - [DataTypesStoreCredentials](docs/DataTypesStoreCredentials.md)
718
729
  - [DataTypesStoreCredentialsResponse](docs/DataTypesStoreCredentialsResponse.md)
719
730
  - [DataTypesStoreKeyResponse](docs/DataTypesStoreKeyResponse.md)
@@ -767,6 +778,8 @@ Class | Method | HTTP request | Description
767
778
  - [RefundRefundPreviewResponseDto](docs/RefundRefundPreviewResponseDto.md)
768
779
  - [RefundRefundSummaryDto](docs/RefundRefundSummaryDto.md)
769
780
  - [RefundSubscriptionInfoDto](docs/RefundSubscriptionInfoDto.md)
781
+ - [SubscriptionRouteCancelPreviewRequest](docs/SubscriptionRouteCancelPreviewRequest.md)
782
+ - [SubscriptionRouteCancelProcessRequest](docs/SubscriptionRouteCancelProcessRequest.md)
770
783
  - [V1ConnectorsSourcesSourceidUploaddataPostRequest](docs/V1ConnectorsSourcesSourceidUploaddataPostRequest.md)
771
784
  - [V1SuggestionsConfigGet200Response](docs/V1SuggestionsConfigGet200Response.md)
772
785