@seekora-ai/admin-api 1.1.78 → 1.1.79
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 +7 -3
- package/api.ts +448 -96
- package/dist/api.d.ts +227 -45
- package/dist/api.js +429 -95
- package/dist/esm/api.d.ts +227 -45
- package/dist/esm/api.js +419 -89
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.1.79.tgz +0 -0
- package/seekora-ai-admin-api-1.1.78.tgz +0 -0
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @seekora-ai/admin-api@1.1.
|
|
1
|
+
## @seekora-ai/admin-api@1.1.79
|
|
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.1.
|
|
39
|
+
npm install @seekora-ai/admin-api@1.1.79 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -285,10 +285,13 @@ Class | Method | HTTP request | Description
|
|
|
285
285
|
*DataQualityApi* | [**v1AnalyticsQualityRunPost**](docs/DataQualityApi.md#v1analyticsqualityrunpost) | **POST** /v1/analytics/quality/run | Run Quality Checks
|
|
286
286
|
*DataQualityApi* | [**v1AnalyticsQualityStatsGet**](docs/DataQualityApi.md#v1analyticsqualitystatsget) | **GET** /v1/analytics/quality/stats | Get Job Statistics
|
|
287
287
|
*DataQualityApi* | [**v1AnalyticsQualityStatusGet**](docs/DataQualityApi.md#v1analyticsqualitystatusget) | **GET** /v1/analytics/quality/status | Get Health Status
|
|
288
|
+
*DefaultApi* | [**adminStoresXStoreIDSearchGet**](docs/DefaultApi.md#adminstoresxstoreidsearchget) | **GET** /admin/stores/{xStoreID}/search |
|
|
288
289
|
*DefaultMenuManagementApi* | [**adminDefaultMenusGet**](docs/DefaultMenuManagementApi.md#admindefaultmenusget) | **GET** /admin/default-menus | Get all default menus with visibility flags
|
|
289
290
|
*DefaultMenuManagementApi* | [**adminDefaultMenusVisibilityPut**](docs/DefaultMenuManagementApi.md#admindefaultmenusvisibilityput) | **PUT** /admin/default-menus/visibility | Update menu global visibility
|
|
290
291
|
*DocumentationApi* | [**v1DocsClearDelete**](docs/DocumentationApi.md#v1docscleardelete) | **DELETE** /v1/docs/clear | Clear all indexed documentation
|
|
291
292
|
*DocumentationApi* | [**v1DocsIndexPost**](docs/DocumentationApi.md#v1docsindexpost) | **POST** /v1/docs/index | Index documentation documents
|
|
293
|
+
*DocumentationApi* | [**v1DocsInitCollectionPost**](docs/DocumentationApi.md#v1docsinitcollectionpost) | **POST** /v1/docs/init-collection | Create or fix docs collection
|
|
294
|
+
*DocumentationApi* | [**v1DocsRecreateCollectionPost**](docs/DocumentationApi.md#v1docsrecreatecollectionpost) | **POST** /v1/docs/recreate-collection | Recreate docs collection for infix search
|
|
292
295
|
*DocumentationApi* | [**v1DocsScrapePost**](docs/DocumentationApi.md#v1docsscrapepost) | **POST** /v1/docs/scrape | Scrape and index documentation
|
|
293
296
|
*DocumentationApi* | [**v1DocsSearchPost**](docs/DocumentationApi.md#v1docssearchpost) | **POST** /v1/docs/search | Search documentation
|
|
294
297
|
*DocumentationApi* | [**v1DocsSuggestionsGet**](docs/DocumentationApi.md#v1docssuggestionsget) | **GET** /v1/docs/suggestions | Get search suggestions
|
|
@@ -562,6 +565,8 @@ Class | Method | HTTP request | Description
|
|
|
562
565
|
*StoresApi* | [**adminStoresXStoreIDAnalyticsTimeseriesGet**](docs/StoresApi.md#adminstoresxstoreidanalyticstimeseriesget) | **GET** /admin/Stores/{xStoreID}/analytics/timeseries | Get Time Series Data for Store Metrics
|
|
563
566
|
*StoresApi* | [**adminStoresXStoreIDApiUsageEventIDGet**](docs/StoresApi.md#adminstoresxstoreidapiusageeventidget) | **GET** /admin/Stores/{xStoreID}/api-usage/{eventID} | Get Specific API Usage Event
|
|
564
567
|
*StoresApi* | [**adminStoresXStoreIDApiUsageGet**](docs/StoresApi.md#adminstoresxstoreidapiusageget) | **GET** /admin/Stores/{xStoreID}/api-usage | Get API Usage Logs for Store
|
|
568
|
+
*StoresApi* | [**adminStoresXStoreIDCacheInvalidatePost**](docs/StoresApi.md#adminstoresxstoreidcacheinvalidatepost) | **POST** /admin/stores/{xStoreID}/cache/invalidate | Invalidate store caches
|
|
569
|
+
*StoresApi* | [**adminStoresXStoreIDCacheInvalidatePost_0**](docs/StoresApi.md#adminstoresxstoreidcacheinvalidatepost_0) | **POST** /admin/stores/{xStoreID}/cache/invalidate | Invalidate store caches
|
|
565
570
|
*StoresApi* | [**adminStoresXStoreIDConfigGet**](docs/StoresApi.md#adminstoresxstoreidconfigget) | **GET** /admin/Stores/{xStoreID}/config | Get Store Config
|
|
566
571
|
*StoresApi* | [**adminStoresXStoreIDConfigPut**](docs/StoresApi.md#adminstoresxstoreidconfigput) | **PUT** /admin/Stores/{xStoreID}/config | Update Store Config (Partial)
|
|
567
572
|
*StoresApi* | [**adminStoresXStoreIDConfigSchemaGet**](docs/StoresApi.md#adminstoresxstoreidconfigschemaget) | **GET** /admin/Stores/{xStoreID}/config-schema | Get Store Config Schema
|
|
@@ -569,7 +574,6 @@ Class | Method | HTTP request | Description
|
|
|
569
574
|
*StoresApi* | [**adminStoresXStoreIDDefaultsGet**](docs/StoresApi.md#adminstoresxstoreiddefaultsget) | **GET** /admin/Stores/{xStoreID}/defaults | Get Store Schema-Based Defaults
|
|
570
575
|
*StoresApi* | [**adminStoresXStoreIDPopularItemsSyncPost**](docs/StoresApi.md#adminstoresxstoreidpopularitemssyncpost) | **POST** /admin/Stores/{xStoreID}/popular-items/sync | Sync Popular Items to Typesense
|
|
571
576
|
*StoresApi* | [**adminStoresXStoreIDSchemaOptionsGet**](docs/StoresApi.md#adminstoresxstoreidschemaoptionsget) | **GET** /admin/stores/{xStoreID}/schema-options | Get store schema options
|
|
572
|
-
*StoresApi* | [**adminStoresXStoreIDSearchGet**](docs/StoresApi.md#adminstoresxstoreidsearchget) | **GET** /admin/stores/{xStoreID}/search | Get store search results
|
|
573
577
|
*StoresApi* | [**adminStoresXStoreIDStepStepPut**](docs/StoresApi.md#adminstoresxstoreidstepstepput) | **PUT** /admin/stores/{xStoreID}/step/{step} | Update store step configuration
|
|
574
578
|
*StoresApi* | [**xstoreidRegenerateUidPut**](docs/StoresApi.md#xstoreidregenerateuidput) | **PUT** /{xstoreid}/regenerate-uid | Regenerate X-Store Secret
|
|
575
579
|
*SubscriptionPaymentsApi* | [**apiInternalSubscriptionPaymentsDueGet**](docs/SubscriptionPaymentsApi.md#apiinternalsubscriptionpaymentsdueget) | **GET** /api/internal/subscription-payments/due | Get subscriptions due for payment
|