@seekora-ai/admin-api 1.1.14 → 1.1.16
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 +46 -2
- package/api.ts +2479 -0
- package/dist/api.d.ts +1926 -0
- package/dist/api.js +986 -13
- package/dist/esm/api.d.ts +1926 -0
- package/dist/esm/api.js +981 -8
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.1.16.tgz +0 -0
- package/seekora-ai-admin-api-1.1.14.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.16
|
|
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.16 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -78,6 +78,7 @@ Class | Method | HTTP request | Description
|
|
|
78
78
|
*AnalyticsApi* | [**adminAnalyticsStoreXStoreIDQueriesGet**](docs/AnalyticsApi.md#adminanalyticsstorexstoreidqueriesget) | **GET** /admin/analytics/store/{xStoreID}/queries | Get Query Analytics
|
|
79
79
|
*AnalyticsApi* | [**adminAnalyticsStoreXStoreIDQueriesNoClicksGet**](docs/AnalyticsApi.md#adminanalyticsstorexstoreidqueriesnoclicksget) | **GET** /admin/analytics/store/{xStoreID}/queries/no-clicks | Get No-Clicks Queries
|
|
80
80
|
*AnalyticsApi* | [**adminAnalyticsStoreXStoreIDQueriesNoResultsGet**](docs/AnalyticsApi.md#adminanalyticsstorexstoreidqueriesnoresultsget) | **GET** /admin/analytics/store/{xStoreID}/queries/no-results | Get No-Results Queries
|
|
81
|
+
*AnalyticsApi* | [**adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet**](docs/AnalyticsApi.md#adminanalyticsstorexstoreidqueriesqueryinsightsget) | **GET** /admin/analytics/store/{xStoreID}/queries/{query}/insights | Get Query Insights
|
|
81
82
|
*AnalyticsApi* | [**adminAnalyticsStoreXStoreIDResultsGet**](docs/AnalyticsApi.md#adminanalyticsstorexstoreidresultsget) | **GET** /admin/analytics/store/{xStoreID}/results | Get Top Results Analytics
|
|
82
83
|
*AnalyticsApi* | [**adminAnalyticsStoreXStoreIDTagsGet**](docs/AnalyticsApi.md#adminanalyticsstorexstoreidtagsget) | **GET** /admin/analytics/store/{xStoreID}/tags | Get Analytics Tags
|
|
83
84
|
*AnalyticsApi* | [**adminAnalyticsStoreXStoreIDTagsSummaryGet**](docs/AnalyticsApi.md#adminanalyticsstorexstoreidtagssummaryget) | **GET** /admin/analytics/store/{xStoreID}/tags/summary | Get Analytics Tags Summary
|
|
@@ -192,9 +193,11 @@ Class | Method | HTTP request | Description
|
|
|
192
193
|
*ItemAnalyticsApi* | [**adminAnalyticsStoreXStoreIDItemsTrendsGet**](docs/ItemAnalyticsApi.md#adminanalyticsstorexstoreiditemstrendsget) | **GET** /admin/analytics/store/{xStoreID}/items/trends | Get Item Performance Trends
|
|
193
194
|
*ItemAnalyticsApi* | [**adminAnalyticsStoreXStoreIDQueriesItemPerformanceGet**](docs/ItemAnalyticsApi.md#adminanalyticsstorexstoreidqueriesitemperformanceget) | **GET** /admin/analytics/store/{xStoreID}/queries/item-performance | Get Query Item Performance Analytics
|
|
194
195
|
*LimitsApi* | [**miscLimitsChangeStatusLimitIDIsActivePut**](docs/LimitsApi.md#misclimitschangestatuslimitidisactiveput) | **PUT** /misc/limits/ChangeStatus/{limitID}/{isActive} | Change Limit Status of an existing limit
|
|
196
|
+
*LimitsApi* | [**miscLimitsGet**](docs/LimitsApi.md#misclimitsget) | **GET** /misc/limits | Fetches list of all limits
|
|
195
197
|
*LimitsApi* | [**miscLimitsLimitIDGet**](docs/LimitsApi.md#misclimitslimitidget) | **GET** /misc/limits/{limitID} | Fetches limit by id
|
|
196
198
|
*LimitsApi* | [**miscLimitsLimitIDPut**](docs/LimitsApi.md#misclimitslimitidput) | **PUT** /misc/limits/{limitID} | UpdateLimit an existing limit
|
|
197
199
|
*LimitsApi* | [**miscLimitsPost**](docs/LimitsApi.md#misclimitspost) | **POST** /misc/limits | Creates a new limit
|
|
200
|
+
*MenusApi* | [**miscMenusGet**](docs/MenusApi.md#miscmenusget) | **GET** /misc/menus | Fetches list of all menus
|
|
198
201
|
*MenusApi* | [**miscMenusIdDelete**](docs/MenusApi.md#miscmenusiddelete) | **DELETE** /misc/menus/{id} | Delete a menu
|
|
199
202
|
*MenusApi* | [**miscMenusIdGet**](docs/MenusApi.md#miscmenusidget) | **GET** /misc/menus/{id} | Fetches menus by id
|
|
200
203
|
*MenusApi* | [**miscMenusIdPut**](docs/MenusApi.md#miscmenusidput) | **PUT** /misc/menus/{id} | Update an existing menu
|
|
@@ -219,6 +222,7 @@ Class | Method | HTTP request | Description
|
|
|
219
222
|
*MongoDbApi* | [**mongodbDatabasesDatabaseNameDelete**](docs/MongoDbApi.md#mongodbdatabasesdatabasenamedelete) | **DELETE** /Mongodb/databases/{databaseName} | Drop a database
|
|
220
223
|
*MongoDbApi* | [**mongodbDatabasesDatabaseNamePost**](docs/MongoDbApi.md#mongodbdatabasesdatabasenamepost) | **POST** /Mongodb/databases/{databaseName} | Create a new database
|
|
221
224
|
*MongoDbApi* | [**mongodbDatabasesGet**](docs/MongoDbApi.md#mongodbdatabasesget) | **GET** /Mongodb/databases | List all databases
|
|
225
|
+
*NewsLettersApi* | [**miscNewsLettersGet**](docs/NewsLettersApi.md#miscnewslettersget) | **GET** /misc/NewsLetters | Fetches list of all NewsLetterSubscription
|
|
222
226
|
*NewsLettersApi* | [**miscNewsLettersIdGet**](docs/NewsLettersApi.md#miscnewslettersidget) | **GET** /misc/NewsLetters/{id} | Fetches NewsLetterSubscription by id
|
|
223
227
|
*NewsLettersApi* | [**miscNewsLettersIdPut**](docs/NewsLettersApi.md#miscnewslettersidput) | **PUT** /misc/NewsLetters/{id} | Update an existing NewsLetterSubscription
|
|
224
228
|
*NewsLettersApi* | [**miscNewsLettersPost**](docs/NewsLettersApi.md#miscnewsletterspost) | **POST** /misc/NewsLetters | Creates a new NewsLetterSubscription
|
|
@@ -232,6 +236,7 @@ Class | Method | HTTP request | Description
|
|
|
232
236
|
*OnboardingApi* | [**adminV1UsersOnboardingStorekeyGet**](docs/OnboardingApi.md#adminv1usersonboardingstorekeyget) | **GET** /admin/v1/users/onboarding/storekey | Get store key
|
|
233
237
|
*OnboardingApi* | [**adminV1UsersOnboardingUploaddataPost**](docs/OnboardingApi.md#adminv1usersonboardinguploaddatapost) | **POST** /admin/v1/users/onboarding/uploaddata | Upload source data
|
|
234
238
|
*OnboardingApi* | [**adminV1UsersSampledatasetsGet**](docs/OnboardingApi.md#adminv1userssampledatasetsget) | **GET** /admin/v1/users/sampledatasets | Get sample datasets
|
|
239
|
+
*OrganizationsApi* | [**adminOrganizationsGet**](docs/OrganizationsApi.md#adminorganizationsget) | **GET** /admin/Organizations | Fetches list of all Organizations
|
|
235
240
|
*OrganizationsApi* | [**adminOrganizationsIdPut**](docs/OrganizationsApi.md#adminorganizationsidput) | **PUT** /admin/Organizations/{id} | Update an existing Orgnization
|
|
236
241
|
*OrganizationsApi* | [**adminOrganizationsOrgIdGet**](docs/OrganizationsApi.md#adminorganizationsorgidget) | **GET** /admin/Organizations/{OrgId} | Fetches Orgnization by Id
|
|
237
242
|
*OrganizationsApi* | [**adminOrganizationsPost**](docs/OrganizationsApi.md#adminorganizationspost) | **POST** /admin/Organizations | Creates a new Orgnization
|
|
@@ -254,10 +259,12 @@ Class | Method | HTTP request | Description
|
|
|
254
259
|
*PaymentGatewayApi* | [**v1CreditPlansGet**](docs/PaymentGatewayApi.md#v1creditplansget) | **GET** /v1/credit-plans | Get available credit plans
|
|
255
260
|
*PaymentGatewayApi* | [**v1SubscriptionPlansGet**](docs/PaymentGatewayApi.md#v1subscriptionplansget) | **GET** /v1/subscription-plans | Get subscription plans grouped by tier
|
|
256
261
|
*PaymentGatewayApi* | [**v1SubscriptionPlansIdGet**](docs/PaymentGatewayApi.md#v1subscriptionplansidget) | **GET** /v1/subscription-plans/{id} | Get a single subscription plan by ID or identifier
|
|
262
|
+
*PaymentsApi* | [**adminPaymentsGet**](docs/PaymentsApi.md#adminpaymentsget) | **GET** /admin/payments/ | Fetches list of all payments
|
|
257
263
|
*PaymentsApi* | [**adminPaymentsPaymentIDDelete**](docs/PaymentsApi.md#adminpaymentspaymentiddelete) | **DELETE** /admin/payments/{paymentID} | Delete a payment
|
|
258
264
|
*PaymentsApi* | [**adminPaymentsPaymentIDGet**](docs/PaymentsApi.md#adminpaymentspaymentidget) | **GET** /admin/payments/{paymentID} | Fetches payment by id
|
|
259
265
|
*PaymentsApi* | [**adminPaymentsPaymentIDPut**](docs/PaymentsApi.md#adminpaymentspaymentidput) | **PUT** /admin/payments/{paymentID} | Update an existing payment
|
|
260
266
|
*PaymentsApi* | [**adminPaymentsPost**](docs/PaymentsApi.md#adminpaymentspost) | **POST** /admin/payments | Creates a new payment
|
|
267
|
+
*PlansApi* | [**miscPlansGet**](docs/PlansApi.md#miscplansget) | **GET** /misc/Plans | Fetches list of all Plans
|
|
261
268
|
*PlansApi* | [**miscPlansPlanIDGet**](docs/PlansApi.md#miscplansplanidget) | **GET** /misc/Plans/{planID} | Fetches plan by id
|
|
262
269
|
*PlansApi* | [**miscPlansPlanIDPut**](docs/PlansApi.md#miscplansplanidput) | **PUT** /misc/Plans/{planID} | Update an existing Plan
|
|
263
270
|
*PlansApi* | [**miscPlansPost**](docs/PlansApi.md#miscplanspost) | **POST** /misc/Plans | Creates a new plan
|
|
@@ -317,12 +324,14 @@ Class | Method | HTTP request | Description
|
|
|
317
324
|
*RegisterApi* | [**registerUsersOtpResendPost**](docs/RegisterApi.md#registerusersotpresendpost) | **POST** /Register/users/otp/resend | Resend OTP to email
|
|
318
325
|
*RegisterApi* | [**registerUsersOtpVerifyPost**](docs/RegisterApi.md#registerusersotpverifypost) | **POST** /Register/users/otp/verify | Verify OTP
|
|
319
326
|
*RegisterApi* | [**registerUsersPost**](docs/RegisterApi.md#registeruserspost) | **POST** /Register/users | Register new user
|
|
327
|
+
*RequestsApi* | [**miscRequestsGet**](docs/RequestsApi.md#miscrequestsget) | **GET** /misc/Requests | Fetches list of all ServiceRequest
|
|
320
328
|
*RequestsApi* | [**miscRequestsIdDelete**](docs/RequestsApi.md#miscrequestsiddelete) | **DELETE** /misc/Requests/{id} | Deletes an existing ServiceRequest
|
|
321
329
|
*RequestsApi* | [**miscRequestsIdPut**](docs/RequestsApi.md#miscrequestsidput) | **PUT** /misc/Requests/{id} | Update an existing ServiceRequest
|
|
322
330
|
*RequestsApi* | [**miscRequestsPost**](docs/RequestsApi.md#miscrequestspost) | **POST** /misc/Requests | Creates a new ServiceRequest
|
|
323
331
|
*RequestsApi* | [**miscRequestsRequestIdGet**](docs/RequestsApi.md#miscrequestsrequestidget) | **GET** /misc/Requests/{requestId} | Fetches ServiceRequest by id
|
|
324
332
|
*RequestsApi* | [**miscRequestsUpdateStatusIdStatusPut**](docs/RequestsApi.md#miscrequestsupdatestatusidstatusput) | **PUT** /misc/Requests/UpdateStatus/{id}/{status} | Update an existing ServiceRequest status
|
|
325
333
|
*RoleRightsApi* | [**adminRolerightsBulkPost**](docs/RoleRightsApi.md#adminrolerightsbulkpost) | **POST** /admin/rolerights/bulk | Adds list of all roleright in bulk
|
|
334
|
+
*RoleRightsApi* | [**adminRolerightsGet**](docs/RoleRightsApi.md#adminrolerightsget) | **GET** /admin/rolerights | Fetches list of all roleright
|
|
326
335
|
*RoleRightsApi* | [**adminRolerightsGetRoleRightsByRoleIdIdGet**](docs/RoleRightsApi.md#adminrolerightsgetrolerightsbyroleididget) | **GET** /admin/rolerights/GetRoleRightsByRoleId/{id} | Fetches roleright by role id
|
|
327
336
|
*RoleRightsApi* | [**adminRolerightsIdGet**](docs/RoleRightsApi.md#adminrolerightsidget) | **GET** /admin/rolerights/{id} | Fetches roleright by id
|
|
328
337
|
*RoleRightsApi* | [**adminRolerightsIdPut**](docs/RoleRightsApi.md#adminrolerightsidput) | **PUT** /admin/rolerights/{id} | Update an existing roleright
|
|
@@ -331,6 +340,7 @@ Class | Method | HTTP request | Description
|
|
|
331
340
|
*RoleRightsApi* | [**adminRolerightsStoreStoreIdGet**](docs/RoleRightsApi.md#adminrolerightsstorestoreidget) | **GET** /admin/rolerights/store/:storeId | Fetches list of all roleright by storeid
|
|
332
341
|
*RolesApi* | [**adminRolesIdDelete**](docs/RolesApi.md#adminrolesiddelete) | **DELETE** /admin/roles/{id} | Delete a role
|
|
333
342
|
*RolesApi* | [**adminRolesIdPut**](docs/RolesApi.md#adminrolesidput) | **PUT** /admin/roles/{id} | Update an existing role
|
|
343
|
+
*RolesApi* | [**adminRolesOrgIdGet**](docs/RolesApi.md#adminrolesorgidget) | **GET** /admin/roles/{OrgId} | Fetches list of all roles
|
|
334
344
|
*RolesApi* | [**adminRolesOrgIdRoleIdGet**](docs/RolesApi.md#adminrolesorgidroleidget) | **GET** /admin/roles/{OrgId}/{RoleId} | Fetches role by id
|
|
335
345
|
*RolesApi* | [**adminRolesPost**](docs/RolesApi.md#adminrolespost) | **POST** /admin/roles | Creates a new role
|
|
336
346
|
*SearchApi* | [**adminV1SearchXStoreIDPost**](docs/SearchApi.md#adminv1searchxstoreidpost) | **POST** /admin/v1/search/{xStoreID} | Admin Search API
|
|
@@ -339,6 +349,7 @@ Class | Method | HTTP request | Description
|
|
|
339
349
|
*SearchApi* | [**v1IndexIndexnameConfigPost**](docs/SearchApi.md#v1indexindexnameconfigpost) | **POST** /v1/index/{indexname}/config | Index Config
|
|
340
350
|
*SearchApi* | [**v1IndexIndexnameConfigPropertyPatch**](docs/SearchApi.md#v1indexindexnameconfigpropertypatch) | **PATCH** /v1/index/{indexname}/config/{property} | Update Index Config Property
|
|
341
351
|
*SearchApi* | [**v1IndexIndexnameDefaultsGet**](docs/SearchApi.md#v1indexindexnamedefaultsget) | **GET** /v1/index/{indexname}/defaults | Get Schema-Based Defaults
|
|
352
|
+
*SearchApi* | [**v1SearchPost**](docs/SearchApi.md#v1searchpost) | **POST** /v1/search | Public Search API
|
|
342
353
|
*StopwordsApi* | [**adminStoresStopwordsLanguagesGet**](docs/StopwordsApi.md#adminstoresstopwordslanguagesget) | **GET** /admin/Stores/stopwords/languages | Get available languages
|
|
343
354
|
*StopwordsApi* | [**adminStoresXStoreIDStopwordsWordStatusPut**](docs/StopwordsApi.md#adminstoresxstoreidstopwordswordstatusput) | **PUT** /admin/Stores/{xStoreID}/stopwords/word-status | Update word status for store
|
|
344
355
|
*StopwordsApi* | [**adminStoresXStoreIDStopwordsWordlistsGet**](docs/StopwordsApi.md#adminstoresxstoreidstopwordswordlistsget) | **GET** /admin/Stores/{xStoreID}/stopwords/wordlists | Get word lists by language
|
|
@@ -381,6 +392,7 @@ Class | Method | HTTP request | Description
|
|
|
381
392
|
*SubscriptionsApi* | [**adminSubscriptionsCancelProcessPost**](docs/SubscriptionsApi.md#adminsubscriptionscancelprocesspost) | **POST** /admin/subscriptions/cancel/process | Process subscription cancellation
|
|
382
393
|
*SubscriptionsApi* | [**adminSubscriptionsSubscriptionIDPut**](docs/SubscriptionsApi.md#adminsubscriptionssubscriptionidput) | **PUT** /admin/subscriptions/{subscriptionID} | Update an existing Subscription
|
|
383
394
|
*SubscriptionsApi* | [**adminSubscriptionsUpdatestatusSubscriptionIDStatusPut**](docs/SubscriptionsApi.md#adminsubscriptionsupdatestatussubscriptionidstatusput) | **PUT** /admin/subscriptions/updatestatus/{subscriptionID}/{status} | Update an existing Subscription status
|
|
395
|
+
*SubscriptionsApi* | [**miscSubscriptionsGet**](docs/SubscriptionsApi.md#miscsubscriptionsget) | **GET** /misc/subscriptions | Fetches list of all Subscription
|
|
384
396
|
*SubscriptionsApi* | [**miscSubscriptionsPost**](docs/SubscriptionsApi.md#miscsubscriptionspost) | **POST** /misc/subscriptions | Creates a new Subscription
|
|
385
397
|
*SubscriptionsApi* | [**miscSubscriptionsSubscriptionIDGet**](docs/SubscriptionsApi.md#miscsubscriptionssubscriptionidget) | **GET** /misc/subscriptions/{subscriptionID} | Fetches Subscription by id
|
|
386
398
|
*TaxManagementApi* | [**adminTaxCalculatePost**](docs/TaxManagementApi.md#admintaxcalculatepost) | **POST** /admin/tax/calculate | Calculate tax for a transaction
|
|
@@ -426,6 +438,7 @@ Class | Method | HTTP request | Description
|
|
|
426
438
|
- [AdminAnalyticsStoreXStoreIDQueriesGet200Response](docs/AdminAnalyticsStoreXStoreIDQueriesGet200Response.md)
|
|
427
439
|
- [AdminAnalyticsStoreXStoreIDQueriesItemPerformanceGet200Response](docs/AdminAnalyticsStoreXStoreIDQueriesItemPerformanceGet200Response.md)
|
|
428
440
|
- [AdminAnalyticsStoreXStoreIDQueriesNoClicksGet200Response](docs/AdminAnalyticsStoreXStoreIDQueriesNoClicksGet200Response.md)
|
|
441
|
+
- [AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGet200Response](docs/AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGet200Response.md)
|
|
429
442
|
- [AdminFeatureLimitsViolationsGet200Response](docs/AdminFeatureLimitsViolationsGet200Response.md)
|
|
430
443
|
- [AdminPaymentGatewayVerifyInvoicePostRequest](docs/AdminPaymentGatewayVerifyInvoicePostRequest.md)
|
|
431
444
|
- [AdminV1QuerySuggestionsXStoreIDApplyFiltersPost200Response](docs/AdminV1QuerySuggestionsXStoreIDApplyFiltersPost200Response.md)
|
|
@@ -443,6 +456,9 @@ Class | Method | HTTP request | Description
|
|
|
443
456
|
- [AnalyticsAPIUsageEvent](docs/AnalyticsAPIUsageEvent.md)
|
|
444
457
|
- [AnalyticsAPIUsageResponse](docs/AnalyticsAPIUsageResponse.md)
|
|
445
458
|
- [AnalyticsAnalyticsAPIResponse](docs/AnalyticsAnalyticsAPIResponse.md)
|
|
459
|
+
- [AnalyticsArrayElementAnalytic](docs/AnalyticsArrayElementAnalytic.md)
|
|
460
|
+
- [AnalyticsArrayFilterStats](docs/AnalyticsArrayFilterStats.md)
|
|
461
|
+
- [AnalyticsArrayPositionAnalytic](docs/AnalyticsArrayPositionAnalytic.md)
|
|
446
462
|
- [AnalyticsBannedExpression](docs/AnalyticsBannedExpression.md)
|
|
447
463
|
- [AnalyticsBannedMatchType](docs/AnalyticsBannedMatchType.md)
|
|
448
464
|
- [AnalyticsBatchPostRequest](docs/AnalyticsBatchPostRequest.md)
|
|
@@ -452,6 +468,7 @@ Class | Method | HTTP request | Description
|
|
|
452
468
|
- [AnalyticsCachedSuggestionResponse](docs/AnalyticsCachedSuggestionResponse.md)
|
|
453
469
|
- [AnalyticsCategoryAttributeConfig](docs/AnalyticsCategoryAttributeConfig.md)
|
|
454
470
|
- [AnalyticsCategoryWithCount](docs/AnalyticsCategoryWithCount.md)
|
|
471
|
+
- [AnalyticsClickPositionBucket](docs/AnalyticsClickPositionBucket.md)
|
|
455
472
|
- [AnalyticsComparisonMeta](docs/AnalyticsComparisonMeta.md)
|
|
456
473
|
- [AnalyticsCustomQueryRequest](docs/AnalyticsCustomQueryRequest.md)
|
|
457
474
|
- [AnalyticsCustomQueryResponse](docs/AnalyticsCustomQueryResponse.md)
|
|
@@ -466,10 +483,13 @@ Class | Method | HTTP request | Description
|
|
|
466
483
|
- [AnalyticsFilterCombination](docs/AnalyticsFilterCombination.md)
|
|
467
484
|
- [AnalyticsFilterEffectivenessAnalysis](docs/AnalyticsFilterEffectivenessAnalysis.md)
|
|
468
485
|
- [AnalyticsFilterEffectivenessCategory](docs/AnalyticsFilterEffectivenessCategory.md)
|
|
486
|
+
- [AnalyticsFilterEffectivenessMetrics](docs/AnalyticsFilterEffectivenessMetrics.md)
|
|
469
487
|
- [AnalyticsFilterEffectivenessSummary](docs/AnalyticsFilterEffectivenessSummary.md)
|
|
488
|
+
- [AnalyticsFilterImprovementMetrics](docs/AnalyticsFilterImprovementMetrics.md)
|
|
470
489
|
- [AnalyticsFilterTrendsResponse](docs/AnalyticsFilterTrendsResponse.md)
|
|
471
490
|
- [AnalyticsFilterUsageStatistics](docs/AnalyticsFilterUsageStatistics.md)
|
|
472
491
|
- [AnalyticsFilterValueStatistic](docs/AnalyticsFilterValueStatistic.md)
|
|
492
|
+
- [AnalyticsFilterValueUsage](docs/AnalyticsFilterValueUsage.md)
|
|
473
493
|
- [AnalyticsGeoAnalytic](docs/AnalyticsGeoAnalytic.md)
|
|
474
494
|
- [AnalyticsGeoInsights](docs/AnalyticsGeoInsights.md)
|
|
475
495
|
- [AnalyticsGeoPopularFilter](docs/AnalyticsGeoPopularFilter.md)
|
|
@@ -506,7 +526,19 @@ Class | Method | HTTP request | Description
|
|
|
506
526
|
- [AnalyticsManualQuerySuggestionRequest](docs/AnalyticsManualQuerySuggestionRequest.md)
|
|
507
527
|
- [AnalyticsPromoteSuggestionsRequest](docs/AnalyticsPromoteSuggestionsRequest.md)
|
|
508
528
|
- [AnalyticsQueryAnalytic](docs/AnalyticsQueryAnalytic.md)
|
|
529
|
+
- [AnalyticsQueryFilterAnalytics](docs/AnalyticsQueryFilterAnalytics.md)
|
|
530
|
+
- [AnalyticsQueryFilterCombination](docs/AnalyticsQueryFilterCombination.md)
|
|
531
|
+
- [AnalyticsQueryFilterEffectiveness](docs/AnalyticsQueryFilterEffectiveness.md)
|
|
532
|
+
- [AnalyticsQueryFilterTrend](docs/AnalyticsQueryFilterTrend.md)
|
|
533
|
+
- [AnalyticsQueryFilterUsage](docs/AnalyticsQueryFilterUsage.md)
|
|
534
|
+
- [AnalyticsQueryGeoAnalytic](docs/AnalyticsQueryGeoAnalytic.md)
|
|
535
|
+
- [AnalyticsQueryGeoAnalyticsSection](docs/AnalyticsQueryGeoAnalyticsSection.md)
|
|
536
|
+
- [AnalyticsQueryInsights](docs/AnalyticsQueryInsights.md)
|
|
509
537
|
- [AnalyticsQueryPerformanceAnalytics](docs/AnalyticsQueryPerformanceAnalytics.md)
|
|
538
|
+
- [AnalyticsQueryPopularFilter](docs/AnalyticsQueryPopularFilter.md)
|
|
539
|
+
- [AnalyticsQueryPopularFiltersSection](docs/AnalyticsQueryPopularFiltersSection.md)
|
|
540
|
+
- [AnalyticsQueryPopularResultWithWidget](docs/AnalyticsQueryPopularResultWithWidget.md)
|
|
541
|
+
- [AnalyticsQueryPopularResultsSection](docs/AnalyticsQueryPopularResultsSection.md)
|
|
510
542
|
- [AnalyticsQueryResponse](docs/AnalyticsQueryResponse.md)
|
|
511
543
|
- [AnalyticsQuerySuggestion](docs/AnalyticsQuerySuggestion.md)
|
|
512
544
|
- [AnalyticsQuerySuggestionConfig](docs/AnalyticsQuerySuggestionConfig.md)
|
|
@@ -645,6 +677,7 @@ Class | Method | HTTP request | Description
|
|
|
645
677
|
- [DataTypesLanguagesResponseWrapper](docs/DataTypesLanguagesResponseWrapper.md)
|
|
646
678
|
- [DataTypesLimit](docs/DataTypesLimit.md)
|
|
647
679
|
- [DataTypesLimitResponse](docs/DataTypesLimitResponse.md)
|
|
680
|
+
- [DataTypesLimitsListResponse](docs/DataTypesLimitsListResponse.md)
|
|
648
681
|
- [DataTypesLoginAudit](docs/DataTypesLoginAudit.md)
|
|
649
682
|
- [DataTypesLoginRequest](docs/DataTypesLoginRequest.md)
|
|
650
683
|
- [DataTypesLoginResponse](docs/DataTypesLoginResponse.md)
|
|
@@ -664,8 +697,12 @@ Class | Method | HTTP request | Description
|
|
|
664
697
|
- [DataTypesNewsLetterRequest](docs/DataTypesNewsLetterRequest.md)
|
|
665
698
|
- [DataTypesNewsLetterRequestDto](docs/DataTypesNewsLetterRequestDto.md)
|
|
666
699
|
- [DataTypesNewsLetterRequestResponse](docs/DataTypesNewsLetterRequestResponse.md)
|
|
700
|
+
- [DataTypesNewsLetterRequestsListResponse](docs/DataTypesNewsLetterRequestsListResponse.md)
|
|
667
701
|
- [DataTypesNumericFieldStats](docs/DataTypesNumericFieldStats.md)
|
|
668
702
|
- [DataTypesOTPPayload](docs/DataTypesOTPPayload.md)
|
|
703
|
+
- [DataTypesOfficialSearchResponse](docs/DataTypesOfficialSearchResponse.md)
|
|
704
|
+
- [DataTypesOfficialSearchResponseWrapper](docs/DataTypesOfficialSearchResponseWrapper.md)
|
|
705
|
+
- [DataTypesOfficialSearchResult](docs/DataTypesOfficialSearchResult.md)
|
|
669
706
|
- [DataTypesOnboardingOrgDetails](docs/DataTypesOnboardingOrgDetails.md)
|
|
670
707
|
- [DataTypesOnboardingRequest](docs/DataTypesOnboardingRequest.md)
|
|
671
708
|
- [DataTypesOnboardingResponse](docs/DataTypesOnboardingResponse.md)
|
|
@@ -683,6 +720,7 @@ Class | Method | HTTP request | Description
|
|
|
683
720
|
- [DataTypesOrganization](docs/DataTypesOrganization.md)
|
|
684
721
|
- [DataTypesOrganizationResponse](docs/DataTypesOrganizationResponse.md)
|
|
685
722
|
- [DataTypesOrganizationTaxDetails](docs/DataTypesOrganizationTaxDetails.md)
|
|
723
|
+
- [DataTypesOrganizationsListResponse](docs/DataTypesOrganizationsListResponse.md)
|
|
686
724
|
- [DataTypesOverrideActions](docs/DataTypesOverrideActions.md)
|
|
687
725
|
- [DataTypesParentMenu](docs/DataTypesParentMenu.md)
|
|
688
726
|
- [DataTypesParentMenuResponse](docs/DataTypesParentMenuResponse.md)
|
|
@@ -693,9 +731,11 @@ Class | Method | HTTP request | Description
|
|
|
693
731
|
- [DataTypesPaymentRequestDto](docs/DataTypesPaymentRequestDto.md)
|
|
694
732
|
- [DataTypesPaymentResponse](docs/DataTypesPaymentResponse.md)
|
|
695
733
|
- [DataTypesPaymentStatusPollResponse](docs/DataTypesPaymentStatusPollResponse.md)
|
|
734
|
+
- [DataTypesPaymentsListResponse](docs/DataTypesPaymentsListResponse.md)
|
|
696
735
|
- [DataTypesPlan](docs/DataTypesPlan.md)
|
|
697
736
|
- [DataTypesPlanFeatures](docs/DataTypesPlanFeatures.md)
|
|
698
737
|
- [DataTypesPlanResponse](docs/DataTypesPlanResponse.md)
|
|
738
|
+
- [DataTypesPlansListResponse](docs/DataTypesPlansListResponse.md)
|
|
699
739
|
- [DataTypesPluralDeclension](docs/DataTypesPluralDeclension.md)
|
|
700
740
|
- [DataTypesPluralDeclensionResponseWrapper](docs/DataTypesPluralDeclensionResponseWrapper.md)
|
|
701
741
|
- [DataTypesPluralDeclensionsResponse](docs/DataTypesPluralDeclensionsResponse.md)
|
|
@@ -703,6 +743,7 @@ Class | Method | HTTP request | Description
|
|
|
703
743
|
- [DataTypesProcessRefundRequestDto](docs/DataTypesProcessRefundRequestDto.md)
|
|
704
744
|
- [DataTypesProfileResponse](docs/DataTypesProfileResponse.md)
|
|
705
745
|
- [DataTypesProfileResponseWrapper](docs/DataTypesProfileResponseWrapper.md)
|
|
746
|
+
- [DataTypesPublicSearchRequest](docs/DataTypesPublicSearchRequest.md)
|
|
706
747
|
- [DataTypesPurchaseCreditsRequest](docs/DataTypesPurchaseCreditsRequest.md)
|
|
707
748
|
- [DataTypesQuerySuggestionsConfig](docs/DataTypesQuerySuggestionsConfig.md)
|
|
708
749
|
- [DataTypesReceipt](docs/DataTypesReceipt.md)
|
|
@@ -722,6 +763,7 @@ Class | Method | HTTP request | Description
|
|
|
722
763
|
- [DataTypesRoleRightRequestDto](docs/DataTypesRoleRightRequestDto.md)
|
|
723
764
|
- [DataTypesRoleRightResponse](docs/DataTypesRoleRightResponse.md)
|
|
724
765
|
- [DataTypesRoleRightsListResponse](docs/DataTypesRoleRightsListResponse.md)
|
|
766
|
+
- [DataTypesRolesListResponse](docs/DataTypesRolesListResponse.md)
|
|
725
767
|
- [DataTypesRuleConfig](docs/DataTypesRuleConfig.md)
|
|
726
768
|
- [DataTypesSampleDatasetResponse](docs/DataTypesSampleDatasetResponse.md)
|
|
727
769
|
- [DataTypesSampleDatasetsResponseWrapper](docs/DataTypesSampleDatasetsResponseWrapper.md)
|
|
@@ -737,6 +779,7 @@ Class | Method | HTTP request | Description
|
|
|
737
779
|
- [DataTypesServiceRequest](docs/DataTypesServiceRequest.md)
|
|
738
780
|
- [DataTypesServiceRequestDto](docs/DataTypesServiceRequestDto.md)
|
|
739
781
|
- [DataTypesServiceRequestResponse](docs/DataTypesServiceRequestResponse.md)
|
|
782
|
+
- [DataTypesServiceRequestsListResponse](docs/DataTypesServiceRequestsListResponse.md)
|
|
740
783
|
- [DataTypesSetPasswordRequest](docs/DataTypesSetPasswordRequest.md)
|
|
741
784
|
- [DataTypesSortField](docs/DataTypesSortField.md)
|
|
742
785
|
- [DataTypesSource](docs/DataTypesSource.md)
|
|
@@ -759,6 +802,7 @@ Class | Method | HTTP request | Description
|
|
|
759
802
|
- [DataTypesSubMenuAccess](docs/DataTypesSubMenuAccess.md)
|
|
760
803
|
- [DataTypesSubscription](docs/DataTypesSubscription.md)
|
|
761
804
|
- [DataTypesSubscriptionResponse](docs/DataTypesSubscriptionResponse.md)
|
|
805
|
+
- [DataTypesSubscriptionsListResponse](docs/DataTypesSubscriptionsListResponse.md)
|
|
762
806
|
- [DataTypesSynonymEntry](docs/DataTypesSynonymEntry.md)
|
|
763
807
|
- [DataTypesTask](docs/DataTypesTask.md)
|
|
764
808
|
- [DataTypesTaskRun](docs/DataTypesTaskRun.md)
|