@seekora-ai/admin-api 1.0.99 → 1.1.0
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 +16 -3
- package/api.ts +980 -120
- package/dist/api.d.ts +684 -85
- package/dist/api.js +487 -22
- package/dist/esm/api.d.ts +684 -85
- package/dist/esm/api.js +487 -22
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.1.0.tgz +0 -0
- package/seekora-ai-admin-api-1.0.99.tgz +0 -0
package/dist/esm/api.d.ts
CHANGED
|
@@ -1262,6 +1262,122 @@ export interface AdminV1QuerySuggestionsXStoreIDTypesenseGet200Response {
|
|
|
1262
1262
|
*/
|
|
1263
1263
|
'total'?: number;
|
|
1264
1264
|
}
|
|
1265
|
+
/**
|
|
1266
|
+
*
|
|
1267
|
+
* @export
|
|
1268
|
+
* @interface AnalyticsAPIUsageEvent
|
|
1269
|
+
*/
|
|
1270
|
+
export interface AnalyticsAPIUsageEvent {
|
|
1271
|
+
/**
|
|
1272
|
+
*
|
|
1273
|
+
* @type {string}
|
|
1274
|
+
* @memberof AnalyticsAPIUsageEvent
|
|
1275
|
+
*/
|
|
1276
|
+
'event_id'?: string;
|
|
1277
|
+
/**
|
|
1278
|
+
*
|
|
1279
|
+
* @type {string}
|
|
1280
|
+
* @memberof AnalyticsAPIUsageEvent
|
|
1281
|
+
*/
|
|
1282
|
+
'ip'?: string;
|
|
1283
|
+
/**
|
|
1284
|
+
*
|
|
1285
|
+
* @type {string}
|
|
1286
|
+
* @memberof AnalyticsAPIUsageEvent
|
|
1287
|
+
*/
|
|
1288
|
+
'method'?: string;
|
|
1289
|
+
/**
|
|
1290
|
+
*
|
|
1291
|
+
* @type {number}
|
|
1292
|
+
* @memberof AnalyticsAPIUsageEvent
|
|
1293
|
+
*/
|
|
1294
|
+
'nb_operations'?: number;
|
|
1295
|
+
/**
|
|
1296
|
+
*
|
|
1297
|
+
* @type {string}
|
|
1298
|
+
* @memberof AnalyticsAPIUsageEvent
|
|
1299
|
+
*/
|
|
1300
|
+
'org_id'?: string;
|
|
1301
|
+
/**
|
|
1302
|
+
*
|
|
1303
|
+
* @type {number}
|
|
1304
|
+
* @memberof AnalyticsAPIUsageEvent
|
|
1305
|
+
*/
|
|
1306
|
+
'processing_time_ms'?: number;
|
|
1307
|
+
/**
|
|
1308
|
+
*
|
|
1309
|
+
* @type {string}
|
|
1310
|
+
* @memberof AnalyticsAPIUsageEvent
|
|
1311
|
+
*/
|
|
1312
|
+
'request_body'?: string;
|
|
1313
|
+
/**
|
|
1314
|
+
*
|
|
1315
|
+
* @type {string}
|
|
1316
|
+
* @memberof AnalyticsAPIUsageEvent
|
|
1317
|
+
*/
|
|
1318
|
+
'request_headers'?: string;
|
|
1319
|
+
/**
|
|
1320
|
+
*
|
|
1321
|
+
* @type {string}
|
|
1322
|
+
* @memberof AnalyticsAPIUsageEvent
|
|
1323
|
+
*/
|
|
1324
|
+
'response_body'?: string;
|
|
1325
|
+
/**
|
|
1326
|
+
*
|
|
1327
|
+
* @type {number}
|
|
1328
|
+
* @memberof AnalyticsAPIUsageEvent
|
|
1329
|
+
*/
|
|
1330
|
+
'response_code'?: number;
|
|
1331
|
+
/**
|
|
1332
|
+
*
|
|
1333
|
+
* @type {string}
|
|
1334
|
+
* @memberof AnalyticsAPIUsageEvent
|
|
1335
|
+
*/
|
|
1336
|
+
'store_id'?: string;
|
|
1337
|
+
/**
|
|
1338
|
+
*
|
|
1339
|
+
* @type {string}
|
|
1340
|
+
* @memberof AnalyticsAPIUsageEvent
|
|
1341
|
+
*/
|
|
1342
|
+
'time'?: string;
|
|
1343
|
+
/**
|
|
1344
|
+
*
|
|
1345
|
+
* @type {string}
|
|
1346
|
+
* @memberof AnalyticsAPIUsageEvent
|
|
1347
|
+
*/
|
|
1348
|
+
'url'?: string;
|
|
1349
|
+
}
|
|
1350
|
+
/**
|
|
1351
|
+
*
|
|
1352
|
+
* @export
|
|
1353
|
+
* @interface AnalyticsAPIUsageResponse
|
|
1354
|
+
*/
|
|
1355
|
+
export interface AnalyticsAPIUsageResponse {
|
|
1356
|
+
/**
|
|
1357
|
+
*
|
|
1358
|
+
* @type {Array<AnalyticsAPIUsageEvent>}
|
|
1359
|
+
* @memberof AnalyticsAPIUsageResponse
|
|
1360
|
+
*/
|
|
1361
|
+
'data'?: Array<AnalyticsAPIUsageEvent>;
|
|
1362
|
+
/**
|
|
1363
|
+
*
|
|
1364
|
+
* @type {string}
|
|
1365
|
+
* @memberof AnalyticsAPIUsageResponse
|
|
1366
|
+
*/
|
|
1367
|
+
'message'?: string;
|
|
1368
|
+
/**
|
|
1369
|
+
*
|
|
1370
|
+
* @type {SeekoraGoSrcRoutesAnalyticsPaginationMeta}
|
|
1371
|
+
* @memberof AnalyticsAPIUsageResponse
|
|
1372
|
+
*/
|
|
1373
|
+
'meta'?: SeekoraGoSrcRoutesAnalyticsPaginationMeta;
|
|
1374
|
+
/**
|
|
1375
|
+
*
|
|
1376
|
+
* @type {number}
|
|
1377
|
+
* @memberof AnalyticsAPIUsageResponse
|
|
1378
|
+
*/
|
|
1379
|
+
'status'?: number;
|
|
1380
|
+
}
|
|
1265
1381
|
/**
|
|
1266
1382
|
*
|
|
1267
1383
|
* @export
|
|
@@ -3057,10 +3173,10 @@ export interface AnalyticsGeoPopularFiltersSection {
|
|
|
3057
3173
|
'items'?: Array<AnalyticsGeoPopularFilter>;
|
|
3058
3174
|
/**
|
|
3059
3175
|
*
|
|
3060
|
-
* @type {
|
|
3176
|
+
* @type {SeekoraGoSrcAnalyticsPaginationMeta}
|
|
3061
3177
|
* @memberof AnalyticsGeoPopularFiltersSection
|
|
3062
3178
|
*/
|
|
3063
|
-
'meta'?:
|
|
3179
|
+
'meta'?: SeekoraGoSrcAnalyticsPaginationMeta;
|
|
3064
3180
|
}
|
|
3065
3181
|
/**
|
|
3066
3182
|
*
|
|
@@ -3076,10 +3192,10 @@ export interface AnalyticsGeoPopularQueriesSection {
|
|
|
3076
3192
|
'items'?: Array<AnalyticsGeoPopularQuery>;
|
|
3077
3193
|
/**
|
|
3078
3194
|
*
|
|
3079
|
-
* @type {
|
|
3195
|
+
* @type {SeekoraGoSrcAnalyticsPaginationMeta}
|
|
3080
3196
|
* @memberof AnalyticsGeoPopularQueriesSection
|
|
3081
3197
|
*/
|
|
3082
|
-
'meta'?:
|
|
3198
|
+
'meta'?: SeekoraGoSrcAnalyticsPaginationMeta;
|
|
3083
3199
|
}
|
|
3084
3200
|
/**
|
|
3085
3201
|
*
|
|
@@ -3320,10 +3436,10 @@ export interface AnalyticsGeoTopResultsSection {
|
|
|
3320
3436
|
'items'?: Array<AnalyticsGeoTopResult>;
|
|
3321
3437
|
/**
|
|
3322
3438
|
*
|
|
3323
|
-
* @type {
|
|
3439
|
+
* @type {SeekoraGoSrcAnalyticsPaginationMeta}
|
|
3324
3440
|
* @memberof AnalyticsGeoTopResultsSection
|
|
3325
3441
|
*/
|
|
3326
|
-
'meta'?:
|
|
3442
|
+
'meta'?: SeekoraGoSrcAnalyticsPaginationMeta;
|
|
3327
3443
|
}
|
|
3328
3444
|
/**
|
|
3329
3445
|
*
|
|
@@ -3758,10 +3874,10 @@ export interface AnalyticsItemGeoAnalyticsSection {
|
|
|
3758
3874
|
'items'?: Array<AnalyticsItemGeoAnalytic>;
|
|
3759
3875
|
/**
|
|
3760
3876
|
*
|
|
3761
|
-
* @type {
|
|
3877
|
+
* @type {SeekoraGoSrcAnalyticsPaginationMeta}
|
|
3762
3878
|
* @memberof AnalyticsItemGeoAnalyticsSection
|
|
3763
3879
|
*/
|
|
3764
|
-
'meta'?:
|
|
3880
|
+
'meta'?: SeekoraGoSrcAnalyticsPaginationMeta;
|
|
3765
3881
|
}
|
|
3766
3882
|
/**
|
|
3767
3883
|
*
|
|
@@ -4322,10 +4438,10 @@ export interface AnalyticsItemPopularFiltersSection {
|
|
|
4322
4438
|
'items'?: Array<AnalyticsItemPopularFilter>;
|
|
4323
4439
|
/**
|
|
4324
4440
|
*
|
|
4325
|
-
* @type {
|
|
4441
|
+
* @type {SeekoraGoSrcAnalyticsPaginationMeta}
|
|
4326
4442
|
* @memberof AnalyticsItemPopularFiltersSection
|
|
4327
4443
|
*/
|
|
4328
|
-
'meta'?:
|
|
4444
|
+
'meta'?: SeekoraGoSrcAnalyticsPaginationMeta;
|
|
4329
4445
|
}
|
|
4330
4446
|
/**
|
|
4331
4447
|
*
|
|
@@ -4341,10 +4457,10 @@ export interface AnalyticsItemPopularQueriesSection {
|
|
|
4341
4457
|
'items'?: Array<AnalyticsItemPopularQuery>;
|
|
4342
4458
|
/**
|
|
4343
4459
|
*
|
|
4344
|
-
* @type {
|
|
4460
|
+
* @type {SeekoraGoSrcAnalyticsPaginationMeta}
|
|
4345
4461
|
* @memberof AnalyticsItemPopularQueriesSection
|
|
4346
4462
|
*/
|
|
4347
|
-
'meta'?:
|
|
4463
|
+
'meta'?: SeekoraGoSrcAnalyticsPaginationMeta;
|
|
4348
4464
|
}
|
|
4349
4465
|
/**
|
|
4350
4466
|
*
|
|
@@ -4852,49 +4968,6 @@ export interface AnalyticsManualQuerySuggestionRequest {
|
|
|
4852
4968
|
*/
|
|
4853
4969
|
'tags'?: Array<string>;
|
|
4854
4970
|
}
|
|
4855
|
-
/**
|
|
4856
|
-
*
|
|
4857
|
-
* @export
|
|
4858
|
-
* @interface AnalyticsPaginationMeta
|
|
4859
|
-
*/
|
|
4860
|
-
export interface AnalyticsPaginationMeta {
|
|
4861
|
-
/**
|
|
4862
|
-
*
|
|
4863
|
-
* @type {boolean}
|
|
4864
|
-
* @memberof AnalyticsPaginationMeta
|
|
4865
|
-
*/
|
|
4866
|
-
'has_next'?: boolean;
|
|
4867
|
-
/**
|
|
4868
|
-
*
|
|
4869
|
-
* @type {boolean}
|
|
4870
|
-
* @memberof AnalyticsPaginationMeta
|
|
4871
|
-
*/
|
|
4872
|
-
'has_previous'?: boolean;
|
|
4873
|
-
/**
|
|
4874
|
-
*
|
|
4875
|
-
* @type {number}
|
|
4876
|
-
* @memberof AnalyticsPaginationMeta
|
|
4877
|
-
*/
|
|
4878
|
-
'page'?: number;
|
|
4879
|
-
/**
|
|
4880
|
-
*
|
|
4881
|
-
* @type {number}
|
|
4882
|
-
* @memberof AnalyticsPaginationMeta
|
|
4883
|
-
*/
|
|
4884
|
-
'page_size'?: number;
|
|
4885
|
-
/**
|
|
4886
|
-
*
|
|
4887
|
-
* @type {number}
|
|
4888
|
-
* @memberof AnalyticsPaginationMeta
|
|
4889
|
-
*/
|
|
4890
|
-
'total_items'?: number;
|
|
4891
|
-
/**
|
|
4892
|
-
*
|
|
4893
|
-
* @type {number}
|
|
4894
|
-
* @memberof AnalyticsPaginationMeta
|
|
4895
|
-
*/
|
|
4896
|
-
'total_pages'?: number;
|
|
4897
|
-
}
|
|
4898
4971
|
/**
|
|
4899
4972
|
*
|
|
4900
4973
|
* @export
|
|
@@ -5309,10 +5382,10 @@ export interface AnalyticsQueryGeoAnalyticsSection {
|
|
|
5309
5382
|
'items'?: Array<AnalyticsQueryGeoAnalytic>;
|
|
5310
5383
|
/**
|
|
5311
5384
|
*
|
|
5312
|
-
* @type {
|
|
5385
|
+
* @type {SeekoraGoSrcAnalyticsPaginationMeta}
|
|
5313
5386
|
* @memberof AnalyticsQueryGeoAnalyticsSection
|
|
5314
5387
|
*/
|
|
5315
|
-
'meta'?:
|
|
5388
|
+
'meta'?: SeekoraGoSrcAnalyticsPaginationMeta;
|
|
5316
5389
|
}
|
|
5317
5390
|
/**
|
|
5318
5391
|
*
|
|
@@ -5643,10 +5716,10 @@ export interface AnalyticsQueryPopularFiltersSection {
|
|
|
5643
5716
|
'items'?: Array<AnalyticsQueryPopularFilter>;
|
|
5644
5717
|
/**
|
|
5645
5718
|
*
|
|
5646
|
-
* @type {
|
|
5719
|
+
* @type {SeekoraGoSrcAnalyticsPaginationMeta}
|
|
5647
5720
|
* @memberof AnalyticsQueryPopularFiltersSection
|
|
5648
5721
|
*/
|
|
5649
|
-
'meta'?:
|
|
5722
|
+
'meta'?: SeekoraGoSrcAnalyticsPaginationMeta;
|
|
5650
5723
|
}
|
|
5651
5724
|
/**
|
|
5652
5725
|
*
|
|
@@ -5777,10 +5850,10 @@ export interface AnalyticsQueryPopularResultsSection {
|
|
|
5777
5850
|
'items'?: Array<AnalyticsQueryPopularResultWithWidget>;
|
|
5778
5851
|
/**
|
|
5779
5852
|
*
|
|
5780
|
-
* @type {
|
|
5853
|
+
* @type {SeekoraGoSrcAnalyticsPaginationMeta}
|
|
5781
5854
|
* @memberof AnalyticsQueryPopularResultsSection
|
|
5782
5855
|
*/
|
|
5783
|
-
'meta'?:
|
|
5856
|
+
'meta'?: SeekoraGoSrcAnalyticsPaginationMeta;
|
|
5784
5857
|
}
|
|
5785
5858
|
/**
|
|
5786
5859
|
*
|
|
@@ -13579,6 +13652,14 @@ export interface DataTypesPayInvoiceResponse {
|
|
|
13579
13652
|
* @memberof DataTypesPayInvoiceResponse
|
|
13580
13653
|
*/
|
|
13581
13654
|
'currency'?: string;
|
|
13655
|
+
/**
|
|
13656
|
+
* Customer details for prefill
|
|
13657
|
+
* @type {{ [key: string]: any; }}
|
|
13658
|
+
* @memberof DataTypesPayInvoiceResponse
|
|
13659
|
+
*/
|
|
13660
|
+
'customer_prefill'?: {
|
|
13661
|
+
[key: string]: any;
|
|
13662
|
+
};
|
|
13582
13663
|
/**
|
|
13583
13664
|
*
|
|
13584
13665
|
* @type {string}
|
|
@@ -13611,6 +13692,12 @@ export interface DataTypesPayInvoiceResponse {
|
|
|
13611
13692
|
* @memberof DataTypesPayInvoiceResponse
|
|
13612
13693
|
*/
|
|
13613
13694
|
'payment_url'?: string;
|
|
13695
|
+
/**
|
|
13696
|
+
* Razorpay public key for frontend
|
|
13697
|
+
* @type {string}
|
|
13698
|
+
* @memberof DataTypesPayInvoiceResponse
|
|
13699
|
+
*/
|
|
13700
|
+
'razorpay_key'?: string;
|
|
13614
13701
|
/**
|
|
13615
13702
|
*
|
|
13616
13703
|
* @type {string}
|
|
@@ -14268,6 +14355,12 @@ export interface DataTypesProfileResponse {
|
|
|
14268
14355
|
* @memberof DataTypesProfileResponse
|
|
14269
14356
|
*/
|
|
14270
14357
|
'firstname'?: string;
|
|
14358
|
+
/**
|
|
14359
|
+
*
|
|
14360
|
+
* @type {boolean}
|
|
14361
|
+
* @memberof DataTypesProfileResponse
|
|
14362
|
+
*/
|
|
14363
|
+
'has_password'?: boolean;
|
|
14271
14364
|
/**
|
|
14272
14365
|
*
|
|
14273
14366
|
* @type {string}
|
|
@@ -15891,6 +15984,19 @@ export interface DataTypesServiceRequestsListResponse {
|
|
|
15891
15984
|
*/
|
|
15892
15985
|
'status'?: number;
|
|
15893
15986
|
}
|
|
15987
|
+
/**
|
|
15988
|
+
*
|
|
15989
|
+
* @export
|
|
15990
|
+
* @interface DataTypesSetPasswordRequest
|
|
15991
|
+
*/
|
|
15992
|
+
export interface DataTypesSetPasswordRequest {
|
|
15993
|
+
/**
|
|
15994
|
+
*
|
|
15995
|
+
* @type {string}
|
|
15996
|
+
* @memberof DataTypesSetPasswordRequest
|
|
15997
|
+
*/
|
|
15998
|
+
'password': string;
|
|
15999
|
+
}
|
|
15894
16000
|
/**
|
|
15895
16001
|
*
|
|
15896
16002
|
* @export
|
|
@@ -17378,6 +17484,12 @@ export interface DataTypesUser {
|
|
|
17378
17484
|
* @memberof DataTypesUser
|
|
17379
17485
|
*/
|
|
17380
17486
|
'firstName'?: string;
|
|
17487
|
+
/**
|
|
17488
|
+
* ✅ ADD THIS
|
|
17489
|
+
* @type {boolean}
|
|
17490
|
+
* @memberof DataTypesUser
|
|
17491
|
+
*/
|
|
17492
|
+
'has_password'?: boolean;
|
|
17381
17493
|
/**
|
|
17382
17494
|
*
|
|
17383
17495
|
* @type {boolean}
|
|
@@ -18234,6 +18346,256 @@ export declare const RefundRefundPreviewRequestDtoRefundTypeEnum: {
|
|
|
18234
18346
|
readonly RemainingCredits: "remaining_credits";
|
|
18235
18347
|
};
|
|
18236
18348
|
export type RefundRefundPreviewRequestDtoRefundTypeEnum = typeof RefundRefundPreviewRequestDtoRefundTypeEnum[keyof typeof RefundRefundPreviewRequestDtoRefundTypeEnum];
|
|
18349
|
+
/**
|
|
18350
|
+
*
|
|
18351
|
+
* @export
|
|
18352
|
+
* @interface SeekoraGoSrcAnalyticsPaginationMeta
|
|
18353
|
+
*/
|
|
18354
|
+
export interface SeekoraGoSrcAnalyticsPaginationMeta {
|
|
18355
|
+
/**
|
|
18356
|
+
*
|
|
18357
|
+
* @type {boolean}
|
|
18358
|
+
* @memberof SeekoraGoSrcAnalyticsPaginationMeta
|
|
18359
|
+
*/
|
|
18360
|
+
'has_next'?: boolean;
|
|
18361
|
+
/**
|
|
18362
|
+
*
|
|
18363
|
+
* @type {boolean}
|
|
18364
|
+
* @memberof SeekoraGoSrcAnalyticsPaginationMeta
|
|
18365
|
+
*/
|
|
18366
|
+
'has_previous'?: boolean;
|
|
18367
|
+
/**
|
|
18368
|
+
*
|
|
18369
|
+
* @type {number}
|
|
18370
|
+
* @memberof SeekoraGoSrcAnalyticsPaginationMeta
|
|
18371
|
+
*/
|
|
18372
|
+
'page'?: number;
|
|
18373
|
+
/**
|
|
18374
|
+
*
|
|
18375
|
+
* @type {number}
|
|
18376
|
+
* @memberof SeekoraGoSrcAnalyticsPaginationMeta
|
|
18377
|
+
*/
|
|
18378
|
+
'page_size'?: number;
|
|
18379
|
+
/**
|
|
18380
|
+
*
|
|
18381
|
+
* @type {number}
|
|
18382
|
+
* @memberof SeekoraGoSrcAnalyticsPaginationMeta
|
|
18383
|
+
*/
|
|
18384
|
+
'total_items'?: number;
|
|
18385
|
+
/**
|
|
18386
|
+
*
|
|
18387
|
+
* @type {number}
|
|
18388
|
+
* @memberof SeekoraGoSrcAnalyticsPaginationMeta
|
|
18389
|
+
*/
|
|
18390
|
+
'total_pages'?: number;
|
|
18391
|
+
}
|
|
18392
|
+
/**
|
|
18393
|
+
*
|
|
18394
|
+
* @export
|
|
18395
|
+
* @interface SeekoraGoSrcRoutesAnalyticsPaginationMeta
|
|
18396
|
+
*/
|
|
18397
|
+
export interface SeekoraGoSrcRoutesAnalyticsPaginationMeta {
|
|
18398
|
+
/**
|
|
18399
|
+
*
|
|
18400
|
+
* @type {number}
|
|
18401
|
+
* @memberof SeekoraGoSrcRoutesAnalyticsPaginationMeta
|
|
18402
|
+
*/
|
|
18403
|
+
'page'?: number;
|
|
18404
|
+
/**
|
|
18405
|
+
*
|
|
18406
|
+
* @type {number}
|
|
18407
|
+
* @memberof SeekoraGoSrcRoutesAnalyticsPaginationMeta
|
|
18408
|
+
*/
|
|
18409
|
+
'per_page'?: number;
|
|
18410
|
+
/**
|
|
18411
|
+
*
|
|
18412
|
+
* @type {number}
|
|
18413
|
+
* @memberof SeekoraGoSrcRoutesAnalyticsPaginationMeta
|
|
18414
|
+
*/
|
|
18415
|
+
'total_count'?: number;
|
|
18416
|
+
/**
|
|
18417
|
+
*
|
|
18418
|
+
* @type {number}
|
|
18419
|
+
* @memberof SeekoraGoSrcRoutesAnalyticsPaginationMeta
|
|
18420
|
+
*/
|
|
18421
|
+
'total_pages'?: number;
|
|
18422
|
+
}
|
|
18423
|
+
/**
|
|
18424
|
+
*
|
|
18425
|
+
* @export
|
|
18426
|
+
* @interface StoreRouteAPIUsageDetailResponse
|
|
18427
|
+
*/
|
|
18428
|
+
export interface StoreRouteAPIUsageDetailResponse {
|
|
18429
|
+
/**
|
|
18430
|
+
*
|
|
18431
|
+
* @type {StoreRouteAPIUsageLogEntry}
|
|
18432
|
+
* @memberof StoreRouteAPIUsageDetailResponse
|
|
18433
|
+
*/
|
|
18434
|
+
'data'?: StoreRouteAPIUsageLogEntry;
|
|
18435
|
+
/**
|
|
18436
|
+
*
|
|
18437
|
+
* @type {string}
|
|
18438
|
+
* @memberof StoreRouteAPIUsageDetailResponse
|
|
18439
|
+
*/
|
|
18440
|
+
'message'?: string;
|
|
18441
|
+
/**
|
|
18442
|
+
*
|
|
18443
|
+
* @type {number}
|
|
18444
|
+
* @memberof StoreRouteAPIUsageDetailResponse
|
|
18445
|
+
*/
|
|
18446
|
+
'status'?: number;
|
|
18447
|
+
}
|
|
18448
|
+
/**
|
|
18449
|
+
*
|
|
18450
|
+
* @export
|
|
18451
|
+
* @interface StoreRouteAPIUsageListResponse
|
|
18452
|
+
*/
|
|
18453
|
+
export interface StoreRouteAPIUsageListResponse {
|
|
18454
|
+
/**
|
|
18455
|
+
*
|
|
18456
|
+
* @type {Array<StoreRouteAPIUsageLogEntry>}
|
|
18457
|
+
* @memberof StoreRouteAPIUsageListResponse
|
|
18458
|
+
*/
|
|
18459
|
+
'data'?: Array<StoreRouteAPIUsageLogEntry>;
|
|
18460
|
+
/**
|
|
18461
|
+
*
|
|
18462
|
+
* @type {string}
|
|
18463
|
+
* @memberof StoreRouteAPIUsageListResponse
|
|
18464
|
+
*/
|
|
18465
|
+
'message'?: string;
|
|
18466
|
+
/**
|
|
18467
|
+
*
|
|
18468
|
+
* @type {StoreRoutePaginationMeta}
|
|
18469
|
+
* @memberof StoreRouteAPIUsageListResponse
|
|
18470
|
+
*/
|
|
18471
|
+
'meta'?: StoreRoutePaginationMeta;
|
|
18472
|
+
/**
|
|
18473
|
+
*
|
|
18474
|
+
* @type {number}
|
|
18475
|
+
* @memberof StoreRouteAPIUsageListResponse
|
|
18476
|
+
*/
|
|
18477
|
+
'status'?: number;
|
|
18478
|
+
}
|
|
18479
|
+
/**
|
|
18480
|
+
*
|
|
18481
|
+
* @export
|
|
18482
|
+
* @interface StoreRouteAPIUsageLogEntry
|
|
18483
|
+
*/
|
|
18484
|
+
export interface StoreRouteAPIUsageLogEntry {
|
|
18485
|
+
/**
|
|
18486
|
+
*
|
|
18487
|
+
* @type {string}
|
|
18488
|
+
* @memberof StoreRouteAPIUsageLogEntry
|
|
18489
|
+
*/
|
|
18490
|
+
'event_id'?: string;
|
|
18491
|
+
/**
|
|
18492
|
+
*
|
|
18493
|
+
* @type {string}
|
|
18494
|
+
* @memberof StoreRouteAPIUsageLogEntry
|
|
18495
|
+
*/
|
|
18496
|
+
'ip'?: string;
|
|
18497
|
+
/**
|
|
18498
|
+
*
|
|
18499
|
+
* @type {string}
|
|
18500
|
+
* @memberof StoreRouteAPIUsageLogEntry
|
|
18501
|
+
*/
|
|
18502
|
+
'method'?: string;
|
|
18503
|
+
/**
|
|
18504
|
+
*
|
|
18505
|
+
* @type {number}
|
|
18506
|
+
* @memberof StoreRouteAPIUsageLogEntry
|
|
18507
|
+
*/
|
|
18508
|
+
'nb_operations'?: number;
|
|
18509
|
+
/**
|
|
18510
|
+
*
|
|
18511
|
+
* @type {string}
|
|
18512
|
+
* @memberof StoreRouteAPIUsageLogEntry
|
|
18513
|
+
*/
|
|
18514
|
+
'org_code'?: string;
|
|
18515
|
+
/**
|
|
18516
|
+
*
|
|
18517
|
+
* @type {number}
|
|
18518
|
+
* @memberof StoreRouteAPIUsageLogEntry
|
|
18519
|
+
*/
|
|
18520
|
+
'processing_time_ms'?: number;
|
|
18521
|
+
/**
|
|
18522
|
+
*
|
|
18523
|
+
* @type {{ [key: string]: any; }}
|
|
18524
|
+
* @memberof StoreRouteAPIUsageLogEntry
|
|
18525
|
+
*/
|
|
18526
|
+
'request_body'?: {
|
|
18527
|
+
[key: string]: any;
|
|
18528
|
+
};
|
|
18529
|
+
/**
|
|
18530
|
+
*
|
|
18531
|
+
* @type {{ [key: string]: any; }}
|
|
18532
|
+
* @memberof StoreRouteAPIUsageLogEntry
|
|
18533
|
+
*/
|
|
18534
|
+
'request_headers'?: {
|
|
18535
|
+
[key: string]: any;
|
|
18536
|
+
};
|
|
18537
|
+
/**
|
|
18538
|
+
*
|
|
18539
|
+
* @type {any}
|
|
18540
|
+
* @memberof StoreRouteAPIUsageLogEntry
|
|
18541
|
+
*/
|
|
18542
|
+
'response_body'?: any;
|
|
18543
|
+
/**
|
|
18544
|
+
*
|
|
18545
|
+
* @type {number}
|
|
18546
|
+
* @memberof StoreRouteAPIUsageLogEntry
|
|
18547
|
+
*/
|
|
18548
|
+
'response_code'?: number;
|
|
18549
|
+
/**
|
|
18550
|
+
*
|
|
18551
|
+
* @type {string}
|
|
18552
|
+
* @memberof StoreRouteAPIUsageLogEntry
|
|
18553
|
+
*/
|
|
18554
|
+
'store_id'?: string;
|
|
18555
|
+
/**
|
|
18556
|
+
*
|
|
18557
|
+
* @type {string}
|
|
18558
|
+
* @memberof StoreRouteAPIUsageLogEntry
|
|
18559
|
+
*/
|
|
18560
|
+
'time'?: string;
|
|
18561
|
+
/**
|
|
18562
|
+
*
|
|
18563
|
+
* @type {string}
|
|
18564
|
+
* @memberof StoreRouteAPIUsageLogEntry
|
|
18565
|
+
*/
|
|
18566
|
+
'url'?: string;
|
|
18567
|
+
}
|
|
18568
|
+
/**
|
|
18569
|
+
*
|
|
18570
|
+
* @export
|
|
18571
|
+
* @interface StoreRoutePaginationMeta
|
|
18572
|
+
*/
|
|
18573
|
+
export interface StoreRoutePaginationMeta {
|
|
18574
|
+
/**
|
|
18575
|
+
*
|
|
18576
|
+
* @type {number}
|
|
18577
|
+
* @memberof StoreRoutePaginationMeta
|
|
18578
|
+
*/
|
|
18579
|
+
'page'?: number;
|
|
18580
|
+
/**
|
|
18581
|
+
*
|
|
18582
|
+
* @type {number}
|
|
18583
|
+
* @memberof StoreRoutePaginationMeta
|
|
18584
|
+
*/
|
|
18585
|
+
'per_page'?: number;
|
|
18586
|
+
/**
|
|
18587
|
+
*
|
|
18588
|
+
* @type {number}
|
|
18589
|
+
* @memberof StoreRoutePaginationMeta
|
|
18590
|
+
*/
|
|
18591
|
+
'total_count'?: number;
|
|
18592
|
+
/**
|
|
18593
|
+
*
|
|
18594
|
+
* @type {number}
|
|
18595
|
+
* @memberof StoreRoutePaginationMeta
|
|
18596
|
+
*/
|
|
18597
|
+
'total_pages'?: number;
|
|
18598
|
+
}
|
|
18237
18599
|
/**
|
|
18238
18600
|
*
|
|
18239
18601
|
* @export
|
|
@@ -18613,6 +18975,14 @@ export declare const AccountSettingsApiAxiosParamCreator: (configuration?: Confi
|
|
|
18613
18975
|
* @throws {RequiredError}
|
|
18614
18976
|
*/
|
|
18615
18977
|
accountSettingsProfilePut: (dataTypesUpdateProfileRequest: DataTypesUpdateProfileRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
18978
|
+
/**
|
|
18979
|
+
* Allows user to set password only if not already set (Google/GitHub signup)
|
|
18980
|
+
* @summary Set password for OAuth/new user
|
|
18981
|
+
* @param {DataTypesSetPasswordRequest} dataTypesSetPasswordRequest Set password request
|
|
18982
|
+
* @param {*} [options] Override http request option.
|
|
18983
|
+
* @throws {RequiredError}
|
|
18984
|
+
*/
|
|
18985
|
+
accountSettingsSetPasswordPut: (dataTypesSetPasswordRequest: DataTypesSetPasswordRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
18616
18986
|
};
|
|
18617
18987
|
/**
|
|
18618
18988
|
* AccountSettingsApi - functional programming interface
|
|
@@ -18672,6 +19042,14 @@ export declare const AccountSettingsApiFp: (configuration?: Configuration) => {
|
|
|
18672
19042
|
* @throws {RequiredError}
|
|
18673
19043
|
*/
|
|
18674
19044
|
accountSettingsProfilePut(dataTypesUpdateProfileRequest: DataTypesUpdateProfileRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesProfileResponseWrapper>>;
|
|
19045
|
+
/**
|
|
19046
|
+
* Allows user to set password only if not already set (Google/GitHub signup)
|
|
19047
|
+
* @summary Set password for OAuth/new user
|
|
19048
|
+
* @param {DataTypesSetPasswordRequest} dataTypesSetPasswordRequest Set password request
|
|
19049
|
+
* @param {*} [options] Override http request option.
|
|
19050
|
+
* @throws {RequiredError}
|
|
19051
|
+
*/
|
|
19052
|
+
accountSettingsSetPasswordPut(dataTypesSetPasswordRequest: DataTypesSetPasswordRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
18675
19053
|
};
|
|
18676
19054
|
/**
|
|
18677
19055
|
* AccountSettingsApi - factory interface
|
|
@@ -18731,6 +19109,14 @@ export declare const AccountSettingsApiFactory: (configuration?: Configuration,
|
|
|
18731
19109
|
* @throws {RequiredError}
|
|
18732
19110
|
*/
|
|
18733
19111
|
accountSettingsProfilePut(dataTypesUpdateProfileRequest: DataTypesUpdateProfileRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesProfileResponseWrapper>;
|
|
19112
|
+
/**
|
|
19113
|
+
* Allows user to set password only if not already set (Google/GitHub signup)
|
|
19114
|
+
* @summary Set password for OAuth/new user
|
|
19115
|
+
* @param {DataTypesSetPasswordRequest} dataTypesSetPasswordRequest Set password request
|
|
19116
|
+
* @param {*} [options] Override http request option.
|
|
19117
|
+
* @throws {RequiredError}
|
|
19118
|
+
*/
|
|
19119
|
+
accountSettingsSetPasswordPut(dataTypesSetPasswordRequest: DataTypesSetPasswordRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
18734
19120
|
};
|
|
18735
19121
|
/**
|
|
18736
19122
|
* AccountSettingsApi - object-oriented interface
|
|
@@ -18799,6 +19185,15 @@ export declare class AccountSettingsApi extends BaseAPI {
|
|
|
18799
19185
|
* @memberof AccountSettingsApi
|
|
18800
19186
|
*/
|
|
18801
19187
|
accountSettingsProfilePut(dataTypesUpdateProfileRequest: DataTypesUpdateProfileRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesProfileResponseWrapper, any, {}>>;
|
|
19188
|
+
/**
|
|
19189
|
+
* Allows user to set password only if not already set (Google/GitHub signup)
|
|
19190
|
+
* @summary Set password for OAuth/new user
|
|
19191
|
+
* @param {DataTypesSetPasswordRequest} dataTypesSetPasswordRequest Set password request
|
|
19192
|
+
* @param {*} [options] Override http request option.
|
|
19193
|
+
* @throws {RequiredError}
|
|
19194
|
+
* @memberof AccountSettingsApi
|
|
19195
|
+
*/
|
|
19196
|
+
accountSettingsSetPasswordPut(dataTypesSetPasswordRequest: DataTypesSetPasswordRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
18802
19197
|
}
|
|
18803
19198
|
/**
|
|
18804
19199
|
* AnalyticsApi - axios parameter creator
|
|
@@ -19212,6 +19607,33 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
19212
19607
|
* @throws {RequiredError}
|
|
19213
19608
|
*/
|
|
19214
19609
|
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>;
|
|
19610
|
+
/**
|
|
19611
|
+
* Retrieve API usage logs from ClickHouse system_events table with filtering and pagination
|
|
19612
|
+
* @summary Get API Usage Logs
|
|
19613
|
+
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
19614
|
+
* @param {string} [endDate] End date (ISO 8601 format)
|
|
19615
|
+
* @param {string} [method] HTTP method filter
|
|
19616
|
+
* @param {string} [path] Path filter (partial match)
|
|
19617
|
+
* @param {string} [storeId] Store ID filter
|
|
19618
|
+
* @param {number} [page] Page number (default: 1)
|
|
19619
|
+
* @param {number} [perPage] Results per page (default: 50, max: 1000)
|
|
19620
|
+
* @param {*} [options] Override http request option.
|
|
19621
|
+
* @throws {RequiredError}
|
|
19622
|
+
*/
|
|
19623
|
+
analyticsApiUsageGet: (startDate?: string, endDate?: string, method?: string, path?: string, storeId?: string, page?: number, perPage?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
19624
|
+
/**
|
|
19625
|
+
* Retrieve API usage logs for a specific store from ClickHouse
|
|
19626
|
+
* @summary Get Store API Usage Logs
|
|
19627
|
+
* @param {string} storeId Store ID
|
|
19628
|
+
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
19629
|
+
* @param {string} [endDate] End date (ISO 8601 format)
|
|
19630
|
+
* @param {string} [method] HTTP method filter
|
|
19631
|
+
* @param {number} [page] Page number (default: 1)
|
|
19632
|
+
* @param {number} [perPage] Results per page (default: 50, max: 1000)
|
|
19633
|
+
* @param {*} [options] Override http request option.
|
|
19634
|
+
* @throws {RequiredError}
|
|
19635
|
+
*/
|
|
19636
|
+
analyticsApiUsageStoreStoreIdGet: (storeId: string, startDate?: string, endDate?: string, method?: string, page?: number, perPage?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
19215
19637
|
};
|
|
19216
19638
|
/**
|
|
19217
19639
|
* AnalyticsApi - functional programming interface
|
|
@@ -19625,6 +20047,33 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
|
|
|
19625
20047
|
* @throws {RequiredError}
|
|
19626
20048
|
*/
|
|
19627
20049
|
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>>;
|
|
20050
|
+
/**
|
|
20051
|
+
* Retrieve API usage logs from ClickHouse system_events table with filtering and pagination
|
|
20052
|
+
* @summary Get API Usage Logs
|
|
20053
|
+
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
20054
|
+
* @param {string} [endDate] End date (ISO 8601 format)
|
|
20055
|
+
* @param {string} [method] HTTP method filter
|
|
20056
|
+
* @param {string} [path] Path filter (partial match)
|
|
20057
|
+
* @param {string} [storeId] Store ID filter
|
|
20058
|
+
* @param {number} [page] Page number (default: 1)
|
|
20059
|
+
* @param {number} [perPage] Results per page (default: 50, max: 1000)
|
|
20060
|
+
* @param {*} [options] Override http request option.
|
|
20061
|
+
* @throws {RequiredError}
|
|
20062
|
+
*/
|
|
20063
|
+
analyticsApiUsageGet(startDate?: string, endDate?: string, method?: string, path?: string, storeId?: string, page?: number, perPage?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AnalyticsAPIUsageResponse>>;
|
|
20064
|
+
/**
|
|
20065
|
+
* Retrieve API usage logs for a specific store from ClickHouse
|
|
20066
|
+
* @summary Get Store API Usage Logs
|
|
20067
|
+
* @param {string} storeId Store ID
|
|
20068
|
+
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
20069
|
+
* @param {string} [endDate] End date (ISO 8601 format)
|
|
20070
|
+
* @param {string} [method] HTTP method filter
|
|
20071
|
+
* @param {number} [page] Page number (default: 1)
|
|
20072
|
+
* @param {number} [perPage] Results per page (default: 50, max: 1000)
|
|
20073
|
+
* @param {*} [options] Override http request option.
|
|
20074
|
+
* @throws {RequiredError}
|
|
20075
|
+
*/
|
|
20076
|
+
analyticsApiUsageStoreStoreIdGet(storeId: string, startDate?: string, endDate?: string, method?: string, page?: number, perPage?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AnalyticsAPIUsageResponse>>;
|
|
19628
20077
|
};
|
|
19629
20078
|
/**
|
|
19630
20079
|
* AnalyticsApi - factory interface
|
|
@@ -20038,6 +20487,33 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
|
|
|
20038
20487
|
* @throws {RequiredError}
|
|
20039
20488
|
*/
|
|
20040
20489
|
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>;
|
|
20490
|
+
/**
|
|
20491
|
+
* Retrieve API usage logs from ClickHouse system_events table with filtering and pagination
|
|
20492
|
+
* @summary Get API Usage Logs
|
|
20493
|
+
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
20494
|
+
* @param {string} [endDate] End date (ISO 8601 format)
|
|
20495
|
+
* @param {string} [method] HTTP method filter
|
|
20496
|
+
* @param {string} [path] Path filter (partial match)
|
|
20497
|
+
* @param {string} [storeId] Store ID filter
|
|
20498
|
+
* @param {number} [page] Page number (default: 1)
|
|
20499
|
+
* @param {number} [perPage] Results per page (default: 50, max: 1000)
|
|
20500
|
+
* @param {*} [options] Override http request option.
|
|
20501
|
+
* @throws {RequiredError}
|
|
20502
|
+
*/
|
|
20503
|
+
analyticsApiUsageGet(startDate?: string, endDate?: string, method?: string, path?: string, storeId?: string, page?: number, perPage?: number, options?: RawAxiosRequestConfig): AxiosPromise<AnalyticsAPIUsageResponse>;
|
|
20504
|
+
/**
|
|
20505
|
+
* Retrieve API usage logs for a specific store from ClickHouse
|
|
20506
|
+
* @summary Get Store API Usage Logs
|
|
20507
|
+
* @param {string} storeId Store ID
|
|
20508
|
+
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
20509
|
+
* @param {string} [endDate] End date (ISO 8601 format)
|
|
20510
|
+
* @param {string} [method] HTTP method filter
|
|
20511
|
+
* @param {number} [page] Page number (default: 1)
|
|
20512
|
+
* @param {number} [perPage] Results per page (default: 50, max: 1000)
|
|
20513
|
+
* @param {*} [options] Override http request option.
|
|
20514
|
+
* @throws {RequiredError}
|
|
20515
|
+
*/
|
|
20516
|
+
analyticsApiUsageStoreStoreIdGet(storeId: string, startDate?: string, endDate?: string, method?: string, page?: number, perPage?: number, options?: RawAxiosRequestConfig): AxiosPromise<AnalyticsAPIUsageResponse>;
|
|
20041
20517
|
};
|
|
20042
20518
|
/**
|
|
20043
20519
|
* AnalyticsApi - object-oriented interface
|
|
@@ -20471,6 +20947,35 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
20471
20947
|
* @memberof AnalyticsApi
|
|
20472
20948
|
*/
|
|
20473
20949
|
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, {}>>;
|
|
20950
|
+
/**
|
|
20951
|
+
* Retrieve API usage logs from ClickHouse system_events table with filtering and pagination
|
|
20952
|
+
* @summary Get API Usage Logs
|
|
20953
|
+
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
20954
|
+
* @param {string} [endDate] End date (ISO 8601 format)
|
|
20955
|
+
* @param {string} [method] HTTP method filter
|
|
20956
|
+
* @param {string} [path] Path filter (partial match)
|
|
20957
|
+
* @param {string} [storeId] Store ID filter
|
|
20958
|
+
* @param {number} [page] Page number (default: 1)
|
|
20959
|
+
* @param {number} [perPage] Results per page (default: 50, max: 1000)
|
|
20960
|
+
* @param {*} [options] Override http request option.
|
|
20961
|
+
* @throws {RequiredError}
|
|
20962
|
+
* @memberof AnalyticsApi
|
|
20963
|
+
*/
|
|
20964
|
+
analyticsApiUsageGet(startDate?: string, endDate?: string, method?: string, path?: string, storeId?: string, page?: number, perPage?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AnalyticsAPIUsageResponse, any, {}>>;
|
|
20965
|
+
/**
|
|
20966
|
+
* Retrieve API usage logs for a specific store from ClickHouse
|
|
20967
|
+
* @summary Get Store API Usage Logs
|
|
20968
|
+
* @param {string} storeId Store ID
|
|
20969
|
+
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
20970
|
+
* @param {string} [endDate] End date (ISO 8601 format)
|
|
20971
|
+
* @param {string} [method] HTTP method filter
|
|
20972
|
+
* @param {number} [page] Page number (default: 1)
|
|
20973
|
+
* @param {number} [perPage] Results per page (default: 50, max: 1000)
|
|
20974
|
+
* @param {*} [options] Override http request option.
|
|
20975
|
+
* @throws {RequiredError}
|
|
20976
|
+
* @memberof AnalyticsApi
|
|
20977
|
+
*/
|
|
20978
|
+
analyticsApiUsageStoreStoreIdGet(storeId: string, startDate?: string, endDate?: string, method?: string, page?: number, perPage?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AnalyticsAPIUsageResponse, any, {}>>;
|
|
20474
20979
|
}
|
|
20475
20980
|
/**
|
|
20476
20981
|
* @export
|
|
@@ -22267,10 +22772,10 @@ export declare const BillingDashboardApiAxiosParamCreator: (configuration?: Conf
|
|
|
22267
22772
|
*/
|
|
22268
22773
|
adminBillingInvoicesGeneratePaymentIdPost: (paymentId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
22269
22774
|
/**
|
|
22270
|
-
* Retrieves invoices with filtering options
|
|
22775
|
+
* Retrieves paginated list of invoices with filtering options for the authenticated user\'s organization. Returns analytics-compatible pagination object.
|
|
22271
22776
|
* @summary Get invoices
|
|
22272
|
-
* @param {number} [orgId] Organization ID
|
|
22273
|
-
* @param {string} [status] Invoice status
|
|
22777
|
+
* @param {number} [orgId] Organization ID (defaults to user\'s org)
|
|
22778
|
+
* @param {string} [status] Invoice status (draft, sent, paid, overdue, cancelled)
|
|
22274
22779
|
* @param {string} [startDate] Start date (YYYY-MM-DD format)
|
|
22275
22780
|
* @param {string} [endDate] End date (YYYY-MM-DD format)
|
|
22276
22781
|
* @param {number} [page] Page number (default: 1)
|
|
@@ -22525,10 +23030,10 @@ export declare const BillingDashboardApiFp: (configuration?: Configuration) => {
|
|
|
22525
23030
|
*/
|
|
22526
23031
|
adminBillingInvoicesGeneratePaymentIdPost(paymentId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
22527
23032
|
/**
|
|
22528
|
-
* Retrieves invoices with filtering options
|
|
23033
|
+
* Retrieves paginated list of invoices with filtering options for the authenticated user\'s organization. Returns analytics-compatible pagination object.
|
|
22529
23034
|
* @summary Get invoices
|
|
22530
|
-
* @param {number} [orgId] Organization ID
|
|
22531
|
-
* @param {string} [status] Invoice status
|
|
23035
|
+
* @param {number} [orgId] Organization ID (defaults to user\'s org)
|
|
23036
|
+
* @param {string} [status] Invoice status (draft, sent, paid, overdue, cancelled)
|
|
22532
23037
|
* @param {string} [startDate] Start date (YYYY-MM-DD format)
|
|
22533
23038
|
* @param {string} [endDate] End date (YYYY-MM-DD format)
|
|
22534
23039
|
* @param {number} [page] Page number (default: 1)
|
|
@@ -22783,10 +23288,10 @@ export declare const BillingDashboardApiFactory: (configuration?: Configuration,
|
|
|
22783
23288
|
*/
|
|
22784
23289
|
adminBillingInvoicesGeneratePaymentIdPost(paymentId: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
22785
23290
|
/**
|
|
22786
|
-
* Retrieves invoices with filtering options
|
|
23291
|
+
* Retrieves paginated list of invoices with filtering options for the authenticated user\'s organization. Returns analytics-compatible pagination object.
|
|
22787
23292
|
* @summary Get invoices
|
|
22788
|
-
* @param {number} [orgId] Organization ID
|
|
22789
|
-
* @param {string} [status] Invoice status
|
|
23293
|
+
* @param {number} [orgId] Organization ID (defaults to user\'s org)
|
|
23294
|
+
* @param {string} [status] Invoice status (draft, sent, paid, overdue, cancelled)
|
|
22790
23295
|
* @param {string} [startDate] Start date (YYYY-MM-DD format)
|
|
22791
23296
|
* @param {string} [endDate] End date (YYYY-MM-DD format)
|
|
22792
23297
|
* @param {number} [page] Page number (default: 1)
|
|
@@ -23054,10 +23559,10 @@ export declare class BillingDashboardApi extends BaseAPI {
|
|
|
23054
23559
|
*/
|
|
23055
23560
|
adminBillingInvoicesGeneratePaymentIdPost(paymentId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
23056
23561
|
/**
|
|
23057
|
-
* Retrieves invoices with filtering options
|
|
23562
|
+
* Retrieves paginated list of invoices with filtering options for the authenticated user\'s organization. Returns analytics-compatible pagination object.
|
|
23058
23563
|
* @summary Get invoices
|
|
23059
|
-
* @param {number} [orgId] Organization ID
|
|
23060
|
-
* @param {string} [status] Invoice status
|
|
23564
|
+
* @param {number} [orgId] Organization ID (defaults to user\'s org)
|
|
23565
|
+
* @param {string} [status] Invoice status (draft, sent, paid, overdue, cancelled)
|
|
23061
23566
|
* @param {string} [startDate] Start date (YYYY-MM-DD format)
|
|
23062
23567
|
* @param {string} [endDate] End date (YYYY-MM-DD format)
|
|
23063
23568
|
* @param {number} [page] Page number (default: 1)
|
|
@@ -32461,6 +32966,29 @@ export declare const StoresApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
32461
32966
|
* @throws {RequiredError}
|
|
32462
32967
|
*/
|
|
32463
32968
|
adminStoresUpdateStatusIdStatusPut: (id: number, status: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
32969
|
+
/**
|
|
32970
|
+
* Retrieve detailed information for a specific API usage event including headers, request body, and response body
|
|
32971
|
+
* @summary Get Specific API Usage Event
|
|
32972
|
+
* @param {string} xStoreID Store ID
|
|
32973
|
+
* @param {string} eventID Event ID (UUID)
|
|
32974
|
+
* @param {*} [options] Override http request option.
|
|
32975
|
+
* @throws {RequiredError}
|
|
32976
|
+
*/
|
|
32977
|
+
adminStoresXStoreIDApiUsageEventIDGet: (xStoreID: string, eventID: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
32978
|
+
/**
|
|
32979
|
+
* Retrieve API usage logs for a specific store from ClickHouse with filtering and pagination
|
|
32980
|
+
* @summary Get API Usage Logs for Store
|
|
32981
|
+
* @param {string} xStoreID Store ID
|
|
32982
|
+
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
32983
|
+
* @param {string} [endDate] End date (ISO 8601 format)
|
|
32984
|
+
* @param {string} [method] HTTP method filter
|
|
32985
|
+
* @param {string} [path] Path filter (partial match)
|
|
32986
|
+
* @param {number} [page] Page number (default: 1)
|
|
32987
|
+
* @param {number} [perPage] Results per page (default: 50, max: 1000)
|
|
32988
|
+
* @param {*} [options] Override http request option.
|
|
32989
|
+
* @throws {RequiredError}
|
|
32990
|
+
*/
|
|
32991
|
+
adminStoresXStoreIDApiUsageGet: (xStoreID: string, startDate?: string, endDate?: string, method?: string, path?: string, page?: number, perPage?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
32464
32992
|
/**
|
|
32465
32993
|
* Retrieves the store configuration using x-store ID
|
|
32466
32994
|
* @summary Get Store Config
|
|
@@ -32511,16 +33039,16 @@ export declare const StoresApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
32511
33039
|
*/
|
|
32512
33040
|
adminStoresXStoreIDSchemaOptionsGet: (xStoreID: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
32513
33041
|
/**
|
|
32514
|
-
* Perform search on a specific store by xStoreID
|
|
33042
|
+
* Perform search on a specific store by xStoreID. Empty query string returns all results.
|
|
32515
33043
|
* @summary Get store search results
|
|
32516
33044
|
* @param {string} xStoreID X-Store ID
|
|
32517
|
-
* @param {string} query Search query
|
|
33045
|
+
* @param {string} [query] Search query (empty returns all results)
|
|
32518
33046
|
* @param {number} [page] Page number
|
|
32519
33047
|
* @param {number} [pageSize] Page size
|
|
32520
33048
|
* @param {*} [options] Override http request option.
|
|
32521
33049
|
* @throws {RequiredError}
|
|
32522
33050
|
*/
|
|
32523
|
-
adminStoresXStoreIDSearchGet: (xStoreID: string, query
|
|
33051
|
+
adminStoresXStoreIDSearchGet: (xStoreID: string, query?: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
32524
33052
|
/**
|
|
32525
33053
|
* Update store configuration for specific steps (displayAttributes, searchableAttributes, relevancyOrder)
|
|
32526
33054
|
* @summary Update store step configuration
|
|
@@ -32586,6 +33114,29 @@ export declare const StoresApiFp: (configuration?: Configuration) => {
|
|
|
32586
33114
|
* @throws {RequiredError}
|
|
32587
33115
|
*/
|
|
32588
33116
|
adminStoresUpdateStatusIdStatusPut(id: number, status: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
33117
|
+
/**
|
|
33118
|
+
* Retrieve detailed information for a specific API usage event including headers, request body, and response body
|
|
33119
|
+
* @summary Get Specific API Usage Event
|
|
33120
|
+
* @param {string} xStoreID Store ID
|
|
33121
|
+
* @param {string} eventID Event ID (UUID)
|
|
33122
|
+
* @param {*} [options] Override http request option.
|
|
33123
|
+
* @throws {RequiredError}
|
|
33124
|
+
*/
|
|
33125
|
+
adminStoresXStoreIDApiUsageEventIDGet(xStoreID: string, eventID: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StoreRouteAPIUsageDetailResponse>>;
|
|
33126
|
+
/**
|
|
33127
|
+
* Retrieve API usage logs for a specific store from ClickHouse with filtering and pagination
|
|
33128
|
+
* @summary Get API Usage Logs for Store
|
|
33129
|
+
* @param {string} xStoreID Store ID
|
|
33130
|
+
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
33131
|
+
* @param {string} [endDate] End date (ISO 8601 format)
|
|
33132
|
+
* @param {string} [method] HTTP method filter
|
|
33133
|
+
* @param {string} [path] Path filter (partial match)
|
|
33134
|
+
* @param {number} [page] Page number (default: 1)
|
|
33135
|
+
* @param {number} [perPage] Results per page (default: 50, max: 1000)
|
|
33136
|
+
* @param {*} [options] Override http request option.
|
|
33137
|
+
* @throws {RequiredError}
|
|
33138
|
+
*/
|
|
33139
|
+
adminStoresXStoreIDApiUsageGet(xStoreID: string, startDate?: string, endDate?: string, method?: string, path?: string, page?: number, perPage?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StoreRouteAPIUsageListResponse>>;
|
|
32589
33140
|
/**
|
|
32590
33141
|
* Retrieves the store configuration using x-store ID
|
|
32591
33142
|
* @summary Get Store Config
|
|
@@ -32636,16 +33187,16 @@ export declare const StoresApiFp: (configuration?: Configuration) => {
|
|
|
32636
33187
|
*/
|
|
32637
33188
|
adminStoresXStoreIDSchemaOptionsGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesSchemaOptionsResponseWrapper>>;
|
|
32638
33189
|
/**
|
|
32639
|
-
* Perform search on a specific store by xStoreID
|
|
33190
|
+
* Perform search on a specific store by xStoreID. Empty query string returns all results.
|
|
32640
33191
|
* @summary Get store search results
|
|
32641
33192
|
* @param {string} xStoreID X-Store ID
|
|
32642
|
-
* @param {string} query Search query
|
|
33193
|
+
* @param {string} [query] Search query (empty returns all results)
|
|
32643
33194
|
* @param {number} [page] Page number
|
|
32644
33195
|
* @param {number} [pageSize] Page size
|
|
32645
33196
|
* @param {*} [options] Override http request option.
|
|
32646
33197
|
* @throws {RequiredError}
|
|
32647
33198
|
*/
|
|
32648
|
-
adminStoresXStoreIDSearchGet(xStoreID: string, query
|
|
33199
|
+
adminStoresXStoreIDSearchGet(xStoreID: string, query?: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesOnboardingTestSearchResponseWrapper>>;
|
|
32649
33200
|
/**
|
|
32650
33201
|
* Update store configuration for specific steps (displayAttributes, searchableAttributes, relevancyOrder)
|
|
32651
33202
|
* @summary Update store step configuration
|
|
@@ -32711,6 +33262,29 @@ export declare const StoresApiFactory: (configuration?: Configuration, basePath?
|
|
|
32711
33262
|
* @throws {RequiredError}
|
|
32712
33263
|
*/
|
|
32713
33264
|
adminStoresUpdateStatusIdStatusPut(id: number, status: boolean, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
33265
|
+
/**
|
|
33266
|
+
* Retrieve detailed information for a specific API usage event including headers, request body, and response body
|
|
33267
|
+
* @summary Get Specific API Usage Event
|
|
33268
|
+
* @param {string} xStoreID Store ID
|
|
33269
|
+
* @param {string} eventID Event ID (UUID)
|
|
33270
|
+
* @param {*} [options] Override http request option.
|
|
33271
|
+
* @throws {RequiredError}
|
|
33272
|
+
*/
|
|
33273
|
+
adminStoresXStoreIDApiUsageEventIDGet(xStoreID: string, eventID: string, options?: RawAxiosRequestConfig): AxiosPromise<StoreRouteAPIUsageDetailResponse>;
|
|
33274
|
+
/**
|
|
33275
|
+
* Retrieve API usage logs for a specific store from ClickHouse with filtering and pagination
|
|
33276
|
+
* @summary Get API Usage Logs for Store
|
|
33277
|
+
* @param {string} xStoreID Store ID
|
|
33278
|
+
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
33279
|
+
* @param {string} [endDate] End date (ISO 8601 format)
|
|
33280
|
+
* @param {string} [method] HTTP method filter
|
|
33281
|
+
* @param {string} [path] Path filter (partial match)
|
|
33282
|
+
* @param {number} [page] Page number (default: 1)
|
|
33283
|
+
* @param {number} [perPage] Results per page (default: 50, max: 1000)
|
|
33284
|
+
* @param {*} [options] Override http request option.
|
|
33285
|
+
* @throws {RequiredError}
|
|
33286
|
+
*/
|
|
33287
|
+
adminStoresXStoreIDApiUsageGet(xStoreID: string, startDate?: string, endDate?: string, method?: string, path?: string, page?: number, perPage?: number, options?: RawAxiosRequestConfig): AxiosPromise<StoreRouteAPIUsageListResponse>;
|
|
32714
33288
|
/**
|
|
32715
33289
|
* Retrieves the store configuration using x-store ID
|
|
32716
33290
|
* @summary Get Store Config
|
|
@@ -32761,16 +33335,16 @@ export declare const StoresApiFactory: (configuration?: Configuration, basePath?
|
|
|
32761
33335
|
*/
|
|
32762
33336
|
adminStoresXStoreIDSchemaOptionsGet(xStoreID: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesSchemaOptionsResponseWrapper>;
|
|
32763
33337
|
/**
|
|
32764
|
-
* Perform search on a specific store by xStoreID
|
|
33338
|
+
* Perform search on a specific store by xStoreID. Empty query string returns all results.
|
|
32765
33339
|
* @summary Get store search results
|
|
32766
33340
|
* @param {string} xStoreID X-Store ID
|
|
32767
|
-
* @param {string} query Search query
|
|
33341
|
+
* @param {string} [query] Search query (empty returns all results)
|
|
32768
33342
|
* @param {number} [page] Page number
|
|
32769
33343
|
* @param {number} [pageSize] Page size
|
|
32770
33344
|
* @param {*} [options] Override http request option.
|
|
32771
33345
|
* @throws {RequiredError}
|
|
32772
33346
|
*/
|
|
32773
|
-
adminStoresXStoreIDSearchGet(xStoreID: string, query
|
|
33347
|
+
adminStoresXStoreIDSearchGet(xStoreID: string, query?: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesOnboardingTestSearchResponseWrapper>;
|
|
32774
33348
|
/**
|
|
32775
33349
|
* Update store configuration for specific steps (displayAttributes, searchableAttributes, relevancyOrder)
|
|
32776
33350
|
* @summary Update store step configuration
|
|
@@ -32843,6 +33417,31 @@ export declare class StoresApi extends BaseAPI {
|
|
|
32843
33417
|
* @memberof StoresApi
|
|
32844
33418
|
*/
|
|
32845
33419
|
adminStoresUpdateStatusIdStatusPut(id: number, status: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
33420
|
+
/**
|
|
33421
|
+
* Retrieve detailed information for a specific API usage event including headers, request body, and response body
|
|
33422
|
+
* @summary Get Specific API Usage Event
|
|
33423
|
+
* @param {string} xStoreID Store ID
|
|
33424
|
+
* @param {string} eventID Event ID (UUID)
|
|
33425
|
+
* @param {*} [options] Override http request option.
|
|
33426
|
+
* @throws {RequiredError}
|
|
33427
|
+
* @memberof StoresApi
|
|
33428
|
+
*/
|
|
33429
|
+
adminStoresXStoreIDApiUsageEventIDGet(xStoreID: string, eventID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StoreRouteAPIUsageDetailResponse, any, {}>>;
|
|
33430
|
+
/**
|
|
33431
|
+
* Retrieve API usage logs for a specific store from ClickHouse with filtering and pagination
|
|
33432
|
+
* @summary Get API Usage Logs for Store
|
|
33433
|
+
* @param {string} xStoreID Store ID
|
|
33434
|
+
* @param {string} [startDate] Start date (ISO 8601 format)
|
|
33435
|
+
* @param {string} [endDate] End date (ISO 8601 format)
|
|
33436
|
+
* @param {string} [method] HTTP method filter
|
|
33437
|
+
* @param {string} [path] Path filter (partial match)
|
|
33438
|
+
* @param {number} [page] Page number (default: 1)
|
|
33439
|
+
* @param {number} [perPage] Results per page (default: 50, max: 1000)
|
|
33440
|
+
* @param {*} [options] Override http request option.
|
|
33441
|
+
* @throws {RequiredError}
|
|
33442
|
+
* @memberof StoresApi
|
|
33443
|
+
*/
|
|
33444
|
+
adminStoresXStoreIDApiUsageGet(xStoreID: string, startDate?: string, endDate?: string, method?: string, path?: string, page?: number, perPage?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StoreRouteAPIUsageListResponse, any, {}>>;
|
|
32846
33445
|
/**
|
|
32847
33446
|
* Retrieves the store configuration using x-store ID
|
|
32848
33447
|
* @summary Get Store Config
|
|
@@ -32899,17 +33498,17 @@ export declare class StoresApi extends BaseAPI {
|
|
|
32899
33498
|
*/
|
|
32900
33499
|
adminStoresXStoreIDSchemaOptionsGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSchemaOptionsResponseWrapper, any, {}>>;
|
|
32901
33500
|
/**
|
|
32902
|
-
* Perform search on a specific store by xStoreID
|
|
33501
|
+
* Perform search on a specific store by xStoreID. Empty query string returns all results.
|
|
32903
33502
|
* @summary Get store search results
|
|
32904
33503
|
* @param {string} xStoreID X-Store ID
|
|
32905
|
-
* @param {string} query Search query
|
|
33504
|
+
* @param {string} [query] Search query (empty returns all results)
|
|
32906
33505
|
* @param {number} [page] Page number
|
|
32907
33506
|
* @param {number} [pageSize] Page size
|
|
32908
33507
|
* @param {*} [options] Override http request option.
|
|
32909
33508
|
* @throws {RequiredError}
|
|
32910
33509
|
* @memberof StoresApi
|
|
32911
33510
|
*/
|
|
32912
|
-
adminStoresXStoreIDSearchGet(xStoreID: string, query
|
|
33511
|
+
adminStoresXStoreIDSearchGet(xStoreID: string, query?: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOnboardingTestSearchResponseWrapper, any, {}>>;
|
|
32913
33512
|
/**
|
|
32914
33513
|
* Update store configuration for specific steps (displayAttributes, searchableAttributes, relevancyOrder)
|
|
32915
33514
|
* @summary Update store step configuration
|