@seekora-ai/admin-api 1.1.43 → 1.1.44
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 +32 -8
- package/dist/api.d.ts +32 -8
- package/dist/api.js +8 -8
- package/dist/esm/api.d.ts +32 -8
- package/dist/esm/api.js +8 -8
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.1.44.tgz +0 -0
- package/seekora-ai-admin-api-1.1.43.tgz +0 -0
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @seekora-ai/admin-api@1.1.
|
|
1
|
+
## @seekora-ai/admin-api@1.1.44
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install @seekora-ai/admin-api@1.1.
|
|
39
|
+
npm install @seekora-ai/admin-api@1.1.44 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/api.ts
CHANGED
|
@@ -6719,6 +6719,12 @@ export interface DataTypesCombinedSearchResponse {
|
|
|
6719
6719
|
* @memberof DataTypesCombinedSearchResponse
|
|
6720
6720
|
*/
|
|
6721
6721
|
'results'?: Array<DataTypesCombinedSearchResult>;
|
|
6722
|
+
/**
|
|
6723
|
+
* Unique search identifier for analytics linking
|
|
6724
|
+
* @type {string}
|
|
6725
|
+
* @memberof DataTypesCombinedSearchResponse
|
|
6726
|
+
*/
|
|
6727
|
+
'search_id'?: string;
|
|
6722
6728
|
/**
|
|
6723
6729
|
*
|
|
6724
6730
|
* @type {Array<DataTypesAutocompleteSuggestion>}
|
|
@@ -9364,6 +9370,12 @@ export interface DataTypesEventPayload {
|
|
|
9364
9370
|
* @memberof DataTypesEventPayload
|
|
9365
9371
|
*/
|
|
9366
9372
|
'clicked_item_id'?: string;
|
|
9373
|
+
/**
|
|
9374
|
+
* Primary journey key across search → clicks → conversions
|
|
9375
|
+
* @type {string}
|
|
9376
|
+
* @memberof DataTypesEventPayload
|
|
9377
|
+
*/
|
|
9378
|
+
'correlation_id'?: string;
|
|
9367
9379
|
/**
|
|
9368
9380
|
* Enhanced Geo data fields for direct submission
|
|
9369
9381
|
* @type {string}
|
|
@@ -9454,6 +9466,12 @@ export interface DataTypesEventPayload {
|
|
|
9454
9466
|
* @memberof DataTypesEventPayload
|
|
9455
9467
|
*/
|
|
9456
9468
|
'results_count'?: number;
|
|
9469
|
+
/**
|
|
9470
|
+
* Optional search-scoped identifier (mirrors correlation_id when you have a natural search key)
|
|
9471
|
+
* @type {string}
|
|
9472
|
+
* @memberof DataTypesEventPayload
|
|
9473
|
+
*/
|
|
9474
|
+
'search_id'?: string;
|
|
9457
9475
|
/**
|
|
9458
9476
|
* Session identifier for journey tracking
|
|
9459
9477
|
* @type {string}
|
|
@@ -14481,6 +14499,12 @@ export interface DataTypesOfficialSearchResponse {
|
|
|
14481
14499
|
* @memberof DataTypesOfficialSearchResponse
|
|
14482
14500
|
*/
|
|
14483
14501
|
'results'?: Array<DataTypesOfficialSearchResult>;
|
|
14502
|
+
/**
|
|
14503
|
+
* Unique search identifier for analytics linking
|
|
14504
|
+
* @type {string}
|
|
14505
|
+
* @memberof DataTypesOfficialSearchResponse
|
|
14506
|
+
*/
|
|
14507
|
+
'search_id'?: string;
|
|
14484
14508
|
/**
|
|
14485
14509
|
*
|
|
14486
14510
|
* @type {Array<DataTypesAutocompleteSuggestion>}
|
|
@@ -26876,7 +26900,7 @@ export class AccountSettingsApi extends BaseAPI {
|
|
|
26876
26900
|
export const ActivityLogsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
26877
26901
|
return {
|
|
26878
26902
|
/**
|
|
26879
|
-
* Retrieve user activity logs from ClickHouse
|
|
26903
|
+
* Retrieve user activity logs from ClickHouse fact_events table with full filtering, search, and pagination.
|
|
26880
26904
|
* @summary Get Activity Logs
|
|
26881
26905
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
26882
26906
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
@@ -26954,7 +26978,7 @@ export const ActivityLogsApiFp = function(configuration?: Configuration) {
|
|
|
26954
26978
|
const localVarAxiosParamCreator = ActivityLogsApiAxiosParamCreator(configuration)
|
|
26955
26979
|
return {
|
|
26956
26980
|
/**
|
|
26957
|
-
* Retrieve user activity logs from ClickHouse
|
|
26981
|
+
* Retrieve user activity logs from ClickHouse fact_events table with full filtering, search, and pagination.
|
|
26958
26982
|
* @summary Get Activity Logs
|
|
26959
26983
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
26960
26984
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
@@ -26983,7 +27007,7 @@ export const ActivityLogsApiFactory = function (configuration?: Configuration, b
|
|
|
26983
27007
|
const localVarFp = ActivityLogsApiFp(configuration)
|
|
26984
27008
|
return {
|
|
26985
27009
|
/**
|
|
26986
|
-
* Retrieve user activity logs from ClickHouse
|
|
27010
|
+
* Retrieve user activity logs from ClickHouse fact_events table with full filtering, search, and pagination.
|
|
26987
27011
|
* @summary Get Activity Logs
|
|
26988
27012
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
26989
27013
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
@@ -27009,7 +27033,7 @@ export const ActivityLogsApiFactory = function (configuration?: Configuration, b
|
|
|
27009
27033
|
*/
|
|
27010
27034
|
export class ActivityLogsApi extends BaseAPI {
|
|
27011
27035
|
/**
|
|
27012
|
-
* Retrieve user activity logs from ClickHouse
|
|
27036
|
+
* Retrieve user activity logs from ClickHouse fact_events table with full filtering, search, and pagination.
|
|
27013
27037
|
* @summary Get Activity Logs
|
|
27014
27038
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
27015
27039
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
@@ -30469,7 +30493,7 @@ export const AnalyticsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
30469
30493
|
};
|
|
30470
30494
|
},
|
|
30471
30495
|
/**
|
|
30472
|
-
* Retrieve API usage logs from ClickHouse
|
|
30496
|
+
* Retrieve API usage logs from ClickHouse fact_events table with filtering and pagination
|
|
30473
30497
|
* @summary Get API Usage Logs
|
|
30474
30498
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
30475
30499
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
@@ -31143,7 +31167,7 @@ export const AnalyticsApiFp = function(configuration?: Configuration) {
|
|
|
31143
31167
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
31144
31168
|
},
|
|
31145
31169
|
/**
|
|
31146
|
-
* Retrieve API usage logs from ClickHouse
|
|
31170
|
+
* Retrieve API usage logs from ClickHouse fact_events table with filtering and pagination
|
|
31147
31171
|
* @summary Get API Usage Logs
|
|
31148
31172
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
31149
31173
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
@@ -31646,7 +31670,7 @@ export const AnalyticsApiFactory = function (configuration?: Configuration, base
|
|
|
31646
31670
|
return localVarFp.adminAnalyticsStoreXStoreIDTagsSummaryGet(xStoreID, startTime, endTime, limit, offset, page, pageSize, sortBy, sortOrder, sort, options).then((request) => request(axios, basePath));
|
|
31647
31671
|
},
|
|
31648
31672
|
/**
|
|
31649
|
-
* Retrieve API usage logs from ClickHouse
|
|
31673
|
+
* Retrieve API usage logs from ClickHouse fact_events table with filtering and pagination
|
|
31650
31674
|
* @summary Get API Usage Logs
|
|
31651
31675
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
31652
31676
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
@@ -32176,7 +32200,7 @@ export class AnalyticsApi extends BaseAPI {
|
|
|
32176
32200
|
}
|
|
32177
32201
|
|
|
32178
32202
|
/**
|
|
32179
|
-
* Retrieve API usage logs from ClickHouse
|
|
32203
|
+
* Retrieve API usage logs from ClickHouse fact_events table with filtering and pagination
|
|
32180
32204
|
* @summary Get API Usage Logs
|
|
32181
32205
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
32182
32206
|
* @param {string} [endDate] End date (ISO 8601 format)
|
package/dist/api.d.ts
CHANGED
|
@@ -6735,6 +6735,12 @@ export interface DataTypesCombinedSearchResponse {
|
|
|
6735
6735
|
* @memberof DataTypesCombinedSearchResponse
|
|
6736
6736
|
*/
|
|
6737
6737
|
'results'?: Array<DataTypesCombinedSearchResult>;
|
|
6738
|
+
/**
|
|
6739
|
+
* Unique search identifier for analytics linking
|
|
6740
|
+
* @type {string}
|
|
6741
|
+
* @memberof DataTypesCombinedSearchResponse
|
|
6742
|
+
*/
|
|
6743
|
+
'search_id'?: string;
|
|
6738
6744
|
/**
|
|
6739
6745
|
*
|
|
6740
6746
|
* @type {Array<DataTypesAutocompleteSuggestion>}
|
|
@@ -9383,6 +9389,12 @@ export interface DataTypesEventPayload {
|
|
|
9383
9389
|
* @memberof DataTypesEventPayload
|
|
9384
9390
|
*/
|
|
9385
9391
|
'clicked_item_id'?: string;
|
|
9392
|
+
/**
|
|
9393
|
+
* Primary journey key across search → clicks → conversions
|
|
9394
|
+
* @type {string}
|
|
9395
|
+
* @memberof DataTypesEventPayload
|
|
9396
|
+
*/
|
|
9397
|
+
'correlation_id'?: string;
|
|
9386
9398
|
/**
|
|
9387
9399
|
* Enhanced Geo data fields for direct submission
|
|
9388
9400
|
* @type {string}
|
|
@@ -9475,6 +9487,12 @@ export interface DataTypesEventPayload {
|
|
|
9475
9487
|
* @memberof DataTypesEventPayload
|
|
9476
9488
|
*/
|
|
9477
9489
|
'results_count'?: number;
|
|
9490
|
+
/**
|
|
9491
|
+
* Optional search-scoped identifier (mirrors correlation_id when you have a natural search key)
|
|
9492
|
+
* @type {string}
|
|
9493
|
+
* @memberof DataTypesEventPayload
|
|
9494
|
+
*/
|
|
9495
|
+
'search_id'?: string;
|
|
9478
9496
|
/**
|
|
9479
9497
|
* Session identifier for journey tracking
|
|
9480
9498
|
* @type {string}
|
|
@@ -14514,6 +14532,12 @@ export interface DataTypesOfficialSearchResponse {
|
|
|
14514
14532
|
* @memberof DataTypesOfficialSearchResponse
|
|
14515
14533
|
*/
|
|
14516
14534
|
'results'?: Array<DataTypesOfficialSearchResult>;
|
|
14535
|
+
/**
|
|
14536
|
+
* Unique search identifier for analytics linking
|
|
14537
|
+
* @type {string}
|
|
14538
|
+
* @memberof DataTypesOfficialSearchResponse
|
|
14539
|
+
*/
|
|
14540
|
+
'search_id'?: string;
|
|
14517
14541
|
/**
|
|
14518
14542
|
*
|
|
14519
14543
|
* @type {Array<DataTypesAutocompleteSuggestion>}
|
|
@@ -26381,7 +26405,7 @@ export declare class AccountSettingsApi extends BaseAPI {
|
|
|
26381
26405
|
*/
|
|
26382
26406
|
export declare const ActivityLogsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
26383
26407
|
/**
|
|
26384
|
-
* Retrieve user activity logs from ClickHouse
|
|
26408
|
+
* Retrieve user activity logs from ClickHouse fact_events table with full filtering, search, and pagination.
|
|
26385
26409
|
* @summary Get Activity Logs
|
|
26386
26410
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
26387
26411
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
@@ -26401,7 +26425,7 @@ export declare const ActivityLogsApiAxiosParamCreator: (configuration?: Configur
|
|
|
26401
26425
|
*/
|
|
26402
26426
|
export declare const ActivityLogsApiFp: (configuration?: Configuration) => {
|
|
26403
26427
|
/**
|
|
26404
|
-
* Retrieve user activity logs from ClickHouse
|
|
26428
|
+
* Retrieve user activity logs from ClickHouse fact_events table with full filtering, search, and pagination.
|
|
26405
26429
|
* @summary Get Activity Logs
|
|
26406
26430
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
26407
26431
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
@@ -26421,7 +26445,7 @@ export declare const ActivityLogsApiFp: (configuration?: Configuration) => {
|
|
|
26421
26445
|
*/
|
|
26422
26446
|
export declare const ActivityLogsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
26423
26447
|
/**
|
|
26424
|
-
* Retrieve user activity logs from ClickHouse
|
|
26448
|
+
* Retrieve user activity logs from ClickHouse fact_events table with full filtering, search, and pagination.
|
|
26425
26449
|
* @summary Get Activity Logs
|
|
26426
26450
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
26427
26451
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
@@ -26443,7 +26467,7 @@ export declare const ActivityLogsApiFactory: (configuration?: Configuration, bas
|
|
|
26443
26467
|
*/
|
|
26444
26468
|
export declare class ActivityLogsApi extends BaseAPI {
|
|
26445
26469
|
/**
|
|
26446
|
-
* Retrieve user activity logs from ClickHouse
|
|
26470
|
+
* Retrieve user activity logs from ClickHouse fact_events table with full filtering, search, and pagination.
|
|
26447
26471
|
* @summary Get Activity Logs
|
|
26448
26472
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
26449
26473
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
@@ -27561,7 +27585,7 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
27561
27585
|
*/
|
|
27562
27586
|
adminAnalyticsStoreXStoreIDTagsSummaryGet: (xStoreID: string, startTime?: string, endTime?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDTagsSummaryGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDTagsSummaryGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27563
27587
|
/**
|
|
27564
|
-
* Retrieve API usage logs from ClickHouse
|
|
27588
|
+
* Retrieve API usage logs from ClickHouse fact_events table with filtering and pagination
|
|
27565
27589
|
* @summary Get API Usage Logs
|
|
27566
27590
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
27567
27591
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
@@ -28009,7 +28033,7 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
|
|
|
28009
28033
|
*/
|
|
28010
28034
|
adminAnalyticsStoreXStoreIDTagsSummaryGet(xStoreID: string, startTime?: string, endTime?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDTagsSummaryGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDTagsSummaryGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AnalyticsAnalyticsAPIResponse>>;
|
|
28011
28035
|
/**
|
|
28012
|
-
* Retrieve API usage logs from ClickHouse
|
|
28036
|
+
* Retrieve API usage logs from ClickHouse fact_events table with filtering and pagination
|
|
28013
28037
|
* @summary Get API Usage Logs
|
|
28014
28038
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
28015
28039
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
@@ -28457,7 +28481,7 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
|
|
|
28457
28481
|
*/
|
|
28458
28482
|
adminAnalyticsStoreXStoreIDTagsSummaryGet(xStoreID: string, startTime?: string, endTime?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDTagsSummaryGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDTagsSummaryGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): AxiosPromise<AnalyticsAnalyticsAPIResponse>;
|
|
28459
28483
|
/**
|
|
28460
|
-
* Retrieve API usage logs from ClickHouse
|
|
28484
|
+
* Retrieve API usage logs from ClickHouse fact_events table with filtering and pagination
|
|
28461
28485
|
* @summary Get API Usage Logs
|
|
28462
28486
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
28463
28487
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
@@ -28925,7 +28949,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
28925
28949
|
*/
|
|
28926
28950
|
adminAnalyticsStoreXStoreIDTagsSummaryGet(xStoreID: string, startTime?: string, endTime?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDTagsSummaryGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDTagsSummaryGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AnalyticsAnalyticsAPIResponse, any, {}>>;
|
|
28927
28951
|
/**
|
|
28928
|
-
* Retrieve API usage logs from ClickHouse
|
|
28952
|
+
* Retrieve API usage logs from ClickHouse fact_events table with filtering and pagination
|
|
28929
28953
|
* @summary Get API Usage Logs
|
|
28930
28954
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
28931
28955
|
* @param {string} [endDate] End date (ISO 8601 format)
|
package/dist/api.js
CHANGED
|
@@ -1220,7 +1220,7 @@ exports.AccountSettingsApi = AccountSettingsApi;
|
|
|
1220
1220
|
const ActivityLogsApiAxiosParamCreator = function (configuration) {
|
|
1221
1221
|
return {
|
|
1222
1222
|
/**
|
|
1223
|
-
* Retrieve user activity logs from ClickHouse
|
|
1223
|
+
* Retrieve user activity logs from ClickHouse fact_events table with full filtering, search, and pagination.
|
|
1224
1224
|
* @summary Get Activity Logs
|
|
1225
1225
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
1226
1226
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
@@ -1285,7 +1285,7 @@ const ActivityLogsApiFp = function (configuration) {
|
|
|
1285
1285
|
const localVarAxiosParamCreator = (0, exports.ActivityLogsApiAxiosParamCreator)(configuration);
|
|
1286
1286
|
return {
|
|
1287
1287
|
/**
|
|
1288
|
-
* Retrieve user activity logs from ClickHouse
|
|
1288
|
+
* Retrieve user activity logs from ClickHouse fact_events table with full filtering, search, and pagination.
|
|
1289
1289
|
* @summary Get Activity Logs
|
|
1290
1290
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
1291
1291
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
@@ -1317,7 +1317,7 @@ const ActivityLogsApiFactory = function (configuration, basePath, axios) {
|
|
|
1317
1317
|
const localVarFp = (0, exports.ActivityLogsApiFp)(configuration);
|
|
1318
1318
|
return {
|
|
1319
1319
|
/**
|
|
1320
|
-
* Retrieve user activity logs from ClickHouse
|
|
1320
|
+
* Retrieve user activity logs from ClickHouse fact_events table with full filtering, search, and pagination.
|
|
1321
1321
|
* @summary Get Activity Logs
|
|
1322
1322
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
1323
1323
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
@@ -1343,7 +1343,7 @@ exports.ActivityLogsApiFactory = ActivityLogsApiFactory;
|
|
|
1343
1343
|
*/
|
|
1344
1344
|
class ActivityLogsApi extends base_1.BaseAPI {
|
|
1345
1345
|
/**
|
|
1346
|
-
* Retrieve user activity logs from ClickHouse
|
|
1346
|
+
* Retrieve user activity logs from ClickHouse fact_events table with full filtering, search, and pagination.
|
|
1347
1347
|
* @summary Get Activity Logs
|
|
1348
1348
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
1349
1349
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
@@ -4344,7 +4344,7 @@ const AnalyticsApiAxiosParamCreator = function (configuration) {
|
|
|
4344
4344
|
};
|
|
4345
4345
|
}),
|
|
4346
4346
|
/**
|
|
4347
|
-
* Retrieve API usage logs from ClickHouse
|
|
4347
|
+
* Retrieve API usage logs from ClickHouse fact_events table with filtering and pagination
|
|
4348
4348
|
* @summary Get API Usage Logs
|
|
4349
4349
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
4350
4350
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
@@ -5042,7 +5042,7 @@ const AnalyticsApiFp = function (configuration) {
|
|
|
5042
5042
|
});
|
|
5043
5043
|
},
|
|
5044
5044
|
/**
|
|
5045
|
-
* Retrieve API usage logs from ClickHouse
|
|
5045
|
+
* Retrieve API usage logs from ClickHouse fact_events table with filtering and pagination
|
|
5046
5046
|
* @summary Get API Usage Logs
|
|
5047
5047
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
5048
5048
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
@@ -5554,7 +5554,7 @@ const AnalyticsApiFactory = function (configuration, basePath, axios) {
|
|
|
5554
5554
|
return localVarFp.adminAnalyticsStoreXStoreIDTagsSummaryGet(xStoreID, startTime, endTime, limit, offset, page, pageSize, sortBy, sortOrder, sort, options).then((request) => request(axios, basePath));
|
|
5555
5555
|
},
|
|
5556
5556
|
/**
|
|
5557
|
-
* Retrieve API usage logs from ClickHouse
|
|
5557
|
+
* Retrieve API usage logs from ClickHouse fact_events table with filtering and pagination
|
|
5558
5558
|
* @summary Get API Usage Logs
|
|
5559
5559
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
5560
5560
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
@@ -6066,7 +6066,7 @@ class AnalyticsApi extends base_1.BaseAPI {
|
|
|
6066
6066
|
return (0, exports.AnalyticsApiFp)(this.configuration).adminAnalyticsStoreXStoreIDTagsSummaryGet(xStoreID, startTime, endTime, limit, offset, page, pageSize, sortBy, sortOrder, sort, options).then((request) => request(this.axios, this.basePath));
|
|
6067
6067
|
}
|
|
6068
6068
|
/**
|
|
6069
|
-
* Retrieve API usage logs from ClickHouse
|
|
6069
|
+
* Retrieve API usage logs from ClickHouse fact_events table with filtering and pagination
|
|
6070
6070
|
* @summary Get API Usage Logs
|
|
6071
6071
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
6072
6072
|
* @param {string} [endDate] End date (ISO 8601 format)
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -6735,6 +6735,12 @@ export interface DataTypesCombinedSearchResponse {
|
|
|
6735
6735
|
* @memberof DataTypesCombinedSearchResponse
|
|
6736
6736
|
*/
|
|
6737
6737
|
'results'?: Array<DataTypesCombinedSearchResult>;
|
|
6738
|
+
/**
|
|
6739
|
+
* Unique search identifier for analytics linking
|
|
6740
|
+
* @type {string}
|
|
6741
|
+
* @memberof DataTypesCombinedSearchResponse
|
|
6742
|
+
*/
|
|
6743
|
+
'search_id'?: string;
|
|
6738
6744
|
/**
|
|
6739
6745
|
*
|
|
6740
6746
|
* @type {Array<DataTypesAutocompleteSuggestion>}
|
|
@@ -9383,6 +9389,12 @@ export interface DataTypesEventPayload {
|
|
|
9383
9389
|
* @memberof DataTypesEventPayload
|
|
9384
9390
|
*/
|
|
9385
9391
|
'clicked_item_id'?: string;
|
|
9392
|
+
/**
|
|
9393
|
+
* Primary journey key across search → clicks → conversions
|
|
9394
|
+
* @type {string}
|
|
9395
|
+
* @memberof DataTypesEventPayload
|
|
9396
|
+
*/
|
|
9397
|
+
'correlation_id'?: string;
|
|
9386
9398
|
/**
|
|
9387
9399
|
* Enhanced Geo data fields for direct submission
|
|
9388
9400
|
* @type {string}
|
|
@@ -9475,6 +9487,12 @@ export interface DataTypesEventPayload {
|
|
|
9475
9487
|
* @memberof DataTypesEventPayload
|
|
9476
9488
|
*/
|
|
9477
9489
|
'results_count'?: number;
|
|
9490
|
+
/**
|
|
9491
|
+
* Optional search-scoped identifier (mirrors correlation_id when you have a natural search key)
|
|
9492
|
+
* @type {string}
|
|
9493
|
+
* @memberof DataTypesEventPayload
|
|
9494
|
+
*/
|
|
9495
|
+
'search_id'?: string;
|
|
9478
9496
|
/**
|
|
9479
9497
|
* Session identifier for journey tracking
|
|
9480
9498
|
* @type {string}
|
|
@@ -14514,6 +14532,12 @@ export interface DataTypesOfficialSearchResponse {
|
|
|
14514
14532
|
* @memberof DataTypesOfficialSearchResponse
|
|
14515
14533
|
*/
|
|
14516
14534
|
'results'?: Array<DataTypesOfficialSearchResult>;
|
|
14535
|
+
/**
|
|
14536
|
+
* Unique search identifier for analytics linking
|
|
14537
|
+
* @type {string}
|
|
14538
|
+
* @memberof DataTypesOfficialSearchResponse
|
|
14539
|
+
*/
|
|
14540
|
+
'search_id'?: string;
|
|
14517
14541
|
/**
|
|
14518
14542
|
*
|
|
14519
14543
|
* @type {Array<DataTypesAutocompleteSuggestion>}
|
|
@@ -26381,7 +26405,7 @@ export declare class AccountSettingsApi extends BaseAPI {
|
|
|
26381
26405
|
*/
|
|
26382
26406
|
export declare const ActivityLogsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
26383
26407
|
/**
|
|
26384
|
-
* Retrieve user activity logs from ClickHouse
|
|
26408
|
+
* Retrieve user activity logs from ClickHouse fact_events table with full filtering, search, and pagination.
|
|
26385
26409
|
* @summary Get Activity Logs
|
|
26386
26410
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
26387
26411
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
@@ -26401,7 +26425,7 @@ export declare const ActivityLogsApiAxiosParamCreator: (configuration?: Configur
|
|
|
26401
26425
|
*/
|
|
26402
26426
|
export declare const ActivityLogsApiFp: (configuration?: Configuration) => {
|
|
26403
26427
|
/**
|
|
26404
|
-
* Retrieve user activity logs from ClickHouse
|
|
26428
|
+
* Retrieve user activity logs from ClickHouse fact_events table with full filtering, search, and pagination.
|
|
26405
26429
|
* @summary Get Activity Logs
|
|
26406
26430
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
26407
26431
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
@@ -26421,7 +26445,7 @@ export declare const ActivityLogsApiFp: (configuration?: Configuration) => {
|
|
|
26421
26445
|
*/
|
|
26422
26446
|
export declare const ActivityLogsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
26423
26447
|
/**
|
|
26424
|
-
* Retrieve user activity logs from ClickHouse
|
|
26448
|
+
* Retrieve user activity logs from ClickHouse fact_events table with full filtering, search, and pagination.
|
|
26425
26449
|
* @summary Get Activity Logs
|
|
26426
26450
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
26427
26451
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
@@ -26443,7 +26467,7 @@ export declare const ActivityLogsApiFactory: (configuration?: Configuration, bas
|
|
|
26443
26467
|
*/
|
|
26444
26468
|
export declare class ActivityLogsApi extends BaseAPI {
|
|
26445
26469
|
/**
|
|
26446
|
-
* Retrieve user activity logs from ClickHouse
|
|
26470
|
+
* Retrieve user activity logs from ClickHouse fact_events table with full filtering, search, and pagination.
|
|
26447
26471
|
* @summary Get Activity Logs
|
|
26448
26472
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
26449
26473
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
@@ -27561,7 +27585,7 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
27561
27585
|
*/
|
|
27562
27586
|
adminAnalyticsStoreXStoreIDTagsSummaryGet: (xStoreID: string, startTime?: string, endTime?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDTagsSummaryGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDTagsSummaryGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27563
27587
|
/**
|
|
27564
|
-
* Retrieve API usage logs from ClickHouse
|
|
27588
|
+
* Retrieve API usage logs from ClickHouse fact_events table with filtering and pagination
|
|
27565
27589
|
* @summary Get API Usage Logs
|
|
27566
27590
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
27567
27591
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
@@ -28009,7 +28033,7 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
|
|
|
28009
28033
|
*/
|
|
28010
28034
|
adminAnalyticsStoreXStoreIDTagsSummaryGet(xStoreID: string, startTime?: string, endTime?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDTagsSummaryGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDTagsSummaryGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AnalyticsAnalyticsAPIResponse>>;
|
|
28011
28035
|
/**
|
|
28012
|
-
* Retrieve API usage logs from ClickHouse
|
|
28036
|
+
* Retrieve API usage logs from ClickHouse fact_events table with filtering and pagination
|
|
28013
28037
|
* @summary Get API Usage Logs
|
|
28014
28038
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
28015
28039
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
@@ -28457,7 +28481,7 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
|
|
|
28457
28481
|
*/
|
|
28458
28482
|
adminAnalyticsStoreXStoreIDTagsSummaryGet(xStoreID: string, startTime?: string, endTime?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDTagsSummaryGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDTagsSummaryGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): AxiosPromise<AnalyticsAnalyticsAPIResponse>;
|
|
28459
28483
|
/**
|
|
28460
|
-
* Retrieve API usage logs from ClickHouse
|
|
28484
|
+
* Retrieve API usage logs from ClickHouse fact_events table with filtering and pagination
|
|
28461
28485
|
* @summary Get API Usage Logs
|
|
28462
28486
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
28463
28487
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
@@ -28925,7 +28949,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
28925
28949
|
*/
|
|
28926
28950
|
adminAnalyticsStoreXStoreIDTagsSummaryGet(xStoreID: string, startTime?: string, endTime?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDTagsSummaryGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDTagsSummaryGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AnalyticsAnalyticsAPIResponse, any, {}>>;
|
|
28927
28951
|
/**
|
|
28928
|
-
* Retrieve API usage logs from ClickHouse
|
|
28952
|
+
* Retrieve API usage logs from ClickHouse fact_events table with filtering and pagination
|
|
28929
28953
|
* @summary Get API Usage Logs
|
|
28930
28954
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
28931
28955
|
* @param {string} [endDate] End date (ISO 8601 format)
|
package/dist/esm/api.js
CHANGED
|
@@ -1202,7 +1202,7 @@ export class AccountSettingsApi extends BaseAPI {
|
|
|
1202
1202
|
export const ActivityLogsApiAxiosParamCreator = function (configuration) {
|
|
1203
1203
|
return {
|
|
1204
1204
|
/**
|
|
1205
|
-
* Retrieve user activity logs from ClickHouse
|
|
1205
|
+
* Retrieve user activity logs from ClickHouse fact_events table with full filtering, search, and pagination.
|
|
1206
1206
|
* @summary Get Activity Logs
|
|
1207
1207
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
1208
1208
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
@@ -1266,7 +1266,7 @@ export const ActivityLogsApiFp = function (configuration) {
|
|
|
1266
1266
|
const localVarAxiosParamCreator = ActivityLogsApiAxiosParamCreator(configuration);
|
|
1267
1267
|
return {
|
|
1268
1268
|
/**
|
|
1269
|
-
* Retrieve user activity logs from ClickHouse
|
|
1269
|
+
* Retrieve user activity logs from ClickHouse fact_events table with full filtering, search, and pagination.
|
|
1270
1270
|
* @summary Get Activity Logs
|
|
1271
1271
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
1272
1272
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
@@ -1297,7 +1297,7 @@ export const ActivityLogsApiFactory = function (configuration, basePath, axios)
|
|
|
1297
1297
|
const localVarFp = ActivityLogsApiFp(configuration);
|
|
1298
1298
|
return {
|
|
1299
1299
|
/**
|
|
1300
|
-
* Retrieve user activity logs from ClickHouse
|
|
1300
|
+
* Retrieve user activity logs from ClickHouse fact_events table with full filtering, search, and pagination.
|
|
1301
1301
|
* @summary Get Activity Logs
|
|
1302
1302
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
1303
1303
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
@@ -1322,7 +1322,7 @@ export const ActivityLogsApiFactory = function (configuration, basePath, axios)
|
|
|
1322
1322
|
*/
|
|
1323
1323
|
export class ActivityLogsApi extends BaseAPI {
|
|
1324
1324
|
/**
|
|
1325
|
-
* Retrieve user activity logs from ClickHouse
|
|
1325
|
+
* Retrieve user activity logs from ClickHouse fact_events table with full filtering, search, and pagination.
|
|
1326
1326
|
* @summary Get Activity Logs
|
|
1327
1327
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
1328
1328
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
@@ -4310,7 +4310,7 @@ export const AnalyticsApiAxiosParamCreator = function (configuration) {
|
|
|
4310
4310
|
};
|
|
4311
4311
|
}),
|
|
4312
4312
|
/**
|
|
4313
|
-
* Retrieve API usage logs from ClickHouse
|
|
4313
|
+
* Retrieve API usage logs from ClickHouse fact_events table with filtering and pagination
|
|
4314
4314
|
* @summary Get API Usage Logs
|
|
4315
4315
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
4316
4316
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
@@ -5007,7 +5007,7 @@ export const AnalyticsApiFp = function (configuration) {
|
|
|
5007
5007
|
});
|
|
5008
5008
|
},
|
|
5009
5009
|
/**
|
|
5010
|
-
* Retrieve API usage logs from ClickHouse
|
|
5010
|
+
* Retrieve API usage logs from ClickHouse fact_events table with filtering and pagination
|
|
5011
5011
|
* @summary Get API Usage Logs
|
|
5012
5012
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
5013
5013
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
@@ -5518,7 +5518,7 @@ export const AnalyticsApiFactory = function (configuration, basePath, axios) {
|
|
|
5518
5518
|
return localVarFp.adminAnalyticsStoreXStoreIDTagsSummaryGet(xStoreID, startTime, endTime, limit, offset, page, pageSize, sortBy, sortOrder, sort, options).then((request) => request(axios, basePath));
|
|
5519
5519
|
},
|
|
5520
5520
|
/**
|
|
5521
|
-
* Retrieve API usage logs from ClickHouse
|
|
5521
|
+
* Retrieve API usage logs from ClickHouse fact_events table with filtering and pagination
|
|
5522
5522
|
* @summary Get API Usage Logs
|
|
5523
5523
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
5524
5524
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
@@ -6029,7 +6029,7 @@ export class AnalyticsApi extends BaseAPI {
|
|
|
6029
6029
|
return AnalyticsApiFp(this.configuration).adminAnalyticsStoreXStoreIDTagsSummaryGet(xStoreID, startTime, endTime, limit, offset, page, pageSize, sortBy, sortOrder, sort, options).then((request) => request(this.axios, this.basePath));
|
|
6030
6030
|
}
|
|
6031
6031
|
/**
|
|
6032
|
-
* Retrieve API usage logs from ClickHouse
|
|
6032
|
+
* Retrieve API usage logs from ClickHouse fact_events table with filtering and pagination
|
|
6033
6033
|
* @summary Get API Usage Logs
|
|
6034
6034
|
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
6035
6035
|
* @param {string} [endDate] End date (ISO 8601 format)
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|