@seekora-ai/admin-api 1.1.19 → 1.1.21
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 +1046 -61
- package/dist/api.d.ts +750 -2
- package/dist/api.js +467 -5
- package/dist/esm/api.d.ts +750 -2
- package/dist/esm/api.js +458 -0
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.1.21.tgz +0 -0
- package/seekora-ai-admin-api-1.1.19.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
|
|
@@ -13857,6 +14025,12 @@ export interface DataTypesNotification {
|
|
|
13857
14025
|
* @memberof DataTypesNotification
|
|
13858
14026
|
*/
|
|
13859
14027
|
'group_id'?: string;
|
|
14028
|
+
/**
|
|
14029
|
+
*
|
|
14030
|
+
* @type {string}
|
|
14031
|
+
* @memberof DataTypesNotification
|
|
14032
|
+
*/
|
|
14033
|
+
'html_content'?: string;
|
|
13860
14034
|
/**
|
|
13861
14035
|
*
|
|
13862
14036
|
* @type {string}
|
|
@@ -16585,6 +16759,37 @@ export interface DataTypesPaymentsListResponse {
|
|
|
16585
16759
|
*/
|
|
16586
16760
|
'status'?: number;
|
|
16587
16761
|
}
|
|
16762
|
+
/**
|
|
16763
|
+
*
|
|
16764
|
+
* @export
|
|
16765
|
+
* @interface DataTypesPeriodInfo
|
|
16766
|
+
*/
|
|
16767
|
+
export interface DataTypesPeriodInfo {
|
|
16768
|
+
/**
|
|
16769
|
+
*
|
|
16770
|
+
* @type {string}
|
|
16771
|
+
* @memberof DataTypesPeriodInfo
|
|
16772
|
+
*/
|
|
16773
|
+
'end_date'?: string;
|
|
16774
|
+
/**
|
|
16775
|
+
* \"minute\", \"hour\", \"day\", \"week\", \"month\"
|
|
16776
|
+
* @type {string}
|
|
16777
|
+
* @memberof DataTypesPeriodInfo
|
|
16778
|
+
*/
|
|
16779
|
+
'granularity'?: string;
|
|
16780
|
+
/**
|
|
16781
|
+
* \"October 2025\"
|
|
16782
|
+
* @type {string}
|
|
16783
|
+
* @memberof DataTypesPeriodInfo
|
|
16784
|
+
*/
|
|
16785
|
+
'label'?: string;
|
|
16786
|
+
/**
|
|
16787
|
+
*
|
|
16788
|
+
* @type {string}
|
|
16789
|
+
* @memberof DataTypesPeriodInfo
|
|
16790
|
+
*/
|
|
16791
|
+
'start_date'?: string;
|
|
16792
|
+
}
|
|
16588
16793
|
/**
|
|
16589
16794
|
*
|
|
16590
16795
|
* @export
|
|
@@ -18482,6 +18687,49 @@ export interface DataTypesSchemaOptionsResponseWrapper {
|
|
|
18482
18687
|
*/
|
|
18483
18688
|
'status'?: number;
|
|
18484
18689
|
}
|
|
18690
|
+
/**
|
|
18691
|
+
*
|
|
18692
|
+
* @export
|
|
18693
|
+
* @interface DataTypesSearchRequestsGraphResponse
|
|
18694
|
+
*/
|
|
18695
|
+
export interface DataTypesSearchRequestsGraphResponse {
|
|
18696
|
+
/**
|
|
18697
|
+
*
|
|
18698
|
+
* @type {Array<DataTypesTimeSeriesDataPoint>}
|
|
18699
|
+
* @memberof DataTypesSearchRequestsGraphResponse
|
|
18700
|
+
*/
|
|
18701
|
+
'data_points'?: Array<DataTypesTimeSeriesDataPoint>;
|
|
18702
|
+
/**
|
|
18703
|
+
*
|
|
18704
|
+
* @type {string}
|
|
18705
|
+
* @memberof DataTypesSearchRequestsGraphResponse
|
|
18706
|
+
*/
|
|
18707
|
+
'granularity'?: string;
|
|
18708
|
+
/**
|
|
18709
|
+
*
|
|
18710
|
+
* @type {DataTypesPeriodInfo}
|
|
18711
|
+
* @memberof DataTypesSearchRequestsGraphResponse
|
|
18712
|
+
*/
|
|
18713
|
+
'period'?: DataTypesPeriodInfo;
|
|
18714
|
+
/**
|
|
18715
|
+
* XStoreID if filtered
|
|
18716
|
+
* @type {string}
|
|
18717
|
+
* @memberof DataTypesSearchRequestsGraphResponse
|
|
18718
|
+
*/
|
|
18719
|
+
'store_filter'?: string;
|
|
18720
|
+
/**
|
|
18721
|
+
*
|
|
18722
|
+
* @type {number}
|
|
18723
|
+
* @memberof DataTypesSearchRequestsGraphResponse
|
|
18724
|
+
*/
|
|
18725
|
+
'store_id'?: number;
|
|
18726
|
+
/**
|
|
18727
|
+
*
|
|
18728
|
+
* @type {number}
|
|
18729
|
+
* @memberof DataTypesSearchRequestsGraphResponse
|
|
18730
|
+
*/
|
|
18731
|
+
'total_requests'?: number;
|
|
18732
|
+
}
|
|
18485
18733
|
/**
|
|
18486
18734
|
*
|
|
18487
18735
|
* @export
|
|
@@ -19859,13 +20107,13 @@ export interface DataTypesSynonymEntry {
|
|
|
19859
20107
|
*/
|
|
19860
20108
|
'locale'?: string;
|
|
19861
20109
|
/**
|
|
19862
|
-
* Optional root word
|
|
20110
|
+
* Optional root word - if provided and non-empty, creates one-way synonym (root expands to synonyms)
|
|
19863
20111
|
* @type {string}
|
|
19864
20112
|
* @memberof DataTypesSynonymEntry
|
|
19865
20113
|
*/
|
|
19866
20114
|
'root'?: string;
|
|
19867
20115
|
/**
|
|
19868
|
-
* Array of synonyms
|
|
20116
|
+
* Array of synonyms (min 2 for bidirectional/default, min 1 for one-way)
|
|
19869
20117
|
* @type {Array<string>}
|
|
19870
20118
|
* @memberof DataTypesSynonymEntry
|
|
19871
20119
|
*/
|
|
@@ -20433,6 +20681,148 @@ export interface DataTypesTeamInvitationsResponse {
|
|
|
20433
20681
|
*/
|
|
20434
20682
|
'status'?: number;
|
|
20435
20683
|
}
|
|
20684
|
+
/**
|
|
20685
|
+
*
|
|
20686
|
+
* @export
|
|
20687
|
+
* @interface DataTypesTimeSeriesConsumption
|
|
20688
|
+
*/
|
|
20689
|
+
export interface DataTypesTimeSeriesConsumption {
|
|
20690
|
+
/**
|
|
20691
|
+
*
|
|
20692
|
+
* @type {number}
|
|
20693
|
+
* @memberof DataTypesTimeSeriesConsumption
|
|
20694
|
+
*/
|
|
20695
|
+
'credits_used'?: number;
|
|
20696
|
+
/**
|
|
20697
|
+
*
|
|
20698
|
+
* @type {string}
|
|
20699
|
+
* @memberof DataTypesTimeSeriesConsumption
|
|
20700
|
+
*/
|
|
20701
|
+
'date'?: string;
|
|
20702
|
+
/**
|
|
20703
|
+
*
|
|
20704
|
+
* @type {number}
|
|
20705
|
+
* @memberof DataTypesTimeSeriesConsumption
|
|
20706
|
+
*/
|
|
20707
|
+
'record_count'?: number;
|
|
20708
|
+
/**
|
|
20709
|
+
*
|
|
20710
|
+
* @type {number}
|
|
20711
|
+
* @memberof DataTypesTimeSeriesConsumption
|
|
20712
|
+
*/
|
|
20713
|
+
'search_count'?: number;
|
|
20714
|
+
}
|
|
20715
|
+
/**
|
|
20716
|
+
*
|
|
20717
|
+
* @export
|
|
20718
|
+
* @interface DataTypesTimeSeriesConsumptionGraphResponse
|
|
20719
|
+
*/
|
|
20720
|
+
export interface DataTypesTimeSeriesConsumptionGraphResponse {
|
|
20721
|
+
/**
|
|
20722
|
+
*
|
|
20723
|
+
* @type {Array<DataTypesTimeSeriesConsumption>}
|
|
20724
|
+
* @memberof DataTypesTimeSeriesConsumptionGraphResponse
|
|
20725
|
+
*/
|
|
20726
|
+
'consumption'?: Array<DataTypesTimeSeriesConsumption>;
|
|
20727
|
+
/**
|
|
20728
|
+
*
|
|
20729
|
+
* @type {string}
|
|
20730
|
+
* @memberof DataTypesTimeSeriesConsumptionGraphResponse
|
|
20731
|
+
*/
|
|
20732
|
+
'granularity'?: string;
|
|
20733
|
+
/**
|
|
20734
|
+
*
|
|
20735
|
+
* @type {DataTypesPeriodInfo}
|
|
20736
|
+
* @memberof DataTypesTimeSeriesConsumptionGraphResponse
|
|
20737
|
+
*/
|
|
20738
|
+
'period'?: DataTypesPeriodInfo;
|
|
20739
|
+
/**
|
|
20740
|
+
* XStoreID if filtered
|
|
20741
|
+
* @type {string}
|
|
20742
|
+
* @memberof DataTypesTimeSeriesConsumptionGraphResponse
|
|
20743
|
+
*/
|
|
20744
|
+
'store_filter'?: string;
|
|
20745
|
+
/**
|
|
20746
|
+
*
|
|
20747
|
+
* @type {number}
|
|
20748
|
+
* @memberof DataTypesTimeSeriesConsumptionGraphResponse
|
|
20749
|
+
*/
|
|
20750
|
+
'store_id'?: number;
|
|
20751
|
+
/**
|
|
20752
|
+
*
|
|
20753
|
+
* @type {DataTypesTimeSeriesConsumptionSummary}
|
|
20754
|
+
* @memberof DataTypesTimeSeriesConsumptionGraphResponse
|
|
20755
|
+
*/
|
|
20756
|
+
'summary'?: DataTypesTimeSeriesConsumptionSummary;
|
|
20757
|
+
}
|
|
20758
|
+
/**
|
|
20759
|
+
*
|
|
20760
|
+
* @export
|
|
20761
|
+
* @interface DataTypesTimeSeriesConsumptionSummary
|
|
20762
|
+
*/
|
|
20763
|
+
export interface DataTypesTimeSeriesConsumptionSummary {
|
|
20764
|
+
/**
|
|
20765
|
+
*
|
|
20766
|
+
* @type {number}
|
|
20767
|
+
* @memberof DataTypesTimeSeriesConsumptionSummary
|
|
20768
|
+
*/
|
|
20769
|
+
'average_daily_credits'?: number;
|
|
20770
|
+
/**
|
|
20771
|
+
*
|
|
20772
|
+
* @type {number}
|
|
20773
|
+
* @memberof DataTypesTimeSeriesConsumptionSummary
|
|
20774
|
+
*/
|
|
20775
|
+
'peak_credits_per_day'?: number;
|
|
20776
|
+
/**
|
|
20777
|
+
*
|
|
20778
|
+
* @type {string}
|
|
20779
|
+
* @memberof DataTypesTimeSeriesConsumptionSummary
|
|
20780
|
+
*/
|
|
20781
|
+
'peak_date'?: string;
|
|
20782
|
+
/**
|
|
20783
|
+
*
|
|
20784
|
+
* @type {number}
|
|
20785
|
+
* @memberof DataTypesTimeSeriesConsumptionSummary
|
|
20786
|
+
*/
|
|
20787
|
+
'total_credits'?: number;
|
|
20788
|
+
/**
|
|
20789
|
+
*
|
|
20790
|
+
* @type {number}
|
|
20791
|
+
* @memberof DataTypesTimeSeriesConsumptionSummary
|
|
20792
|
+
*/
|
|
20793
|
+
'total_record_operations'?: number;
|
|
20794
|
+
/**
|
|
20795
|
+
*
|
|
20796
|
+
* @type {number}
|
|
20797
|
+
* @memberof DataTypesTimeSeriesConsumptionSummary
|
|
20798
|
+
*/
|
|
20799
|
+
'total_search_requests'?: number;
|
|
20800
|
+
}
|
|
20801
|
+
/**
|
|
20802
|
+
*
|
|
20803
|
+
* @export
|
|
20804
|
+
* @interface DataTypesTimeSeriesDataPoint
|
|
20805
|
+
*/
|
|
20806
|
+
export interface DataTypesTimeSeriesDataPoint {
|
|
20807
|
+
/**
|
|
20808
|
+
* Formatted label for display
|
|
20809
|
+
* @type {string}
|
|
20810
|
+
* @memberof DataTypesTimeSeriesDataPoint
|
|
20811
|
+
*/
|
|
20812
|
+
'label'?: string;
|
|
20813
|
+
/**
|
|
20814
|
+
*
|
|
20815
|
+
* @type {string}
|
|
20816
|
+
* @memberof DataTypesTimeSeriesDataPoint
|
|
20817
|
+
*/
|
|
20818
|
+
'timestamp'?: string;
|
|
20819
|
+
/**
|
|
20820
|
+
*
|
|
20821
|
+
* @type {number}
|
|
20822
|
+
* @memberof DataTypesTimeSeriesDataPoint
|
|
20823
|
+
*/
|
|
20824
|
+
'value'?: number;
|
|
20825
|
+
}
|
|
20436
20826
|
/**
|
|
20437
20827
|
*
|
|
20438
20828
|
* @export
|
|
@@ -21211,6 +21601,98 @@ export interface DataTypesUploadsourceDataResponse {
|
|
|
21211
21601
|
*/
|
|
21212
21602
|
'Source'?: DataTypesSource;
|
|
21213
21603
|
}
|
|
21604
|
+
/**
|
|
21605
|
+
*
|
|
21606
|
+
* @export
|
|
21607
|
+
* @interface DataTypesUsageBreakdownGraphResponse
|
|
21608
|
+
*/
|
|
21609
|
+
export interface DataTypesUsageBreakdownGraphResponse {
|
|
21610
|
+
/**
|
|
21611
|
+
*
|
|
21612
|
+
* @type {string}
|
|
21613
|
+
* @memberof DataTypesUsageBreakdownGraphResponse
|
|
21614
|
+
*/
|
|
21615
|
+
'granularity'?: string;
|
|
21616
|
+
/**
|
|
21617
|
+
*
|
|
21618
|
+
* @type {DataTypesPeriodInfo}
|
|
21619
|
+
* @memberof DataTypesUsageBreakdownGraphResponse
|
|
21620
|
+
*/
|
|
21621
|
+
'period'?: DataTypesPeriodInfo;
|
|
21622
|
+
/**
|
|
21623
|
+
*
|
|
21624
|
+
* @type {Array<DataTypesUsageBreakdownRow>}
|
|
21625
|
+
* @memberof DataTypesUsageBreakdownGraphResponse
|
|
21626
|
+
*/
|
|
21627
|
+
'rows'?: Array<DataTypesUsageBreakdownRow>;
|
|
21628
|
+
/**
|
|
21629
|
+
* XStoreID if filtered
|
|
21630
|
+
* @type {string}
|
|
21631
|
+
* @memberof DataTypesUsageBreakdownGraphResponse
|
|
21632
|
+
*/
|
|
21633
|
+
'store_filter'?: string;
|
|
21634
|
+
/**
|
|
21635
|
+
*
|
|
21636
|
+
* @type {number}
|
|
21637
|
+
* @memberof DataTypesUsageBreakdownGraphResponse
|
|
21638
|
+
*/
|
|
21639
|
+
'store_id'?: number;
|
|
21640
|
+
/**
|
|
21641
|
+
*
|
|
21642
|
+
* @type {number}
|
|
21643
|
+
* @memberof DataTypesUsageBreakdownGraphResponse
|
|
21644
|
+
*/
|
|
21645
|
+
'total_credits'?: number;
|
|
21646
|
+
/**
|
|
21647
|
+
*
|
|
21648
|
+
* @type {number}
|
|
21649
|
+
* @memberof DataTypesUsageBreakdownGraphResponse
|
|
21650
|
+
*/
|
|
21651
|
+
'total_record_operations'?: number;
|
|
21652
|
+
/**
|
|
21653
|
+
*
|
|
21654
|
+
* @type {number}
|
|
21655
|
+
* @memberof DataTypesUsageBreakdownGraphResponse
|
|
21656
|
+
*/
|
|
21657
|
+
'total_requests'?: number;
|
|
21658
|
+
}
|
|
21659
|
+
/**
|
|
21660
|
+
*
|
|
21661
|
+
* @export
|
|
21662
|
+
* @interface DataTypesUsageBreakdownRow
|
|
21663
|
+
*/
|
|
21664
|
+
export interface DataTypesUsageBreakdownRow {
|
|
21665
|
+
/**
|
|
21666
|
+
*
|
|
21667
|
+
* @type {number}
|
|
21668
|
+
* @memberof DataTypesUsageBreakdownRow
|
|
21669
|
+
*/
|
|
21670
|
+
'credits_consumed'?: number;
|
|
21671
|
+
/**
|
|
21672
|
+
* Formatted date label
|
|
21673
|
+
* @type {string}
|
|
21674
|
+
* @memberof DataTypesUsageBreakdownRow
|
|
21675
|
+
*/
|
|
21676
|
+
'label'?: string;
|
|
21677
|
+
/**
|
|
21678
|
+
*
|
|
21679
|
+
* @type {number}
|
|
21680
|
+
* @memberof DataTypesUsageBreakdownRow
|
|
21681
|
+
*/
|
|
21682
|
+
'record_operations'?: number;
|
|
21683
|
+
/**
|
|
21684
|
+
*
|
|
21685
|
+
* @type {number}
|
|
21686
|
+
* @memberof DataTypesUsageBreakdownRow
|
|
21687
|
+
*/
|
|
21688
|
+
'search_requests'?: number;
|
|
21689
|
+
/**
|
|
21690
|
+
*
|
|
21691
|
+
* @type {string}
|
|
21692
|
+
* @memberof DataTypesUsageBreakdownRow
|
|
21693
|
+
*/
|
|
21694
|
+
'timestamp'?: string;
|
|
21695
|
+
}
|
|
21214
21696
|
/**
|
|
21215
21697
|
*
|
|
21216
21698
|
* @export
|
|
@@ -29293,6 +29775,272 @@ export declare const AdminBillingUsageDetailsGetGranularityEnum: {
|
|
|
29293
29775
|
readonly Month: "month";
|
|
29294
29776
|
};
|
|
29295
29777
|
export type AdminBillingUsageDetailsGetGranularityEnum = typeof AdminBillingUsageDetailsGetGranularityEnum[keyof typeof AdminBillingUsageDetailsGetGranularityEnum];
|
|
29778
|
+
/**
|
|
29779
|
+
* BillingDashboardGraphsApi - axios parameter creator
|
|
29780
|
+
* @export
|
|
29781
|
+
*/
|
|
29782
|
+
export declare const BillingDashboardGraphsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
29783
|
+
/**
|
|
29784
|
+
* Returns credits consumed over time with store-level filtering and zero-filling
|
|
29785
|
+
* @summary Get credits consumed graph
|
|
29786
|
+
* @param {string} [xstoreid] Filter by specific store ID
|
|
29787
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD or RFC3339)
|
|
29788
|
+
* @param {string} [endDate] End date (YYYY-MM-DD or RFC3339)
|
|
29789
|
+
* @param {AdminBillingGraphsCreditsConsumedGetGranularityEnum} [granularity] Time granularity
|
|
29790
|
+
* @param {boolean} [fillZeros] Fill empty buckets with zeros
|
|
29791
|
+
* @param {*} [options] Override http request option.
|
|
29792
|
+
* @throws {RequiredError}
|
|
29793
|
+
*/
|
|
29794
|
+
adminBillingGraphsCreditsConsumedGet: (xstoreid?: string, startDate?: string, endDate?: string, granularity?: AdminBillingGraphsCreditsConsumedGetGranularityEnum, fillZeros?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
29795
|
+
/**
|
|
29796
|
+
* Returns search requests over time with store-level filtering and zero-filling
|
|
29797
|
+
* @summary Get search requests graph
|
|
29798
|
+
* @param {string} [xstoreid] Filter by specific store ID
|
|
29799
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD or RFC3339)
|
|
29800
|
+
* @param {string} [endDate] End date (YYYY-MM-DD or RFC3339)
|
|
29801
|
+
* @param {AdminBillingGraphsSearchRequestsGetGranularityEnum} [granularity] Time granularity
|
|
29802
|
+
* @param {boolean} [fillZeros] Fill empty buckets with zeros
|
|
29803
|
+
* @param {*} [options] Override http request option.
|
|
29804
|
+
* @throws {RequiredError}
|
|
29805
|
+
*/
|
|
29806
|
+
adminBillingGraphsSearchRequestsGet: (xstoreid?: string, startDate?: string, endDate?: string, granularity?: AdminBillingGraphsSearchRequestsGetGranularityEnum, fillZeros?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
29807
|
+
/**
|
|
29808
|
+
* Returns detailed timeseries consumption with summary statistics
|
|
29809
|
+
* @summary Get timeseries consumption graph
|
|
29810
|
+
* @param {string} [xstoreid] Filter by specific store ID
|
|
29811
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD or RFC3339)
|
|
29812
|
+
* @param {string} [endDate] End date (YYYY-MM-DD or RFC3339)
|
|
29813
|
+
* @param {AdminBillingGraphsTimeseriesConsumptionGetGranularityEnum} [granularity] Time granularity
|
|
29814
|
+
* @param {boolean} [fillZeros] Fill empty buckets with zeros
|
|
29815
|
+
* @param {*} [options] Override http request option.
|
|
29816
|
+
* @throws {RequiredError}
|
|
29817
|
+
*/
|
|
29818
|
+
adminBillingGraphsTimeseriesConsumptionGet: (xstoreid?: string, startDate?: string, endDate?: string, granularity?: AdminBillingGraphsTimeseriesConsumptionGetGranularityEnum, fillZeros?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
29819
|
+
/**
|
|
29820
|
+
* Returns usage breakdown table with credits, requests, and record operations
|
|
29821
|
+
* @summary Get usage breakdown graph
|
|
29822
|
+
* @param {string} [xstoreid] Filter by specific store ID
|
|
29823
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD or RFC3339)
|
|
29824
|
+
* @param {string} [endDate] End date (YYYY-MM-DD or RFC3339)
|
|
29825
|
+
* @param {AdminBillingGraphsUsageBreakdownGetGranularityEnum} [granularity] Time granularity
|
|
29826
|
+
* @param {boolean} [fillZeros] Fill empty buckets with zeros
|
|
29827
|
+
* @param {*} [options] Override http request option.
|
|
29828
|
+
* @throws {RequiredError}
|
|
29829
|
+
*/
|
|
29830
|
+
adminBillingGraphsUsageBreakdownGet: (xstoreid?: string, startDate?: string, endDate?: string, granularity?: AdminBillingGraphsUsageBreakdownGetGranularityEnum, fillZeros?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
29831
|
+
};
|
|
29832
|
+
/**
|
|
29833
|
+
* BillingDashboardGraphsApi - functional programming interface
|
|
29834
|
+
* @export
|
|
29835
|
+
*/
|
|
29836
|
+
export declare const BillingDashboardGraphsApiFp: (configuration?: Configuration) => {
|
|
29837
|
+
/**
|
|
29838
|
+
* Returns credits consumed over time with store-level filtering and zero-filling
|
|
29839
|
+
* @summary Get credits consumed graph
|
|
29840
|
+
* @param {string} [xstoreid] Filter by specific store ID
|
|
29841
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD or RFC3339)
|
|
29842
|
+
* @param {string} [endDate] End date (YYYY-MM-DD or RFC3339)
|
|
29843
|
+
* @param {AdminBillingGraphsCreditsConsumedGetGranularityEnum} [granularity] Time granularity
|
|
29844
|
+
* @param {boolean} [fillZeros] Fill empty buckets with zeros
|
|
29845
|
+
* @param {*} [options] Override http request option.
|
|
29846
|
+
* @throws {RequiredError}
|
|
29847
|
+
*/
|
|
29848
|
+
adminBillingGraphsCreditsConsumedGet(xstoreid?: string, startDate?: string, endDate?: string, granularity?: AdminBillingGraphsCreditsConsumedGetGranularityEnum, fillZeros?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesCreditsConsumedGraphResponse>>;
|
|
29849
|
+
/**
|
|
29850
|
+
* Returns search requests over time with store-level filtering and zero-filling
|
|
29851
|
+
* @summary Get search requests graph
|
|
29852
|
+
* @param {string} [xstoreid] Filter by specific store ID
|
|
29853
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD or RFC3339)
|
|
29854
|
+
* @param {string} [endDate] End date (YYYY-MM-DD or RFC3339)
|
|
29855
|
+
* @param {AdminBillingGraphsSearchRequestsGetGranularityEnum} [granularity] Time granularity
|
|
29856
|
+
* @param {boolean} [fillZeros] Fill empty buckets with zeros
|
|
29857
|
+
* @param {*} [options] Override http request option.
|
|
29858
|
+
* @throws {RequiredError}
|
|
29859
|
+
*/
|
|
29860
|
+
adminBillingGraphsSearchRequestsGet(xstoreid?: string, startDate?: string, endDate?: string, granularity?: AdminBillingGraphsSearchRequestsGetGranularityEnum, fillZeros?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesSearchRequestsGraphResponse>>;
|
|
29861
|
+
/**
|
|
29862
|
+
* Returns detailed timeseries consumption with summary statistics
|
|
29863
|
+
* @summary Get timeseries consumption graph
|
|
29864
|
+
* @param {string} [xstoreid] Filter by specific store ID
|
|
29865
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD or RFC3339)
|
|
29866
|
+
* @param {string} [endDate] End date (YYYY-MM-DD or RFC3339)
|
|
29867
|
+
* @param {AdminBillingGraphsTimeseriesConsumptionGetGranularityEnum} [granularity] Time granularity
|
|
29868
|
+
* @param {boolean} [fillZeros] Fill empty buckets with zeros
|
|
29869
|
+
* @param {*} [options] Override http request option.
|
|
29870
|
+
* @throws {RequiredError}
|
|
29871
|
+
*/
|
|
29872
|
+
adminBillingGraphsTimeseriesConsumptionGet(xstoreid?: string, startDate?: string, endDate?: string, granularity?: AdminBillingGraphsTimeseriesConsumptionGetGranularityEnum, fillZeros?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesTimeSeriesConsumptionGraphResponse>>;
|
|
29873
|
+
/**
|
|
29874
|
+
* Returns usage breakdown table with credits, requests, and record operations
|
|
29875
|
+
* @summary Get usage breakdown graph
|
|
29876
|
+
* @param {string} [xstoreid] Filter by specific store ID
|
|
29877
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD or RFC3339)
|
|
29878
|
+
* @param {string} [endDate] End date (YYYY-MM-DD or RFC3339)
|
|
29879
|
+
* @param {AdminBillingGraphsUsageBreakdownGetGranularityEnum} [granularity] Time granularity
|
|
29880
|
+
* @param {boolean} [fillZeros] Fill empty buckets with zeros
|
|
29881
|
+
* @param {*} [options] Override http request option.
|
|
29882
|
+
* @throws {RequiredError}
|
|
29883
|
+
*/
|
|
29884
|
+
adminBillingGraphsUsageBreakdownGet(xstoreid?: string, startDate?: string, endDate?: string, granularity?: AdminBillingGraphsUsageBreakdownGetGranularityEnum, fillZeros?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesUsageBreakdownGraphResponse>>;
|
|
29885
|
+
};
|
|
29886
|
+
/**
|
|
29887
|
+
* BillingDashboardGraphsApi - factory interface
|
|
29888
|
+
* @export
|
|
29889
|
+
*/
|
|
29890
|
+
export declare const BillingDashboardGraphsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
29891
|
+
/**
|
|
29892
|
+
* Returns credits consumed over time with store-level filtering and zero-filling
|
|
29893
|
+
* @summary Get credits consumed graph
|
|
29894
|
+
* @param {string} [xstoreid] Filter by specific store ID
|
|
29895
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD or RFC3339)
|
|
29896
|
+
* @param {string} [endDate] End date (YYYY-MM-DD or RFC3339)
|
|
29897
|
+
* @param {AdminBillingGraphsCreditsConsumedGetGranularityEnum} [granularity] Time granularity
|
|
29898
|
+
* @param {boolean} [fillZeros] Fill empty buckets with zeros
|
|
29899
|
+
* @param {*} [options] Override http request option.
|
|
29900
|
+
* @throws {RequiredError}
|
|
29901
|
+
*/
|
|
29902
|
+
adminBillingGraphsCreditsConsumedGet(xstoreid?: string, startDate?: string, endDate?: string, granularity?: AdminBillingGraphsCreditsConsumedGetGranularityEnum, fillZeros?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesCreditsConsumedGraphResponse>;
|
|
29903
|
+
/**
|
|
29904
|
+
* Returns search requests over time with store-level filtering and zero-filling
|
|
29905
|
+
* @summary Get search requests graph
|
|
29906
|
+
* @param {string} [xstoreid] Filter by specific store ID
|
|
29907
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD or RFC3339)
|
|
29908
|
+
* @param {string} [endDate] End date (YYYY-MM-DD or RFC3339)
|
|
29909
|
+
* @param {AdminBillingGraphsSearchRequestsGetGranularityEnum} [granularity] Time granularity
|
|
29910
|
+
* @param {boolean} [fillZeros] Fill empty buckets with zeros
|
|
29911
|
+
* @param {*} [options] Override http request option.
|
|
29912
|
+
* @throws {RequiredError}
|
|
29913
|
+
*/
|
|
29914
|
+
adminBillingGraphsSearchRequestsGet(xstoreid?: string, startDate?: string, endDate?: string, granularity?: AdminBillingGraphsSearchRequestsGetGranularityEnum, fillZeros?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesSearchRequestsGraphResponse>;
|
|
29915
|
+
/**
|
|
29916
|
+
* Returns detailed timeseries consumption with summary statistics
|
|
29917
|
+
* @summary Get timeseries consumption graph
|
|
29918
|
+
* @param {string} [xstoreid] Filter by specific store ID
|
|
29919
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD or RFC3339)
|
|
29920
|
+
* @param {string} [endDate] End date (YYYY-MM-DD or RFC3339)
|
|
29921
|
+
* @param {AdminBillingGraphsTimeseriesConsumptionGetGranularityEnum} [granularity] Time granularity
|
|
29922
|
+
* @param {boolean} [fillZeros] Fill empty buckets with zeros
|
|
29923
|
+
* @param {*} [options] Override http request option.
|
|
29924
|
+
* @throws {RequiredError}
|
|
29925
|
+
*/
|
|
29926
|
+
adminBillingGraphsTimeseriesConsumptionGet(xstoreid?: string, startDate?: string, endDate?: string, granularity?: AdminBillingGraphsTimeseriesConsumptionGetGranularityEnum, fillZeros?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesTimeSeriesConsumptionGraphResponse>;
|
|
29927
|
+
/**
|
|
29928
|
+
* Returns usage breakdown table with credits, requests, and record operations
|
|
29929
|
+
* @summary Get usage breakdown graph
|
|
29930
|
+
* @param {string} [xstoreid] Filter by specific store ID
|
|
29931
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD or RFC3339)
|
|
29932
|
+
* @param {string} [endDate] End date (YYYY-MM-DD or RFC3339)
|
|
29933
|
+
* @param {AdminBillingGraphsUsageBreakdownGetGranularityEnum} [granularity] Time granularity
|
|
29934
|
+
* @param {boolean} [fillZeros] Fill empty buckets with zeros
|
|
29935
|
+
* @param {*} [options] Override http request option.
|
|
29936
|
+
* @throws {RequiredError}
|
|
29937
|
+
*/
|
|
29938
|
+
adminBillingGraphsUsageBreakdownGet(xstoreid?: string, startDate?: string, endDate?: string, granularity?: AdminBillingGraphsUsageBreakdownGetGranularityEnum, fillZeros?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesUsageBreakdownGraphResponse>;
|
|
29939
|
+
};
|
|
29940
|
+
/**
|
|
29941
|
+
* BillingDashboardGraphsApi - object-oriented interface
|
|
29942
|
+
* @export
|
|
29943
|
+
* @class BillingDashboardGraphsApi
|
|
29944
|
+
* @extends {BaseAPI}
|
|
29945
|
+
*/
|
|
29946
|
+
export declare class BillingDashboardGraphsApi extends BaseAPI {
|
|
29947
|
+
/**
|
|
29948
|
+
* Returns credits consumed over time with store-level filtering and zero-filling
|
|
29949
|
+
* @summary Get credits consumed graph
|
|
29950
|
+
* @param {string} [xstoreid] Filter by specific store ID
|
|
29951
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD or RFC3339)
|
|
29952
|
+
* @param {string} [endDate] End date (YYYY-MM-DD or RFC3339)
|
|
29953
|
+
* @param {AdminBillingGraphsCreditsConsumedGetGranularityEnum} [granularity] Time granularity
|
|
29954
|
+
* @param {boolean} [fillZeros] Fill empty buckets with zeros
|
|
29955
|
+
* @param {*} [options] Override http request option.
|
|
29956
|
+
* @throws {RequiredError}
|
|
29957
|
+
* @memberof BillingDashboardGraphsApi
|
|
29958
|
+
*/
|
|
29959
|
+
adminBillingGraphsCreditsConsumedGet(xstoreid?: string, startDate?: string, endDate?: string, granularity?: AdminBillingGraphsCreditsConsumedGetGranularityEnum, fillZeros?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesCreditsConsumedGraphResponse, any, {}>>;
|
|
29960
|
+
/**
|
|
29961
|
+
* Returns search requests over time with store-level filtering and zero-filling
|
|
29962
|
+
* @summary Get search requests graph
|
|
29963
|
+
* @param {string} [xstoreid] Filter by specific store ID
|
|
29964
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD or RFC3339)
|
|
29965
|
+
* @param {string} [endDate] End date (YYYY-MM-DD or RFC3339)
|
|
29966
|
+
* @param {AdminBillingGraphsSearchRequestsGetGranularityEnum} [granularity] Time granularity
|
|
29967
|
+
* @param {boolean} [fillZeros] Fill empty buckets with zeros
|
|
29968
|
+
* @param {*} [options] Override http request option.
|
|
29969
|
+
* @throws {RequiredError}
|
|
29970
|
+
* @memberof BillingDashboardGraphsApi
|
|
29971
|
+
*/
|
|
29972
|
+
adminBillingGraphsSearchRequestsGet(xstoreid?: string, startDate?: string, endDate?: string, granularity?: AdminBillingGraphsSearchRequestsGetGranularityEnum, fillZeros?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesSearchRequestsGraphResponse, any, {}>>;
|
|
29973
|
+
/**
|
|
29974
|
+
* Returns detailed timeseries consumption with summary statistics
|
|
29975
|
+
* @summary Get timeseries consumption graph
|
|
29976
|
+
* @param {string} [xstoreid] Filter by specific store ID
|
|
29977
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD or RFC3339)
|
|
29978
|
+
* @param {string} [endDate] End date (YYYY-MM-DD or RFC3339)
|
|
29979
|
+
* @param {AdminBillingGraphsTimeseriesConsumptionGetGranularityEnum} [granularity] Time granularity
|
|
29980
|
+
* @param {boolean} [fillZeros] Fill empty buckets with zeros
|
|
29981
|
+
* @param {*} [options] Override http request option.
|
|
29982
|
+
* @throws {RequiredError}
|
|
29983
|
+
* @memberof BillingDashboardGraphsApi
|
|
29984
|
+
*/
|
|
29985
|
+
adminBillingGraphsTimeseriesConsumptionGet(xstoreid?: string, startDate?: string, endDate?: string, granularity?: AdminBillingGraphsTimeseriesConsumptionGetGranularityEnum, fillZeros?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesTimeSeriesConsumptionGraphResponse, any, {}>>;
|
|
29986
|
+
/**
|
|
29987
|
+
* Returns usage breakdown table with credits, requests, and record operations
|
|
29988
|
+
* @summary Get usage breakdown graph
|
|
29989
|
+
* @param {string} [xstoreid] Filter by specific store ID
|
|
29990
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD or RFC3339)
|
|
29991
|
+
* @param {string} [endDate] End date (YYYY-MM-DD or RFC3339)
|
|
29992
|
+
* @param {AdminBillingGraphsUsageBreakdownGetGranularityEnum} [granularity] Time granularity
|
|
29993
|
+
* @param {boolean} [fillZeros] Fill empty buckets with zeros
|
|
29994
|
+
* @param {*} [options] Override http request option.
|
|
29995
|
+
* @throws {RequiredError}
|
|
29996
|
+
* @memberof BillingDashboardGraphsApi
|
|
29997
|
+
*/
|
|
29998
|
+
adminBillingGraphsUsageBreakdownGet(xstoreid?: string, startDate?: string, endDate?: string, granularity?: AdminBillingGraphsUsageBreakdownGetGranularityEnum, fillZeros?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesUsageBreakdownGraphResponse, any, {}>>;
|
|
29999
|
+
}
|
|
30000
|
+
/**
|
|
30001
|
+
* @export
|
|
30002
|
+
*/
|
|
30003
|
+
export declare const AdminBillingGraphsCreditsConsumedGetGranularityEnum: {
|
|
30004
|
+
readonly Minute: "minute";
|
|
30005
|
+
readonly Hour: "hour";
|
|
30006
|
+
readonly Day: "day";
|
|
30007
|
+
readonly Week: "week";
|
|
30008
|
+
readonly Month: "month";
|
|
30009
|
+
};
|
|
30010
|
+
export type AdminBillingGraphsCreditsConsumedGetGranularityEnum = typeof AdminBillingGraphsCreditsConsumedGetGranularityEnum[keyof typeof AdminBillingGraphsCreditsConsumedGetGranularityEnum];
|
|
30011
|
+
/**
|
|
30012
|
+
* @export
|
|
30013
|
+
*/
|
|
30014
|
+
export declare const AdminBillingGraphsSearchRequestsGetGranularityEnum: {
|
|
30015
|
+
readonly Minute: "minute";
|
|
30016
|
+
readonly Hour: "hour";
|
|
30017
|
+
readonly Day: "day";
|
|
30018
|
+
readonly Week: "week";
|
|
30019
|
+
readonly Month: "month";
|
|
30020
|
+
};
|
|
30021
|
+
export type AdminBillingGraphsSearchRequestsGetGranularityEnum = typeof AdminBillingGraphsSearchRequestsGetGranularityEnum[keyof typeof AdminBillingGraphsSearchRequestsGetGranularityEnum];
|
|
30022
|
+
/**
|
|
30023
|
+
* @export
|
|
30024
|
+
*/
|
|
30025
|
+
export declare const AdminBillingGraphsTimeseriesConsumptionGetGranularityEnum: {
|
|
30026
|
+
readonly Minute: "minute";
|
|
30027
|
+
readonly Hour: "hour";
|
|
30028
|
+
readonly Day: "day";
|
|
30029
|
+
readonly Week: "week";
|
|
30030
|
+
readonly Month: "month";
|
|
30031
|
+
};
|
|
30032
|
+
export type AdminBillingGraphsTimeseriesConsumptionGetGranularityEnum = typeof AdminBillingGraphsTimeseriesConsumptionGetGranularityEnum[keyof typeof AdminBillingGraphsTimeseriesConsumptionGetGranularityEnum];
|
|
30033
|
+
/**
|
|
30034
|
+
* @export
|
|
30035
|
+
*/
|
|
30036
|
+
export declare const AdminBillingGraphsUsageBreakdownGetGranularityEnum: {
|
|
30037
|
+
readonly Minute: "minute";
|
|
30038
|
+
readonly Hour: "hour";
|
|
30039
|
+
readonly Day: "day";
|
|
30040
|
+
readonly Week: "week";
|
|
30041
|
+
readonly Month: "month";
|
|
30042
|
+
};
|
|
30043
|
+
export type AdminBillingGraphsUsageBreakdownGetGranularityEnum = typeof AdminBillingGraphsUsageBreakdownGetGranularityEnum[keyof typeof AdminBillingGraphsUsageBreakdownGetGranularityEnum];
|
|
29296
30044
|
/**
|
|
29297
30045
|
* CommonApi - axios parameter creator
|
|
29298
30046
|
* @export
|