@seekora-ai/admin-api 1.0.92 → 1.0.93
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 +32 -3
- package/api.ts +1569 -105
- package/dist/api.d.ts +1079 -70
- package/dist/api.js +818 -26
- package/dist/esm/api.d.ts +1079 -70
- package/dist/esm/api.js +818 -26
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.0.93.tgz +0 -0
- package/seekora-ai-admin-api-1.0.92.tgz +0 -0
package/dist/api.d.ts
CHANGED
|
@@ -8478,7 +8478,7 @@ export interface DataTypesBillingAlert {
|
|
|
8478
8478
|
*/
|
|
8479
8479
|
'alert_id'?: number;
|
|
8480
8480
|
/**
|
|
8481
|
-
*
|
|
8481
|
+
* \"low_balance\", \"expiring_credits\", \"days_remaining\"
|
|
8482
8482
|
* @type {string}
|
|
8483
8483
|
* @memberof DataTypesBillingAlert
|
|
8484
8484
|
*/
|
|
@@ -8509,10 +8509,12 @@ export interface DataTypesBillingAlert {
|
|
|
8509
8509
|
'last_triggered'?: string;
|
|
8510
8510
|
/**
|
|
8511
8511
|
*
|
|
8512
|
-
* @type {
|
|
8512
|
+
* @type {{ [key: string]: any; }}
|
|
8513
8513
|
* @memberof DataTypesBillingAlert
|
|
8514
8514
|
*/
|
|
8515
|
-
'notification_channels'?:
|
|
8515
|
+
'notification_channels'?: {
|
|
8516
|
+
[key: string]: any;
|
|
8517
|
+
};
|
|
8516
8518
|
/**
|
|
8517
8519
|
*
|
|
8518
8520
|
* @type {number}
|
|
@@ -8520,7 +8522,7 @@ export interface DataTypesBillingAlert {
|
|
|
8520
8522
|
*/
|
|
8521
8523
|
'org_id'?: number;
|
|
8522
8524
|
/**
|
|
8523
|
-
* \"credits\", \"days\"
|
|
8525
|
+
* \"credits\", \"days\"
|
|
8524
8526
|
* @type {string}
|
|
8525
8527
|
* @memberof DataTypesBillingAlert
|
|
8526
8528
|
*/
|
|
@@ -8557,11 +8559,13 @@ export interface DataTypesBillingAlertRequest {
|
|
|
8557
8559
|
*/
|
|
8558
8560
|
'is_enabled'?: boolean;
|
|
8559
8561
|
/**
|
|
8560
|
-
*
|
|
8561
|
-
* @type {
|
|
8562
|
+
*
|
|
8563
|
+
* @type {{ [key: string]: any; }}
|
|
8562
8564
|
* @memberof DataTypesBillingAlertRequest
|
|
8563
8565
|
*/
|
|
8564
|
-
'notification_channels'
|
|
8566
|
+
'notification_channels'?: {
|
|
8567
|
+
[key: string]: any;
|
|
8568
|
+
};
|
|
8565
8569
|
/**
|
|
8566
8570
|
*
|
|
8567
8571
|
* @type {number}
|
|
@@ -8601,7 +8605,7 @@ export interface DataTypesBillingAlertsResponse {
|
|
|
8601
8605
|
*/
|
|
8602
8606
|
export interface DataTypesBillingOverviewResponse {
|
|
8603
8607
|
/**
|
|
8604
|
-
* Credit
|
|
8608
|
+
* Credit balance information (existing system)
|
|
8605
8609
|
* @type {DataTypesCreditBalanceInfo}
|
|
8606
8610
|
* @memberof DataTypesBillingOverviewResponse
|
|
8607
8611
|
*/
|
|
@@ -8613,29 +8617,35 @@ export interface DataTypesBillingOverviewResponse {
|
|
|
8613
8617
|
*/
|
|
8614
8618
|
'currency'?: string;
|
|
8615
8619
|
/**
|
|
8616
|
-
* Current
|
|
8620
|
+
* Current plan information
|
|
8617
8621
|
* @type {DataTypesCurrentPlanInfo}
|
|
8618
8622
|
* @memberof DataTypesBillingOverviewResponse
|
|
8619
8623
|
*/
|
|
8620
8624
|
'current_plan'?: DataTypesCurrentPlanInfo;
|
|
8621
8625
|
/**
|
|
8622
|
-
*
|
|
8626
|
+
* Next charge information (for subscriptions)
|
|
8623
8627
|
* @type {DataTypesNextChargeInfo}
|
|
8624
8628
|
* @memberof DataTypesBillingOverviewResponse
|
|
8625
8629
|
*/
|
|
8626
8630
|
'next_charge'?: DataTypesNextChargeInfo;
|
|
8627
8631
|
/**
|
|
8628
|
-
* Projected
|
|
8632
|
+
* Projected runout information
|
|
8629
8633
|
* @type {DataTypesProjectedRunoutInfo}
|
|
8630
8634
|
* @memberof DataTypesBillingOverviewResponse
|
|
8631
8635
|
*/
|
|
8632
8636
|
'projected_runout'?: DataTypesProjectedRunoutInfo;
|
|
8633
8637
|
/**
|
|
8634
|
-
*
|
|
8638
|
+
* Total spent
|
|
8635
8639
|
* @type {number}
|
|
8636
8640
|
* @memberof DataTypesBillingOverviewResponse
|
|
8637
8641
|
*/
|
|
8638
8642
|
'total_spent'?: number;
|
|
8643
|
+
/**
|
|
8644
|
+
* Usage summary for current period
|
|
8645
|
+
* @type {DataTypesUsageSummary}
|
|
8646
|
+
* @memberof DataTypesBillingOverviewResponse
|
|
8647
|
+
*/
|
|
8648
|
+
'usage_summary'?: DataTypesUsageSummary;
|
|
8639
8649
|
}
|
|
8640
8650
|
/**
|
|
8641
8651
|
*
|
|
@@ -8744,6 +8754,31 @@ export interface DataTypesBulkUploadResponseWrapper {
|
|
|
8744
8754
|
*/
|
|
8745
8755
|
'status'?: number;
|
|
8746
8756
|
}
|
|
8757
|
+
/**
|
|
8758
|
+
*
|
|
8759
|
+
* @export
|
|
8760
|
+
* @interface DataTypesChartPoint
|
|
8761
|
+
*/
|
|
8762
|
+
export interface DataTypesChartPoint {
|
|
8763
|
+
/**
|
|
8764
|
+
*
|
|
8765
|
+
* @type {string}
|
|
8766
|
+
* @memberof DataTypesChartPoint
|
|
8767
|
+
*/
|
|
8768
|
+
'date'?: string;
|
|
8769
|
+
/**
|
|
8770
|
+
* \"Apr, 1\", \"Apr, 30\", etc.
|
|
8771
|
+
* @type {string}
|
|
8772
|
+
* @memberof DataTypesChartPoint
|
|
8773
|
+
*/
|
|
8774
|
+
'label'?: string;
|
|
8775
|
+
/**
|
|
8776
|
+
*
|
|
8777
|
+
* @type {number}
|
|
8778
|
+
* @memberof DataTypesChartPoint
|
|
8779
|
+
*/
|
|
8780
|
+
'value'?: number;
|
|
8781
|
+
}
|
|
8747
8782
|
/**
|
|
8748
8783
|
*
|
|
8749
8784
|
* @export
|
|
@@ -10387,6 +10422,43 @@ export interface DataTypesCreditBatchDetailsDto {
|
|
|
10387
10422
|
*/
|
|
10388
10423
|
'remaining_credits'?: number;
|
|
10389
10424
|
}
|
|
10425
|
+
/**
|
|
10426
|
+
*
|
|
10427
|
+
* @export
|
|
10428
|
+
* @interface DataTypesCreditChart
|
|
10429
|
+
*/
|
|
10430
|
+
export interface DataTypesCreditChart {
|
|
10431
|
+
/**
|
|
10432
|
+
*
|
|
10433
|
+
* @type {number}
|
|
10434
|
+
* @memberof DataTypesCreditChart
|
|
10435
|
+
*/
|
|
10436
|
+
'current_value'?: number;
|
|
10437
|
+
/**
|
|
10438
|
+
*
|
|
10439
|
+
* @type {Array<DataTypesChartPoint>}
|
|
10440
|
+
* @memberof DataTypesCreditChart
|
|
10441
|
+
*/
|
|
10442
|
+
'data_points'?: Array<DataTypesChartPoint>;
|
|
10443
|
+
/**
|
|
10444
|
+
* \"credits_consumed\", \"search_requests\", etc.
|
|
10445
|
+
* @type {string}
|
|
10446
|
+
* @memberof DataTypesCreditChart
|
|
10447
|
+
*/
|
|
10448
|
+
'metric'?: string;
|
|
10449
|
+
/**
|
|
10450
|
+
*
|
|
10451
|
+
* @type {string}
|
|
10452
|
+
* @memberof DataTypesCreditChart
|
|
10453
|
+
*/
|
|
10454
|
+
'title'?: string;
|
|
10455
|
+
/**
|
|
10456
|
+
*
|
|
10457
|
+
* @type {number}
|
|
10458
|
+
* @memberof DataTypesCreditChart
|
|
10459
|
+
*/
|
|
10460
|
+
'total_credits'?: number;
|
|
10461
|
+
}
|
|
10390
10462
|
/**
|
|
10391
10463
|
*
|
|
10392
10464
|
* @export
|
|
@@ -10507,6 +10579,43 @@ export interface DataTypesCreditConsumptionResult {
|
|
|
10507
10579
|
*/
|
|
10508
10580
|
'transaction_id'?: number;
|
|
10509
10581
|
}
|
|
10582
|
+
/**
|
|
10583
|
+
*
|
|
10584
|
+
* @export
|
|
10585
|
+
* @interface DataTypesCreditConsumptionSummary
|
|
10586
|
+
*/
|
|
10587
|
+
export interface DataTypesCreditConsumptionSummary {
|
|
10588
|
+
/**
|
|
10589
|
+
*
|
|
10590
|
+
* @type {Array<DataTypesDailyConsumption>}
|
|
10591
|
+
* @memberof DataTypesCreditConsumptionSummary
|
|
10592
|
+
*/
|
|
10593
|
+
'daily_consumption'?: Array<DataTypesDailyConsumption>;
|
|
10594
|
+
/**
|
|
10595
|
+
*
|
|
10596
|
+
* @type {number}
|
|
10597
|
+
* @memberof DataTypesCreditConsumptionSummary
|
|
10598
|
+
*/
|
|
10599
|
+
'records'?: number;
|
|
10600
|
+
/**
|
|
10601
|
+
*
|
|
10602
|
+
* @type {number}
|
|
10603
|
+
* @memberof DataTypesCreditConsumptionSummary
|
|
10604
|
+
*/
|
|
10605
|
+
'search_requests'?: number;
|
|
10606
|
+
/**
|
|
10607
|
+
*
|
|
10608
|
+
* @type {Array<DataTypesEndpointUsage>}
|
|
10609
|
+
* @memberof DataTypesCreditConsumptionSummary
|
|
10610
|
+
*/
|
|
10611
|
+
'top_endpoints'?: Array<DataTypesEndpointUsage>;
|
|
10612
|
+
/**
|
|
10613
|
+
*
|
|
10614
|
+
* @type {number}
|
|
10615
|
+
* @memberof DataTypesCreditConsumptionSummary
|
|
10616
|
+
*/
|
|
10617
|
+
'total_credits_consumed'?: number;
|
|
10618
|
+
}
|
|
10510
10619
|
/**
|
|
10511
10620
|
*
|
|
10512
10621
|
* @export
|
|
@@ -10714,7 +10823,7 @@ export interface DataTypesCurrentPlanInfo {
|
|
|
10714
10823
|
*/
|
|
10715
10824
|
'auto_renewal'?: boolean;
|
|
10716
10825
|
/**
|
|
10717
|
-
*
|
|
10826
|
+
*
|
|
10718
10827
|
* @type {string}
|
|
10719
10828
|
* @memberof DataTypesCurrentPlanInfo
|
|
10720
10829
|
*/
|
|
@@ -10738,7 +10847,7 @@ export interface DataTypesCurrentPlanInfo {
|
|
|
10738
10847
|
*/
|
|
10739
10848
|
'plan_name'?: string;
|
|
10740
10849
|
/**
|
|
10741
|
-
*
|
|
10850
|
+
*
|
|
10742
10851
|
* @type {string}
|
|
10743
10852
|
* @memberof DataTypesCurrentPlanInfo
|
|
10744
10853
|
*/
|
|
@@ -10750,7 +10859,7 @@ export interface DataTypesCurrentPlanInfo {
|
|
|
10750
10859
|
*/
|
|
10751
10860
|
'start_date'?: string;
|
|
10752
10861
|
/**
|
|
10753
|
-
*
|
|
10862
|
+
*
|
|
10754
10863
|
* @type {string}
|
|
10755
10864
|
* @memberof DataTypesCurrentPlanInfo
|
|
10756
10865
|
*/
|
|
@@ -10966,6 +11075,37 @@ export interface DataTypesCustomerInfoDto {
|
|
|
10966
11075
|
*/
|
|
10967
11076
|
'phone'?: string;
|
|
10968
11077
|
}
|
|
11078
|
+
/**
|
|
11079
|
+
*
|
|
11080
|
+
* @export
|
|
11081
|
+
* @interface DataTypesDailyConsumption
|
|
11082
|
+
*/
|
|
11083
|
+
export interface DataTypesDailyConsumption {
|
|
11084
|
+
/**
|
|
11085
|
+
*
|
|
11086
|
+
* @type {number}
|
|
11087
|
+
* @memberof DataTypesDailyConsumption
|
|
11088
|
+
*/
|
|
11089
|
+
'credits_used'?: number;
|
|
11090
|
+
/**
|
|
11091
|
+
*
|
|
11092
|
+
* @type {string}
|
|
11093
|
+
* @memberof DataTypesDailyConsumption
|
|
11094
|
+
*/
|
|
11095
|
+
'date'?: string;
|
|
11096
|
+
/**
|
|
11097
|
+
*
|
|
11098
|
+
* @type {number}
|
|
11099
|
+
* @memberof DataTypesDailyConsumption
|
|
11100
|
+
*/
|
|
11101
|
+
'record_count'?: number;
|
|
11102
|
+
/**
|
|
11103
|
+
*
|
|
11104
|
+
* @type {number}
|
|
11105
|
+
* @memberof DataTypesDailyConsumption
|
|
11106
|
+
*/
|
|
11107
|
+
'search_count'?: number;
|
|
11108
|
+
}
|
|
10969
11109
|
/**
|
|
10970
11110
|
*
|
|
10971
11111
|
* @export
|
|
@@ -11318,6 +11458,37 @@ export interface DataTypesDocumentResponseWrapper {
|
|
|
11318
11458
|
*/
|
|
11319
11459
|
'status'?: number;
|
|
11320
11460
|
}
|
|
11461
|
+
/**
|
|
11462
|
+
*
|
|
11463
|
+
* @export
|
|
11464
|
+
* @interface DataTypesEndpointUsage
|
|
11465
|
+
*/
|
|
11466
|
+
export interface DataTypesEndpointUsage {
|
|
11467
|
+
/**
|
|
11468
|
+
*
|
|
11469
|
+
* @type {number}
|
|
11470
|
+
* @memberof DataTypesEndpointUsage
|
|
11471
|
+
*/
|
|
11472
|
+
'credits_used'?: number;
|
|
11473
|
+
/**
|
|
11474
|
+
*
|
|
11475
|
+
* @type {string}
|
|
11476
|
+
* @memberof DataTypesEndpointUsage
|
|
11477
|
+
*/
|
|
11478
|
+
'endpoint'?: string;
|
|
11479
|
+
/**
|
|
11480
|
+
*
|
|
11481
|
+
* @type {string}
|
|
11482
|
+
* @memberof DataTypesEndpointUsage
|
|
11483
|
+
*/
|
|
11484
|
+
'method'?: string;
|
|
11485
|
+
/**
|
|
11486
|
+
*
|
|
11487
|
+
* @type {number}
|
|
11488
|
+
* @memberof DataTypesEndpointUsage
|
|
11489
|
+
*/
|
|
11490
|
+
'request_count'?: number;
|
|
11491
|
+
}
|
|
11321
11492
|
/**
|
|
11322
11493
|
*
|
|
11323
11494
|
* @export
|
|
@@ -12658,6 +12829,56 @@ export interface DataTypesGenericResponseDataTypesGetRefundHistoryResponseDto {
|
|
|
12658
12829
|
*/
|
|
12659
12830
|
'status'?: number;
|
|
12660
12831
|
}
|
|
12832
|
+
/**
|
|
12833
|
+
*
|
|
12834
|
+
* @export
|
|
12835
|
+
* @interface DataTypesGenericResponseDataTypesInvoice
|
|
12836
|
+
*/
|
|
12837
|
+
export interface DataTypesGenericResponseDataTypesInvoice {
|
|
12838
|
+
/**
|
|
12839
|
+
*
|
|
12840
|
+
* @type {DataTypesInvoice}
|
|
12841
|
+
* @memberof DataTypesGenericResponseDataTypesInvoice
|
|
12842
|
+
*/
|
|
12843
|
+
'data'?: DataTypesInvoice;
|
|
12844
|
+
/**
|
|
12845
|
+
*
|
|
12846
|
+
* @type {string}
|
|
12847
|
+
* @memberof DataTypesGenericResponseDataTypesInvoice
|
|
12848
|
+
*/
|
|
12849
|
+
'message'?: string;
|
|
12850
|
+
/**
|
|
12851
|
+
*
|
|
12852
|
+
* @type {number}
|
|
12853
|
+
* @memberof DataTypesGenericResponseDataTypesInvoice
|
|
12854
|
+
*/
|
|
12855
|
+
'status'?: number;
|
|
12856
|
+
}
|
|
12857
|
+
/**
|
|
12858
|
+
*
|
|
12859
|
+
* @export
|
|
12860
|
+
* @interface DataTypesGenericResponseDataTypesInvoiceResponse
|
|
12861
|
+
*/
|
|
12862
|
+
export interface DataTypesGenericResponseDataTypesInvoiceResponse {
|
|
12863
|
+
/**
|
|
12864
|
+
*
|
|
12865
|
+
* @type {DataTypesInvoiceResponse}
|
|
12866
|
+
* @memberof DataTypesGenericResponseDataTypesInvoiceResponse
|
|
12867
|
+
*/
|
|
12868
|
+
'data'?: DataTypesInvoiceResponse;
|
|
12869
|
+
/**
|
|
12870
|
+
*
|
|
12871
|
+
* @type {string}
|
|
12872
|
+
* @memberof DataTypesGenericResponseDataTypesInvoiceResponse
|
|
12873
|
+
*/
|
|
12874
|
+
'message'?: string;
|
|
12875
|
+
/**
|
|
12876
|
+
*
|
|
12877
|
+
* @type {number}
|
|
12878
|
+
* @memberof DataTypesGenericResponseDataTypesInvoiceResponse
|
|
12879
|
+
*/
|
|
12880
|
+
'status'?: number;
|
|
12881
|
+
}
|
|
12661
12882
|
/**
|
|
12662
12883
|
*
|
|
12663
12884
|
* @export
|
|
@@ -12833,6 +13054,31 @@ export interface DataTypesGenericResponseDataTypesSavedCardsResponse {
|
|
|
12833
13054
|
*/
|
|
12834
13055
|
'status'?: number;
|
|
12835
13056
|
}
|
|
13057
|
+
/**
|
|
13058
|
+
*
|
|
13059
|
+
* @export
|
|
13060
|
+
* @interface DataTypesGenericResponseDataTypesUsageDetailsResponse
|
|
13061
|
+
*/
|
|
13062
|
+
export interface DataTypesGenericResponseDataTypesUsageDetailsResponse {
|
|
13063
|
+
/**
|
|
13064
|
+
*
|
|
13065
|
+
* @type {DataTypesUsageDetailsResponse}
|
|
13066
|
+
* @memberof DataTypesGenericResponseDataTypesUsageDetailsResponse
|
|
13067
|
+
*/
|
|
13068
|
+
'data'?: DataTypesUsageDetailsResponse;
|
|
13069
|
+
/**
|
|
13070
|
+
*
|
|
13071
|
+
* @type {string}
|
|
13072
|
+
* @memberof DataTypesGenericResponseDataTypesUsageDetailsResponse
|
|
13073
|
+
*/
|
|
13074
|
+
'message'?: string;
|
|
13075
|
+
/**
|
|
13076
|
+
*
|
|
13077
|
+
* @type {number}
|
|
13078
|
+
* @memberof DataTypesGenericResponseDataTypesUsageDetailsResponse
|
|
13079
|
+
*/
|
|
13080
|
+
'status'?: number;
|
|
13081
|
+
}
|
|
12836
13082
|
/**
|
|
12837
13083
|
*
|
|
12838
13084
|
* @export
|
|
@@ -13458,6 +13704,201 @@ export interface DataTypesIndexField {
|
|
|
13458
13704
|
*/
|
|
13459
13705
|
'type'?: string;
|
|
13460
13706
|
}
|
|
13707
|
+
/**
|
|
13708
|
+
*
|
|
13709
|
+
* @export
|
|
13710
|
+
* @interface DataTypesInvoice
|
|
13711
|
+
*/
|
|
13712
|
+
export interface DataTypesInvoice {
|
|
13713
|
+
/**
|
|
13714
|
+
*
|
|
13715
|
+
* @type {number}
|
|
13716
|
+
* @memberof DataTypesInvoice
|
|
13717
|
+
*/
|
|
13718
|
+
'amount'?: number;
|
|
13719
|
+
/**
|
|
13720
|
+
*
|
|
13721
|
+
* @type {string}
|
|
13722
|
+
* @memberof DataTypesInvoice
|
|
13723
|
+
*/
|
|
13724
|
+
'created_at'?: string;
|
|
13725
|
+
/**
|
|
13726
|
+
*
|
|
13727
|
+
* @type {string}
|
|
13728
|
+
* @memberof DataTypesInvoice
|
|
13729
|
+
*/
|
|
13730
|
+
'currency'?: string;
|
|
13731
|
+
/**
|
|
13732
|
+
*
|
|
13733
|
+
* @type {string}
|
|
13734
|
+
* @memberof DataTypesInvoice
|
|
13735
|
+
*/
|
|
13736
|
+
'due_date'?: string;
|
|
13737
|
+
/**
|
|
13738
|
+
*
|
|
13739
|
+
* @type {string}
|
|
13740
|
+
* @memberof DataTypesInvoice
|
|
13741
|
+
*/
|
|
13742
|
+
'invoice_id'?: string;
|
|
13743
|
+
/**
|
|
13744
|
+
*
|
|
13745
|
+
* @type {string}
|
|
13746
|
+
* @memberof DataTypesInvoice
|
|
13747
|
+
*/
|
|
13748
|
+
'invoice_number'?: string;
|
|
13749
|
+
/**
|
|
13750
|
+
*
|
|
13751
|
+
* @type {string}
|
|
13752
|
+
* @memberof DataTypesInvoice
|
|
13753
|
+
*/
|
|
13754
|
+
'issue_date'?: string;
|
|
13755
|
+
/**
|
|
13756
|
+
*
|
|
13757
|
+
* @type {Array<DataTypesInvoiceItem>}
|
|
13758
|
+
* @memberof DataTypesInvoice
|
|
13759
|
+
*/
|
|
13760
|
+
'items'?: Array<DataTypesInvoiceItem>;
|
|
13761
|
+
/**
|
|
13762
|
+
*
|
|
13763
|
+
* @type {string}
|
|
13764
|
+
* @memberof DataTypesInvoice
|
|
13765
|
+
*/
|
|
13766
|
+
'notes'?: string;
|
|
13767
|
+
/**
|
|
13768
|
+
*
|
|
13769
|
+
* @type {number}
|
|
13770
|
+
* @memberof DataTypesInvoice
|
|
13771
|
+
*/
|
|
13772
|
+
'org_id'?: number;
|
|
13773
|
+
/**
|
|
13774
|
+
*
|
|
13775
|
+
* @type {string}
|
|
13776
|
+
* @memberof DataTypesInvoice
|
|
13777
|
+
*/
|
|
13778
|
+
'org_name'?: string;
|
|
13779
|
+
/**
|
|
13780
|
+
*
|
|
13781
|
+
* @type {string}
|
|
13782
|
+
* @memberof DataTypesInvoice
|
|
13783
|
+
*/
|
|
13784
|
+
'paid_date'?: string;
|
|
13785
|
+
/**
|
|
13786
|
+
*
|
|
13787
|
+
* @type {string}
|
|
13788
|
+
* @memberof DataTypesInvoice
|
|
13789
|
+
*/
|
|
13790
|
+
'payment_method'?: string;
|
|
13791
|
+
/**
|
|
13792
|
+
* \"draft\", \"sent\", \"paid\", \"overdue\", \"cancelled\"
|
|
13793
|
+
* @type {string}
|
|
13794
|
+
* @memberof DataTypesInvoice
|
|
13795
|
+
*/
|
|
13796
|
+
'status'?: string;
|
|
13797
|
+
/**
|
|
13798
|
+
*
|
|
13799
|
+
* @type {number}
|
|
13800
|
+
* @memberof DataTypesInvoice
|
|
13801
|
+
*/
|
|
13802
|
+
'subtotal'?: number;
|
|
13803
|
+
/**
|
|
13804
|
+
*
|
|
13805
|
+
* @type {number}
|
|
13806
|
+
* @memberof DataTypesInvoice
|
|
13807
|
+
*/
|
|
13808
|
+
'tax_amount'?: number;
|
|
13809
|
+
/**
|
|
13810
|
+
*
|
|
13811
|
+
* @type {number}
|
|
13812
|
+
* @memberof DataTypesInvoice
|
|
13813
|
+
*/
|
|
13814
|
+
'total_amount'?: number;
|
|
13815
|
+
/**
|
|
13816
|
+
*
|
|
13817
|
+
* @type {string}
|
|
13818
|
+
* @memberof DataTypesInvoice
|
|
13819
|
+
*/
|
|
13820
|
+
'updated_at'?: string;
|
|
13821
|
+
}
|
|
13822
|
+
/**
|
|
13823
|
+
*
|
|
13824
|
+
* @export
|
|
13825
|
+
* @interface DataTypesInvoiceItem
|
|
13826
|
+
*/
|
|
13827
|
+
export interface DataTypesInvoiceItem {
|
|
13828
|
+
/**
|
|
13829
|
+
*
|
|
13830
|
+
* @type {string}
|
|
13831
|
+
* @memberof DataTypesInvoiceItem
|
|
13832
|
+
*/
|
|
13833
|
+
'description'?: string;
|
|
13834
|
+
/**
|
|
13835
|
+
*
|
|
13836
|
+
* @type {string}
|
|
13837
|
+
* @memberof DataTypesInvoiceItem
|
|
13838
|
+
*/
|
|
13839
|
+
'item_id'?: string;
|
|
13840
|
+
/**
|
|
13841
|
+
*
|
|
13842
|
+
* @type {number}
|
|
13843
|
+
* @memberof DataTypesInvoiceItem
|
|
13844
|
+
*/
|
|
13845
|
+
'quantity'?: number;
|
|
13846
|
+
/**
|
|
13847
|
+
*
|
|
13848
|
+
* @type {number}
|
|
13849
|
+
* @memberof DataTypesInvoiceItem
|
|
13850
|
+
*/
|
|
13851
|
+
'tax_amount'?: number;
|
|
13852
|
+
/**
|
|
13853
|
+
*
|
|
13854
|
+
* @type {number}
|
|
13855
|
+
* @memberof DataTypesInvoiceItem
|
|
13856
|
+
*/
|
|
13857
|
+
'tax_rate'?: number;
|
|
13858
|
+
/**
|
|
13859
|
+
*
|
|
13860
|
+
* @type {number}
|
|
13861
|
+
* @memberof DataTypesInvoiceItem
|
|
13862
|
+
*/
|
|
13863
|
+
'total_price'?: number;
|
|
13864
|
+
/**
|
|
13865
|
+
*
|
|
13866
|
+
* @type {number}
|
|
13867
|
+
* @memberof DataTypesInvoiceItem
|
|
13868
|
+
*/
|
|
13869
|
+
'unit_price'?: number;
|
|
13870
|
+
}
|
|
13871
|
+
/**
|
|
13872
|
+
*
|
|
13873
|
+
* @export
|
|
13874
|
+
* @interface DataTypesInvoiceResponse
|
|
13875
|
+
*/
|
|
13876
|
+
export interface DataTypesInvoiceResponse {
|
|
13877
|
+
/**
|
|
13878
|
+
*
|
|
13879
|
+
* @type {Array<DataTypesInvoice>}
|
|
13880
|
+
* @memberof DataTypesInvoiceResponse
|
|
13881
|
+
*/
|
|
13882
|
+
'invoices'?: Array<DataTypesInvoice>;
|
|
13883
|
+
/**
|
|
13884
|
+
*
|
|
13885
|
+
* @type {number}
|
|
13886
|
+
* @memberof DataTypesInvoiceResponse
|
|
13887
|
+
*/
|
|
13888
|
+
'limit'?: number;
|
|
13889
|
+
/**
|
|
13890
|
+
*
|
|
13891
|
+
* @type {number}
|
|
13892
|
+
* @memberof DataTypesInvoiceResponse
|
|
13893
|
+
*/
|
|
13894
|
+
'page'?: number;
|
|
13895
|
+
/**
|
|
13896
|
+
*
|
|
13897
|
+
* @type {number}
|
|
13898
|
+
* @memberof DataTypesInvoiceResponse
|
|
13899
|
+
*/
|
|
13900
|
+
'total'?: number;
|
|
13901
|
+
}
|
|
13461
13902
|
/**
|
|
13462
13903
|
*
|
|
13463
13904
|
* @export
|
|
@@ -14196,6 +14637,25 @@ export interface DataTypesMenusListResponse {
|
|
|
14196
14637
|
*/
|
|
14197
14638
|
'status'?: number;
|
|
14198
14639
|
}
|
|
14640
|
+
/**
|
|
14641
|
+
*
|
|
14642
|
+
* @export
|
|
14643
|
+
* @interface DataTypesMetricData
|
|
14644
|
+
*/
|
|
14645
|
+
export interface DataTypesMetricData {
|
|
14646
|
+
/**
|
|
14647
|
+
*
|
|
14648
|
+
* @type {Array<number>}
|
|
14649
|
+
* @memberof DataTypesMetricData
|
|
14650
|
+
*/
|
|
14651
|
+
'data_points'?: Array<number>;
|
|
14652
|
+
/**
|
|
14653
|
+
*
|
|
14654
|
+
* @type {string}
|
|
14655
|
+
* @memberof DataTypesMetricData
|
|
14656
|
+
*/
|
|
14657
|
+
'metric_name'?: string;
|
|
14658
|
+
}
|
|
14199
14659
|
/**
|
|
14200
14660
|
*
|
|
14201
14661
|
* @export
|
|
@@ -15585,6 +16045,31 @@ export interface DataTypesPaymentsListResponse {
|
|
|
15585
16045
|
*/
|
|
15586
16046
|
'status'?: number;
|
|
15587
16047
|
}
|
|
16048
|
+
/**
|
|
16049
|
+
*
|
|
16050
|
+
* @export
|
|
16051
|
+
* @interface DataTypesPeriodInfo
|
|
16052
|
+
*/
|
|
16053
|
+
export interface DataTypesPeriodInfo {
|
|
16054
|
+
/**
|
|
16055
|
+
*
|
|
16056
|
+
* @type {string}
|
|
16057
|
+
* @memberof DataTypesPeriodInfo
|
|
16058
|
+
*/
|
|
16059
|
+
'end_date'?: string;
|
|
16060
|
+
/**
|
|
16061
|
+
* \"April 1, 2025 to October 31, 2025\"
|
|
16062
|
+
* @type {string}
|
|
16063
|
+
* @memberof DataTypesPeriodInfo
|
|
16064
|
+
*/
|
|
16065
|
+
'label'?: string;
|
|
16066
|
+
/**
|
|
16067
|
+
*
|
|
16068
|
+
* @type {string}
|
|
16069
|
+
* @memberof DataTypesPeriodInfo
|
|
16070
|
+
*/
|
|
16071
|
+
'start_date'?: string;
|
|
16072
|
+
}
|
|
15588
16073
|
/**
|
|
15589
16074
|
*
|
|
15590
16075
|
* @export
|
|
@@ -16124,7 +16609,7 @@ export interface DataTypesProjectedRunoutInfo {
|
|
|
16124
16609
|
*/
|
|
16125
16610
|
'projected_runout_date'?: string;
|
|
16126
16611
|
/**
|
|
16127
|
-
* \"
|
|
16612
|
+
* \"normal\", \"warning\", \"critical\"
|
|
16128
16613
|
* @type {string}
|
|
16129
16614
|
* @memberof DataTypesProjectedRunoutInfo
|
|
16130
16615
|
*/
|
|
@@ -17610,19 +18095,19 @@ export interface DataTypesSampleDatasetsResponseWrapper {
|
|
|
17610
18095
|
*/
|
|
17611
18096
|
export interface DataTypesSavedCard {
|
|
17612
18097
|
/**
|
|
17613
|
-
* \"Visa\", \"
|
|
18098
|
+
* \"Visa\", \"MasterCard\", etc.
|
|
17614
18099
|
* @type {string}
|
|
17615
18100
|
* @memberof DataTypesSavedCard
|
|
17616
18101
|
*/
|
|
17617
18102
|
'card_network'?: string;
|
|
17618
18103
|
/**
|
|
17619
|
-
* Masked
|
|
18104
|
+
* Masked: \"**** **** **** 1234\"
|
|
17620
18105
|
* @type {string}
|
|
17621
18106
|
* @memberof DataTypesSavedCard
|
|
17622
18107
|
*/
|
|
17623
18108
|
'card_number'?: string;
|
|
17624
18109
|
/**
|
|
17625
|
-
* \"
|
|
18110
|
+
* \"Credit\", \"Debit\"
|
|
17626
18111
|
* @type {string}
|
|
17627
18112
|
* @memberof DataTypesSavedCard
|
|
17628
18113
|
*/
|
|
@@ -17635,16 +18120,16 @@ export interface DataTypesSavedCard {
|
|
|
17635
18120
|
'created_at'?: string;
|
|
17636
18121
|
/**
|
|
17637
18122
|
*
|
|
17638
|
-
* @type {
|
|
18123
|
+
* @type {number}
|
|
17639
18124
|
* @memberof DataTypesSavedCard
|
|
17640
18125
|
*/
|
|
17641
|
-
'expiry_month'?:
|
|
18126
|
+
'expiry_month'?: number;
|
|
17642
18127
|
/**
|
|
17643
18128
|
*
|
|
17644
|
-
* @type {
|
|
18129
|
+
* @type {number}
|
|
17645
18130
|
* @memberof DataTypesSavedCard
|
|
17646
18131
|
*/
|
|
17647
|
-
'expiry_year'?:
|
|
18132
|
+
'expiry_year'?: number;
|
|
17648
18133
|
/**
|
|
17649
18134
|
*
|
|
17650
18135
|
* @type {boolean}
|
|
@@ -17658,7 +18143,7 @@ export interface DataTypesSavedCard {
|
|
|
17658
18143
|
*/
|
|
17659
18144
|
'is_expired'?: boolean;
|
|
17660
18145
|
/**
|
|
17661
|
-
*
|
|
18146
|
+
* Bank name
|
|
17662
18147
|
* @type {string}
|
|
17663
18148
|
* @memberof DataTypesSavedCard
|
|
17664
18149
|
*/
|
|
@@ -18974,6 +19459,25 @@ export interface DataTypesSynonymEntry {
|
|
|
18974
19459
|
*/
|
|
18975
19460
|
'synonyms'?: Array<string>;
|
|
18976
19461
|
}
|
|
19462
|
+
/**
|
|
19463
|
+
*
|
|
19464
|
+
* @export
|
|
19465
|
+
* @interface DataTypesTableCell
|
|
19466
|
+
*/
|
|
19467
|
+
export interface DataTypesTableCell {
|
|
19468
|
+
/**
|
|
19469
|
+
* \"header\", \"data\", \"total\"
|
|
19470
|
+
* @type {string}
|
|
19471
|
+
* @memberof DataTypesTableCell
|
|
19472
|
+
*/
|
|
19473
|
+
'type'?: string;
|
|
19474
|
+
/**
|
|
19475
|
+
*
|
|
19476
|
+
* @type {string}
|
|
19477
|
+
* @memberof DataTypesTableCell
|
|
19478
|
+
*/
|
|
19479
|
+
'value'?: string;
|
|
19480
|
+
}
|
|
18977
19481
|
/**
|
|
18978
19482
|
*
|
|
18979
19483
|
* @export
|
|
@@ -19299,6 +19803,37 @@ export interface DataTypesUpdateIndexSchemaRequestFieldsInner {
|
|
|
19299
19803
|
*/
|
|
19300
19804
|
'sort'?: boolean;
|
|
19301
19805
|
}
|
|
19806
|
+
/**
|
|
19807
|
+
*
|
|
19808
|
+
* @export
|
|
19809
|
+
* @interface DataTypesUpdateInvoiceRequest
|
|
19810
|
+
*/
|
|
19811
|
+
export interface DataTypesUpdateInvoiceRequest {
|
|
19812
|
+
/**
|
|
19813
|
+
*
|
|
19814
|
+
* @type {string}
|
|
19815
|
+
* @memberof DataTypesUpdateInvoiceRequest
|
|
19816
|
+
*/
|
|
19817
|
+
'notes'?: string;
|
|
19818
|
+
/**
|
|
19819
|
+
*
|
|
19820
|
+
* @type {string}
|
|
19821
|
+
* @memberof DataTypesUpdateInvoiceRequest
|
|
19822
|
+
*/
|
|
19823
|
+
'paid_date'?: string;
|
|
19824
|
+
/**
|
|
19825
|
+
*
|
|
19826
|
+
* @type {string}
|
|
19827
|
+
* @memberof DataTypesUpdateInvoiceRequest
|
|
19828
|
+
*/
|
|
19829
|
+
'payment_method'?: string;
|
|
19830
|
+
/**
|
|
19831
|
+
*
|
|
19832
|
+
* @type {string}
|
|
19833
|
+
* @memberof DataTypesUpdateInvoiceRequest
|
|
19834
|
+
*/
|
|
19835
|
+
'status'?: string;
|
|
19836
|
+
}
|
|
19302
19837
|
/**
|
|
19303
19838
|
*
|
|
19304
19839
|
* @export
|
|
@@ -19576,55 +20111,142 @@ export interface DataTypesUpdateWordStatusResponseWrapper {
|
|
|
19576
20111
|
*/
|
|
19577
20112
|
'message'?: string;
|
|
19578
20113
|
/**
|
|
19579
|
-
*
|
|
19580
|
-
* @type {number}
|
|
19581
|
-
* @memberof DataTypesUpdateWordStatusResponseWrapper
|
|
20114
|
+
*
|
|
20115
|
+
* @type {number}
|
|
20116
|
+
* @memberof DataTypesUpdateWordStatusResponseWrapper
|
|
20117
|
+
*/
|
|
20118
|
+
'status'?: number;
|
|
20119
|
+
}
|
|
20120
|
+
/**
|
|
20121
|
+
*
|
|
20122
|
+
* @export
|
|
20123
|
+
* @interface DataTypesUploadSourceDataResponseWrapper
|
|
20124
|
+
*/
|
|
20125
|
+
export interface DataTypesUploadSourceDataResponseWrapper {
|
|
20126
|
+
/**
|
|
20127
|
+
*
|
|
20128
|
+
* @type {DataTypesUploadsourceDataResponse}
|
|
20129
|
+
* @memberof DataTypesUploadSourceDataResponseWrapper
|
|
20130
|
+
*/
|
|
20131
|
+
'data'?: DataTypesUploadsourceDataResponse;
|
|
20132
|
+
/**
|
|
20133
|
+
*
|
|
20134
|
+
* @type {string}
|
|
20135
|
+
* @memberof DataTypesUploadSourceDataResponseWrapper
|
|
20136
|
+
*/
|
|
20137
|
+
'message'?: string;
|
|
20138
|
+
/**
|
|
20139
|
+
*
|
|
20140
|
+
* @type {number}
|
|
20141
|
+
* @memberof DataTypesUploadSourceDataResponseWrapper
|
|
20142
|
+
*/
|
|
20143
|
+
'status'?: number;
|
|
20144
|
+
}
|
|
20145
|
+
/**
|
|
20146
|
+
*
|
|
20147
|
+
* @export
|
|
20148
|
+
* @interface DataTypesUploadsourceDataResponse
|
|
20149
|
+
*/
|
|
20150
|
+
export interface DataTypesUploadsourceDataResponse {
|
|
20151
|
+
/**
|
|
20152
|
+
*
|
|
20153
|
+
* @type {string}
|
|
20154
|
+
* @memberof DataTypesUploadsourceDataResponse
|
|
20155
|
+
*/
|
|
20156
|
+
'JobId'?: string;
|
|
20157
|
+
/**
|
|
20158
|
+
*
|
|
20159
|
+
* @type {DataTypesSource}
|
|
20160
|
+
* @memberof DataTypesUploadsourceDataResponse
|
|
20161
|
+
*/
|
|
20162
|
+
'Source'?: DataTypesSource;
|
|
20163
|
+
}
|
|
20164
|
+
/**
|
|
20165
|
+
*
|
|
20166
|
+
* @export
|
|
20167
|
+
* @interface DataTypesUsageBreakdown
|
|
20168
|
+
*/
|
|
20169
|
+
export interface DataTypesUsageBreakdown {
|
|
20170
|
+
/**
|
|
20171
|
+
*
|
|
20172
|
+
* @type {Array<DataTypesMetricData>}
|
|
20173
|
+
* @memberof DataTypesUsageBreakdown
|
|
20174
|
+
*/
|
|
20175
|
+
'metrics'?: Array<DataTypesMetricData>;
|
|
20176
|
+
/**
|
|
20177
|
+
*
|
|
20178
|
+
* @type {DataTypesPeriodInfo}
|
|
20179
|
+
* @memberof DataTypesUsageBreakdown
|
|
20180
|
+
*/
|
|
20181
|
+
'period'?: DataTypesPeriodInfo;
|
|
20182
|
+
/**
|
|
20183
|
+
*
|
|
20184
|
+
* @type {Array<Array<DataTypesTableCell>>}
|
|
20185
|
+
* @memberof DataTypesUsageBreakdown
|
|
20186
|
+
*/
|
|
20187
|
+
'table_data'?: Array<Array<DataTypesTableCell>>;
|
|
20188
|
+
}
|
|
20189
|
+
/**
|
|
20190
|
+
*
|
|
20191
|
+
* @export
|
|
20192
|
+
* @interface DataTypesUsageDetailsResponse
|
|
20193
|
+
*/
|
|
20194
|
+
export interface DataTypesUsageDetailsResponse {
|
|
20195
|
+
/**
|
|
20196
|
+
* Usage breakdown table
|
|
20197
|
+
* @type {DataTypesUsageBreakdown}
|
|
20198
|
+
* @memberof DataTypesUsageDetailsResponse
|
|
20199
|
+
*/
|
|
20200
|
+
'breakdown'?: DataTypesUsageBreakdown;
|
|
20201
|
+
/**
|
|
20202
|
+
* Credit consumption charts
|
|
20203
|
+
* @type {Array<DataTypesCreditChart>}
|
|
20204
|
+
* @memberof DataTypesUsageDetailsResponse
|
|
20205
|
+
*/
|
|
20206
|
+
'credit_charts'?: Array<DataTypesCreditChart>;
|
|
20207
|
+
/**
|
|
20208
|
+
* Credit consumption summary
|
|
20209
|
+
* @type {DataTypesCreditConsumptionSummary}
|
|
20210
|
+
* @memberof DataTypesUsageDetailsResponse
|
|
20211
|
+
*/
|
|
20212
|
+
'credit_summary'?: DataTypesCreditConsumptionSummary;
|
|
20213
|
+
/**
|
|
20214
|
+
* Time period for the data
|
|
20215
|
+
* @type {DataTypesPeriodInfo}
|
|
20216
|
+
* @memberof DataTypesUsageDetailsResponse
|
|
19582
20217
|
*/
|
|
19583
|
-
'
|
|
20218
|
+
'period'?: DataTypesPeriodInfo;
|
|
19584
20219
|
}
|
|
19585
20220
|
/**
|
|
19586
20221
|
*
|
|
19587
20222
|
* @export
|
|
19588
|
-
* @interface
|
|
20223
|
+
* @interface DataTypesUsageSummary
|
|
19589
20224
|
*/
|
|
19590
|
-
export interface
|
|
19591
|
-
/**
|
|
19592
|
-
*
|
|
19593
|
-
* @type {DataTypesUploadsourceDataResponse}
|
|
19594
|
-
* @memberof DataTypesUploadSourceDataResponseWrapper
|
|
19595
|
-
*/
|
|
19596
|
-
'data'?: DataTypesUploadsourceDataResponse;
|
|
20225
|
+
export interface DataTypesUsageSummary {
|
|
19597
20226
|
/**
|
|
19598
|
-
*
|
|
20227
|
+
* \"This month\", \"Last 30 days\", etc.
|
|
19599
20228
|
* @type {string}
|
|
19600
|
-
* @memberof
|
|
20229
|
+
* @memberof DataTypesUsageSummary
|
|
19601
20230
|
*/
|
|
19602
|
-
'
|
|
20231
|
+
'period'?: string;
|
|
19603
20232
|
/**
|
|
19604
20233
|
*
|
|
19605
20234
|
* @type {number}
|
|
19606
|
-
* @memberof
|
|
20235
|
+
* @memberof DataTypesUsageSummary
|
|
19607
20236
|
*/
|
|
19608
|
-
'
|
|
19609
|
-
}
|
|
19610
|
-
/**
|
|
19611
|
-
*
|
|
19612
|
-
* @export
|
|
19613
|
-
* @interface DataTypesUploadsourceDataResponse
|
|
19614
|
-
*/
|
|
19615
|
-
export interface DataTypesUploadsourceDataResponse {
|
|
20237
|
+
'records'?: number;
|
|
19616
20238
|
/**
|
|
19617
20239
|
*
|
|
19618
|
-
* @type {
|
|
19619
|
-
* @memberof
|
|
20240
|
+
* @type {number}
|
|
20241
|
+
* @memberof DataTypesUsageSummary
|
|
19620
20242
|
*/
|
|
19621
|
-
'
|
|
20243
|
+
'search_requests'?: number;
|
|
19622
20244
|
/**
|
|
19623
20245
|
*
|
|
19624
|
-
* @type {
|
|
19625
|
-
* @memberof
|
|
20246
|
+
* @type {number}
|
|
20247
|
+
* @memberof DataTypesUsageSummary
|
|
19626
20248
|
*/
|
|
19627
|
-
'
|
|
20249
|
+
'total_credits_used'?: number;
|
|
19628
20250
|
}
|
|
19629
20251
|
/**
|
|
19630
20252
|
*
|
|
@@ -24747,6 +25369,59 @@ export declare const BillingDashboardApiAxiosParamCreator: (configuration?: Conf
|
|
|
24747
25369
|
* @throws {RequiredError}
|
|
24748
25370
|
*/
|
|
24749
25371
|
adminBillingCreditTransactionsGet: (orgId?: number, startDate?: string, endDate?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25372
|
+
/**
|
|
25373
|
+
* Automatically generates invoices for all completed payments without invoices
|
|
25374
|
+
* @summary Auto-generate invoices
|
|
25375
|
+
* @param {*} [options] Override http request option.
|
|
25376
|
+
* @throws {RequiredError}
|
|
25377
|
+
*/
|
|
25378
|
+
adminBillingInvoicesAutoGeneratePost: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25379
|
+
/**
|
|
25380
|
+
* Generates an invoice automatically from a completed payment
|
|
25381
|
+
* @summary Generate invoice from payment
|
|
25382
|
+
* @param {number} paymentId Payment ID
|
|
25383
|
+
* @param {*} [options] Override http request option.
|
|
25384
|
+
* @throws {RequiredError}
|
|
25385
|
+
*/
|
|
25386
|
+
adminBillingInvoicesGeneratePaymentIdPost: (paymentId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25387
|
+
/**
|
|
25388
|
+
* Retrieves invoices with filtering options
|
|
25389
|
+
* @summary Get invoices
|
|
25390
|
+
* @param {number} [orgId] Organization ID
|
|
25391
|
+
* @param {string} [status] Invoice status
|
|
25392
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD format)
|
|
25393
|
+
* @param {string} [endDate] End date (YYYY-MM-DD format)
|
|
25394
|
+
* @param {number} [page] Page number (default: 1)
|
|
25395
|
+
* @param {number} [limit] Number of results per page (default: 20, max: 100)
|
|
25396
|
+
* @param {*} [options] Override http request option.
|
|
25397
|
+
* @throws {RequiredError}
|
|
25398
|
+
*/
|
|
25399
|
+
adminBillingInvoicesGet: (orgId?: number, status?: string, startDate?: string, endDate?: string, page?: number, limit?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25400
|
+
/**
|
|
25401
|
+
* Deletes an invoice (soft delete by setting status to cancelled)
|
|
25402
|
+
* @summary Delete invoice
|
|
25403
|
+
* @param {string} id Invoice ID
|
|
25404
|
+
* @param {*} [options] Override http request option.
|
|
25405
|
+
* @throws {RequiredError}
|
|
25406
|
+
*/
|
|
25407
|
+
adminBillingInvoicesIdDelete: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25408
|
+
/**
|
|
25409
|
+
* Retrieves a single invoice by ID
|
|
25410
|
+
* @summary Get invoice
|
|
25411
|
+
* @param {string} id Invoice ID
|
|
25412
|
+
* @param {*} [options] Override http request option.
|
|
25413
|
+
* @throws {RequiredError}
|
|
25414
|
+
*/
|
|
25415
|
+
adminBillingInvoicesIdGet: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25416
|
+
/**
|
|
25417
|
+
* Updates an existing invoice
|
|
25418
|
+
* @summary Update invoice
|
|
25419
|
+
* @param {string} id Invoice ID
|
|
25420
|
+
* @param {DataTypesUpdateInvoiceRequest} dataTypesUpdateInvoiceRequest Updated invoice data
|
|
25421
|
+
* @param {*} [options] Override http request option.
|
|
25422
|
+
* @throws {RequiredError}
|
|
25423
|
+
*/
|
|
25424
|
+
adminBillingInvoicesIdPut: (id: string, dataTypesUpdateInvoiceRequest: DataTypesUpdateInvoiceRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
24750
25425
|
/**
|
|
24751
25426
|
* Retrieves paginated list of orders with filtering options for the authenticated user\'s organization
|
|
24752
25427
|
* @summary Get orders
|
|
@@ -24788,6 +25463,13 @@ export declare const BillingDashboardApiAxiosParamCreator: (configuration?: Conf
|
|
|
24788
25463
|
* @throws {RequiredError}
|
|
24789
25464
|
*/
|
|
24790
25465
|
adminBillingOverviewGet: (orgId?: number, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25466
|
+
/**
|
|
25467
|
+
* Returns comprehensive billing overview with credit balance, plan info, and usage summary
|
|
25468
|
+
* @summary Get billing overview (new)
|
|
25469
|
+
* @param {*} [options] Override http request option.
|
|
25470
|
+
* @throws {RequiredError}
|
|
25471
|
+
*/
|
|
25472
|
+
adminBillingOverviewNewGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
24791
25473
|
/**
|
|
24792
25474
|
* Retrieves paginated list of payment transactions with filtering options for the authenticated user\'s organization
|
|
24793
25475
|
* @summary Get payment transactions
|
|
@@ -24807,6 +25489,15 @@ export declare const BillingDashboardApiAxiosParamCreator: (configuration?: Conf
|
|
|
24807
25489
|
* @throws {RequiredError}
|
|
24808
25490
|
*/
|
|
24809
25491
|
adminBillingSavedCardsGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25492
|
+
/**
|
|
25493
|
+
* Returns detailed usage information with charts and breakdown
|
|
25494
|
+
* @summary Get usage details
|
|
25495
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD format)
|
|
25496
|
+
* @param {string} [endDate] End date (YYYY-MM-DD format)
|
|
25497
|
+
* @param {*} [options] Override http request option.
|
|
25498
|
+
* @throws {RequiredError}
|
|
25499
|
+
*/
|
|
25500
|
+
adminBillingUsageDetailsGet: (startDate?: string, endDate?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
24810
25501
|
};
|
|
24811
25502
|
/**
|
|
24812
25503
|
* BillingDashboardApi - functional programming interface
|
|
@@ -24895,6 +25586,59 @@ export declare const BillingDashboardApiFp: (configuration?: Configuration) => {
|
|
|
24895
25586
|
* @throws {RequiredError}
|
|
24896
25587
|
*/
|
|
24897
25588
|
adminBillingCreditTransactionsGet(orgId?: number, startDate?: string, endDate?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseArrayBillingServiceCreditTransactionSummary>>;
|
|
25589
|
+
/**
|
|
25590
|
+
* Automatically generates invoices for all completed payments without invoices
|
|
25591
|
+
* @summary Auto-generate invoices
|
|
25592
|
+
* @param {*} [options] Override http request option.
|
|
25593
|
+
* @throws {RequiredError}
|
|
25594
|
+
*/
|
|
25595
|
+
adminBillingInvoicesAutoGeneratePost(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
25596
|
+
/**
|
|
25597
|
+
* Generates an invoice automatically from a completed payment
|
|
25598
|
+
* @summary Generate invoice from payment
|
|
25599
|
+
* @param {number} paymentId Payment ID
|
|
25600
|
+
* @param {*} [options] Override http request option.
|
|
25601
|
+
* @throws {RequiredError}
|
|
25602
|
+
*/
|
|
25603
|
+
adminBillingInvoicesGeneratePaymentIdPost(paymentId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesInvoice>>;
|
|
25604
|
+
/**
|
|
25605
|
+
* Retrieves invoices with filtering options
|
|
25606
|
+
* @summary Get invoices
|
|
25607
|
+
* @param {number} [orgId] Organization ID
|
|
25608
|
+
* @param {string} [status] Invoice status
|
|
25609
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD format)
|
|
25610
|
+
* @param {string} [endDate] End date (YYYY-MM-DD format)
|
|
25611
|
+
* @param {number} [page] Page number (default: 1)
|
|
25612
|
+
* @param {number} [limit] Number of results per page (default: 20, max: 100)
|
|
25613
|
+
* @param {*} [options] Override http request option.
|
|
25614
|
+
* @throws {RequiredError}
|
|
25615
|
+
*/
|
|
25616
|
+
adminBillingInvoicesGet(orgId?: number, status?: string, startDate?: string, endDate?: string, page?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesInvoiceResponse>>;
|
|
25617
|
+
/**
|
|
25618
|
+
* Deletes an invoice (soft delete by setting status to cancelled)
|
|
25619
|
+
* @summary Delete invoice
|
|
25620
|
+
* @param {string} id Invoice ID
|
|
25621
|
+
* @param {*} [options] Override http request option.
|
|
25622
|
+
* @throws {RequiredError}
|
|
25623
|
+
*/
|
|
25624
|
+
adminBillingInvoicesIdDelete(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseAny>>;
|
|
25625
|
+
/**
|
|
25626
|
+
* Retrieves a single invoice by ID
|
|
25627
|
+
* @summary Get invoice
|
|
25628
|
+
* @param {string} id Invoice ID
|
|
25629
|
+
* @param {*} [options] Override http request option.
|
|
25630
|
+
* @throws {RequiredError}
|
|
25631
|
+
*/
|
|
25632
|
+
adminBillingInvoicesIdGet(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesInvoice>>;
|
|
25633
|
+
/**
|
|
25634
|
+
* Updates an existing invoice
|
|
25635
|
+
* @summary Update invoice
|
|
25636
|
+
* @param {string} id Invoice ID
|
|
25637
|
+
* @param {DataTypesUpdateInvoiceRequest} dataTypesUpdateInvoiceRequest Updated invoice data
|
|
25638
|
+
* @param {*} [options] Override http request option.
|
|
25639
|
+
* @throws {RequiredError}
|
|
25640
|
+
*/
|
|
25641
|
+
adminBillingInvoicesIdPut(id: string, dataTypesUpdateInvoiceRequest: DataTypesUpdateInvoiceRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesInvoice>>;
|
|
24898
25642
|
/**
|
|
24899
25643
|
* Retrieves paginated list of orders with filtering options for the authenticated user\'s organization
|
|
24900
25644
|
* @summary Get orders
|
|
@@ -24936,6 +25680,13 @@ export declare const BillingDashboardApiFp: (configuration?: Configuration) => {
|
|
|
24936
25680
|
* @throws {RequiredError}
|
|
24937
25681
|
*/
|
|
24938
25682
|
adminBillingOverviewGet(orgId?: number, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseBillingServiceBillingOverview>>;
|
|
25683
|
+
/**
|
|
25684
|
+
* Returns comprehensive billing overview with credit balance, plan info, and usage summary
|
|
25685
|
+
* @summary Get billing overview (new)
|
|
25686
|
+
* @param {*} [options] Override http request option.
|
|
25687
|
+
* @throws {RequiredError}
|
|
25688
|
+
*/
|
|
25689
|
+
adminBillingOverviewNewGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesBillingOverviewResponse>>;
|
|
24939
25690
|
/**
|
|
24940
25691
|
* Retrieves paginated list of payment transactions with filtering options for the authenticated user\'s organization
|
|
24941
25692
|
* @summary Get payment transactions
|
|
@@ -24955,6 +25706,15 @@ export declare const BillingDashboardApiFp: (configuration?: Configuration) => {
|
|
|
24955
25706
|
* @throws {RequiredError}
|
|
24956
25707
|
*/
|
|
24957
25708
|
adminBillingSavedCardsGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesSavedCardsResponse>>;
|
|
25709
|
+
/**
|
|
25710
|
+
* Returns detailed usage information with charts and breakdown
|
|
25711
|
+
* @summary Get usage details
|
|
25712
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD format)
|
|
25713
|
+
* @param {string} [endDate] End date (YYYY-MM-DD format)
|
|
25714
|
+
* @param {*} [options] Override http request option.
|
|
25715
|
+
* @throws {RequiredError}
|
|
25716
|
+
*/
|
|
25717
|
+
adminBillingUsageDetailsGet(startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesUsageDetailsResponse>>;
|
|
24958
25718
|
};
|
|
24959
25719
|
/**
|
|
24960
25720
|
* BillingDashboardApi - factory interface
|
|
@@ -25043,6 +25803,59 @@ export declare const BillingDashboardApiFactory: (configuration?: Configuration,
|
|
|
25043
25803
|
* @throws {RequiredError}
|
|
25044
25804
|
*/
|
|
25045
25805
|
adminBillingCreditTransactionsGet(orgId?: number, startDate?: string, endDate?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseArrayBillingServiceCreditTransactionSummary>;
|
|
25806
|
+
/**
|
|
25807
|
+
* Automatically generates invoices for all completed payments without invoices
|
|
25808
|
+
* @summary Auto-generate invoices
|
|
25809
|
+
* @param {*} [options] Override http request option.
|
|
25810
|
+
* @throws {RequiredError}
|
|
25811
|
+
*/
|
|
25812
|
+
adminBillingInvoicesAutoGeneratePost(options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
25813
|
+
/**
|
|
25814
|
+
* Generates an invoice automatically from a completed payment
|
|
25815
|
+
* @summary Generate invoice from payment
|
|
25816
|
+
* @param {number} paymentId Payment ID
|
|
25817
|
+
* @param {*} [options] Override http request option.
|
|
25818
|
+
* @throws {RequiredError}
|
|
25819
|
+
*/
|
|
25820
|
+
adminBillingInvoicesGeneratePaymentIdPost(paymentId: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesInvoice>;
|
|
25821
|
+
/**
|
|
25822
|
+
* Retrieves invoices with filtering options
|
|
25823
|
+
* @summary Get invoices
|
|
25824
|
+
* @param {number} [orgId] Organization ID
|
|
25825
|
+
* @param {string} [status] Invoice status
|
|
25826
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD format)
|
|
25827
|
+
* @param {string} [endDate] End date (YYYY-MM-DD format)
|
|
25828
|
+
* @param {number} [page] Page number (default: 1)
|
|
25829
|
+
* @param {number} [limit] Number of results per page (default: 20, max: 100)
|
|
25830
|
+
* @param {*} [options] Override http request option.
|
|
25831
|
+
* @throws {RequiredError}
|
|
25832
|
+
*/
|
|
25833
|
+
adminBillingInvoicesGet(orgId?: number, status?: string, startDate?: string, endDate?: string, page?: number, limit?: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesInvoiceResponse>;
|
|
25834
|
+
/**
|
|
25835
|
+
* Deletes an invoice (soft delete by setting status to cancelled)
|
|
25836
|
+
* @summary Delete invoice
|
|
25837
|
+
* @param {string} id Invoice ID
|
|
25838
|
+
* @param {*} [options] Override http request option.
|
|
25839
|
+
* @throws {RequiredError}
|
|
25840
|
+
*/
|
|
25841
|
+
adminBillingInvoicesIdDelete(id: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseAny>;
|
|
25842
|
+
/**
|
|
25843
|
+
* Retrieves a single invoice by ID
|
|
25844
|
+
* @summary Get invoice
|
|
25845
|
+
* @param {string} id Invoice ID
|
|
25846
|
+
* @param {*} [options] Override http request option.
|
|
25847
|
+
* @throws {RequiredError}
|
|
25848
|
+
*/
|
|
25849
|
+
adminBillingInvoicesIdGet(id: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesInvoice>;
|
|
25850
|
+
/**
|
|
25851
|
+
* Updates an existing invoice
|
|
25852
|
+
* @summary Update invoice
|
|
25853
|
+
* @param {string} id Invoice ID
|
|
25854
|
+
* @param {DataTypesUpdateInvoiceRequest} dataTypesUpdateInvoiceRequest Updated invoice data
|
|
25855
|
+
* @param {*} [options] Override http request option.
|
|
25856
|
+
* @throws {RequiredError}
|
|
25857
|
+
*/
|
|
25858
|
+
adminBillingInvoicesIdPut(id: string, dataTypesUpdateInvoiceRequest: DataTypesUpdateInvoiceRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesInvoice>;
|
|
25046
25859
|
/**
|
|
25047
25860
|
* Retrieves paginated list of orders with filtering options for the authenticated user\'s organization
|
|
25048
25861
|
* @summary Get orders
|
|
@@ -25084,6 +25897,13 @@ export declare const BillingDashboardApiFactory: (configuration?: Configuration,
|
|
|
25084
25897
|
* @throws {RequiredError}
|
|
25085
25898
|
*/
|
|
25086
25899
|
adminBillingOverviewGet(orgId?: number, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseBillingServiceBillingOverview>;
|
|
25900
|
+
/**
|
|
25901
|
+
* Returns comprehensive billing overview with credit balance, plan info, and usage summary
|
|
25902
|
+
* @summary Get billing overview (new)
|
|
25903
|
+
* @param {*} [options] Override http request option.
|
|
25904
|
+
* @throws {RequiredError}
|
|
25905
|
+
*/
|
|
25906
|
+
adminBillingOverviewNewGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesBillingOverviewResponse>;
|
|
25087
25907
|
/**
|
|
25088
25908
|
* Retrieves paginated list of payment transactions with filtering options for the authenticated user\'s organization
|
|
25089
25909
|
* @summary Get payment transactions
|
|
@@ -25103,6 +25923,15 @@ export declare const BillingDashboardApiFactory: (configuration?: Configuration,
|
|
|
25103
25923
|
* @throws {RequiredError}
|
|
25104
25924
|
*/
|
|
25105
25925
|
adminBillingSavedCardsGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesSavedCardsResponse>;
|
|
25926
|
+
/**
|
|
25927
|
+
* Returns detailed usage information with charts and breakdown
|
|
25928
|
+
* @summary Get usage details
|
|
25929
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD format)
|
|
25930
|
+
* @param {string} [endDate] End date (YYYY-MM-DD format)
|
|
25931
|
+
* @param {*} [options] Override http request option.
|
|
25932
|
+
* @throws {RequiredError}
|
|
25933
|
+
*/
|
|
25934
|
+
adminBillingUsageDetailsGet(startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesUsageDetailsResponse>;
|
|
25106
25935
|
};
|
|
25107
25936
|
/**
|
|
25108
25937
|
* BillingDashboardApi - object-oriented interface
|
|
@@ -25201,6 +26030,65 @@ export declare class BillingDashboardApi extends BaseAPI {
|
|
|
25201
26030
|
* @memberof BillingDashboardApi
|
|
25202
26031
|
*/
|
|
25203
26032
|
adminBillingCreditTransactionsGet(orgId?: number, startDate?: string, endDate?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseArrayBillingServiceCreditTransactionSummary, any, {}>>;
|
|
26033
|
+
/**
|
|
26034
|
+
* Automatically generates invoices for all completed payments without invoices
|
|
26035
|
+
* @summary Auto-generate invoices
|
|
26036
|
+
* @param {*} [options] Override http request option.
|
|
26037
|
+
* @throws {RequiredError}
|
|
26038
|
+
* @memberof BillingDashboardApi
|
|
26039
|
+
*/
|
|
26040
|
+
adminBillingInvoicesAutoGeneratePost(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
26041
|
+
/**
|
|
26042
|
+
* Generates an invoice automatically from a completed payment
|
|
26043
|
+
* @summary Generate invoice from payment
|
|
26044
|
+
* @param {number} paymentId Payment ID
|
|
26045
|
+
* @param {*} [options] Override http request option.
|
|
26046
|
+
* @throws {RequiredError}
|
|
26047
|
+
* @memberof BillingDashboardApi
|
|
26048
|
+
*/
|
|
26049
|
+
adminBillingInvoicesGeneratePaymentIdPost(paymentId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesInvoice, any, {}>>;
|
|
26050
|
+
/**
|
|
26051
|
+
* Retrieves invoices with filtering options
|
|
26052
|
+
* @summary Get invoices
|
|
26053
|
+
* @param {number} [orgId] Organization ID
|
|
26054
|
+
* @param {string} [status] Invoice status
|
|
26055
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD format)
|
|
26056
|
+
* @param {string} [endDate] End date (YYYY-MM-DD format)
|
|
26057
|
+
* @param {number} [page] Page number (default: 1)
|
|
26058
|
+
* @param {number} [limit] Number of results per page (default: 20, max: 100)
|
|
26059
|
+
* @param {*} [options] Override http request option.
|
|
26060
|
+
* @throws {RequiredError}
|
|
26061
|
+
* @memberof BillingDashboardApi
|
|
26062
|
+
*/
|
|
26063
|
+
adminBillingInvoicesGet(orgId?: number, status?: string, startDate?: string, endDate?: string, page?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesInvoiceResponse, any, {}>>;
|
|
26064
|
+
/**
|
|
26065
|
+
* Deletes an invoice (soft delete by setting status to cancelled)
|
|
26066
|
+
* @summary Delete invoice
|
|
26067
|
+
* @param {string} id Invoice ID
|
|
26068
|
+
* @param {*} [options] Override http request option.
|
|
26069
|
+
* @throws {RequiredError}
|
|
26070
|
+
* @memberof BillingDashboardApi
|
|
26071
|
+
*/
|
|
26072
|
+
adminBillingInvoicesIdDelete(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseAny, any, {}>>;
|
|
26073
|
+
/**
|
|
26074
|
+
* Retrieves a single invoice by ID
|
|
26075
|
+
* @summary Get invoice
|
|
26076
|
+
* @param {string} id Invoice ID
|
|
26077
|
+
* @param {*} [options] Override http request option.
|
|
26078
|
+
* @throws {RequiredError}
|
|
26079
|
+
* @memberof BillingDashboardApi
|
|
26080
|
+
*/
|
|
26081
|
+
adminBillingInvoicesIdGet(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesInvoice, any, {}>>;
|
|
26082
|
+
/**
|
|
26083
|
+
* Updates an existing invoice
|
|
26084
|
+
* @summary Update invoice
|
|
26085
|
+
* @param {string} id Invoice ID
|
|
26086
|
+
* @param {DataTypesUpdateInvoiceRequest} dataTypesUpdateInvoiceRequest Updated invoice data
|
|
26087
|
+
* @param {*} [options] Override http request option.
|
|
26088
|
+
* @throws {RequiredError}
|
|
26089
|
+
* @memberof BillingDashboardApi
|
|
26090
|
+
*/
|
|
26091
|
+
adminBillingInvoicesIdPut(id: string, dataTypesUpdateInvoiceRequest: DataTypesUpdateInvoiceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesInvoice, any, {}>>;
|
|
25204
26092
|
/**
|
|
25205
26093
|
* Retrieves paginated list of orders with filtering options for the authenticated user\'s organization
|
|
25206
26094
|
* @summary Get orders
|
|
@@ -25246,6 +26134,14 @@ export declare class BillingDashboardApi extends BaseAPI {
|
|
|
25246
26134
|
* @memberof BillingDashboardApi
|
|
25247
26135
|
*/
|
|
25248
26136
|
adminBillingOverviewGet(orgId?: number, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseBillingServiceBillingOverview, any, {}>>;
|
|
26137
|
+
/**
|
|
26138
|
+
* Returns comprehensive billing overview with credit balance, plan info, and usage summary
|
|
26139
|
+
* @summary Get billing overview (new)
|
|
26140
|
+
* @param {*} [options] Override http request option.
|
|
26141
|
+
* @throws {RequiredError}
|
|
26142
|
+
* @memberof BillingDashboardApi
|
|
26143
|
+
*/
|
|
26144
|
+
adminBillingOverviewNewGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesBillingOverviewResponse, any, {}>>;
|
|
25249
26145
|
/**
|
|
25250
26146
|
* Retrieves paginated list of payment transactions with filtering options for the authenticated user\'s organization
|
|
25251
26147
|
* @summary Get payment transactions
|
|
@@ -25267,6 +26163,16 @@ export declare class BillingDashboardApi extends BaseAPI {
|
|
|
25267
26163
|
* @memberof BillingDashboardApi
|
|
25268
26164
|
*/
|
|
25269
26165
|
adminBillingSavedCardsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesSavedCardsResponse, any, {}>>;
|
|
26166
|
+
/**
|
|
26167
|
+
* Returns detailed usage information with charts and breakdown
|
|
26168
|
+
* @summary Get usage details
|
|
26169
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD format)
|
|
26170
|
+
* @param {string} [endDate] End date (YYYY-MM-DD format)
|
|
26171
|
+
* @param {*} [options] Override http request option.
|
|
26172
|
+
* @throws {RequiredError}
|
|
26173
|
+
* @memberof BillingDashboardApi
|
|
26174
|
+
*/
|
|
26175
|
+
adminBillingUsageDetailsGet(startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesUsageDetailsResponse, any, {}>>;
|
|
25270
26176
|
}
|
|
25271
26177
|
/**
|
|
25272
26178
|
* CommonApi - axios parameter creator
|
|
@@ -33841,7 +34747,7 @@ export declare const StoreCreationApiAxiosParamCreator: (configuration?: Configu
|
|
|
33841
34747
|
*/
|
|
33842
34748
|
adminV1StoreCreationProgressDelete: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
33843
34749
|
/**
|
|
33844
|
-
* Retrieves the current step and state of store creation for the user
|
|
34750
|
+
* Retrieves the current step and state of store creation for the user. This endpoint gets the most recent store creation progress. For specific store creation flows, use the path-based endpoint with xstoreid.
|
|
33845
34751
|
* @summary Get current store creation progress
|
|
33846
34752
|
* @param {*} [options] Override http request option.
|
|
33847
34753
|
* @throws {RequiredError}
|
|
@@ -33856,22 +34762,47 @@ export declare const StoreCreationApiAxiosParamCreator: (configuration?: Configu
|
|
|
33856
34762
|
*/
|
|
33857
34763
|
adminV1StoreCreationSchemaUploadPost: (file: File, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
33858
34764
|
/**
|
|
33859
|
-
* Updates a specific step in the store creation flow
|
|
34765
|
+
* Updates a specific step in the store creation flow. This endpoint updates the most recent store creation progress. For specific store creation flows, use the path-based endpoint with xstoreid.
|
|
33860
34766
|
* @summary Update store creation step
|
|
33861
34767
|
* @param {DataTypesStoreCreationRequest} dataTypesStoreCreationRequest Store creation step data
|
|
33862
34768
|
* @param {*} [options] Override http request option.
|
|
33863
34769
|
* @throws {RequiredError}
|
|
33864
34770
|
*/
|
|
33865
34771
|
adminV1StoreCreationStepPost: (dataTypesStoreCreationRequest: DataTypesStoreCreationRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
34772
|
+
/**
|
|
34773
|
+
* Deletes (soft delete) the store creation progress for a specific store using XStoreID from path parameter
|
|
34774
|
+
* @summary Delete store creation progress by XStoreID
|
|
34775
|
+
* @param {string} xstoreid XStoreID for specific store creation flow
|
|
34776
|
+
* @param {*} [options] Override http request option.
|
|
34777
|
+
* @throws {RequiredError}
|
|
34778
|
+
*/
|
|
34779
|
+
adminV1StoreCreationXstoreidProgressDelete: (xstoreid: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
34780
|
+
/**
|
|
34781
|
+
* Retrieves the current step and state of store creation for a specific store using XStoreID from path parameter
|
|
34782
|
+
* @summary Get store creation progress by XStoreID
|
|
34783
|
+
* @param {string} xstoreid XStoreID for specific store creation flow
|
|
34784
|
+
* @param {*} [options] Override http request option.
|
|
34785
|
+
* @throws {RequiredError}
|
|
34786
|
+
*/
|
|
34787
|
+
adminV1StoreCreationXstoreidProgressGet: (xstoreid: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
34788
|
+
/**
|
|
34789
|
+
* Updates a specific step in the store creation flow for a specific store using XStoreID from path parameter
|
|
34790
|
+
* @summary Update store creation step by XStoreID
|
|
34791
|
+
* @param {string} xstoreid XStoreID for specific store creation flow
|
|
34792
|
+
* @param {DataTypesStoreCreationRequest} dataTypesStoreCreationRequest Store creation step data
|
|
34793
|
+
* @param {*} [options] Override http request option.
|
|
34794
|
+
* @throws {RequiredError}
|
|
34795
|
+
*/
|
|
34796
|
+
adminV1StoreCreationXstoreidStepPost: (xstoreid: string, dataTypesStoreCreationRequest: DataTypesStoreCreationRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
33866
34797
|
/**
|
|
33867
34798
|
* Uploads a custom JSON or CSV file for store data import
|
|
33868
34799
|
* @summary Upload custom data file for store
|
|
33869
|
-
* @param {
|
|
34800
|
+
* @param {string} xstoreid Store XStoreID
|
|
33870
34801
|
* @param {File} file Data file (JSON or CSV)
|
|
33871
34802
|
* @param {*} [options] Override http request option.
|
|
33872
34803
|
* @throws {RequiredError}
|
|
33873
34804
|
*/
|
|
33874
|
-
|
|
34805
|
+
adminV1StoreCreationXstoreidUploadDataPost: (xstoreid: string, file: File, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
33875
34806
|
};
|
|
33876
34807
|
/**
|
|
33877
34808
|
* StoreCreationApi - functional programming interface
|
|
@@ -33886,7 +34817,7 @@ export declare const StoreCreationApiFp: (configuration?: Configuration) => {
|
|
|
33886
34817
|
*/
|
|
33887
34818
|
adminV1StoreCreationProgressDelete(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
33888
34819
|
/**
|
|
33889
|
-
* Retrieves the current step and state of store creation for the user
|
|
34820
|
+
* Retrieves the current step and state of store creation for the user. This endpoint gets the most recent store creation progress. For specific store creation flows, use the path-based endpoint with xstoreid.
|
|
33890
34821
|
* @summary Get current store creation progress
|
|
33891
34822
|
* @param {*} [options] Override http request option.
|
|
33892
34823
|
* @throws {RequiredError}
|
|
@@ -33901,22 +34832,47 @@ export declare const StoreCreationApiFp: (configuration?: Configuration) => {
|
|
|
33901
34832
|
*/
|
|
33902
34833
|
adminV1StoreCreationSchemaUploadPost(file: File, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
33903
34834
|
/**
|
|
33904
|
-
* Updates a specific step in the store creation flow
|
|
34835
|
+
* Updates a specific step in the store creation flow. This endpoint updates the most recent store creation progress. For specific store creation flows, use the path-based endpoint with xstoreid.
|
|
33905
34836
|
* @summary Update store creation step
|
|
33906
34837
|
* @param {DataTypesStoreCreationRequest} dataTypesStoreCreationRequest Store creation step data
|
|
33907
34838
|
* @param {*} [options] Override http request option.
|
|
33908
34839
|
* @throws {RequiredError}
|
|
33909
34840
|
*/
|
|
33910
34841
|
adminV1StoreCreationStepPost(dataTypesStoreCreationRequest: DataTypesStoreCreationRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesStoreCreationResponseWrapper>>;
|
|
34842
|
+
/**
|
|
34843
|
+
* Deletes (soft delete) the store creation progress for a specific store using XStoreID from path parameter
|
|
34844
|
+
* @summary Delete store creation progress by XStoreID
|
|
34845
|
+
* @param {string} xstoreid XStoreID for specific store creation flow
|
|
34846
|
+
* @param {*} [options] Override http request option.
|
|
34847
|
+
* @throws {RequiredError}
|
|
34848
|
+
*/
|
|
34849
|
+
adminV1StoreCreationXstoreidProgressDelete(xstoreid: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
34850
|
+
/**
|
|
34851
|
+
* Retrieves the current step and state of store creation for a specific store using XStoreID from path parameter
|
|
34852
|
+
* @summary Get store creation progress by XStoreID
|
|
34853
|
+
* @param {string} xstoreid XStoreID for specific store creation flow
|
|
34854
|
+
* @param {*} [options] Override http request option.
|
|
34855
|
+
* @throws {RequiredError}
|
|
34856
|
+
*/
|
|
34857
|
+
adminV1StoreCreationXstoreidProgressGet(xstoreid: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesStoreCreationResponseWrapper>>;
|
|
34858
|
+
/**
|
|
34859
|
+
* Updates a specific step in the store creation flow for a specific store using XStoreID from path parameter
|
|
34860
|
+
* @summary Update store creation step by XStoreID
|
|
34861
|
+
* @param {string} xstoreid XStoreID for specific store creation flow
|
|
34862
|
+
* @param {DataTypesStoreCreationRequest} dataTypesStoreCreationRequest Store creation step data
|
|
34863
|
+
* @param {*} [options] Override http request option.
|
|
34864
|
+
* @throws {RequiredError}
|
|
34865
|
+
*/
|
|
34866
|
+
adminV1StoreCreationXstoreidStepPost(xstoreid: string, dataTypesStoreCreationRequest: DataTypesStoreCreationRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesStoreCreationResponseWrapper>>;
|
|
33911
34867
|
/**
|
|
33912
34868
|
* Uploads a custom JSON or CSV file for store data import
|
|
33913
34869
|
* @summary Upload custom data file for store
|
|
33914
|
-
* @param {
|
|
34870
|
+
* @param {string} xstoreid Store XStoreID
|
|
33915
34871
|
* @param {File} file Data file (JSON or CSV)
|
|
33916
34872
|
* @param {*} [options] Override http request option.
|
|
33917
34873
|
* @throws {RequiredError}
|
|
33918
34874
|
*/
|
|
33919
|
-
|
|
34875
|
+
adminV1StoreCreationXstoreidUploadDataPost(xstoreid: string, file: File, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
33920
34876
|
};
|
|
33921
34877
|
/**
|
|
33922
34878
|
* StoreCreationApi - factory interface
|
|
@@ -33931,7 +34887,7 @@ export declare const StoreCreationApiFactory: (configuration?: Configuration, ba
|
|
|
33931
34887
|
*/
|
|
33932
34888
|
adminV1StoreCreationProgressDelete(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
33933
34889
|
/**
|
|
33934
|
-
* Retrieves the current step and state of store creation for the user
|
|
34890
|
+
* Retrieves the current step and state of store creation for the user. This endpoint gets the most recent store creation progress. For specific store creation flows, use the path-based endpoint with xstoreid.
|
|
33935
34891
|
* @summary Get current store creation progress
|
|
33936
34892
|
* @param {*} [options] Override http request option.
|
|
33937
34893
|
* @throws {RequiredError}
|
|
@@ -33946,22 +34902,47 @@ export declare const StoreCreationApiFactory: (configuration?: Configuration, ba
|
|
|
33946
34902
|
*/
|
|
33947
34903
|
adminV1StoreCreationSchemaUploadPost(file: File, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
33948
34904
|
/**
|
|
33949
|
-
* Updates a specific step in the store creation flow
|
|
34905
|
+
* Updates a specific step in the store creation flow. This endpoint updates the most recent store creation progress. For specific store creation flows, use the path-based endpoint with xstoreid.
|
|
33950
34906
|
* @summary Update store creation step
|
|
33951
34907
|
* @param {DataTypesStoreCreationRequest} dataTypesStoreCreationRequest Store creation step data
|
|
33952
34908
|
* @param {*} [options] Override http request option.
|
|
33953
34909
|
* @throws {RequiredError}
|
|
33954
34910
|
*/
|
|
33955
34911
|
adminV1StoreCreationStepPost(dataTypesStoreCreationRequest: DataTypesStoreCreationRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesStoreCreationResponseWrapper>;
|
|
34912
|
+
/**
|
|
34913
|
+
* Deletes (soft delete) the store creation progress for a specific store using XStoreID from path parameter
|
|
34914
|
+
* @summary Delete store creation progress by XStoreID
|
|
34915
|
+
* @param {string} xstoreid XStoreID for specific store creation flow
|
|
34916
|
+
* @param {*} [options] Override http request option.
|
|
34917
|
+
* @throws {RequiredError}
|
|
34918
|
+
*/
|
|
34919
|
+
adminV1StoreCreationXstoreidProgressDelete(xstoreid: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
34920
|
+
/**
|
|
34921
|
+
* Retrieves the current step and state of store creation for a specific store using XStoreID from path parameter
|
|
34922
|
+
* @summary Get store creation progress by XStoreID
|
|
34923
|
+
* @param {string} xstoreid XStoreID for specific store creation flow
|
|
34924
|
+
* @param {*} [options] Override http request option.
|
|
34925
|
+
* @throws {RequiredError}
|
|
34926
|
+
*/
|
|
34927
|
+
adminV1StoreCreationXstoreidProgressGet(xstoreid: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesStoreCreationResponseWrapper>;
|
|
34928
|
+
/**
|
|
34929
|
+
* Updates a specific step in the store creation flow for a specific store using XStoreID from path parameter
|
|
34930
|
+
* @summary Update store creation step by XStoreID
|
|
34931
|
+
* @param {string} xstoreid XStoreID for specific store creation flow
|
|
34932
|
+
* @param {DataTypesStoreCreationRequest} dataTypesStoreCreationRequest Store creation step data
|
|
34933
|
+
* @param {*} [options] Override http request option.
|
|
34934
|
+
* @throws {RequiredError}
|
|
34935
|
+
*/
|
|
34936
|
+
adminV1StoreCreationXstoreidStepPost(xstoreid: string, dataTypesStoreCreationRequest: DataTypesStoreCreationRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesStoreCreationResponseWrapper>;
|
|
33956
34937
|
/**
|
|
33957
34938
|
* Uploads a custom JSON or CSV file for store data import
|
|
33958
34939
|
* @summary Upload custom data file for store
|
|
33959
|
-
* @param {
|
|
34940
|
+
* @param {string} xstoreid Store XStoreID
|
|
33960
34941
|
* @param {File} file Data file (JSON or CSV)
|
|
33961
34942
|
* @param {*} [options] Override http request option.
|
|
33962
34943
|
* @throws {RequiredError}
|
|
33963
34944
|
*/
|
|
33964
|
-
|
|
34945
|
+
adminV1StoreCreationXstoreidUploadDataPost(xstoreid: string, file: File, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
33965
34946
|
};
|
|
33966
34947
|
/**
|
|
33967
34948
|
* StoreCreationApi - object-oriented interface
|
|
@@ -33979,7 +34960,7 @@ export declare class StoreCreationApi extends BaseAPI {
|
|
|
33979
34960
|
*/
|
|
33980
34961
|
adminV1StoreCreationProgressDelete(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
33981
34962
|
/**
|
|
33982
|
-
* Retrieves the current step and state of store creation for the user
|
|
34963
|
+
* Retrieves the current step and state of store creation for the user. This endpoint gets the most recent store creation progress. For specific store creation flows, use the path-based endpoint with xstoreid.
|
|
33983
34964
|
* @summary Get current store creation progress
|
|
33984
34965
|
* @param {*} [options] Override http request option.
|
|
33985
34966
|
* @throws {RequiredError}
|
|
@@ -33996,7 +34977,7 @@ export declare class StoreCreationApi extends BaseAPI {
|
|
|
33996
34977
|
*/
|
|
33997
34978
|
adminV1StoreCreationSchemaUploadPost(file: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
33998
34979
|
/**
|
|
33999
|
-
* Updates a specific step in the store creation flow
|
|
34980
|
+
* Updates a specific step in the store creation flow. This endpoint updates the most recent store creation progress. For specific store creation flows, use the path-based endpoint with xstoreid.
|
|
34000
34981
|
* @summary Update store creation step
|
|
34001
34982
|
* @param {DataTypesStoreCreationRequest} dataTypesStoreCreationRequest Store creation step data
|
|
34002
34983
|
* @param {*} [options] Override http request option.
|
|
@@ -34004,16 +34985,44 @@ export declare class StoreCreationApi extends BaseAPI {
|
|
|
34004
34985
|
* @memberof StoreCreationApi
|
|
34005
34986
|
*/
|
|
34006
34987
|
adminV1StoreCreationStepPost(dataTypesStoreCreationRequest: DataTypesStoreCreationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesStoreCreationResponseWrapper, any, {}>>;
|
|
34988
|
+
/**
|
|
34989
|
+
* Deletes (soft delete) the store creation progress for a specific store using XStoreID from path parameter
|
|
34990
|
+
* @summary Delete store creation progress by XStoreID
|
|
34991
|
+
* @param {string} xstoreid XStoreID for specific store creation flow
|
|
34992
|
+
* @param {*} [options] Override http request option.
|
|
34993
|
+
* @throws {RequiredError}
|
|
34994
|
+
* @memberof StoreCreationApi
|
|
34995
|
+
*/
|
|
34996
|
+
adminV1StoreCreationXstoreidProgressDelete(xstoreid: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
34997
|
+
/**
|
|
34998
|
+
* Retrieves the current step and state of store creation for a specific store using XStoreID from path parameter
|
|
34999
|
+
* @summary Get store creation progress by XStoreID
|
|
35000
|
+
* @param {string} xstoreid XStoreID for specific store creation flow
|
|
35001
|
+
* @param {*} [options] Override http request option.
|
|
35002
|
+
* @throws {RequiredError}
|
|
35003
|
+
* @memberof StoreCreationApi
|
|
35004
|
+
*/
|
|
35005
|
+
adminV1StoreCreationXstoreidProgressGet(xstoreid: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesStoreCreationResponseWrapper, any, {}>>;
|
|
35006
|
+
/**
|
|
35007
|
+
* Updates a specific step in the store creation flow for a specific store using XStoreID from path parameter
|
|
35008
|
+
* @summary Update store creation step by XStoreID
|
|
35009
|
+
* @param {string} xstoreid XStoreID for specific store creation flow
|
|
35010
|
+
* @param {DataTypesStoreCreationRequest} dataTypesStoreCreationRequest Store creation step data
|
|
35011
|
+
* @param {*} [options] Override http request option.
|
|
35012
|
+
* @throws {RequiredError}
|
|
35013
|
+
* @memberof StoreCreationApi
|
|
35014
|
+
*/
|
|
35015
|
+
adminV1StoreCreationXstoreidStepPost(xstoreid: string, dataTypesStoreCreationRequest: DataTypesStoreCreationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesStoreCreationResponseWrapper, any, {}>>;
|
|
34007
35016
|
/**
|
|
34008
35017
|
* Uploads a custom JSON or CSV file for store data import
|
|
34009
35018
|
* @summary Upload custom data file for store
|
|
34010
|
-
* @param {
|
|
35019
|
+
* @param {string} xstoreid Store XStoreID
|
|
34011
35020
|
* @param {File} file Data file (JSON or CSV)
|
|
34012
35021
|
* @param {*} [options] Override http request option.
|
|
34013
35022
|
* @throws {RequiredError}
|
|
34014
35023
|
* @memberof StoreCreationApi
|
|
34015
35024
|
*/
|
|
34016
|
-
|
|
35025
|
+
adminV1StoreCreationXstoreidUploadDataPost(xstoreid: string, file: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
34017
35026
|
}
|
|
34018
35027
|
/**
|
|
34019
35028
|
* StoreDocumentsApi - axios parameter creator
|