@seekora-ai/admin-api 1.1.43 → 1.1.45
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 +6 -2
- package/api.ts +250 -15
- package/dist/api.d.ts +166 -12
- package/dist/api.js +162 -15
- package/dist/esm/api.d.ts +166 -12
- package/dist/esm/api.js +162 -15
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.1.45.tgz +0 -0
- package/seekora-ai-admin-api-1.1.43.tgz +0 -0
package/dist/esm/api.d.ts
CHANGED
|
@@ -5958,6 +5958,37 @@ export interface DataTypesAPICallsListResponse {
|
|
|
5958
5958
|
*/
|
|
5959
5959
|
'status'?: number;
|
|
5960
5960
|
}
|
|
5961
|
+
/**
|
|
5962
|
+
*
|
|
5963
|
+
* @export
|
|
5964
|
+
* @interface DataTypesAcceptInvitationWithPasswordRequest
|
|
5965
|
+
*/
|
|
5966
|
+
export interface DataTypesAcceptInvitationWithPasswordRequest {
|
|
5967
|
+
/**
|
|
5968
|
+
*
|
|
5969
|
+
* @type {string}
|
|
5970
|
+
* @memberof DataTypesAcceptInvitationWithPasswordRequest
|
|
5971
|
+
*/
|
|
5972
|
+
'first_name': string;
|
|
5973
|
+
/**
|
|
5974
|
+
*
|
|
5975
|
+
* @type {string}
|
|
5976
|
+
* @memberof DataTypesAcceptInvitationWithPasswordRequest
|
|
5977
|
+
*/
|
|
5978
|
+
'last_name': string;
|
|
5979
|
+
/**
|
|
5980
|
+
*
|
|
5981
|
+
* @type {string}
|
|
5982
|
+
* @memberof DataTypesAcceptInvitationWithPasswordRequest
|
|
5983
|
+
*/
|
|
5984
|
+
'password': string;
|
|
5985
|
+
/**
|
|
5986
|
+
*
|
|
5987
|
+
* @type {string}
|
|
5988
|
+
* @memberof DataTypesAcceptInvitationWithPasswordRequest
|
|
5989
|
+
*/
|
|
5990
|
+
'token': string;
|
|
5991
|
+
}
|
|
5961
5992
|
/**
|
|
5962
5993
|
*
|
|
5963
5994
|
* @export
|
|
@@ -6735,6 +6766,12 @@ export interface DataTypesCombinedSearchResponse {
|
|
|
6735
6766
|
* @memberof DataTypesCombinedSearchResponse
|
|
6736
6767
|
*/
|
|
6737
6768
|
'results'?: Array<DataTypesCombinedSearchResult>;
|
|
6769
|
+
/**
|
|
6770
|
+
* Unique search identifier for analytics linking
|
|
6771
|
+
* @type {string}
|
|
6772
|
+
* @memberof DataTypesCombinedSearchResponse
|
|
6773
|
+
*/
|
|
6774
|
+
'search_id'?: string;
|
|
6738
6775
|
/**
|
|
6739
6776
|
*
|
|
6740
6777
|
* @type {Array<DataTypesAutocompleteSuggestion>}
|
|
@@ -9383,6 +9420,12 @@ export interface DataTypesEventPayload {
|
|
|
9383
9420
|
* @memberof DataTypesEventPayload
|
|
9384
9421
|
*/
|
|
9385
9422
|
'clicked_item_id'?: string;
|
|
9423
|
+
/**
|
|
9424
|
+
* Primary journey key across search → clicks → conversions
|
|
9425
|
+
* @type {string}
|
|
9426
|
+
* @memberof DataTypesEventPayload
|
|
9427
|
+
*/
|
|
9428
|
+
'correlation_id'?: string;
|
|
9386
9429
|
/**
|
|
9387
9430
|
* Enhanced Geo data fields for direct submission
|
|
9388
9431
|
* @type {string}
|
|
@@ -9475,6 +9518,12 @@ export interface DataTypesEventPayload {
|
|
|
9475
9518
|
* @memberof DataTypesEventPayload
|
|
9476
9519
|
*/
|
|
9477
9520
|
'results_count'?: number;
|
|
9521
|
+
/**
|
|
9522
|
+
* Optional search-scoped identifier (mirrors correlation_id when you have a natural search key)
|
|
9523
|
+
* @type {string}
|
|
9524
|
+
* @memberof DataTypesEventPayload
|
|
9525
|
+
*/
|
|
9526
|
+
'search_id'?: string;
|
|
9478
9527
|
/**
|
|
9479
9528
|
* Session identifier for journey tracking
|
|
9480
9529
|
* @type {string}
|
|
@@ -11527,6 +11576,31 @@ export interface DataTypesInvitationCreatedResponse {
|
|
|
11527
11576
|
*/
|
|
11528
11577
|
'status'?: number;
|
|
11529
11578
|
}
|
|
11579
|
+
/**
|
|
11580
|
+
*
|
|
11581
|
+
* @export
|
|
11582
|
+
* @interface DataTypesInvitationDetailsResponse
|
|
11583
|
+
*/
|
|
11584
|
+
export interface DataTypesInvitationDetailsResponse {
|
|
11585
|
+
/**
|
|
11586
|
+
*
|
|
11587
|
+
* @type {DataTypesTeamInvitationWithDetails}
|
|
11588
|
+
* @memberof DataTypesInvitationDetailsResponse
|
|
11589
|
+
*/
|
|
11590
|
+
'data'?: DataTypesTeamInvitationWithDetails;
|
|
11591
|
+
/**
|
|
11592
|
+
*
|
|
11593
|
+
* @type {string}
|
|
11594
|
+
* @memberof DataTypesInvitationDetailsResponse
|
|
11595
|
+
*/
|
|
11596
|
+
'message'?: string;
|
|
11597
|
+
/**
|
|
11598
|
+
*
|
|
11599
|
+
* @type {number}
|
|
11600
|
+
* @memberof DataTypesInvitationDetailsResponse
|
|
11601
|
+
*/
|
|
11602
|
+
'status'?: number;
|
|
11603
|
+
}
|
|
11530
11604
|
/**
|
|
11531
11605
|
*
|
|
11532
11606
|
* @export
|
|
@@ -14514,6 +14588,12 @@ export interface DataTypesOfficialSearchResponse {
|
|
|
14514
14588
|
* @memberof DataTypesOfficialSearchResponse
|
|
14515
14589
|
*/
|
|
14516
14590
|
'results'?: Array<DataTypesOfficialSearchResult>;
|
|
14591
|
+
/**
|
|
14592
|
+
* Unique search identifier for analytics linking
|
|
14593
|
+
* @type {string}
|
|
14594
|
+
* @memberof DataTypesOfficialSearchResponse
|
|
14595
|
+
*/
|
|
14596
|
+
'search_id'?: string;
|
|
14517
14597
|
/**
|
|
14518
14598
|
*
|
|
14519
14599
|
* @type {Array<DataTypesAutocompleteSuggestion>}
|
|
@@ -26381,7 +26461,7 @@ export declare class AccountSettingsApi extends BaseAPI {
|
|
|
26381
26461
|
*/
|
|
26382
26462
|
export declare const ActivityLogsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
26383
26463
|
/**
|
|
26384
|
-
* Retrieve user activity logs from ClickHouse
|
|
26464
|
+
* Retrieve user activity logs from ClickHouse fact_events table with full filtering, search, and pagination.
|
|
26385
26465
|
* @summary Get Activity Logs
|
|
26386
26466
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
26387
26467
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
@@ -26401,7 +26481,7 @@ export declare const ActivityLogsApiAxiosParamCreator: (configuration?: Configur
|
|
|
26401
26481
|
*/
|
|
26402
26482
|
export declare const ActivityLogsApiFp: (configuration?: Configuration) => {
|
|
26403
26483
|
/**
|
|
26404
|
-
* Retrieve user activity logs from ClickHouse
|
|
26484
|
+
* Retrieve user activity logs from ClickHouse fact_events table with full filtering, search, and pagination.
|
|
26405
26485
|
* @summary Get Activity Logs
|
|
26406
26486
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
26407
26487
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
@@ -26421,7 +26501,7 @@ export declare const ActivityLogsApiFp: (configuration?: Configuration) => {
|
|
|
26421
26501
|
*/
|
|
26422
26502
|
export declare const ActivityLogsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
26423
26503
|
/**
|
|
26424
|
-
* Retrieve user activity logs from ClickHouse
|
|
26504
|
+
* Retrieve user activity logs from ClickHouse fact_events table with full filtering, search, and pagination.
|
|
26425
26505
|
* @summary Get Activity Logs
|
|
26426
26506
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
26427
26507
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
@@ -26443,7 +26523,7 @@ export declare const ActivityLogsApiFactory: (configuration?: Configuration, bas
|
|
|
26443
26523
|
*/
|
|
26444
26524
|
export declare class ActivityLogsApi extends BaseAPI {
|
|
26445
26525
|
/**
|
|
26446
|
-
* Retrieve user activity logs from ClickHouse
|
|
26526
|
+
* Retrieve user activity logs from ClickHouse fact_events table with full filtering, search, and pagination.
|
|
26447
26527
|
* @summary Get Activity Logs
|
|
26448
26528
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
26449
26529
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
@@ -27483,10 +27563,11 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
27483
27563
|
* @param {number} [geoPageSize] Number of geo locations per page
|
|
27484
27564
|
* @param {string} [geoSearch] Search term to filter geo analytics (case-insensitive partial match on country/region/city)
|
|
27485
27565
|
* @param {boolean} [includeWidget] Whether to include widget display fields for popular results
|
|
27566
|
+
* @param {boolean} [noClicksOnly] Filter to show insights only for searches that had no clicks (useful when clicking on queries from \'searches without clicks\' list)
|
|
27486
27567
|
* @param {*} [options] Override http request option.
|
|
27487
27568
|
* @throws {RequiredError}
|
|
27488
27569
|
*/
|
|
27489
|
-
adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet: (xStoreID: string, query: string, startTime?: string, endTime?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, search?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, resultsPage?: number, resultsPageSize?: number, resultsSearch?: string, filtersPage?: number, filtersPageSize?: number, filtersSearch?: string, geoPage?: number, geoPageSize?: number, geoSearch?: string, includeWidget?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27570
|
+
adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet: (xStoreID: string, query: string, startTime?: string, endTime?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, search?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, resultsPage?: number, resultsPageSize?: number, resultsSearch?: string, filtersPage?: number, filtersPageSize?: number, filtersSearch?: string, geoPage?: number, geoPageSize?: number, geoSearch?: string, includeWidget?: boolean, noClicksOnly?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27490
27571
|
/**
|
|
27491
27572
|
* Retrieve analytics for top performing search results with optional enrichment. By default returns widget display fields for UI presentation. Use include_documents=true for full document data (heavier response). Supports lightweight widget-only mode for dashboards with analytics tags filtering and comparison mode support.
|
|
27492
27573
|
* @summary Get Top Results Analytics
|
|
@@ -27561,7 +27642,7 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
27561
27642
|
*/
|
|
27562
27643
|
adminAnalyticsStoreXStoreIDTagsSummaryGet: (xStoreID: string, startTime?: string, endTime?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDTagsSummaryGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDTagsSummaryGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27563
27644
|
/**
|
|
27564
|
-
* Retrieve API usage logs from ClickHouse
|
|
27645
|
+
* Retrieve API usage logs from ClickHouse fact_events table with filtering and pagination
|
|
27565
27646
|
* @summary Get API Usage Logs
|
|
27566
27647
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
27567
27648
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
@@ -27931,10 +28012,11 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
|
|
|
27931
28012
|
* @param {number} [geoPageSize] Number of geo locations per page
|
|
27932
28013
|
* @param {string} [geoSearch] Search term to filter geo analytics (case-insensitive partial match on country/region/city)
|
|
27933
28014
|
* @param {boolean} [includeWidget] Whether to include widget display fields for popular results
|
|
28015
|
+
* @param {boolean} [noClicksOnly] Filter to show insights only for searches that had no clicks (useful when clicking on queries from \'searches without clicks\' list)
|
|
27934
28016
|
* @param {*} [options] Override http request option.
|
|
27935
28017
|
* @throws {RequiredError}
|
|
27936
28018
|
*/
|
|
27937
|
-
adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID: string, query: string, startTime?: string, endTime?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, search?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, resultsPage?: number, resultsPageSize?: number, resultsSearch?: string, filtersPage?: number, filtersPageSize?: number, filtersSearch?: string, geoPage?: number, geoPageSize?: number, geoSearch?: string, includeWidget?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGet200Response>>;
|
|
28019
|
+
adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID: string, query: string, startTime?: string, endTime?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, search?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, resultsPage?: number, resultsPageSize?: number, resultsSearch?: string, filtersPage?: number, filtersPageSize?: number, filtersSearch?: string, geoPage?: number, geoPageSize?: number, geoSearch?: string, includeWidget?: boolean, noClicksOnly?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGet200Response>>;
|
|
27938
28020
|
/**
|
|
27939
28021
|
* Retrieve analytics for top performing search results with optional enrichment. By default returns widget display fields for UI presentation. Use include_documents=true for full document data (heavier response). Supports lightweight widget-only mode for dashboards with analytics tags filtering and comparison mode support.
|
|
27940
28022
|
* @summary Get Top Results Analytics
|
|
@@ -28009,7 +28091,7 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
|
|
|
28009
28091
|
*/
|
|
28010
28092
|
adminAnalyticsStoreXStoreIDTagsSummaryGet(xStoreID: string, startTime?: string, endTime?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDTagsSummaryGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDTagsSummaryGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AnalyticsAnalyticsAPIResponse>>;
|
|
28011
28093
|
/**
|
|
28012
|
-
* Retrieve API usage logs from ClickHouse
|
|
28094
|
+
* Retrieve API usage logs from ClickHouse fact_events table with filtering and pagination
|
|
28013
28095
|
* @summary Get API Usage Logs
|
|
28014
28096
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
28015
28097
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
@@ -28379,10 +28461,11 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
|
|
|
28379
28461
|
* @param {number} [geoPageSize] Number of geo locations per page
|
|
28380
28462
|
* @param {string} [geoSearch] Search term to filter geo analytics (case-insensitive partial match on country/region/city)
|
|
28381
28463
|
* @param {boolean} [includeWidget] Whether to include widget display fields for popular results
|
|
28464
|
+
* @param {boolean} [noClicksOnly] Filter to show insights only for searches that had no clicks (useful when clicking on queries from \'searches without clicks\' list)
|
|
28382
28465
|
* @param {*} [options] Override http request option.
|
|
28383
28466
|
* @throws {RequiredError}
|
|
28384
28467
|
*/
|
|
28385
|
-
adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID: string, query: string, startTime?: string, endTime?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, search?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, resultsPage?: number, resultsPageSize?: number, resultsSearch?: string, filtersPage?: number, filtersPageSize?: number, filtersSearch?: string, geoPage?: number, geoPageSize?: number, geoSearch?: string, includeWidget?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGet200Response>;
|
|
28468
|
+
adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID: string, query: string, startTime?: string, endTime?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, search?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, resultsPage?: number, resultsPageSize?: number, resultsSearch?: string, filtersPage?: number, filtersPageSize?: number, filtersSearch?: string, geoPage?: number, geoPageSize?: number, geoSearch?: string, includeWidget?: boolean, noClicksOnly?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGet200Response>;
|
|
28386
28469
|
/**
|
|
28387
28470
|
* Retrieve analytics for top performing search results with optional enrichment. By default returns widget display fields for UI presentation. Use include_documents=true for full document data (heavier response). Supports lightweight widget-only mode for dashboards with analytics tags filtering and comparison mode support.
|
|
28388
28471
|
* @summary Get Top Results Analytics
|
|
@@ -28457,7 +28540,7 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
|
|
|
28457
28540
|
*/
|
|
28458
28541
|
adminAnalyticsStoreXStoreIDTagsSummaryGet(xStoreID: string, startTime?: string, endTime?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDTagsSummaryGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDTagsSummaryGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): AxiosPromise<AnalyticsAnalyticsAPIResponse>;
|
|
28459
28542
|
/**
|
|
28460
|
-
* Retrieve API usage logs from ClickHouse
|
|
28543
|
+
* Retrieve API usage logs from ClickHouse fact_events table with filtering and pagination
|
|
28461
28544
|
* @summary Get API Usage Logs
|
|
28462
28545
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
28463
28546
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
@@ -28843,11 +28926,12 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
28843
28926
|
* @param {number} [geoPageSize] Number of geo locations per page
|
|
28844
28927
|
* @param {string} [geoSearch] Search term to filter geo analytics (case-insensitive partial match on country/region/city)
|
|
28845
28928
|
* @param {boolean} [includeWidget] Whether to include widget display fields for popular results
|
|
28929
|
+
* @param {boolean} [noClicksOnly] Filter to show insights only for searches that had no clicks (useful when clicking on queries from \'searches without clicks\' list)
|
|
28846
28930
|
* @param {*} [options] Override http request option.
|
|
28847
28931
|
* @throws {RequiredError}
|
|
28848
28932
|
* @memberof AnalyticsApi
|
|
28849
28933
|
*/
|
|
28850
|
-
adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID: string, query: string, startTime?: string, endTime?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, search?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, resultsPage?: number, resultsPageSize?: number, resultsSearch?: string, filtersPage?: number, filtersPageSize?: number, filtersSearch?: string, geoPage?: number, geoPageSize?: number, geoSearch?: string, includeWidget?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGet200Response, any, {}>>;
|
|
28934
|
+
adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID: string, query: string, startTime?: string, endTime?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, search?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, resultsPage?: number, resultsPageSize?: number, resultsSearch?: string, filtersPage?: number, filtersPageSize?: number, filtersSearch?: string, geoPage?: number, geoPageSize?: number, geoSearch?: string, includeWidget?: boolean, noClicksOnly?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGet200Response, any, {}>>;
|
|
28851
28935
|
/**
|
|
28852
28936
|
* Retrieve analytics for top performing search results with optional enrichment. By default returns widget display fields for UI presentation. Use include_documents=true for full document data (heavier response). Supports lightweight widget-only mode for dashboards with analytics tags filtering and comparison mode support.
|
|
28853
28937
|
* @summary Get Top Results Analytics
|
|
@@ -28925,7 +29009,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
28925
29009
|
*/
|
|
28926
29010
|
adminAnalyticsStoreXStoreIDTagsSummaryGet(xStoreID: string, startTime?: string, endTime?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDTagsSummaryGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDTagsSummaryGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AnalyticsAnalyticsAPIResponse, any, {}>>;
|
|
28927
29011
|
/**
|
|
28928
|
-
* Retrieve API usage logs from ClickHouse
|
|
29012
|
+
* Retrieve API usage logs from ClickHouse fact_events table with filtering and pagination
|
|
28929
29013
|
* @summary Get API Usage Logs
|
|
28930
29014
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
28931
29015
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
@@ -44399,6 +44483,23 @@ export declare const TeamApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
44399
44483
|
* @throws {RequiredError}
|
|
44400
44484
|
*/
|
|
44401
44485
|
v1InvitationsTokenAcceptPost: (token: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
44486
|
+
/**
|
|
44487
|
+
* Accepts a team invitation, creates user account if needed, sets password, and returns session token
|
|
44488
|
+
* @summary Accept invitation and set password (onboarding)
|
|
44489
|
+
* @param {string} token Invitation Token
|
|
44490
|
+
* @param {DataTypesAcceptInvitationWithPasswordRequest} dataTypesAcceptInvitationWithPasswordRequest Password and user details
|
|
44491
|
+
* @param {*} [options] Override http request option.
|
|
44492
|
+
* @throws {RequiredError}
|
|
44493
|
+
*/
|
|
44494
|
+
v1InvitationsTokenAcceptWithPasswordPost: (token: string, dataTypesAcceptInvitationWithPasswordRequest: DataTypesAcceptInvitationWithPasswordRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
44495
|
+
/**
|
|
44496
|
+
* Retrieves invitation details by token (public endpoint for onboarding)
|
|
44497
|
+
* @summary Get invitation details by token
|
|
44498
|
+
* @param {string} token Invitation Token
|
|
44499
|
+
* @param {*} [options] Override http request option.
|
|
44500
|
+
* @throws {RequiredError}
|
|
44501
|
+
*/
|
|
44502
|
+
v1InvitationsTokenGet: (token: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
44402
44503
|
/**
|
|
44403
44504
|
* Retrieves all users with access to a store
|
|
44404
44505
|
* @summary Get store access list
|
|
@@ -44504,6 +44605,23 @@ export declare const TeamApiFp: (configuration?: Configuration) => {
|
|
|
44504
44605
|
* @throws {RequiredError}
|
|
44505
44606
|
*/
|
|
44506
44607
|
v1InvitationsTokenAcceptPost(token: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
44608
|
+
/**
|
|
44609
|
+
* Accepts a team invitation, creates user account if needed, sets password, and returns session token
|
|
44610
|
+
* @summary Accept invitation and set password (onboarding)
|
|
44611
|
+
* @param {string} token Invitation Token
|
|
44612
|
+
* @param {DataTypesAcceptInvitationWithPasswordRequest} dataTypesAcceptInvitationWithPasswordRequest Password and user details
|
|
44613
|
+
* @param {*} [options] Override http request option.
|
|
44614
|
+
* @throws {RequiredError}
|
|
44615
|
+
*/
|
|
44616
|
+
v1InvitationsTokenAcceptWithPasswordPost(token: string, dataTypesAcceptInvitationWithPasswordRequest: DataTypesAcceptInvitationWithPasswordRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesLoginResponseWrapper>>;
|
|
44617
|
+
/**
|
|
44618
|
+
* Retrieves invitation details by token (public endpoint for onboarding)
|
|
44619
|
+
* @summary Get invitation details by token
|
|
44620
|
+
* @param {string} token Invitation Token
|
|
44621
|
+
* @param {*} [options] Override http request option.
|
|
44622
|
+
* @throws {RequiredError}
|
|
44623
|
+
*/
|
|
44624
|
+
v1InvitationsTokenGet(token: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesInvitationDetailsResponse>>;
|
|
44507
44625
|
/**
|
|
44508
44626
|
* Retrieves all users with access to a store
|
|
44509
44627
|
* @summary Get store access list
|
|
@@ -44609,6 +44727,23 @@ export declare const TeamApiFactory: (configuration?: Configuration, basePath?:
|
|
|
44609
44727
|
* @throws {RequiredError}
|
|
44610
44728
|
*/
|
|
44611
44729
|
v1InvitationsTokenAcceptPost(token: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
44730
|
+
/**
|
|
44731
|
+
* Accepts a team invitation, creates user account if needed, sets password, and returns session token
|
|
44732
|
+
* @summary Accept invitation and set password (onboarding)
|
|
44733
|
+
* @param {string} token Invitation Token
|
|
44734
|
+
* @param {DataTypesAcceptInvitationWithPasswordRequest} dataTypesAcceptInvitationWithPasswordRequest Password and user details
|
|
44735
|
+
* @param {*} [options] Override http request option.
|
|
44736
|
+
* @throws {RequiredError}
|
|
44737
|
+
*/
|
|
44738
|
+
v1InvitationsTokenAcceptWithPasswordPost(token: string, dataTypesAcceptInvitationWithPasswordRequest: DataTypesAcceptInvitationWithPasswordRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesLoginResponseWrapper>;
|
|
44739
|
+
/**
|
|
44740
|
+
* Retrieves invitation details by token (public endpoint for onboarding)
|
|
44741
|
+
* @summary Get invitation details by token
|
|
44742
|
+
* @param {string} token Invitation Token
|
|
44743
|
+
* @param {*} [options] Override http request option.
|
|
44744
|
+
* @throws {RequiredError}
|
|
44745
|
+
*/
|
|
44746
|
+
v1InvitationsTokenGet(token: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesInvitationDetailsResponse>;
|
|
44612
44747
|
/**
|
|
44613
44748
|
* Retrieves all users with access to a store
|
|
44614
44749
|
* @summary Get store access list
|
|
@@ -44718,6 +44853,25 @@ export declare class TeamApi extends BaseAPI {
|
|
|
44718
44853
|
* @memberof TeamApi
|
|
44719
44854
|
*/
|
|
44720
44855
|
v1InvitationsTokenAcceptPost(token: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
44856
|
+
/**
|
|
44857
|
+
* Accepts a team invitation, creates user account if needed, sets password, and returns session token
|
|
44858
|
+
* @summary Accept invitation and set password (onboarding)
|
|
44859
|
+
* @param {string} token Invitation Token
|
|
44860
|
+
* @param {DataTypesAcceptInvitationWithPasswordRequest} dataTypesAcceptInvitationWithPasswordRequest Password and user details
|
|
44861
|
+
* @param {*} [options] Override http request option.
|
|
44862
|
+
* @throws {RequiredError}
|
|
44863
|
+
* @memberof TeamApi
|
|
44864
|
+
*/
|
|
44865
|
+
v1InvitationsTokenAcceptWithPasswordPost(token: string, dataTypesAcceptInvitationWithPasswordRequest: DataTypesAcceptInvitationWithPasswordRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesLoginResponseWrapper, any, {}>>;
|
|
44866
|
+
/**
|
|
44867
|
+
* Retrieves invitation details by token (public endpoint for onboarding)
|
|
44868
|
+
* @summary Get invitation details by token
|
|
44869
|
+
* @param {string} token Invitation Token
|
|
44870
|
+
* @param {*} [options] Override http request option.
|
|
44871
|
+
* @throws {RequiredError}
|
|
44872
|
+
* @memberof TeamApi
|
|
44873
|
+
*/
|
|
44874
|
+
v1InvitationsTokenGet(token: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesInvitationDetailsResponse, any, {}>>;
|
|
44721
44875
|
/**
|
|
44722
44876
|
* Retrieves all users with access to a store
|
|
44723
44877
|
* @summary Get store access list
|