@seekora-ai/admin-api 1.1.44 → 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 CHANGED
@@ -1,4 +1,4 @@
1
- ## @seekora-ai/admin-api@1.1.44
1
+ ## @seekora-ai/admin-api@1.1.45
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.44 --save
39
+ npm install @seekora-ai/admin-api@1.1.45 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -454,6 +454,8 @@ Class | Method | HTTP request | Description
454
454
  *TaxManagementApi* | [**adminTaxValidateGstinPost**](docs/TaxManagementApi.md#admintaxvalidategstinpost) | **POST** /admin/tax/validate-gstin | Validate GSTIN
455
455
  *TeamApi* | [**v1InvitationsInvitationIdDelete**](docs/TeamApi.md#v1invitationsinvitationiddelete) | **DELETE** /v1/invitations/{invitationId} | Cancel invitation
456
456
  *TeamApi* | [**v1InvitationsTokenAcceptPost**](docs/TeamApi.md#v1invitationstokenacceptpost) | **POST** /v1/invitations/{token}/accept | Accept invitation
457
+ *TeamApi* | [**v1InvitationsTokenAcceptWithPasswordPost**](docs/TeamApi.md#v1invitationstokenacceptwithpasswordpost) | **POST** /v1/invitations/{token}/accept-with-password | Accept invitation and set password (onboarding)
458
+ *TeamApi* | [**v1InvitationsTokenGet**](docs/TeamApi.md#v1invitationstokenget) | **GET** /v1/invitations/{token} | Get invitation details by token
457
459
  *TeamApi* | [**v1StoresStoreIdAccessGet**](docs/TeamApi.md#v1storesstoreidaccessget) | **GET** /v1/stores/{storeId}/access | Get store access list
458
460
  *TeamApi* | [**v1StoresStoreIdAccessPost**](docs/TeamApi.md#v1storesstoreidaccesspost) | **POST** /v1/stores/{storeId}/access | Grant store access
459
461
  *TeamApi* | [**v1StoresStoreIdAccessUserIdDelete**](docs/TeamApi.md#v1storesstoreidaccessuseriddelete) | **DELETE** /v1/stores/{storeId}/access/{userId} | Revoke store access
@@ -593,6 +595,7 @@ Class | Method | HTTP request | Description
593
595
  - [DataTypesAPICallRequestDto](docs/DataTypesAPICallRequestDto.md)
594
596
  - [DataTypesAPICallResponse](docs/DataTypesAPICallResponse.md)
595
597
  - [DataTypesAPICallsListResponse](docs/DataTypesAPICallsListResponse.md)
598
+ - [DataTypesAcceptInvitationWithPasswordRequest](docs/DataTypesAcceptInvitationWithPasswordRequest.md)
596
599
  - [DataTypesAddWordsToCustomListRequest](docs/DataTypesAddWordsToCustomListRequest.md)
597
600
  - [DataTypesAddWordsToLanguageListRequest](docs/DataTypesAddWordsToLanguageListRequest.md)
598
601
  - [DataTypesAdminSearchRequest](docs/DataTypesAdminSearchRequest.md)
@@ -715,6 +718,7 @@ Class | Method | HTTP request | Description
715
718
  - [DataTypesIndexConfigResponseWrapper](docs/DataTypesIndexConfigResponseWrapper.md)
716
719
  - [DataTypesIndexField](docs/DataTypesIndexField.md)
717
720
  - [DataTypesInvitationCreatedResponse](docs/DataTypesInvitationCreatedResponse.md)
721
+ - [DataTypesInvitationDetailsResponse](docs/DataTypesInvitationDetailsResponse.md)
718
722
  - [DataTypesInviteMemberRequest](docs/DataTypesInviteMemberRequest.md)
719
723
  - [DataTypesInvoice](docs/DataTypesInvoice.md)
720
724
  - [DataTypesInvoiceItem](docs/DataTypesInvoiceItem.md)
package/api.ts CHANGED
@@ -5944,6 +5944,37 @@ export interface DataTypesAPICallsListResponse {
5944
5944
  */
5945
5945
  'status'?: number;
5946
5946
  }
5947
+ /**
5948
+ *
5949
+ * @export
5950
+ * @interface DataTypesAcceptInvitationWithPasswordRequest
5951
+ */
5952
+ export interface DataTypesAcceptInvitationWithPasswordRequest {
5953
+ /**
5954
+ *
5955
+ * @type {string}
5956
+ * @memberof DataTypesAcceptInvitationWithPasswordRequest
5957
+ */
5958
+ 'first_name': string;
5959
+ /**
5960
+ *
5961
+ * @type {string}
5962
+ * @memberof DataTypesAcceptInvitationWithPasswordRequest
5963
+ */
5964
+ 'last_name': string;
5965
+ /**
5966
+ *
5967
+ * @type {string}
5968
+ * @memberof DataTypesAcceptInvitationWithPasswordRequest
5969
+ */
5970
+ 'password': string;
5971
+ /**
5972
+ *
5973
+ * @type {string}
5974
+ * @memberof DataTypesAcceptInvitationWithPasswordRequest
5975
+ */
5976
+ 'token': string;
5977
+ }
5947
5978
  /**
5948
5979
  *
5949
5980
  * @export
@@ -11523,6 +11554,31 @@ export interface DataTypesInvitationCreatedResponse {
11523
11554
  */
11524
11555
  'status'?: number;
11525
11556
  }
11557
+ /**
11558
+ *
11559
+ * @export
11560
+ * @interface DataTypesInvitationDetailsResponse
11561
+ */
11562
+ export interface DataTypesInvitationDetailsResponse {
11563
+ /**
11564
+ *
11565
+ * @type {DataTypesTeamInvitationWithDetails}
11566
+ * @memberof DataTypesInvitationDetailsResponse
11567
+ */
11568
+ 'data'?: DataTypesTeamInvitationWithDetails;
11569
+ /**
11570
+ *
11571
+ * @type {string}
11572
+ * @memberof DataTypesInvitationDetailsResponse
11573
+ */
11574
+ 'message'?: string;
11575
+ /**
11576
+ *
11577
+ * @type {number}
11578
+ * @memberof DataTypesInvitationDetailsResponse
11579
+ */
11580
+ 'status'?: number;
11581
+ }
11526
11582
  /**
11527
11583
  *
11528
11584
  * @export
@@ -30002,10 +30058,11 @@ export const AnalyticsApiAxiosParamCreator = function (configuration?: Configura
30002
30058
  * @param {number} [geoPageSize] Number of geo locations per page
30003
30059
  * @param {string} [geoSearch] Search term to filter geo analytics (case-insensitive partial match on country/region/city)
30004
30060
  * @param {boolean} [includeWidget] Whether to include widget display fields for popular results
30061
+ * @param {boolean} [noClicksOnly] Filter to show insights only for searches that had no clicks (useful when clicking on queries from \'searches without clicks\' list)
30005
30062
  * @param {*} [options] Override http request option.
30006
30063
  * @throws {RequiredError}
30007
30064
  */
30008
- adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet: async (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> => {
30065
+ adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet: async (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> => {
30009
30066
  // verify required parameter 'xStoreID' is not null or undefined
30010
30067
  assertParamExists('adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet', 'xStoreID', xStoreID)
30011
30068
  // verify required parameter 'query' is not null or undefined
@@ -30131,6 +30188,10 @@ export const AnalyticsApiAxiosParamCreator = function (configuration?: Configura
30131
30188
  localVarQueryParameter['include_widget'] = includeWidget;
30132
30189
  }
30133
30190
 
30191
+ if (noClicksOnly !== undefined) {
30192
+ localVarQueryParameter['no_clicks_only'] = noClicksOnly;
30193
+ }
30194
+
30134
30195
 
30135
30196
 
30136
30197
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -31069,11 +31130,12 @@ export const AnalyticsApiFp = function(configuration?: Configuration) {
31069
31130
  * @param {number} [geoPageSize] Number of geo locations per page
31070
31131
  * @param {string} [geoSearch] Search term to filter geo analytics (case-insensitive partial match on country/region/city)
31071
31132
  * @param {boolean} [includeWidget] Whether to include widget display fields for popular results
31133
+ * @param {boolean} [noClicksOnly] Filter to show insights only for searches that had no clicks (useful when clicking on queries from \&#39;searches without clicks\&#39; list)
31072
31134
  * @param {*} [options] Override http request option.
31073
31135
  * @throws {RequiredError}
31074
31136
  */
31075
- async 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>> {
31076
- const localVarAxiosArgs = await localVarAxiosParamCreator.adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID, query, startTime, endTime, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, search, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, resultsPage, resultsPageSize, resultsSearch, filtersPage, filtersPageSize, filtersSearch, geoPage, geoPageSize, geoSearch, includeWidget, options);
31137
+ async 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>> {
31138
+ const localVarAxiosArgs = await localVarAxiosParamCreator.adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID, query, startTime, endTime, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, search, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, resultsPage, resultsPageSize, resultsSearch, filtersPage, filtersPageSize, filtersSearch, geoPage, geoPageSize, geoSearch, includeWidget, noClicksOnly, options);
31077
31139
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
31078
31140
  const localVarOperationServerBasePath = operationServerMap['AnalyticsApi.adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet']?.[localVarOperationServerIndex]?.url;
31079
31141
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -31584,11 +31646,12 @@ export const AnalyticsApiFactory = function (configuration?: Configuration, base
31584
31646
  * @param {number} [geoPageSize] Number of geo locations per page
31585
31647
  * @param {string} [geoSearch] Search term to filter geo analytics (case-insensitive partial match on country/region/city)
31586
31648
  * @param {boolean} [includeWidget] Whether to include widget display fields for popular results
31649
+ * @param {boolean} [noClicksOnly] Filter to show insights only for searches that had no clicks (useful when clicking on queries from \&#39;searches without clicks\&#39; list)
31587
31650
  * @param {*} [options] Override http request option.
31588
31651
  * @throws {RequiredError}
31589
31652
  */
31590
- 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> {
31591
- return localVarFp.adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID, query, startTime, endTime, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, search, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, resultsPage, resultsPageSize, resultsSearch, filtersPage, filtersPageSize, filtersSearch, geoPage, geoPageSize, geoSearch, includeWidget, options).then((request) => request(axios, basePath));
31653
+ 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> {
31654
+ return localVarFp.adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID, query, startTime, endTime, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, search, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, resultsPage, resultsPageSize, resultsSearch, filtersPage, filtersPageSize, filtersSearch, geoPage, geoPageSize, geoSearch, includeWidget, noClicksOnly, options).then((request) => request(axios, basePath));
31592
31655
  },
31593
31656
  /**
31594
31657
  * 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.
@@ -32106,12 +32169,13 @@ export class AnalyticsApi extends BaseAPI {
32106
32169
  * @param {number} [geoPageSize] Number of geo locations per page
32107
32170
  * @param {string} [geoSearch] Search term to filter geo analytics (case-insensitive partial match on country/region/city)
32108
32171
  * @param {boolean} [includeWidget] Whether to include widget display fields for popular results
32172
+ * @param {boolean} [noClicksOnly] Filter to show insights only for searches that had no clicks (useful when clicking on queries from \&#39;searches without clicks\&#39; list)
32109
32173
  * @param {*} [options] Override http request option.
32110
32174
  * @throws {RequiredError}
32111
32175
  * @memberof AnalyticsApi
32112
32176
  */
32113
- public 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) {
32114
- return AnalyticsApiFp(this.configuration).adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID, query, startTime, endTime, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, search, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, resultsPage, resultsPageSize, resultsSearch, filtersPage, filtersPageSize, filtersSearch, geoPage, geoPageSize, geoSearch, includeWidget, options).then((request) => request(this.axios, this.basePath));
32177
+ public 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) {
32178
+ return AnalyticsApiFp(this.configuration).adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID, query, startTime, endTime, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, search, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, resultsPage, resultsPageSize, resultsSearch, filtersPage, filtersPageSize, filtersSearch, geoPage, geoPageSize, geoSearch, includeWidget, noClicksOnly, options).then((request) => request(this.axios, this.basePath));
32115
32179
  }
32116
32180
 
32117
32181
  /**
@@ -63843,6 +63907,80 @@ export const TeamApiAxiosParamCreator = function (configuration?: Configuration)
63843
63907
 
63844
63908
 
63845
63909
 
63910
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
63911
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
63912
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
63913
+
63914
+ return {
63915
+ url: toPathString(localVarUrlObj),
63916
+ options: localVarRequestOptions,
63917
+ };
63918
+ },
63919
+ /**
63920
+ * Accepts a team invitation, creates user account if needed, sets password, and returns session token
63921
+ * @summary Accept invitation and set password (onboarding)
63922
+ * @param {string} token Invitation Token
63923
+ * @param {DataTypesAcceptInvitationWithPasswordRequest} dataTypesAcceptInvitationWithPasswordRequest Password and user details
63924
+ * @param {*} [options] Override http request option.
63925
+ * @throws {RequiredError}
63926
+ */
63927
+ v1InvitationsTokenAcceptWithPasswordPost: async (token: string, dataTypesAcceptInvitationWithPasswordRequest: DataTypesAcceptInvitationWithPasswordRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
63928
+ // verify required parameter 'token' is not null or undefined
63929
+ assertParamExists('v1InvitationsTokenAcceptWithPasswordPost', 'token', token)
63930
+ // verify required parameter 'dataTypesAcceptInvitationWithPasswordRequest' is not null or undefined
63931
+ assertParamExists('v1InvitationsTokenAcceptWithPasswordPost', 'dataTypesAcceptInvitationWithPasswordRequest', dataTypesAcceptInvitationWithPasswordRequest)
63932
+ const localVarPath = `/v1/invitations/{token}/accept-with-password`
63933
+ .replace(`{${"token"}}`, encodeURIComponent(String(token)));
63934
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
63935
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
63936
+ let baseOptions;
63937
+ if (configuration) {
63938
+ baseOptions = configuration.baseOptions;
63939
+ }
63940
+
63941
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
63942
+ const localVarHeaderParameter = {} as any;
63943
+ const localVarQueryParameter = {} as any;
63944
+
63945
+
63946
+
63947
+ localVarHeaderParameter['Content-Type'] = 'application/json';
63948
+
63949
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
63950
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
63951
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
63952
+ localVarRequestOptions.data = serializeDataIfNeeded(dataTypesAcceptInvitationWithPasswordRequest, localVarRequestOptions, configuration)
63953
+
63954
+ return {
63955
+ url: toPathString(localVarUrlObj),
63956
+ options: localVarRequestOptions,
63957
+ };
63958
+ },
63959
+ /**
63960
+ * Retrieves invitation details by token (public endpoint for onboarding)
63961
+ * @summary Get invitation details by token
63962
+ * @param {string} token Invitation Token
63963
+ * @param {*} [options] Override http request option.
63964
+ * @throws {RequiredError}
63965
+ */
63966
+ v1InvitationsTokenGet: async (token: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
63967
+ // verify required parameter 'token' is not null or undefined
63968
+ assertParamExists('v1InvitationsTokenGet', 'token', token)
63969
+ const localVarPath = `/v1/invitations/{token}`
63970
+ .replace(`{${"token"}}`, encodeURIComponent(String(token)));
63971
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
63972
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
63973
+ let baseOptions;
63974
+ if (configuration) {
63975
+ baseOptions = configuration.baseOptions;
63976
+ }
63977
+
63978
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
63979
+ const localVarHeaderParameter = {} as any;
63980
+ const localVarQueryParameter = {} as any;
63981
+
63982
+
63983
+
63846
63984
  setSearchParams(localVarUrlObj, localVarQueryParameter);
63847
63985
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
63848
63986
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
@@ -64278,6 +64416,33 @@ export const TeamApiFp = function(configuration?: Configuration) {
64278
64416
  const localVarOperationServerBasePath = operationServerMap['TeamApi.v1InvitationsTokenAcceptPost']?.[localVarOperationServerIndex]?.url;
64279
64417
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
64280
64418
  },
64419
+ /**
64420
+ * Accepts a team invitation, creates user account if needed, sets password, and returns session token
64421
+ * @summary Accept invitation and set password (onboarding)
64422
+ * @param {string} token Invitation Token
64423
+ * @param {DataTypesAcceptInvitationWithPasswordRequest} dataTypesAcceptInvitationWithPasswordRequest Password and user details
64424
+ * @param {*} [options] Override http request option.
64425
+ * @throws {RequiredError}
64426
+ */
64427
+ async v1InvitationsTokenAcceptWithPasswordPost(token: string, dataTypesAcceptInvitationWithPasswordRequest: DataTypesAcceptInvitationWithPasswordRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesLoginResponseWrapper>> {
64428
+ const localVarAxiosArgs = await localVarAxiosParamCreator.v1InvitationsTokenAcceptWithPasswordPost(token, dataTypesAcceptInvitationWithPasswordRequest, options);
64429
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
64430
+ const localVarOperationServerBasePath = operationServerMap['TeamApi.v1InvitationsTokenAcceptWithPasswordPost']?.[localVarOperationServerIndex]?.url;
64431
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
64432
+ },
64433
+ /**
64434
+ * Retrieves invitation details by token (public endpoint for onboarding)
64435
+ * @summary Get invitation details by token
64436
+ * @param {string} token Invitation Token
64437
+ * @param {*} [options] Override http request option.
64438
+ * @throws {RequiredError}
64439
+ */
64440
+ async v1InvitationsTokenGet(token: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesInvitationDetailsResponse>> {
64441
+ const localVarAxiosArgs = await localVarAxiosParamCreator.v1InvitationsTokenGet(token, options);
64442
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
64443
+ const localVarOperationServerBasePath = operationServerMap['TeamApi.v1InvitationsTokenGet']?.[localVarOperationServerIndex]?.url;
64444
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
64445
+ },
64281
64446
  /**
64282
64447
  * Retrieves all users with access to a store
64283
64448
  * @summary Get store access list
@@ -64441,6 +64606,27 @@ export const TeamApiFactory = function (configuration?: Configuration, basePath?
64441
64606
  v1InvitationsTokenAcceptPost(token: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse> {
64442
64607
  return localVarFp.v1InvitationsTokenAcceptPost(token, options).then((request) => request(axios, basePath));
64443
64608
  },
64609
+ /**
64610
+ * Accepts a team invitation, creates user account if needed, sets password, and returns session token
64611
+ * @summary Accept invitation and set password (onboarding)
64612
+ * @param {string} token Invitation Token
64613
+ * @param {DataTypesAcceptInvitationWithPasswordRequest} dataTypesAcceptInvitationWithPasswordRequest Password and user details
64614
+ * @param {*} [options] Override http request option.
64615
+ * @throws {RequiredError}
64616
+ */
64617
+ v1InvitationsTokenAcceptWithPasswordPost(token: string, dataTypesAcceptInvitationWithPasswordRequest: DataTypesAcceptInvitationWithPasswordRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesLoginResponseWrapper> {
64618
+ return localVarFp.v1InvitationsTokenAcceptWithPasswordPost(token, dataTypesAcceptInvitationWithPasswordRequest, options).then((request) => request(axios, basePath));
64619
+ },
64620
+ /**
64621
+ * Retrieves invitation details by token (public endpoint for onboarding)
64622
+ * @summary Get invitation details by token
64623
+ * @param {string} token Invitation Token
64624
+ * @param {*} [options] Override http request option.
64625
+ * @throws {RequiredError}
64626
+ */
64627
+ v1InvitationsTokenGet(token: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesInvitationDetailsResponse> {
64628
+ return localVarFp.v1InvitationsTokenGet(token, options).then((request) => request(axios, basePath));
64629
+ },
64444
64630
  /**
64445
64631
  * Retrieves all users with access to a store
64446
64632
  * @summary Get store access list
@@ -64578,6 +64764,31 @@ export class TeamApi extends BaseAPI {
64578
64764
  return TeamApiFp(this.configuration).v1InvitationsTokenAcceptPost(token, options).then((request) => request(this.axios, this.basePath));
64579
64765
  }
64580
64766
 
64767
+ /**
64768
+ * Accepts a team invitation, creates user account if needed, sets password, and returns session token
64769
+ * @summary Accept invitation and set password (onboarding)
64770
+ * @param {string} token Invitation Token
64771
+ * @param {DataTypesAcceptInvitationWithPasswordRequest} dataTypesAcceptInvitationWithPasswordRequest Password and user details
64772
+ * @param {*} [options] Override http request option.
64773
+ * @throws {RequiredError}
64774
+ * @memberof TeamApi
64775
+ */
64776
+ public v1InvitationsTokenAcceptWithPasswordPost(token: string, dataTypesAcceptInvitationWithPasswordRequest: DataTypesAcceptInvitationWithPasswordRequest, options?: RawAxiosRequestConfig) {
64777
+ return TeamApiFp(this.configuration).v1InvitationsTokenAcceptWithPasswordPost(token, dataTypesAcceptInvitationWithPasswordRequest, options).then((request) => request(this.axios, this.basePath));
64778
+ }
64779
+
64780
+ /**
64781
+ * Retrieves invitation details by token (public endpoint for onboarding)
64782
+ * @summary Get invitation details by token
64783
+ * @param {string} token Invitation Token
64784
+ * @param {*} [options] Override http request option.
64785
+ * @throws {RequiredError}
64786
+ * @memberof TeamApi
64787
+ */
64788
+ public v1InvitationsTokenGet(token: string, options?: RawAxiosRequestConfig) {
64789
+ return TeamApiFp(this.configuration).v1InvitationsTokenGet(token, options).then((request) => request(this.axios, this.basePath));
64790
+ }
64791
+
64581
64792
  /**
64582
64793
  * Retrieves all users with access to a store
64583
64794
  * @summary Get store access list
package/dist/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
@@ -11545,6 +11576,31 @@ export interface DataTypesInvitationCreatedResponse {
11545
11576
  */
11546
11577
  'status'?: number;
11547
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
+ }
11548
11604
  /**
11549
11605
  *
11550
11606
  * @export
@@ -27507,10 +27563,11 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
27507
27563
  * @param {number} [geoPageSize] Number of geo locations per page
27508
27564
  * @param {string} [geoSearch] Search term to filter geo analytics (case-insensitive partial match on country/region/city)
27509
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 \&#39;searches without clicks\&#39; list)
27510
27567
  * @param {*} [options] Override http request option.
27511
27568
  * @throws {RequiredError}
27512
27569
  */
27513
- 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>;
27514
27571
  /**
27515
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.
27516
27573
  * @summary Get Top Results Analytics
@@ -27955,10 +28012,11 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
27955
28012
  * @param {number} [geoPageSize] Number of geo locations per page
27956
28013
  * @param {string} [geoSearch] Search term to filter geo analytics (case-insensitive partial match on country/region/city)
27957
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 \&#39;searches without clicks\&#39; list)
27958
28016
  * @param {*} [options] Override http request option.
27959
28017
  * @throws {RequiredError}
27960
28018
  */
27961
- 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>>;
27962
28020
  /**
27963
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.
27964
28022
  * @summary Get Top Results Analytics
@@ -28403,10 +28461,11 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
28403
28461
  * @param {number} [geoPageSize] Number of geo locations per page
28404
28462
  * @param {string} [geoSearch] Search term to filter geo analytics (case-insensitive partial match on country/region/city)
28405
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 \&#39;searches without clicks\&#39; list)
28406
28465
  * @param {*} [options] Override http request option.
28407
28466
  * @throws {RequiredError}
28408
28467
  */
28409
- 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>;
28410
28469
  /**
28411
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.
28412
28471
  * @summary Get Top Results Analytics
@@ -28867,11 +28926,12 @@ export declare class AnalyticsApi extends BaseAPI {
28867
28926
  * @param {number} [geoPageSize] Number of geo locations per page
28868
28927
  * @param {string} [geoSearch] Search term to filter geo analytics (case-insensitive partial match on country/region/city)
28869
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 \&#39;searches without clicks\&#39; list)
28870
28930
  * @param {*} [options] Override http request option.
28871
28931
  * @throws {RequiredError}
28872
28932
  * @memberof AnalyticsApi
28873
28933
  */
28874
- 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, {}>>;
28875
28935
  /**
28876
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.
28877
28937
  * @summary Get Top Results Analytics
@@ -44423,6 +44483,23 @@ export declare const TeamApiAxiosParamCreator: (configuration?: Configuration) =
44423
44483
  * @throws {RequiredError}
44424
44484
  */
44425
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>;
44426
44503
  /**
44427
44504
  * Retrieves all users with access to a store
44428
44505
  * @summary Get store access list
@@ -44528,6 +44605,23 @@ export declare const TeamApiFp: (configuration?: Configuration) => {
44528
44605
  * @throws {RequiredError}
44529
44606
  */
44530
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>>;
44531
44625
  /**
44532
44626
  * Retrieves all users with access to a store
44533
44627
  * @summary Get store access list
@@ -44633,6 +44727,23 @@ export declare const TeamApiFactory: (configuration?: Configuration, basePath?:
44633
44727
  * @throws {RequiredError}
44634
44728
  */
44635
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>;
44636
44747
  /**
44637
44748
  * Retrieves all users with access to a store
44638
44749
  * @summary Get store access list
@@ -44742,6 +44853,25 @@ export declare class TeamApi extends BaseAPI {
44742
44853
  * @memberof TeamApi
44743
44854
  */
44744
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, {}>>;
44745
44875
  /**
44746
44876
  * Retrieves all users with access to a store
44747
44877
  * @summary Get store access list