@seekora-ai/admin-api 1.1.20 → 1.1.22
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 +20 -2
- package/api.ts +1054 -63
- package/dist/api.d.ts +760 -6
- package/dist/api.js +471 -9
- package/dist/esm/api.d.ts +760 -6
- package/dist/esm/api.js +462 -4
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.1.22.tgz +0 -0
- package/seekora-ai-admin-api-1.1.20.tgz +0 -0
package/dist/api.d.ts
CHANGED
|
@@ -9925,6 +9925,49 @@ export interface DataTypesCreditPlanDetails {
|
|
|
9925
9925
|
*/
|
|
9926
9926
|
'validity_days'?: number;
|
|
9927
9927
|
}
|
|
9928
|
+
/**
|
|
9929
|
+
*
|
|
9930
|
+
* @export
|
|
9931
|
+
* @interface DataTypesCreditsConsumedGraphResponse
|
|
9932
|
+
*/
|
|
9933
|
+
export interface DataTypesCreditsConsumedGraphResponse {
|
|
9934
|
+
/**
|
|
9935
|
+
*
|
|
9936
|
+
* @type {Array<DataTypesTimeSeriesDataPoint>}
|
|
9937
|
+
* @memberof DataTypesCreditsConsumedGraphResponse
|
|
9938
|
+
*/
|
|
9939
|
+
'data_points'?: Array<DataTypesTimeSeriesDataPoint>;
|
|
9940
|
+
/**
|
|
9941
|
+
*
|
|
9942
|
+
* @type {string}
|
|
9943
|
+
* @memberof DataTypesCreditsConsumedGraphResponse
|
|
9944
|
+
*/
|
|
9945
|
+
'granularity'?: string;
|
|
9946
|
+
/**
|
|
9947
|
+
*
|
|
9948
|
+
* @type {DataTypesPeriodInfo}
|
|
9949
|
+
* @memberof DataTypesCreditsConsumedGraphResponse
|
|
9950
|
+
*/
|
|
9951
|
+
'period'?: DataTypesPeriodInfo;
|
|
9952
|
+
/**
|
|
9953
|
+
* XStoreID if filtered
|
|
9954
|
+
* @type {string}
|
|
9955
|
+
* @memberof DataTypesCreditsConsumedGraphResponse
|
|
9956
|
+
*/
|
|
9957
|
+
'store_filter'?: string;
|
|
9958
|
+
/**
|
|
9959
|
+
*
|
|
9960
|
+
* @type {number}
|
|
9961
|
+
* @memberof DataTypesCreditsConsumedGraphResponse
|
|
9962
|
+
*/
|
|
9963
|
+
'store_id'?: number;
|
|
9964
|
+
/**
|
|
9965
|
+
*
|
|
9966
|
+
* @type {number}
|
|
9967
|
+
* @memberof DataTypesCreditsConsumedGraphResponse
|
|
9968
|
+
*/
|
|
9969
|
+
'total_credits'?: number;
|
|
9970
|
+
}
|
|
9928
9971
|
/**
|
|
9929
9972
|
*
|
|
9930
9973
|
* @export
|
|
@@ -11327,6 +11370,31 @@ export interface DataTypesGatewayListResponse {
|
|
|
11327
11370
|
*/
|
|
11328
11371
|
'gateways'?: Array<DataTypesGatewayInfo>;
|
|
11329
11372
|
}
|
|
11373
|
+
/**
|
|
11374
|
+
*
|
|
11375
|
+
* @export
|
|
11376
|
+
* @interface DataTypesGenericResponseAny
|
|
11377
|
+
*/
|
|
11378
|
+
export interface DataTypesGenericResponseAny {
|
|
11379
|
+
/**
|
|
11380
|
+
*
|
|
11381
|
+
* @type {any}
|
|
11382
|
+
* @memberof DataTypesGenericResponseAny
|
|
11383
|
+
*/
|
|
11384
|
+
'data'?: any;
|
|
11385
|
+
/**
|
|
11386
|
+
*
|
|
11387
|
+
* @type {string}
|
|
11388
|
+
* @memberof DataTypesGenericResponseAny
|
|
11389
|
+
*/
|
|
11390
|
+
'message'?: string;
|
|
11391
|
+
/**
|
|
11392
|
+
*
|
|
11393
|
+
* @type {number}
|
|
11394
|
+
* @memberof DataTypesGenericResponseAny
|
|
11395
|
+
*/
|
|
11396
|
+
'status'?: number;
|
|
11397
|
+
}
|
|
11330
11398
|
/**
|
|
11331
11399
|
*
|
|
11332
11400
|
* @export
|
|
@@ -11352,6 +11420,31 @@ export interface DataTypesGenericResponseDataTypesBillingOrderDetailsResponse {
|
|
|
11352
11420
|
*/
|
|
11353
11421
|
'status'?: number;
|
|
11354
11422
|
}
|
|
11423
|
+
/**
|
|
11424
|
+
*
|
|
11425
|
+
* @export
|
|
11426
|
+
* @interface DataTypesGenericResponseDataTypesCreditsConsumedGraphResponse
|
|
11427
|
+
*/
|
|
11428
|
+
export interface DataTypesGenericResponseDataTypesCreditsConsumedGraphResponse {
|
|
11429
|
+
/**
|
|
11430
|
+
*
|
|
11431
|
+
* @type {DataTypesCreditsConsumedGraphResponse}
|
|
11432
|
+
* @memberof DataTypesGenericResponseDataTypesCreditsConsumedGraphResponse
|
|
11433
|
+
*/
|
|
11434
|
+
'data'?: DataTypesCreditsConsumedGraphResponse;
|
|
11435
|
+
/**
|
|
11436
|
+
*
|
|
11437
|
+
* @type {string}
|
|
11438
|
+
* @memberof DataTypesGenericResponseDataTypesCreditsConsumedGraphResponse
|
|
11439
|
+
*/
|
|
11440
|
+
'message'?: string;
|
|
11441
|
+
/**
|
|
11442
|
+
*
|
|
11443
|
+
* @type {number}
|
|
11444
|
+
* @memberof DataTypesGenericResponseDataTypesCreditsConsumedGraphResponse
|
|
11445
|
+
*/
|
|
11446
|
+
'status'?: number;
|
|
11447
|
+
}
|
|
11355
11448
|
/**
|
|
11356
11449
|
*
|
|
11357
11450
|
* @export
|
|
@@ -11502,6 +11595,31 @@ export interface DataTypesGenericResponseDataTypesReceipt {
|
|
|
11502
11595
|
*/
|
|
11503
11596
|
'status'?: number;
|
|
11504
11597
|
}
|
|
11598
|
+
/**
|
|
11599
|
+
*
|
|
11600
|
+
* @export
|
|
11601
|
+
* @interface DataTypesGenericResponseDataTypesSearchRequestsGraphResponse
|
|
11602
|
+
*/
|
|
11603
|
+
export interface DataTypesGenericResponseDataTypesSearchRequestsGraphResponse {
|
|
11604
|
+
/**
|
|
11605
|
+
*
|
|
11606
|
+
* @type {DataTypesSearchRequestsGraphResponse}
|
|
11607
|
+
* @memberof DataTypesGenericResponseDataTypesSearchRequestsGraphResponse
|
|
11608
|
+
*/
|
|
11609
|
+
'data'?: DataTypesSearchRequestsGraphResponse;
|
|
11610
|
+
/**
|
|
11611
|
+
*
|
|
11612
|
+
* @type {string}
|
|
11613
|
+
* @memberof DataTypesGenericResponseDataTypesSearchRequestsGraphResponse
|
|
11614
|
+
*/
|
|
11615
|
+
'message'?: string;
|
|
11616
|
+
/**
|
|
11617
|
+
*
|
|
11618
|
+
* @type {number}
|
|
11619
|
+
* @memberof DataTypesGenericResponseDataTypesSearchRequestsGraphResponse
|
|
11620
|
+
*/
|
|
11621
|
+
'status'?: number;
|
|
11622
|
+
}
|
|
11505
11623
|
/**
|
|
11506
11624
|
*
|
|
11507
11625
|
* @export
|
|
@@ -11527,6 +11645,56 @@ export interface DataTypesGenericResponseDataTypesTaxCalculationResponse {
|
|
|
11527
11645
|
*/
|
|
11528
11646
|
'status'?: number;
|
|
11529
11647
|
}
|
|
11648
|
+
/**
|
|
11649
|
+
*
|
|
11650
|
+
* @export
|
|
11651
|
+
* @interface DataTypesGenericResponseDataTypesTimeSeriesConsumptionGraphResponse
|
|
11652
|
+
*/
|
|
11653
|
+
export interface DataTypesGenericResponseDataTypesTimeSeriesConsumptionGraphResponse {
|
|
11654
|
+
/**
|
|
11655
|
+
*
|
|
11656
|
+
* @type {DataTypesTimeSeriesConsumptionGraphResponse}
|
|
11657
|
+
* @memberof DataTypesGenericResponseDataTypesTimeSeriesConsumptionGraphResponse
|
|
11658
|
+
*/
|
|
11659
|
+
'data'?: DataTypesTimeSeriesConsumptionGraphResponse;
|
|
11660
|
+
/**
|
|
11661
|
+
*
|
|
11662
|
+
* @type {string}
|
|
11663
|
+
* @memberof DataTypesGenericResponseDataTypesTimeSeriesConsumptionGraphResponse
|
|
11664
|
+
*/
|
|
11665
|
+
'message'?: string;
|
|
11666
|
+
/**
|
|
11667
|
+
*
|
|
11668
|
+
* @type {number}
|
|
11669
|
+
* @memberof DataTypesGenericResponseDataTypesTimeSeriesConsumptionGraphResponse
|
|
11670
|
+
*/
|
|
11671
|
+
'status'?: number;
|
|
11672
|
+
}
|
|
11673
|
+
/**
|
|
11674
|
+
*
|
|
11675
|
+
* @export
|
|
11676
|
+
* @interface DataTypesGenericResponseDataTypesUsageBreakdownGraphResponse
|
|
11677
|
+
*/
|
|
11678
|
+
export interface DataTypesGenericResponseDataTypesUsageBreakdownGraphResponse {
|
|
11679
|
+
/**
|
|
11680
|
+
*
|
|
11681
|
+
* @type {DataTypesUsageBreakdownGraphResponse}
|
|
11682
|
+
* @memberof DataTypesGenericResponseDataTypesUsageBreakdownGraphResponse
|
|
11683
|
+
*/
|
|
11684
|
+
'data'?: DataTypesUsageBreakdownGraphResponse;
|
|
11685
|
+
/**
|
|
11686
|
+
*
|
|
11687
|
+
* @type {string}
|
|
11688
|
+
* @memberof DataTypesGenericResponseDataTypesUsageBreakdownGraphResponse
|
|
11689
|
+
*/
|
|
11690
|
+
'message'?: string;
|
|
11691
|
+
/**
|
|
11692
|
+
*
|
|
11693
|
+
* @type {number}
|
|
11694
|
+
* @memberof DataTypesGenericResponseDataTypesUsageBreakdownGraphResponse
|
|
11695
|
+
*/
|
|
11696
|
+
'status'?: number;
|
|
11697
|
+
}
|
|
11530
11698
|
/**
|
|
11531
11699
|
*
|
|
11532
11700
|
* @export
|
|
@@ -11885,6 +12053,12 @@ export interface DataTypesIndexConfig {
|
|
|
11885
12053
|
* @memberof DataTypesIndexConfig
|
|
11886
12054
|
*/
|
|
11887
12055
|
'include_fields'?: Array<string>;
|
|
12056
|
+
/**
|
|
12057
|
+
* \"always\", \"fallback\", or \"off\"
|
|
12058
|
+
* @type {string}
|
|
12059
|
+
* @memberof DataTypesIndexConfig
|
|
12060
|
+
*/
|
|
12061
|
+
'infix'?: string;
|
|
11888
12062
|
/**
|
|
11889
12063
|
*
|
|
11890
12064
|
* @type {string}
|
|
@@ -13857,6 +14031,12 @@ export interface DataTypesNotification {
|
|
|
13857
14031
|
* @memberof DataTypesNotification
|
|
13858
14032
|
*/
|
|
13859
14033
|
'group_id'?: string;
|
|
14034
|
+
/**
|
|
14035
|
+
*
|
|
14036
|
+
* @type {string}
|
|
14037
|
+
* @memberof DataTypesNotification
|
|
14038
|
+
*/
|
|
14039
|
+
'html_content'?: string;
|
|
13860
14040
|
/**
|
|
13861
14041
|
*
|
|
13862
14042
|
* @type {string}
|
|
@@ -16585,6 +16765,37 @@ export interface DataTypesPaymentsListResponse {
|
|
|
16585
16765
|
*/
|
|
16586
16766
|
'status'?: number;
|
|
16587
16767
|
}
|
|
16768
|
+
/**
|
|
16769
|
+
*
|
|
16770
|
+
* @export
|
|
16771
|
+
* @interface DataTypesPeriodInfo
|
|
16772
|
+
*/
|
|
16773
|
+
export interface DataTypesPeriodInfo {
|
|
16774
|
+
/**
|
|
16775
|
+
*
|
|
16776
|
+
* @type {string}
|
|
16777
|
+
* @memberof DataTypesPeriodInfo
|
|
16778
|
+
*/
|
|
16779
|
+
'end_date'?: string;
|
|
16780
|
+
/**
|
|
16781
|
+
* \"minute\", \"hour\", \"day\", \"week\", \"month\"
|
|
16782
|
+
* @type {string}
|
|
16783
|
+
* @memberof DataTypesPeriodInfo
|
|
16784
|
+
*/
|
|
16785
|
+
'granularity'?: string;
|
|
16786
|
+
/**
|
|
16787
|
+
* \"October 2025\"
|
|
16788
|
+
* @type {string}
|
|
16789
|
+
* @memberof DataTypesPeriodInfo
|
|
16790
|
+
*/
|
|
16791
|
+
'label'?: string;
|
|
16792
|
+
/**
|
|
16793
|
+
*
|
|
16794
|
+
* @type {string}
|
|
16795
|
+
* @memberof DataTypesPeriodInfo
|
|
16796
|
+
*/
|
|
16797
|
+
'start_date'?: string;
|
|
16798
|
+
}
|
|
16588
16799
|
/**
|
|
16589
16800
|
*
|
|
16590
16801
|
* @export
|
|
@@ -18482,6 +18693,49 @@ export interface DataTypesSchemaOptionsResponseWrapper {
|
|
|
18482
18693
|
*/
|
|
18483
18694
|
'status'?: number;
|
|
18484
18695
|
}
|
|
18696
|
+
/**
|
|
18697
|
+
*
|
|
18698
|
+
* @export
|
|
18699
|
+
* @interface DataTypesSearchRequestsGraphResponse
|
|
18700
|
+
*/
|
|
18701
|
+
export interface DataTypesSearchRequestsGraphResponse {
|
|
18702
|
+
/**
|
|
18703
|
+
*
|
|
18704
|
+
* @type {Array<DataTypesTimeSeriesDataPoint>}
|
|
18705
|
+
* @memberof DataTypesSearchRequestsGraphResponse
|
|
18706
|
+
*/
|
|
18707
|
+
'data_points'?: Array<DataTypesTimeSeriesDataPoint>;
|
|
18708
|
+
/**
|
|
18709
|
+
*
|
|
18710
|
+
* @type {string}
|
|
18711
|
+
* @memberof DataTypesSearchRequestsGraphResponse
|
|
18712
|
+
*/
|
|
18713
|
+
'granularity'?: string;
|
|
18714
|
+
/**
|
|
18715
|
+
*
|
|
18716
|
+
* @type {DataTypesPeriodInfo}
|
|
18717
|
+
* @memberof DataTypesSearchRequestsGraphResponse
|
|
18718
|
+
*/
|
|
18719
|
+
'period'?: DataTypesPeriodInfo;
|
|
18720
|
+
/**
|
|
18721
|
+
* XStoreID if filtered
|
|
18722
|
+
* @type {string}
|
|
18723
|
+
* @memberof DataTypesSearchRequestsGraphResponse
|
|
18724
|
+
*/
|
|
18725
|
+
'store_filter'?: string;
|
|
18726
|
+
/**
|
|
18727
|
+
*
|
|
18728
|
+
* @type {number}
|
|
18729
|
+
* @memberof DataTypesSearchRequestsGraphResponse
|
|
18730
|
+
*/
|
|
18731
|
+
'store_id'?: number;
|
|
18732
|
+
/**
|
|
18733
|
+
*
|
|
18734
|
+
* @type {number}
|
|
18735
|
+
* @memberof DataTypesSearchRequestsGraphResponse
|
|
18736
|
+
*/
|
|
18737
|
+
'total_requests'?: number;
|
|
18738
|
+
}
|
|
18485
18739
|
/**
|
|
18486
18740
|
*
|
|
18487
18741
|
* @export
|
|
@@ -19859,13 +20113,13 @@ export interface DataTypesSynonymEntry {
|
|
|
19859
20113
|
*/
|
|
19860
20114
|
'locale'?: string;
|
|
19861
20115
|
/**
|
|
19862
|
-
* Optional root word
|
|
20116
|
+
* Optional root word - if provided and non-empty, creates one-way synonym (root expands to synonyms)
|
|
19863
20117
|
* @type {string}
|
|
19864
20118
|
* @memberof DataTypesSynonymEntry
|
|
19865
20119
|
*/
|
|
19866
20120
|
'root'?: string;
|
|
19867
20121
|
/**
|
|
19868
|
-
* Array of synonyms
|
|
20122
|
+
* Array of synonyms (min 2 for bidirectional/default, min 1 for one-way)
|
|
19869
20123
|
* @type {Array<string>}
|
|
19870
20124
|
* @memberof DataTypesSynonymEntry
|
|
19871
20125
|
*/
|
|
@@ -20433,6 +20687,148 @@ export interface DataTypesTeamInvitationsResponse {
|
|
|
20433
20687
|
*/
|
|
20434
20688
|
'status'?: number;
|
|
20435
20689
|
}
|
|
20690
|
+
/**
|
|
20691
|
+
*
|
|
20692
|
+
* @export
|
|
20693
|
+
* @interface DataTypesTimeSeriesConsumption
|
|
20694
|
+
*/
|
|
20695
|
+
export interface DataTypesTimeSeriesConsumption {
|
|
20696
|
+
/**
|
|
20697
|
+
*
|
|
20698
|
+
* @type {number}
|
|
20699
|
+
* @memberof DataTypesTimeSeriesConsumption
|
|
20700
|
+
*/
|
|
20701
|
+
'credits_used'?: number;
|
|
20702
|
+
/**
|
|
20703
|
+
*
|
|
20704
|
+
* @type {string}
|
|
20705
|
+
* @memberof DataTypesTimeSeriesConsumption
|
|
20706
|
+
*/
|
|
20707
|
+
'date'?: string;
|
|
20708
|
+
/**
|
|
20709
|
+
*
|
|
20710
|
+
* @type {number}
|
|
20711
|
+
* @memberof DataTypesTimeSeriesConsumption
|
|
20712
|
+
*/
|
|
20713
|
+
'record_count'?: number;
|
|
20714
|
+
/**
|
|
20715
|
+
*
|
|
20716
|
+
* @type {number}
|
|
20717
|
+
* @memberof DataTypesTimeSeriesConsumption
|
|
20718
|
+
*/
|
|
20719
|
+
'search_count'?: number;
|
|
20720
|
+
}
|
|
20721
|
+
/**
|
|
20722
|
+
*
|
|
20723
|
+
* @export
|
|
20724
|
+
* @interface DataTypesTimeSeriesConsumptionGraphResponse
|
|
20725
|
+
*/
|
|
20726
|
+
export interface DataTypesTimeSeriesConsumptionGraphResponse {
|
|
20727
|
+
/**
|
|
20728
|
+
*
|
|
20729
|
+
* @type {Array<DataTypesTimeSeriesConsumption>}
|
|
20730
|
+
* @memberof DataTypesTimeSeriesConsumptionGraphResponse
|
|
20731
|
+
*/
|
|
20732
|
+
'consumption'?: Array<DataTypesTimeSeriesConsumption>;
|
|
20733
|
+
/**
|
|
20734
|
+
*
|
|
20735
|
+
* @type {string}
|
|
20736
|
+
* @memberof DataTypesTimeSeriesConsumptionGraphResponse
|
|
20737
|
+
*/
|
|
20738
|
+
'granularity'?: string;
|
|
20739
|
+
/**
|
|
20740
|
+
*
|
|
20741
|
+
* @type {DataTypesPeriodInfo}
|
|
20742
|
+
* @memberof DataTypesTimeSeriesConsumptionGraphResponse
|
|
20743
|
+
*/
|
|
20744
|
+
'period'?: DataTypesPeriodInfo;
|
|
20745
|
+
/**
|
|
20746
|
+
* XStoreID if filtered
|
|
20747
|
+
* @type {string}
|
|
20748
|
+
* @memberof DataTypesTimeSeriesConsumptionGraphResponse
|
|
20749
|
+
*/
|
|
20750
|
+
'store_filter'?: string;
|
|
20751
|
+
/**
|
|
20752
|
+
*
|
|
20753
|
+
* @type {number}
|
|
20754
|
+
* @memberof DataTypesTimeSeriesConsumptionGraphResponse
|
|
20755
|
+
*/
|
|
20756
|
+
'store_id'?: number;
|
|
20757
|
+
/**
|
|
20758
|
+
*
|
|
20759
|
+
* @type {DataTypesTimeSeriesConsumptionSummary}
|
|
20760
|
+
* @memberof DataTypesTimeSeriesConsumptionGraphResponse
|
|
20761
|
+
*/
|
|
20762
|
+
'summary'?: DataTypesTimeSeriesConsumptionSummary;
|
|
20763
|
+
}
|
|
20764
|
+
/**
|
|
20765
|
+
*
|
|
20766
|
+
* @export
|
|
20767
|
+
* @interface DataTypesTimeSeriesConsumptionSummary
|
|
20768
|
+
*/
|
|
20769
|
+
export interface DataTypesTimeSeriesConsumptionSummary {
|
|
20770
|
+
/**
|
|
20771
|
+
*
|
|
20772
|
+
* @type {number}
|
|
20773
|
+
* @memberof DataTypesTimeSeriesConsumptionSummary
|
|
20774
|
+
*/
|
|
20775
|
+
'average_daily_credits'?: number;
|
|
20776
|
+
/**
|
|
20777
|
+
*
|
|
20778
|
+
* @type {number}
|
|
20779
|
+
* @memberof DataTypesTimeSeriesConsumptionSummary
|
|
20780
|
+
*/
|
|
20781
|
+
'peak_credits_per_day'?: number;
|
|
20782
|
+
/**
|
|
20783
|
+
*
|
|
20784
|
+
* @type {string}
|
|
20785
|
+
* @memberof DataTypesTimeSeriesConsumptionSummary
|
|
20786
|
+
*/
|
|
20787
|
+
'peak_date'?: string;
|
|
20788
|
+
/**
|
|
20789
|
+
*
|
|
20790
|
+
* @type {number}
|
|
20791
|
+
* @memberof DataTypesTimeSeriesConsumptionSummary
|
|
20792
|
+
*/
|
|
20793
|
+
'total_credits'?: number;
|
|
20794
|
+
/**
|
|
20795
|
+
*
|
|
20796
|
+
* @type {number}
|
|
20797
|
+
* @memberof DataTypesTimeSeriesConsumptionSummary
|
|
20798
|
+
*/
|
|
20799
|
+
'total_record_operations'?: number;
|
|
20800
|
+
/**
|
|
20801
|
+
*
|
|
20802
|
+
* @type {number}
|
|
20803
|
+
* @memberof DataTypesTimeSeriesConsumptionSummary
|
|
20804
|
+
*/
|
|
20805
|
+
'total_search_requests'?: number;
|
|
20806
|
+
}
|
|
20807
|
+
/**
|
|
20808
|
+
*
|
|
20809
|
+
* @export
|
|
20810
|
+
* @interface DataTypesTimeSeriesDataPoint
|
|
20811
|
+
*/
|
|
20812
|
+
export interface DataTypesTimeSeriesDataPoint {
|
|
20813
|
+
/**
|
|
20814
|
+
* Formatted label for display
|
|
20815
|
+
* @type {string}
|
|
20816
|
+
* @memberof DataTypesTimeSeriesDataPoint
|
|
20817
|
+
*/
|
|
20818
|
+
'label'?: string;
|
|
20819
|
+
/**
|
|
20820
|
+
*
|
|
20821
|
+
* @type {string}
|
|
20822
|
+
* @memberof DataTypesTimeSeriesDataPoint
|
|
20823
|
+
*/
|
|
20824
|
+
'timestamp'?: string;
|
|
20825
|
+
/**
|
|
20826
|
+
*
|
|
20827
|
+
* @type {number}
|
|
20828
|
+
* @memberof DataTypesTimeSeriesDataPoint
|
|
20829
|
+
*/
|
|
20830
|
+
'value'?: number;
|
|
20831
|
+
}
|
|
20436
20832
|
/**
|
|
20437
20833
|
*
|
|
20438
20834
|
* @export
|
|
@@ -21211,6 +21607,98 @@ export interface DataTypesUploadsourceDataResponse {
|
|
|
21211
21607
|
*/
|
|
21212
21608
|
'Source'?: DataTypesSource;
|
|
21213
21609
|
}
|
|
21610
|
+
/**
|
|
21611
|
+
*
|
|
21612
|
+
* @export
|
|
21613
|
+
* @interface DataTypesUsageBreakdownGraphResponse
|
|
21614
|
+
*/
|
|
21615
|
+
export interface DataTypesUsageBreakdownGraphResponse {
|
|
21616
|
+
/**
|
|
21617
|
+
*
|
|
21618
|
+
* @type {string}
|
|
21619
|
+
* @memberof DataTypesUsageBreakdownGraphResponse
|
|
21620
|
+
*/
|
|
21621
|
+
'granularity'?: string;
|
|
21622
|
+
/**
|
|
21623
|
+
*
|
|
21624
|
+
* @type {DataTypesPeriodInfo}
|
|
21625
|
+
* @memberof DataTypesUsageBreakdownGraphResponse
|
|
21626
|
+
*/
|
|
21627
|
+
'period'?: DataTypesPeriodInfo;
|
|
21628
|
+
/**
|
|
21629
|
+
*
|
|
21630
|
+
* @type {Array<DataTypesUsageBreakdownRow>}
|
|
21631
|
+
* @memberof DataTypesUsageBreakdownGraphResponse
|
|
21632
|
+
*/
|
|
21633
|
+
'rows'?: Array<DataTypesUsageBreakdownRow>;
|
|
21634
|
+
/**
|
|
21635
|
+
* XStoreID if filtered
|
|
21636
|
+
* @type {string}
|
|
21637
|
+
* @memberof DataTypesUsageBreakdownGraphResponse
|
|
21638
|
+
*/
|
|
21639
|
+
'store_filter'?: string;
|
|
21640
|
+
/**
|
|
21641
|
+
*
|
|
21642
|
+
* @type {number}
|
|
21643
|
+
* @memberof DataTypesUsageBreakdownGraphResponse
|
|
21644
|
+
*/
|
|
21645
|
+
'store_id'?: number;
|
|
21646
|
+
/**
|
|
21647
|
+
*
|
|
21648
|
+
* @type {number}
|
|
21649
|
+
* @memberof DataTypesUsageBreakdownGraphResponse
|
|
21650
|
+
*/
|
|
21651
|
+
'total_credits'?: number;
|
|
21652
|
+
/**
|
|
21653
|
+
*
|
|
21654
|
+
* @type {number}
|
|
21655
|
+
* @memberof DataTypesUsageBreakdownGraphResponse
|
|
21656
|
+
*/
|
|
21657
|
+
'total_record_operations'?: number;
|
|
21658
|
+
/**
|
|
21659
|
+
*
|
|
21660
|
+
* @type {number}
|
|
21661
|
+
* @memberof DataTypesUsageBreakdownGraphResponse
|
|
21662
|
+
*/
|
|
21663
|
+
'total_requests'?: number;
|
|
21664
|
+
}
|
|
21665
|
+
/**
|
|
21666
|
+
*
|
|
21667
|
+
* @export
|
|
21668
|
+
* @interface DataTypesUsageBreakdownRow
|
|
21669
|
+
*/
|
|
21670
|
+
export interface DataTypesUsageBreakdownRow {
|
|
21671
|
+
/**
|
|
21672
|
+
*
|
|
21673
|
+
* @type {number}
|
|
21674
|
+
* @memberof DataTypesUsageBreakdownRow
|
|
21675
|
+
*/
|
|
21676
|
+
'credits_consumed'?: number;
|
|
21677
|
+
/**
|
|
21678
|
+
* Formatted date label
|
|
21679
|
+
* @type {string}
|
|
21680
|
+
* @memberof DataTypesUsageBreakdownRow
|
|
21681
|
+
*/
|
|
21682
|
+
'label'?: string;
|
|
21683
|
+
/**
|
|
21684
|
+
*
|
|
21685
|
+
* @type {number}
|
|
21686
|
+
* @memberof DataTypesUsageBreakdownRow
|
|
21687
|
+
*/
|
|
21688
|
+
'record_operations'?: number;
|
|
21689
|
+
/**
|
|
21690
|
+
*
|
|
21691
|
+
* @type {number}
|
|
21692
|
+
* @memberof DataTypesUsageBreakdownRow
|
|
21693
|
+
*/
|
|
21694
|
+
'search_requests'?: number;
|
|
21695
|
+
/**
|
|
21696
|
+
*
|
|
21697
|
+
* @type {string}
|
|
21698
|
+
* @memberof DataTypesUsageBreakdownRow
|
|
21699
|
+
*/
|
|
21700
|
+
'timestamp'?: string;
|
|
21701
|
+
}
|
|
21214
21702
|
/**
|
|
21215
21703
|
*
|
|
21216
21704
|
* @export
|
|
@@ -28015,7 +28503,7 @@ export declare const BillingDashboardApiAxiosParamCreator: (configuration?: Conf
|
|
|
28015
28503
|
*/
|
|
28016
28504
|
adminBillingOverviewGet: (orgId?: number, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
28017
28505
|
/**
|
|
28018
|
-
* Returns comprehensive billing overview with credit balance, plan info, and usage
|
|
28506
|
+
* Returns comprehensive billing overview with credit balance, plan info, and all usage metrics
|
|
28019
28507
|
* @summary Get billing overview (new)
|
|
28020
28508
|
* @param {*} [options] Override http request option.
|
|
28021
28509
|
* @throws {RequiredError}
|
|
@@ -28353,7 +28841,7 @@ export declare const BillingDashboardApiFp: (configuration?: Configuration) => {
|
|
|
28353
28841
|
*/
|
|
28354
28842
|
adminBillingOverviewGet(orgId?: number, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
28355
28843
|
/**
|
|
28356
|
-
* Returns comprehensive billing overview with credit balance, plan info, and usage
|
|
28844
|
+
* Returns comprehensive billing overview with credit balance, plan info, and all usage metrics
|
|
28357
28845
|
* @summary Get billing overview (new)
|
|
28358
28846
|
* @param {*} [options] Override http request option.
|
|
28359
28847
|
* @throws {RequiredError}
|
|
@@ -28691,7 +29179,7 @@ export declare const BillingDashboardApiFactory: (configuration?: Configuration,
|
|
|
28691
29179
|
*/
|
|
28692
29180
|
adminBillingOverviewGet(orgId?: number, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
28693
29181
|
/**
|
|
28694
|
-
* Returns comprehensive billing overview with credit balance, plan info, and usage
|
|
29182
|
+
* Returns comprehensive billing overview with credit balance, plan info, and all usage metrics
|
|
28695
29183
|
* @summary Get billing overview (new)
|
|
28696
29184
|
* @param {*} [options] Override http request option.
|
|
28697
29185
|
* @throws {RequiredError}
|
|
@@ -29054,7 +29542,7 @@ export declare class BillingDashboardApi extends BaseAPI {
|
|
|
29054
29542
|
*/
|
|
29055
29543
|
adminBillingOverviewGet(orgId?: number, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
29056
29544
|
/**
|
|
29057
|
-
* Returns comprehensive billing overview with credit balance, plan info, and usage
|
|
29545
|
+
* Returns comprehensive billing overview with credit balance, plan info, and all usage metrics
|
|
29058
29546
|
* @summary Get billing overview (new)
|
|
29059
29547
|
* @param {*} [options] Override http request option.
|
|
29060
29548
|
* @throws {RequiredError}
|
|
@@ -29293,6 +29781,272 @@ export declare const AdminBillingUsageDetailsGetGranularityEnum: {
|
|
|
29293
29781
|
readonly Month: "month";
|
|
29294
29782
|
};
|
|
29295
29783
|
export type AdminBillingUsageDetailsGetGranularityEnum = typeof AdminBillingUsageDetailsGetGranularityEnum[keyof typeof AdminBillingUsageDetailsGetGranularityEnum];
|
|
29784
|
+
/**
|
|
29785
|
+
* BillingDashboardGraphsApi - axios parameter creator
|
|
29786
|
+
* @export
|
|
29787
|
+
*/
|
|
29788
|
+
export declare const BillingDashboardGraphsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
29789
|
+
/**
|
|
29790
|
+
* Returns credits consumed over time with store-level filtering and zero-filling
|
|
29791
|
+
* @summary Get credits consumed graph
|
|
29792
|
+
* @param {string} [xstoreid] Filter by specific store ID
|
|
29793
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD or RFC3339)
|
|
29794
|
+
* @param {string} [endDate] End date (YYYY-MM-DD or RFC3339)
|
|
29795
|
+
* @param {AdminBillingGraphsCreditsConsumedGetGranularityEnum} [granularity] Time granularity
|
|
29796
|
+
* @param {boolean} [fillZeros] Fill empty buckets with zeros
|
|
29797
|
+
* @param {*} [options] Override http request option.
|
|
29798
|
+
* @throws {RequiredError}
|
|
29799
|
+
*/
|
|
29800
|
+
adminBillingGraphsCreditsConsumedGet: (xstoreid?: string, startDate?: string, endDate?: string, granularity?: AdminBillingGraphsCreditsConsumedGetGranularityEnum, fillZeros?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
29801
|
+
/**
|
|
29802
|
+
* Returns search requests over time with store-level filtering and zero-filling
|
|
29803
|
+
* @summary Get search requests graph
|
|
29804
|
+
* @param {string} [xstoreid] Filter by specific store ID
|
|
29805
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD or RFC3339)
|
|
29806
|
+
* @param {string} [endDate] End date (YYYY-MM-DD or RFC3339)
|
|
29807
|
+
* @param {AdminBillingGraphsSearchRequestsGetGranularityEnum} [granularity] Time granularity
|
|
29808
|
+
* @param {boolean} [fillZeros] Fill empty buckets with zeros
|
|
29809
|
+
* @param {*} [options] Override http request option.
|
|
29810
|
+
* @throws {RequiredError}
|
|
29811
|
+
*/
|
|
29812
|
+
adminBillingGraphsSearchRequestsGet: (xstoreid?: string, startDate?: string, endDate?: string, granularity?: AdminBillingGraphsSearchRequestsGetGranularityEnum, fillZeros?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
29813
|
+
/**
|
|
29814
|
+
* Returns detailed timeseries consumption with summary statistics
|
|
29815
|
+
* @summary Get timeseries consumption graph
|
|
29816
|
+
* @param {string} [xstoreid] Filter by specific store ID
|
|
29817
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD or RFC3339)
|
|
29818
|
+
* @param {string} [endDate] End date (YYYY-MM-DD or RFC3339)
|
|
29819
|
+
* @param {AdminBillingGraphsTimeseriesConsumptionGetGranularityEnum} [granularity] Time granularity
|
|
29820
|
+
* @param {boolean} [fillZeros] Fill empty buckets with zeros
|
|
29821
|
+
* @param {*} [options] Override http request option.
|
|
29822
|
+
* @throws {RequiredError}
|
|
29823
|
+
*/
|
|
29824
|
+
adminBillingGraphsTimeseriesConsumptionGet: (xstoreid?: string, startDate?: string, endDate?: string, granularity?: AdminBillingGraphsTimeseriesConsumptionGetGranularityEnum, fillZeros?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
29825
|
+
/**
|
|
29826
|
+
* Returns usage breakdown table with credits, requests, and record operations
|
|
29827
|
+
* @summary Get usage breakdown graph
|
|
29828
|
+
* @param {string} [xstoreid] Filter by specific store ID
|
|
29829
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD or RFC3339)
|
|
29830
|
+
* @param {string} [endDate] End date (YYYY-MM-DD or RFC3339)
|
|
29831
|
+
* @param {AdminBillingGraphsUsageBreakdownGetGranularityEnum} [granularity] Time granularity
|
|
29832
|
+
* @param {boolean} [fillZeros] Fill empty buckets with zeros
|
|
29833
|
+
* @param {*} [options] Override http request option.
|
|
29834
|
+
* @throws {RequiredError}
|
|
29835
|
+
*/
|
|
29836
|
+
adminBillingGraphsUsageBreakdownGet: (xstoreid?: string, startDate?: string, endDate?: string, granularity?: AdminBillingGraphsUsageBreakdownGetGranularityEnum, fillZeros?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
29837
|
+
};
|
|
29838
|
+
/**
|
|
29839
|
+
* BillingDashboardGraphsApi - functional programming interface
|
|
29840
|
+
* @export
|
|
29841
|
+
*/
|
|
29842
|
+
export declare const BillingDashboardGraphsApiFp: (configuration?: Configuration) => {
|
|
29843
|
+
/**
|
|
29844
|
+
* Returns credits consumed over time with store-level filtering and zero-filling
|
|
29845
|
+
* @summary Get credits consumed graph
|
|
29846
|
+
* @param {string} [xstoreid] Filter by specific store ID
|
|
29847
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD or RFC3339)
|
|
29848
|
+
* @param {string} [endDate] End date (YYYY-MM-DD or RFC3339)
|
|
29849
|
+
* @param {AdminBillingGraphsCreditsConsumedGetGranularityEnum} [granularity] Time granularity
|
|
29850
|
+
* @param {boolean} [fillZeros] Fill empty buckets with zeros
|
|
29851
|
+
* @param {*} [options] Override http request option.
|
|
29852
|
+
* @throws {RequiredError}
|
|
29853
|
+
*/
|
|
29854
|
+
adminBillingGraphsCreditsConsumedGet(xstoreid?: string, startDate?: string, endDate?: string, granularity?: AdminBillingGraphsCreditsConsumedGetGranularityEnum, fillZeros?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesCreditsConsumedGraphResponse>>;
|
|
29855
|
+
/**
|
|
29856
|
+
* Returns search requests over time with store-level filtering and zero-filling
|
|
29857
|
+
* @summary Get search requests graph
|
|
29858
|
+
* @param {string} [xstoreid] Filter by specific store ID
|
|
29859
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD or RFC3339)
|
|
29860
|
+
* @param {string} [endDate] End date (YYYY-MM-DD or RFC3339)
|
|
29861
|
+
* @param {AdminBillingGraphsSearchRequestsGetGranularityEnum} [granularity] Time granularity
|
|
29862
|
+
* @param {boolean} [fillZeros] Fill empty buckets with zeros
|
|
29863
|
+
* @param {*} [options] Override http request option.
|
|
29864
|
+
* @throws {RequiredError}
|
|
29865
|
+
*/
|
|
29866
|
+
adminBillingGraphsSearchRequestsGet(xstoreid?: string, startDate?: string, endDate?: string, granularity?: AdminBillingGraphsSearchRequestsGetGranularityEnum, fillZeros?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesSearchRequestsGraphResponse>>;
|
|
29867
|
+
/**
|
|
29868
|
+
* Returns detailed timeseries consumption with summary statistics
|
|
29869
|
+
* @summary Get timeseries consumption graph
|
|
29870
|
+
* @param {string} [xstoreid] Filter by specific store ID
|
|
29871
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD or RFC3339)
|
|
29872
|
+
* @param {string} [endDate] End date (YYYY-MM-DD or RFC3339)
|
|
29873
|
+
* @param {AdminBillingGraphsTimeseriesConsumptionGetGranularityEnum} [granularity] Time granularity
|
|
29874
|
+
* @param {boolean} [fillZeros] Fill empty buckets with zeros
|
|
29875
|
+
* @param {*} [options] Override http request option.
|
|
29876
|
+
* @throws {RequiredError}
|
|
29877
|
+
*/
|
|
29878
|
+
adminBillingGraphsTimeseriesConsumptionGet(xstoreid?: string, startDate?: string, endDate?: string, granularity?: AdminBillingGraphsTimeseriesConsumptionGetGranularityEnum, fillZeros?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesTimeSeriesConsumptionGraphResponse>>;
|
|
29879
|
+
/**
|
|
29880
|
+
* Returns usage breakdown table with credits, requests, and record operations
|
|
29881
|
+
* @summary Get usage breakdown graph
|
|
29882
|
+
* @param {string} [xstoreid] Filter by specific store ID
|
|
29883
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD or RFC3339)
|
|
29884
|
+
* @param {string} [endDate] End date (YYYY-MM-DD or RFC3339)
|
|
29885
|
+
* @param {AdminBillingGraphsUsageBreakdownGetGranularityEnum} [granularity] Time granularity
|
|
29886
|
+
* @param {boolean} [fillZeros] Fill empty buckets with zeros
|
|
29887
|
+
* @param {*} [options] Override http request option.
|
|
29888
|
+
* @throws {RequiredError}
|
|
29889
|
+
*/
|
|
29890
|
+
adminBillingGraphsUsageBreakdownGet(xstoreid?: string, startDate?: string, endDate?: string, granularity?: AdminBillingGraphsUsageBreakdownGetGranularityEnum, fillZeros?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesUsageBreakdownGraphResponse>>;
|
|
29891
|
+
};
|
|
29892
|
+
/**
|
|
29893
|
+
* BillingDashboardGraphsApi - factory interface
|
|
29894
|
+
* @export
|
|
29895
|
+
*/
|
|
29896
|
+
export declare const BillingDashboardGraphsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
29897
|
+
/**
|
|
29898
|
+
* Returns credits consumed over time with store-level filtering and zero-filling
|
|
29899
|
+
* @summary Get credits consumed graph
|
|
29900
|
+
* @param {string} [xstoreid] Filter by specific store ID
|
|
29901
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD or RFC3339)
|
|
29902
|
+
* @param {string} [endDate] End date (YYYY-MM-DD or RFC3339)
|
|
29903
|
+
* @param {AdminBillingGraphsCreditsConsumedGetGranularityEnum} [granularity] Time granularity
|
|
29904
|
+
* @param {boolean} [fillZeros] Fill empty buckets with zeros
|
|
29905
|
+
* @param {*} [options] Override http request option.
|
|
29906
|
+
* @throws {RequiredError}
|
|
29907
|
+
*/
|
|
29908
|
+
adminBillingGraphsCreditsConsumedGet(xstoreid?: string, startDate?: string, endDate?: string, granularity?: AdminBillingGraphsCreditsConsumedGetGranularityEnum, fillZeros?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesCreditsConsumedGraphResponse>;
|
|
29909
|
+
/**
|
|
29910
|
+
* Returns search requests over time with store-level filtering and zero-filling
|
|
29911
|
+
* @summary Get search requests graph
|
|
29912
|
+
* @param {string} [xstoreid] Filter by specific store ID
|
|
29913
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD or RFC3339)
|
|
29914
|
+
* @param {string} [endDate] End date (YYYY-MM-DD or RFC3339)
|
|
29915
|
+
* @param {AdminBillingGraphsSearchRequestsGetGranularityEnum} [granularity] Time granularity
|
|
29916
|
+
* @param {boolean} [fillZeros] Fill empty buckets with zeros
|
|
29917
|
+
* @param {*} [options] Override http request option.
|
|
29918
|
+
* @throws {RequiredError}
|
|
29919
|
+
*/
|
|
29920
|
+
adminBillingGraphsSearchRequestsGet(xstoreid?: string, startDate?: string, endDate?: string, granularity?: AdminBillingGraphsSearchRequestsGetGranularityEnum, fillZeros?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesSearchRequestsGraphResponse>;
|
|
29921
|
+
/**
|
|
29922
|
+
* Returns detailed timeseries consumption with summary statistics
|
|
29923
|
+
* @summary Get timeseries consumption graph
|
|
29924
|
+
* @param {string} [xstoreid] Filter by specific store ID
|
|
29925
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD or RFC3339)
|
|
29926
|
+
* @param {string} [endDate] End date (YYYY-MM-DD or RFC3339)
|
|
29927
|
+
* @param {AdminBillingGraphsTimeseriesConsumptionGetGranularityEnum} [granularity] Time granularity
|
|
29928
|
+
* @param {boolean} [fillZeros] Fill empty buckets with zeros
|
|
29929
|
+
* @param {*} [options] Override http request option.
|
|
29930
|
+
* @throws {RequiredError}
|
|
29931
|
+
*/
|
|
29932
|
+
adminBillingGraphsTimeseriesConsumptionGet(xstoreid?: string, startDate?: string, endDate?: string, granularity?: AdminBillingGraphsTimeseriesConsumptionGetGranularityEnum, fillZeros?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesTimeSeriesConsumptionGraphResponse>;
|
|
29933
|
+
/**
|
|
29934
|
+
* Returns usage breakdown table with credits, requests, and record operations
|
|
29935
|
+
* @summary Get usage breakdown graph
|
|
29936
|
+
* @param {string} [xstoreid] Filter by specific store ID
|
|
29937
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD or RFC3339)
|
|
29938
|
+
* @param {string} [endDate] End date (YYYY-MM-DD or RFC3339)
|
|
29939
|
+
* @param {AdminBillingGraphsUsageBreakdownGetGranularityEnum} [granularity] Time granularity
|
|
29940
|
+
* @param {boolean} [fillZeros] Fill empty buckets with zeros
|
|
29941
|
+
* @param {*} [options] Override http request option.
|
|
29942
|
+
* @throws {RequiredError}
|
|
29943
|
+
*/
|
|
29944
|
+
adminBillingGraphsUsageBreakdownGet(xstoreid?: string, startDate?: string, endDate?: string, granularity?: AdminBillingGraphsUsageBreakdownGetGranularityEnum, fillZeros?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesUsageBreakdownGraphResponse>;
|
|
29945
|
+
};
|
|
29946
|
+
/**
|
|
29947
|
+
* BillingDashboardGraphsApi - object-oriented interface
|
|
29948
|
+
* @export
|
|
29949
|
+
* @class BillingDashboardGraphsApi
|
|
29950
|
+
* @extends {BaseAPI}
|
|
29951
|
+
*/
|
|
29952
|
+
export declare class BillingDashboardGraphsApi extends BaseAPI {
|
|
29953
|
+
/**
|
|
29954
|
+
* Returns credits consumed over time with store-level filtering and zero-filling
|
|
29955
|
+
* @summary Get credits consumed graph
|
|
29956
|
+
* @param {string} [xstoreid] Filter by specific store ID
|
|
29957
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD or RFC3339)
|
|
29958
|
+
* @param {string} [endDate] End date (YYYY-MM-DD or RFC3339)
|
|
29959
|
+
* @param {AdminBillingGraphsCreditsConsumedGetGranularityEnum} [granularity] Time granularity
|
|
29960
|
+
* @param {boolean} [fillZeros] Fill empty buckets with zeros
|
|
29961
|
+
* @param {*} [options] Override http request option.
|
|
29962
|
+
* @throws {RequiredError}
|
|
29963
|
+
* @memberof BillingDashboardGraphsApi
|
|
29964
|
+
*/
|
|
29965
|
+
adminBillingGraphsCreditsConsumedGet(xstoreid?: string, startDate?: string, endDate?: string, granularity?: AdminBillingGraphsCreditsConsumedGetGranularityEnum, fillZeros?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesCreditsConsumedGraphResponse, any, {}>>;
|
|
29966
|
+
/**
|
|
29967
|
+
* Returns search requests over time with store-level filtering and zero-filling
|
|
29968
|
+
* @summary Get search requests graph
|
|
29969
|
+
* @param {string} [xstoreid] Filter by specific store ID
|
|
29970
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD or RFC3339)
|
|
29971
|
+
* @param {string} [endDate] End date (YYYY-MM-DD or RFC3339)
|
|
29972
|
+
* @param {AdminBillingGraphsSearchRequestsGetGranularityEnum} [granularity] Time granularity
|
|
29973
|
+
* @param {boolean} [fillZeros] Fill empty buckets with zeros
|
|
29974
|
+
* @param {*} [options] Override http request option.
|
|
29975
|
+
* @throws {RequiredError}
|
|
29976
|
+
* @memberof BillingDashboardGraphsApi
|
|
29977
|
+
*/
|
|
29978
|
+
adminBillingGraphsSearchRequestsGet(xstoreid?: string, startDate?: string, endDate?: string, granularity?: AdminBillingGraphsSearchRequestsGetGranularityEnum, fillZeros?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesSearchRequestsGraphResponse, any, {}>>;
|
|
29979
|
+
/**
|
|
29980
|
+
* Returns detailed timeseries consumption with summary statistics
|
|
29981
|
+
* @summary Get timeseries consumption graph
|
|
29982
|
+
* @param {string} [xstoreid] Filter by specific store ID
|
|
29983
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD or RFC3339)
|
|
29984
|
+
* @param {string} [endDate] End date (YYYY-MM-DD or RFC3339)
|
|
29985
|
+
* @param {AdminBillingGraphsTimeseriesConsumptionGetGranularityEnum} [granularity] Time granularity
|
|
29986
|
+
* @param {boolean} [fillZeros] Fill empty buckets with zeros
|
|
29987
|
+
* @param {*} [options] Override http request option.
|
|
29988
|
+
* @throws {RequiredError}
|
|
29989
|
+
* @memberof BillingDashboardGraphsApi
|
|
29990
|
+
*/
|
|
29991
|
+
adminBillingGraphsTimeseriesConsumptionGet(xstoreid?: string, startDate?: string, endDate?: string, granularity?: AdminBillingGraphsTimeseriesConsumptionGetGranularityEnum, fillZeros?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesTimeSeriesConsumptionGraphResponse, any, {}>>;
|
|
29992
|
+
/**
|
|
29993
|
+
* Returns usage breakdown table with credits, requests, and record operations
|
|
29994
|
+
* @summary Get usage breakdown graph
|
|
29995
|
+
* @param {string} [xstoreid] Filter by specific store ID
|
|
29996
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD or RFC3339)
|
|
29997
|
+
* @param {string} [endDate] End date (YYYY-MM-DD or RFC3339)
|
|
29998
|
+
* @param {AdminBillingGraphsUsageBreakdownGetGranularityEnum} [granularity] Time granularity
|
|
29999
|
+
* @param {boolean} [fillZeros] Fill empty buckets with zeros
|
|
30000
|
+
* @param {*} [options] Override http request option.
|
|
30001
|
+
* @throws {RequiredError}
|
|
30002
|
+
* @memberof BillingDashboardGraphsApi
|
|
30003
|
+
*/
|
|
30004
|
+
adminBillingGraphsUsageBreakdownGet(xstoreid?: string, startDate?: string, endDate?: string, granularity?: AdminBillingGraphsUsageBreakdownGetGranularityEnum, fillZeros?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesUsageBreakdownGraphResponse, any, {}>>;
|
|
30005
|
+
}
|
|
30006
|
+
/**
|
|
30007
|
+
* @export
|
|
30008
|
+
*/
|
|
30009
|
+
export declare const AdminBillingGraphsCreditsConsumedGetGranularityEnum: {
|
|
30010
|
+
readonly Minute: "minute";
|
|
30011
|
+
readonly Hour: "hour";
|
|
30012
|
+
readonly Day: "day";
|
|
30013
|
+
readonly Week: "week";
|
|
30014
|
+
readonly Month: "month";
|
|
30015
|
+
};
|
|
30016
|
+
export type AdminBillingGraphsCreditsConsumedGetGranularityEnum = typeof AdminBillingGraphsCreditsConsumedGetGranularityEnum[keyof typeof AdminBillingGraphsCreditsConsumedGetGranularityEnum];
|
|
30017
|
+
/**
|
|
30018
|
+
* @export
|
|
30019
|
+
*/
|
|
30020
|
+
export declare const AdminBillingGraphsSearchRequestsGetGranularityEnum: {
|
|
30021
|
+
readonly Minute: "minute";
|
|
30022
|
+
readonly Hour: "hour";
|
|
30023
|
+
readonly Day: "day";
|
|
30024
|
+
readonly Week: "week";
|
|
30025
|
+
readonly Month: "month";
|
|
30026
|
+
};
|
|
30027
|
+
export type AdminBillingGraphsSearchRequestsGetGranularityEnum = typeof AdminBillingGraphsSearchRequestsGetGranularityEnum[keyof typeof AdminBillingGraphsSearchRequestsGetGranularityEnum];
|
|
30028
|
+
/**
|
|
30029
|
+
* @export
|
|
30030
|
+
*/
|
|
30031
|
+
export declare const AdminBillingGraphsTimeseriesConsumptionGetGranularityEnum: {
|
|
30032
|
+
readonly Minute: "minute";
|
|
30033
|
+
readonly Hour: "hour";
|
|
30034
|
+
readonly Day: "day";
|
|
30035
|
+
readonly Week: "week";
|
|
30036
|
+
readonly Month: "month";
|
|
30037
|
+
};
|
|
30038
|
+
export type AdminBillingGraphsTimeseriesConsumptionGetGranularityEnum = typeof AdminBillingGraphsTimeseriesConsumptionGetGranularityEnum[keyof typeof AdminBillingGraphsTimeseriesConsumptionGetGranularityEnum];
|
|
30039
|
+
/**
|
|
30040
|
+
* @export
|
|
30041
|
+
*/
|
|
30042
|
+
export declare const AdminBillingGraphsUsageBreakdownGetGranularityEnum: {
|
|
30043
|
+
readonly Minute: "minute";
|
|
30044
|
+
readonly Hour: "hour";
|
|
30045
|
+
readonly Day: "day";
|
|
30046
|
+
readonly Week: "week";
|
|
30047
|
+
readonly Month: "month";
|
|
30048
|
+
};
|
|
30049
|
+
export type AdminBillingGraphsUsageBreakdownGetGranularityEnum = typeof AdminBillingGraphsUsageBreakdownGetGranularityEnum[keyof typeof AdminBillingGraphsUsageBreakdownGetGranularityEnum];
|
|
29296
30050
|
/**
|
|
29297
30051
|
* CommonApi - axios parameter creator
|
|
29298
30052
|
* @export
|