@seekora-ai/admin-api 1.0.92 → 1.0.94
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 +1575 -105
- package/dist/api.d.ts +1085 -70
- package/dist/api.js +818 -26
- package/dist/esm/api.d.ts +1085 -70
- package/dist/esm/api.js +818 -26
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.0.94.tgz +0 -0
- package/seekora-ai-admin-api-1.0.92.tgz +0 -0
package/dist/esm/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
|
|
@@ -13712,6 +14153,12 @@ export interface DataTypesLoginRequest {
|
|
|
13712
14153
|
* @memberof DataTypesLoginRequest
|
|
13713
14154
|
*/
|
|
13714
14155
|
'password': string;
|
|
14156
|
+
/**
|
|
14157
|
+
*
|
|
14158
|
+
* @type {string}
|
|
14159
|
+
* @memberof DataTypesLoginRequest
|
|
14160
|
+
*/
|
|
14161
|
+
'token'?: string;
|
|
13715
14162
|
/**
|
|
13716
14163
|
*
|
|
13717
14164
|
* @type {string}
|
|
@@ -14196,6 +14643,25 @@ export interface DataTypesMenusListResponse {
|
|
|
14196
14643
|
*/
|
|
14197
14644
|
'status'?: number;
|
|
14198
14645
|
}
|
|
14646
|
+
/**
|
|
14647
|
+
*
|
|
14648
|
+
* @export
|
|
14649
|
+
* @interface DataTypesMetricData
|
|
14650
|
+
*/
|
|
14651
|
+
export interface DataTypesMetricData {
|
|
14652
|
+
/**
|
|
14653
|
+
*
|
|
14654
|
+
* @type {Array<number>}
|
|
14655
|
+
* @memberof DataTypesMetricData
|
|
14656
|
+
*/
|
|
14657
|
+
'data_points'?: Array<number>;
|
|
14658
|
+
/**
|
|
14659
|
+
*
|
|
14660
|
+
* @type {string}
|
|
14661
|
+
* @memberof DataTypesMetricData
|
|
14662
|
+
*/
|
|
14663
|
+
'metric_name'?: string;
|
|
14664
|
+
}
|
|
14199
14665
|
/**
|
|
14200
14666
|
*
|
|
14201
14667
|
* @export
|
|
@@ -15585,6 +16051,31 @@ export interface DataTypesPaymentsListResponse {
|
|
|
15585
16051
|
*/
|
|
15586
16052
|
'status'?: number;
|
|
15587
16053
|
}
|
|
16054
|
+
/**
|
|
16055
|
+
*
|
|
16056
|
+
* @export
|
|
16057
|
+
* @interface DataTypesPeriodInfo
|
|
16058
|
+
*/
|
|
16059
|
+
export interface DataTypesPeriodInfo {
|
|
16060
|
+
/**
|
|
16061
|
+
*
|
|
16062
|
+
* @type {string}
|
|
16063
|
+
* @memberof DataTypesPeriodInfo
|
|
16064
|
+
*/
|
|
16065
|
+
'end_date'?: string;
|
|
16066
|
+
/**
|
|
16067
|
+
* \"April 1, 2025 to October 31, 2025\"
|
|
16068
|
+
* @type {string}
|
|
16069
|
+
* @memberof DataTypesPeriodInfo
|
|
16070
|
+
*/
|
|
16071
|
+
'label'?: string;
|
|
16072
|
+
/**
|
|
16073
|
+
*
|
|
16074
|
+
* @type {string}
|
|
16075
|
+
* @memberof DataTypesPeriodInfo
|
|
16076
|
+
*/
|
|
16077
|
+
'start_date'?: string;
|
|
16078
|
+
}
|
|
15588
16079
|
/**
|
|
15589
16080
|
*
|
|
15590
16081
|
* @export
|
|
@@ -16124,7 +16615,7 @@ export interface DataTypesProjectedRunoutInfo {
|
|
|
16124
16615
|
*/
|
|
16125
16616
|
'projected_runout_date'?: string;
|
|
16126
16617
|
/**
|
|
16127
|
-
* \"
|
|
16618
|
+
* \"normal\", \"warning\", \"critical\"
|
|
16128
16619
|
* @type {string}
|
|
16129
16620
|
* @memberof DataTypesProjectedRunoutInfo
|
|
16130
16621
|
*/
|
|
@@ -17610,19 +18101,19 @@ export interface DataTypesSampleDatasetsResponseWrapper {
|
|
|
17610
18101
|
*/
|
|
17611
18102
|
export interface DataTypesSavedCard {
|
|
17612
18103
|
/**
|
|
17613
|
-
* \"Visa\", \"
|
|
18104
|
+
* \"Visa\", \"MasterCard\", etc.
|
|
17614
18105
|
* @type {string}
|
|
17615
18106
|
* @memberof DataTypesSavedCard
|
|
17616
18107
|
*/
|
|
17617
18108
|
'card_network'?: string;
|
|
17618
18109
|
/**
|
|
17619
|
-
* Masked
|
|
18110
|
+
* Masked: \"**** **** **** 1234\"
|
|
17620
18111
|
* @type {string}
|
|
17621
18112
|
* @memberof DataTypesSavedCard
|
|
17622
18113
|
*/
|
|
17623
18114
|
'card_number'?: string;
|
|
17624
18115
|
/**
|
|
17625
|
-
* \"
|
|
18116
|
+
* \"Credit\", \"Debit\"
|
|
17626
18117
|
* @type {string}
|
|
17627
18118
|
* @memberof DataTypesSavedCard
|
|
17628
18119
|
*/
|
|
@@ -17635,16 +18126,16 @@ export interface DataTypesSavedCard {
|
|
|
17635
18126
|
'created_at'?: string;
|
|
17636
18127
|
/**
|
|
17637
18128
|
*
|
|
17638
|
-
* @type {
|
|
18129
|
+
* @type {number}
|
|
17639
18130
|
* @memberof DataTypesSavedCard
|
|
17640
18131
|
*/
|
|
17641
|
-
'expiry_month'?:
|
|
18132
|
+
'expiry_month'?: number;
|
|
17642
18133
|
/**
|
|
17643
18134
|
*
|
|
17644
|
-
* @type {
|
|
18135
|
+
* @type {number}
|
|
17645
18136
|
* @memberof DataTypesSavedCard
|
|
17646
18137
|
*/
|
|
17647
|
-
'expiry_year'?:
|
|
18138
|
+
'expiry_year'?: number;
|
|
17648
18139
|
/**
|
|
17649
18140
|
*
|
|
17650
18141
|
* @type {boolean}
|
|
@@ -17658,7 +18149,7 @@ export interface DataTypesSavedCard {
|
|
|
17658
18149
|
*/
|
|
17659
18150
|
'is_expired'?: boolean;
|
|
17660
18151
|
/**
|
|
17661
|
-
*
|
|
18152
|
+
* Bank name
|
|
17662
18153
|
* @type {string}
|
|
17663
18154
|
* @memberof DataTypesSavedCard
|
|
17664
18155
|
*/
|
|
@@ -18974,6 +19465,25 @@ export interface DataTypesSynonymEntry {
|
|
|
18974
19465
|
*/
|
|
18975
19466
|
'synonyms'?: Array<string>;
|
|
18976
19467
|
}
|
|
19468
|
+
/**
|
|
19469
|
+
*
|
|
19470
|
+
* @export
|
|
19471
|
+
* @interface DataTypesTableCell
|
|
19472
|
+
*/
|
|
19473
|
+
export interface DataTypesTableCell {
|
|
19474
|
+
/**
|
|
19475
|
+
* \"header\", \"data\", \"total\"
|
|
19476
|
+
* @type {string}
|
|
19477
|
+
* @memberof DataTypesTableCell
|
|
19478
|
+
*/
|
|
19479
|
+
'type'?: string;
|
|
19480
|
+
/**
|
|
19481
|
+
*
|
|
19482
|
+
* @type {string}
|
|
19483
|
+
* @memberof DataTypesTableCell
|
|
19484
|
+
*/
|
|
19485
|
+
'value'?: string;
|
|
19486
|
+
}
|
|
18977
19487
|
/**
|
|
18978
19488
|
*
|
|
18979
19489
|
* @export
|
|
@@ -19299,6 +19809,37 @@ export interface DataTypesUpdateIndexSchemaRequestFieldsInner {
|
|
|
19299
19809
|
*/
|
|
19300
19810
|
'sort'?: boolean;
|
|
19301
19811
|
}
|
|
19812
|
+
/**
|
|
19813
|
+
*
|
|
19814
|
+
* @export
|
|
19815
|
+
* @interface DataTypesUpdateInvoiceRequest
|
|
19816
|
+
*/
|
|
19817
|
+
export interface DataTypesUpdateInvoiceRequest {
|
|
19818
|
+
/**
|
|
19819
|
+
*
|
|
19820
|
+
* @type {string}
|
|
19821
|
+
* @memberof DataTypesUpdateInvoiceRequest
|
|
19822
|
+
*/
|
|
19823
|
+
'notes'?: string;
|
|
19824
|
+
/**
|
|
19825
|
+
*
|
|
19826
|
+
* @type {string}
|
|
19827
|
+
* @memberof DataTypesUpdateInvoiceRequest
|
|
19828
|
+
*/
|
|
19829
|
+
'paid_date'?: string;
|
|
19830
|
+
/**
|
|
19831
|
+
*
|
|
19832
|
+
* @type {string}
|
|
19833
|
+
* @memberof DataTypesUpdateInvoiceRequest
|
|
19834
|
+
*/
|
|
19835
|
+
'payment_method'?: string;
|
|
19836
|
+
/**
|
|
19837
|
+
*
|
|
19838
|
+
* @type {string}
|
|
19839
|
+
* @memberof DataTypesUpdateInvoiceRequest
|
|
19840
|
+
*/
|
|
19841
|
+
'status'?: string;
|
|
19842
|
+
}
|
|
19302
19843
|
/**
|
|
19303
19844
|
*
|
|
19304
19845
|
* @export
|
|
@@ -19576,55 +20117,142 @@ export interface DataTypesUpdateWordStatusResponseWrapper {
|
|
|
19576
20117
|
*/
|
|
19577
20118
|
'message'?: string;
|
|
19578
20119
|
/**
|
|
19579
|
-
*
|
|
19580
|
-
* @type {number}
|
|
19581
|
-
* @memberof DataTypesUpdateWordStatusResponseWrapper
|
|
20120
|
+
*
|
|
20121
|
+
* @type {number}
|
|
20122
|
+
* @memberof DataTypesUpdateWordStatusResponseWrapper
|
|
20123
|
+
*/
|
|
20124
|
+
'status'?: number;
|
|
20125
|
+
}
|
|
20126
|
+
/**
|
|
20127
|
+
*
|
|
20128
|
+
* @export
|
|
20129
|
+
* @interface DataTypesUploadSourceDataResponseWrapper
|
|
20130
|
+
*/
|
|
20131
|
+
export interface DataTypesUploadSourceDataResponseWrapper {
|
|
20132
|
+
/**
|
|
20133
|
+
*
|
|
20134
|
+
* @type {DataTypesUploadsourceDataResponse}
|
|
20135
|
+
* @memberof DataTypesUploadSourceDataResponseWrapper
|
|
20136
|
+
*/
|
|
20137
|
+
'data'?: DataTypesUploadsourceDataResponse;
|
|
20138
|
+
/**
|
|
20139
|
+
*
|
|
20140
|
+
* @type {string}
|
|
20141
|
+
* @memberof DataTypesUploadSourceDataResponseWrapper
|
|
20142
|
+
*/
|
|
20143
|
+
'message'?: string;
|
|
20144
|
+
/**
|
|
20145
|
+
*
|
|
20146
|
+
* @type {number}
|
|
20147
|
+
* @memberof DataTypesUploadSourceDataResponseWrapper
|
|
20148
|
+
*/
|
|
20149
|
+
'status'?: number;
|
|
20150
|
+
}
|
|
20151
|
+
/**
|
|
20152
|
+
*
|
|
20153
|
+
* @export
|
|
20154
|
+
* @interface DataTypesUploadsourceDataResponse
|
|
20155
|
+
*/
|
|
20156
|
+
export interface DataTypesUploadsourceDataResponse {
|
|
20157
|
+
/**
|
|
20158
|
+
*
|
|
20159
|
+
* @type {string}
|
|
20160
|
+
* @memberof DataTypesUploadsourceDataResponse
|
|
20161
|
+
*/
|
|
20162
|
+
'JobId'?: string;
|
|
20163
|
+
/**
|
|
20164
|
+
*
|
|
20165
|
+
* @type {DataTypesSource}
|
|
20166
|
+
* @memberof DataTypesUploadsourceDataResponse
|
|
20167
|
+
*/
|
|
20168
|
+
'Source'?: DataTypesSource;
|
|
20169
|
+
}
|
|
20170
|
+
/**
|
|
20171
|
+
*
|
|
20172
|
+
* @export
|
|
20173
|
+
* @interface DataTypesUsageBreakdown
|
|
20174
|
+
*/
|
|
20175
|
+
export interface DataTypesUsageBreakdown {
|
|
20176
|
+
/**
|
|
20177
|
+
*
|
|
20178
|
+
* @type {Array<DataTypesMetricData>}
|
|
20179
|
+
* @memberof DataTypesUsageBreakdown
|
|
20180
|
+
*/
|
|
20181
|
+
'metrics'?: Array<DataTypesMetricData>;
|
|
20182
|
+
/**
|
|
20183
|
+
*
|
|
20184
|
+
* @type {DataTypesPeriodInfo}
|
|
20185
|
+
* @memberof DataTypesUsageBreakdown
|
|
20186
|
+
*/
|
|
20187
|
+
'period'?: DataTypesPeriodInfo;
|
|
20188
|
+
/**
|
|
20189
|
+
*
|
|
20190
|
+
* @type {Array<Array<DataTypesTableCell>>}
|
|
20191
|
+
* @memberof DataTypesUsageBreakdown
|
|
20192
|
+
*/
|
|
20193
|
+
'table_data'?: Array<Array<DataTypesTableCell>>;
|
|
20194
|
+
}
|
|
20195
|
+
/**
|
|
20196
|
+
*
|
|
20197
|
+
* @export
|
|
20198
|
+
* @interface DataTypesUsageDetailsResponse
|
|
20199
|
+
*/
|
|
20200
|
+
export interface DataTypesUsageDetailsResponse {
|
|
20201
|
+
/**
|
|
20202
|
+
* Usage breakdown table
|
|
20203
|
+
* @type {DataTypesUsageBreakdown}
|
|
20204
|
+
* @memberof DataTypesUsageDetailsResponse
|
|
20205
|
+
*/
|
|
20206
|
+
'breakdown'?: DataTypesUsageBreakdown;
|
|
20207
|
+
/**
|
|
20208
|
+
* Credit consumption charts
|
|
20209
|
+
* @type {Array<DataTypesCreditChart>}
|
|
20210
|
+
* @memberof DataTypesUsageDetailsResponse
|
|
20211
|
+
*/
|
|
20212
|
+
'credit_charts'?: Array<DataTypesCreditChart>;
|
|
20213
|
+
/**
|
|
20214
|
+
* Credit consumption summary
|
|
20215
|
+
* @type {DataTypesCreditConsumptionSummary}
|
|
20216
|
+
* @memberof DataTypesUsageDetailsResponse
|
|
20217
|
+
*/
|
|
20218
|
+
'credit_summary'?: DataTypesCreditConsumptionSummary;
|
|
20219
|
+
/**
|
|
20220
|
+
* Time period for the data
|
|
20221
|
+
* @type {DataTypesPeriodInfo}
|
|
20222
|
+
* @memberof DataTypesUsageDetailsResponse
|
|
19582
20223
|
*/
|
|
19583
|
-
'
|
|
20224
|
+
'period'?: DataTypesPeriodInfo;
|
|
19584
20225
|
}
|
|
19585
20226
|
/**
|
|
19586
20227
|
*
|
|
19587
20228
|
* @export
|
|
19588
|
-
* @interface
|
|
20229
|
+
* @interface DataTypesUsageSummary
|
|
19589
20230
|
*/
|
|
19590
|
-
export interface
|
|
19591
|
-
/**
|
|
19592
|
-
*
|
|
19593
|
-
* @type {DataTypesUploadsourceDataResponse}
|
|
19594
|
-
* @memberof DataTypesUploadSourceDataResponseWrapper
|
|
19595
|
-
*/
|
|
19596
|
-
'data'?: DataTypesUploadsourceDataResponse;
|
|
20231
|
+
export interface DataTypesUsageSummary {
|
|
19597
20232
|
/**
|
|
19598
|
-
*
|
|
20233
|
+
* \"This month\", \"Last 30 days\", etc.
|
|
19599
20234
|
* @type {string}
|
|
19600
|
-
* @memberof
|
|
20235
|
+
* @memberof DataTypesUsageSummary
|
|
19601
20236
|
*/
|
|
19602
|
-
'
|
|
20237
|
+
'period'?: string;
|
|
19603
20238
|
/**
|
|
19604
20239
|
*
|
|
19605
20240
|
* @type {number}
|
|
19606
|
-
* @memberof
|
|
20241
|
+
* @memberof DataTypesUsageSummary
|
|
19607
20242
|
*/
|
|
19608
|
-
'
|
|
19609
|
-
}
|
|
19610
|
-
/**
|
|
19611
|
-
*
|
|
19612
|
-
* @export
|
|
19613
|
-
* @interface DataTypesUploadsourceDataResponse
|
|
19614
|
-
*/
|
|
19615
|
-
export interface DataTypesUploadsourceDataResponse {
|
|
20243
|
+
'records'?: number;
|
|
19616
20244
|
/**
|
|
19617
20245
|
*
|
|
19618
|
-
* @type {
|
|
19619
|
-
* @memberof
|
|
20246
|
+
* @type {number}
|
|
20247
|
+
* @memberof DataTypesUsageSummary
|
|
19620
20248
|
*/
|
|
19621
|
-
'
|
|
20249
|
+
'search_requests'?: number;
|
|
19622
20250
|
/**
|
|
19623
20251
|
*
|
|
19624
|
-
* @type {
|
|
19625
|
-
* @memberof
|
|
20252
|
+
* @type {number}
|
|
20253
|
+
* @memberof DataTypesUsageSummary
|
|
19626
20254
|
*/
|
|
19627
|
-
'
|
|
20255
|
+
'total_credits_used'?: number;
|
|
19628
20256
|
}
|
|
19629
20257
|
/**
|
|
19630
20258
|
*
|
|
@@ -24747,6 +25375,59 @@ export declare const BillingDashboardApiAxiosParamCreator: (configuration?: Conf
|
|
|
24747
25375
|
* @throws {RequiredError}
|
|
24748
25376
|
*/
|
|
24749
25377
|
adminBillingCreditTransactionsGet: (orgId?: number, startDate?: string, endDate?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25378
|
+
/**
|
|
25379
|
+
* Automatically generates invoices for all completed payments without invoices
|
|
25380
|
+
* @summary Auto-generate invoices
|
|
25381
|
+
* @param {*} [options] Override http request option.
|
|
25382
|
+
* @throws {RequiredError}
|
|
25383
|
+
*/
|
|
25384
|
+
adminBillingInvoicesAutoGeneratePost: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25385
|
+
/**
|
|
25386
|
+
* Generates an invoice automatically from a completed payment
|
|
25387
|
+
* @summary Generate invoice from payment
|
|
25388
|
+
* @param {number} paymentId Payment ID
|
|
25389
|
+
* @param {*} [options] Override http request option.
|
|
25390
|
+
* @throws {RequiredError}
|
|
25391
|
+
*/
|
|
25392
|
+
adminBillingInvoicesGeneratePaymentIdPost: (paymentId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25393
|
+
/**
|
|
25394
|
+
* Retrieves invoices with filtering options
|
|
25395
|
+
* @summary Get invoices
|
|
25396
|
+
* @param {number} [orgId] Organization ID
|
|
25397
|
+
* @param {string} [status] Invoice status
|
|
25398
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD format)
|
|
25399
|
+
* @param {string} [endDate] End date (YYYY-MM-DD format)
|
|
25400
|
+
* @param {number} [page] Page number (default: 1)
|
|
25401
|
+
* @param {number} [limit] Number of results per page (default: 20, max: 100)
|
|
25402
|
+
* @param {*} [options] Override http request option.
|
|
25403
|
+
* @throws {RequiredError}
|
|
25404
|
+
*/
|
|
25405
|
+
adminBillingInvoicesGet: (orgId?: number, status?: string, startDate?: string, endDate?: string, page?: number, limit?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25406
|
+
/**
|
|
25407
|
+
* Deletes an invoice (soft delete by setting status to cancelled)
|
|
25408
|
+
* @summary Delete invoice
|
|
25409
|
+
* @param {string} id Invoice ID
|
|
25410
|
+
* @param {*} [options] Override http request option.
|
|
25411
|
+
* @throws {RequiredError}
|
|
25412
|
+
*/
|
|
25413
|
+
adminBillingInvoicesIdDelete: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25414
|
+
/**
|
|
25415
|
+
* Retrieves a single invoice by ID
|
|
25416
|
+
* @summary Get invoice
|
|
25417
|
+
* @param {string} id Invoice ID
|
|
25418
|
+
* @param {*} [options] Override http request option.
|
|
25419
|
+
* @throws {RequiredError}
|
|
25420
|
+
*/
|
|
25421
|
+
adminBillingInvoicesIdGet: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25422
|
+
/**
|
|
25423
|
+
* Updates an existing invoice
|
|
25424
|
+
* @summary Update invoice
|
|
25425
|
+
* @param {string} id Invoice ID
|
|
25426
|
+
* @param {DataTypesUpdateInvoiceRequest} dataTypesUpdateInvoiceRequest Updated invoice data
|
|
25427
|
+
* @param {*} [options] Override http request option.
|
|
25428
|
+
* @throws {RequiredError}
|
|
25429
|
+
*/
|
|
25430
|
+
adminBillingInvoicesIdPut: (id: string, dataTypesUpdateInvoiceRequest: DataTypesUpdateInvoiceRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
24750
25431
|
/**
|
|
24751
25432
|
* Retrieves paginated list of orders with filtering options for the authenticated user\'s organization
|
|
24752
25433
|
* @summary Get orders
|
|
@@ -24788,6 +25469,13 @@ export declare const BillingDashboardApiAxiosParamCreator: (configuration?: Conf
|
|
|
24788
25469
|
* @throws {RequiredError}
|
|
24789
25470
|
*/
|
|
24790
25471
|
adminBillingOverviewGet: (orgId?: number, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25472
|
+
/**
|
|
25473
|
+
* Returns comprehensive billing overview with credit balance, plan info, and usage summary
|
|
25474
|
+
* @summary Get billing overview (new)
|
|
25475
|
+
* @param {*} [options] Override http request option.
|
|
25476
|
+
* @throws {RequiredError}
|
|
25477
|
+
*/
|
|
25478
|
+
adminBillingOverviewNewGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
24791
25479
|
/**
|
|
24792
25480
|
* Retrieves paginated list of payment transactions with filtering options for the authenticated user\'s organization
|
|
24793
25481
|
* @summary Get payment transactions
|
|
@@ -24807,6 +25495,15 @@ export declare const BillingDashboardApiAxiosParamCreator: (configuration?: Conf
|
|
|
24807
25495
|
* @throws {RequiredError}
|
|
24808
25496
|
*/
|
|
24809
25497
|
adminBillingSavedCardsGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25498
|
+
/**
|
|
25499
|
+
* Returns detailed usage information with charts and breakdown
|
|
25500
|
+
* @summary Get usage details
|
|
25501
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD format)
|
|
25502
|
+
* @param {string} [endDate] End date (YYYY-MM-DD format)
|
|
25503
|
+
* @param {*} [options] Override http request option.
|
|
25504
|
+
* @throws {RequiredError}
|
|
25505
|
+
*/
|
|
25506
|
+
adminBillingUsageDetailsGet: (startDate?: string, endDate?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
24810
25507
|
};
|
|
24811
25508
|
/**
|
|
24812
25509
|
* BillingDashboardApi - functional programming interface
|
|
@@ -24895,6 +25592,59 @@ export declare const BillingDashboardApiFp: (configuration?: Configuration) => {
|
|
|
24895
25592
|
* @throws {RequiredError}
|
|
24896
25593
|
*/
|
|
24897
25594
|
adminBillingCreditTransactionsGet(orgId?: number, startDate?: string, endDate?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseArrayBillingServiceCreditTransactionSummary>>;
|
|
25595
|
+
/**
|
|
25596
|
+
* Automatically generates invoices for all completed payments without invoices
|
|
25597
|
+
* @summary Auto-generate invoices
|
|
25598
|
+
* @param {*} [options] Override http request option.
|
|
25599
|
+
* @throws {RequiredError}
|
|
25600
|
+
*/
|
|
25601
|
+
adminBillingInvoicesAutoGeneratePost(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
25602
|
+
/**
|
|
25603
|
+
* Generates an invoice automatically from a completed payment
|
|
25604
|
+
* @summary Generate invoice from payment
|
|
25605
|
+
* @param {number} paymentId Payment ID
|
|
25606
|
+
* @param {*} [options] Override http request option.
|
|
25607
|
+
* @throws {RequiredError}
|
|
25608
|
+
*/
|
|
25609
|
+
adminBillingInvoicesGeneratePaymentIdPost(paymentId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesInvoice>>;
|
|
25610
|
+
/**
|
|
25611
|
+
* Retrieves invoices with filtering options
|
|
25612
|
+
* @summary Get invoices
|
|
25613
|
+
* @param {number} [orgId] Organization ID
|
|
25614
|
+
* @param {string} [status] Invoice status
|
|
25615
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD format)
|
|
25616
|
+
* @param {string} [endDate] End date (YYYY-MM-DD format)
|
|
25617
|
+
* @param {number} [page] Page number (default: 1)
|
|
25618
|
+
* @param {number} [limit] Number of results per page (default: 20, max: 100)
|
|
25619
|
+
* @param {*} [options] Override http request option.
|
|
25620
|
+
* @throws {RequiredError}
|
|
25621
|
+
*/
|
|
25622
|
+
adminBillingInvoicesGet(orgId?: number, status?: string, startDate?: string, endDate?: string, page?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesInvoiceResponse>>;
|
|
25623
|
+
/**
|
|
25624
|
+
* Deletes an invoice (soft delete by setting status to cancelled)
|
|
25625
|
+
* @summary Delete invoice
|
|
25626
|
+
* @param {string} id Invoice ID
|
|
25627
|
+
* @param {*} [options] Override http request option.
|
|
25628
|
+
* @throws {RequiredError}
|
|
25629
|
+
*/
|
|
25630
|
+
adminBillingInvoicesIdDelete(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseAny>>;
|
|
25631
|
+
/**
|
|
25632
|
+
* Retrieves a single invoice by ID
|
|
25633
|
+
* @summary Get invoice
|
|
25634
|
+
* @param {string} id Invoice ID
|
|
25635
|
+
* @param {*} [options] Override http request option.
|
|
25636
|
+
* @throws {RequiredError}
|
|
25637
|
+
*/
|
|
25638
|
+
adminBillingInvoicesIdGet(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesInvoice>>;
|
|
25639
|
+
/**
|
|
25640
|
+
* Updates an existing invoice
|
|
25641
|
+
* @summary Update invoice
|
|
25642
|
+
* @param {string} id Invoice ID
|
|
25643
|
+
* @param {DataTypesUpdateInvoiceRequest} dataTypesUpdateInvoiceRequest Updated invoice data
|
|
25644
|
+
* @param {*} [options] Override http request option.
|
|
25645
|
+
* @throws {RequiredError}
|
|
25646
|
+
*/
|
|
25647
|
+
adminBillingInvoicesIdPut(id: string, dataTypesUpdateInvoiceRequest: DataTypesUpdateInvoiceRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesInvoice>>;
|
|
24898
25648
|
/**
|
|
24899
25649
|
* Retrieves paginated list of orders with filtering options for the authenticated user\'s organization
|
|
24900
25650
|
* @summary Get orders
|
|
@@ -24936,6 +25686,13 @@ export declare const BillingDashboardApiFp: (configuration?: Configuration) => {
|
|
|
24936
25686
|
* @throws {RequiredError}
|
|
24937
25687
|
*/
|
|
24938
25688
|
adminBillingOverviewGet(orgId?: number, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseBillingServiceBillingOverview>>;
|
|
25689
|
+
/**
|
|
25690
|
+
* Returns comprehensive billing overview with credit balance, plan info, and usage summary
|
|
25691
|
+
* @summary Get billing overview (new)
|
|
25692
|
+
* @param {*} [options] Override http request option.
|
|
25693
|
+
* @throws {RequiredError}
|
|
25694
|
+
*/
|
|
25695
|
+
adminBillingOverviewNewGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesBillingOverviewResponse>>;
|
|
24939
25696
|
/**
|
|
24940
25697
|
* Retrieves paginated list of payment transactions with filtering options for the authenticated user\'s organization
|
|
24941
25698
|
* @summary Get payment transactions
|
|
@@ -24955,6 +25712,15 @@ export declare const BillingDashboardApiFp: (configuration?: Configuration) => {
|
|
|
24955
25712
|
* @throws {RequiredError}
|
|
24956
25713
|
*/
|
|
24957
25714
|
adminBillingSavedCardsGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesSavedCardsResponse>>;
|
|
25715
|
+
/**
|
|
25716
|
+
* Returns detailed usage information with charts and breakdown
|
|
25717
|
+
* @summary Get usage details
|
|
25718
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD format)
|
|
25719
|
+
* @param {string} [endDate] End date (YYYY-MM-DD format)
|
|
25720
|
+
* @param {*} [options] Override http request option.
|
|
25721
|
+
* @throws {RequiredError}
|
|
25722
|
+
*/
|
|
25723
|
+
adminBillingUsageDetailsGet(startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesUsageDetailsResponse>>;
|
|
24958
25724
|
};
|
|
24959
25725
|
/**
|
|
24960
25726
|
* BillingDashboardApi - factory interface
|
|
@@ -25043,6 +25809,59 @@ export declare const BillingDashboardApiFactory: (configuration?: Configuration,
|
|
|
25043
25809
|
* @throws {RequiredError}
|
|
25044
25810
|
*/
|
|
25045
25811
|
adminBillingCreditTransactionsGet(orgId?: number, startDate?: string, endDate?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseArrayBillingServiceCreditTransactionSummary>;
|
|
25812
|
+
/**
|
|
25813
|
+
* Automatically generates invoices for all completed payments without invoices
|
|
25814
|
+
* @summary Auto-generate invoices
|
|
25815
|
+
* @param {*} [options] Override http request option.
|
|
25816
|
+
* @throws {RequiredError}
|
|
25817
|
+
*/
|
|
25818
|
+
adminBillingInvoicesAutoGeneratePost(options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
25819
|
+
/**
|
|
25820
|
+
* Generates an invoice automatically from a completed payment
|
|
25821
|
+
* @summary Generate invoice from payment
|
|
25822
|
+
* @param {number} paymentId Payment ID
|
|
25823
|
+
* @param {*} [options] Override http request option.
|
|
25824
|
+
* @throws {RequiredError}
|
|
25825
|
+
*/
|
|
25826
|
+
adminBillingInvoicesGeneratePaymentIdPost(paymentId: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesInvoice>;
|
|
25827
|
+
/**
|
|
25828
|
+
* Retrieves invoices with filtering options
|
|
25829
|
+
* @summary Get invoices
|
|
25830
|
+
* @param {number} [orgId] Organization ID
|
|
25831
|
+
* @param {string} [status] Invoice status
|
|
25832
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD format)
|
|
25833
|
+
* @param {string} [endDate] End date (YYYY-MM-DD format)
|
|
25834
|
+
* @param {number} [page] Page number (default: 1)
|
|
25835
|
+
* @param {number} [limit] Number of results per page (default: 20, max: 100)
|
|
25836
|
+
* @param {*} [options] Override http request option.
|
|
25837
|
+
* @throws {RequiredError}
|
|
25838
|
+
*/
|
|
25839
|
+
adminBillingInvoicesGet(orgId?: number, status?: string, startDate?: string, endDate?: string, page?: number, limit?: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesInvoiceResponse>;
|
|
25840
|
+
/**
|
|
25841
|
+
* Deletes an invoice (soft delete by setting status to cancelled)
|
|
25842
|
+
* @summary Delete invoice
|
|
25843
|
+
* @param {string} id Invoice ID
|
|
25844
|
+
* @param {*} [options] Override http request option.
|
|
25845
|
+
* @throws {RequiredError}
|
|
25846
|
+
*/
|
|
25847
|
+
adminBillingInvoicesIdDelete(id: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseAny>;
|
|
25848
|
+
/**
|
|
25849
|
+
* Retrieves a single invoice by ID
|
|
25850
|
+
* @summary Get invoice
|
|
25851
|
+
* @param {string} id Invoice ID
|
|
25852
|
+
* @param {*} [options] Override http request option.
|
|
25853
|
+
* @throws {RequiredError}
|
|
25854
|
+
*/
|
|
25855
|
+
adminBillingInvoicesIdGet(id: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesInvoice>;
|
|
25856
|
+
/**
|
|
25857
|
+
* Updates an existing invoice
|
|
25858
|
+
* @summary Update invoice
|
|
25859
|
+
* @param {string} id Invoice ID
|
|
25860
|
+
* @param {DataTypesUpdateInvoiceRequest} dataTypesUpdateInvoiceRequest Updated invoice data
|
|
25861
|
+
* @param {*} [options] Override http request option.
|
|
25862
|
+
* @throws {RequiredError}
|
|
25863
|
+
*/
|
|
25864
|
+
adminBillingInvoicesIdPut(id: string, dataTypesUpdateInvoiceRequest: DataTypesUpdateInvoiceRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesInvoice>;
|
|
25046
25865
|
/**
|
|
25047
25866
|
* Retrieves paginated list of orders with filtering options for the authenticated user\'s organization
|
|
25048
25867
|
* @summary Get orders
|
|
@@ -25084,6 +25903,13 @@ export declare const BillingDashboardApiFactory: (configuration?: Configuration,
|
|
|
25084
25903
|
* @throws {RequiredError}
|
|
25085
25904
|
*/
|
|
25086
25905
|
adminBillingOverviewGet(orgId?: number, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseBillingServiceBillingOverview>;
|
|
25906
|
+
/**
|
|
25907
|
+
* Returns comprehensive billing overview with credit balance, plan info, and usage summary
|
|
25908
|
+
* @summary Get billing overview (new)
|
|
25909
|
+
* @param {*} [options] Override http request option.
|
|
25910
|
+
* @throws {RequiredError}
|
|
25911
|
+
*/
|
|
25912
|
+
adminBillingOverviewNewGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesBillingOverviewResponse>;
|
|
25087
25913
|
/**
|
|
25088
25914
|
* Retrieves paginated list of payment transactions with filtering options for the authenticated user\'s organization
|
|
25089
25915
|
* @summary Get payment transactions
|
|
@@ -25103,6 +25929,15 @@ export declare const BillingDashboardApiFactory: (configuration?: Configuration,
|
|
|
25103
25929
|
* @throws {RequiredError}
|
|
25104
25930
|
*/
|
|
25105
25931
|
adminBillingSavedCardsGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesSavedCardsResponse>;
|
|
25932
|
+
/**
|
|
25933
|
+
* Returns detailed usage information with charts and breakdown
|
|
25934
|
+
* @summary Get usage details
|
|
25935
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD format)
|
|
25936
|
+
* @param {string} [endDate] End date (YYYY-MM-DD format)
|
|
25937
|
+
* @param {*} [options] Override http request option.
|
|
25938
|
+
* @throws {RequiredError}
|
|
25939
|
+
*/
|
|
25940
|
+
adminBillingUsageDetailsGet(startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesUsageDetailsResponse>;
|
|
25106
25941
|
};
|
|
25107
25942
|
/**
|
|
25108
25943
|
* BillingDashboardApi - object-oriented interface
|
|
@@ -25201,6 +26036,65 @@ export declare class BillingDashboardApi extends BaseAPI {
|
|
|
25201
26036
|
* @memberof BillingDashboardApi
|
|
25202
26037
|
*/
|
|
25203
26038
|
adminBillingCreditTransactionsGet(orgId?: number, startDate?: string, endDate?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseArrayBillingServiceCreditTransactionSummary, any, {}>>;
|
|
26039
|
+
/**
|
|
26040
|
+
* Automatically generates invoices for all completed payments without invoices
|
|
26041
|
+
* @summary Auto-generate invoices
|
|
26042
|
+
* @param {*} [options] Override http request option.
|
|
26043
|
+
* @throws {RequiredError}
|
|
26044
|
+
* @memberof BillingDashboardApi
|
|
26045
|
+
*/
|
|
26046
|
+
adminBillingInvoicesAutoGeneratePost(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
26047
|
+
/**
|
|
26048
|
+
* Generates an invoice automatically from a completed payment
|
|
26049
|
+
* @summary Generate invoice from payment
|
|
26050
|
+
* @param {number} paymentId Payment ID
|
|
26051
|
+
* @param {*} [options] Override http request option.
|
|
26052
|
+
* @throws {RequiredError}
|
|
26053
|
+
* @memberof BillingDashboardApi
|
|
26054
|
+
*/
|
|
26055
|
+
adminBillingInvoicesGeneratePaymentIdPost(paymentId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesInvoice, any, {}>>;
|
|
26056
|
+
/**
|
|
26057
|
+
* Retrieves invoices with filtering options
|
|
26058
|
+
* @summary Get invoices
|
|
26059
|
+
* @param {number} [orgId] Organization ID
|
|
26060
|
+
* @param {string} [status] Invoice status
|
|
26061
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD format)
|
|
26062
|
+
* @param {string} [endDate] End date (YYYY-MM-DD format)
|
|
26063
|
+
* @param {number} [page] Page number (default: 1)
|
|
26064
|
+
* @param {number} [limit] Number of results per page (default: 20, max: 100)
|
|
26065
|
+
* @param {*} [options] Override http request option.
|
|
26066
|
+
* @throws {RequiredError}
|
|
26067
|
+
* @memberof BillingDashboardApi
|
|
26068
|
+
*/
|
|
26069
|
+
adminBillingInvoicesGet(orgId?: number, status?: string, startDate?: string, endDate?: string, page?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesInvoiceResponse, any, {}>>;
|
|
26070
|
+
/**
|
|
26071
|
+
* Deletes an invoice (soft delete by setting status to cancelled)
|
|
26072
|
+
* @summary Delete invoice
|
|
26073
|
+
* @param {string} id Invoice ID
|
|
26074
|
+
* @param {*} [options] Override http request option.
|
|
26075
|
+
* @throws {RequiredError}
|
|
26076
|
+
* @memberof BillingDashboardApi
|
|
26077
|
+
*/
|
|
26078
|
+
adminBillingInvoicesIdDelete(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseAny, any, {}>>;
|
|
26079
|
+
/**
|
|
26080
|
+
* Retrieves a single invoice by ID
|
|
26081
|
+
* @summary Get invoice
|
|
26082
|
+
* @param {string} id Invoice ID
|
|
26083
|
+
* @param {*} [options] Override http request option.
|
|
26084
|
+
* @throws {RequiredError}
|
|
26085
|
+
* @memberof BillingDashboardApi
|
|
26086
|
+
*/
|
|
26087
|
+
adminBillingInvoicesIdGet(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesInvoice, any, {}>>;
|
|
26088
|
+
/**
|
|
26089
|
+
* Updates an existing invoice
|
|
26090
|
+
* @summary Update invoice
|
|
26091
|
+
* @param {string} id Invoice ID
|
|
26092
|
+
* @param {DataTypesUpdateInvoiceRequest} dataTypesUpdateInvoiceRequest Updated invoice data
|
|
26093
|
+
* @param {*} [options] Override http request option.
|
|
26094
|
+
* @throws {RequiredError}
|
|
26095
|
+
* @memberof BillingDashboardApi
|
|
26096
|
+
*/
|
|
26097
|
+
adminBillingInvoicesIdPut(id: string, dataTypesUpdateInvoiceRequest: DataTypesUpdateInvoiceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesInvoice, any, {}>>;
|
|
25204
26098
|
/**
|
|
25205
26099
|
* Retrieves paginated list of orders with filtering options for the authenticated user\'s organization
|
|
25206
26100
|
* @summary Get orders
|
|
@@ -25246,6 +26140,14 @@ export declare class BillingDashboardApi extends BaseAPI {
|
|
|
25246
26140
|
* @memberof BillingDashboardApi
|
|
25247
26141
|
*/
|
|
25248
26142
|
adminBillingOverviewGet(orgId?: number, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseBillingServiceBillingOverview, any, {}>>;
|
|
26143
|
+
/**
|
|
26144
|
+
* Returns comprehensive billing overview with credit balance, plan info, and usage summary
|
|
26145
|
+
* @summary Get billing overview (new)
|
|
26146
|
+
* @param {*} [options] Override http request option.
|
|
26147
|
+
* @throws {RequiredError}
|
|
26148
|
+
* @memberof BillingDashboardApi
|
|
26149
|
+
*/
|
|
26150
|
+
adminBillingOverviewNewGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesBillingOverviewResponse, any, {}>>;
|
|
25249
26151
|
/**
|
|
25250
26152
|
* Retrieves paginated list of payment transactions with filtering options for the authenticated user\'s organization
|
|
25251
26153
|
* @summary Get payment transactions
|
|
@@ -25267,6 +26169,16 @@ export declare class BillingDashboardApi extends BaseAPI {
|
|
|
25267
26169
|
* @memberof BillingDashboardApi
|
|
25268
26170
|
*/
|
|
25269
26171
|
adminBillingSavedCardsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesSavedCardsResponse, any, {}>>;
|
|
26172
|
+
/**
|
|
26173
|
+
* Returns detailed usage information with charts and breakdown
|
|
26174
|
+
* @summary Get usage details
|
|
26175
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD format)
|
|
26176
|
+
* @param {string} [endDate] End date (YYYY-MM-DD format)
|
|
26177
|
+
* @param {*} [options] Override http request option.
|
|
26178
|
+
* @throws {RequiredError}
|
|
26179
|
+
* @memberof BillingDashboardApi
|
|
26180
|
+
*/
|
|
26181
|
+
adminBillingUsageDetailsGet(startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesUsageDetailsResponse, any, {}>>;
|
|
25270
26182
|
}
|
|
25271
26183
|
/**
|
|
25272
26184
|
* CommonApi - axios parameter creator
|
|
@@ -33841,7 +34753,7 @@ export declare const StoreCreationApiAxiosParamCreator: (configuration?: Configu
|
|
|
33841
34753
|
*/
|
|
33842
34754
|
adminV1StoreCreationProgressDelete: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
33843
34755
|
/**
|
|
33844
|
-
* Retrieves the current step and state of store creation for the user
|
|
34756
|
+
* 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
34757
|
* @summary Get current store creation progress
|
|
33846
34758
|
* @param {*} [options] Override http request option.
|
|
33847
34759
|
* @throws {RequiredError}
|
|
@@ -33856,22 +34768,47 @@ export declare const StoreCreationApiAxiosParamCreator: (configuration?: Configu
|
|
|
33856
34768
|
*/
|
|
33857
34769
|
adminV1StoreCreationSchemaUploadPost: (file: File, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
33858
34770
|
/**
|
|
33859
|
-
* Updates a specific step in the store creation flow
|
|
34771
|
+
* 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
34772
|
* @summary Update store creation step
|
|
33861
34773
|
* @param {DataTypesStoreCreationRequest} dataTypesStoreCreationRequest Store creation step data
|
|
33862
34774
|
* @param {*} [options] Override http request option.
|
|
33863
34775
|
* @throws {RequiredError}
|
|
33864
34776
|
*/
|
|
33865
34777
|
adminV1StoreCreationStepPost: (dataTypesStoreCreationRequest: DataTypesStoreCreationRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
34778
|
+
/**
|
|
34779
|
+
* Deletes (soft delete) the store creation progress for a specific store using XStoreID from path parameter
|
|
34780
|
+
* @summary Delete store creation progress by XStoreID
|
|
34781
|
+
* @param {string} xstoreid XStoreID for specific store creation flow
|
|
34782
|
+
* @param {*} [options] Override http request option.
|
|
34783
|
+
* @throws {RequiredError}
|
|
34784
|
+
*/
|
|
34785
|
+
adminV1StoreCreationXstoreidProgressDelete: (xstoreid: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
34786
|
+
/**
|
|
34787
|
+
* Retrieves the current step and state of store creation for a specific store using XStoreID from path parameter
|
|
34788
|
+
* @summary Get store creation progress by XStoreID
|
|
34789
|
+
* @param {string} xstoreid XStoreID for specific store creation flow
|
|
34790
|
+
* @param {*} [options] Override http request option.
|
|
34791
|
+
* @throws {RequiredError}
|
|
34792
|
+
*/
|
|
34793
|
+
adminV1StoreCreationXstoreidProgressGet: (xstoreid: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
34794
|
+
/**
|
|
34795
|
+
* Updates a specific step in the store creation flow for a specific store using XStoreID from path parameter
|
|
34796
|
+
* @summary Update store creation step by XStoreID
|
|
34797
|
+
* @param {string} xstoreid XStoreID for specific store creation flow
|
|
34798
|
+
* @param {DataTypesStoreCreationRequest} dataTypesStoreCreationRequest Store creation step data
|
|
34799
|
+
* @param {*} [options] Override http request option.
|
|
34800
|
+
* @throws {RequiredError}
|
|
34801
|
+
*/
|
|
34802
|
+
adminV1StoreCreationXstoreidStepPost: (xstoreid: string, dataTypesStoreCreationRequest: DataTypesStoreCreationRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
33866
34803
|
/**
|
|
33867
34804
|
* Uploads a custom JSON or CSV file for store data import
|
|
33868
34805
|
* @summary Upload custom data file for store
|
|
33869
|
-
* @param {
|
|
34806
|
+
* @param {string} xstoreid Store XStoreID
|
|
33870
34807
|
* @param {File} file Data file (JSON or CSV)
|
|
33871
34808
|
* @param {*} [options] Override http request option.
|
|
33872
34809
|
* @throws {RequiredError}
|
|
33873
34810
|
*/
|
|
33874
|
-
|
|
34811
|
+
adminV1StoreCreationXstoreidUploadDataPost: (xstoreid: string, file: File, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
33875
34812
|
};
|
|
33876
34813
|
/**
|
|
33877
34814
|
* StoreCreationApi - functional programming interface
|
|
@@ -33886,7 +34823,7 @@ export declare const StoreCreationApiFp: (configuration?: Configuration) => {
|
|
|
33886
34823
|
*/
|
|
33887
34824
|
adminV1StoreCreationProgressDelete(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
33888
34825
|
/**
|
|
33889
|
-
* Retrieves the current step and state of store creation for the user
|
|
34826
|
+
* 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
34827
|
* @summary Get current store creation progress
|
|
33891
34828
|
* @param {*} [options] Override http request option.
|
|
33892
34829
|
* @throws {RequiredError}
|
|
@@ -33901,22 +34838,47 @@ export declare const StoreCreationApiFp: (configuration?: Configuration) => {
|
|
|
33901
34838
|
*/
|
|
33902
34839
|
adminV1StoreCreationSchemaUploadPost(file: File, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
33903
34840
|
/**
|
|
33904
|
-
* Updates a specific step in the store creation flow
|
|
34841
|
+
* 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
34842
|
* @summary Update store creation step
|
|
33906
34843
|
* @param {DataTypesStoreCreationRequest} dataTypesStoreCreationRequest Store creation step data
|
|
33907
34844
|
* @param {*} [options] Override http request option.
|
|
33908
34845
|
* @throws {RequiredError}
|
|
33909
34846
|
*/
|
|
33910
34847
|
adminV1StoreCreationStepPost(dataTypesStoreCreationRequest: DataTypesStoreCreationRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesStoreCreationResponseWrapper>>;
|
|
34848
|
+
/**
|
|
34849
|
+
* Deletes (soft delete) the store creation progress for a specific store using XStoreID from path parameter
|
|
34850
|
+
* @summary Delete store creation progress by XStoreID
|
|
34851
|
+
* @param {string} xstoreid XStoreID for specific store creation flow
|
|
34852
|
+
* @param {*} [options] Override http request option.
|
|
34853
|
+
* @throws {RequiredError}
|
|
34854
|
+
*/
|
|
34855
|
+
adminV1StoreCreationXstoreidProgressDelete(xstoreid: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
34856
|
+
/**
|
|
34857
|
+
* Retrieves the current step and state of store creation for a specific store using XStoreID from path parameter
|
|
34858
|
+
* @summary Get store creation progress by XStoreID
|
|
34859
|
+
* @param {string} xstoreid XStoreID for specific store creation flow
|
|
34860
|
+
* @param {*} [options] Override http request option.
|
|
34861
|
+
* @throws {RequiredError}
|
|
34862
|
+
*/
|
|
34863
|
+
adminV1StoreCreationXstoreidProgressGet(xstoreid: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesStoreCreationResponseWrapper>>;
|
|
34864
|
+
/**
|
|
34865
|
+
* Updates a specific step in the store creation flow for a specific store using XStoreID from path parameter
|
|
34866
|
+
* @summary Update store creation step by XStoreID
|
|
34867
|
+
* @param {string} xstoreid XStoreID for specific store creation flow
|
|
34868
|
+
* @param {DataTypesStoreCreationRequest} dataTypesStoreCreationRequest Store creation step data
|
|
34869
|
+
* @param {*} [options] Override http request option.
|
|
34870
|
+
* @throws {RequiredError}
|
|
34871
|
+
*/
|
|
34872
|
+
adminV1StoreCreationXstoreidStepPost(xstoreid: string, dataTypesStoreCreationRequest: DataTypesStoreCreationRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesStoreCreationResponseWrapper>>;
|
|
33911
34873
|
/**
|
|
33912
34874
|
* Uploads a custom JSON or CSV file for store data import
|
|
33913
34875
|
* @summary Upload custom data file for store
|
|
33914
|
-
* @param {
|
|
34876
|
+
* @param {string} xstoreid Store XStoreID
|
|
33915
34877
|
* @param {File} file Data file (JSON or CSV)
|
|
33916
34878
|
* @param {*} [options] Override http request option.
|
|
33917
34879
|
* @throws {RequiredError}
|
|
33918
34880
|
*/
|
|
33919
|
-
|
|
34881
|
+
adminV1StoreCreationXstoreidUploadDataPost(xstoreid: string, file: File, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
33920
34882
|
};
|
|
33921
34883
|
/**
|
|
33922
34884
|
* StoreCreationApi - factory interface
|
|
@@ -33931,7 +34893,7 @@ export declare const StoreCreationApiFactory: (configuration?: Configuration, ba
|
|
|
33931
34893
|
*/
|
|
33932
34894
|
adminV1StoreCreationProgressDelete(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
33933
34895
|
/**
|
|
33934
|
-
* Retrieves the current step and state of store creation for the user
|
|
34896
|
+
* 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
34897
|
* @summary Get current store creation progress
|
|
33936
34898
|
* @param {*} [options] Override http request option.
|
|
33937
34899
|
* @throws {RequiredError}
|
|
@@ -33946,22 +34908,47 @@ export declare const StoreCreationApiFactory: (configuration?: Configuration, ba
|
|
|
33946
34908
|
*/
|
|
33947
34909
|
adminV1StoreCreationSchemaUploadPost(file: File, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
33948
34910
|
/**
|
|
33949
|
-
* Updates a specific step in the store creation flow
|
|
34911
|
+
* 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
34912
|
* @summary Update store creation step
|
|
33951
34913
|
* @param {DataTypesStoreCreationRequest} dataTypesStoreCreationRequest Store creation step data
|
|
33952
34914
|
* @param {*} [options] Override http request option.
|
|
33953
34915
|
* @throws {RequiredError}
|
|
33954
34916
|
*/
|
|
33955
34917
|
adminV1StoreCreationStepPost(dataTypesStoreCreationRequest: DataTypesStoreCreationRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesStoreCreationResponseWrapper>;
|
|
34918
|
+
/**
|
|
34919
|
+
* Deletes (soft delete) the store creation progress for a specific store using XStoreID from path parameter
|
|
34920
|
+
* @summary Delete store creation progress by XStoreID
|
|
34921
|
+
* @param {string} xstoreid XStoreID for specific store creation flow
|
|
34922
|
+
* @param {*} [options] Override http request option.
|
|
34923
|
+
* @throws {RequiredError}
|
|
34924
|
+
*/
|
|
34925
|
+
adminV1StoreCreationXstoreidProgressDelete(xstoreid: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
34926
|
+
/**
|
|
34927
|
+
* Retrieves the current step and state of store creation for a specific store using XStoreID from path parameter
|
|
34928
|
+
* @summary Get store creation progress by XStoreID
|
|
34929
|
+
* @param {string} xstoreid XStoreID for specific store creation flow
|
|
34930
|
+
* @param {*} [options] Override http request option.
|
|
34931
|
+
* @throws {RequiredError}
|
|
34932
|
+
*/
|
|
34933
|
+
adminV1StoreCreationXstoreidProgressGet(xstoreid: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesStoreCreationResponseWrapper>;
|
|
34934
|
+
/**
|
|
34935
|
+
* Updates a specific step in the store creation flow for a specific store using XStoreID from path parameter
|
|
34936
|
+
* @summary Update store creation step by XStoreID
|
|
34937
|
+
* @param {string} xstoreid XStoreID for specific store creation flow
|
|
34938
|
+
* @param {DataTypesStoreCreationRequest} dataTypesStoreCreationRequest Store creation step data
|
|
34939
|
+
* @param {*} [options] Override http request option.
|
|
34940
|
+
* @throws {RequiredError}
|
|
34941
|
+
*/
|
|
34942
|
+
adminV1StoreCreationXstoreidStepPost(xstoreid: string, dataTypesStoreCreationRequest: DataTypesStoreCreationRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesStoreCreationResponseWrapper>;
|
|
33956
34943
|
/**
|
|
33957
34944
|
* Uploads a custom JSON or CSV file for store data import
|
|
33958
34945
|
* @summary Upload custom data file for store
|
|
33959
|
-
* @param {
|
|
34946
|
+
* @param {string} xstoreid Store XStoreID
|
|
33960
34947
|
* @param {File} file Data file (JSON or CSV)
|
|
33961
34948
|
* @param {*} [options] Override http request option.
|
|
33962
34949
|
* @throws {RequiredError}
|
|
33963
34950
|
*/
|
|
33964
|
-
|
|
34951
|
+
adminV1StoreCreationXstoreidUploadDataPost(xstoreid: string, file: File, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
33965
34952
|
};
|
|
33966
34953
|
/**
|
|
33967
34954
|
* StoreCreationApi - object-oriented interface
|
|
@@ -33979,7 +34966,7 @@ export declare class StoreCreationApi extends BaseAPI {
|
|
|
33979
34966
|
*/
|
|
33980
34967
|
adminV1StoreCreationProgressDelete(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
33981
34968
|
/**
|
|
33982
|
-
* Retrieves the current step and state of store creation for the user
|
|
34969
|
+
* 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
34970
|
* @summary Get current store creation progress
|
|
33984
34971
|
* @param {*} [options] Override http request option.
|
|
33985
34972
|
* @throws {RequiredError}
|
|
@@ -33996,7 +34983,7 @@ export declare class StoreCreationApi extends BaseAPI {
|
|
|
33996
34983
|
*/
|
|
33997
34984
|
adminV1StoreCreationSchemaUploadPost(file: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
33998
34985
|
/**
|
|
33999
|
-
* Updates a specific step in the store creation flow
|
|
34986
|
+
* 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
34987
|
* @summary Update store creation step
|
|
34001
34988
|
* @param {DataTypesStoreCreationRequest} dataTypesStoreCreationRequest Store creation step data
|
|
34002
34989
|
* @param {*} [options] Override http request option.
|
|
@@ -34004,16 +34991,44 @@ export declare class StoreCreationApi extends BaseAPI {
|
|
|
34004
34991
|
* @memberof StoreCreationApi
|
|
34005
34992
|
*/
|
|
34006
34993
|
adminV1StoreCreationStepPost(dataTypesStoreCreationRequest: DataTypesStoreCreationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesStoreCreationResponseWrapper, any, {}>>;
|
|
34994
|
+
/**
|
|
34995
|
+
* Deletes (soft delete) the store creation progress for a specific store using XStoreID from path parameter
|
|
34996
|
+
* @summary Delete store creation progress by XStoreID
|
|
34997
|
+
* @param {string} xstoreid XStoreID for specific store creation flow
|
|
34998
|
+
* @param {*} [options] Override http request option.
|
|
34999
|
+
* @throws {RequiredError}
|
|
35000
|
+
* @memberof StoreCreationApi
|
|
35001
|
+
*/
|
|
35002
|
+
adminV1StoreCreationXstoreidProgressDelete(xstoreid: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
35003
|
+
/**
|
|
35004
|
+
* Retrieves the current step and state of store creation for a specific store using XStoreID from path parameter
|
|
35005
|
+
* @summary Get store creation progress by XStoreID
|
|
35006
|
+
* @param {string} xstoreid XStoreID for specific store creation flow
|
|
35007
|
+
* @param {*} [options] Override http request option.
|
|
35008
|
+
* @throws {RequiredError}
|
|
35009
|
+
* @memberof StoreCreationApi
|
|
35010
|
+
*/
|
|
35011
|
+
adminV1StoreCreationXstoreidProgressGet(xstoreid: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesStoreCreationResponseWrapper, any, {}>>;
|
|
35012
|
+
/**
|
|
35013
|
+
* Updates a specific step in the store creation flow for a specific store using XStoreID from path parameter
|
|
35014
|
+
* @summary Update store creation step by XStoreID
|
|
35015
|
+
* @param {string} xstoreid XStoreID for specific store creation flow
|
|
35016
|
+
* @param {DataTypesStoreCreationRequest} dataTypesStoreCreationRequest Store creation step data
|
|
35017
|
+
* @param {*} [options] Override http request option.
|
|
35018
|
+
* @throws {RequiredError}
|
|
35019
|
+
* @memberof StoreCreationApi
|
|
35020
|
+
*/
|
|
35021
|
+
adminV1StoreCreationXstoreidStepPost(xstoreid: string, dataTypesStoreCreationRequest: DataTypesStoreCreationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesStoreCreationResponseWrapper, any, {}>>;
|
|
34007
35022
|
/**
|
|
34008
35023
|
* Uploads a custom JSON or CSV file for store data import
|
|
34009
35024
|
* @summary Upload custom data file for store
|
|
34010
|
-
* @param {
|
|
35025
|
+
* @param {string} xstoreid Store XStoreID
|
|
34011
35026
|
* @param {File} file Data file (JSON or CSV)
|
|
34012
35027
|
* @param {*} [options] Override http request option.
|
|
34013
35028
|
* @throws {RequiredError}
|
|
34014
35029
|
* @memberof StoreCreationApi
|
|
34015
35030
|
*/
|
|
34016
|
-
|
|
35031
|
+
adminV1StoreCreationXstoreidUploadDataPost(xstoreid: string, file: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
34017
35032
|
}
|
|
34018
35033
|
/**
|
|
34019
35034
|
* StoreDocumentsApi - axios parameter creator
|