@seekora-ai/admin-api 1.0.64 → 1.0.66
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 +257 -63
- package/dist/api.d.ts +167 -45
- package/dist/api.js +187 -54
- package/dist/esm/api.d.ts +167 -45
- package/dist/esm/api.js +183 -50
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.0.66.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
|
}
|
|
@@ -20154,6 +20261,7 @@ export const AnalyticsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
20154
20261
|
* @param {string} xStoreID Store ID
|
|
20155
20262
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
20156
20263
|
* @param {string} [endTime] End time in RFC3339 format
|
|
20264
|
+
* @param {string} [search] Search term to filter items (case-insensitive partial match on item IDs)
|
|
20157
20265
|
* @param {string} [itemIds] Comma-separated list of item IDs to filter
|
|
20158
20266
|
* @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \'campaign:summer,source:email\')
|
|
20159
20267
|
* @param {AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
|
|
@@ -20181,7 +20289,7 @@ export const AnalyticsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
20181
20289
|
* @param {*} [options] Override http request option.
|
|
20182
20290
|
* @throws {RequiredError}
|
|
20183
20291
|
*/
|
|
20184
|
-
adminAnalyticsStoreXStoreIDResultsGet: async (xStoreID: string, startTime?: string, endTime?: string, itemIds?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, minImpressions?: number, sortBy?: AdminAnalyticsStoreXStoreIDResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDResultsGetSortOrderEnum, sort?: string, includeDocuments?: boolean, includeWidget?: boolean, limit?: number, offset?: number, page?: number, pageSize?: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
20292
|
+
adminAnalyticsStoreXStoreIDResultsGet: async (xStoreID: string, startTime?: string, endTime?: string, search?: string, itemIds?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, minImpressions?: number, sortBy?: AdminAnalyticsStoreXStoreIDResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDResultsGetSortOrderEnum, sort?: string, includeDocuments?: boolean, includeWidget?: boolean, limit?: number, offset?: number, page?: number, pageSize?: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
20185
20293
|
// verify required parameter 'xStoreID' is not null or undefined
|
|
20186
20294
|
assertParamExists('adminAnalyticsStoreXStoreIDResultsGet', 'xStoreID', xStoreID)
|
|
20187
20295
|
const localVarPath = `/admin/analytics/store/{xStoreID}/results`
|
|
@@ -20208,6 +20316,10 @@ export const AnalyticsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
20208
20316
|
localVarQueryParameter['end_time'] = endTime;
|
|
20209
20317
|
}
|
|
20210
20318
|
|
|
20319
|
+
if (search !== undefined) {
|
|
20320
|
+
localVarQueryParameter['search'] = search;
|
|
20321
|
+
}
|
|
20322
|
+
|
|
20211
20323
|
if (itemIds !== undefined) {
|
|
20212
20324
|
localVarQueryParameter['item_ids'] = itemIds;
|
|
20213
20325
|
}
|
|
@@ -20633,6 +20745,7 @@ export const AnalyticsApiFp = function(configuration?: Configuration) {
|
|
|
20633
20745
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
20634
20746
|
* @param {string} [endTime] End time in RFC3339 format
|
|
20635
20747
|
* @param {AdminAnalyticsStoreXStoreIDGeoGetGranularityEnum} [granularity] Time granularity
|
|
20748
|
+
* @param {string} [search] Search term to filter geographic locations (case-insensitive partial match on country, region, city)
|
|
20636
20749
|
* @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \'campaign:summer,source:email\')
|
|
20637
20750
|
* @param {AdminAnalyticsStoreXStoreIDGeoGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
|
|
20638
20751
|
* @param {string} [tagsExclude] Comma-separated analytics tags to exclude
|
|
@@ -20656,8 +20769,8 @@ export const AnalyticsApiFp = function(configuration?: Configuration) {
|
|
|
20656
20769
|
* @param {*} [options] Override http request option.
|
|
20657
20770
|
* @throws {RequiredError}
|
|
20658
20771
|
*/
|
|
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);
|
|
20772
|
+
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>> {
|
|
20773
|
+
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
20774
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
20662
20775
|
const localVarOperationServerBasePath = operationServerMap['AnalyticsApi.adminAnalyticsStoreXStoreIDGeoGet']?.[localVarOperationServerIndex]?.url;
|
|
20663
20776
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -20686,15 +20799,18 @@ export const AnalyticsApiFp = function(configuration?: Configuration) {
|
|
|
20686
20799
|
* @param {string} [compareTagValueFilter] Tag value filter for comparison period
|
|
20687
20800
|
* @param {number} [queriesPage] Page number for popular queries pagination
|
|
20688
20801
|
* @param {number} [queriesPageSize] Number of queries per page for popular queries
|
|
20802
|
+
* @param {string} [geoQueriesSearch] Search term to filter popular queries (case-insensitive partial match on query text)
|
|
20689
20803
|
* @param {number} [resultsPage] Page number for top results pagination
|
|
20690
20804
|
* @param {number} [resultsPageSize] Number of results per page for top results
|
|
20805
|
+
* @param {string} [geoResultsSearch] Search term to filter top results (case-insensitive partial match on item IDs)
|
|
20691
20806
|
* @param {number} [filtersPage] Page number for popular filters pagination
|
|
20692
20807
|
* @param {number} [filtersPageSize] Number of filters per page
|
|
20808
|
+
* @param {string} [geoFiltersSearch] Search term to filter popular filters (case-insensitive partial match on filter keys/values)
|
|
20693
20809
|
* @param {*} [options] Override http request option.
|
|
20694
20810
|
* @throws {RequiredError}
|
|
20695
20811
|
*/
|
|
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);
|
|
20812
|
+
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>> {
|
|
20813
|
+
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
20814
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
20699
20815
|
const localVarOperationServerBasePath = operationServerMap['AnalyticsApi.adminAnalyticsStoreXStoreIDGeoInsightsGet']?.[localVarOperationServerIndex]?.url;
|
|
20700
20816
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -20875,6 +20991,12 @@ export const AnalyticsApiFp = function(configuration?: Configuration) {
|
|
|
20875
20991
|
* @param {string} query Search query to analyze
|
|
20876
20992
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
20877
20993
|
* @param {string} [endTime] End time in RFC3339 format
|
|
20994
|
+
* @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \'campaign:summer,source:email\')
|
|
20995
|
+
* @param {AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
|
|
20996
|
+
* @param {string} [tagsExclude] Comma-separated analytics tags to exclude
|
|
20997
|
+
* @param {string} [tagKeyFilter] Filter by tag key pattern (matches tags starting with key:)
|
|
20998
|
+
* @param {string} [tagValueFilter] Filter by tag value pattern (matches tags ending with :value)
|
|
20999
|
+
* @param {string} [search] Search term to filter popular results, filters, and geo analytics (case-insensitive partial match)
|
|
20878
21000
|
* @param {boolean} [compareMode] Enable comparison mode to compare with another time period/tag set
|
|
20879
21001
|
* @param {string} [compareStartTime] Comparison period start time in RFC3339 format
|
|
20880
21002
|
* @param {string} [compareEndTime] Comparison period end time in RFC3339 format
|
|
@@ -20885,16 +21007,19 @@ export const AnalyticsApiFp = function(configuration?: Configuration) {
|
|
|
20885
21007
|
* @param {string} [compareTagValueFilter] Tag value filter for comparison period
|
|
20886
21008
|
* @param {number} [resultsPage] Page number for popular results pagination
|
|
20887
21009
|
* @param {number} [resultsPageSize] Number of results per page for popular results
|
|
21010
|
+
* @param {string} [resultsSearch] Search term to filter popular results (case-insensitive partial match on item IDs)
|
|
20888
21011
|
* @param {number} [filtersPage] Page number for popular filters pagination
|
|
20889
21012
|
* @param {number} [filtersPageSize] Number of filters per page
|
|
21013
|
+
* @param {string} [filtersSearch] Search term to filter popular filters (case-insensitive partial match on filter keys/values)
|
|
20890
21014
|
* @param {number} [geoPage] Page number for geo analytics pagination
|
|
20891
21015
|
* @param {number} [geoPageSize] Number of geo locations per page
|
|
21016
|
+
* @param {string} [geoSearch] Search term to filter geo analytics (case-insensitive partial match on country/region/city)
|
|
20892
21017
|
* @param {boolean} [includeWidget] Whether to include widget display fields for popular results
|
|
20893
21018
|
* @param {*} [options] Override http request option.
|
|
20894
21019
|
* @throws {RequiredError}
|
|
20895
21020
|
*/
|
|
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);
|
|
21021
|
+
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>> {
|
|
21022
|
+
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
21023
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
20899
21024
|
const localVarOperationServerBasePath = operationServerMap['AnalyticsApi.adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet']?.[localVarOperationServerIndex]?.url;
|
|
20900
21025
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -20905,6 +21030,7 @@ export const AnalyticsApiFp = function(configuration?: Configuration) {
|
|
|
20905
21030
|
* @param {string} xStoreID Store ID
|
|
20906
21031
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
20907
21032
|
* @param {string} [endTime] End time in RFC3339 format
|
|
21033
|
+
* @param {string} [search] Search term to filter items (case-insensitive partial match on item IDs)
|
|
20908
21034
|
* @param {string} [itemIds] Comma-separated list of item IDs to filter
|
|
20909
21035
|
* @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \'campaign:summer,source:email\')
|
|
20910
21036
|
* @param {AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
|
|
@@ -20932,8 +21058,8 @@ export const AnalyticsApiFp = function(configuration?: Configuration) {
|
|
|
20932
21058
|
* @param {*} [options] Override http request option.
|
|
20933
21059
|
* @throws {RequiredError}
|
|
20934
21060
|
*/
|
|
20935
|
-
async adminAnalyticsStoreXStoreIDResultsGet(xStoreID: string, startTime?: string, endTime?: string, itemIds?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, minImpressions?: number, sortBy?: AdminAnalyticsStoreXStoreIDResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDResultsGetSortOrderEnum, sort?: string, includeDocuments?: boolean, includeWidget?: boolean, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminAnalyticsStoreXStoreIDItemsPerformanceGet200Response>> {
|
|
20936
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.adminAnalyticsStoreXStoreIDResultsGet(xStoreID, startTime, endTime, itemIds, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, minImpressions, sortBy, sortOrder, sort, includeDocuments, includeWidget, limit, offset, page, pageSize, options);
|
|
21061
|
+
async adminAnalyticsStoreXStoreIDResultsGet(xStoreID: string, startTime?: string, endTime?: string, search?: string, itemIds?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, minImpressions?: number, sortBy?: AdminAnalyticsStoreXStoreIDResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDResultsGetSortOrderEnum, sort?: string, includeDocuments?: boolean, includeWidget?: boolean, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminAnalyticsStoreXStoreIDItemsPerformanceGet200Response>> {
|
|
21062
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.adminAnalyticsStoreXStoreIDResultsGet(xStoreID, startTime, endTime, search, itemIds, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, minImpressions, sortBy, sortOrder, sort, includeDocuments, includeWidget, limit, offset, page, pageSize, options);
|
|
20937
21063
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
20938
21064
|
const localVarOperationServerBasePath = operationServerMap['AnalyticsApi.adminAnalyticsStoreXStoreIDResultsGet']?.[localVarOperationServerIndex]?.url;
|
|
20939
21065
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -21108,6 +21234,7 @@ export const AnalyticsApiFactory = function (configuration?: Configuration, base
|
|
|
21108
21234
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
21109
21235
|
* @param {string} [endTime] End time in RFC3339 format
|
|
21110
21236
|
* @param {AdminAnalyticsStoreXStoreIDGeoGetGranularityEnum} [granularity] Time granularity
|
|
21237
|
+
* @param {string} [search] Search term to filter geographic locations (case-insensitive partial match on country, region, city)
|
|
21111
21238
|
* @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \'campaign:summer,source:email\')
|
|
21112
21239
|
* @param {AdminAnalyticsStoreXStoreIDGeoGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
|
|
21113
21240
|
* @param {string} [tagsExclude] Comma-separated analytics tags to exclude
|
|
@@ -21131,8 +21258,8 @@ export const AnalyticsApiFactory = function (configuration?: Configuration, base
|
|
|
21131
21258
|
* @param {*} [options] Override http request option.
|
|
21132
21259
|
* @throws {RequiredError}
|
|
21133
21260
|
*/
|
|
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));
|
|
21261
|
+
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> {
|
|
21262
|
+
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
21263
|
},
|
|
21137
21264
|
/**
|
|
21138
21265
|
* 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 +21285,18 @@ export const AnalyticsApiFactory = function (configuration?: Configuration, base
|
|
|
21158
21285
|
* @param {string} [compareTagValueFilter] Tag value filter for comparison period
|
|
21159
21286
|
* @param {number} [queriesPage] Page number for popular queries pagination
|
|
21160
21287
|
* @param {number} [queriesPageSize] Number of queries per page for popular queries
|
|
21288
|
+
* @param {string} [geoQueriesSearch] Search term to filter popular queries (case-insensitive partial match on query text)
|
|
21161
21289
|
* @param {number} [resultsPage] Page number for top results pagination
|
|
21162
21290
|
* @param {number} [resultsPageSize] Number of results per page for top results
|
|
21291
|
+
* @param {string} [geoResultsSearch] Search term to filter top results (case-insensitive partial match on item IDs)
|
|
21163
21292
|
* @param {number} [filtersPage] Page number for popular filters pagination
|
|
21164
21293
|
* @param {number} [filtersPageSize] Number of filters per page
|
|
21294
|
+
* @param {string} [geoFiltersSearch] Search term to filter popular filters (case-insensitive partial match on filter keys/values)
|
|
21165
21295
|
* @param {*} [options] Override http request option.
|
|
21166
21296
|
* @throws {RequiredError}
|
|
21167
21297
|
*/
|
|
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));
|
|
21298
|
+
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> {
|
|
21299
|
+
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
21300
|
},
|
|
21171
21301
|
/**
|
|
21172
21302
|
* Check the health status of analytics service and ClickHouse connection
|
|
@@ -21326,6 +21456,12 @@ export const AnalyticsApiFactory = function (configuration?: Configuration, base
|
|
|
21326
21456
|
* @param {string} query Search query to analyze
|
|
21327
21457
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
21328
21458
|
* @param {string} [endTime] End time in RFC3339 format
|
|
21459
|
+
* @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \'campaign:summer,source:email\')
|
|
21460
|
+
* @param {AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
|
|
21461
|
+
* @param {string} [tagsExclude] Comma-separated analytics tags to exclude
|
|
21462
|
+
* @param {string} [tagKeyFilter] Filter by tag key pattern (matches tags starting with key:)
|
|
21463
|
+
* @param {string} [tagValueFilter] Filter by tag value pattern (matches tags ending with :value)
|
|
21464
|
+
* @param {string} [search] Search term to filter popular results, filters, and geo analytics (case-insensitive partial match)
|
|
21329
21465
|
* @param {boolean} [compareMode] Enable comparison mode to compare with another time period/tag set
|
|
21330
21466
|
* @param {string} [compareStartTime] Comparison period start time in RFC3339 format
|
|
21331
21467
|
* @param {string} [compareEndTime] Comparison period end time in RFC3339 format
|
|
@@ -21336,16 +21472,19 @@ export const AnalyticsApiFactory = function (configuration?: Configuration, base
|
|
|
21336
21472
|
* @param {string} [compareTagValueFilter] Tag value filter for comparison period
|
|
21337
21473
|
* @param {number} [resultsPage] Page number for popular results pagination
|
|
21338
21474
|
* @param {number} [resultsPageSize] Number of results per page for popular results
|
|
21475
|
+
* @param {string} [resultsSearch] Search term to filter popular results (case-insensitive partial match on item IDs)
|
|
21339
21476
|
* @param {number} [filtersPage] Page number for popular filters pagination
|
|
21340
21477
|
* @param {number} [filtersPageSize] Number of filters per page
|
|
21478
|
+
* @param {string} [filtersSearch] Search term to filter popular filters (case-insensitive partial match on filter keys/values)
|
|
21341
21479
|
* @param {number} [geoPage] Page number for geo analytics pagination
|
|
21342
21480
|
* @param {number} [geoPageSize] Number of geo locations per page
|
|
21481
|
+
* @param {string} [geoSearch] Search term to filter geo analytics (case-insensitive partial match on country/region/city)
|
|
21343
21482
|
* @param {boolean} [includeWidget] Whether to include widget display fields for popular results
|
|
21344
21483
|
* @param {*} [options] Override http request option.
|
|
21345
21484
|
* @throws {RequiredError}
|
|
21346
21485
|
*/
|
|
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));
|
|
21486
|
+
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> {
|
|
21487
|
+
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
21488
|
},
|
|
21350
21489
|
/**
|
|
21351
21490
|
* 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.
|
|
@@ -21353,6 +21492,7 @@ export const AnalyticsApiFactory = function (configuration?: Configuration, base
|
|
|
21353
21492
|
* @param {string} xStoreID Store ID
|
|
21354
21493
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
21355
21494
|
* @param {string} [endTime] End time in RFC3339 format
|
|
21495
|
+
* @param {string} [search] Search term to filter items (case-insensitive partial match on item IDs)
|
|
21356
21496
|
* @param {string} [itemIds] Comma-separated list of item IDs to filter
|
|
21357
21497
|
* @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \'campaign:summer,source:email\')
|
|
21358
21498
|
* @param {AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
|
|
@@ -21380,8 +21520,8 @@ export const AnalyticsApiFactory = function (configuration?: Configuration, base
|
|
|
21380
21520
|
* @param {*} [options] Override http request option.
|
|
21381
21521
|
* @throws {RequiredError}
|
|
21382
21522
|
*/
|
|
21383
|
-
adminAnalyticsStoreXStoreIDResultsGet(xStoreID: string, startTime?: string, endTime?: string, itemIds?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, minImpressions?: number, sortBy?: AdminAnalyticsStoreXStoreIDResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDResultsGetSortOrderEnum, sort?: string, includeDocuments?: boolean, includeWidget?: boolean, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): AxiosPromise<AdminAnalyticsStoreXStoreIDItemsPerformanceGet200Response> {
|
|
21384
|
-
return localVarFp.adminAnalyticsStoreXStoreIDResultsGet(xStoreID, startTime, endTime, itemIds, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, minImpressions, sortBy, sortOrder, sort, includeDocuments, includeWidget, limit, offset, page, pageSize, options).then((request) => request(axios, basePath));
|
|
21523
|
+
adminAnalyticsStoreXStoreIDResultsGet(xStoreID: string, startTime?: string, endTime?: string, search?: string, itemIds?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, minImpressions?: number, sortBy?: AdminAnalyticsStoreXStoreIDResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDResultsGetSortOrderEnum, sort?: string, includeDocuments?: boolean, includeWidget?: boolean, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): AxiosPromise<AdminAnalyticsStoreXStoreIDItemsPerformanceGet200Response> {
|
|
21524
|
+
return localVarFp.adminAnalyticsStoreXStoreIDResultsGet(xStoreID, startTime, endTime, search, itemIds, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, minImpressions, sortBy, sortOrder, sort, includeDocuments, includeWidget, limit, offset, page, pageSize, options).then((request) => request(axios, basePath));
|
|
21385
21525
|
},
|
|
21386
21526
|
/**
|
|
21387
21527
|
* Retrieve analytics tags usage data and filtering capabilities. If no start_time/end_time is specified, returns all tags from the last 2 years.
|
|
@@ -21559,6 +21699,7 @@ export class AnalyticsApi extends BaseAPI {
|
|
|
21559
21699
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
21560
21700
|
* @param {string} [endTime] End time in RFC3339 format
|
|
21561
21701
|
* @param {AdminAnalyticsStoreXStoreIDGeoGetGranularityEnum} [granularity] Time granularity
|
|
21702
|
+
* @param {string} [search] Search term to filter geographic locations (case-insensitive partial match on country, region, city)
|
|
21562
21703
|
* @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \'campaign:summer,source:email\')
|
|
21563
21704
|
* @param {AdminAnalyticsStoreXStoreIDGeoGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
|
|
21564
21705
|
* @param {string} [tagsExclude] Comma-separated analytics tags to exclude
|
|
@@ -21583,8 +21724,8 @@ export class AnalyticsApi extends BaseAPI {
|
|
|
21583
21724
|
* @throws {RequiredError}
|
|
21584
21725
|
* @memberof AnalyticsApi
|
|
21585
21726
|
*/
|
|
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));
|
|
21727
|
+
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) {
|
|
21728
|
+
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
21729
|
}
|
|
21589
21730
|
|
|
21590
21731
|
/**
|
|
@@ -21611,16 +21752,19 @@ export class AnalyticsApi extends BaseAPI {
|
|
|
21611
21752
|
* @param {string} [compareTagValueFilter] Tag value filter for comparison period
|
|
21612
21753
|
* @param {number} [queriesPage] Page number for popular queries pagination
|
|
21613
21754
|
* @param {number} [queriesPageSize] Number of queries per page for popular queries
|
|
21755
|
+
* @param {string} [geoQueriesSearch] Search term to filter popular queries (case-insensitive partial match on query text)
|
|
21614
21756
|
* @param {number} [resultsPage] Page number for top results pagination
|
|
21615
21757
|
* @param {number} [resultsPageSize] Number of results per page for top results
|
|
21758
|
+
* @param {string} [geoResultsSearch] Search term to filter top results (case-insensitive partial match on item IDs)
|
|
21616
21759
|
* @param {number} [filtersPage] Page number for popular filters pagination
|
|
21617
21760
|
* @param {number} [filtersPageSize] Number of filters per page
|
|
21761
|
+
* @param {string} [geoFiltersSearch] Search term to filter popular filters (case-insensitive partial match on filter keys/values)
|
|
21618
21762
|
* @param {*} [options] Override http request option.
|
|
21619
21763
|
* @throws {RequiredError}
|
|
21620
21764
|
* @memberof AnalyticsApi
|
|
21621
21765
|
*/
|
|
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));
|
|
21766
|
+
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) {
|
|
21767
|
+
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
21768
|
}
|
|
21625
21769
|
|
|
21626
21770
|
/**
|
|
@@ -21793,6 +21937,12 @@ export class AnalyticsApi extends BaseAPI {
|
|
|
21793
21937
|
* @param {string} query Search query to analyze
|
|
21794
21938
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
21795
21939
|
* @param {string} [endTime] End time in RFC3339 format
|
|
21940
|
+
* @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \'campaign:summer,source:email\')
|
|
21941
|
+
* @param {AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
|
|
21942
|
+
* @param {string} [tagsExclude] Comma-separated analytics tags to exclude
|
|
21943
|
+
* @param {string} [tagKeyFilter] Filter by tag key pattern (matches tags starting with key:)
|
|
21944
|
+
* @param {string} [tagValueFilter] Filter by tag value pattern (matches tags ending with :value)
|
|
21945
|
+
* @param {string} [search] Search term to filter popular results, filters, and geo analytics (case-insensitive partial match)
|
|
21796
21946
|
* @param {boolean} [compareMode] Enable comparison mode to compare with another time period/tag set
|
|
21797
21947
|
* @param {string} [compareStartTime] Comparison period start time in RFC3339 format
|
|
21798
21948
|
* @param {string} [compareEndTime] Comparison period end time in RFC3339 format
|
|
@@ -21803,17 +21953,20 @@ export class AnalyticsApi extends BaseAPI {
|
|
|
21803
21953
|
* @param {string} [compareTagValueFilter] Tag value filter for comparison period
|
|
21804
21954
|
* @param {number} [resultsPage] Page number for popular results pagination
|
|
21805
21955
|
* @param {number} [resultsPageSize] Number of results per page for popular results
|
|
21956
|
+
* @param {string} [resultsSearch] Search term to filter popular results (case-insensitive partial match on item IDs)
|
|
21806
21957
|
* @param {number} [filtersPage] Page number for popular filters pagination
|
|
21807
21958
|
* @param {number} [filtersPageSize] Number of filters per page
|
|
21959
|
+
* @param {string} [filtersSearch] Search term to filter popular filters (case-insensitive partial match on filter keys/values)
|
|
21808
21960
|
* @param {number} [geoPage] Page number for geo analytics pagination
|
|
21809
21961
|
* @param {number} [geoPageSize] Number of geo locations per page
|
|
21962
|
+
* @param {string} [geoSearch] Search term to filter geo analytics (case-insensitive partial match on country/region/city)
|
|
21810
21963
|
* @param {boolean} [includeWidget] Whether to include widget display fields for popular results
|
|
21811
21964
|
* @param {*} [options] Override http request option.
|
|
21812
21965
|
* @throws {RequiredError}
|
|
21813
21966
|
* @memberof AnalyticsApi
|
|
21814
21967
|
*/
|
|
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));
|
|
21968
|
+
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) {
|
|
21969
|
+
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
21970
|
}
|
|
21818
21971
|
|
|
21819
21972
|
/**
|
|
@@ -21822,6 +21975,7 @@ export class AnalyticsApi extends BaseAPI {
|
|
|
21822
21975
|
* @param {string} xStoreID Store ID
|
|
21823
21976
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
21824
21977
|
* @param {string} [endTime] End time in RFC3339 format
|
|
21978
|
+
* @param {string} [search] Search term to filter items (case-insensitive partial match on item IDs)
|
|
21825
21979
|
* @param {string} [itemIds] Comma-separated list of item IDs to filter
|
|
21826
21980
|
* @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \'campaign:summer,source:email\')
|
|
21827
21981
|
* @param {AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
|
|
@@ -21850,8 +22004,8 @@ export class AnalyticsApi extends BaseAPI {
|
|
|
21850
22004
|
* @throws {RequiredError}
|
|
21851
22005
|
* @memberof AnalyticsApi
|
|
21852
22006
|
*/
|
|
21853
|
-
public adminAnalyticsStoreXStoreIDResultsGet(xStoreID: string, startTime?: string, endTime?: string, itemIds?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, minImpressions?: number, sortBy?: AdminAnalyticsStoreXStoreIDResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDResultsGetSortOrderEnum, sort?: string, includeDocuments?: boolean, includeWidget?: boolean, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig) {
|
|
21854
|
-
return AnalyticsApiFp(this.configuration).adminAnalyticsStoreXStoreIDResultsGet(xStoreID, startTime, endTime, itemIds, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, minImpressions, sortBy, sortOrder, sort, includeDocuments, includeWidget, limit, offset, page, pageSize, options).then((request) => request(this.axios, this.basePath));
|
|
22007
|
+
public adminAnalyticsStoreXStoreIDResultsGet(xStoreID: string, startTime?: string, endTime?: string, search?: string, itemIds?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, minImpressions?: number, sortBy?: AdminAnalyticsStoreXStoreIDResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDResultsGetSortOrderEnum, sort?: string, includeDocuments?: boolean, includeWidget?: boolean, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig) {
|
|
22008
|
+
return AnalyticsApiFp(this.configuration).adminAnalyticsStoreXStoreIDResultsGet(xStoreID, startTime, endTime, search, itemIds, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, minImpressions, sortBy, sortOrder, sort, includeDocuments, includeWidget, limit, offset, page, pageSize, options).then((request) => request(this.axios, this.basePath));
|
|
21855
22009
|
}
|
|
21856
22010
|
|
|
21857
22011
|
/**
|
|
@@ -22206,6 +22360,14 @@ export const AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortOrderEnum = {
|
|
|
22206
22360
|
Desc: 'desc'
|
|
22207
22361
|
} as const;
|
|
22208
22362
|
export type AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortOrderEnum = typeof AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortOrderEnum[keyof typeof AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortOrderEnum];
|
|
22363
|
+
/**
|
|
22364
|
+
* @export
|
|
22365
|
+
*/
|
|
22366
|
+
export const AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetTagsMatchModeEnum = {
|
|
22367
|
+
Any: 'any',
|
|
22368
|
+
All: 'all'
|
|
22369
|
+
} as const;
|
|
22370
|
+
export type AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetTagsMatchModeEnum = typeof AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetTagsMatchModeEnum[keyof typeof AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetTagsMatchModeEnum];
|
|
22209
22371
|
/**
|
|
22210
22372
|
* @export
|
|
22211
22373
|
*/
|
|
@@ -26645,6 +26807,7 @@ export const ItemAnalyticsApiAxiosParamCreator = function (configuration?: Confi
|
|
|
26645
26807
|
* @param {string} xStoreID Store ID
|
|
26646
26808
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
26647
26809
|
* @param {string} [endTime] End time in RFC3339 format
|
|
26810
|
+
* @param {string} [search] Search term to filter items (case-insensitive partial match on item IDs and related data)
|
|
26648
26811
|
* @param {string} [itemIds] Comma-separated list of item IDs to filter
|
|
26649
26812
|
* @param {number} [itemLimit] Maximum number of items to return
|
|
26650
26813
|
* @param {number} [minImpressions] Minimum number of impressions required
|
|
@@ -26659,7 +26822,7 @@ export const ItemAnalyticsApiAxiosParamCreator = function (configuration?: Confi
|
|
|
26659
26822
|
* @param {*} [options] Override http request option.
|
|
26660
26823
|
* @throws {RequiredError}
|
|
26661
26824
|
*/
|
|
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> => {
|
|
26825
|
+
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
26826
|
// verify required parameter 'xStoreID' is not null or undefined
|
|
26664
26827
|
assertParamExists('adminAnalyticsStoreXStoreIDItemsGet', 'xStoreID', xStoreID)
|
|
26665
26828
|
const localVarPath = `/admin/analytics/store/{xStoreID}/items`
|
|
@@ -26686,6 +26849,10 @@ export const ItemAnalyticsApiAxiosParamCreator = function (configuration?: Confi
|
|
|
26686
26849
|
localVarQueryParameter['end_time'] = endTime;
|
|
26687
26850
|
}
|
|
26688
26851
|
|
|
26852
|
+
if (search !== undefined) {
|
|
26853
|
+
localVarQueryParameter['search'] = search;
|
|
26854
|
+
}
|
|
26855
|
+
|
|
26689
26856
|
if (itemIds !== undefined) {
|
|
26690
26857
|
localVarQueryParameter['item_ids'] = itemIds;
|
|
26691
26858
|
}
|
|
@@ -26814,15 +26981,18 @@ export const ItemAnalyticsApiAxiosParamCreator = function (configuration?: Confi
|
|
|
26814
26981
|
* @param {string} [compareTagValueFilter] Tag value filter for comparison period
|
|
26815
26982
|
* @param {number} [resultsPage] Page number for popular queries pagination
|
|
26816
26983
|
* @param {number} [resultsPageSize] Number of queries per page for popular queries
|
|
26984
|
+
* @param {string} [itemQueriesSearch] Search term to filter popular queries (case-insensitive partial match on query text)
|
|
26817
26985
|
* @param {number} [filtersPage] Page number for popular filters pagination
|
|
26818
26986
|
* @param {number} [filtersPageSize] Number of filters per page
|
|
26987
|
+
* @param {string} [itemFiltersSearch] Search term to filter popular filters (case-insensitive partial match on filter keys/values)
|
|
26819
26988
|
* @param {number} [geoPage] Page number for geo analytics pagination
|
|
26820
26989
|
* @param {number} [geoPageSize] Number of geo locations per page
|
|
26990
|
+
* @param {string} [itemGeoSearch] Search term to filter geo analytics (case-insensitive partial match on country/region/city)
|
|
26821
26991
|
* @param {AdminAnalyticsStoreXStoreIDItemsItemIdInsightsGetGroupByEnum} [groupBy] Include performance trends by date
|
|
26822
26992
|
* @param {*} [options] Override http request option.
|
|
26823
26993
|
* @throws {RequiredError}
|
|
26824
26994
|
*/
|
|
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> => {
|
|
26995
|
+
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
26996
|
// verify required parameter 'xStoreID' is not null or undefined
|
|
26827
26997
|
assertParamExists('adminAnalyticsStoreXStoreIDItemsItemIdInsightsGet', 'xStoreID', xStoreID)
|
|
26828
26998
|
// verify required parameter 'itemId' is not null or undefined
|
|
@@ -26912,6 +27082,10 @@ export const ItemAnalyticsApiAxiosParamCreator = function (configuration?: Confi
|
|
|
26912
27082
|
localVarQueryParameter['results_page_size'] = resultsPageSize;
|
|
26913
27083
|
}
|
|
26914
27084
|
|
|
27085
|
+
if (itemQueriesSearch !== undefined) {
|
|
27086
|
+
localVarQueryParameter['item_queries_search'] = itemQueriesSearch;
|
|
27087
|
+
}
|
|
27088
|
+
|
|
26915
27089
|
if (filtersPage !== undefined) {
|
|
26916
27090
|
localVarQueryParameter['filters_page'] = filtersPage;
|
|
26917
27091
|
}
|
|
@@ -26920,6 +27094,10 @@ export const ItemAnalyticsApiAxiosParamCreator = function (configuration?: Confi
|
|
|
26920
27094
|
localVarQueryParameter['filters_page_size'] = filtersPageSize;
|
|
26921
27095
|
}
|
|
26922
27096
|
|
|
27097
|
+
if (itemFiltersSearch !== undefined) {
|
|
27098
|
+
localVarQueryParameter['item_filters_search'] = itemFiltersSearch;
|
|
27099
|
+
}
|
|
27100
|
+
|
|
26923
27101
|
if (geoPage !== undefined) {
|
|
26924
27102
|
localVarQueryParameter['geo_page'] = geoPage;
|
|
26925
27103
|
}
|
|
@@ -26928,6 +27106,10 @@ export const ItemAnalyticsApiAxiosParamCreator = function (configuration?: Confi
|
|
|
26928
27106
|
localVarQueryParameter['geo_page_size'] = geoPageSize;
|
|
26929
27107
|
}
|
|
26930
27108
|
|
|
27109
|
+
if (itemGeoSearch !== undefined) {
|
|
27110
|
+
localVarQueryParameter['item_geo_search'] = itemGeoSearch;
|
|
27111
|
+
}
|
|
27112
|
+
|
|
26931
27113
|
if (groupBy !== undefined) {
|
|
26932
27114
|
localVarQueryParameter['group_by'] = groupBy;
|
|
26933
27115
|
}
|
|
@@ -27302,6 +27484,7 @@ export const ItemAnalyticsApiFp = function(configuration?: Configuration) {
|
|
|
27302
27484
|
* @param {string} xStoreID Store ID
|
|
27303
27485
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
27304
27486
|
* @param {string} [endTime] End time in RFC3339 format
|
|
27487
|
+
* @param {string} [search] Search term to filter items (case-insensitive partial match on item IDs and related data)
|
|
27305
27488
|
* @param {string} [itemIds] Comma-separated list of item IDs to filter
|
|
27306
27489
|
* @param {number} [itemLimit] Maximum number of items to return
|
|
27307
27490
|
* @param {number} [minImpressions] Minimum number of impressions required
|
|
@@ -27316,8 +27499,8 @@ export const ItemAnalyticsApiFp = function(configuration?: Configuration) {
|
|
|
27316
27499
|
* @param {*} [options] Override http request option.
|
|
27317
27500
|
* @throws {RequiredError}
|
|
27318
27501
|
*/
|
|
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);
|
|
27502
|
+
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>> {
|
|
27503
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.adminAnalyticsStoreXStoreIDItemsGet(xStoreID, startTime, endTime, search, itemIds, itemLimit, minImpressions, maxPosition, sortBy, sortOrder, sort, limit, offset, page, pageSize, options);
|
|
27321
27504
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
27322
27505
|
const localVarOperationServerBasePath = operationServerMap['ItemAnalyticsApi.adminAnalyticsStoreXStoreIDItemsGet']?.[localVarOperationServerIndex]?.url;
|
|
27323
27506
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -27360,16 +27543,19 @@ export const ItemAnalyticsApiFp = function(configuration?: Configuration) {
|
|
|
27360
27543
|
* @param {string} [compareTagValueFilter] Tag value filter for comparison period
|
|
27361
27544
|
* @param {number} [resultsPage] Page number for popular queries pagination
|
|
27362
27545
|
* @param {number} [resultsPageSize] Number of queries per page for popular queries
|
|
27546
|
+
* @param {string} [itemQueriesSearch] Search term to filter popular queries (case-insensitive partial match on query text)
|
|
27363
27547
|
* @param {number} [filtersPage] Page number for popular filters pagination
|
|
27364
27548
|
* @param {number} [filtersPageSize] Number of filters per page
|
|
27549
|
+
* @param {string} [itemFiltersSearch] Search term to filter popular filters (case-insensitive partial match on filter keys/values)
|
|
27365
27550
|
* @param {number} [geoPage] Page number for geo analytics pagination
|
|
27366
27551
|
* @param {number} [geoPageSize] Number of geo locations per page
|
|
27552
|
+
* @param {string} [itemGeoSearch] Search term to filter geo analytics (case-insensitive partial match on country/region/city)
|
|
27367
27553
|
* @param {AdminAnalyticsStoreXStoreIDItemsItemIdInsightsGetGroupByEnum} [groupBy] Include performance trends by date
|
|
27368
27554
|
* @param {*} [options] Override http request option.
|
|
27369
27555
|
* @throws {RequiredError}
|
|
27370
27556
|
*/
|
|
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);
|
|
27557
|
+
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>> {
|
|
27558
|
+
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
27559
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
27374
27560
|
const localVarOperationServerBasePath = operationServerMap['ItemAnalyticsApi.adminAnalyticsStoreXStoreIDItemsItemIdInsightsGet']?.[localVarOperationServerIndex]?.url;
|
|
27375
27561
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -27503,6 +27689,7 @@ export const ItemAnalyticsApiFactory = function (configuration?: Configuration,
|
|
|
27503
27689
|
* @param {string} xStoreID Store ID
|
|
27504
27690
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
27505
27691
|
* @param {string} [endTime] End time in RFC3339 format
|
|
27692
|
+
* @param {string} [search] Search term to filter items (case-insensitive partial match on item IDs and related data)
|
|
27506
27693
|
* @param {string} [itemIds] Comma-separated list of item IDs to filter
|
|
27507
27694
|
* @param {number} [itemLimit] Maximum number of items to return
|
|
27508
27695
|
* @param {number} [minImpressions] Minimum number of impressions required
|
|
@@ -27517,8 +27704,8 @@ export const ItemAnalyticsApiFactory = function (configuration?: Configuration,
|
|
|
27517
27704
|
* @param {*} [options] Override http request option.
|
|
27518
27705
|
* @throws {RequiredError}
|
|
27519
27706
|
*/
|
|
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));
|
|
27707
|
+
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> {
|
|
27708
|
+
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
27709
|
},
|
|
27523
27710
|
/**
|
|
27524
27711
|
* Retrieve detailed analytics for a specific item including performance metrics and discovery data
|
|
@@ -27555,16 +27742,19 @@ export const ItemAnalyticsApiFactory = function (configuration?: Configuration,
|
|
|
27555
27742
|
* @param {string} [compareTagValueFilter] Tag value filter for comparison period
|
|
27556
27743
|
* @param {number} [resultsPage] Page number for popular queries pagination
|
|
27557
27744
|
* @param {number} [resultsPageSize] Number of queries per page for popular queries
|
|
27745
|
+
* @param {string} [itemQueriesSearch] Search term to filter popular queries (case-insensitive partial match on query text)
|
|
27558
27746
|
* @param {number} [filtersPage] Page number for popular filters pagination
|
|
27559
27747
|
* @param {number} [filtersPageSize] Number of filters per page
|
|
27748
|
+
* @param {string} [itemFiltersSearch] Search term to filter popular filters (case-insensitive partial match on filter keys/values)
|
|
27560
27749
|
* @param {number} [geoPage] Page number for geo analytics pagination
|
|
27561
27750
|
* @param {number} [geoPageSize] Number of geo locations per page
|
|
27751
|
+
* @param {string} [itemGeoSearch] Search term to filter geo analytics (case-insensitive partial match on country/region/city)
|
|
27562
27752
|
* @param {AdminAnalyticsStoreXStoreIDItemsItemIdInsightsGetGroupByEnum} [groupBy] Include performance trends by date
|
|
27563
27753
|
* @param {*} [options] Override http request option.
|
|
27564
27754
|
* @throws {RequiredError}
|
|
27565
27755
|
*/
|
|
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));
|
|
27756
|
+
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> {
|
|
27757
|
+
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
27758
|
},
|
|
27569
27759
|
/**
|
|
27570
27760
|
* Retrieve detailed performance metrics for items including click-through rates, conversion rates, and revenue data
|
|
@@ -27690,6 +27880,7 @@ export class ItemAnalyticsApi extends BaseAPI {
|
|
|
27690
27880
|
* @param {string} xStoreID Store ID
|
|
27691
27881
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
27692
27882
|
* @param {string} [endTime] End time in RFC3339 format
|
|
27883
|
+
* @param {string} [search] Search term to filter items (case-insensitive partial match on item IDs and related data)
|
|
27693
27884
|
* @param {string} [itemIds] Comma-separated list of item IDs to filter
|
|
27694
27885
|
* @param {number} [itemLimit] Maximum number of items to return
|
|
27695
27886
|
* @param {number} [minImpressions] Minimum number of impressions required
|
|
@@ -27705,8 +27896,8 @@ export class ItemAnalyticsApi extends BaseAPI {
|
|
|
27705
27896
|
* @throws {RequiredError}
|
|
27706
27897
|
* @memberof ItemAnalyticsApi
|
|
27707
27898
|
*/
|
|
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));
|
|
27899
|
+
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) {
|
|
27900
|
+
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
27901
|
}
|
|
27711
27902
|
|
|
27712
27903
|
/**
|
|
@@ -27746,17 +27937,20 @@ export class ItemAnalyticsApi extends BaseAPI {
|
|
|
27746
27937
|
* @param {string} [compareTagValueFilter] Tag value filter for comparison period
|
|
27747
27938
|
* @param {number} [resultsPage] Page number for popular queries pagination
|
|
27748
27939
|
* @param {number} [resultsPageSize] Number of queries per page for popular queries
|
|
27940
|
+
* @param {string} [itemQueriesSearch] Search term to filter popular queries (case-insensitive partial match on query text)
|
|
27749
27941
|
* @param {number} [filtersPage] Page number for popular filters pagination
|
|
27750
27942
|
* @param {number} [filtersPageSize] Number of filters per page
|
|
27943
|
+
* @param {string} [itemFiltersSearch] Search term to filter popular filters (case-insensitive partial match on filter keys/values)
|
|
27751
27944
|
* @param {number} [geoPage] Page number for geo analytics pagination
|
|
27752
27945
|
* @param {number} [geoPageSize] Number of geo locations per page
|
|
27946
|
+
* @param {string} [itemGeoSearch] Search term to filter geo analytics (case-insensitive partial match on country/region/city)
|
|
27753
27947
|
* @param {AdminAnalyticsStoreXStoreIDItemsItemIdInsightsGetGroupByEnum} [groupBy] Include performance trends by date
|
|
27754
27948
|
* @param {*} [options] Override http request option.
|
|
27755
27949
|
* @throws {RequiredError}
|
|
27756
27950
|
* @memberof ItemAnalyticsApi
|
|
27757
27951
|
*/
|
|
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));
|
|
27952
|
+
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) {
|
|
27953
|
+
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
27954
|
}
|
|
27761
27955
|
|
|
27762
27956
|
/**
|
|
@@ -37360,13 +37554,13 @@ export const RefundManagementApiAxiosParamCreator = function (configuration?: Co
|
|
|
37360
37554
|
};
|
|
37361
37555
|
},
|
|
37362
37556
|
/**
|
|
37363
|
-
* Gets the current status and details of a refund request
|
|
37557
|
+
* Gets the current status and details of a refund request by refund_id (UUID)
|
|
37364
37558
|
* @summary Get refund request status
|
|
37365
|
-
* @param {
|
|
37559
|
+
* @param {string} id Refund ID (UUID)
|
|
37366
37560
|
* @param {*} [options] Override http request option.
|
|
37367
37561
|
* @throws {RequiredError}
|
|
37368
37562
|
*/
|
|
37369
|
-
paymentGatewayRefundStatusIdGet: async (id:
|
|
37563
|
+
paymentGatewayRefundStatusIdGet: async (id: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
37370
37564
|
// verify required parameter 'id' is not null or undefined
|
|
37371
37565
|
assertParamExists('paymentGatewayRefundStatusIdGet', 'id', id)
|
|
37372
37566
|
const localVarPath = `/payment-gateway/refund-status/{id}`
|
|
@@ -37528,13 +37722,13 @@ export const RefundManagementApiFp = function(configuration?: Configuration) {
|
|
|
37528
37722
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
37529
37723
|
},
|
|
37530
37724
|
/**
|
|
37531
|
-
* Gets the current status and details of a refund request
|
|
37725
|
+
* Gets the current status and details of a refund request by refund_id (UUID)
|
|
37532
37726
|
* @summary Get refund request status
|
|
37533
|
-
* @param {
|
|
37727
|
+
* @param {string} id Refund ID (UUID)
|
|
37534
37728
|
* @param {*} [options] Override http request option.
|
|
37535
37729
|
* @throws {RequiredError}
|
|
37536
37730
|
*/
|
|
37537
|
-
async paymentGatewayRefundStatusIdGet(id:
|
|
37731
|
+
async paymentGatewayRefundStatusIdGet(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesRefundStatusDto>> {
|
|
37538
37732
|
const localVarAxiosArgs = await localVarAxiosParamCreator.paymentGatewayRefundStatusIdGet(id, options);
|
|
37539
37733
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
37540
37734
|
const localVarOperationServerBasePath = operationServerMap['RefundManagementApi.paymentGatewayRefundStatusIdGet']?.[localVarOperationServerIndex]?.url;
|
|
@@ -37602,13 +37796,13 @@ export const RefundManagementApiFactory = function (configuration?: Configuratio
|
|
|
37602
37796
|
return localVarFp.paymentGatewayRefundRequestPost(dataTypesCreateRefundRequestDto, options).then((request) => request(axios, basePath));
|
|
37603
37797
|
},
|
|
37604
37798
|
/**
|
|
37605
|
-
* Gets the current status and details of a refund request
|
|
37799
|
+
* Gets the current status and details of a refund request by refund_id (UUID)
|
|
37606
37800
|
* @summary Get refund request status
|
|
37607
|
-
* @param {
|
|
37801
|
+
* @param {string} id Refund ID (UUID)
|
|
37608
37802
|
* @param {*} [options] Override http request option.
|
|
37609
37803
|
* @throws {RequiredError}
|
|
37610
37804
|
*/
|
|
37611
|
-
paymentGatewayRefundStatusIdGet(id:
|
|
37805
|
+
paymentGatewayRefundStatusIdGet(id: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesRefundStatusDto> {
|
|
37612
37806
|
return localVarFp.paymentGatewayRefundStatusIdGet(id, options).then((request) => request(axios, basePath));
|
|
37613
37807
|
},
|
|
37614
37808
|
/**
|
|
@@ -37676,14 +37870,14 @@ export class RefundManagementApi extends BaseAPI {
|
|
|
37676
37870
|
}
|
|
37677
37871
|
|
|
37678
37872
|
/**
|
|
37679
|
-
* Gets the current status and details of a refund request
|
|
37873
|
+
* Gets the current status and details of a refund request by refund_id (UUID)
|
|
37680
37874
|
* @summary Get refund request status
|
|
37681
|
-
* @param {
|
|
37875
|
+
* @param {string} id Refund ID (UUID)
|
|
37682
37876
|
* @param {*} [options] Override http request option.
|
|
37683
37877
|
* @throws {RequiredError}
|
|
37684
37878
|
* @memberof RefundManagementApi
|
|
37685
37879
|
*/
|
|
37686
|
-
public paymentGatewayRefundStatusIdGet(id:
|
|
37880
|
+
public paymentGatewayRefundStatusIdGet(id: string, options?: RawAxiosRequestConfig) {
|
|
37687
37881
|
return RefundManagementApiFp(this.configuration).paymentGatewayRefundStatusIdGet(id, options).then((request) => request(this.axios, this.basePath));
|
|
37688
37882
|
}
|
|
37689
37883
|
|