@seekora-ai/admin-api 1.1.81 → 1.1.83
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 +78 -53
- package/api.ts +2111 -1037
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +1684 -792
- package/dist/api.js +1306 -999
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +1684 -792
- package/dist/esm/api.js +1306 -999
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.1.83.tgz +0 -0
- package/seekora-ai-admin-api-1.1.81.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.83
|
|
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.83 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -200,6 +200,7 @@ Class | Method | HTTP request | Description
|
|
|
200
200
|
*BillingDashboardApi* | [**adminBillingInvoicesIdDelete**](docs/BillingDashboardApi.md#adminbillinginvoicesiddelete) | **DELETE** /admin/billing/invoices/{id} | Delete invoice
|
|
201
201
|
*BillingDashboardApi* | [**adminBillingInvoicesIdDownloadGet**](docs/BillingDashboardApi.md#adminbillinginvoicesiddownloadget) | **GET** /admin/billing/invoices/{id}/download | Download invoice
|
|
202
202
|
*BillingDashboardApi* | [**adminBillingInvoicesIdGet**](docs/BillingDashboardApi.md#adminbillinginvoicesidget) | **GET** /admin/billing/invoices/{id} | Get invoice
|
|
203
|
+
*BillingDashboardApi* | [**adminBillingInvoicesIdPdfUrlGet**](docs/BillingDashboardApi.md#adminbillinginvoicesidpdfurlget) | **GET** /admin/billing/invoices/{id}/pdf-url | Get invoice PDF signed URL
|
|
203
204
|
*BillingDashboardApi* | [**adminBillingInvoicesIdPut**](docs/BillingDashboardApi.md#adminbillinginvoicesidput) | **PUT** /admin/billing/invoices/{id} | Update invoice
|
|
204
205
|
*BillingDashboardApi* | [**adminBillingInvoicesInvoiceIdPayPost**](docs/BillingDashboardApi.md#adminbillinginvoicesinvoiceidpaypost) | **POST** /admin/billing/invoices/{invoice_id}/pay | Pay a pending invoice
|
|
205
206
|
*BillingDashboardApi* | [**adminBillingOrdersGet**](docs/BillingDashboardApi.md#adminbillingordersget) | **GET** /admin/billing/orders | Get orders
|
|
@@ -214,6 +215,7 @@ Class | Method | HTTP request | Description
|
|
|
214
215
|
*BillingDashboardApi* | [**adminBillingReceiptsGet**](docs/BillingDashboardApi.md#adminbillingreceiptsget) | **GET** /admin/billing/receipts | List receipts
|
|
215
216
|
*BillingDashboardApi* | [**adminBillingReceiptsIdDownloadGet**](docs/BillingDashboardApi.md#adminbillingreceiptsiddownloadget) | **GET** /admin/billing/receipts/{id}/download | Download receipt PDF
|
|
216
217
|
*BillingDashboardApi* | [**adminBillingReceiptsIdGet**](docs/BillingDashboardApi.md#adminbillingreceiptsidget) | **GET** /admin/billing/receipts/{id} | Get receipt by ID
|
|
218
|
+
*BillingDashboardApi* | [**adminBillingReceiptsIdPdfUrlGet**](docs/BillingDashboardApi.md#adminbillingreceiptsidpdfurlget) | **GET** /admin/billing/receipts/{id}/pdf-url | Get receipt PDF signed URL
|
|
217
219
|
*BillingDashboardApi* | [**adminBillingSavedCardsGet**](docs/BillingDashboardApi.md#adminbillingsavedcardsget) | **GET** /admin/billing/saved-cards | Get saved payment cards
|
|
218
220
|
*BillingDashboardApi* | [**adminBillingUsageDetailsGet**](docs/BillingDashboardApi.md#adminbillingusagedetailsget) | **GET** /admin/billing/usage-details | Get usage details with granularity and pagination
|
|
219
221
|
*BillingDashboardApi* | [**apiAdminBillingCancelledSubscriptionsGet**](docs/BillingDashboardApi.md#apiadminbillingcancelledsubscriptionsget) | **GET** /api/admin/billing/cancelled-subscriptions | Get cancelled subscriptions history
|
|
@@ -229,24 +231,24 @@ Class | Method | HTTP request | Description
|
|
|
229
231
|
*CommonApi* | [**v1CommonLanguagesGet**](docs/CommonApi.md#v1commonlanguagesget) | **GET** /v1/common/languages | Get Supported Languages
|
|
230
232
|
*CompanyConfigApi* | [**adminV1ConfigCompanyGet**](docs/CompanyConfigApi.md#adminv1configcompanyget) | **GET** /admin/v1/config/company | Get company configuration
|
|
231
233
|
*CompanyConfigApi* | [**adminV1ConfigCompanyPut**](docs/CompanyConfigApi.md#adminv1configcompanyput) | **PUT** /admin/v1/config/company | Update company configuration
|
|
232
|
-
*ConnectorsApi* | [**
|
|
233
|
-
*ConnectorsApi* | [**
|
|
234
|
-
*ConnectorsApi* | [**
|
|
235
|
-
*ConnectorsApi* | [**
|
|
236
|
-
*ConnectorsApi* | [**
|
|
237
|
-
*ConnectorsApi* | [**
|
|
238
|
-
*ConnectorsApi* | [**
|
|
234
|
+
*ConnectorsApi* | [**adminAnalyticsStoreXStoreIDConnectorsGet**](docs/ConnectorsApi.md#adminanalyticsstorexstoreidconnectorsget) | **GET** /admin/analytics/store/{xStoreID}/connectors | List Connectors
|
|
235
|
+
*ConnectorsApi* | [**adminAnalyticsStoreXStoreIDConnectorsIdDelete**](docs/ConnectorsApi.md#adminanalyticsstorexstoreidconnectorsiddelete) | **DELETE** /admin/analytics/store/{xStoreID}/connectors/{id} | Delete Connector
|
|
236
|
+
*ConnectorsApi* | [**adminAnalyticsStoreXStoreIDConnectorsIdGet**](docs/ConnectorsApi.md#adminanalyticsstorexstoreidconnectorsidget) | **GET** /admin/analytics/store/{xStoreID}/connectors/{id} | Get Connector
|
|
237
|
+
*ConnectorsApi* | [**adminAnalyticsStoreXStoreIDConnectorsIdHistoryGet**](docs/ConnectorsApi.md#adminanalyticsstorexstoreidconnectorsidhistoryget) | **GET** /admin/analytics/store/{xStoreID}/connectors/{id}/history | Get Sync History
|
|
238
|
+
*ConnectorsApi* | [**adminAnalyticsStoreXStoreIDConnectorsIdPut**](docs/ConnectorsApi.md#adminanalyticsstorexstoreidconnectorsidput) | **PUT** /admin/analytics/store/{xStoreID}/connectors/{id} | Update Connector
|
|
239
|
+
*ConnectorsApi* | [**adminAnalyticsStoreXStoreIDConnectorsIdSyncPost**](docs/ConnectorsApi.md#adminanalyticsstorexstoreidconnectorsidsyncpost) | **POST** /admin/analytics/store/{xStoreID}/connectors/{id}/sync | Trigger Sync
|
|
240
|
+
*ConnectorsApi* | [**adminAnalyticsStoreXStoreIDConnectorsIdTestPost**](docs/ConnectorsApi.md#adminanalyticsstorexstoreidconnectorsidtestpost) | **POST** /admin/analytics/store/{xStoreID}/connectors/{id}/test | Test Connection
|
|
241
|
+
*ConnectorsApi* | [**adminAnalyticsStoreXStoreIDConnectorsPost**](docs/ConnectorsApi.md#adminanalyticsstorexstoreidconnectorspost) | **POST** /admin/analytics/store/{xStoreID}/connectors | Create Connector
|
|
242
|
+
*ConnectorsApi* | [**adminAnalyticsStoreXStoreIDConnectorsProvidersGet**](docs/ConnectorsApi.md#adminanalyticsstorexstoreidconnectorsprovidersget) | **GET** /admin/analytics/store/{xStoreID}/connectors/providers | Get Available Providers
|
|
239
243
|
*ConnectorsApi* | [**v1ConnectorsJobstatusJobidValidationErrorsGet**](docs/ConnectorsApi.md#v1connectorsjobstatusjobidvalidationerrorsget) | **GET** /v1/connectors/jobstatus/{jobid}/validation-errors | Get validation errors for a job
|
|
240
|
-
*ConnectorsApi* | [**
|
|
241
|
-
*ConnectorsApi* | [**
|
|
242
|
-
*ConnectorsApi* | [**
|
|
243
|
-
*ConnectorsApi* | [**
|
|
244
|
-
*ConnectorsApi* | [**
|
|
245
|
-
*ConnectorsApi* | [**
|
|
246
|
-
*ConnectorsApi* | [**v1ConnectorsSourcesSourceIdGet**](docs/ConnectorsApi.md#v1connectorssourcessourceidget) | **GET** /v1/connectors/sources/:source_id | Get source by id
|
|
247
|
-
*ConnectorsApi* | [**v1ConnectorsSourcesSourceidUpdateschemaPost**](docs/ConnectorsApi.md#v1connectorssourcessourceidupdateschemapost) | **POST** /v1/connectors/sources/:sourceid/updateschema | Update Index schema
|
|
244
|
+
*ConnectorsApi* | [**v1ConnectorsSearchIndexGet**](docs/ConnectorsApi.md#v1connectorssearchindexget) | **GET** /v1/connectors/search/{index} | Test search for an index
|
|
245
|
+
*ConnectorsApi* | [**v1ConnectorsSourcesGet**](docs/ConnectorsApi.md#v1connectorssourcesget) | **GET** /v1/connectors/sources | List data sources
|
|
246
|
+
*ConnectorsApi* | [**v1ConnectorsSourcesPost**](docs/ConnectorsApi.md#v1connectorssourcespost) | **POST** /v1/connectors/sources | Create data source
|
|
247
|
+
*ConnectorsApi* | [**v1ConnectorsSourcesSourceIdConfigPut**](docs/ConnectorsApi.md#v1connectorssourcessourceidconfigput) | **PUT** /v1/connectors/sources/:source_id/config | Update source config
|
|
248
|
+
*ConnectorsApi* | [**v1ConnectorsSourcesSourceIdGet**](docs/ConnectorsApi.md#v1connectorssourcessourceidget) | **GET** /v1/connectors/sources/:source_id | Get source by ID
|
|
249
|
+
*ConnectorsApi* | [**v1ConnectorsSourcesSourceidUpdateschemaPost**](docs/ConnectorsApi.md#v1connectorssourcessourceidupdateschemapost) | **POST** /v1/connectors/sources/:sourceid/updateschema | Update source index schema
|
|
248
250
|
*ConnectorsApi* | [**v1ConnectorsSourcesSourceidUploaddataPost**](docs/ConnectorsApi.md#v1connectorssourcessourceiduploaddatapost) | **POST** /v1/connectors/sources/:sourceid/uploaddata | Upload source data
|
|
249
|
-
*ConnectorsApi* | [**v1ConnectorsTasksPost**](docs/ConnectorsApi.md#v1connectorstaskspost) | **POST** /v1/connectors/tasks | Create task
|
|
251
|
+
*ConnectorsApi* | [**v1ConnectorsTasksPost**](docs/ConnectorsApi.md#v1connectorstaskspost) | **POST** /v1/connectors/tasks | Create connector task
|
|
250
252
|
*ConnectorsApi* | [**v1ConnectorsTasksTaskIdRunPost**](docs/ConnectorsApi.md#v1connectorstaskstaskidrunpost) | **POST** /v1/connectors/tasks/{task_id}/run | Trigger task run
|
|
251
253
|
*CreditsApi* | [**creditsAdminAdjustPost**](docs/CreditsApi.md#creditsadminadjustpost) | **POST** /credits/admin/adjust | Manually adjust organization credits
|
|
252
254
|
*CreditsApi* | [**creditsBalanceDetailedGet**](docs/CreditsApi.md#creditsbalancedetailedget) | **GET** /credits/balance/detailed | Get detailed organization credit balance
|
|
@@ -257,16 +259,16 @@ Class | Method | HTTP request | Description
|
|
|
257
259
|
*CreditsApi* | [**creditsPlansGet**](docs/CreditsApi.md#creditsplansget) | **GET** /credits/plans | Get available credit plans
|
|
258
260
|
*CreditsApi* | [**creditsPurchasePost**](docs/CreditsApi.md#creditspurchasepost) | **POST** /credits/purchase | Purchase credits
|
|
259
261
|
*CreditsApi* | [**creditsTransactionsGet**](docs/CreditsApi.md#creditstransactionsget) | **GET** /credits/transactions | Get organization credit transactions
|
|
260
|
-
*CustomEventsApi* | [**
|
|
261
|
-
*CustomEventsApi* | [**
|
|
262
|
-
*CustomEventsApi* | [**
|
|
263
|
-
*CustomEventsApi* | [**
|
|
264
|
-
*CustomEventsApi* | [**
|
|
265
|
-
*CustomEventsApi* | [**
|
|
266
|
-
*CustomEventsApi* | [**
|
|
267
|
-
*CustomEventsApi* | [**
|
|
268
|
-
*CustomEventsApi* | [**
|
|
269
|
-
*CustomEventsApi* | [**
|
|
262
|
+
*CustomEventsApi* | [**adminAnalyticsStoreXStoreIDCustomEventsGet**](docs/CustomEventsApi.md#adminanalyticsstorexstoreidcustomeventsget) | **GET** /admin/analytics/store/{xStoreID}/custom-events | List Custom Event Types
|
|
263
|
+
*CustomEventsApi* | [**adminAnalyticsStoreXStoreIDCustomEventsIdDelete**](docs/CustomEventsApi.md#adminanalyticsstorexstoreidcustomeventsiddelete) | **DELETE** /admin/analytics/store/{xStoreID}/custom-events/{id} | Delete Custom Event Type
|
|
264
|
+
*CustomEventsApi* | [**adminAnalyticsStoreXStoreIDCustomEventsIdFieldsFidDelete**](docs/CustomEventsApi.md#adminanalyticsstorexstoreidcustomeventsidfieldsfiddelete) | **DELETE** /admin/analytics/store/{xStoreID}/custom-events/{id}/fields/{fid} | Remove Field
|
|
265
|
+
*CustomEventsApi* | [**adminAnalyticsStoreXStoreIDCustomEventsIdFieldsFidPut**](docs/CustomEventsApi.md#adminanalyticsstorexstoreidcustomeventsidfieldsfidput) | **PUT** /admin/analytics/store/{xStoreID}/custom-events/{id}/fields/{fid} | Update Field
|
|
266
|
+
*CustomEventsApi* | [**adminAnalyticsStoreXStoreIDCustomEventsIdFieldsPost**](docs/CustomEventsApi.md#adminanalyticsstorexstoreidcustomeventsidfieldspost) | **POST** /admin/analytics/store/{xStoreID}/custom-events/{id}/fields | Add Field to Custom Event Type
|
|
267
|
+
*CustomEventsApi* | [**adminAnalyticsStoreXStoreIDCustomEventsIdGet**](docs/CustomEventsApi.md#adminanalyticsstorexstoreidcustomeventsidget) | **GET** /admin/analytics/store/{xStoreID}/custom-events/{id} | Get Custom Event Type
|
|
268
|
+
*CustomEventsApi* | [**adminAnalyticsStoreXStoreIDCustomEventsIdPut**](docs/CustomEventsApi.md#adminanalyticsstorexstoreidcustomeventsidput) | **PUT** /admin/analytics/store/{xStoreID}/custom-events/{id} | Update Custom Event Type
|
|
269
|
+
*CustomEventsApi* | [**adminAnalyticsStoreXStoreIDCustomEventsIdSlotsGet**](docs/CustomEventsApi.md#adminanalyticsstorexstoreidcustomeventsidslotsget) | **GET** /admin/analytics/store/{xStoreID}/custom-events/{id}/slots | Get Available Slots
|
|
270
|
+
*CustomEventsApi* | [**adminAnalyticsStoreXStoreIDCustomEventsIdValidatePost**](docs/CustomEventsApi.md#adminanalyticsstorexstoreidcustomeventsidvalidatepost) | **POST** /admin/analytics/store/{xStoreID}/custom-events/{id}/validate | Validate Event Payload
|
|
271
|
+
*CustomEventsApi* | [**adminAnalyticsStoreXStoreIDCustomEventsPost**](docs/CustomEventsApi.md#adminanalyticsstorexstoreidcustomeventspost) | **POST** /admin/analytics/store/{xStoreID}/custom-events | Create Custom Event Type
|
|
270
272
|
*CustomStopwordsApi* | [**adminStoresXStoreIDStopwordsCustomWordlistsCustomWordListIDDelete**](docs/CustomStopwordsApi.md#adminstoresxstoreidstopwordscustomwordlistscustomwordlistiddelete) | **DELETE** /admin/Stores/{xStoreID}/stopwords/custom-wordlists/{customWordListID} | Delete custom word list
|
|
271
273
|
*CustomStopwordsApi* | [**adminStoresXStoreIDStopwordsCustomWordlistsCustomWordListIDGet**](docs/CustomStopwordsApi.md#adminstoresxstoreidstopwordscustomwordlistscustomwordlistidget) | **GET** /admin/Stores/{xStoreID}/stopwords/custom-wordlists/{customWordListID} | Get custom word list by ID
|
|
272
274
|
*CustomStopwordsApi* | [**adminStoresXStoreIDStopwordsCustomWordlistsCustomWordListIDPut**](docs/CustomStopwordsApi.md#adminstoresxstoreidstopwordscustomwordlistscustomwordlistidput) | **PUT** /admin/Stores/{xStoreID}/stopwords/custom-wordlists/{customWordListID} | Update custom word list
|
|
@@ -294,7 +296,7 @@ Class | Method | HTTP request | Description
|
|
|
294
296
|
*DocumentationApi* | [**v1DocsRecreateCollectionPost**](docs/DocumentationApi.md#v1docsrecreatecollectionpost) | **POST** /v1/docs/recreate-collection | Recreate docs collection for infix search
|
|
295
297
|
*DocumentationApi* | [**v1DocsScrapePost**](docs/DocumentationApi.md#v1docsscrapepost) | **POST** /v1/docs/scrape | Scrape and index documentation
|
|
296
298
|
*DocumentationApi* | [**v1DocsSearchPost**](docs/DocumentationApi.md#v1docssearchpost) | **POST** /v1/docs/search | Search documentation
|
|
297
|
-
*DocumentationApi* | [**v1DocsSuggestionsGet**](docs/DocumentationApi.md#v1docssuggestionsget) | **GET** /v1/docs/suggestions | Get search suggestions
|
|
299
|
+
*DocumentationApi* | [**v1DocsSuggestionsGet**](docs/DocumentationApi.md#v1docssuggestionsget) | **GET** /v1/docs/suggestions | Get doc search suggestions
|
|
298
300
|
*DocumentationApi* | [**v1DocsUpdatePut**](docs/DocumentationApi.md#v1docsupdateput) | **PUT** /v1/docs/update | Update documentation
|
|
299
301
|
*DocumentsApi* | [**adminStoresXStoreIDUploadPost**](docs/DocumentsApi.md#adminstoresxstoreiduploadpost) | **POST** /admin/Stores/{xStoreID}/upload | Upload a document
|
|
300
302
|
*ExternalAPINotificationsApi* | [**v1ExternalNotificationsSchedulePost**](docs/ExternalAPINotificationsApi.md#v1externalnotificationsschedulepost) | **POST** /v1/external/notifications/schedule | Schedule notification (External API)
|
|
@@ -440,9 +442,9 @@ Class | Method | HTTP request | Description
|
|
|
440
442
|
*PluralsDeclensionsApi* | [**adminStoresXStoreIDPluralsDeclensionsPost**](docs/PluralsDeclensionsApi.md#adminstoresxstoreidpluralsdeclensionspost) | **POST** /admin/Stores/{xStoreID}/plurals-declensions | Create plural/declension group
|
|
441
443
|
*PluralsDeclensionsApi* | [**adminStoresXStoreIDPluralsDeclensionsUploadCsvPost**](docs/PluralsDeclensionsApi.md#adminstoresxstoreidpluralsdeclensionsuploadcsvpost) | **POST** /admin/Stores/{xStoreID}/plurals-declensions/upload-csv | Upload plural/declension groups from CSV file
|
|
442
444
|
*PluralsDeclensionsApi* | [**adminStoresXStoreIDPluralsDeclensionsUploadJsonPost**](docs/PluralsDeclensionsApi.md#adminstoresxstoreidpluralsdeclensionsuploadjsonpost) | **POST** /admin/Stores/{xStoreID}/plurals-declensions/upload-json | Upload plural/declension groups from JSON file
|
|
443
|
-
*QuerySuggestionsApi* | [**v1SuggestionsConfigGet**](docs/QuerySuggestionsApi.md#v1suggestionsconfigget) | **GET** /v1/suggestions/config | Get
|
|
444
|
-
*QuerySuggestionsApi* | [**v1SuggestionsQueriesGet**](docs/QuerySuggestionsApi.md#v1suggestionsqueriesget) | **GET** /v1/suggestions/queries | Get
|
|
445
|
-
*QuerySuggestionsApi* | [**v1SuggestionsQueriesPost**](docs/QuerySuggestionsApi.md#v1suggestionsqueriespost) | **POST** /v1/suggestions/queries |
|
|
445
|
+
*QuerySuggestionsApi* | [**v1SuggestionsConfigGet**](docs/QuerySuggestionsApi.md#v1suggestionsconfigget) | **GET** /v1/suggestions/config | Get suggestions configuration
|
|
446
|
+
*QuerySuggestionsApi* | [**v1SuggestionsQueriesGet**](docs/QuerySuggestionsApi.md#v1suggestionsqueriesget) | **GET** /v1/suggestions/queries | Get query suggestions (GET)
|
|
447
|
+
*QuerySuggestionsApi* | [**v1SuggestionsQueriesPost**](docs/QuerySuggestionsApi.md#v1suggestionsqueriespost) | **POST** /v1/suggestions/queries | Get query suggestions (POST)
|
|
446
448
|
*QuerySuggestionsManagementApi* | [**adminV1QuerySuggestionsMigrateAllPost**](docs/QuerySuggestionsManagementApi.md#adminv1querysuggestionsmigrateallpost) | **POST** /admin/v1/query-suggestions/migrate-all | Migrate All Stores Data
|
|
447
449
|
*QuerySuggestionsManagementApi* | [**adminV1QuerySuggestionsXStoreIDApplyFiltersPost**](docs/QuerySuggestionsManagementApi.md#adminv1querysuggestionsxstoreidapplyfilterspost) | **POST** /admin/v1/query-suggestions/{xStoreID}/apply-filters | Apply Suggestion Filters
|
|
448
450
|
*QuerySuggestionsManagementApi* | [**adminV1QuerySuggestionsXStoreIDBannedExpressionsExpressionIDDelete**](docs/QuerySuggestionsManagementApi.md#adminv1querysuggestionsxstoreidbannedexpressionsexpressioniddelete) | **DELETE** /admin/v1/query-suggestions/{xStoreID}/banned-expressions/{expressionID} | Delete Banned Expression
|
|
@@ -508,27 +510,27 @@ Class | Method | HTTP request | Description
|
|
|
508
510
|
*RolesApi* | [**adminRolesRoleIdPermissionsBackfillPost**](docs/RolesApi.md#adminrolesroleidpermissionsbackfillpost) | **POST** /admin/roles/{roleId}/permissions/backfill | Backfill missing store permissions for a role
|
|
509
511
|
*RolesApi* | [**adminRolesRoleIdPermissionsGet**](docs/RolesApi.md#adminrolesroleidpermissionsget) | **GET** /admin/roles/{roleId}/permissions | Get role permissions with org-level and store-level separation
|
|
510
512
|
*RolesApi* | [**adminRolesRoleIdPermissionsPut**](docs/RolesApi.md#adminrolesroleidpermissionsput) | **PUT** /admin/roles/{roleId}/permissions | Update role permissions
|
|
511
|
-
*SDKDocumentsApi* | [**apiV1StoresXStoreIDDocumentsBulkPost**](docs/SDKDocumentsApi.md#apiv1storesxstoreiddocumentsbulkpost) | **POST** /api/v1/stores/{xStoreID}/documents/bulk | Bulk index documents
|
|
512
|
-
*SDKDocumentsApi* | [**apiV1StoresXStoreIDDocumentsDocumentIDDelete**](docs/SDKDocumentsApi.md#apiv1storesxstoreiddocumentsdocumentiddelete) | **DELETE** /api/v1/stores/{xStoreID}/documents/{documentID} | Delete a document
|
|
513
|
-
*SDKDocumentsApi* | [**apiV1StoresXStoreIDDocumentsPost**](docs/SDKDocumentsApi.md#apiv1storesxstoreiddocumentspost) | **POST** /api/v1/stores/{xStoreID}/documents | Index a single document
|
|
514
|
-
*SDKQuerySuggestionsConfigApi* | [**apiV1StoresXStoreIDQuerySuggestionsConfigGet**](docs/SDKQuerySuggestionsConfigApi.md#apiv1storesxstoreidquerysuggestionsconfigget) | **GET** /api/v1/stores/{xStoreID}/query-suggestions/config | Get
|
|
515
|
-
*SDKQuerySuggestionsConfigApi* | [**apiV1StoresXStoreIDQuerySuggestionsConfigPut**](docs/SDKQuerySuggestionsConfigApi.md#apiv1storesxstoreidquerysuggestionsconfigput) | **PUT** /api/v1/stores/{xStoreID}/query-suggestions/config | Update
|
|
516
|
-
*SDKSchemaApi* | [**apiV1StoresXStoreIDDocumentsDelete**](docs/SDKSchemaApi.md#apiv1storesxstoreiddocumentsdelete) | **DELETE** /api/v1/stores/{xStoreID}/documents | Clear
|
|
517
|
-
*SDKSchemaApi* | [**apiV1StoresXStoreIDSchemaGet**](docs/SDKSchemaApi.md#apiv1storesxstoreidschemaget) | **GET** /api/v1/stores/{xStoreID}/schema | Get
|
|
518
|
-
*SDKSchemaApi* | [**apiV1StoresXStoreIDSchemaPost**](docs/SDKSchemaApi.md#apiv1storesxstoreidschemapost) | **POST** /api/v1/stores/{xStoreID}/schema | Create or
|
|
519
|
-
*SDKStoreConfigApi* | [**apiV1StoresXStoreIDConfigGet**](docs/SDKStoreConfigApi.md#apiv1storesxstoreidconfigget) | **GET** /api/v1/stores/{xStoreID}/config | Get
|
|
520
|
-
*SDKStoreConfigApi* | [**apiV1StoresXStoreIDConfigPut**](docs/SDKStoreConfigApi.md#apiv1storesxstoreidconfigput) | **PUT** /api/v1/stores/{xStoreID}/config | Update
|
|
521
|
-
*SDKStoreConfigApi* | [**apiV1StoresXStoreIDConfigSchemaGet**](docs/SDKStoreConfigApi.md#apiv1storesxstoreidconfigschemaget) | **GET** /api/v1/stores/{xStoreID}/config-schema | Get
|
|
513
|
+
*SDKDocumentsApi* | [**apiV1StoresXStoreIDDocumentsBulkPost**](docs/SDKDocumentsApi.md#apiv1storesxstoreiddocumentsbulkpost) | **POST** /api/v1/stores/{xStoreID}/documents/bulk | Bulk index documents
|
|
514
|
+
*SDKDocumentsApi* | [**apiV1StoresXStoreIDDocumentsDocumentIDDelete**](docs/SDKDocumentsApi.md#apiv1storesxstoreiddocumentsdocumentiddelete) | **DELETE** /api/v1/stores/{xStoreID}/documents/{documentID} | Delete a document
|
|
515
|
+
*SDKDocumentsApi* | [**apiV1StoresXStoreIDDocumentsPost**](docs/SDKDocumentsApi.md#apiv1storesxstoreiddocumentspost) | **POST** /api/v1/stores/{xStoreID}/documents | Index a single document
|
|
516
|
+
*SDKQuerySuggestionsConfigApi* | [**apiV1StoresXStoreIDQuerySuggestionsConfigGet**](docs/SDKQuerySuggestionsConfigApi.md#apiv1storesxstoreidquerysuggestionsconfigget) | **GET** /api/v1/stores/{xStoreID}/query-suggestions/config | Get query suggestions configuration
|
|
517
|
+
*SDKQuerySuggestionsConfigApi* | [**apiV1StoresXStoreIDQuerySuggestionsConfigPut**](docs/SDKQuerySuggestionsConfigApi.md#apiv1storesxstoreidquerysuggestionsconfigput) | **PUT** /api/v1/stores/{xStoreID}/query-suggestions/config | Update query suggestions configuration
|
|
518
|
+
*SDKSchemaApi* | [**apiV1StoresXStoreIDDocumentsDelete**](docs/SDKSchemaApi.md#apiv1storesxstoreiddocumentsdelete) | **DELETE** /api/v1/stores/{xStoreID}/documents | Clear all documents
|
|
519
|
+
*SDKSchemaApi* | [**apiV1StoresXStoreIDSchemaGet**](docs/SDKSchemaApi.md#apiv1storesxstoreidschemaget) | **GET** /api/v1/stores/{xStoreID}/schema | Get index schema
|
|
520
|
+
*SDKSchemaApi* | [**apiV1StoresXStoreIDSchemaPost**](docs/SDKSchemaApi.md#apiv1storesxstoreidschemapost) | **POST** /api/v1/stores/{xStoreID}/schema | Create or update index schema
|
|
521
|
+
*SDKStoreConfigApi* | [**apiV1StoresXStoreIDConfigGet**](docs/SDKStoreConfigApi.md#apiv1storesxstoreidconfigget) | **GET** /api/v1/stores/{xStoreID}/config | Get store configuration
|
|
522
|
+
*SDKStoreConfigApi* | [**apiV1StoresXStoreIDConfigPut**](docs/SDKStoreConfigApi.md#apiv1storesxstoreidconfigput) | **PUT** /api/v1/stores/{xStoreID}/config | Update store configuration
|
|
523
|
+
*SDKStoreConfigApi* | [**apiV1StoresXStoreIDConfigSchemaGet**](docs/SDKStoreConfigApi.md#apiv1storesxstoreidconfigschemaget) | **GET** /api/v1/stores/{xStoreID}/config-schema | Get store config schema
|
|
522
524
|
*SDKStoreCreationApi* | [**apiV1StoresPost**](docs/SDKStoreCreationApi.md#apiv1storespost) | **POST** /api/v1/stores | Create Store (Public SDK API)
|
|
523
|
-
*SDKStoreInfoApi* | [**apiV1StoresXStoreIDGet**](docs/SDKStoreInfoApi.md#apiv1storesxstoreidget) | **GET** /api/v1/stores/{xStoreID} | Get
|
|
525
|
+
*SDKStoreInfoApi* | [**apiV1StoresXStoreIDGet**](docs/SDKStoreInfoApi.md#apiv1storesxstoreidget) | **GET** /api/v1/stores/{xStoreID} | Get store info
|
|
524
526
|
*SearchApi* | [**adminV1SearchXStoreIDPost**](docs/SearchApi.md#adminv1searchxstoreidpost) | **POST** /admin/v1/search/{xStoreID} | Admin Search API
|
|
525
527
|
*SearchApi* | [**v1IndexConfigSchemaGet**](docs/SearchApi.md#v1indexconfigschemaget) | **GET** /v1/index/config-schema | Get Configuration Schema
|
|
526
528
|
*SearchApi* | [**v1IndexIndexnameConfigGet**](docs/SearchApi.md#v1indexindexnameconfigget) | **GET** /v1/index/{indexname}/config | Get Index Config
|
|
527
529
|
*SearchApi* | [**v1IndexIndexnameConfigPost**](docs/SearchApi.md#v1indexindexnameconfigpost) | **POST** /v1/index/{indexname}/config | Index Config
|
|
528
530
|
*SearchApi* | [**v1IndexIndexnameConfigPropertyPatch**](docs/SearchApi.md#v1indexindexnameconfigpropertypatch) | **PATCH** /v1/index/{indexname}/config/{property} | Update Index Config Property
|
|
529
531
|
*SearchApi* | [**v1IndexIndexnameDefaultsGet**](docs/SearchApi.md#v1indexindexnamedefaultsget) | **GET** /v1/index/{indexname}/defaults | Get Schema-Based Defaults
|
|
530
|
-
*SearchApi* | [**v1SearchGet**](docs/SearchApi.md#v1searchget) | **GET** /v1/search |
|
|
531
|
-
*SearchApi* | [**v1SearchPost**](docs/SearchApi.md#v1searchpost) | **POST** /v1/search |
|
|
532
|
+
*SearchApi* | [**v1SearchGet**](docs/SearchApi.md#v1searchget) | **GET** /v1/search | Search (GET)
|
|
533
|
+
*SearchApi* | [**v1SearchPost**](docs/SearchApi.md#v1searchpost) | **POST** /v1/search | Search (POST)
|
|
532
534
|
*StopwordsApi* | [**adminStoresStopwordsLanguagesGet**](docs/StopwordsApi.md#adminstoresstopwordslanguagesget) | **GET** /admin/Stores/stopwords/languages | Get available languages
|
|
533
535
|
*StopwordsApi* | [**adminStoresXStoreIDStopwordsWordStatusPut**](docs/StopwordsApi.md#adminstoresxstoreidstopwordswordstatusput) | **PUT** /admin/Stores/{xStoreID}/stopwords/word-status | Update word status for store
|
|
534
536
|
*StopwordsApi* | [**adminStoresXStoreIDStopwordsWordlistsGet**](docs/StopwordsApi.md#adminstoresxstoreidstopwordswordlistsget) | **GET** /admin/Stores/{xStoreID}/stopwords/wordlists | Get word lists by language
|
|
@@ -625,13 +627,13 @@ Class | Method | HTTP request | Description
|
|
|
625
627
|
*UserApi* | [**adminUsersUserIdPermissionsPut**](docs/UserApi.md#adminusersuseridpermissionsput) | **PUT** /admin/users/{userId}/permissions | Update user\'s custom permissions
|
|
626
628
|
*UserApi* | [**adminUsersUserIdPermissionsRoleGet**](docs/UserApi.md#adminusersuseridpermissionsroleget) | **GET** /admin/users/{userId}/permissions/role | Get user-specific role permissions with org-level and store-level separation
|
|
627
629
|
*UserApi* | [**adminUsersUserIdPermissionsRolePut**](docs/UserApi.md#adminusersuseridpermissionsroleput) | **PUT** /admin/users/{userId}/permissions/role | Update user-specific role permissions
|
|
628
|
-
*UserProfilesApi* | [**
|
|
629
|
-
*UserProfilesApi* | [**
|
|
630
|
-
*UserProfilesApi* | [**
|
|
631
|
-
*UserProfilesApi* | [**
|
|
632
|
-
*UserProfilesApi* | [**
|
|
633
|
-
*UserProfilesApi* | [**
|
|
634
|
-
*UserProfilesApi* | [**
|
|
630
|
+
*UserProfilesApi* | [**adminAnalyticsStoreXStoreIDProfilesByAuthTokenAuthTokenGet**](docs/UserProfilesApi.md#adminanalyticsstorexstoreidprofilesbyauthtokenauthtokenget) | **GET** /admin/analytics/store/{xStoreID}/profiles/by-auth-token/{authToken} | Get User Profile by Auth Token
|
|
631
|
+
*UserProfilesApi* | [**adminAnalyticsStoreXStoreIDProfilesMergePost**](docs/UserProfilesApi.md#adminanalyticsstorexstoreidprofilesmergepost) | **POST** /admin/analytics/store/{xStoreID}/profiles/merge | Merge User Profiles
|
|
632
|
+
*UserProfilesApi* | [**adminAnalyticsStoreXStoreIDProfilesUserKeyEventsGet**](docs/UserProfilesApi.md#adminanalyticsstorexstoreidprofilesuserkeyeventsget) | **GET** /admin/analytics/store/{xStoreID}/profiles/{userKey}/events | Get User Events
|
|
633
|
+
*UserProfilesApi* | [**adminAnalyticsStoreXStoreIDProfilesUserKeyGet**](docs/UserProfilesApi.md#adminanalyticsstorexstoreidprofilesuserkeyget) | **GET** /admin/analytics/store/{xStoreID}/profiles/{userKey} | Get User Profile
|
|
634
|
+
*UserProfilesApi* | [**adminAnalyticsStoreXStoreIDProfilesUserKeyPersonalizationGet**](docs/UserProfilesApi.md#adminanalyticsstorexstoreidprofilesuserkeypersonalizationget) | **GET** /admin/analytics/store/{xStoreID}/profiles/{userKey}/personalization | Get Personalization Context
|
|
635
|
+
*UserProfilesApi* | [**adminAnalyticsStoreXStoreIDProfilesUserKeySegmentsGet**](docs/UserProfilesApi.md#adminanalyticsstorexstoreidprofilesuserkeysegmentsget) | **GET** /admin/analytics/store/{xStoreID}/profiles/{userKey}/segments | Get User Segments
|
|
636
|
+
*UserProfilesApi* | [**adminAnalyticsStoreXStoreIDProfilesUserKeySimilarGet**](docs/UserProfilesApi.md#adminanalyticsstorexstoreidprofilesuserkeysimilarget) | **GET** /admin/analytics/store/{xStoreID}/profiles/{userKey}/similar | Get Similar Users
|
|
635
637
|
*WebhooksApi* | [**v1WebhooksProviderOrgCodePost**](docs/WebhooksApi.md#v1webhooksproviderorgcodepost) | **POST** /v1/webhooks/{provider}/{org_code} | Handle Webhook
|
|
636
638
|
|
|
637
639
|
|
|
@@ -893,6 +895,8 @@ Class | Method | HTTP request | Description
|
|
|
893
895
|
- [DataTypesAutocompleteSuggestion](docs/DataTypesAutocompleteSuggestion.md)
|
|
894
896
|
- [DataTypesBillingAlertRequest](docs/DataTypesBillingAlertRequest.md)
|
|
895
897
|
- [DataTypesBillingOrderDetailsResponse](docs/DataTypesBillingOrderDetailsResponse.md)
|
|
898
|
+
- [DataTypesBillingOverviewNewResponse](docs/DataTypesBillingOverviewNewResponse.md)
|
|
899
|
+
- [DataTypesBooleanFeatureMetric](docs/DataTypesBooleanFeatureMetric.md)
|
|
896
900
|
- [DataTypesBulkDocumentRequest](docs/DataTypesBulkDocumentRequest.md)
|
|
897
901
|
- [DataTypesBulkDocumentResponse](docs/DataTypesBulkDocumentResponse.md)
|
|
898
902
|
- [DataTypesBulkDocumentResponseWrapper](docs/DataTypesBulkDocumentResponseWrapper.md)
|
|
@@ -913,6 +917,9 @@ Class | Method | HTTP request | Description
|
|
|
913
917
|
- [DataTypesConfigGroup](docs/DataTypesConfigGroup.md)
|
|
914
918
|
- [DataTypesConfigurationSchema](docs/DataTypesConfigurationSchema.md)
|
|
915
919
|
- [DataTypesConfigurationSchemaResponseWrapper](docs/DataTypesConfigurationSchemaResponseWrapper.md)
|
|
920
|
+
- [DataTypesConsumableMetric](docs/DataTypesConsumableMetric.md)
|
|
921
|
+
- [DataTypesConsumptionHistoryResponse](docs/DataTypesConsumptionHistoryResponse.md)
|
|
922
|
+
- [DataTypesConsumptionSummary](docs/DataTypesConsumptionSummary.md)
|
|
916
923
|
- [DataTypesCreateAnalyticsRuleRequest](docs/DataTypesCreateAnalyticsRuleRequest.md)
|
|
917
924
|
- [DataTypesCreateCustomWordListRequest](docs/DataTypesCreateCustomWordListRequest.md)
|
|
918
925
|
- [DataTypesCreateLimitRequestDto](docs/DataTypesCreateLimitRequestDto.md)
|
|
@@ -934,6 +941,8 @@ Class | Method | HTTP request | Description
|
|
|
934
941
|
- [DataTypesCreateUserResponse](docs/DataTypesCreateUserResponse.md)
|
|
935
942
|
- [DataTypesCreateUserResponseWrapper](docs/DataTypesCreateUserResponseWrapper.md)
|
|
936
943
|
- [DataTypesCreditAdjustmentDto](docs/DataTypesCreditAdjustmentDto.md)
|
|
944
|
+
- [DataTypesCreditBalanceInfo](docs/DataTypesCreditBalanceInfo.md)
|
|
945
|
+
- [DataTypesCreditConsumption](docs/DataTypesCreditConsumption.md)
|
|
937
946
|
- [DataTypesCreditPlan](docs/DataTypesCreditPlan.md)
|
|
938
947
|
- [DataTypesCreditPlanDetails](docs/DataTypesCreditPlanDetails.md)
|
|
939
948
|
- [DataTypesCreditsConsumedGraphResponse](docs/DataTypesCreditsConsumedGraphResponse.md)
|
|
@@ -949,6 +958,7 @@ Class | Method | HTTP request | Description
|
|
|
949
958
|
- [DataTypesDefaultDeclensionsResponse](docs/DataTypesDefaultDeclensionsResponse.md)
|
|
950
959
|
- [DataTypesDefaultDeclensionsResponseWrapper](docs/DataTypesDefaultDeclensionsResponseWrapper.md)
|
|
951
960
|
- [DataTypesDefaultMenu](docs/DataTypesDefaultMenu.md)
|
|
961
|
+
- [DataTypesDetailedUsageMetrics](docs/DataTypesDetailedUsageMetrics.md)
|
|
952
962
|
- [DataTypesDocumentListResponse](docs/DataTypesDocumentListResponse.md)
|
|
953
963
|
- [DataTypesDocumentListResponseWrapper](docs/DataTypesDocumentListResponseWrapper.md)
|
|
954
964
|
- [DataTypesDocumentPosition](docs/DataTypesDocumentPosition.md)
|
|
@@ -1015,6 +1025,8 @@ Class | Method | HTTP request | Description
|
|
|
1015
1025
|
- [DataTypesGenericResponseArrayString](docs/DataTypesGenericResponseArrayString.md)
|
|
1016
1026
|
- [DataTypesGenericResponseBillingServiceTrialEligibilityResponse](docs/DataTypesGenericResponseBillingServiceTrialEligibilityResponse.md)
|
|
1017
1027
|
- [DataTypesGenericResponseDataTypesBillingOrderDetailsResponse](docs/DataTypesGenericResponseDataTypesBillingOrderDetailsResponse.md)
|
|
1028
|
+
- [DataTypesGenericResponseDataTypesBillingOverviewNewResponse](docs/DataTypesGenericResponseDataTypesBillingOverviewNewResponse.md)
|
|
1029
|
+
- [DataTypesGenericResponseDataTypesConsumptionHistoryResponse](docs/DataTypesGenericResponseDataTypesConsumptionHistoryResponse.md)
|
|
1018
1030
|
- [DataTypesGenericResponseDataTypesCreditsConsumedGraphResponse](docs/DataTypesGenericResponseDataTypesCreditsConsumedGraphResponse.md)
|
|
1019
1031
|
- [DataTypesGenericResponseDataTypesCurrentPlanInfo](docs/DataTypesGenericResponseDataTypesCurrentPlanInfo.md)
|
|
1020
1032
|
- [DataTypesGenericResponseDataTypesGSTVerificationResponse](docs/DataTypesGenericResponseDataTypesGSTVerificationResponse.md)
|
|
@@ -1095,6 +1107,7 @@ Class | Method | HTTP request | Description
|
|
|
1095
1107
|
- [DataTypesNewsLetterRequestDto](docs/DataTypesNewsLetterRequestDto.md)
|
|
1096
1108
|
- [DataTypesNewsLetterRequestResponse](docs/DataTypesNewsLetterRequestResponse.md)
|
|
1097
1109
|
- [DataTypesNewsLetterRequestsListResponse](docs/DataTypesNewsLetterRequestsListResponse.md)
|
|
1110
|
+
- [DataTypesNextChargeInfo](docs/DataTypesNextChargeInfo.md)
|
|
1098
1111
|
- [DataTypesNotification](docs/DataTypesNotification.md)
|
|
1099
1112
|
- [DataTypesNotificationAction](docs/DataTypesNotificationAction.md)
|
|
1100
1113
|
- [DataTypesNotificationActionData](docs/DataTypesNotificationActionData.md)
|
|
@@ -1140,6 +1153,7 @@ Class | Method | HTTP request | Description
|
|
|
1140
1153
|
- [DataTypesOrganizationTaxDetails](docs/DataTypesOrganizationTaxDetails.md)
|
|
1141
1154
|
- [DataTypesOrganizationsListResponse](docs/DataTypesOrganizationsListResponse.md)
|
|
1142
1155
|
- [DataTypesOverrideActions](docs/DataTypesOverrideActions.md)
|
|
1156
|
+
- [DataTypesPaginationInfo](docs/DataTypesPaginationInfo.md)
|
|
1143
1157
|
- [DataTypesParentMenu](docs/DataTypesParentMenu.md)
|
|
1144
1158
|
- [DataTypesParentMenuGroup](docs/DataTypesParentMenuGroup.md)
|
|
1145
1159
|
- [DataTypesParentMenuResponse](docs/DataTypesParentMenuResponse.md)
|
|
@@ -1164,6 +1178,7 @@ Class | Method | HTTP request | Description
|
|
|
1164
1178
|
- [DataTypesProcessRefundRequestDto](docs/DataTypesProcessRefundRequestDto.md)
|
|
1165
1179
|
- [DataTypesProfileResponse](docs/DataTypesProfileResponse.md)
|
|
1166
1180
|
- [DataTypesProfileResponseWrapper](docs/DataTypesProfileResponseWrapper.md)
|
|
1181
|
+
- [DataTypesProjectedRunoutInfo](docs/DataTypesProjectedRunoutInfo.md)
|
|
1167
1182
|
- [DataTypesPublicCreateStoreRequest](docs/DataTypesPublicCreateStoreRequest.md)
|
|
1168
1183
|
- [DataTypesPublicCreateStoreResponse](docs/DataTypesPublicCreateStoreResponse.md)
|
|
1169
1184
|
- [DataTypesPublicSearchRequest](docs/DataTypesPublicSearchRequest.md)
|
|
@@ -1244,6 +1259,7 @@ Class | Method | HTTP request | Description
|
|
|
1244
1259
|
- [DataTypesStoreRequestDto](docs/DataTypesStoreRequestDto.md)
|
|
1245
1260
|
- [DataTypesStoreResponse](docs/DataTypesStoreResponse.md)
|
|
1246
1261
|
- [DataTypesStoresListResponse](docs/DataTypesStoresListResponse.md)
|
|
1262
|
+
- [DataTypesStringFeatureMetric](docs/DataTypesStringFeatureMetric.md)
|
|
1247
1263
|
- [DataTypesSubMenuAccess](docs/DataTypesSubMenuAccess.md)
|
|
1248
1264
|
- [DataTypesSubscription](docs/DataTypesSubscription.md)
|
|
1249
1265
|
- [DataTypesSubscriptionPaymentRequest](docs/DataTypesSubscriptionPaymentRequest.md)
|
|
@@ -1292,6 +1308,7 @@ Class | Method | HTTP request | Description
|
|
|
1292
1308
|
- [DataTypesUploadsourceDataResponse](docs/DataTypesUploadsourceDataResponse.md)
|
|
1293
1309
|
- [DataTypesUsageBreakdownGraphResponse](docs/DataTypesUsageBreakdownGraphResponse.md)
|
|
1294
1310
|
- [DataTypesUsageBreakdownRow](docs/DataTypesUsageBreakdownRow.md)
|
|
1311
|
+
- [DataTypesUsageSummary](docs/DataTypesUsageSummary.md)
|
|
1295
1312
|
- [DataTypesUser](docs/DataTypesUser.md)
|
|
1296
1313
|
- [DataTypesUserContact](docs/DataTypesUserContact.md)
|
|
1297
1314
|
- [DataTypesUserCustomPermissionsRequest](docs/DataTypesUserCustomPermissionsRequest.md)
|
|
@@ -1343,6 +1360,7 @@ Class | Method | HTTP request | Description
|
|
|
1343
1360
|
- [ModelsCreateCustomEventFieldRequest](docs/ModelsCreateCustomEventFieldRequest.md)
|
|
1344
1361
|
- [ModelsCreateCustomEventTypeRequest](docs/ModelsCreateCustomEventTypeRequest.md)
|
|
1345
1362
|
- [ModelsMergeProfilesResponse](docs/ModelsMergeProfilesResponse.md)
|
|
1363
|
+
- [ModelsNestedPropertyDefinition](docs/ModelsNestedPropertyDefinition.md)
|
|
1346
1364
|
- [ModelsPersonalizationContext](docs/ModelsPersonalizationContext.md)
|
|
1347
1365
|
- [ModelsSimilarUser](docs/ModelsSimilarUser.md)
|
|
1348
1366
|
- [ModelsUpdateCustomEventFieldRequest](docs/ModelsUpdateCustomEventFieldRequest.md)
|
|
@@ -1430,6 +1448,13 @@ Class | Method | HTTP request | Description
|
|
|
1430
1448
|
|
|
1431
1449
|
|
|
1432
1450
|
Authentication schemes defined for the API:
|
|
1451
|
+
<a id="ApiKeyAuth"></a>
|
|
1452
|
+
### ApiKeyAuth
|
|
1453
|
+
|
|
1454
|
+
- **Type**: API key
|
|
1455
|
+
- **API key parameter name**: x-storesecret
|
|
1456
|
+
- **Location**: HTTP header
|
|
1457
|
+
|
|
1433
1458
|
<a id="BearerAuth"></a>
|
|
1434
1459
|
### BearerAuth
|
|
1435
1460
|
|