@seekora-ai/admin-api 1.0.64 → 1.0.65
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 +2 -2
- package/api.ts +242 -56
- package/dist/api.d.ts +159 -41
- package/dist/api.js +173 -47
- package/dist/esm/api.d.ts +159 -41
- package/dist/esm/api.js +169 -43
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.0.65.tgz +0 -0
- package/seekora-ai-admin-api-1.0.64.tgz +0 -0
package/api.ts
CHANGED
|
@@ -7654,12 +7654,24 @@ export interface BillingServicePaymentTransactionSummary {
|
|
|
7654
7654
|
* @memberof BillingServicePaymentTransactionSummary
|
|
7655
7655
|
*/
|
|
7656
7656
|
'gateway'?: BillingServiceNullableString;
|
|
7657
|
+
/**
|
|
7658
|
+
* Gateway order identifier
|
|
7659
|
+
* @type {BillingServiceNullableString}
|
|
7660
|
+
* @memberof BillingServicePaymentTransactionSummary
|
|
7661
|
+
*/
|
|
7662
|
+
'gateway_order_id'?: BillingServiceNullableString;
|
|
7657
7663
|
/**
|
|
7658
7664
|
*
|
|
7659
7665
|
* @type {BillingServiceNullableString}
|
|
7660
7666
|
* @memberof BillingServicePaymentTransactionSummary
|
|
7661
7667
|
*/
|
|
7662
7668
|
'gateway_payment_id'?: BillingServiceNullableString;
|
|
7669
|
+
/**
|
|
7670
|
+
* Database primary key
|
|
7671
|
+
* @type {BillingServiceNullableInt64}
|
|
7672
|
+
* @memberof BillingServicePaymentTransactionSummary
|
|
7673
|
+
*/
|
|
7674
|
+
'order_id'?: BillingServiceNullableInt64;
|
|
7663
7675
|
/**
|
|
7664
7676
|
*
|
|
7665
7677
|
* @type {number}
|
|
@@ -7679,7 +7691,7 @@ export interface BillingServicePaymentTransactionSummary {
|
|
|
7679
7691
|
*/
|
|
7680
7692
|
'payment_date'?: string;
|
|
7681
7693
|
/**
|
|
7682
|
-
*
|
|
7694
|
+
* Database primary key
|
|
7683
7695
|
* @type {number}
|
|
7684
7696
|
* @memberof BillingServicePaymentTransactionSummary
|
|
7685
7697
|
*/
|
|
@@ -7708,6 +7720,12 @@ export interface BillingServicePaymentTransactionSummary {
|
|
|
7708
7720
|
* @memberof BillingServicePaymentTransactionSummary
|
|
7709
7721
|
*/
|
|
7710
7722
|
'refund_status'?: BillingServiceNullableString;
|
|
7723
|
+
/**
|
|
7724
|
+
* Actual payment identifier
|
|
7725
|
+
* @type {string}
|
|
7726
|
+
* @memberof BillingServicePaymentTransactionSummary
|
|
7727
|
+
*/
|
|
7728
|
+
'transaction_id'?: string;
|
|
7711
7729
|
}
|
|
7712
7730
|
/**
|
|
7713
7731
|
*
|
|
@@ -8922,6 +8940,12 @@ export interface DataTypesCreateRefundRequestDto {
|
|
|
8922
8940
|
* @memberof DataTypesCreateRefundRequestDto
|
|
8923
8941
|
*/
|
|
8924
8942
|
'auto_approve_after'?: string;
|
|
8943
|
+
/**
|
|
8944
|
+
*
|
|
8945
|
+
* @type {string}
|
|
8946
|
+
* @memberof DataTypesCreateRefundRequestDto
|
|
8947
|
+
*/
|
|
8948
|
+
'currency': string;
|
|
8925
8949
|
/**
|
|
8926
8950
|
*
|
|
8927
8951
|
* @type {string}
|
|
@@ -8935,13 +8959,13 @@ export interface DataTypesCreateRefundRequestDto {
|
|
|
8935
8959
|
*/
|
|
8936
8960
|
'metadata'?: { [key: string]: any; };
|
|
8937
8961
|
/**
|
|
8938
|
-
*
|
|
8939
|
-
* @type {
|
|
8962
|
+
* Gateway order ID (e.g., \"order_RMeeXimPIbrYqH\")
|
|
8963
|
+
* @type {string}
|
|
8940
8964
|
* @memberof DataTypesCreateRefundRequestDto
|
|
8941
8965
|
*/
|
|
8942
|
-
'order_id':
|
|
8966
|
+
'order_id': string;
|
|
8943
8967
|
/**
|
|
8944
|
-
*
|
|
8968
|
+
* Gateway payment ID (e.g., \"pay_RMeeuvyPSbZp2Y\")
|
|
8945
8969
|
* @type {string}
|
|
8946
8970
|
* @memberof DataTypesCreateRefundRequestDto
|
|
8947
8971
|
*/
|
|
@@ -14475,17 +14499,23 @@ export interface DataTypesRefundRequestResponseDto {
|
|
|
14475
14499
|
*/
|
|
14476
14500
|
'expires_at'?: string;
|
|
14477
14501
|
/**
|
|
14478
|
-
*
|
|
14479
|
-
* @type {
|
|
14502
|
+
* Gateway order ID
|
|
14503
|
+
* @type {string}
|
|
14480
14504
|
* @memberof DataTypesRefundRequestResponseDto
|
|
14481
14505
|
*/
|
|
14482
|
-
'order_id'?:
|
|
14506
|
+
'order_id'?: string;
|
|
14483
14507
|
/**
|
|
14484
|
-
*
|
|
14508
|
+
* Gateway payment ID
|
|
14485
14509
|
* @type {string}
|
|
14486
14510
|
* @memberof DataTypesRefundRequestResponseDto
|
|
14487
14511
|
*/
|
|
14488
14512
|
'payment_id'?: string;
|
|
14513
|
+
/**
|
|
14514
|
+
* UUID for external reference
|
|
14515
|
+
* @type {string}
|
|
14516
|
+
* @memberof DataTypesRefundRequestResponseDto
|
|
14517
|
+
*/
|
|
14518
|
+
'refund_id'?: string;
|
|
14489
14519
|
/**
|
|
14490
14520
|
*
|
|
14491
14521
|
* @type {number}
|
|
@@ -14596,6 +14626,12 @@ export interface DataTypesRefundStatusDto {
|
|
|
14596
14626
|
* @memberof DataTypesRefundStatusDto
|
|
14597
14627
|
*/
|
|
14598
14628
|
'credit_adjustments'?: Array<DataTypesCreditAdjustmentDto>;
|
|
14629
|
+
/**
|
|
14630
|
+
*
|
|
14631
|
+
* @type {string}
|
|
14632
|
+
* @memberof DataTypesRefundStatusDto
|
|
14633
|
+
*/
|
|
14634
|
+
'currency'?: string;
|
|
14599
14635
|
/**
|
|
14600
14636
|
* Processing information
|
|
14601
14637
|
* @type {string}
|
|
@@ -14626,6 +14662,12 @@ export interface DataTypesRefundStatusDto {
|
|
|
14626
14662
|
* @memberof DataTypesRefundStatusDto
|
|
14627
14663
|
*/
|
|
14628
14664
|
'reason'?: string;
|
|
14665
|
+
/**
|
|
14666
|
+
* UUID for external reference
|
|
14667
|
+
* @type {string}
|
|
14668
|
+
* @memberof DataTypesRefundStatusDto
|
|
14669
|
+
*/
|
|
14670
|
+
'refund_id'?: string;
|
|
14629
14671
|
/**
|
|
14630
14672
|
*
|
|
14631
14673
|
* @type {number}
|
|
@@ -19043,6 +19085,7 @@ export const AnalyticsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
19043
19085
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
19044
19086
|
* @param {string} [endTime] End time in RFC3339 format
|
|
19045
19087
|
* @param {AdminAnalyticsStoreXStoreIDGeoGetGranularityEnum} [granularity] Time granularity
|
|
19088
|
+
* @param {string} [search] Search term to filter geographic locations (case-insensitive partial match on country, region, city)
|
|
19046
19089
|
* @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \'campaign:summer,source:email\')
|
|
19047
19090
|
* @param {AdminAnalyticsStoreXStoreIDGeoGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
|
|
19048
19091
|
* @param {string} [tagsExclude] Comma-separated analytics tags to exclude
|
|
@@ -19066,7 +19109,7 @@ export const AnalyticsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
19066
19109
|
* @param {*} [options] Override http request option.
|
|
19067
19110
|
* @throws {RequiredError}
|
|
19068
19111
|
*/
|
|
19069
|
-
adminAnalyticsStoreXStoreIDGeoGet: async (xStoreID: string, startTime?: string, endTime?: string, granularity?: AdminAnalyticsStoreXStoreIDGeoGetGranularityEnum, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDGeoGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDGeoGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDGeoGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDGeoGetSortOrderEnum, sort?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
19112
|
+
adminAnalyticsStoreXStoreIDGeoGet: async (xStoreID: string, startTime?: string, endTime?: string, granularity?: AdminAnalyticsStoreXStoreIDGeoGetGranularityEnum, search?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDGeoGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDGeoGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDGeoGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDGeoGetSortOrderEnum, sort?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
19070
19113
|
// verify required parameter 'xStoreID' is not null or undefined
|
|
19071
19114
|
assertParamExists('adminAnalyticsStoreXStoreIDGeoGet', 'xStoreID', xStoreID)
|
|
19072
19115
|
const localVarPath = `/admin/analytics/store/{xStoreID}/geo`
|
|
@@ -19097,6 +19140,10 @@ export const AnalyticsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
19097
19140
|
localVarQueryParameter['granularity'] = granularity;
|
|
19098
19141
|
}
|
|
19099
19142
|
|
|
19143
|
+
if (search !== undefined) {
|
|
19144
|
+
localVarQueryParameter['search'] = search;
|
|
19145
|
+
}
|
|
19146
|
+
|
|
19100
19147
|
if (analyticsTags !== undefined) {
|
|
19101
19148
|
localVarQueryParameter['analytics_tags'] = analyticsTags;
|
|
19102
19149
|
}
|
|
@@ -19212,14 +19259,17 @@ export const AnalyticsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
19212
19259
|
* @param {string} [compareTagValueFilter] Tag value filter for comparison period
|
|
19213
19260
|
* @param {number} [queriesPage] Page number for popular queries pagination
|
|
19214
19261
|
* @param {number} [queriesPageSize] Number of queries per page for popular queries
|
|
19262
|
+
* @param {string} [geoQueriesSearch] Search term to filter popular queries (case-insensitive partial match on query text)
|
|
19215
19263
|
* @param {number} [resultsPage] Page number for top results pagination
|
|
19216
19264
|
* @param {number} [resultsPageSize] Number of results per page for top results
|
|
19265
|
+
* @param {string} [geoResultsSearch] Search term to filter top results (case-insensitive partial match on item IDs)
|
|
19217
19266
|
* @param {number} [filtersPage] Page number for popular filters pagination
|
|
19218
19267
|
* @param {number} [filtersPageSize] Number of filters per page
|
|
19268
|
+
* @param {string} [geoFiltersSearch] Search term to filter popular filters (case-insensitive partial match on filter keys/values)
|
|
19219
19269
|
* @param {*} [options] Override http request option.
|
|
19220
19270
|
* @throws {RequiredError}
|
|
19221
19271
|
*/
|
|
19222
|
-
adminAnalyticsStoreXStoreIDGeoInsightsGet: async (xStoreID: string, country?: string, region?: string, city?: string, startTime?: string, endTime?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDGeoInsightsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDGeoInsightsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, queriesPage?: number, queriesPageSize?: number, resultsPage?: number, resultsPageSize?: number, filtersPage?: number, filtersPageSize?: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
19272
|
+
adminAnalyticsStoreXStoreIDGeoInsightsGet: async (xStoreID: string, country?: string, region?: string, city?: string, startTime?: string, endTime?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDGeoInsightsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDGeoInsightsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, queriesPage?: number, queriesPageSize?: number, geoQueriesSearch?: string, resultsPage?: number, resultsPageSize?: number, geoResultsSearch?: string, filtersPage?: number, filtersPageSize?: number, geoFiltersSearch?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
19223
19273
|
// verify required parameter 'xStoreID' is not null or undefined
|
|
19224
19274
|
assertParamExists('adminAnalyticsStoreXStoreIDGeoInsightsGet', 'xStoreID', xStoreID)
|
|
19225
19275
|
const localVarPath = `/admin/analytics/store/{xStoreID}/geo/insights`
|
|
@@ -19318,6 +19368,10 @@ export const AnalyticsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
19318
19368
|
localVarQueryParameter['queries_page_size'] = queriesPageSize;
|
|
19319
19369
|
}
|
|
19320
19370
|
|
|
19371
|
+
if (geoQueriesSearch !== undefined) {
|
|
19372
|
+
localVarQueryParameter['geo_queries_search'] = geoQueriesSearch;
|
|
19373
|
+
}
|
|
19374
|
+
|
|
19321
19375
|
if (resultsPage !== undefined) {
|
|
19322
19376
|
localVarQueryParameter['results_page'] = resultsPage;
|
|
19323
19377
|
}
|
|
@@ -19326,6 +19380,10 @@ export const AnalyticsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
19326
19380
|
localVarQueryParameter['results_page_size'] = resultsPageSize;
|
|
19327
19381
|
}
|
|
19328
19382
|
|
|
19383
|
+
if (geoResultsSearch !== undefined) {
|
|
19384
|
+
localVarQueryParameter['geo_results_search'] = geoResultsSearch;
|
|
19385
|
+
}
|
|
19386
|
+
|
|
19329
19387
|
if (filtersPage !== undefined) {
|
|
19330
19388
|
localVarQueryParameter['filters_page'] = filtersPage;
|
|
19331
19389
|
}
|
|
@@ -19334,6 +19392,10 @@ export const AnalyticsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
19334
19392
|
localVarQueryParameter['filters_page_size'] = filtersPageSize;
|
|
19335
19393
|
}
|
|
19336
19394
|
|
|
19395
|
+
if (geoFiltersSearch !== undefined) {
|
|
19396
|
+
localVarQueryParameter['geo_filters_search'] = geoFiltersSearch;
|
|
19397
|
+
}
|
|
19398
|
+
|
|
19337
19399
|
|
|
19338
19400
|
|
|
19339
19401
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -20029,6 +20091,12 @@ export const AnalyticsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
20029
20091
|
* @param {string} query Search query to analyze
|
|
20030
20092
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
20031
20093
|
* @param {string} [endTime] End time in RFC3339 format
|
|
20094
|
+
* @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \'campaign:summer,source:email\')
|
|
20095
|
+
* @param {AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
|
|
20096
|
+
* @param {string} [tagsExclude] Comma-separated analytics tags to exclude
|
|
20097
|
+
* @param {string} [tagKeyFilter] Filter by tag key pattern (matches tags starting with key:)
|
|
20098
|
+
* @param {string} [tagValueFilter] Filter by tag value pattern (matches tags ending with :value)
|
|
20099
|
+
* @param {string} [search] Search term to filter popular results, filters, and geo analytics (case-insensitive partial match)
|
|
20032
20100
|
* @param {boolean} [compareMode] Enable comparison mode to compare with another time period/tag set
|
|
20033
20101
|
* @param {string} [compareStartTime] Comparison period start time in RFC3339 format
|
|
20034
20102
|
* @param {string} [compareEndTime] Comparison period end time in RFC3339 format
|
|
@@ -20039,15 +20107,18 @@ export const AnalyticsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
20039
20107
|
* @param {string} [compareTagValueFilter] Tag value filter for comparison period
|
|
20040
20108
|
* @param {number} [resultsPage] Page number for popular results pagination
|
|
20041
20109
|
* @param {number} [resultsPageSize] Number of results per page for popular results
|
|
20110
|
+
* @param {string} [resultsSearch] Search term to filter popular results (case-insensitive partial match on item IDs)
|
|
20042
20111
|
* @param {number} [filtersPage] Page number for popular filters pagination
|
|
20043
20112
|
* @param {number} [filtersPageSize] Number of filters per page
|
|
20113
|
+
* @param {string} [filtersSearch] Search term to filter popular filters (case-insensitive partial match on filter keys/values)
|
|
20044
20114
|
* @param {number} [geoPage] Page number for geo analytics pagination
|
|
20045
20115
|
* @param {number} [geoPageSize] Number of geo locations per page
|
|
20116
|
+
* @param {string} [geoSearch] Search term to filter geo analytics (case-insensitive partial match on country/region/city)
|
|
20046
20117
|
* @param {boolean} [includeWidget] Whether to include widget display fields for popular results
|
|
20047
20118
|
* @param {*} [options] Override http request option.
|
|
20048
20119
|
* @throws {RequiredError}
|
|
20049
20120
|
*/
|
|
20050
|
-
adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet: async (xStoreID: string, query: string, startTime?: string, endTime?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, resultsPage?: number, resultsPageSize?: number, filtersPage?: number, filtersPageSize?: number, geoPage?: number, geoPageSize?: number, includeWidget?: boolean, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
20121
|
+
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> => {
|
|
20051
20122
|
// verify required parameter 'xStoreID' is not null or undefined
|
|
20052
20123
|
assertParamExists('adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet', 'xStoreID', xStoreID)
|
|
20053
20124
|
// verify required parameter 'query' is not null or undefined
|
|
@@ -20077,6 +20148,30 @@ export const AnalyticsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
20077
20148
|
localVarQueryParameter['end_time'] = endTime;
|
|
20078
20149
|
}
|
|
20079
20150
|
|
|
20151
|
+
if (analyticsTags !== undefined) {
|
|
20152
|
+
localVarQueryParameter['analytics_tags'] = analyticsTags;
|
|
20153
|
+
}
|
|
20154
|
+
|
|
20155
|
+
if (tagsMatchMode !== undefined) {
|
|
20156
|
+
localVarQueryParameter['tags_match_mode'] = tagsMatchMode;
|
|
20157
|
+
}
|
|
20158
|
+
|
|
20159
|
+
if (tagsExclude !== undefined) {
|
|
20160
|
+
localVarQueryParameter['tags_exclude'] = tagsExclude;
|
|
20161
|
+
}
|
|
20162
|
+
|
|
20163
|
+
if (tagKeyFilter !== undefined) {
|
|
20164
|
+
localVarQueryParameter['tag_key_filter'] = tagKeyFilter;
|
|
20165
|
+
}
|
|
20166
|
+
|
|
20167
|
+
if (tagValueFilter !== undefined) {
|
|
20168
|
+
localVarQueryParameter['tag_value_filter'] = tagValueFilter;
|
|
20169
|
+
}
|
|
20170
|
+
|
|
20171
|
+
if (search !== undefined) {
|
|
20172
|
+
localVarQueryParameter['search'] = search;
|
|
20173
|
+
}
|
|
20174
|
+
|
|
20080
20175
|
if (compareMode !== undefined) {
|
|
20081
20176
|
localVarQueryParameter['compare_mode'] = compareMode;
|
|
20082
20177
|
}
|
|
@@ -20117,6 +20212,10 @@ export const AnalyticsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
20117
20212
|
localVarQueryParameter['results_page_size'] = resultsPageSize;
|
|
20118
20213
|
}
|
|
20119
20214
|
|
|
20215
|
+
if (resultsSearch !== undefined) {
|
|
20216
|
+
localVarQueryParameter['results_search'] = resultsSearch;
|
|
20217
|
+
}
|
|
20218
|
+
|
|
20120
20219
|
if (filtersPage !== undefined) {
|
|
20121
20220
|
localVarQueryParameter['filters_page'] = filtersPage;
|
|
20122
20221
|
}
|
|
@@ -20125,6 +20224,10 @@ export const AnalyticsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
20125
20224
|
localVarQueryParameter['filters_page_size'] = filtersPageSize;
|
|
20126
20225
|
}
|
|
20127
20226
|
|
|
20227
|
+
if (filtersSearch !== undefined) {
|
|
20228
|
+
localVarQueryParameter['filters_search'] = filtersSearch;
|
|
20229
|
+
}
|
|
20230
|
+
|
|
20128
20231
|
if (geoPage !== undefined) {
|
|
20129
20232
|
localVarQueryParameter['geo_page'] = geoPage;
|
|
20130
20233
|
}
|
|
@@ -20133,6 +20236,10 @@ export const AnalyticsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
20133
20236
|
localVarQueryParameter['geo_page_size'] = geoPageSize;
|
|
20134
20237
|
}
|
|
20135
20238
|
|
|
20239
|
+
if (geoSearch !== undefined) {
|
|
20240
|
+
localVarQueryParameter['geo_search'] = geoSearch;
|
|
20241
|
+
}
|
|
20242
|
+
|
|
20136
20243
|
if (includeWidget !== undefined) {
|
|
20137
20244
|
localVarQueryParameter['include_widget'] = includeWidget;
|
|
20138
20245
|
}
|
|
@@ -20633,6 +20740,7 @@ export const AnalyticsApiFp = function(configuration?: Configuration) {
|
|
|
20633
20740
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
20634
20741
|
* @param {string} [endTime] End time in RFC3339 format
|
|
20635
20742
|
* @param {AdminAnalyticsStoreXStoreIDGeoGetGranularityEnum} [granularity] Time granularity
|
|
20743
|
+
* @param {string} [search] Search term to filter geographic locations (case-insensitive partial match on country, region, city)
|
|
20636
20744
|
* @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \'campaign:summer,source:email\')
|
|
20637
20745
|
* @param {AdminAnalyticsStoreXStoreIDGeoGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
|
|
20638
20746
|
* @param {string} [tagsExclude] Comma-separated analytics tags to exclude
|
|
@@ -20656,8 +20764,8 @@ export const AnalyticsApiFp = function(configuration?: Configuration) {
|
|
|
20656
20764
|
* @param {*} [options] Override http request option.
|
|
20657
20765
|
* @throws {RequiredError}
|
|
20658
20766
|
*/
|
|
20659
|
-
async adminAnalyticsStoreXStoreIDGeoGet(xStoreID: string, startTime?: string, endTime?: string, granularity?: AdminAnalyticsStoreXStoreIDGeoGetGranularityEnum, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDGeoGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDGeoGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDGeoGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDGeoGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminAnalyticsStoreXStoreIDGeoGet200Response>> {
|
|
20660
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.adminAnalyticsStoreXStoreIDGeoGet(xStoreID, startTime, endTime, granularity, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, limit, offset, page, pageSize, sortBy, sortOrder, sort, options);
|
|
20767
|
+
async adminAnalyticsStoreXStoreIDGeoGet(xStoreID: string, startTime?: string, endTime?: string, granularity?: AdminAnalyticsStoreXStoreIDGeoGetGranularityEnum, search?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDGeoGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDGeoGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDGeoGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDGeoGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminAnalyticsStoreXStoreIDGeoGet200Response>> {
|
|
20768
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.adminAnalyticsStoreXStoreIDGeoGet(xStoreID, startTime, endTime, granularity, search, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, limit, offset, page, pageSize, sortBy, sortOrder, sort, options);
|
|
20661
20769
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
20662
20770
|
const localVarOperationServerBasePath = operationServerMap['AnalyticsApi.adminAnalyticsStoreXStoreIDGeoGet']?.[localVarOperationServerIndex]?.url;
|
|
20663
20771
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -20686,15 +20794,18 @@ export const AnalyticsApiFp = function(configuration?: Configuration) {
|
|
|
20686
20794
|
* @param {string} [compareTagValueFilter] Tag value filter for comparison period
|
|
20687
20795
|
* @param {number} [queriesPage] Page number for popular queries pagination
|
|
20688
20796
|
* @param {number} [queriesPageSize] Number of queries per page for popular queries
|
|
20797
|
+
* @param {string} [geoQueriesSearch] Search term to filter popular queries (case-insensitive partial match on query text)
|
|
20689
20798
|
* @param {number} [resultsPage] Page number for top results pagination
|
|
20690
20799
|
* @param {number} [resultsPageSize] Number of results per page for top results
|
|
20800
|
+
* @param {string} [geoResultsSearch] Search term to filter top results (case-insensitive partial match on item IDs)
|
|
20691
20801
|
* @param {number} [filtersPage] Page number for popular filters pagination
|
|
20692
20802
|
* @param {number} [filtersPageSize] Number of filters per page
|
|
20803
|
+
* @param {string} [geoFiltersSearch] Search term to filter popular filters (case-insensitive partial match on filter keys/values)
|
|
20693
20804
|
* @param {*} [options] Override http request option.
|
|
20694
20805
|
* @throws {RequiredError}
|
|
20695
20806
|
*/
|
|
20696
|
-
async adminAnalyticsStoreXStoreIDGeoInsightsGet(xStoreID: string, country?: string, region?: string, city?: string, startTime?: string, endTime?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDGeoInsightsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDGeoInsightsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, queriesPage?: number, queriesPageSize?: number, resultsPage?: number, resultsPageSize?: number, filtersPage?: number, filtersPageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminAnalyticsStoreXStoreIDGeoInsightsGet200Response>> {
|
|
20697
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.adminAnalyticsStoreXStoreIDGeoInsightsGet(xStoreID, country, region, city, startTime, endTime, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, queriesPage, queriesPageSize, resultsPage, resultsPageSize, filtersPage, filtersPageSize, options);
|
|
20807
|
+
async adminAnalyticsStoreXStoreIDGeoInsightsGet(xStoreID: string, country?: string, region?: string, city?: string, startTime?: string, endTime?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDGeoInsightsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDGeoInsightsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, queriesPage?: number, queriesPageSize?: number, geoQueriesSearch?: string, resultsPage?: number, resultsPageSize?: number, geoResultsSearch?: string, filtersPage?: number, filtersPageSize?: number, geoFiltersSearch?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminAnalyticsStoreXStoreIDGeoInsightsGet200Response>> {
|
|
20808
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.adminAnalyticsStoreXStoreIDGeoInsightsGet(xStoreID, country, region, city, startTime, endTime, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, queriesPage, queriesPageSize, geoQueriesSearch, resultsPage, resultsPageSize, geoResultsSearch, filtersPage, filtersPageSize, geoFiltersSearch, options);
|
|
20698
20809
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
20699
20810
|
const localVarOperationServerBasePath = operationServerMap['AnalyticsApi.adminAnalyticsStoreXStoreIDGeoInsightsGet']?.[localVarOperationServerIndex]?.url;
|
|
20700
20811
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -20875,6 +20986,12 @@ export const AnalyticsApiFp = function(configuration?: Configuration) {
|
|
|
20875
20986
|
* @param {string} query Search query to analyze
|
|
20876
20987
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
20877
20988
|
* @param {string} [endTime] End time in RFC3339 format
|
|
20989
|
+
* @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \'campaign:summer,source:email\')
|
|
20990
|
+
* @param {AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
|
|
20991
|
+
* @param {string} [tagsExclude] Comma-separated analytics tags to exclude
|
|
20992
|
+
* @param {string} [tagKeyFilter] Filter by tag key pattern (matches tags starting with key:)
|
|
20993
|
+
* @param {string} [tagValueFilter] Filter by tag value pattern (matches tags ending with :value)
|
|
20994
|
+
* @param {string} [search] Search term to filter popular results, filters, and geo analytics (case-insensitive partial match)
|
|
20878
20995
|
* @param {boolean} [compareMode] Enable comparison mode to compare with another time period/tag set
|
|
20879
20996
|
* @param {string} [compareStartTime] Comparison period start time in RFC3339 format
|
|
20880
20997
|
* @param {string} [compareEndTime] Comparison period end time in RFC3339 format
|
|
@@ -20885,16 +21002,19 @@ export const AnalyticsApiFp = function(configuration?: Configuration) {
|
|
|
20885
21002
|
* @param {string} [compareTagValueFilter] Tag value filter for comparison period
|
|
20886
21003
|
* @param {number} [resultsPage] Page number for popular results pagination
|
|
20887
21004
|
* @param {number} [resultsPageSize] Number of results per page for popular results
|
|
21005
|
+
* @param {string} [resultsSearch] Search term to filter popular results (case-insensitive partial match on item IDs)
|
|
20888
21006
|
* @param {number} [filtersPage] Page number for popular filters pagination
|
|
20889
21007
|
* @param {number} [filtersPageSize] Number of filters per page
|
|
21008
|
+
* @param {string} [filtersSearch] Search term to filter popular filters (case-insensitive partial match on filter keys/values)
|
|
20890
21009
|
* @param {number} [geoPage] Page number for geo analytics pagination
|
|
20891
21010
|
* @param {number} [geoPageSize] Number of geo locations per page
|
|
21011
|
+
* @param {string} [geoSearch] Search term to filter geo analytics (case-insensitive partial match on country/region/city)
|
|
20892
21012
|
* @param {boolean} [includeWidget] Whether to include widget display fields for popular results
|
|
20893
21013
|
* @param {*} [options] Override http request option.
|
|
20894
21014
|
* @throws {RequiredError}
|
|
20895
21015
|
*/
|
|
20896
|
-
async adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID: string, query: string, startTime?: string, endTime?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, resultsPage?: number, resultsPageSize?: number, filtersPage?: number, filtersPageSize?: number, geoPage?: number, geoPageSize?: number, includeWidget?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGet200Response>> {
|
|
20897
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID, query, startTime, endTime, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, resultsPage, resultsPageSize, filtersPage, filtersPageSize, geoPage, geoPageSize, includeWidget, options);
|
|
21016
|
+
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>> {
|
|
21017
|
+
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);
|
|
20898
21018
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
20899
21019
|
const localVarOperationServerBasePath = operationServerMap['AnalyticsApi.adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet']?.[localVarOperationServerIndex]?.url;
|
|
20900
21020
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -21108,6 +21228,7 @@ export const AnalyticsApiFactory = function (configuration?: Configuration, base
|
|
|
21108
21228
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
21109
21229
|
* @param {string} [endTime] End time in RFC3339 format
|
|
21110
21230
|
* @param {AdminAnalyticsStoreXStoreIDGeoGetGranularityEnum} [granularity] Time granularity
|
|
21231
|
+
* @param {string} [search] Search term to filter geographic locations (case-insensitive partial match on country, region, city)
|
|
21111
21232
|
* @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \'campaign:summer,source:email\')
|
|
21112
21233
|
* @param {AdminAnalyticsStoreXStoreIDGeoGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
|
|
21113
21234
|
* @param {string} [tagsExclude] Comma-separated analytics tags to exclude
|
|
@@ -21131,8 +21252,8 @@ export const AnalyticsApiFactory = function (configuration?: Configuration, base
|
|
|
21131
21252
|
* @param {*} [options] Override http request option.
|
|
21132
21253
|
* @throws {RequiredError}
|
|
21133
21254
|
*/
|
|
21134
|
-
adminAnalyticsStoreXStoreIDGeoGet(xStoreID: string, startTime?: string, endTime?: string, granularity?: AdminAnalyticsStoreXStoreIDGeoGetGranularityEnum, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDGeoGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDGeoGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDGeoGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDGeoGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): AxiosPromise<AdminAnalyticsStoreXStoreIDGeoGet200Response> {
|
|
21135
|
-
return localVarFp.adminAnalyticsStoreXStoreIDGeoGet(xStoreID, startTime, endTime, granularity, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, limit, offset, page, pageSize, sortBy, sortOrder, sort, options).then((request) => request(axios, basePath));
|
|
21255
|
+
adminAnalyticsStoreXStoreIDGeoGet(xStoreID: string, startTime?: string, endTime?: string, granularity?: AdminAnalyticsStoreXStoreIDGeoGetGranularityEnum, search?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDGeoGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDGeoGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDGeoGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDGeoGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): AxiosPromise<AdminAnalyticsStoreXStoreIDGeoGet200Response> {
|
|
21256
|
+
return localVarFp.adminAnalyticsStoreXStoreIDGeoGet(xStoreID, startTime, endTime, granularity, search, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, limit, offset, page, pageSize, sortBy, sortOrder, sort, options).then((request) => request(axios, basePath));
|
|
21136
21257
|
},
|
|
21137
21258
|
/**
|
|
21138
21259
|
* Retrieve comprehensive analytics insights for a specific geographic location including all core metrics (Total Searches, Total Clicks, CTR, Conversions, CVR, Revenue), popular queries with performance metrics, top results by region with average rankings, popular filters used per region with performance impact, and totals & rates with optional comparison mode and internal pagination for each subsection
|
|
@@ -21158,15 +21279,18 @@ export const AnalyticsApiFactory = function (configuration?: Configuration, base
|
|
|
21158
21279
|
* @param {string} [compareTagValueFilter] Tag value filter for comparison period
|
|
21159
21280
|
* @param {number} [queriesPage] Page number for popular queries pagination
|
|
21160
21281
|
* @param {number} [queriesPageSize] Number of queries per page for popular queries
|
|
21282
|
+
* @param {string} [geoQueriesSearch] Search term to filter popular queries (case-insensitive partial match on query text)
|
|
21161
21283
|
* @param {number} [resultsPage] Page number for top results pagination
|
|
21162
21284
|
* @param {number} [resultsPageSize] Number of results per page for top results
|
|
21285
|
+
* @param {string} [geoResultsSearch] Search term to filter top results (case-insensitive partial match on item IDs)
|
|
21163
21286
|
* @param {number} [filtersPage] Page number for popular filters pagination
|
|
21164
21287
|
* @param {number} [filtersPageSize] Number of filters per page
|
|
21288
|
+
* @param {string} [geoFiltersSearch] Search term to filter popular filters (case-insensitive partial match on filter keys/values)
|
|
21165
21289
|
* @param {*} [options] Override http request option.
|
|
21166
21290
|
* @throws {RequiredError}
|
|
21167
21291
|
*/
|
|
21168
|
-
adminAnalyticsStoreXStoreIDGeoInsightsGet(xStoreID: string, country?: string, region?: string, city?: string, startTime?: string, endTime?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDGeoInsightsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDGeoInsightsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, queriesPage?: number, queriesPageSize?: number, resultsPage?: number, resultsPageSize?: number, filtersPage?: number, filtersPageSize?: number, options?: RawAxiosRequestConfig): AxiosPromise<AdminAnalyticsStoreXStoreIDGeoInsightsGet200Response> {
|
|
21169
|
-
return localVarFp.adminAnalyticsStoreXStoreIDGeoInsightsGet(xStoreID, country, region, city, startTime, endTime, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, queriesPage, queriesPageSize, resultsPage, resultsPageSize, filtersPage, filtersPageSize, options).then((request) => request(axios, basePath));
|
|
21292
|
+
adminAnalyticsStoreXStoreIDGeoInsightsGet(xStoreID: string, country?: string, region?: string, city?: string, startTime?: string, endTime?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDGeoInsightsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDGeoInsightsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, queriesPage?: number, queriesPageSize?: number, geoQueriesSearch?: string, resultsPage?: number, resultsPageSize?: number, geoResultsSearch?: string, filtersPage?: number, filtersPageSize?: number, geoFiltersSearch?: string, options?: RawAxiosRequestConfig): AxiosPromise<AdminAnalyticsStoreXStoreIDGeoInsightsGet200Response> {
|
|
21293
|
+
return localVarFp.adminAnalyticsStoreXStoreIDGeoInsightsGet(xStoreID, country, region, city, startTime, endTime, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, queriesPage, queriesPageSize, geoQueriesSearch, resultsPage, resultsPageSize, geoResultsSearch, filtersPage, filtersPageSize, geoFiltersSearch, options).then((request) => request(axios, basePath));
|
|
21170
21294
|
},
|
|
21171
21295
|
/**
|
|
21172
21296
|
* Check the health status of analytics service and ClickHouse connection
|
|
@@ -21326,6 +21450,12 @@ export const AnalyticsApiFactory = function (configuration?: Configuration, base
|
|
|
21326
21450
|
* @param {string} query Search query to analyze
|
|
21327
21451
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
21328
21452
|
* @param {string} [endTime] End time in RFC3339 format
|
|
21453
|
+
* @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \'campaign:summer,source:email\')
|
|
21454
|
+
* @param {AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
|
|
21455
|
+
* @param {string} [tagsExclude] Comma-separated analytics tags to exclude
|
|
21456
|
+
* @param {string} [tagKeyFilter] Filter by tag key pattern (matches tags starting with key:)
|
|
21457
|
+
* @param {string} [tagValueFilter] Filter by tag value pattern (matches tags ending with :value)
|
|
21458
|
+
* @param {string} [search] Search term to filter popular results, filters, and geo analytics (case-insensitive partial match)
|
|
21329
21459
|
* @param {boolean} [compareMode] Enable comparison mode to compare with another time period/tag set
|
|
21330
21460
|
* @param {string} [compareStartTime] Comparison period start time in RFC3339 format
|
|
21331
21461
|
* @param {string} [compareEndTime] Comparison period end time in RFC3339 format
|
|
@@ -21336,16 +21466,19 @@ export const AnalyticsApiFactory = function (configuration?: Configuration, base
|
|
|
21336
21466
|
* @param {string} [compareTagValueFilter] Tag value filter for comparison period
|
|
21337
21467
|
* @param {number} [resultsPage] Page number for popular results pagination
|
|
21338
21468
|
* @param {number} [resultsPageSize] Number of results per page for popular results
|
|
21469
|
+
* @param {string} [resultsSearch] Search term to filter popular results (case-insensitive partial match on item IDs)
|
|
21339
21470
|
* @param {number} [filtersPage] Page number for popular filters pagination
|
|
21340
21471
|
* @param {number} [filtersPageSize] Number of filters per page
|
|
21472
|
+
* @param {string} [filtersSearch] Search term to filter popular filters (case-insensitive partial match on filter keys/values)
|
|
21341
21473
|
* @param {number} [geoPage] Page number for geo analytics pagination
|
|
21342
21474
|
* @param {number} [geoPageSize] Number of geo locations per page
|
|
21475
|
+
* @param {string} [geoSearch] Search term to filter geo analytics (case-insensitive partial match on country/region/city)
|
|
21343
21476
|
* @param {boolean} [includeWidget] Whether to include widget display fields for popular results
|
|
21344
21477
|
* @param {*} [options] Override http request option.
|
|
21345
21478
|
* @throws {RequiredError}
|
|
21346
21479
|
*/
|
|
21347
|
-
adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID: string, query: string, startTime?: string, endTime?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, resultsPage?: number, resultsPageSize?: number, filtersPage?: number, filtersPageSize?: number, geoPage?: number, geoPageSize?: number, includeWidget?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGet200Response> {
|
|
21348
|
-
return localVarFp.adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID, query, startTime, endTime, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, resultsPage, resultsPageSize, filtersPage, filtersPageSize, geoPage, geoPageSize, includeWidget, options).then((request) => request(axios, basePath));
|
|
21480
|
+
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> {
|
|
21481
|
+
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));
|
|
21349
21482
|
},
|
|
21350
21483
|
/**
|
|
21351
21484
|
* 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.
|
|
@@ -21559,6 +21692,7 @@ export class AnalyticsApi extends BaseAPI {
|
|
|
21559
21692
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
21560
21693
|
* @param {string} [endTime] End time in RFC3339 format
|
|
21561
21694
|
* @param {AdminAnalyticsStoreXStoreIDGeoGetGranularityEnum} [granularity] Time granularity
|
|
21695
|
+
* @param {string} [search] Search term to filter geographic locations (case-insensitive partial match on country, region, city)
|
|
21562
21696
|
* @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \'campaign:summer,source:email\')
|
|
21563
21697
|
* @param {AdminAnalyticsStoreXStoreIDGeoGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
|
|
21564
21698
|
* @param {string} [tagsExclude] Comma-separated analytics tags to exclude
|
|
@@ -21583,8 +21717,8 @@ export class AnalyticsApi extends BaseAPI {
|
|
|
21583
21717
|
* @throws {RequiredError}
|
|
21584
21718
|
* @memberof AnalyticsApi
|
|
21585
21719
|
*/
|
|
21586
|
-
public adminAnalyticsStoreXStoreIDGeoGet(xStoreID: string, startTime?: string, endTime?: string, granularity?: AdminAnalyticsStoreXStoreIDGeoGetGranularityEnum, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDGeoGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDGeoGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDGeoGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDGeoGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig) {
|
|
21587
|
-
return AnalyticsApiFp(this.configuration).adminAnalyticsStoreXStoreIDGeoGet(xStoreID, startTime, endTime, granularity, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, limit, offset, page, pageSize, sortBy, sortOrder, sort, options).then((request) => request(this.axios, this.basePath));
|
|
21720
|
+
public adminAnalyticsStoreXStoreIDGeoGet(xStoreID: string, startTime?: string, endTime?: string, granularity?: AdminAnalyticsStoreXStoreIDGeoGetGranularityEnum, search?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDGeoGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDGeoGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDGeoGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDGeoGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig) {
|
|
21721
|
+
return AnalyticsApiFp(this.configuration).adminAnalyticsStoreXStoreIDGeoGet(xStoreID, startTime, endTime, granularity, search, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, limit, offset, page, pageSize, sortBy, sortOrder, sort, options).then((request) => request(this.axios, this.basePath));
|
|
21588
21722
|
}
|
|
21589
21723
|
|
|
21590
21724
|
/**
|
|
@@ -21611,16 +21745,19 @@ export class AnalyticsApi extends BaseAPI {
|
|
|
21611
21745
|
* @param {string} [compareTagValueFilter] Tag value filter for comparison period
|
|
21612
21746
|
* @param {number} [queriesPage] Page number for popular queries pagination
|
|
21613
21747
|
* @param {number} [queriesPageSize] Number of queries per page for popular queries
|
|
21748
|
+
* @param {string} [geoQueriesSearch] Search term to filter popular queries (case-insensitive partial match on query text)
|
|
21614
21749
|
* @param {number} [resultsPage] Page number for top results pagination
|
|
21615
21750
|
* @param {number} [resultsPageSize] Number of results per page for top results
|
|
21751
|
+
* @param {string} [geoResultsSearch] Search term to filter top results (case-insensitive partial match on item IDs)
|
|
21616
21752
|
* @param {number} [filtersPage] Page number for popular filters pagination
|
|
21617
21753
|
* @param {number} [filtersPageSize] Number of filters per page
|
|
21754
|
+
* @param {string} [geoFiltersSearch] Search term to filter popular filters (case-insensitive partial match on filter keys/values)
|
|
21618
21755
|
* @param {*} [options] Override http request option.
|
|
21619
21756
|
* @throws {RequiredError}
|
|
21620
21757
|
* @memberof AnalyticsApi
|
|
21621
21758
|
*/
|
|
21622
|
-
public adminAnalyticsStoreXStoreIDGeoInsightsGet(xStoreID: string, country?: string, region?: string, city?: string, startTime?: string, endTime?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDGeoInsightsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDGeoInsightsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, queriesPage?: number, queriesPageSize?: number, resultsPage?: number, resultsPageSize?: number, filtersPage?: number, filtersPageSize?: number, options?: RawAxiosRequestConfig) {
|
|
21623
|
-
return AnalyticsApiFp(this.configuration).adminAnalyticsStoreXStoreIDGeoInsightsGet(xStoreID, country, region, city, startTime, endTime, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, queriesPage, queriesPageSize, resultsPage, resultsPageSize, filtersPage, filtersPageSize, options).then((request) => request(this.axios, this.basePath));
|
|
21759
|
+
public adminAnalyticsStoreXStoreIDGeoInsightsGet(xStoreID: string, country?: string, region?: string, city?: string, startTime?: string, endTime?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDGeoInsightsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDGeoInsightsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, queriesPage?: number, queriesPageSize?: number, geoQueriesSearch?: string, resultsPage?: number, resultsPageSize?: number, geoResultsSearch?: string, filtersPage?: number, filtersPageSize?: number, geoFiltersSearch?: string, options?: RawAxiosRequestConfig) {
|
|
21760
|
+
return AnalyticsApiFp(this.configuration).adminAnalyticsStoreXStoreIDGeoInsightsGet(xStoreID, country, region, city, startTime, endTime, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, queriesPage, queriesPageSize, geoQueriesSearch, resultsPage, resultsPageSize, geoResultsSearch, filtersPage, filtersPageSize, geoFiltersSearch, options).then((request) => request(this.axios, this.basePath));
|
|
21624
21761
|
}
|
|
21625
21762
|
|
|
21626
21763
|
/**
|
|
@@ -21793,6 +21930,12 @@ export class AnalyticsApi extends BaseAPI {
|
|
|
21793
21930
|
* @param {string} query Search query to analyze
|
|
21794
21931
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
21795
21932
|
* @param {string} [endTime] End time in RFC3339 format
|
|
21933
|
+
* @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \'campaign:summer,source:email\')
|
|
21934
|
+
* @param {AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
|
|
21935
|
+
* @param {string} [tagsExclude] Comma-separated analytics tags to exclude
|
|
21936
|
+
* @param {string} [tagKeyFilter] Filter by tag key pattern (matches tags starting with key:)
|
|
21937
|
+
* @param {string} [tagValueFilter] Filter by tag value pattern (matches tags ending with :value)
|
|
21938
|
+
* @param {string} [search] Search term to filter popular results, filters, and geo analytics (case-insensitive partial match)
|
|
21796
21939
|
* @param {boolean} [compareMode] Enable comparison mode to compare with another time period/tag set
|
|
21797
21940
|
* @param {string} [compareStartTime] Comparison period start time in RFC3339 format
|
|
21798
21941
|
* @param {string} [compareEndTime] Comparison period end time in RFC3339 format
|
|
@@ -21803,17 +21946,20 @@ export class AnalyticsApi extends BaseAPI {
|
|
|
21803
21946
|
* @param {string} [compareTagValueFilter] Tag value filter for comparison period
|
|
21804
21947
|
* @param {number} [resultsPage] Page number for popular results pagination
|
|
21805
21948
|
* @param {number} [resultsPageSize] Number of results per page for popular results
|
|
21949
|
+
* @param {string} [resultsSearch] Search term to filter popular results (case-insensitive partial match on item IDs)
|
|
21806
21950
|
* @param {number} [filtersPage] Page number for popular filters pagination
|
|
21807
21951
|
* @param {number} [filtersPageSize] Number of filters per page
|
|
21952
|
+
* @param {string} [filtersSearch] Search term to filter popular filters (case-insensitive partial match on filter keys/values)
|
|
21808
21953
|
* @param {number} [geoPage] Page number for geo analytics pagination
|
|
21809
21954
|
* @param {number} [geoPageSize] Number of geo locations per page
|
|
21955
|
+
* @param {string} [geoSearch] Search term to filter geo analytics (case-insensitive partial match on country/region/city)
|
|
21810
21956
|
* @param {boolean} [includeWidget] Whether to include widget display fields for popular results
|
|
21811
21957
|
* @param {*} [options] Override http request option.
|
|
21812
21958
|
* @throws {RequiredError}
|
|
21813
21959
|
* @memberof AnalyticsApi
|
|
21814
21960
|
*/
|
|
21815
|
-
public adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID: string, query: string, startTime?: string, endTime?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, resultsPage?: number, resultsPageSize?: number, filtersPage?: number, filtersPageSize?: number, geoPage?: number, geoPageSize?: number, includeWidget?: boolean, options?: RawAxiosRequestConfig) {
|
|
21816
|
-
return AnalyticsApiFp(this.configuration).adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID, query, startTime, endTime, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, resultsPage, resultsPageSize, filtersPage, filtersPageSize, geoPage, geoPageSize, includeWidget, options).then((request) => request(this.axios, this.basePath));
|
|
21961
|
+
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) {
|
|
21962
|
+
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));
|
|
21817
21963
|
}
|
|
21818
21964
|
|
|
21819
21965
|
/**
|
|
@@ -22206,6 +22352,14 @@ export const AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortOrderEnum = {
|
|
|
22206
22352
|
Desc: 'desc'
|
|
22207
22353
|
} as const;
|
|
22208
22354
|
export type AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortOrderEnum = typeof AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortOrderEnum[keyof typeof AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortOrderEnum];
|
|
22355
|
+
/**
|
|
22356
|
+
* @export
|
|
22357
|
+
*/
|
|
22358
|
+
export const AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetTagsMatchModeEnum = {
|
|
22359
|
+
Any: 'any',
|
|
22360
|
+
All: 'all'
|
|
22361
|
+
} as const;
|
|
22362
|
+
export type AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetTagsMatchModeEnum = typeof AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetTagsMatchModeEnum[keyof typeof AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetTagsMatchModeEnum];
|
|
22209
22363
|
/**
|
|
22210
22364
|
* @export
|
|
22211
22365
|
*/
|
|
@@ -26645,6 +26799,7 @@ export const ItemAnalyticsApiAxiosParamCreator = function (configuration?: Confi
|
|
|
26645
26799
|
* @param {string} xStoreID Store ID
|
|
26646
26800
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
26647
26801
|
* @param {string} [endTime] End time in RFC3339 format
|
|
26802
|
+
* @param {string} [search] Search term to filter items (case-insensitive partial match on item IDs and related data)
|
|
26648
26803
|
* @param {string} [itemIds] Comma-separated list of item IDs to filter
|
|
26649
26804
|
* @param {number} [itemLimit] Maximum number of items to return
|
|
26650
26805
|
* @param {number} [minImpressions] Minimum number of impressions required
|
|
@@ -26659,7 +26814,7 @@ export const ItemAnalyticsApiAxiosParamCreator = function (configuration?: Confi
|
|
|
26659
26814
|
* @param {*} [options] Override http request option.
|
|
26660
26815
|
* @throws {RequiredError}
|
|
26661
26816
|
*/
|
|
26662
|
-
adminAnalyticsStoreXStoreIDItemsGet: async (xStoreID: string, startTime?: string, endTime?: string, itemIds?: string, itemLimit?: number, minImpressions?: number, maxPosition?: number, sortBy?: AdminAnalyticsStoreXStoreIDItemsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDItemsGetSortOrderEnum, sort?: string, limit?: number, offset?: number, page?: number, pageSize?: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
26817
|
+
adminAnalyticsStoreXStoreIDItemsGet: async (xStoreID: string, startTime?: string, endTime?: string, search?: string, itemIds?: string, itemLimit?: number, minImpressions?: number, maxPosition?: number, sortBy?: AdminAnalyticsStoreXStoreIDItemsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDItemsGetSortOrderEnum, sort?: string, limit?: number, offset?: number, page?: number, pageSize?: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
26663
26818
|
// verify required parameter 'xStoreID' is not null or undefined
|
|
26664
26819
|
assertParamExists('adminAnalyticsStoreXStoreIDItemsGet', 'xStoreID', xStoreID)
|
|
26665
26820
|
const localVarPath = `/admin/analytics/store/{xStoreID}/items`
|
|
@@ -26686,6 +26841,10 @@ export const ItemAnalyticsApiAxiosParamCreator = function (configuration?: Confi
|
|
|
26686
26841
|
localVarQueryParameter['end_time'] = endTime;
|
|
26687
26842
|
}
|
|
26688
26843
|
|
|
26844
|
+
if (search !== undefined) {
|
|
26845
|
+
localVarQueryParameter['search'] = search;
|
|
26846
|
+
}
|
|
26847
|
+
|
|
26689
26848
|
if (itemIds !== undefined) {
|
|
26690
26849
|
localVarQueryParameter['item_ids'] = itemIds;
|
|
26691
26850
|
}
|
|
@@ -26814,15 +26973,18 @@ export const ItemAnalyticsApiAxiosParamCreator = function (configuration?: Confi
|
|
|
26814
26973
|
* @param {string} [compareTagValueFilter] Tag value filter for comparison period
|
|
26815
26974
|
* @param {number} [resultsPage] Page number for popular queries pagination
|
|
26816
26975
|
* @param {number} [resultsPageSize] Number of queries per page for popular queries
|
|
26976
|
+
* @param {string} [itemQueriesSearch] Search term to filter popular queries (case-insensitive partial match on query text)
|
|
26817
26977
|
* @param {number} [filtersPage] Page number for popular filters pagination
|
|
26818
26978
|
* @param {number} [filtersPageSize] Number of filters per page
|
|
26979
|
+
* @param {string} [itemFiltersSearch] Search term to filter popular filters (case-insensitive partial match on filter keys/values)
|
|
26819
26980
|
* @param {number} [geoPage] Page number for geo analytics pagination
|
|
26820
26981
|
* @param {number} [geoPageSize] Number of geo locations per page
|
|
26982
|
+
* @param {string} [itemGeoSearch] Search term to filter geo analytics (case-insensitive partial match on country/region/city)
|
|
26821
26983
|
* @param {AdminAnalyticsStoreXStoreIDItemsItemIdInsightsGetGroupByEnum} [groupBy] Include performance trends by date
|
|
26822
26984
|
* @param {*} [options] Override http request option.
|
|
26823
26985
|
* @throws {RequiredError}
|
|
26824
26986
|
*/
|
|
26825
|
-
adminAnalyticsStoreXStoreIDItemsItemIdInsightsGet: async (xStoreID: string, itemId: string, startTime?: string, endTime?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDItemsItemIdInsightsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDItemsItemIdInsightsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, resultsPage?: number, resultsPageSize?: number, filtersPage?: number, filtersPageSize?: number, geoPage?: number, geoPageSize?: number, groupBy?: AdminAnalyticsStoreXStoreIDItemsItemIdInsightsGetGroupByEnum, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
26987
|
+
adminAnalyticsStoreXStoreIDItemsItemIdInsightsGet: async (xStoreID: string, itemId: string, startTime?: string, endTime?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDItemsItemIdInsightsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDItemsItemIdInsightsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, resultsPage?: number, resultsPageSize?: number, itemQueriesSearch?: string, filtersPage?: number, filtersPageSize?: number, itemFiltersSearch?: string, geoPage?: number, geoPageSize?: number, itemGeoSearch?: string, groupBy?: AdminAnalyticsStoreXStoreIDItemsItemIdInsightsGetGroupByEnum, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
26826
26988
|
// verify required parameter 'xStoreID' is not null or undefined
|
|
26827
26989
|
assertParamExists('adminAnalyticsStoreXStoreIDItemsItemIdInsightsGet', 'xStoreID', xStoreID)
|
|
26828
26990
|
// verify required parameter 'itemId' is not null or undefined
|
|
@@ -26912,6 +27074,10 @@ export const ItemAnalyticsApiAxiosParamCreator = function (configuration?: Confi
|
|
|
26912
27074
|
localVarQueryParameter['results_page_size'] = resultsPageSize;
|
|
26913
27075
|
}
|
|
26914
27076
|
|
|
27077
|
+
if (itemQueriesSearch !== undefined) {
|
|
27078
|
+
localVarQueryParameter['item_queries_search'] = itemQueriesSearch;
|
|
27079
|
+
}
|
|
27080
|
+
|
|
26915
27081
|
if (filtersPage !== undefined) {
|
|
26916
27082
|
localVarQueryParameter['filters_page'] = filtersPage;
|
|
26917
27083
|
}
|
|
@@ -26920,6 +27086,10 @@ export const ItemAnalyticsApiAxiosParamCreator = function (configuration?: Confi
|
|
|
26920
27086
|
localVarQueryParameter['filters_page_size'] = filtersPageSize;
|
|
26921
27087
|
}
|
|
26922
27088
|
|
|
27089
|
+
if (itemFiltersSearch !== undefined) {
|
|
27090
|
+
localVarQueryParameter['item_filters_search'] = itemFiltersSearch;
|
|
27091
|
+
}
|
|
27092
|
+
|
|
26923
27093
|
if (geoPage !== undefined) {
|
|
26924
27094
|
localVarQueryParameter['geo_page'] = geoPage;
|
|
26925
27095
|
}
|
|
@@ -26928,6 +27098,10 @@ export const ItemAnalyticsApiAxiosParamCreator = function (configuration?: Confi
|
|
|
26928
27098
|
localVarQueryParameter['geo_page_size'] = geoPageSize;
|
|
26929
27099
|
}
|
|
26930
27100
|
|
|
27101
|
+
if (itemGeoSearch !== undefined) {
|
|
27102
|
+
localVarQueryParameter['item_geo_search'] = itemGeoSearch;
|
|
27103
|
+
}
|
|
27104
|
+
|
|
26931
27105
|
if (groupBy !== undefined) {
|
|
26932
27106
|
localVarQueryParameter['group_by'] = groupBy;
|
|
26933
27107
|
}
|
|
@@ -27302,6 +27476,7 @@ export const ItemAnalyticsApiFp = function(configuration?: Configuration) {
|
|
|
27302
27476
|
* @param {string} xStoreID Store ID
|
|
27303
27477
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
27304
27478
|
* @param {string} [endTime] End time in RFC3339 format
|
|
27479
|
+
* @param {string} [search] Search term to filter items (case-insensitive partial match on item IDs and related data)
|
|
27305
27480
|
* @param {string} [itemIds] Comma-separated list of item IDs to filter
|
|
27306
27481
|
* @param {number} [itemLimit] Maximum number of items to return
|
|
27307
27482
|
* @param {number} [minImpressions] Minimum number of impressions required
|
|
@@ -27316,8 +27491,8 @@ export const ItemAnalyticsApiFp = function(configuration?: Configuration) {
|
|
|
27316
27491
|
* @param {*} [options] Override http request option.
|
|
27317
27492
|
* @throws {RequiredError}
|
|
27318
27493
|
*/
|
|
27319
|
-
async adminAnalyticsStoreXStoreIDItemsGet(xStoreID: string, startTime?: string, endTime?: string, itemIds?: string, itemLimit?: number, minImpressions?: number, maxPosition?: number, sortBy?: AdminAnalyticsStoreXStoreIDItemsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDItemsGetSortOrderEnum, sort?: string, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AnalyticsAnalyticsAPIResponse>> {
|
|
27320
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.adminAnalyticsStoreXStoreIDItemsGet(xStoreID, startTime, endTime, itemIds, itemLimit, minImpressions, maxPosition, sortBy, sortOrder, sort, limit, offset, page, pageSize, options);
|
|
27494
|
+
async adminAnalyticsStoreXStoreIDItemsGet(xStoreID: string, startTime?: string, endTime?: string, search?: string, itemIds?: string, itemLimit?: number, minImpressions?: number, maxPosition?: number, sortBy?: AdminAnalyticsStoreXStoreIDItemsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDItemsGetSortOrderEnum, sort?: string, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AnalyticsAnalyticsAPIResponse>> {
|
|
27495
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.adminAnalyticsStoreXStoreIDItemsGet(xStoreID, startTime, endTime, search, itemIds, itemLimit, minImpressions, maxPosition, sortBy, sortOrder, sort, limit, offset, page, pageSize, options);
|
|
27321
27496
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
27322
27497
|
const localVarOperationServerBasePath = operationServerMap['ItemAnalyticsApi.adminAnalyticsStoreXStoreIDItemsGet']?.[localVarOperationServerIndex]?.url;
|
|
27323
27498
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -27360,16 +27535,19 @@ export const ItemAnalyticsApiFp = function(configuration?: Configuration) {
|
|
|
27360
27535
|
* @param {string} [compareTagValueFilter] Tag value filter for comparison period
|
|
27361
27536
|
* @param {number} [resultsPage] Page number for popular queries pagination
|
|
27362
27537
|
* @param {number} [resultsPageSize] Number of queries per page for popular queries
|
|
27538
|
+
* @param {string} [itemQueriesSearch] Search term to filter popular queries (case-insensitive partial match on query text)
|
|
27363
27539
|
* @param {number} [filtersPage] Page number for popular filters pagination
|
|
27364
27540
|
* @param {number} [filtersPageSize] Number of filters per page
|
|
27541
|
+
* @param {string} [itemFiltersSearch] Search term to filter popular filters (case-insensitive partial match on filter keys/values)
|
|
27365
27542
|
* @param {number} [geoPage] Page number for geo analytics pagination
|
|
27366
27543
|
* @param {number} [geoPageSize] Number of geo locations per page
|
|
27544
|
+
* @param {string} [itemGeoSearch] Search term to filter geo analytics (case-insensitive partial match on country/region/city)
|
|
27367
27545
|
* @param {AdminAnalyticsStoreXStoreIDItemsItemIdInsightsGetGroupByEnum} [groupBy] Include performance trends by date
|
|
27368
27546
|
* @param {*} [options] Override http request option.
|
|
27369
27547
|
* @throws {RequiredError}
|
|
27370
27548
|
*/
|
|
27371
|
-
async adminAnalyticsStoreXStoreIDItemsItemIdInsightsGet(xStoreID: string, itemId: string, startTime?: string, endTime?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDItemsItemIdInsightsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDItemsItemIdInsightsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, resultsPage?: number, resultsPageSize?: number, filtersPage?: number, filtersPageSize?: number, geoPage?: number, geoPageSize?: number, groupBy?: AdminAnalyticsStoreXStoreIDItemsItemIdInsightsGetGroupByEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminAnalyticsStoreXStoreIDItemsItemIdInsightsGet200Response>> {
|
|
27372
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.adminAnalyticsStoreXStoreIDItemsItemIdInsightsGet(xStoreID, itemId, startTime, endTime, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, resultsPage, resultsPageSize, filtersPage, filtersPageSize, geoPage, geoPageSize, groupBy, options);
|
|
27549
|
+
async adminAnalyticsStoreXStoreIDItemsItemIdInsightsGet(xStoreID: string, itemId: string, startTime?: string, endTime?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDItemsItemIdInsightsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDItemsItemIdInsightsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, resultsPage?: number, resultsPageSize?: number, itemQueriesSearch?: string, filtersPage?: number, filtersPageSize?: number, itemFiltersSearch?: string, geoPage?: number, geoPageSize?: number, itemGeoSearch?: string, groupBy?: AdminAnalyticsStoreXStoreIDItemsItemIdInsightsGetGroupByEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminAnalyticsStoreXStoreIDItemsItemIdInsightsGet200Response>> {
|
|
27550
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.adminAnalyticsStoreXStoreIDItemsItemIdInsightsGet(xStoreID, itemId, startTime, endTime, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, resultsPage, resultsPageSize, itemQueriesSearch, filtersPage, filtersPageSize, itemFiltersSearch, geoPage, geoPageSize, itemGeoSearch, groupBy, options);
|
|
27373
27551
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
27374
27552
|
const localVarOperationServerBasePath = operationServerMap['ItemAnalyticsApi.adminAnalyticsStoreXStoreIDItemsItemIdInsightsGet']?.[localVarOperationServerIndex]?.url;
|
|
27375
27553
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -27503,6 +27681,7 @@ export const ItemAnalyticsApiFactory = function (configuration?: Configuration,
|
|
|
27503
27681
|
* @param {string} xStoreID Store ID
|
|
27504
27682
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
27505
27683
|
* @param {string} [endTime] End time in RFC3339 format
|
|
27684
|
+
* @param {string} [search] Search term to filter items (case-insensitive partial match on item IDs and related data)
|
|
27506
27685
|
* @param {string} [itemIds] Comma-separated list of item IDs to filter
|
|
27507
27686
|
* @param {number} [itemLimit] Maximum number of items to return
|
|
27508
27687
|
* @param {number} [minImpressions] Minimum number of impressions required
|
|
@@ -27517,8 +27696,8 @@ export const ItemAnalyticsApiFactory = function (configuration?: Configuration,
|
|
|
27517
27696
|
* @param {*} [options] Override http request option.
|
|
27518
27697
|
* @throws {RequiredError}
|
|
27519
27698
|
*/
|
|
27520
|
-
adminAnalyticsStoreXStoreIDItemsGet(xStoreID: string, startTime?: string, endTime?: string, itemIds?: string, itemLimit?: number, minImpressions?: number, maxPosition?: number, sortBy?: AdminAnalyticsStoreXStoreIDItemsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDItemsGetSortOrderEnum, sort?: string, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): AxiosPromise<AnalyticsAnalyticsAPIResponse> {
|
|
27521
|
-
return localVarFp.adminAnalyticsStoreXStoreIDItemsGet(xStoreID, startTime, endTime, itemIds, itemLimit, minImpressions, maxPosition, sortBy, sortOrder, sort, limit, offset, page, pageSize, options).then((request) => request(axios, basePath));
|
|
27699
|
+
adminAnalyticsStoreXStoreIDItemsGet(xStoreID: string, startTime?: string, endTime?: string, search?: string, itemIds?: string, itemLimit?: number, minImpressions?: number, maxPosition?: number, sortBy?: AdminAnalyticsStoreXStoreIDItemsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDItemsGetSortOrderEnum, sort?: string, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): AxiosPromise<AnalyticsAnalyticsAPIResponse> {
|
|
27700
|
+
return localVarFp.adminAnalyticsStoreXStoreIDItemsGet(xStoreID, startTime, endTime, search, itemIds, itemLimit, minImpressions, maxPosition, sortBy, sortOrder, sort, limit, offset, page, pageSize, options).then((request) => request(axios, basePath));
|
|
27522
27701
|
},
|
|
27523
27702
|
/**
|
|
27524
27703
|
* Retrieve detailed analytics for a specific item including performance metrics and discovery data
|
|
@@ -27555,16 +27734,19 @@ export const ItemAnalyticsApiFactory = function (configuration?: Configuration,
|
|
|
27555
27734
|
* @param {string} [compareTagValueFilter] Tag value filter for comparison period
|
|
27556
27735
|
* @param {number} [resultsPage] Page number for popular queries pagination
|
|
27557
27736
|
* @param {number} [resultsPageSize] Number of queries per page for popular queries
|
|
27737
|
+
* @param {string} [itemQueriesSearch] Search term to filter popular queries (case-insensitive partial match on query text)
|
|
27558
27738
|
* @param {number} [filtersPage] Page number for popular filters pagination
|
|
27559
27739
|
* @param {number} [filtersPageSize] Number of filters per page
|
|
27740
|
+
* @param {string} [itemFiltersSearch] Search term to filter popular filters (case-insensitive partial match on filter keys/values)
|
|
27560
27741
|
* @param {number} [geoPage] Page number for geo analytics pagination
|
|
27561
27742
|
* @param {number} [geoPageSize] Number of geo locations per page
|
|
27743
|
+
* @param {string} [itemGeoSearch] Search term to filter geo analytics (case-insensitive partial match on country/region/city)
|
|
27562
27744
|
* @param {AdminAnalyticsStoreXStoreIDItemsItemIdInsightsGetGroupByEnum} [groupBy] Include performance trends by date
|
|
27563
27745
|
* @param {*} [options] Override http request option.
|
|
27564
27746
|
* @throws {RequiredError}
|
|
27565
27747
|
*/
|
|
27566
|
-
adminAnalyticsStoreXStoreIDItemsItemIdInsightsGet(xStoreID: string, itemId: string, startTime?: string, endTime?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDItemsItemIdInsightsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDItemsItemIdInsightsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, resultsPage?: number, resultsPageSize?: number, filtersPage?: number, filtersPageSize?: number, geoPage?: number, geoPageSize?: number, groupBy?: AdminAnalyticsStoreXStoreIDItemsItemIdInsightsGetGroupByEnum, options?: RawAxiosRequestConfig): AxiosPromise<AdminAnalyticsStoreXStoreIDItemsItemIdInsightsGet200Response> {
|
|
27567
|
-
return localVarFp.adminAnalyticsStoreXStoreIDItemsItemIdInsightsGet(xStoreID, itemId, startTime, endTime, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, resultsPage, resultsPageSize, filtersPage, filtersPageSize, geoPage, geoPageSize, groupBy, options).then((request) => request(axios, basePath));
|
|
27748
|
+
adminAnalyticsStoreXStoreIDItemsItemIdInsightsGet(xStoreID: string, itemId: string, startTime?: string, endTime?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDItemsItemIdInsightsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDItemsItemIdInsightsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, resultsPage?: number, resultsPageSize?: number, itemQueriesSearch?: string, filtersPage?: number, filtersPageSize?: number, itemFiltersSearch?: string, geoPage?: number, geoPageSize?: number, itemGeoSearch?: string, groupBy?: AdminAnalyticsStoreXStoreIDItemsItemIdInsightsGetGroupByEnum, options?: RawAxiosRequestConfig): AxiosPromise<AdminAnalyticsStoreXStoreIDItemsItemIdInsightsGet200Response> {
|
|
27749
|
+
return localVarFp.adminAnalyticsStoreXStoreIDItemsItemIdInsightsGet(xStoreID, itemId, startTime, endTime, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, resultsPage, resultsPageSize, itemQueriesSearch, filtersPage, filtersPageSize, itemFiltersSearch, geoPage, geoPageSize, itemGeoSearch, groupBy, options).then((request) => request(axios, basePath));
|
|
27568
27750
|
},
|
|
27569
27751
|
/**
|
|
27570
27752
|
* Retrieve detailed performance metrics for items including click-through rates, conversion rates, and revenue data
|
|
@@ -27690,6 +27872,7 @@ export class ItemAnalyticsApi extends BaseAPI {
|
|
|
27690
27872
|
* @param {string} xStoreID Store ID
|
|
27691
27873
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
27692
27874
|
* @param {string} [endTime] End time in RFC3339 format
|
|
27875
|
+
* @param {string} [search] Search term to filter items (case-insensitive partial match on item IDs and related data)
|
|
27693
27876
|
* @param {string} [itemIds] Comma-separated list of item IDs to filter
|
|
27694
27877
|
* @param {number} [itemLimit] Maximum number of items to return
|
|
27695
27878
|
* @param {number} [minImpressions] Minimum number of impressions required
|
|
@@ -27705,8 +27888,8 @@ export class ItemAnalyticsApi extends BaseAPI {
|
|
|
27705
27888
|
* @throws {RequiredError}
|
|
27706
27889
|
* @memberof ItemAnalyticsApi
|
|
27707
27890
|
*/
|
|
27708
|
-
public adminAnalyticsStoreXStoreIDItemsGet(xStoreID: string, startTime?: string, endTime?: string, itemIds?: string, itemLimit?: number, minImpressions?: number, maxPosition?: number, sortBy?: AdminAnalyticsStoreXStoreIDItemsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDItemsGetSortOrderEnum, sort?: string, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig) {
|
|
27709
|
-
return ItemAnalyticsApiFp(this.configuration).adminAnalyticsStoreXStoreIDItemsGet(xStoreID, startTime, endTime, itemIds, itemLimit, minImpressions, maxPosition, sortBy, sortOrder, sort, limit, offset, page, pageSize, options).then((request) => request(this.axios, this.basePath));
|
|
27891
|
+
public adminAnalyticsStoreXStoreIDItemsGet(xStoreID: string, startTime?: string, endTime?: string, search?: string, itemIds?: string, itemLimit?: number, minImpressions?: number, maxPosition?: number, sortBy?: AdminAnalyticsStoreXStoreIDItemsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDItemsGetSortOrderEnum, sort?: string, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig) {
|
|
27892
|
+
return ItemAnalyticsApiFp(this.configuration).adminAnalyticsStoreXStoreIDItemsGet(xStoreID, startTime, endTime, search, itemIds, itemLimit, minImpressions, maxPosition, sortBy, sortOrder, sort, limit, offset, page, pageSize, options).then((request) => request(this.axios, this.basePath));
|
|
27710
27893
|
}
|
|
27711
27894
|
|
|
27712
27895
|
/**
|
|
@@ -27746,17 +27929,20 @@ export class ItemAnalyticsApi extends BaseAPI {
|
|
|
27746
27929
|
* @param {string} [compareTagValueFilter] Tag value filter for comparison period
|
|
27747
27930
|
* @param {number} [resultsPage] Page number for popular queries pagination
|
|
27748
27931
|
* @param {number} [resultsPageSize] Number of queries per page for popular queries
|
|
27932
|
+
* @param {string} [itemQueriesSearch] Search term to filter popular queries (case-insensitive partial match on query text)
|
|
27749
27933
|
* @param {number} [filtersPage] Page number for popular filters pagination
|
|
27750
27934
|
* @param {number} [filtersPageSize] Number of filters per page
|
|
27935
|
+
* @param {string} [itemFiltersSearch] Search term to filter popular filters (case-insensitive partial match on filter keys/values)
|
|
27751
27936
|
* @param {number} [geoPage] Page number for geo analytics pagination
|
|
27752
27937
|
* @param {number} [geoPageSize] Number of geo locations per page
|
|
27938
|
+
* @param {string} [itemGeoSearch] Search term to filter geo analytics (case-insensitive partial match on country/region/city)
|
|
27753
27939
|
* @param {AdminAnalyticsStoreXStoreIDItemsItemIdInsightsGetGroupByEnum} [groupBy] Include performance trends by date
|
|
27754
27940
|
* @param {*} [options] Override http request option.
|
|
27755
27941
|
* @throws {RequiredError}
|
|
27756
27942
|
* @memberof ItemAnalyticsApi
|
|
27757
27943
|
*/
|
|
27758
|
-
public adminAnalyticsStoreXStoreIDItemsItemIdInsightsGet(xStoreID: string, itemId: string, startTime?: string, endTime?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDItemsItemIdInsightsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDItemsItemIdInsightsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, resultsPage?: number, resultsPageSize?: number, filtersPage?: number, filtersPageSize?: number, geoPage?: number, geoPageSize?: number, groupBy?: AdminAnalyticsStoreXStoreIDItemsItemIdInsightsGetGroupByEnum, options?: RawAxiosRequestConfig) {
|
|
27759
|
-
return ItemAnalyticsApiFp(this.configuration).adminAnalyticsStoreXStoreIDItemsItemIdInsightsGet(xStoreID, itemId, startTime, endTime, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, resultsPage, resultsPageSize, filtersPage, filtersPageSize, geoPage, geoPageSize, groupBy, options).then((request) => request(this.axios, this.basePath));
|
|
27944
|
+
public adminAnalyticsStoreXStoreIDItemsItemIdInsightsGet(xStoreID: string, itemId: string, startTime?: string, endTime?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDItemsItemIdInsightsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDItemsItemIdInsightsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, resultsPage?: number, resultsPageSize?: number, itemQueriesSearch?: string, filtersPage?: number, filtersPageSize?: number, itemFiltersSearch?: string, geoPage?: number, geoPageSize?: number, itemGeoSearch?: string, groupBy?: AdminAnalyticsStoreXStoreIDItemsItemIdInsightsGetGroupByEnum, options?: RawAxiosRequestConfig) {
|
|
27945
|
+
return ItemAnalyticsApiFp(this.configuration).adminAnalyticsStoreXStoreIDItemsItemIdInsightsGet(xStoreID, itemId, startTime, endTime, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, resultsPage, resultsPageSize, itemQueriesSearch, filtersPage, filtersPageSize, itemFiltersSearch, geoPage, geoPageSize, itemGeoSearch, groupBy, options).then((request) => request(this.axios, this.basePath));
|
|
27760
27946
|
}
|
|
27761
27947
|
|
|
27762
27948
|
/**
|
|
@@ -37360,13 +37546,13 @@ export const RefundManagementApiAxiosParamCreator = function (configuration?: Co
|
|
|
37360
37546
|
};
|
|
37361
37547
|
},
|
|
37362
37548
|
/**
|
|
37363
|
-
* Gets the current status and details of a refund request
|
|
37549
|
+
* Gets the current status and details of a refund request by refund_id (UUID)
|
|
37364
37550
|
* @summary Get refund request status
|
|
37365
|
-
* @param {
|
|
37551
|
+
* @param {string} id Refund ID (UUID)
|
|
37366
37552
|
* @param {*} [options] Override http request option.
|
|
37367
37553
|
* @throws {RequiredError}
|
|
37368
37554
|
*/
|
|
37369
|
-
paymentGatewayRefundStatusIdGet: async (id:
|
|
37555
|
+
paymentGatewayRefundStatusIdGet: async (id: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
37370
37556
|
// verify required parameter 'id' is not null or undefined
|
|
37371
37557
|
assertParamExists('paymentGatewayRefundStatusIdGet', 'id', id)
|
|
37372
37558
|
const localVarPath = `/payment-gateway/refund-status/{id}`
|
|
@@ -37528,13 +37714,13 @@ export const RefundManagementApiFp = function(configuration?: Configuration) {
|
|
|
37528
37714
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
37529
37715
|
},
|
|
37530
37716
|
/**
|
|
37531
|
-
* Gets the current status and details of a refund request
|
|
37717
|
+
* Gets the current status and details of a refund request by refund_id (UUID)
|
|
37532
37718
|
* @summary Get refund request status
|
|
37533
|
-
* @param {
|
|
37719
|
+
* @param {string} id Refund ID (UUID)
|
|
37534
37720
|
* @param {*} [options] Override http request option.
|
|
37535
37721
|
* @throws {RequiredError}
|
|
37536
37722
|
*/
|
|
37537
|
-
async paymentGatewayRefundStatusIdGet(id:
|
|
37723
|
+
async paymentGatewayRefundStatusIdGet(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesRefundStatusDto>> {
|
|
37538
37724
|
const localVarAxiosArgs = await localVarAxiosParamCreator.paymentGatewayRefundStatusIdGet(id, options);
|
|
37539
37725
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
37540
37726
|
const localVarOperationServerBasePath = operationServerMap['RefundManagementApi.paymentGatewayRefundStatusIdGet']?.[localVarOperationServerIndex]?.url;
|
|
@@ -37602,13 +37788,13 @@ export const RefundManagementApiFactory = function (configuration?: Configuratio
|
|
|
37602
37788
|
return localVarFp.paymentGatewayRefundRequestPost(dataTypesCreateRefundRequestDto, options).then((request) => request(axios, basePath));
|
|
37603
37789
|
},
|
|
37604
37790
|
/**
|
|
37605
|
-
* Gets the current status and details of a refund request
|
|
37791
|
+
* Gets the current status and details of a refund request by refund_id (UUID)
|
|
37606
37792
|
* @summary Get refund request status
|
|
37607
|
-
* @param {
|
|
37793
|
+
* @param {string} id Refund ID (UUID)
|
|
37608
37794
|
* @param {*} [options] Override http request option.
|
|
37609
37795
|
* @throws {RequiredError}
|
|
37610
37796
|
*/
|
|
37611
|
-
paymentGatewayRefundStatusIdGet(id:
|
|
37797
|
+
paymentGatewayRefundStatusIdGet(id: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesRefundStatusDto> {
|
|
37612
37798
|
return localVarFp.paymentGatewayRefundStatusIdGet(id, options).then((request) => request(axios, basePath));
|
|
37613
37799
|
},
|
|
37614
37800
|
/**
|
|
@@ -37676,14 +37862,14 @@ export class RefundManagementApi extends BaseAPI {
|
|
|
37676
37862
|
}
|
|
37677
37863
|
|
|
37678
37864
|
/**
|
|
37679
|
-
* Gets the current status and details of a refund request
|
|
37865
|
+
* Gets the current status and details of a refund request by refund_id (UUID)
|
|
37680
37866
|
* @summary Get refund request status
|
|
37681
|
-
* @param {
|
|
37867
|
+
* @param {string} id Refund ID (UUID)
|
|
37682
37868
|
* @param {*} [options] Override http request option.
|
|
37683
37869
|
* @throws {RequiredError}
|
|
37684
37870
|
* @memberof RefundManagementApi
|
|
37685
37871
|
*/
|
|
37686
|
-
public paymentGatewayRefundStatusIdGet(id:
|
|
37872
|
+
public paymentGatewayRefundStatusIdGet(id: string, options?: RawAxiosRequestConfig) {
|
|
37687
37873
|
return RefundManagementApiFp(this.configuration).paymentGatewayRefundStatusIdGet(id, options).then((request) => request(this.axios, this.basePath));
|
|
37688
37874
|
}
|
|
37689
37875
|
|