@seekora-ai/admin-api 1.1.70 → 1.1.71
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 +391 -7
- package/dist/api.d.ts +285 -4
- package/dist/api.js +204 -15
- package/dist/esm/api.d.ts +285 -4
- package/dist/esm/api.js +196 -7
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.1.71.tgz +0 -0
- package/seekora-ai-admin-api-1.1.70.tgz +0 -0
package/dist/esm/api.d.ts
CHANGED
|
@@ -6743,6 +6743,48 @@ export interface DataTypesAPICallsListResponse {
|
|
|
6743
6743
|
*/
|
|
6744
6744
|
'status'?: number;
|
|
6745
6745
|
}
|
|
6746
|
+
/**
|
|
6747
|
+
*
|
|
6748
|
+
* @export
|
|
6749
|
+
* @interface DataTypesAcceptInvitationWithOAuthRequest
|
|
6750
|
+
*/
|
|
6751
|
+
export interface DataTypesAcceptInvitationWithOAuthRequest {
|
|
6752
|
+
/**
|
|
6753
|
+
* Optional: override from OAuth profile
|
|
6754
|
+
* @type {string}
|
|
6755
|
+
* @memberof DataTypesAcceptInvitationWithOAuthRequest
|
|
6756
|
+
*/
|
|
6757
|
+
'first_name'?: string;
|
|
6758
|
+
/**
|
|
6759
|
+
* Optional: override from OAuth profile
|
|
6760
|
+
* @type {string}
|
|
6761
|
+
* @memberof DataTypesAcceptInvitationWithOAuthRequest
|
|
6762
|
+
*/
|
|
6763
|
+
'last_name'?: string;
|
|
6764
|
+
/**
|
|
6765
|
+
* OAuth access token (GitHub) or ID token (Google)
|
|
6766
|
+
* @type {string}
|
|
6767
|
+
* @memberof DataTypesAcceptInvitationWithOAuthRequest
|
|
6768
|
+
*/
|
|
6769
|
+
'oauth_token': string;
|
|
6770
|
+
/**
|
|
6771
|
+
* Invitation token
|
|
6772
|
+
* @type {string}
|
|
6773
|
+
* @memberof DataTypesAcceptInvitationWithOAuthRequest
|
|
6774
|
+
*/
|
|
6775
|
+
'token': string;
|
|
6776
|
+
/**
|
|
6777
|
+
* OAuth provider type: \"google\" or \"github\"
|
|
6778
|
+
* @type {string}
|
|
6779
|
+
* @memberof DataTypesAcceptInvitationWithOAuthRequest
|
|
6780
|
+
*/
|
|
6781
|
+
'type': DataTypesAcceptInvitationWithOAuthRequestTypeEnum;
|
|
6782
|
+
}
|
|
6783
|
+
export declare const DataTypesAcceptInvitationWithOAuthRequestTypeEnum: {
|
|
6784
|
+
readonly Google: "google";
|
|
6785
|
+
readonly Github: "github";
|
|
6786
|
+
};
|
|
6787
|
+
export type DataTypesAcceptInvitationWithOAuthRequestTypeEnum = typeof DataTypesAcceptInvitationWithOAuthRequestTypeEnum[keyof typeof DataTypesAcceptInvitationWithOAuthRequestTypeEnum];
|
|
6746
6788
|
/**
|
|
6747
6789
|
*
|
|
6748
6790
|
* @export
|
|
@@ -10472,12 +10514,24 @@ export interface DataTypesDropdownRecommendationsConfig {
|
|
|
10472
10514
|
* @memberof DataTypesDropdownRecommendationsConfig
|
|
10473
10515
|
*/
|
|
10474
10516
|
'dynamic_tabs_priority'?: number;
|
|
10517
|
+
/**
|
|
10518
|
+
* Max suggestions for empty queries (default: uses hitsPerPage)
|
|
10519
|
+
* @type {number}
|
|
10520
|
+
* @memberof DataTypesDropdownRecommendationsConfig
|
|
10521
|
+
*/
|
|
10522
|
+
'empty_query_recommendations_limit'?: number;
|
|
10475
10523
|
/**
|
|
10476
10524
|
* Dynamic tabs configuration (auto-generated tabs based on query and facets)
|
|
10477
10525
|
* @type {boolean}
|
|
10478
10526
|
* @memberof DataTypesDropdownRecommendationsConfig
|
|
10479
10527
|
*/
|
|
10480
10528
|
'enable_dynamic_tabs'?: boolean;
|
|
10529
|
+
/**
|
|
10530
|
+
* Empty query recommendations - show meaningful suggestions when no query is entered
|
|
10531
|
+
* @type {boolean}
|
|
10532
|
+
* @memberof DataTypesDropdownRecommendationsConfig
|
|
10533
|
+
*/
|
|
10534
|
+
'enable_empty_query_recommendations'?: boolean;
|
|
10481
10535
|
/**
|
|
10482
10536
|
* Filtered tabs configuration (for tabbed product recommendations)
|
|
10483
10537
|
* @type {boolean}
|
|
@@ -15743,6 +15797,12 @@ export interface DataTypesNotificationListData {
|
|
|
15743
15797
|
* @memberof DataTypesNotificationListData
|
|
15744
15798
|
*/
|
|
15745
15799
|
'pagination'?: DataTypesNotificationPaginationInfo;
|
|
15800
|
+
/**
|
|
15801
|
+
*
|
|
15802
|
+
* @type {number}
|
|
15803
|
+
* @memberof DataTypesNotificationListData
|
|
15804
|
+
*/
|
|
15805
|
+
'unread_count'?: number;
|
|
15746
15806
|
}
|
|
15747
15807
|
/**
|
|
15748
15808
|
*
|
|
@@ -26756,6 +26816,12 @@ export interface QuerySuggestionsServiceQuerySuggestionConfig {
|
|
|
26756
26816
|
* @memberof QuerySuggestionsServiceQuerySuggestionConfig
|
|
26757
26817
|
*/
|
|
26758
26818
|
'category_counts'?: boolean;
|
|
26819
|
+
/**
|
|
26820
|
+
* Max suggestions for empty queries (default: uses HitsPerPage)
|
|
26821
|
+
* @type {number}
|
|
26822
|
+
* @memberof QuerySuggestionsServiceQuerySuggestionConfig
|
|
26823
|
+
*/
|
|
26824
|
+
'empty_query_recommendations_limit'?: number;
|
|
26759
26825
|
/**
|
|
26760
26826
|
* Whether auto query suggestions management feature is enabled (controls UI visibility)
|
|
26761
26827
|
* @type {boolean}
|
|
@@ -26768,6 +26834,12 @@ export interface QuerySuggestionsServiceQuerySuggestionConfig {
|
|
|
26768
26834
|
* @memberof QuerySuggestionsServiceQuerySuggestionConfig
|
|
26769
26835
|
*/
|
|
26770
26836
|
'enable_category_suggestions'?: boolean;
|
|
26837
|
+
/**
|
|
26838
|
+
* Empty query recommendations - show meaningful suggestions when no query is entered
|
|
26839
|
+
* @type {boolean}
|
|
26840
|
+
* @memberof QuerySuggestionsServiceQuerySuggestionConfig
|
|
26841
|
+
*/
|
|
26842
|
+
'enable_empty_query_recommendations'?: boolean;
|
|
26771
26843
|
/**
|
|
26772
26844
|
* Whether to include facet-based suggestions
|
|
26773
26845
|
* @type {boolean}
|
|
@@ -27340,6 +27412,121 @@ export interface QuerySuggestionsServiceQuerySuggestionsConfig {
|
|
|
27340
27412
|
*/
|
|
27341
27413
|
'supported_time_ranges'?: Array<string>;
|
|
27342
27414
|
}
|
|
27415
|
+
/**
|
|
27416
|
+
*
|
|
27417
|
+
* @export
|
|
27418
|
+
* @interface QuerySuggestionsServiceQuerySuggestionsRequest
|
|
27419
|
+
*/
|
|
27420
|
+
export interface QuerySuggestionsServiceQuerySuggestionsRequest {
|
|
27421
|
+
/**
|
|
27422
|
+
* Filter suggestions by analytics tags
|
|
27423
|
+
* @type {Array<string>}
|
|
27424
|
+
* @memberof QuerySuggestionsServiceQuerySuggestionsRequest
|
|
27425
|
+
*/
|
|
27426
|
+
'analytics_tags'?: Array<string>;
|
|
27427
|
+
/**
|
|
27428
|
+
* Anonymous/cookie ID for personalization
|
|
27429
|
+
* @type {string}
|
|
27430
|
+
* @memberof QuerySuggestionsServiceQuerySuggestionsRequest
|
|
27431
|
+
*/
|
|
27432
|
+
'anon_id'?: string;
|
|
27433
|
+
/**
|
|
27434
|
+
* Disable fuzzy matching
|
|
27435
|
+
* @type {boolean}
|
|
27436
|
+
* @memberof QuerySuggestionsServiceQuerySuggestionsRequest
|
|
27437
|
+
*/
|
|
27438
|
+
'disable_typo_tolerance'?: boolean;
|
|
27439
|
+
/**
|
|
27440
|
+
* Filtered tabs (optional, overrides config if provided)
|
|
27441
|
+
* @type {Array<DataTypesFilteredTabConfig>}
|
|
27442
|
+
* @memberof QuerySuggestionsServiceQuerySuggestionsRequest
|
|
27443
|
+
*/
|
|
27444
|
+
'filtered_tabs'?: Array<DataTypesFilteredTabConfig>;
|
|
27445
|
+
/**
|
|
27446
|
+
* Number of suggestions to return (default: 5)
|
|
27447
|
+
* @type {number}
|
|
27448
|
+
* @memberof QuerySuggestionsServiceQuerySuggestionsRequest
|
|
27449
|
+
*/
|
|
27450
|
+
'hitsPerPage'?: number;
|
|
27451
|
+
/**
|
|
27452
|
+
* Include category information
|
|
27453
|
+
* @type {boolean}
|
|
27454
|
+
* @memberof QuerySuggestionsServiceQuerySuggestionsRequest
|
|
27455
|
+
*/
|
|
27456
|
+
'include_categories'?: boolean;
|
|
27457
|
+
/**
|
|
27458
|
+
* Rich dropdown recommendations (optional, data-agnostic)
|
|
27459
|
+
* @type {boolean}
|
|
27460
|
+
* @memberof QuerySuggestionsServiceQuerySuggestionsRequest
|
|
27461
|
+
*/
|
|
27462
|
+
'include_dropdown_recommendations'?: boolean;
|
|
27463
|
+
/**
|
|
27464
|
+
* Empty query recommendations - show meaningful suggestions when no query is entered When true and query is empty, returns popular/trending suggestions instead of an empty array
|
|
27465
|
+
* @type {boolean}
|
|
27466
|
+
* @memberof QuerySuggestionsServiceQuerySuggestionsRequest
|
|
27467
|
+
*/
|
|
27468
|
+
'include_empty_query_recommendations'?: boolean;
|
|
27469
|
+
/**
|
|
27470
|
+
* Include facet information
|
|
27471
|
+
* @type {boolean}
|
|
27472
|
+
* @memberof QuerySuggestionsServiceQuerySuggestionsRequest
|
|
27473
|
+
*/
|
|
27474
|
+
'include_facets'?: boolean;
|
|
27475
|
+
/**
|
|
27476
|
+
* Max categories per suggestion (default: 3)
|
|
27477
|
+
* @type {number}
|
|
27478
|
+
* @memberof QuerySuggestionsServiceQuerySuggestionsRequest
|
|
27479
|
+
*/
|
|
27480
|
+
'max_categories'?: number;
|
|
27481
|
+
/**
|
|
27482
|
+
* Max facets per suggestion (default: 5)
|
|
27483
|
+
* @type {number}
|
|
27484
|
+
* @memberof QuerySuggestionsServiceQuerySuggestionsRequest
|
|
27485
|
+
*/
|
|
27486
|
+
'max_facets'?: number;
|
|
27487
|
+
/**
|
|
27488
|
+
* Minimum popularity threshold
|
|
27489
|
+
* @type {number}
|
|
27490
|
+
* @memberof QuerySuggestionsServiceQuerySuggestionsRequest
|
|
27491
|
+
*/
|
|
27492
|
+
'min_popularity'?: number;
|
|
27493
|
+
/**
|
|
27494
|
+
* Page number for pagination (default: 0)
|
|
27495
|
+
* @type {number}
|
|
27496
|
+
* @memberof QuerySuggestionsServiceQuerySuggestionsRequest
|
|
27497
|
+
*/
|
|
27498
|
+
'page'?: number;
|
|
27499
|
+
/**
|
|
27500
|
+
* Partial query to get suggestions for
|
|
27501
|
+
* @type {string}
|
|
27502
|
+
* @memberof QuerySuggestionsServiceQuerySuggestionsRequest
|
|
27503
|
+
*/
|
|
27504
|
+
'query'?: string;
|
|
27505
|
+
/**
|
|
27506
|
+
* Session ID for session-based personalization
|
|
27507
|
+
* @type {string}
|
|
27508
|
+
* @memberof QuerySuggestionsServiceQuerySuggestionsRequest
|
|
27509
|
+
*/
|
|
27510
|
+
'session_id'?: string;
|
|
27511
|
+
/**
|
|
27512
|
+
* \"any\" or \"all\" for analytics tags
|
|
27513
|
+
* @type {string}
|
|
27514
|
+
* @memberof QuerySuggestionsServiceQuerySuggestionsRequest
|
|
27515
|
+
*/
|
|
27516
|
+
'tags_match_mode'?: string;
|
|
27517
|
+
/**
|
|
27518
|
+
* \"7d\", \"30d\", \"90d\" (default: \"30d\")
|
|
27519
|
+
* @type {string}
|
|
27520
|
+
* @memberof QuerySuggestionsServiceQuerySuggestionsRequest
|
|
27521
|
+
*/
|
|
27522
|
+
'time_range'?: string;
|
|
27523
|
+
/**
|
|
27524
|
+
* Personalization fields (optional, backward compatible)
|
|
27525
|
+
* @type {string}
|
|
27526
|
+
* @memberof QuerySuggestionsServiceQuerySuggestionsRequest
|
|
27527
|
+
*/
|
|
27528
|
+
'user_id'?: string;
|
|
27529
|
+
}
|
|
27343
27530
|
/**
|
|
27344
27531
|
*
|
|
27345
27532
|
* @export
|
|
@@ -40392,10 +40579,11 @@ export declare const NotificationsApiAxiosParamCreator: (configuration?: Configu
|
|
|
40392
40579
|
* @param {V1NotificationsGetPriorityEnum} [priority] Filter by priority
|
|
40393
40580
|
* @param {V1NotificationsGetSortByEnum} [sortBy] Sort field
|
|
40394
40581
|
* @param {V1NotificationsGetSortOrderEnum} [sortOrder] Sort order (case-insensitive)
|
|
40582
|
+
* @param {string} [since] ISO8601 timestamp - return only notifications created at or after this time (e.g. 2025-01-30T10:00:00Z)
|
|
40395
40583
|
* @param {*} [options] Override http request option.
|
|
40396
40584
|
* @throws {RequiredError}
|
|
40397
40585
|
*/
|
|
40398
|
-
v1NotificationsGet: (page?: number, pageSize?: number, limit?: number, offset?: number, search?: string, type?: V1NotificationsGetTypeEnum, isRead?: V1NotificationsGetIsReadEnum, priority?: V1NotificationsGetPriorityEnum, sortBy?: V1NotificationsGetSortByEnum, sortOrder?: V1NotificationsGetSortOrderEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
40586
|
+
v1NotificationsGet: (page?: number, pageSize?: number, limit?: number, offset?: number, search?: string, type?: V1NotificationsGetTypeEnum, isRead?: V1NotificationsGetIsReadEnum, priority?: V1NotificationsGetPriorityEnum, sortBy?: V1NotificationsGetSortByEnum, sortOrder?: V1NotificationsGetSortOrderEnum, since?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
40399
40587
|
/**
|
|
40400
40588
|
* Generates a fresh presigned URL for notification attachments (invoice or receipt). This is useful when the original presigned URL has expired.
|
|
40401
40589
|
* @summary Get notification attachment URL
|
|
@@ -40470,10 +40658,11 @@ export declare const NotificationsApiFp: (configuration?: Configuration) => {
|
|
|
40470
40658
|
* @param {V1NotificationsGetPriorityEnum} [priority] Filter by priority
|
|
40471
40659
|
* @param {V1NotificationsGetSortByEnum} [sortBy] Sort field
|
|
40472
40660
|
* @param {V1NotificationsGetSortOrderEnum} [sortOrder] Sort order (case-insensitive)
|
|
40661
|
+
* @param {string} [since] ISO8601 timestamp - return only notifications created at or after this time (e.g. 2025-01-30T10:00:00Z)
|
|
40473
40662
|
* @param {*} [options] Override http request option.
|
|
40474
40663
|
* @throws {RequiredError}
|
|
40475
40664
|
*/
|
|
40476
|
-
v1NotificationsGet(page?: number, pageSize?: number, limit?: number, offset?: number, search?: string, type?: V1NotificationsGetTypeEnum, isRead?: V1NotificationsGetIsReadEnum, priority?: V1NotificationsGetPriorityEnum, sortBy?: V1NotificationsGetSortByEnum, sortOrder?: V1NotificationsGetSortOrderEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesNotificationListResponse>>;
|
|
40665
|
+
v1NotificationsGet(page?: number, pageSize?: number, limit?: number, offset?: number, search?: string, type?: V1NotificationsGetTypeEnum, isRead?: V1NotificationsGetIsReadEnum, priority?: V1NotificationsGetPriorityEnum, sortBy?: V1NotificationsGetSortByEnum, sortOrder?: V1NotificationsGetSortOrderEnum, since?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesNotificationListResponse>>;
|
|
40477
40666
|
/**
|
|
40478
40667
|
* Generates a fresh presigned URL for notification attachments (invoice or receipt). This is useful when the original presigned URL has expired.
|
|
40479
40668
|
* @summary Get notification attachment URL
|
|
@@ -40548,10 +40737,11 @@ export declare const NotificationsApiFactory: (configuration?: Configuration, ba
|
|
|
40548
40737
|
* @param {V1NotificationsGetPriorityEnum} [priority] Filter by priority
|
|
40549
40738
|
* @param {V1NotificationsGetSortByEnum} [sortBy] Sort field
|
|
40550
40739
|
* @param {V1NotificationsGetSortOrderEnum} [sortOrder] Sort order (case-insensitive)
|
|
40740
|
+
* @param {string} [since] ISO8601 timestamp - return only notifications created at or after this time (e.g. 2025-01-30T10:00:00Z)
|
|
40551
40741
|
* @param {*} [options] Override http request option.
|
|
40552
40742
|
* @throws {RequiredError}
|
|
40553
40743
|
*/
|
|
40554
|
-
v1NotificationsGet(page?: number, pageSize?: number, limit?: number, offset?: number, search?: string, type?: V1NotificationsGetTypeEnum, isRead?: V1NotificationsGetIsReadEnum, priority?: V1NotificationsGetPriorityEnum, sortBy?: V1NotificationsGetSortByEnum, sortOrder?: V1NotificationsGetSortOrderEnum, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesNotificationListResponse>;
|
|
40744
|
+
v1NotificationsGet(page?: number, pageSize?: number, limit?: number, offset?: number, search?: string, type?: V1NotificationsGetTypeEnum, isRead?: V1NotificationsGetIsReadEnum, priority?: V1NotificationsGetPriorityEnum, sortBy?: V1NotificationsGetSortByEnum, sortOrder?: V1NotificationsGetSortOrderEnum, since?: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesNotificationListResponse>;
|
|
40555
40745
|
/**
|
|
40556
40746
|
* Generates a fresh presigned URL for notification attachments (invoice or receipt). This is useful when the original presigned URL has expired.
|
|
40557
40747
|
* @summary Get notification attachment URL
|
|
@@ -40629,11 +40819,12 @@ export declare class NotificationsApi extends BaseAPI {
|
|
|
40629
40819
|
* @param {V1NotificationsGetPriorityEnum} [priority] Filter by priority
|
|
40630
40820
|
* @param {V1NotificationsGetSortByEnum} [sortBy] Sort field
|
|
40631
40821
|
* @param {V1NotificationsGetSortOrderEnum} [sortOrder] Sort order (case-insensitive)
|
|
40822
|
+
* @param {string} [since] ISO8601 timestamp - return only notifications created at or after this time (e.g. 2025-01-30T10:00:00Z)
|
|
40632
40823
|
* @param {*} [options] Override http request option.
|
|
40633
40824
|
* @throws {RequiredError}
|
|
40634
40825
|
* @memberof NotificationsApi
|
|
40635
40826
|
*/
|
|
40636
|
-
v1NotificationsGet(page?: number, pageSize?: number, limit?: number, offset?: number, search?: string, type?: V1NotificationsGetTypeEnum, isRead?: V1NotificationsGetIsReadEnum, priority?: V1NotificationsGetPriorityEnum, sortBy?: V1NotificationsGetSortByEnum, sortOrder?: V1NotificationsGetSortOrderEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesNotificationListResponse, any, {}>>;
|
|
40827
|
+
v1NotificationsGet(page?: number, pageSize?: number, limit?: number, offset?: number, search?: string, type?: V1NotificationsGetTypeEnum, isRead?: V1NotificationsGetIsReadEnum, priority?: V1NotificationsGetPriorityEnum, sortBy?: V1NotificationsGetSortByEnum, sortOrder?: V1NotificationsGetSortOrderEnum, since?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesNotificationListResponse, any, {}>>;
|
|
40637
40828
|
/**
|
|
40638
40829
|
* Generates a fresh presigned URL for notification attachments (invoice or receipt). This is useful when the original presigned URL has expired.
|
|
40639
40830
|
* @summary Get notification attachment URL
|
|
@@ -43004,6 +43195,19 @@ export declare const QuerySuggestionsApiAxiosParamCreator: (configuration?: Conf
|
|
|
43004
43195
|
* @throws {RequiredError}
|
|
43005
43196
|
*/
|
|
43006
43197
|
v1SuggestionsQueriesGet: (xStoreid: string, xStoresecret: string, xUserId?: string, xAnonId?: string, xSessionId?: string, query?: string, hitsPerPage?: number, page?: number, analyticsTags?: string, tagsMatchMode?: V1SuggestionsQueriesGetTagsMatchModeEnum, includeCategories?: boolean, includeFacets?: boolean, maxCategories?: number, maxFacets?: number, minPopularity?: number, timeRange?: V1SuggestionsQueriesGetTimeRangeEnum, disableTypoTolerance?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
43198
|
+
/**
|
|
43199
|
+
* Same as GET: retrieve query suggestions with optional body (query, hitsPerPage, analytics_tags, filtered_tabs, etc.). Use POST when sending filtered_tabs or larger payloads. Supports personalization via x-user-id, x-anon-id, x-session-id headers.
|
|
43200
|
+
* @summary Post Query Suggestions
|
|
43201
|
+
* @param {string} xStoreid Store ID
|
|
43202
|
+
* @param {string} xStoresecret Store Secret
|
|
43203
|
+
* @param {string} [xUserId] User ID for personalization (logged-in user)
|
|
43204
|
+
* @param {string} [xAnonId] Anonymous ID for personalization (cookie/device ID)
|
|
43205
|
+
* @param {string} [xSessionId] Session ID for personalization
|
|
43206
|
+
* @param {QuerySuggestionsServiceQuerySuggestionsRequest} [querySuggestionsServiceQuerySuggestionsRequest] Query suggestions request (query, hitsPerPage, page, analytics_tags, include_categories, include_facets, filtered_tabs, etc.)
|
|
43207
|
+
* @param {*} [options] Override http request option.
|
|
43208
|
+
* @throws {RequiredError}
|
|
43209
|
+
*/
|
|
43210
|
+
v1SuggestionsQueriesPost: (xStoreid: string, xStoresecret: string, xUserId?: string, xAnonId?: string, xSessionId?: string, querySuggestionsServiceQuerySuggestionsRequest?: QuerySuggestionsServiceQuerySuggestionsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
43007
43211
|
};
|
|
43008
43212
|
/**
|
|
43009
43213
|
* QuerySuggestionsApi - functional programming interface
|
|
@@ -43043,6 +43247,19 @@ export declare const QuerySuggestionsApiFp: (configuration?: Configuration) => {
|
|
|
43043
43247
|
* @throws {RequiredError}
|
|
43044
43248
|
*/
|
|
43045
43249
|
v1SuggestionsQueriesGet(xStoreid: string, xStoresecret: string, xUserId?: string, xAnonId?: string, xSessionId?: string, query?: string, hitsPerPage?: number, page?: number, analyticsTags?: string, tagsMatchMode?: V1SuggestionsQueriesGetTagsMatchModeEnum, includeCategories?: boolean, includeFacets?: boolean, maxCategories?: number, maxFacets?: number, minPopularity?: number, timeRange?: V1SuggestionsQueriesGetTimeRangeEnum, disableTypoTolerance?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<QuerySuggestionsServiceQuerySuggestionsAPIResponse>>;
|
|
43250
|
+
/**
|
|
43251
|
+
* Same as GET: retrieve query suggestions with optional body (query, hitsPerPage, analytics_tags, filtered_tabs, etc.). Use POST when sending filtered_tabs or larger payloads. Supports personalization via x-user-id, x-anon-id, x-session-id headers.
|
|
43252
|
+
* @summary Post Query Suggestions
|
|
43253
|
+
* @param {string} xStoreid Store ID
|
|
43254
|
+
* @param {string} xStoresecret Store Secret
|
|
43255
|
+
* @param {string} [xUserId] User ID for personalization (logged-in user)
|
|
43256
|
+
* @param {string} [xAnonId] Anonymous ID for personalization (cookie/device ID)
|
|
43257
|
+
* @param {string} [xSessionId] Session ID for personalization
|
|
43258
|
+
* @param {QuerySuggestionsServiceQuerySuggestionsRequest} [querySuggestionsServiceQuerySuggestionsRequest] Query suggestions request (query, hitsPerPage, page, analytics_tags, include_categories, include_facets, filtered_tabs, etc.)
|
|
43259
|
+
* @param {*} [options] Override http request option.
|
|
43260
|
+
* @throws {RequiredError}
|
|
43261
|
+
*/
|
|
43262
|
+
v1SuggestionsQueriesPost(xStoreid: string, xStoresecret: string, xUserId?: string, xAnonId?: string, xSessionId?: string, querySuggestionsServiceQuerySuggestionsRequest?: QuerySuggestionsServiceQuerySuggestionsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<QuerySuggestionsServiceQuerySuggestionsAPIResponse>>;
|
|
43046
43263
|
};
|
|
43047
43264
|
/**
|
|
43048
43265
|
* QuerySuggestionsApi - factory interface
|
|
@@ -43082,6 +43299,19 @@ export declare const QuerySuggestionsApiFactory: (configuration?: Configuration,
|
|
|
43082
43299
|
* @throws {RequiredError}
|
|
43083
43300
|
*/
|
|
43084
43301
|
v1SuggestionsQueriesGet(xStoreid: string, xStoresecret: string, xUserId?: string, xAnonId?: string, xSessionId?: string, query?: string, hitsPerPage?: number, page?: number, analyticsTags?: string, tagsMatchMode?: V1SuggestionsQueriesGetTagsMatchModeEnum, includeCategories?: boolean, includeFacets?: boolean, maxCategories?: number, maxFacets?: number, minPopularity?: number, timeRange?: V1SuggestionsQueriesGetTimeRangeEnum, disableTypoTolerance?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<QuerySuggestionsServiceQuerySuggestionsAPIResponse>;
|
|
43302
|
+
/**
|
|
43303
|
+
* Same as GET: retrieve query suggestions with optional body (query, hitsPerPage, analytics_tags, filtered_tabs, etc.). Use POST when sending filtered_tabs or larger payloads. Supports personalization via x-user-id, x-anon-id, x-session-id headers.
|
|
43304
|
+
* @summary Post Query Suggestions
|
|
43305
|
+
* @param {string} xStoreid Store ID
|
|
43306
|
+
* @param {string} xStoresecret Store Secret
|
|
43307
|
+
* @param {string} [xUserId] User ID for personalization (logged-in user)
|
|
43308
|
+
* @param {string} [xAnonId] Anonymous ID for personalization (cookie/device ID)
|
|
43309
|
+
* @param {string} [xSessionId] Session ID for personalization
|
|
43310
|
+
* @param {QuerySuggestionsServiceQuerySuggestionsRequest} [querySuggestionsServiceQuerySuggestionsRequest] Query suggestions request (query, hitsPerPage, page, analytics_tags, include_categories, include_facets, filtered_tabs, etc.)
|
|
43311
|
+
* @param {*} [options] Override http request option.
|
|
43312
|
+
* @throws {RequiredError}
|
|
43313
|
+
*/
|
|
43314
|
+
v1SuggestionsQueriesPost(xStoreid: string, xStoresecret: string, xUserId?: string, xAnonId?: string, xSessionId?: string, querySuggestionsServiceQuerySuggestionsRequest?: QuerySuggestionsServiceQuerySuggestionsRequest, options?: RawAxiosRequestConfig): AxiosPromise<QuerySuggestionsServiceQuerySuggestionsAPIResponse>;
|
|
43085
43315
|
};
|
|
43086
43316
|
/**
|
|
43087
43317
|
* QuerySuggestionsApi - object-oriented interface
|
|
@@ -43125,6 +43355,20 @@ export declare class QuerySuggestionsApi extends BaseAPI {
|
|
|
43125
43355
|
* @memberof QuerySuggestionsApi
|
|
43126
43356
|
*/
|
|
43127
43357
|
v1SuggestionsQueriesGet(xStoreid: string, xStoresecret: string, xUserId?: string, xAnonId?: string, xSessionId?: string, query?: string, hitsPerPage?: number, page?: number, analyticsTags?: string, tagsMatchMode?: V1SuggestionsQueriesGetTagsMatchModeEnum, includeCategories?: boolean, includeFacets?: boolean, maxCategories?: number, maxFacets?: number, minPopularity?: number, timeRange?: V1SuggestionsQueriesGetTimeRangeEnum, disableTypoTolerance?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<QuerySuggestionsServiceQuerySuggestionsAPIResponse, any, {}>>;
|
|
43358
|
+
/**
|
|
43359
|
+
* Same as GET: retrieve query suggestions with optional body (query, hitsPerPage, analytics_tags, filtered_tabs, etc.). Use POST when sending filtered_tabs or larger payloads. Supports personalization via x-user-id, x-anon-id, x-session-id headers.
|
|
43360
|
+
* @summary Post Query Suggestions
|
|
43361
|
+
* @param {string} xStoreid Store ID
|
|
43362
|
+
* @param {string} xStoresecret Store Secret
|
|
43363
|
+
* @param {string} [xUserId] User ID for personalization (logged-in user)
|
|
43364
|
+
* @param {string} [xAnonId] Anonymous ID for personalization (cookie/device ID)
|
|
43365
|
+
* @param {string} [xSessionId] Session ID for personalization
|
|
43366
|
+
* @param {QuerySuggestionsServiceQuerySuggestionsRequest} [querySuggestionsServiceQuerySuggestionsRequest] Query suggestions request (query, hitsPerPage, page, analytics_tags, include_categories, include_facets, filtered_tabs, etc.)
|
|
43367
|
+
* @param {*} [options] Override http request option.
|
|
43368
|
+
* @throws {RequiredError}
|
|
43369
|
+
* @memberof QuerySuggestionsApi
|
|
43370
|
+
*/
|
|
43371
|
+
v1SuggestionsQueriesPost(xStoreid: string, xStoresecret: string, xUserId?: string, xAnonId?: string, xSessionId?: string, querySuggestionsServiceQuerySuggestionsRequest?: QuerySuggestionsServiceQuerySuggestionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<QuerySuggestionsServiceQuerySuggestionsAPIResponse, any, {}>>;
|
|
43128
43372
|
}
|
|
43129
43373
|
/**
|
|
43130
43374
|
* @export
|
|
@@ -48777,6 +49021,15 @@ export declare const TeamApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
48777
49021
|
* @throws {RequiredError}
|
|
48778
49022
|
*/
|
|
48779
49023
|
v1InvitationsTokenAcceptPost: (token: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
49024
|
+
/**
|
|
49025
|
+
* Accepts a team invitation using OAuth (Google/GitHub), creates user account if needed, links OAuth, and returns session token
|
|
49026
|
+
* @summary Accept invitation with OAuth (onboarding)
|
|
49027
|
+
* @param {string} token Invitation Token
|
|
49028
|
+
* @param {DataTypesAcceptInvitationWithOAuthRequest} dataTypesAcceptInvitationWithOAuthRequest OAuth details
|
|
49029
|
+
* @param {*} [options] Override http request option.
|
|
49030
|
+
* @throws {RequiredError}
|
|
49031
|
+
*/
|
|
49032
|
+
v1InvitationsTokenAcceptWithOauthPost: (token: string, dataTypesAcceptInvitationWithOAuthRequest: DataTypesAcceptInvitationWithOAuthRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
48780
49033
|
/**
|
|
48781
49034
|
* Accepts a team invitation, creates user account if needed, sets password, and returns session token
|
|
48782
49035
|
* @summary Accept invitation and set password (onboarding)
|
|
@@ -48941,6 +49194,15 @@ export declare const TeamApiFp: (configuration?: Configuration) => {
|
|
|
48941
49194
|
* @throws {RequiredError}
|
|
48942
49195
|
*/
|
|
48943
49196
|
v1InvitationsTokenAcceptPost(token: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
49197
|
+
/**
|
|
49198
|
+
* Accepts a team invitation using OAuth (Google/GitHub), creates user account if needed, links OAuth, and returns session token
|
|
49199
|
+
* @summary Accept invitation with OAuth (onboarding)
|
|
49200
|
+
* @param {string} token Invitation Token
|
|
49201
|
+
* @param {DataTypesAcceptInvitationWithOAuthRequest} dataTypesAcceptInvitationWithOAuthRequest OAuth details
|
|
49202
|
+
* @param {*} [options] Override http request option.
|
|
49203
|
+
* @throws {RequiredError}
|
|
49204
|
+
*/
|
|
49205
|
+
v1InvitationsTokenAcceptWithOauthPost(token: string, dataTypesAcceptInvitationWithOAuthRequest: DataTypesAcceptInvitationWithOAuthRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesLoginResponseWrapper>>;
|
|
48944
49206
|
/**
|
|
48945
49207
|
* Accepts a team invitation, creates user account if needed, sets password, and returns session token
|
|
48946
49208
|
* @summary Accept invitation and set password (onboarding)
|
|
@@ -49105,6 +49367,15 @@ export declare const TeamApiFactory: (configuration?: Configuration, basePath?:
|
|
|
49105
49367
|
* @throws {RequiredError}
|
|
49106
49368
|
*/
|
|
49107
49369
|
v1InvitationsTokenAcceptPost(token: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
49370
|
+
/**
|
|
49371
|
+
* Accepts a team invitation using OAuth (Google/GitHub), creates user account if needed, links OAuth, and returns session token
|
|
49372
|
+
* @summary Accept invitation with OAuth (onboarding)
|
|
49373
|
+
* @param {string} token Invitation Token
|
|
49374
|
+
* @param {DataTypesAcceptInvitationWithOAuthRequest} dataTypesAcceptInvitationWithOAuthRequest OAuth details
|
|
49375
|
+
* @param {*} [options] Override http request option.
|
|
49376
|
+
* @throws {RequiredError}
|
|
49377
|
+
*/
|
|
49378
|
+
v1InvitationsTokenAcceptWithOauthPost(token: string, dataTypesAcceptInvitationWithOAuthRequest: DataTypesAcceptInvitationWithOAuthRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesLoginResponseWrapper>;
|
|
49108
49379
|
/**
|
|
49109
49380
|
* Accepts a team invitation, creates user account if needed, sets password, and returns session token
|
|
49110
49381
|
* @summary Accept invitation and set password (onboarding)
|
|
@@ -49277,6 +49548,16 @@ export declare class TeamApi extends BaseAPI {
|
|
|
49277
49548
|
* @memberof TeamApi
|
|
49278
49549
|
*/
|
|
49279
49550
|
v1InvitationsTokenAcceptPost(token: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
49551
|
+
/**
|
|
49552
|
+
* Accepts a team invitation using OAuth (Google/GitHub), creates user account if needed, links OAuth, and returns session token
|
|
49553
|
+
* @summary Accept invitation with OAuth (onboarding)
|
|
49554
|
+
* @param {string} token Invitation Token
|
|
49555
|
+
* @param {DataTypesAcceptInvitationWithOAuthRequest} dataTypesAcceptInvitationWithOAuthRequest OAuth details
|
|
49556
|
+
* @param {*} [options] Override http request option.
|
|
49557
|
+
* @throws {RequiredError}
|
|
49558
|
+
* @memberof TeamApi
|
|
49559
|
+
*/
|
|
49560
|
+
v1InvitationsTokenAcceptWithOauthPost(token: string, dataTypesAcceptInvitationWithOAuthRequest: DataTypesAcceptInvitationWithOAuthRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesLoginResponseWrapper, any, {}>>;
|
|
49280
49561
|
/**
|
|
49281
49562
|
* Accepts a team invitation, creates user account if needed, sets password, and returns session token
|
|
49282
49563
|
* @summary Accept invitation and set password (onboarding)
|