@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/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @seekora-ai/admin-api@1.1.
|
|
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.
|
|
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
|
|
@@ -6719,6 +6750,12 @@ export interface DataTypesCombinedSearchResponse {
|
|
|
6719
6750
|
* @memberof DataTypesCombinedSearchResponse
|
|
6720
6751
|
*/
|
|
6721
6752
|
'results'?: Array<DataTypesCombinedSearchResult>;
|
|
6753
|
+
/**
|
|
6754
|
+
* Unique search identifier for analytics linking
|
|
6755
|
+
* @type {string}
|
|
6756
|
+
* @memberof DataTypesCombinedSearchResponse
|
|
6757
|
+
*/
|
|
6758
|
+
'search_id'?: string;
|
|
6722
6759
|
/**
|
|
6723
6760
|
*
|
|
6724
6761
|
* @type {Array<DataTypesAutocompleteSuggestion>}
|
|
@@ -9364,6 +9401,12 @@ export interface DataTypesEventPayload {
|
|
|
9364
9401
|
* @memberof DataTypesEventPayload
|
|
9365
9402
|
*/
|
|
9366
9403
|
'clicked_item_id'?: string;
|
|
9404
|
+
/**
|
|
9405
|
+
* Primary journey key across search → clicks → conversions
|
|
9406
|
+
* @type {string}
|
|
9407
|
+
* @memberof DataTypesEventPayload
|
|
9408
|
+
*/
|
|
9409
|
+
'correlation_id'?: string;
|
|
9367
9410
|
/**
|
|
9368
9411
|
* Enhanced Geo data fields for direct submission
|
|
9369
9412
|
* @type {string}
|
|
@@ -9454,6 +9497,12 @@ export interface DataTypesEventPayload {
|
|
|
9454
9497
|
* @memberof DataTypesEventPayload
|
|
9455
9498
|
*/
|
|
9456
9499
|
'results_count'?: number;
|
|
9500
|
+
/**
|
|
9501
|
+
* Optional search-scoped identifier (mirrors correlation_id when you have a natural search key)
|
|
9502
|
+
* @type {string}
|
|
9503
|
+
* @memberof DataTypesEventPayload
|
|
9504
|
+
*/
|
|
9505
|
+
'search_id'?: string;
|
|
9457
9506
|
/**
|
|
9458
9507
|
* Session identifier for journey tracking
|
|
9459
9508
|
* @type {string}
|
|
@@ -11505,6 +11554,31 @@ export interface DataTypesInvitationCreatedResponse {
|
|
|
11505
11554
|
*/
|
|
11506
11555
|
'status'?: number;
|
|
11507
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
|
+
}
|
|
11508
11582
|
/**
|
|
11509
11583
|
*
|
|
11510
11584
|
* @export
|
|
@@ -14481,6 +14555,12 @@ export interface DataTypesOfficialSearchResponse {
|
|
|
14481
14555
|
* @memberof DataTypesOfficialSearchResponse
|
|
14482
14556
|
*/
|
|
14483
14557
|
'results'?: Array<DataTypesOfficialSearchResult>;
|
|
14558
|
+
/**
|
|
14559
|
+
* Unique search identifier for analytics linking
|
|
14560
|
+
* @type {string}
|
|
14561
|
+
* @memberof DataTypesOfficialSearchResponse
|
|
14562
|
+
*/
|
|
14563
|
+
'search_id'?: string;
|
|
14484
14564
|
/**
|
|
14485
14565
|
*
|
|
14486
14566
|
* @type {Array<DataTypesAutocompleteSuggestion>}
|
|
@@ -26876,7 +26956,7 @@ export class AccountSettingsApi extends BaseAPI {
|
|
|
26876
26956
|
export const ActivityLogsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
26877
26957
|
return {
|
|
26878
26958
|
/**
|
|
26879
|
-
* Retrieve user activity logs from ClickHouse
|
|
26959
|
+
* Retrieve user activity logs from ClickHouse fact_events table with full filtering, search, and pagination.
|
|
26880
26960
|
* @summary Get Activity Logs
|
|
26881
26961
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
26882
26962
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
@@ -26954,7 +27034,7 @@ export const ActivityLogsApiFp = function(configuration?: Configuration) {
|
|
|
26954
27034
|
const localVarAxiosParamCreator = ActivityLogsApiAxiosParamCreator(configuration)
|
|
26955
27035
|
return {
|
|
26956
27036
|
/**
|
|
26957
|
-
* Retrieve user activity logs from ClickHouse
|
|
27037
|
+
* Retrieve user activity logs from ClickHouse fact_events table with full filtering, search, and pagination.
|
|
26958
27038
|
* @summary Get Activity Logs
|
|
26959
27039
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
26960
27040
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
@@ -26983,7 +27063,7 @@ export const ActivityLogsApiFactory = function (configuration?: Configuration, b
|
|
|
26983
27063
|
const localVarFp = ActivityLogsApiFp(configuration)
|
|
26984
27064
|
return {
|
|
26985
27065
|
/**
|
|
26986
|
-
* Retrieve user activity logs from ClickHouse
|
|
27066
|
+
* Retrieve user activity logs from ClickHouse fact_events table with full filtering, search, and pagination.
|
|
26987
27067
|
* @summary Get Activity Logs
|
|
26988
27068
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
26989
27069
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
@@ -27009,7 +27089,7 @@ export const ActivityLogsApiFactory = function (configuration?: Configuration, b
|
|
|
27009
27089
|
*/
|
|
27010
27090
|
export class ActivityLogsApi extends BaseAPI {
|
|
27011
27091
|
/**
|
|
27012
|
-
* Retrieve user activity logs from ClickHouse
|
|
27092
|
+
* Retrieve user activity logs from ClickHouse fact_events table with full filtering, search, and pagination.
|
|
27013
27093
|
* @summary Get Activity Logs
|
|
27014
27094
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
27015
27095
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
@@ -29978,10 +30058,11 @@ export const AnalyticsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
29978
30058
|
* @param {number} [geoPageSize] Number of geo locations per page
|
|
29979
30059
|
* @param {string} [geoSearch] Search term to filter geo analytics (case-insensitive partial match on country/region/city)
|
|
29980
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)
|
|
29981
30062
|
* @param {*} [options] Override http request option.
|
|
29982
30063
|
* @throws {RequiredError}
|
|
29983
30064
|
*/
|
|
29984
|
-
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> => {
|
|
29985
30066
|
// verify required parameter 'xStoreID' is not null or undefined
|
|
29986
30067
|
assertParamExists('adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet', 'xStoreID', xStoreID)
|
|
29987
30068
|
// verify required parameter 'query' is not null or undefined
|
|
@@ -30107,6 +30188,10 @@ export const AnalyticsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
30107
30188
|
localVarQueryParameter['include_widget'] = includeWidget;
|
|
30108
30189
|
}
|
|
30109
30190
|
|
|
30191
|
+
if (noClicksOnly !== undefined) {
|
|
30192
|
+
localVarQueryParameter['no_clicks_only'] = noClicksOnly;
|
|
30193
|
+
}
|
|
30194
|
+
|
|
30110
30195
|
|
|
30111
30196
|
|
|
30112
30197
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -30469,7 +30554,7 @@ export const AnalyticsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
30469
30554
|
};
|
|
30470
30555
|
},
|
|
30471
30556
|
/**
|
|
30472
|
-
* Retrieve API usage logs from ClickHouse
|
|
30557
|
+
* Retrieve API usage logs from ClickHouse fact_events table with filtering and pagination
|
|
30473
30558
|
* @summary Get API Usage Logs
|
|
30474
30559
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
30475
30560
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
@@ -31045,11 +31130,12 @@ export const AnalyticsApiFp = function(configuration?: Configuration) {
|
|
|
31045
31130
|
* @param {number} [geoPageSize] Number of geo locations per page
|
|
31046
31131
|
* @param {string} [geoSearch] Search term to filter geo analytics (case-insensitive partial match on country/region/city)
|
|
31047
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 \'searches without clicks\' list)
|
|
31048
31134
|
* @param {*} [options] Override http request option.
|
|
31049
31135
|
* @throws {RequiredError}
|
|
31050
31136
|
*/
|
|
31051
|
-
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>> {
|
|
31052
|
-
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);
|
|
31053
31139
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
31054
31140
|
const localVarOperationServerBasePath = operationServerMap['AnalyticsApi.adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet']?.[localVarOperationServerIndex]?.url;
|
|
31055
31141
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -31143,7 +31229,7 @@ export const AnalyticsApiFp = function(configuration?: Configuration) {
|
|
|
31143
31229
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
31144
31230
|
},
|
|
31145
31231
|
/**
|
|
31146
|
-
* Retrieve API usage logs from ClickHouse
|
|
31232
|
+
* Retrieve API usage logs from ClickHouse fact_events table with filtering and pagination
|
|
31147
31233
|
* @summary Get API Usage Logs
|
|
31148
31234
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
31149
31235
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
@@ -31560,11 +31646,12 @@ export const AnalyticsApiFactory = function (configuration?: Configuration, base
|
|
|
31560
31646
|
* @param {number} [geoPageSize] Number of geo locations per page
|
|
31561
31647
|
* @param {string} [geoSearch] Search term to filter geo analytics (case-insensitive partial match on country/region/city)
|
|
31562
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 \'searches without clicks\' list)
|
|
31563
31650
|
* @param {*} [options] Override http request option.
|
|
31564
31651
|
* @throws {RequiredError}
|
|
31565
31652
|
*/
|
|
31566
|
-
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> {
|
|
31567
|
-
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));
|
|
31568
31655
|
},
|
|
31569
31656
|
/**
|
|
31570
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.
|
|
@@ -31646,7 +31733,7 @@ export const AnalyticsApiFactory = function (configuration?: Configuration, base
|
|
|
31646
31733
|
return localVarFp.adminAnalyticsStoreXStoreIDTagsSummaryGet(xStoreID, startTime, endTime, limit, offset, page, pageSize, sortBy, sortOrder, sort, options).then((request) => request(axios, basePath));
|
|
31647
31734
|
},
|
|
31648
31735
|
/**
|
|
31649
|
-
* Retrieve API usage logs from ClickHouse
|
|
31736
|
+
* Retrieve API usage logs from ClickHouse fact_events table with filtering and pagination
|
|
31650
31737
|
* @summary Get API Usage Logs
|
|
31651
31738
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
31652
31739
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
@@ -32082,12 +32169,13 @@ export class AnalyticsApi extends BaseAPI {
|
|
|
32082
32169
|
* @param {number} [geoPageSize] Number of geo locations per page
|
|
32083
32170
|
* @param {string} [geoSearch] Search term to filter geo analytics (case-insensitive partial match on country/region/city)
|
|
32084
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 \'searches without clicks\' list)
|
|
32085
32173
|
* @param {*} [options] Override http request option.
|
|
32086
32174
|
* @throws {RequiredError}
|
|
32087
32175
|
* @memberof AnalyticsApi
|
|
32088
32176
|
*/
|
|
32089
|
-
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) {
|
|
32090
|
-
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));
|
|
32091
32179
|
}
|
|
32092
32180
|
|
|
32093
32181
|
/**
|
|
@@ -32176,7 +32264,7 @@ export class AnalyticsApi extends BaseAPI {
|
|
|
32176
32264
|
}
|
|
32177
32265
|
|
|
32178
32266
|
/**
|
|
32179
|
-
* Retrieve API usage logs from ClickHouse
|
|
32267
|
+
* Retrieve API usage logs from ClickHouse fact_events table with filtering and pagination
|
|
32180
32268
|
* @summary Get API Usage Logs
|
|
32181
32269
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
32182
32270
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
@@ -63819,6 +63907,80 @@ export const TeamApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
63819
63907
|
|
|
63820
63908
|
|
|
63821
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
|
+
|
|
63822
63984
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
63823
63985
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
63824
63986
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -64254,6 +64416,33 @@ export const TeamApiFp = function(configuration?: Configuration) {
|
|
|
64254
64416
|
const localVarOperationServerBasePath = operationServerMap['TeamApi.v1InvitationsTokenAcceptPost']?.[localVarOperationServerIndex]?.url;
|
|
64255
64417
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
64256
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
|
+
},
|
|
64257
64446
|
/**
|
|
64258
64447
|
* Retrieves all users with access to a store
|
|
64259
64448
|
* @summary Get store access list
|
|
@@ -64417,6 +64606,27 @@ export const TeamApiFactory = function (configuration?: Configuration, basePath?
|
|
|
64417
64606
|
v1InvitationsTokenAcceptPost(token: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse> {
|
|
64418
64607
|
return localVarFp.v1InvitationsTokenAcceptPost(token, options).then((request) => request(axios, basePath));
|
|
64419
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
|
+
},
|
|
64420
64630
|
/**
|
|
64421
64631
|
* Retrieves all users with access to a store
|
|
64422
64632
|
* @summary Get store access list
|
|
@@ -64554,6 +64764,31 @@ export class TeamApi extends BaseAPI {
|
|
|
64554
64764
|
return TeamApiFp(this.configuration).v1InvitationsTokenAcceptPost(token, options).then((request) => request(this.axios, this.basePath));
|
|
64555
64765
|
}
|
|
64556
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
|
+
|
|
64557
64792
|
/**
|
|
64558
64793
|
* Retrieves all users with access to a store
|
|
64559
64794
|
* @summary Get store access list
|