@seekora-ai/admin-api 1.0.83 → 1.0.85

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.83
1
+ ## @seekora-ai/admin-api@1.0.85
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.83 --save
39
+ npm install @seekora-ai/admin-api@1.0.85 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -151,6 +151,13 @@ Class | Method | HTTP request | Description
151
151
  *CustomStopwordsApi* | [**adminStoresXStoreIDStopwordsCustomWordlistsGet**](docs/CustomStopwordsApi.md#adminstoresxstoreidstopwordscustomwordlistsget) | **GET** /admin/Stores/{xStoreID}/stopwords/custom-wordlists | Get custom word lists
152
152
  *CustomStopwordsApi* | [**adminStoresXStoreIDStopwordsCustomWordlistsPost**](docs/CustomStopwordsApi.md#adminstoresxstoreidstopwordscustomwordlistspost) | **POST** /admin/Stores/{xStoreID}/stopwords/custom-wordlists | Create custom word list
153
153
  *DocumentsApi* | [**adminStoresXStoreIDUploadPost**](docs/DocumentsApi.md#adminstoresxstoreiduploadpost) | **POST** /admin/Stores/{xStoreID}/upload | Upload a document
154
+ *FeatureLimitsApi* | [**apiAdminFeatureLimitsViolationsGet**](docs/FeatureLimitsApi.md#apiadminfeaturelimitsviolationsget) | **GET** /api/admin/feature-limits/violations | Get feature limit violations
155
+ *FeatureLimitsApi* | [**apiFeatureLimitsCheckGet**](docs/FeatureLimitsApi.md#apifeaturelimitscheckget) | **GET** /api/feature-limits/check | Check if a feature can be used
156
+ *FeatureLimitsApi* | [**apiFeatureLimitsHistoryGet**](docs/FeatureLimitsApi.md#apifeaturelimitshistoryget) | **GET** /api/feature-limits/history | Get feature usage history
157
+ *FeatureLimitsApi* | [**apiFeatureLimitsPlanGet**](docs/FeatureLimitsApi.md#apifeaturelimitsplanget) | **GET** /api/feature-limits/plan | Get organization plan features
158
+ *FeatureLimitsApi* | [**apiFeatureLimitsUsageGet**](docs/FeatureLimitsApi.md#apifeaturelimitsusageget) | **GET** /api/feature-limits/usage | Get feature usage statistics
159
+ *FeatureLimitsAdminApi* | [**apiAdminFeatureLimitsCacheInvalidatePost**](docs/FeatureLimitsAdminApi.md#apiadminfeaturelimitscacheinvalidatepost) | **POST** /api/admin/feature-limits/cache/invalidate | Invalidate plan cache (Admin)
160
+ *FeatureLimitsAdminApi* | [**apiAdminFeatureLimitsResetPost**](docs/FeatureLimitsAdminApi.md#apiadminfeaturelimitsresetpost) | **POST** /api/admin/feature-limits/reset | Reset feature usage (Admin)
154
161
  *ItemAnalyticsApi* | [**adminAnalyticsStoreXStoreIDItemsComparisonGet**](docs/ItemAnalyticsApi.md#adminanalyticsstorexstoreiditemscomparisonget) | **GET** /admin/analytics/store/{xStoreID}/items/comparison | Get Item Comparison Analytics
155
162
  *ItemAnalyticsApi* | [**adminAnalyticsStoreXStoreIDItemsDiscoveryGet**](docs/ItemAnalyticsApi.md#adminanalyticsstorexstoreiditemsdiscoveryget) | **GET** /admin/analytics/store/{xStoreID}/items/discovery | Get Item Discovery Analytics
156
163
  *ItemAnalyticsApi* | [**adminAnalyticsStoreXStoreIDItemsGet**](docs/ItemAnalyticsApi.md#adminanalyticsstorexstoreiditemsget) | **GET** /admin/analytics/store/{xStoreID}/items | Get Item Analytics
@@ -218,6 +225,7 @@ Class | Method | HTTP request | Description
218
225
  *PaymentGatewayApi* | [**adminPaymentGatewayGatewaysGet**](docs/PaymentGatewayApi.md#adminpaymentgatewaygatewaysget) | **GET** /admin/payment-gateway/gateways | Get available payment gateways
219
226
  *PaymentGatewayApi* | [**adminPaymentGatewayPaymentStatusOrderIdGet**](docs/PaymentGatewayApi.md#adminpaymentgatewaypaymentstatusorderidget) | **GET** /admin/payment-gateway/payment-status/{order_id} | Get payment status for polling (frontend)
220
227
  *PaymentGatewayApi* | [**adminPaymentGatewayRefundPost**](docs/PaymentGatewayApi.md#adminpaymentgatewayrefundpost) | **POST** /admin/payment-gateway/refund | Process payment refund
228
+ *PaymentGatewayApi* | [**adminPaymentGatewayVerifyOrderIdGet**](docs/PaymentGatewayApi.md#adminpaymentgatewayverifyorderidget) | **GET** /admin/payment-gateway/verify/{order_id} | Verify payment status by order ID
221
229
  *PaymentGatewayApi* | [**adminPaymentGatewayVerifyPost**](docs/PaymentGatewayApi.md#adminpaymentgatewayverifypost) | **POST** /admin/payment-gateway/verify | Verify payment status
222
230
  *PaymentGatewayApi* | [**v1CreditPlansGet**](docs/PaymentGatewayApi.md#v1creditplansget) | **GET** /v1/credit-plans | Get available credit plans
223
231
  *PaymentGatewayApi* | [**v1SubscriptionPlansGet**](docs/PaymentGatewayApi.md#v1subscriptionplansget) | **GET** /v1/subscription-plans | Get subscription plans grouped by tier
@@ -497,6 +505,11 @@ Class | Method | HTTP request | Description
497
505
  - [AnalyticsUpdateSuggestionConfigRequest](docs/AnalyticsUpdateSuggestionConfigRequest.md)
498
506
  - [AnalyticsUpdateSuggestionRequest](docs/AnalyticsUpdateSuggestionRequest.md)
499
507
  - [AnalyticsWidgetData](docs/AnalyticsWidgetData.md)
508
+ - [ApiAdminFeatureLimitsViolationsGet200Response](docs/ApiAdminFeatureLimitsViolationsGet200Response.md)
509
+ - [ApiFeatureLimitsCheckGet200Response](docs/ApiFeatureLimitsCheckGet200Response.md)
510
+ - [ApiFeatureLimitsHistoryGet200Response](docs/ApiFeatureLimitsHistoryGet200Response.md)
511
+ - [ApiFeatureLimitsPlanGet200Response](docs/ApiFeatureLimitsPlanGet200Response.md)
512
+ - [ApiFeatureLimitsUsageGet200Response](docs/ApiFeatureLimitsUsageGet200Response.md)
500
513
  - [BatchRecordResult](docs/BatchRecordResult.md)
501
514
  - [BillingServiceBillingOverview](docs/BillingServiceBillingOverview.md)
502
515
  - [BillingServiceCreditConsumptionSummary](docs/BillingServiceCreditConsumptionSummary.md)
@@ -594,6 +607,11 @@ Class | Method | HTTP request | Description
594
607
  - [DataTypesExpiringCreditBatch](docs/DataTypesExpiringCreditBatch.md)
595
608
  - [DataTypesFacetRange](docs/DataTypesFacetRange.md)
596
609
  - [DataTypesFacetRangeConfig](docs/DataTypesFacetRangeConfig.md)
610
+ - [DataTypesFeatureCheckResult](docs/DataTypesFeatureCheckResult.md)
611
+ - [DataTypesFeatureLimit](docs/DataTypesFeatureLimit.md)
612
+ - [DataTypesFeatureLimitViolation](docs/DataTypesFeatureLimitViolation.md)
613
+ - [DataTypesFeatureUsageHistory](docs/DataTypesFeatureUsageHistory.md)
614
+ - [DataTypesFeatureUsageStats](docs/DataTypesFeatureUsageStats.md)
597
615
  - [DataTypesFieldMetadata](docs/DataTypesFieldMetadata.md)
598
616
  - [DataTypesFulfillmentInfo](docs/DataTypesFulfillmentInfo.md)
599
617
  - [DataTypesFulfillmentInfoCredits](docs/DataTypesFulfillmentInfoCredits.md)
@@ -688,9 +706,9 @@ Class | Method | HTTP request | Description
688
706
  - [DataTypesPaymentRequestDto](docs/DataTypesPaymentRequestDto.md)
689
707
  - [DataTypesPaymentResponse](docs/DataTypesPaymentResponse.md)
690
708
  - [DataTypesPaymentStatusPollResponse](docs/DataTypesPaymentStatusPollResponse.md)
691
- - [DataTypesPaymentStatusResponse](docs/DataTypesPaymentStatusResponse.md)
692
709
  - [DataTypesPaymentsListResponse](docs/DataTypesPaymentsListResponse.md)
693
710
  - [DataTypesPlan](docs/DataTypesPlan.md)
711
+ - [DataTypesPlanFeatures](docs/DataTypesPlanFeatures.md)
694
712
  - [DataTypesPlanResponse](docs/DataTypesPlanResponse.md)
695
713
  - [DataTypesPlansListResponse](docs/DataTypesPlansListResponse.md)
696
714
  - [DataTypesPluralDeclension](docs/DataTypesPluralDeclension.md)