@seekora-ai/admin-api 1.1.0 → 1.1.2
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 +54 -14
- package/api.ts +2392 -207
- package/dist/api.d.ts +1938 -160
- package/dist/api.js +802 -71
- package/dist/esm/api.d.ts +1938 -160
- package/dist/esm/api.js +796 -69
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.1.2.tgz +0 -0
- package/seekora-ai-admin-api-1.1.0.tgz +0 -0
package/dist/api.d.ts
CHANGED
|
@@ -746,6 +746,44 @@ export interface AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGet200Response {
|
|
|
746
746
|
*/
|
|
747
747
|
'total'?: number;
|
|
748
748
|
}
|
|
749
|
+
/**
|
|
750
|
+
*
|
|
751
|
+
* @export
|
|
752
|
+
* @interface AdminFeatureLimitsViolationsGet200Response
|
|
753
|
+
*/
|
|
754
|
+
export interface AdminFeatureLimitsViolationsGet200Response {
|
|
755
|
+
/**
|
|
756
|
+
*
|
|
757
|
+
* @type {Array<DataTypesFeatureLimitViolation>}
|
|
758
|
+
* @memberof AdminFeatureLimitsViolationsGet200Response
|
|
759
|
+
*/
|
|
760
|
+
'data'?: Array<DataTypesFeatureLimitViolation>;
|
|
761
|
+
/**
|
|
762
|
+
*
|
|
763
|
+
* @type {string}
|
|
764
|
+
* @memberof AdminFeatureLimitsViolationsGet200Response
|
|
765
|
+
*/
|
|
766
|
+
'message'?: string;
|
|
767
|
+
/**
|
|
768
|
+
*
|
|
769
|
+
* @type {number}
|
|
770
|
+
* @memberof AdminFeatureLimitsViolationsGet200Response
|
|
771
|
+
*/
|
|
772
|
+
'status'?: number;
|
|
773
|
+
}
|
|
774
|
+
/**
|
|
775
|
+
*
|
|
776
|
+
* @export
|
|
777
|
+
* @interface AdminPaymentGatewayVerifyInvoicePostRequest
|
|
778
|
+
*/
|
|
779
|
+
export interface AdminPaymentGatewayVerifyInvoicePostRequest {
|
|
780
|
+
/**
|
|
781
|
+
*
|
|
782
|
+
* @type {string}
|
|
783
|
+
* @memberof AdminPaymentGatewayVerifyInvoicePostRequest
|
|
784
|
+
*/
|
|
785
|
+
'gateway_order_id'?: string;
|
|
786
|
+
}
|
|
749
787
|
/**
|
|
750
788
|
*
|
|
751
789
|
* @export
|
|
@@ -7075,131 +7113,6 @@ export interface AnalyticsWidgetData {
|
|
|
7075
7113
|
*/
|
|
7076
7114
|
'tertiary_text'?: string;
|
|
7077
7115
|
}
|
|
7078
|
-
/**
|
|
7079
|
-
*
|
|
7080
|
-
* @export
|
|
7081
|
-
* @interface ApiAdminFeatureLimitsViolationsGet200Response
|
|
7082
|
-
*/
|
|
7083
|
-
export interface ApiAdminFeatureLimitsViolationsGet200Response {
|
|
7084
|
-
/**
|
|
7085
|
-
*
|
|
7086
|
-
* @type {Array<DataTypesFeatureLimitViolation>}
|
|
7087
|
-
* @memberof ApiAdminFeatureLimitsViolationsGet200Response
|
|
7088
|
-
*/
|
|
7089
|
-
'data'?: Array<DataTypesFeatureLimitViolation>;
|
|
7090
|
-
/**
|
|
7091
|
-
*
|
|
7092
|
-
* @type {string}
|
|
7093
|
-
* @memberof ApiAdminFeatureLimitsViolationsGet200Response
|
|
7094
|
-
*/
|
|
7095
|
-
'message'?: string;
|
|
7096
|
-
/**
|
|
7097
|
-
*
|
|
7098
|
-
* @type {number}
|
|
7099
|
-
* @memberof ApiAdminFeatureLimitsViolationsGet200Response
|
|
7100
|
-
*/
|
|
7101
|
-
'status'?: number;
|
|
7102
|
-
}
|
|
7103
|
-
/**
|
|
7104
|
-
*
|
|
7105
|
-
* @export
|
|
7106
|
-
* @interface ApiFeatureLimitsCheckGet200Response
|
|
7107
|
-
*/
|
|
7108
|
-
export interface ApiFeatureLimitsCheckGet200Response {
|
|
7109
|
-
/**
|
|
7110
|
-
*
|
|
7111
|
-
* @type {DataTypesFeatureCheckResult}
|
|
7112
|
-
* @memberof ApiFeatureLimitsCheckGet200Response
|
|
7113
|
-
*/
|
|
7114
|
-
'data'?: DataTypesFeatureCheckResult;
|
|
7115
|
-
/**
|
|
7116
|
-
*
|
|
7117
|
-
* @type {string}
|
|
7118
|
-
* @memberof ApiFeatureLimitsCheckGet200Response
|
|
7119
|
-
*/
|
|
7120
|
-
'message'?: string;
|
|
7121
|
-
/**
|
|
7122
|
-
*
|
|
7123
|
-
* @type {number}
|
|
7124
|
-
* @memberof ApiFeatureLimitsCheckGet200Response
|
|
7125
|
-
*/
|
|
7126
|
-
'status'?: number;
|
|
7127
|
-
}
|
|
7128
|
-
/**
|
|
7129
|
-
*
|
|
7130
|
-
* @export
|
|
7131
|
-
* @interface ApiFeatureLimitsHistoryGet200Response
|
|
7132
|
-
*/
|
|
7133
|
-
export interface ApiFeatureLimitsHistoryGet200Response {
|
|
7134
|
-
/**
|
|
7135
|
-
*
|
|
7136
|
-
* @type {Array<DataTypesFeatureUsageHistory>}
|
|
7137
|
-
* @memberof ApiFeatureLimitsHistoryGet200Response
|
|
7138
|
-
*/
|
|
7139
|
-
'data'?: Array<DataTypesFeatureUsageHistory>;
|
|
7140
|
-
/**
|
|
7141
|
-
*
|
|
7142
|
-
* @type {string}
|
|
7143
|
-
* @memberof ApiFeatureLimitsHistoryGet200Response
|
|
7144
|
-
*/
|
|
7145
|
-
'message'?: string;
|
|
7146
|
-
/**
|
|
7147
|
-
*
|
|
7148
|
-
* @type {number}
|
|
7149
|
-
* @memberof ApiFeatureLimitsHistoryGet200Response
|
|
7150
|
-
*/
|
|
7151
|
-
'status'?: number;
|
|
7152
|
-
}
|
|
7153
|
-
/**
|
|
7154
|
-
*
|
|
7155
|
-
* @export
|
|
7156
|
-
* @interface ApiFeatureLimitsPlanGet200Response
|
|
7157
|
-
*/
|
|
7158
|
-
export interface ApiFeatureLimitsPlanGet200Response {
|
|
7159
|
-
/**
|
|
7160
|
-
*
|
|
7161
|
-
* @type {DataTypesPlanFeatures}
|
|
7162
|
-
* @memberof ApiFeatureLimitsPlanGet200Response
|
|
7163
|
-
*/
|
|
7164
|
-
'data'?: DataTypesPlanFeatures;
|
|
7165
|
-
/**
|
|
7166
|
-
*
|
|
7167
|
-
* @type {string}
|
|
7168
|
-
* @memberof ApiFeatureLimitsPlanGet200Response
|
|
7169
|
-
*/
|
|
7170
|
-
'message'?: string;
|
|
7171
|
-
/**
|
|
7172
|
-
*
|
|
7173
|
-
* @type {number}
|
|
7174
|
-
* @memberof ApiFeatureLimitsPlanGet200Response
|
|
7175
|
-
*/
|
|
7176
|
-
'status'?: number;
|
|
7177
|
-
}
|
|
7178
|
-
/**
|
|
7179
|
-
*
|
|
7180
|
-
* @export
|
|
7181
|
-
* @interface ApiFeatureLimitsUsageGet200Response
|
|
7182
|
-
*/
|
|
7183
|
-
export interface ApiFeatureLimitsUsageGet200Response {
|
|
7184
|
-
/**
|
|
7185
|
-
*
|
|
7186
|
-
* @type {Array<DataTypesFeatureUsageStats>}
|
|
7187
|
-
* @memberof ApiFeatureLimitsUsageGet200Response
|
|
7188
|
-
*/
|
|
7189
|
-
'data'?: Array<DataTypesFeatureUsageStats>;
|
|
7190
|
-
/**
|
|
7191
|
-
*
|
|
7192
|
-
* @type {string}
|
|
7193
|
-
* @memberof ApiFeatureLimitsUsageGet200Response
|
|
7194
|
-
*/
|
|
7195
|
-
'message'?: string;
|
|
7196
|
-
/**
|
|
7197
|
-
*
|
|
7198
|
-
* @type {number}
|
|
7199
|
-
* @memberof ApiFeatureLimitsUsageGet200Response
|
|
7200
|
-
*/
|
|
7201
|
-
'status'?: number;
|
|
7202
|
-
}
|
|
7203
7116
|
/**
|
|
7204
7117
|
*
|
|
7205
7118
|
* @export
|
|
@@ -10759,6 +10672,92 @@ export interface DataTypesFulfillmentInfoSubscription {
|
|
|
10759
10672
|
*/
|
|
10760
10673
|
'plan_name'?: string;
|
|
10761
10674
|
}
|
|
10675
|
+
/**
|
|
10676
|
+
*
|
|
10677
|
+
* @export
|
|
10678
|
+
* @interface DataTypesGSTVerificationRequest
|
|
10679
|
+
*/
|
|
10680
|
+
export interface DataTypesGSTVerificationRequest {
|
|
10681
|
+
/**
|
|
10682
|
+
*
|
|
10683
|
+
* @type {string}
|
|
10684
|
+
* @memberof DataTypesGSTVerificationRequest
|
|
10685
|
+
*/
|
|
10686
|
+
'gstin': string;
|
|
10687
|
+
}
|
|
10688
|
+
/**
|
|
10689
|
+
*
|
|
10690
|
+
* @export
|
|
10691
|
+
* @interface DataTypesGSTVerificationResponse
|
|
10692
|
+
*/
|
|
10693
|
+
export interface DataTypesGSTVerificationResponse {
|
|
10694
|
+
/**
|
|
10695
|
+
*
|
|
10696
|
+
* @type {string}
|
|
10697
|
+
* @memberof DataTypesGSTVerificationResponse
|
|
10698
|
+
*/
|
|
10699
|
+
'address'?: string;
|
|
10700
|
+
/**
|
|
10701
|
+
*
|
|
10702
|
+
* @type {string}
|
|
10703
|
+
* @memberof DataTypesGSTVerificationResponse
|
|
10704
|
+
*/
|
|
10705
|
+
'business_name'?: string;
|
|
10706
|
+
/**
|
|
10707
|
+
*
|
|
10708
|
+
* @type {string}
|
|
10709
|
+
* @memberof DataTypesGSTVerificationResponse
|
|
10710
|
+
*/
|
|
10711
|
+
'gstin'?: string;
|
|
10712
|
+
/**
|
|
10713
|
+
*
|
|
10714
|
+
* @type {boolean}
|
|
10715
|
+
* @memberof DataTypesGSTVerificationResponse
|
|
10716
|
+
*/
|
|
10717
|
+
'is_valid'?: boolean;
|
|
10718
|
+
/**
|
|
10719
|
+
*
|
|
10720
|
+
* @type {string}
|
|
10721
|
+
* @memberof DataTypesGSTVerificationResponse
|
|
10722
|
+
*/
|
|
10723
|
+
'last_updated'?: string;
|
|
10724
|
+
/**
|
|
10725
|
+
*
|
|
10726
|
+
* @type {string}
|
|
10727
|
+
* @memberof DataTypesGSTVerificationResponse
|
|
10728
|
+
*/
|
|
10729
|
+
'registration_date'?: string;
|
|
10730
|
+
/**
|
|
10731
|
+
* \'api\', \'cache\', \'manual\'
|
|
10732
|
+
* @type {string}
|
|
10733
|
+
* @memberof DataTypesGSTVerificationResponse
|
|
10734
|
+
*/
|
|
10735
|
+
'source'?: string;
|
|
10736
|
+
/**
|
|
10737
|
+
*
|
|
10738
|
+
* @type {string}
|
|
10739
|
+
* @memberof DataTypesGSTVerificationResponse
|
|
10740
|
+
*/
|
|
10741
|
+
'state_code'?: string;
|
|
10742
|
+
/**
|
|
10743
|
+
* \'Active\', \'Cancelled\', \'Suspended\'
|
|
10744
|
+
* @type {string}
|
|
10745
|
+
* @memberof DataTypesGSTVerificationResponse
|
|
10746
|
+
*/
|
|
10747
|
+
'status'?: string;
|
|
10748
|
+
/**
|
|
10749
|
+
*
|
|
10750
|
+
* @type {string}
|
|
10751
|
+
* @memberof DataTypesGSTVerificationResponse
|
|
10752
|
+
*/
|
|
10753
|
+
'taxpayer_type'?: string;
|
|
10754
|
+
/**
|
|
10755
|
+
*
|
|
10756
|
+
* @type {string}
|
|
10757
|
+
* @memberof DataTypesGSTVerificationResponse
|
|
10758
|
+
*/
|
|
10759
|
+
'trade_name'?: string;
|
|
10760
|
+
}
|
|
10762
10761
|
/**
|
|
10763
10762
|
*
|
|
10764
10763
|
* @export
|
|
@@ -10853,6 +10852,56 @@ export interface DataTypesGenericResponseDataTypesBillingOrderDetailsResponse {
|
|
|
10853
10852
|
*/
|
|
10854
10853
|
'status'?: number;
|
|
10855
10854
|
}
|
|
10855
|
+
/**
|
|
10856
|
+
*
|
|
10857
|
+
* @export
|
|
10858
|
+
* @interface DataTypesGenericResponseDataTypesGSTVerificationResponse
|
|
10859
|
+
*/
|
|
10860
|
+
export interface DataTypesGenericResponseDataTypesGSTVerificationResponse {
|
|
10861
|
+
/**
|
|
10862
|
+
*
|
|
10863
|
+
* @type {DataTypesGSTVerificationResponse}
|
|
10864
|
+
* @memberof DataTypesGenericResponseDataTypesGSTVerificationResponse
|
|
10865
|
+
*/
|
|
10866
|
+
'data'?: DataTypesGSTVerificationResponse;
|
|
10867
|
+
/**
|
|
10868
|
+
*
|
|
10869
|
+
* @type {string}
|
|
10870
|
+
* @memberof DataTypesGenericResponseDataTypesGSTVerificationResponse
|
|
10871
|
+
*/
|
|
10872
|
+
'message'?: string;
|
|
10873
|
+
/**
|
|
10874
|
+
*
|
|
10875
|
+
* @type {number}
|
|
10876
|
+
* @memberof DataTypesGenericResponseDataTypesGSTVerificationResponse
|
|
10877
|
+
*/
|
|
10878
|
+
'status'?: number;
|
|
10879
|
+
}
|
|
10880
|
+
/**
|
|
10881
|
+
*
|
|
10882
|
+
* @export
|
|
10883
|
+
* @interface DataTypesGenericResponseDataTypesOrganizationTaxDetails
|
|
10884
|
+
*/
|
|
10885
|
+
export interface DataTypesGenericResponseDataTypesOrganizationTaxDetails {
|
|
10886
|
+
/**
|
|
10887
|
+
*
|
|
10888
|
+
* @type {DataTypesOrganizationTaxDetails}
|
|
10889
|
+
* @memberof DataTypesGenericResponseDataTypesOrganizationTaxDetails
|
|
10890
|
+
*/
|
|
10891
|
+
'data'?: DataTypesOrganizationTaxDetails;
|
|
10892
|
+
/**
|
|
10893
|
+
*
|
|
10894
|
+
* @type {string}
|
|
10895
|
+
* @memberof DataTypesGenericResponseDataTypesOrganizationTaxDetails
|
|
10896
|
+
*/
|
|
10897
|
+
'message'?: string;
|
|
10898
|
+
/**
|
|
10899
|
+
*
|
|
10900
|
+
* @type {number}
|
|
10901
|
+
* @memberof DataTypesGenericResponseDataTypesOrganizationTaxDetails
|
|
10902
|
+
*/
|
|
10903
|
+
'status'?: number;
|
|
10904
|
+
}
|
|
10856
10905
|
/**
|
|
10857
10906
|
*
|
|
10858
10907
|
* @export
|
|
@@ -10878,6 +10927,56 @@ export interface DataTypesGenericResponseDataTypesPayInvoiceResponse {
|
|
|
10878
10927
|
*/
|
|
10879
10928
|
'status'?: number;
|
|
10880
10929
|
}
|
|
10930
|
+
/**
|
|
10931
|
+
*
|
|
10932
|
+
* @export
|
|
10933
|
+
* @interface DataTypesGenericResponseDataTypesTaxCalculationResponse
|
|
10934
|
+
*/
|
|
10935
|
+
export interface DataTypesGenericResponseDataTypesTaxCalculationResponse {
|
|
10936
|
+
/**
|
|
10937
|
+
*
|
|
10938
|
+
* @type {DataTypesTaxCalculationResponse}
|
|
10939
|
+
* @memberof DataTypesGenericResponseDataTypesTaxCalculationResponse
|
|
10940
|
+
*/
|
|
10941
|
+
'data'?: DataTypesTaxCalculationResponse;
|
|
10942
|
+
/**
|
|
10943
|
+
*
|
|
10944
|
+
* @type {string}
|
|
10945
|
+
* @memberof DataTypesGenericResponseDataTypesTaxCalculationResponse
|
|
10946
|
+
*/
|
|
10947
|
+
'message'?: string;
|
|
10948
|
+
/**
|
|
10949
|
+
*
|
|
10950
|
+
* @type {number}
|
|
10951
|
+
* @memberof DataTypesGenericResponseDataTypesTaxCalculationResponse
|
|
10952
|
+
*/
|
|
10953
|
+
'status'?: number;
|
|
10954
|
+
}
|
|
10955
|
+
/**
|
|
10956
|
+
*
|
|
10957
|
+
* @export
|
|
10958
|
+
* @interface DataTypesGenericResponseFeatureLimitServiceLimitStatus
|
|
10959
|
+
*/
|
|
10960
|
+
export interface DataTypesGenericResponseFeatureLimitServiceLimitStatus {
|
|
10961
|
+
/**
|
|
10962
|
+
*
|
|
10963
|
+
* @type {FeatureLimitServiceLimitStatus}
|
|
10964
|
+
* @memberof DataTypesGenericResponseFeatureLimitServiceLimitStatus
|
|
10965
|
+
*/
|
|
10966
|
+
'data'?: FeatureLimitServiceLimitStatus;
|
|
10967
|
+
/**
|
|
10968
|
+
*
|
|
10969
|
+
* @type {string}
|
|
10970
|
+
* @memberof DataTypesGenericResponseFeatureLimitServiceLimitStatus
|
|
10971
|
+
*/
|
|
10972
|
+
'message'?: string;
|
|
10973
|
+
/**
|
|
10974
|
+
*
|
|
10975
|
+
* @type {number}
|
|
10976
|
+
* @memberof DataTypesGenericResponseFeatureLimitServiceLimitStatus
|
|
10977
|
+
*/
|
|
10978
|
+
'status'?: number;
|
|
10979
|
+
}
|
|
10881
10980
|
/**
|
|
10882
10981
|
*
|
|
10883
10982
|
* @export
|
|
@@ -11555,6 +11654,12 @@ export interface DataTypesInvoice {
|
|
|
11555
11654
|
* @memberof DataTypesInvoice
|
|
11556
11655
|
*/
|
|
11557
11656
|
'tax_amount'?: number;
|
|
11657
|
+
/**
|
|
11658
|
+
* Tax and GST details (comprehensive)
|
|
11659
|
+
* @type {DataTypesInvoiceTaxDetails}
|
|
11660
|
+
* @memberof DataTypesInvoice
|
|
11661
|
+
*/
|
|
11662
|
+
'tax_details'?: DataTypesInvoiceTaxDetails;
|
|
11558
11663
|
/**
|
|
11559
11664
|
*
|
|
11560
11665
|
* @type {number}
|
|
@@ -11580,6 +11685,24 @@ export interface DataTypesInvoiceItem {
|
|
|
11580
11685
|
* @memberof DataTypesInvoiceItem
|
|
11581
11686
|
*/
|
|
11582
11687
|
'description'?: string;
|
|
11688
|
+
/**
|
|
11689
|
+
*
|
|
11690
|
+
* @type {string}
|
|
11691
|
+
* @memberof DataTypesInvoiceItem
|
|
11692
|
+
*/
|
|
11693
|
+
'exemption_reason'?: string;
|
|
11694
|
+
/**
|
|
11695
|
+
* Enhanced tax details for GST compliance
|
|
11696
|
+
* @type {string}
|
|
11697
|
+
* @memberof DataTypesInvoiceItem
|
|
11698
|
+
*/
|
|
11699
|
+
'hsn_sac_code'?: string;
|
|
11700
|
+
/**
|
|
11701
|
+
*
|
|
11702
|
+
* @type {boolean}
|
|
11703
|
+
* @memberof DataTypesInvoiceItem
|
|
11704
|
+
*/
|
|
11705
|
+
'is_tax_exempt'?: boolean;
|
|
11583
11706
|
/**
|
|
11584
11707
|
*
|
|
11585
11708
|
* @type {string}
|
|
@@ -11598,6 +11721,12 @@ export interface DataTypesInvoiceItem {
|
|
|
11598
11721
|
* @memberof DataTypesInvoiceItem
|
|
11599
11722
|
*/
|
|
11600
11723
|
'tax_amount'?: number;
|
|
11724
|
+
/**
|
|
11725
|
+
* Detailed tax breakdown
|
|
11726
|
+
* @type {DataTypesTaxBreakdown}
|
|
11727
|
+
* @memberof DataTypesInvoiceItem
|
|
11728
|
+
*/
|
|
11729
|
+
'tax_breakdown'?: DataTypesTaxBreakdown;
|
|
11601
11730
|
/**
|
|
11602
11731
|
*
|
|
11603
11732
|
* @type {number}
|
|
@@ -11617,6 +11746,214 @@ export interface DataTypesInvoiceItem {
|
|
|
11617
11746
|
*/
|
|
11618
11747
|
'unit_price'?: number;
|
|
11619
11748
|
}
|
|
11749
|
+
/**
|
|
11750
|
+
*
|
|
11751
|
+
* @export
|
|
11752
|
+
* @interface DataTypesInvoiceTaxDetails
|
|
11753
|
+
*/
|
|
11754
|
+
export interface DataTypesInvoiceTaxDetails {
|
|
11755
|
+
/**
|
|
11756
|
+
* Acknowledgment date
|
|
11757
|
+
* @type {string}
|
|
11758
|
+
* @memberof DataTypesInvoiceTaxDetails
|
|
11759
|
+
*/
|
|
11760
|
+
'ack_date'?: string;
|
|
11761
|
+
/**
|
|
11762
|
+
* Acknowledgment number
|
|
11763
|
+
* @type {string}
|
|
11764
|
+
* @memberof DataTypesInvoiceTaxDetails
|
|
11765
|
+
*/
|
|
11766
|
+
'ack_no'?: string;
|
|
11767
|
+
/**
|
|
11768
|
+
*
|
|
11769
|
+
* @type {{ [key: string]: any; }}
|
|
11770
|
+
* @memberof DataTypesInvoiceTaxDetails
|
|
11771
|
+
*/
|
|
11772
|
+
'compliance_metadata'?: {
|
|
11773
|
+
[key: string]: any;
|
|
11774
|
+
};
|
|
11775
|
+
/**
|
|
11776
|
+
*
|
|
11777
|
+
* @type {string}
|
|
11778
|
+
* @memberof DataTypesInvoiceTaxDetails
|
|
11779
|
+
*/
|
|
11780
|
+
'customer_address'?: string;
|
|
11781
|
+
/**
|
|
11782
|
+
* Customer details
|
|
11783
|
+
* @type {string}
|
|
11784
|
+
* @memberof DataTypesInvoiceTaxDetails
|
|
11785
|
+
*/
|
|
11786
|
+
'customer_gstin'?: string;
|
|
11787
|
+
/**
|
|
11788
|
+
*
|
|
11789
|
+
* @type {string}
|
|
11790
|
+
* @memberof DataTypesInvoiceTaxDetails
|
|
11791
|
+
*/
|
|
11792
|
+
'customer_legal_name'?: string;
|
|
11793
|
+
/**
|
|
11794
|
+
*
|
|
11795
|
+
* @type {string}
|
|
11796
|
+
* @memberof DataTypesInvoiceTaxDetails
|
|
11797
|
+
*/
|
|
11798
|
+
'customer_pan'?: string;
|
|
11799
|
+
/**
|
|
11800
|
+
*
|
|
11801
|
+
* @type {string}
|
|
11802
|
+
* @memberof DataTypesInvoiceTaxDetails
|
|
11803
|
+
*/
|
|
11804
|
+
'customer_place_of_supply'?: string;
|
|
11805
|
+
/**
|
|
11806
|
+
* \'pending\', \'filed\', \'accepted\'
|
|
11807
|
+
* @type {string}
|
|
11808
|
+
* @memberof DataTypesInvoiceTaxDetails
|
|
11809
|
+
*/
|
|
11810
|
+
'filing_status'?: string;
|
|
11811
|
+
/**
|
|
11812
|
+
* Compliance
|
|
11813
|
+
* @type {string}
|
|
11814
|
+
* @memberof DataTypesInvoiceTaxDetails
|
|
11815
|
+
*/
|
|
11816
|
+
'fiscal_year'?: string;
|
|
11817
|
+
/**
|
|
11818
|
+
* e.g., \'Nov-2024\'
|
|
11819
|
+
* @type {string}
|
|
11820
|
+
* @memberof DataTypesInvoiceTaxDetails
|
|
11821
|
+
*/
|
|
11822
|
+
'gst_filing_period'?: string;
|
|
11823
|
+
/**
|
|
11824
|
+
* \'tax_invoice\', \'bill_of_supply\', \'export_invoice\', etc.
|
|
11825
|
+
* @type {string}
|
|
11826
|
+
* @memberof DataTypesInvoiceTaxDetails
|
|
11827
|
+
*/
|
|
11828
|
+
'invoice_type'?: string;
|
|
11829
|
+
/**
|
|
11830
|
+
* E-invoicing details (India)
|
|
11831
|
+
* @type {string}
|
|
11832
|
+
* @memberof DataTypesInvoiceTaxDetails
|
|
11833
|
+
*/
|
|
11834
|
+
'irn'?: string;
|
|
11835
|
+
/**
|
|
11836
|
+
* IRN generation date
|
|
11837
|
+
* @type {string}
|
|
11838
|
+
* @memberof DataTypesInvoiceTaxDetails
|
|
11839
|
+
*/
|
|
11840
|
+
'irn_date'?: string;
|
|
11841
|
+
/**
|
|
11842
|
+
* QR code for invoice
|
|
11843
|
+
* @type {string}
|
|
11844
|
+
* @memberof DataTypesInvoiceTaxDetails
|
|
11845
|
+
*/
|
|
11846
|
+
'qr_code_data'?: string;
|
|
11847
|
+
/**
|
|
11848
|
+
*
|
|
11849
|
+
* @type {boolean}
|
|
11850
|
+
* @memberof DataTypesInvoiceTaxDetails
|
|
11851
|
+
*/
|
|
11852
|
+
'reverse_charge'?: boolean;
|
|
11853
|
+
/**
|
|
11854
|
+
*
|
|
11855
|
+
* @type {string}
|
|
11856
|
+
* @memberof DataTypesInvoiceTaxDetails
|
|
11857
|
+
*/
|
|
11858
|
+
'supplier_address'?: string;
|
|
11859
|
+
/**
|
|
11860
|
+
* Supplier details (our organization)
|
|
11861
|
+
* @type {string}
|
|
11862
|
+
* @memberof DataTypesInvoiceTaxDetails
|
|
11863
|
+
*/
|
|
11864
|
+
'supplier_gstin'?: string;
|
|
11865
|
+
/**
|
|
11866
|
+
*
|
|
11867
|
+
* @type {string}
|
|
11868
|
+
* @memberof DataTypesInvoiceTaxDetails
|
|
11869
|
+
*/
|
|
11870
|
+
'supplier_legal_name'?: string;
|
|
11871
|
+
/**
|
|
11872
|
+
*
|
|
11873
|
+
* @type {string}
|
|
11874
|
+
* @memberof DataTypesInvoiceTaxDetails
|
|
11875
|
+
*/
|
|
11876
|
+
'supplier_pan'?: string;
|
|
11877
|
+
/**
|
|
11878
|
+
*
|
|
11879
|
+
* @type {string}
|
|
11880
|
+
* @memberof DataTypesInvoiceTaxDetails
|
|
11881
|
+
*/
|
|
11882
|
+
'supplier_place_of_supply'?: string;
|
|
11883
|
+
/**
|
|
11884
|
+
* \'intrastate\', \'interstate\', \'export\', \'import\'
|
|
11885
|
+
* @type {string}
|
|
11886
|
+
* @memberof DataTypesInvoiceTaxDetails
|
|
11887
|
+
*/
|
|
11888
|
+
'supply_type'?: string;
|
|
11889
|
+
/**
|
|
11890
|
+
*
|
|
11891
|
+
* @type {DataTypesTaxBreakdown}
|
|
11892
|
+
* @memberof DataTypesInvoiceTaxDetails
|
|
11893
|
+
*/
|
|
11894
|
+
'tax_breakdown'?: DataTypesTaxBreakdown;
|
|
11895
|
+
/**
|
|
11896
|
+
* Tax breakdown
|
|
11897
|
+
* @type {string}
|
|
11898
|
+
* @memberof DataTypesInvoiceTaxDetails
|
|
11899
|
+
*/
|
|
11900
|
+
'tax_type'?: string;
|
|
11901
|
+
/**
|
|
11902
|
+
* Transaction details
|
|
11903
|
+
* @type {string}
|
|
11904
|
+
* @memberof DataTypesInvoiceTaxDetails
|
|
11905
|
+
*/
|
|
11906
|
+
'transaction_type'?: string;
|
|
11907
|
+
}
|
|
11908
|
+
/**
|
|
11909
|
+
*
|
|
11910
|
+
* @export
|
|
11911
|
+
* @interface DataTypesItemTaxDetails
|
|
11912
|
+
*/
|
|
11913
|
+
export interface DataTypesItemTaxDetails {
|
|
11914
|
+
/**
|
|
11915
|
+
*
|
|
11916
|
+
* @type {number}
|
|
11917
|
+
* @memberof DataTypesItemTaxDetails
|
|
11918
|
+
*/
|
|
11919
|
+
'amount'?: number;
|
|
11920
|
+
/**
|
|
11921
|
+
*
|
|
11922
|
+
* @type {string}
|
|
11923
|
+
* @memberof DataTypesItemTaxDetails
|
|
11924
|
+
*/
|
|
11925
|
+
'description'?: string;
|
|
11926
|
+
/**
|
|
11927
|
+
*
|
|
11928
|
+
* @type {string}
|
|
11929
|
+
* @memberof DataTypesItemTaxDetails
|
|
11930
|
+
*/
|
|
11931
|
+
'hsn_sac_code'?: string;
|
|
11932
|
+
/**
|
|
11933
|
+
*
|
|
11934
|
+
* @type {boolean}
|
|
11935
|
+
* @memberof DataTypesItemTaxDetails
|
|
11936
|
+
*/
|
|
11937
|
+
'is_tax_exempt'?: boolean;
|
|
11938
|
+
/**
|
|
11939
|
+
*
|
|
11940
|
+
* @type {DataTypesTaxBreakdown}
|
|
11941
|
+
* @memberof DataTypesItemTaxDetails
|
|
11942
|
+
*/
|
|
11943
|
+
'tax_breakdown'?: DataTypesTaxBreakdown;
|
|
11944
|
+
/**
|
|
11945
|
+
*
|
|
11946
|
+
* @type {number}
|
|
11947
|
+
* @memberof DataTypesItemTaxDetails
|
|
11948
|
+
*/
|
|
11949
|
+
'taxable_amount'?: number;
|
|
11950
|
+
/**
|
|
11951
|
+
*
|
|
11952
|
+
* @type {number}
|
|
11953
|
+
* @memberof DataTypesItemTaxDetails
|
|
11954
|
+
*/
|
|
11955
|
+
'total_tax'?: number;
|
|
11956
|
+
}
|
|
11620
11957
|
/**
|
|
11621
11958
|
*
|
|
11622
11959
|
* @export
|
|
@@ -13438,6 +13775,99 @@ export interface DataTypesOrganizationResponse {
|
|
|
13438
13775
|
*/
|
|
13439
13776
|
'status'?: number;
|
|
13440
13777
|
}
|
|
13778
|
+
/**
|
|
13779
|
+
*
|
|
13780
|
+
* @export
|
|
13781
|
+
* @interface DataTypesOrganizationTaxDetails
|
|
13782
|
+
*/
|
|
13783
|
+
export interface DataTypesOrganizationTaxDetails {
|
|
13784
|
+
/**
|
|
13785
|
+
* Billing address
|
|
13786
|
+
* @type {DataTypesTaxBillingAddress}
|
|
13787
|
+
* @memberof DataTypesOrganizationTaxDetails
|
|
13788
|
+
*/
|
|
13789
|
+
'billing_address'?: DataTypesTaxBillingAddress;
|
|
13790
|
+
/**
|
|
13791
|
+
* Legal business name
|
|
13792
|
+
* @type {string}
|
|
13793
|
+
* @memberof DataTypesOrganizationTaxDetails
|
|
13794
|
+
*/
|
|
13795
|
+
'business_legal_name'?: string;
|
|
13796
|
+
/**
|
|
13797
|
+
* Business entity type
|
|
13798
|
+
* @type {string}
|
|
13799
|
+
* @memberof DataTypesOrganizationTaxDetails
|
|
13800
|
+
*/
|
|
13801
|
+
'business_type'?: string;
|
|
13802
|
+
/**
|
|
13803
|
+
* GST Identification Number (India)
|
|
13804
|
+
* @type {string}
|
|
13805
|
+
* @memberof DataTypesOrganizationTaxDetails
|
|
13806
|
+
*/
|
|
13807
|
+
'gstin'?: string;
|
|
13808
|
+
/**
|
|
13809
|
+
* HSN/SAC code
|
|
13810
|
+
* @type {string}
|
|
13811
|
+
* @memberof DataTypesOrganizationTaxDetails
|
|
13812
|
+
*/
|
|
13813
|
+
'hsn_sac_code'?: string;
|
|
13814
|
+
/**
|
|
13815
|
+
*
|
|
13816
|
+
* @type {number}
|
|
13817
|
+
* @memberof DataTypesOrganizationTaxDetails
|
|
13818
|
+
*/
|
|
13819
|
+
'org_id'?: number;
|
|
13820
|
+
/**
|
|
13821
|
+
* Permanent Account Number (India)
|
|
13822
|
+
* @type {string}
|
|
13823
|
+
* @memberof DataTypesOrganizationTaxDetails
|
|
13824
|
+
*/
|
|
13825
|
+
'pan'?: string;
|
|
13826
|
+
/**
|
|
13827
|
+
* State/Province for tax
|
|
13828
|
+
* @type {string}
|
|
13829
|
+
* @memberof DataTypesOrganizationTaxDetails
|
|
13830
|
+
*/
|
|
13831
|
+
'place_of_supply'?: string;
|
|
13832
|
+
/**
|
|
13833
|
+
* Certificate number
|
|
13834
|
+
* @type {string}
|
|
13835
|
+
* @memberof DataTypesOrganizationTaxDetails
|
|
13836
|
+
*/
|
|
13837
|
+
'tax_exemption_certificate'?: string;
|
|
13838
|
+
/**
|
|
13839
|
+
* Tax exemption flag
|
|
13840
|
+
* @type {boolean}
|
|
13841
|
+
* @memberof DataTypesOrganizationTaxDetails
|
|
13842
|
+
*/
|
|
13843
|
+
'tax_exemption_status'?: boolean;
|
|
13844
|
+
/**
|
|
13845
|
+
* Validity date
|
|
13846
|
+
* @type {string}
|
|
13847
|
+
* @memberof DataTypesOrganizationTaxDetails
|
|
13848
|
+
*/
|
|
13849
|
+
'tax_exemption_valid_until'?: string;
|
|
13850
|
+
/**
|
|
13851
|
+
* ISO country code
|
|
13852
|
+
* @type {string}
|
|
13853
|
+
* @memberof DataTypesOrganizationTaxDetails
|
|
13854
|
+
*/
|
|
13855
|
+
'tax_registration_country'?: string;
|
|
13856
|
+
/**
|
|
13857
|
+
* Generic tax registration
|
|
13858
|
+
* @type {string}
|
|
13859
|
+
* @memberof DataTypesOrganizationTaxDetails
|
|
13860
|
+
*/
|
|
13861
|
+
'tax_registration_number'?: string;
|
|
13862
|
+
/**
|
|
13863
|
+
* Flexible tax config
|
|
13864
|
+
* @type {{ [key: string]: any; }}
|
|
13865
|
+
* @memberof DataTypesOrganizationTaxDetails
|
|
13866
|
+
*/
|
|
13867
|
+
'tax_settings'?: {
|
|
13868
|
+
[key: string]: any;
|
|
13869
|
+
};
|
|
13870
|
+
}
|
|
13441
13871
|
/**
|
|
13442
13872
|
*
|
|
13443
13873
|
* @export
|
|
@@ -16947,6 +17377,276 @@ export interface DataTypesTaskRun {
|
|
|
16947
17377
|
*/
|
|
16948
17378
|
'task_run_id'?: number;
|
|
16949
17379
|
}
|
|
17380
|
+
/**
|
|
17381
|
+
*
|
|
17382
|
+
* @export
|
|
17383
|
+
* @interface DataTypesTaxBillingAddress
|
|
17384
|
+
*/
|
|
17385
|
+
export interface DataTypesTaxBillingAddress {
|
|
17386
|
+
/**
|
|
17387
|
+
*
|
|
17388
|
+
* @type {string}
|
|
17389
|
+
* @memberof DataTypesTaxBillingAddress
|
|
17390
|
+
*/
|
|
17391
|
+
'address_line1'?: string;
|
|
17392
|
+
/**
|
|
17393
|
+
*
|
|
17394
|
+
* @type {string}
|
|
17395
|
+
* @memberof DataTypesTaxBillingAddress
|
|
17396
|
+
*/
|
|
17397
|
+
'address_line2'?: string;
|
|
17398
|
+
/**
|
|
17399
|
+
*
|
|
17400
|
+
* @type {string}
|
|
17401
|
+
* @memberof DataTypesTaxBillingAddress
|
|
17402
|
+
*/
|
|
17403
|
+
'city'?: string;
|
|
17404
|
+
/**
|
|
17405
|
+
* ISO country code
|
|
17406
|
+
* @type {string}
|
|
17407
|
+
* @memberof DataTypesTaxBillingAddress
|
|
17408
|
+
*/
|
|
17409
|
+
'country'?: string;
|
|
17410
|
+
/**
|
|
17411
|
+
* Required for GST
|
|
17412
|
+
* @type {string}
|
|
17413
|
+
* @memberof DataTypesTaxBillingAddress
|
|
17414
|
+
*/
|
|
17415
|
+
'postal_code'?: string;
|
|
17416
|
+
/**
|
|
17417
|
+
* Required for GST
|
|
17418
|
+
* @type {string}
|
|
17419
|
+
* @memberof DataTypesTaxBillingAddress
|
|
17420
|
+
*/
|
|
17421
|
+
'state'?: string;
|
|
17422
|
+
}
|
|
17423
|
+
/**
|
|
17424
|
+
*
|
|
17425
|
+
* @export
|
|
17426
|
+
* @interface DataTypesTaxBreakdown
|
|
17427
|
+
*/
|
|
17428
|
+
export interface DataTypesTaxBreakdown {
|
|
17429
|
+
/**
|
|
17430
|
+
* Cess
|
|
17431
|
+
* @type {DataTypesTaxComponent}
|
|
17432
|
+
* @memberof DataTypesTaxBreakdown
|
|
17433
|
+
*/
|
|
17434
|
+
'cess'?: DataTypesTaxComponent;
|
|
17435
|
+
/**
|
|
17436
|
+
* GST components (India)
|
|
17437
|
+
* @type {DataTypesTaxComponent}
|
|
17438
|
+
* @memberof DataTypesTaxBreakdown
|
|
17439
|
+
*/
|
|
17440
|
+
'cgst'?: DataTypesTaxComponent;
|
|
17441
|
+
/**
|
|
17442
|
+
* Integrated GST
|
|
17443
|
+
* @type {DataTypesTaxComponent}
|
|
17444
|
+
* @memberof DataTypesTaxBreakdown
|
|
17445
|
+
*/
|
|
17446
|
+
'igst'?: DataTypesTaxComponent;
|
|
17447
|
+
/**
|
|
17448
|
+
* Generic tax components (for other countries)
|
|
17449
|
+
* @type {Array<DataTypesTaxComponent>}
|
|
17450
|
+
* @memberof DataTypesTaxBreakdown
|
|
17451
|
+
*/
|
|
17452
|
+
'other_taxes'?: Array<DataTypesTaxComponent>;
|
|
17453
|
+
/**
|
|
17454
|
+
* State GST
|
|
17455
|
+
* @type {DataTypesTaxComponent}
|
|
17456
|
+
* @memberof DataTypesTaxBreakdown
|
|
17457
|
+
*/
|
|
17458
|
+
'sgst'?: DataTypesTaxComponent;
|
|
17459
|
+
}
|
|
17460
|
+
/**
|
|
17461
|
+
*
|
|
17462
|
+
* @export
|
|
17463
|
+
* @interface DataTypesTaxCalculationItem
|
|
17464
|
+
*/
|
|
17465
|
+
export interface DataTypesTaxCalculationItem {
|
|
17466
|
+
/**
|
|
17467
|
+
*
|
|
17468
|
+
* @type {number}
|
|
17469
|
+
* @memberof DataTypesTaxCalculationItem
|
|
17470
|
+
*/
|
|
17471
|
+
'amount': number;
|
|
17472
|
+
/**
|
|
17473
|
+
*
|
|
17474
|
+
* @type {string}
|
|
17475
|
+
* @memberof DataTypesTaxCalculationItem
|
|
17476
|
+
*/
|
|
17477
|
+
'description': string;
|
|
17478
|
+
/**
|
|
17479
|
+
*
|
|
17480
|
+
* @type {string}
|
|
17481
|
+
* @memberof DataTypesTaxCalculationItem
|
|
17482
|
+
*/
|
|
17483
|
+
'exemption_reason'?: string;
|
|
17484
|
+
/**
|
|
17485
|
+
*
|
|
17486
|
+
* @type {string}
|
|
17487
|
+
* @memberof DataTypesTaxCalculationItem
|
|
17488
|
+
*/
|
|
17489
|
+
'hsn_sac_code'?: string;
|
|
17490
|
+
/**
|
|
17491
|
+
*
|
|
17492
|
+
* @type {boolean}
|
|
17493
|
+
* @memberof DataTypesTaxCalculationItem
|
|
17494
|
+
*/
|
|
17495
|
+
'is_tax_exempt'?: boolean;
|
|
17496
|
+
/**
|
|
17497
|
+
*
|
|
17498
|
+
* @type {number}
|
|
17499
|
+
* @memberof DataTypesTaxCalculationItem
|
|
17500
|
+
*/
|
|
17501
|
+
'quantity': number;
|
|
17502
|
+
}
|
|
17503
|
+
/**
|
|
17504
|
+
*
|
|
17505
|
+
* @export
|
|
17506
|
+
* @interface DataTypesTaxCalculationRequest
|
|
17507
|
+
*/
|
|
17508
|
+
export interface DataTypesTaxCalculationRequest {
|
|
17509
|
+
/**
|
|
17510
|
+
*
|
|
17511
|
+
* @type {number}
|
|
17512
|
+
* @memberof DataTypesTaxCalculationRequest
|
|
17513
|
+
*/
|
|
17514
|
+
'amount': number;
|
|
17515
|
+
/**
|
|
17516
|
+
*
|
|
17517
|
+
* @type {string}
|
|
17518
|
+
* @memberof DataTypesTaxCalculationRequest
|
|
17519
|
+
*/
|
|
17520
|
+
'currency': string;
|
|
17521
|
+
/**
|
|
17522
|
+
* null for B2C
|
|
17523
|
+
* @type {number}
|
|
17524
|
+
* @memberof DataTypesTaxCalculationRequest
|
|
17525
|
+
*/
|
|
17526
|
+
'customer_org_id'?: number;
|
|
17527
|
+
/**
|
|
17528
|
+
*
|
|
17529
|
+
* @type {Array<DataTypesTaxCalculationItem>}
|
|
17530
|
+
* @memberof DataTypesTaxCalculationRequest
|
|
17531
|
+
*/
|
|
17532
|
+
'items': Array<DataTypesTaxCalculationItem>;
|
|
17533
|
+
/**
|
|
17534
|
+
* Override if different from customer
|
|
17535
|
+
* @type {string}
|
|
17536
|
+
* @memberof DataTypesTaxCalculationRequest
|
|
17537
|
+
*/
|
|
17538
|
+
'place_of_supply'?: string;
|
|
17539
|
+
/**
|
|
17540
|
+
*
|
|
17541
|
+
* @type {number}
|
|
17542
|
+
* @memberof DataTypesTaxCalculationRequest
|
|
17543
|
+
*/
|
|
17544
|
+
'supplier_org_id': number;
|
|
17545
|
+
/**
|
|
17546
|
+
*
|
|
17547
|
+
* @type {string}
|
|
17548
|
+
* @memberof DataTypesTaxCalculationRequest
|
|
17549
|
+
*/
|
|
17550
|
+
'transaction_date'?: string;
|
|
17551
|
+
}
|
|
17552
|
+
/**
|
|
17553
|
+
*
|
|
17554
|
+
* @export
|
|
17555
|
+
* @interface DataTypesTaxCalculationResponse
|
|
17556
|
+
*/
|
|
17557
|
+
export interface DataTypesTaxCalculationResponse {
|
|
17558
|
+
/**
|
|
17559
|
+
*
|
|
17560
|
+
* @type {Array<DataTypesItemTaxDetails>}
|
|
17561
|
+
* @memberof DataTypesTaxCalculationResponse
|
|
17562
|
+
*/
|
|
17563
|
+
'item_tax_details'?: Array<DataTypesItemTaxDetails>;
|
|
17564
|
+
/**
|
|
17565
|
+
*
|
|
17566
|
+
* @type {boolean}
|
|
17567
|
+
* @memberof DataTypesTaxCalculationResponse
|
|
17568
|
+
*/
|
|
17569
|
+
'reverse_charge'?: boolean;
|
|
17570
|
+
/**
|
|
17571
|
+
*
|
|
17572
|
+
* @type {number}
|
|
17573
|
+
* @memberof DataTypesTaxCalculationResponse
|
|
17574
|
+
*/
|
|
17575
|
+
'subtotal'?: number;
|
|
17576
|
+
/**
|
|
17577
|
+
* \'intrastate\', \'interstate\', \'export\'
|
|
17578
|
+
* @type {string}
|
|
17579
|
+
* @memberof DataTypesTaxCalculationResponse
|
|
17580
|
+
*/
|
|
17581
|
+
'supply_type'?: string;
|
|
17582
|
+
/**
|
|
17583
|
+
*
|
|
17584
|
+
* @type {DataTypesTaxBreakdown}
|
|
17585
|
+
* @memberof DataTypesTaxCalculationResponse
|
|
17586
|
+
*/
|
|
17587
|
+
'tax_breakdown'?: DataTypesTaxBreakdown;
|
|
17588
|
+
/**
|
|
17589
|
+
* \'GST\', \'VAT\', \'Sales Tax\', etc.
|
|
17590
|
+
* @type {string}
|
|
17591
|
+
* @memberof DataTypesTaxCalculationResponse
|
|
17592
|
+
*/
|
|
17593
|
+
'tax_type'?: string;
|
|
17594
|
+
/**
|
|
17595
|
+
*
|
|
17596
|
+
* @type {number}
|
|
17597
|
+
* @memberof DataTypesTaxCalculationResponse
|
|
17598
|
+
*/
|
|
17599
|
+
'total_amount'?: number;
|
|
17600
|
+
/**
|
|
17601
|
+
*
|
|
17602
|
+
* @type {number}
|
|
17603
|
+
* @memberof DataTypesTaxCalculationResponse
|
|
17604
|
+
*/
|
|
17605
|
+
'total_tax'?: number;
|
|
17606
|
+
/**
|
|
17607
|
+
* \'B2B\', \'B2C\', \'B2G\'
|
|
17608
|
+
* @type {string}
|
|
17609
|
+
* @memberof DataTypesTaxCalculationResponse
|
|
17610
|
+
*/
|
|
17611
|
+
'transaction_type'?: string;
|
|
17612
|
+
/**
|
|
17613
|
+
*
|
|
17614
|
+
* @type {Array<string>}
|
|
17615
|
+
* @memberof DataTypesTaxCalculationResponse
|
|
17616
|
+
*/
|
|
17617
|
+
'warnings'?: Array<string>;
|
|
17618
|
+
}
|
|
17619
|
+
/**
|
|
17620
|
+
*
|
|
17621
|
+
* @export
|
|
17622
|
+
* @interface DataTypesTaxComponent
|
|
17623
|
+
*/
|
|
17624
|
+
export interface DataTypesTaxComponent {
|
|
17625
|
+
/**
|
|
17626
|
+
* Calculated amount
|
|
17627
|
+
* @type {number}
|
|
17628
|
+
* @memberof DataTypesTaxComponent
|
|
17629
|
+
*/
|
|
17630
|
+
'tax_amount'?: number;
|
|
17631
|
+
/**
|
|
17632
|
+
* \'CGST\', \'SGST\', \'IGST\', \'VAT\', \'Sales Tax\', etc.
|
|
17633
|
+
* @type {string}
|
|
17634
|
+
* @memberof DataTypesTaxComponent
|
|
17635
|
+
*/
|
|
17636
|
+
'tax_name'?: string;
|
|
17637
|
+
/**
|
|
17638
|
+
* Percentage
|
|
17639
|
+
* @type {number}
|
|
17640
|
+
* @memberof DataTypesTaxComponent
|
|
17641
|
+
*/
|
|
17642
|
+
'tax_rate'?: number;
|
|
17643
|
+
/**
|
|
17644
|
+
* Amount on which tax is calculated
|
|
17645
|
+
* @type {number}
|
|
17646
|
+
* @memberof DataTypesTaxComponent
|
|
17647
|
+
*/
|
|
17648
|
+
'taxable_amount'?: number;
|
|
17649
|
+
}
|
|
16950
17650
|
/**
|
|
16951
17651
|
*
|
|
16952
17652
|
* @export
|
|
@@ -17212,6 +17912,93 @@ export interface DataTypesUpdateOrganizationRequest {
|
|
|
17212
17912
|
*/
|
|
17213
17913
|
'ZipCode'?: string;
|
|
17214
17914
|
}
|
|
17915
|
+
/**
|
|
17916
|
+
*
|
|
17917
|
+
* @export
|
|
17918
|
+
* @interface DataTypesUpdateOrganizationTaxDetailsRequest
|
|
17919
|
+
*/
|
|
17920
|
+
export interface DataTypesUpdateOrganizationTaxDetailsRequest {
|
|
17921
|
+
/**
|
|
17922
|
+
*
|
|
17923
|
+
* @type {DataTypesTaxBillingAddress}
|
|
17924
|
+
* @memberof DataTypesUpdateOrganizationTaxDetailsRequest
|
|
17925
|
+
*/
|
|
17926
|
+
'billing_address'?: DataTypesTaxBillingAddress;
|
|
17927
|
+
/**
|
|
17928
|
+
*
|
|
17929
|
+
* @type {string}
|
|
17930
|
+
* @memberof DataTypesUpdateOrganizationTaxDetailsRequest
|
|
17931
|
+
*/
|
|
17932
|
+
'business_legal_name'?: string;
|
|
17933
|
+
/**
|
|
17934
|
+
*
|
|
17935
|
+
* @type {string}
|
|
17936
|
+
* @memberof DataTypesUpdateOrganizationTaxDetailsRequest
|
|
17937
|
+
*/
|
|
17938
|
+
'business_type'?: string;
|
|
17939
|
+
/**
|
|
17940
|
+
*
|
|
17941
|
+
* @type {string}
|
|
17942
|
+
* @memberof DataTypesUpdateOrganizationTaxDetailsRequest
|
|
17943
|
+
*/
|
|
17944
|
+
'gstin'?: string;
|
|
17945
|
+
/**
|
|
17946
|
+
*
|
|
17947
|
+
* @type {string}
|
|
17948
|
+
* @memberof DataTypesUpdateOrganizationTaxDetailsRequest
|
|
17949
|
+
*/
|
|
17950
|
+
'hsn_sac_code'?: string;
|
|
17951
|
+
/**
|
|
17952
|
+
*
|
|
17953
|
+
* @type {string}
|
|
17954
|
+
* @memberof DataTypesUpdateOrganizationTaxDetailsRequest
|
|
17955
|
+
*/
|
|
17956
|
+
'pan'?: string;
|
|
17957
|
+
/**
|
|
17958
|
+
*
|
|
17959
|
+
* @type {string}
|
|
17960
|
+
* @memberof DataTypesUpdateOrganizationTaxDetailsRequest
|
|
17961
|
+
*/
|
|
17962
|
+
'place_of_supply'?: string;
|
|
17963
|
+
/**
|
|
17964
|
+
*
|
|
17965
|
+
* @type {string}
|
|
17966
|
+
* @memberof DataTypesUpdateOrganizationTaxDetailsRequest
|
|
17967
|
+
*/
|
|
17968
|
+
'tax_exemption_certificate'?: string;
|
|
17969
|
+
/**
|
|
17970
|
+
*
|
|
17971
|
+
* @type {boolean}
|
|
17972
|
+
* @memberof DataTypesUpdateOrganizationTaxDetailsRequest
|
|
17973
|
+
*/
|
|
17974
|
+
'tax_exemption_status'?: boolean;
|
|
17975
|
+
/**
|
|
17976
|
+
*
|
|
17977
|
+
* @type {string}
|
|
17978
|
+
* @memberof DataTypesUpdateOrganizationTaxDetailsRequest
|
|
17979
|
+
*/
|
|
17980
|
+
'tax_exemption_valid_until'?: string;
|
|
17981
|
+
/**
|
|
17982
|
+
*
|
|
17983
|
+
* @type {string}
|
|
17984
|
+
* @memberof DataTypesUpdateOrganizationTaxDetailsRequest
|
|
17985
|
+
*/
|
|
17986
|
+
'tax_registration_country'?: string;
|
|
17987
|
+
/**
|
|
17988
|
+
*
|
|
17989
|
+
* @type {string}
|
|
17990
|
+
* @memberof DataTypesUpdateOrganizationTaxDetailsRequest
|
|
17991
|
+
*/
|
|
17992
|
+
'tax_registration_number'?: string;
|
|
17993
|
+
/**
|
|
17994
|
+
*
|
|
17995
|
+
* @type {{ [key: string]: any; }}
|
|
17996
|
+
* @memberof DataTypesUpdateOrganizationTaxDetailsRequest
|
|
17997
|
+
*/
|
|
17998
|
+
'tax_settings'?: {
|
|
17999
|
+
[key: string]: any;
|
|
18000
|
+
};
|
|
18001
|
+
}
|
|
17215
18002
|
/**
|
|
17216
18003
|
*
|
|
17217
18004
|
* @export
|
|
@@ -18199,6 +18986,328 @@ export interface DataTypesWordWithStatusEnhanced {
|
|
|
18199
18986
|
*/
|
|
18200
18987
|
'wordid'?: number;
|
|
18201
18988
|
}
|
|
18989
|
+
/**
|
|
18990
|
+
*
|
|
18991
|
+
* @export
|
|
18992
|
+
* @interface FeatureLimitServiceAPICallStatus
|
|
18993
|
+
*/
|
|
18994
|
+
export interface FeatureLimitServiceAPICallStatus {
|
|
18995
|
+
/**
|
|
18996
|
+
*
|
|
18997
|
+
* @type {number}
|
|
18998
|
+
* @memberof FeatureLimitServiceAPICallStatus
|
|
18999
|
+
*/
|
|
19000
|
+
'calls_made'?: number;
|
|
19001
|
+
/**
|
|
19002
|
+
*
|
|
19003
|
+
* @type {string}
|
|
19004
|
+
* @memberof FeatureLimitServiceAPICallStatus
|
|
19005
|
+
*/
|
|
19006
|
+
'current_period'?: string;
|
|
19007
|
+
/**
|
|
19008
|
+
*
|
|
19009
|
+
* @type {boolean}
|
|
19010
|
+
* @memberof FeatureLimitServiceAPICallStatus
|
|
19011
|
+
*/
|
|
19012
|
+
'is_exhausted'?: boolean;
|
|
19013
|
+
/**
|
|
19014
|
+
*
|
|
19015
|
+
* @type {number}
|
|
19016
|
+
* @memberof FeatureLimitServiceAPICallStatus
|
|
19017
|
+
*/
|
|
19018
|
+
'limit'?: number;
|
|
19019
|
+
/**
|
|
19020
|
+
*
|
|
19021
|
+
* @type {string}
|
|
19022
|
+
* @memberof FeatureLimitServiceAPICallStatus
|
|
19023
|
+
*/
|
|
19024
|
+
'period_ends_at'?: string;
|
|
19025
|
+
/**
|
|
19026
|
+
*
|
|
19027
|
+
* @type {string}
|
|
19028
|
+
* @memberof FeatureLimitServiceAPICallStatus
|
|
19029
|
+
*/
|
|
19030
|
+
'period_starts_at'?: string;
|
|
19031
|
+
/**
|
|
19032
|
+
*
|
|
19033
|
+
* @type {number}
|
|
19034
|
+
* @memberof FeatureLimitServiceAPICallStatus
|
|
19035
|
+
*/
|
|
19036
|
+
'remaining'?: number;
|
|
19037
|
+
/**
|
|
19038
|
+
*
|
|
19039
|
+
* @type {number}
|
|
19040
|
+
* @memberof FeatureLimitServiceAPICallStatus
|
|
19041
|
+
*/
|
|
19042
|
+
'usage_percent'?: number;
|
|
19043
|
+
}
|
|
19044
|
+
/**
|
|
19045
|
+
*
|
|
19046
|
+
* @export
|
|
19047
|
+
* @interface FeatureLimitServiceCreditStatus
|
|
19048
|
+
*/
|
|
19049
|
+
export interface FeatureLimitServiceCreditStatus {
|
|
19050
|
+
/**
|
|
19051
|
+
*
|
|
19052
|
+
* @type {number}
|
|
19053
|
+
* @memberof FeatureLimitServiceCreditStatus
|
|
19054
|
+
*/
|
|
19055
|
+
'available'?: number;
|
|
19056
|
+
/**
|
|
19057
|
+
*
|
|
19058
|
+
* @type {number}
|
|
19059
|
+
* @memberof FeatureLimitServiceCreditStatus
|
|
19060
|
+
*/
|
|
19061
|
+
'consumed'?: number;
|
|
19062
|
+
/**
|
|
19063
|
+
*
|
|
19064
|
+
* @type {number}
|
|
19065
|
+
* @memberof FeatureLimitServiceCreditStatus
|
|
19066
|
+
*/
|
|
19067
|
+
'expiring_credits'?: number;
|
|
19068
|
+
/**
|
|
19069
|
+
*
|
|
19070
|
+
* @type {string}
|
|
19071
|
+
* @memberof FeatureLimitServiceCreditStatus
|
|
19072
|
+
*/
|
|
19073
|
+
'expiry_date'?: string;
|
|
19074
|
+
/**
|
|
19075
|
+
*
|
|
19076
|
+
* @type {boolean}
|
|
19077
|
+
* @memberof FeatureLimitServiceCreditStatus
|
|
19078
|
+
*/
|
|
19079
|
+
'is_exhausted'?: boolean;
|
|
19080
|
+
/**
|
|
19081
|
+
*
|
|
19082
|
+
* @type {number}
|
|
19083
|
+
* @memberof FeatureLimitServiceCreditStatus
|
|
19084
|
+
*/
|
|
19085
|
+
'total'?: number;
|
|
19086
|
+
/**
|
|
19087
|
+
*
|
|
19088
|
+
* @type {number}
|
|
19089
|
+
* @memberof FeatureLimitServiceCreditStatus
|
|
19090
|
+
*/
|
|
19091
|
+
'usage_percent'?: number;
|
|
19092
|
+
}
|
|
19093
|
+
/**
|
|
19094
|
+
*
|
|
19095
|
+
* @export
|
|
19096
|
+
* @interface FeatureLimitServiceFeatureStatus
|
|
19097
|
+
*/
|
|
19098
|
+
export interface FeatureLimitServiceFeatureStatus {
|
|
19099
|
+
/**
|
|
19100
|
+
*
|
|
19101
|
+
* @type {number}
|
|
19102
|
+
* @memberof FeatureLimitServiceFeatureStatus
|
|
19103
|
+
*/
|
|
19104
|
+
'current_usage'?: number;
|
|
19105
|
+
/**
|
|
19106
|
+
*
|
|
19107
|
+
* @type {string}
|
|
19108
|
+
* @memberof FeatureLimitServiceFeatureStatus
|
|
19109
|
+
*/
|
|
19110
|
+
'feature_name'?: string;
|
|
19111
|
+
/**
|
|
19112
|
+
*
|
|
19113
|
+
* @type {boolean}
|
|
19114
|
+
* @memberof FeatureLimitServiceFeatureStatus
|
|
19115
|
+
*/
|
|
19116
|
+
'is_exhausted'?: boolean;
|
|
19117
|
+
/**
|
|
19118
|
+
*
|
|
19119
|
+
* @type {any}
|
|
19120
|
+
* @memberof FeatureLimitServiceFeatureStatus
|
|
19121
|
+
*/
|
|
19122
|
+
'limit'?: any;
|
|
19123
|
+
/**
|
|
19124
|
+
*
|
|
19125
|
+
* @type {any}
|
|
19126
|
+
* @memberof FeatureLimitServiceFeatureStatus
|
|
19127
|
+
*/
|
|
19128
|
+
'remaining'?: any;
|
|
19129
|
+
/**
|
|
19130
|
+
*
|
|
19131
|
+
* @type {number}
|
|
19132
|
+
* @memberof FeatureLimitServiceFeatureStatus
|
|
19133
|
+
*/
|
|
19134
|
+
'usage_percent'?: number;
|
|
19135
|
+
/**
|
|
19136
|
+
*
|
|
19137
|
+
* @type {string}
|
|
19138
|
+
* @memberof FeatureLimitServiceFeatureStatus
|
|
19139
|
+
*/
|
|
19140
|
+
'will_reset_at'?: string;
|
|
19141
|
+
}
|
|
19142
|
+
/**
|
|
19143
|
+
*
|
|
19144
|
+
* @export
|
|
19145
|
+
* @interface FeatureLimitServiceLimitStatus
|
|
19146
|
+
*/
|
|
19147
|
+
export interface FeatureLimitServiceLimitStatus {
|
|
19148
|
+
/**
|
|
19149
|
+
*
|
|
19150
|
+
* @type {FeatureLimitServiceAPICallStatus}
|
|
19151
|
+
* @memberof FeatureLimitServiceLimitStatus
|
|
19152
|
+
*/
|
|
19153
|
+
'api_calls'?: FeatureLimitServiceAPICallStatus;
|
|
19154
|
+
/**
|
|
19155
|
+
*
|
|
19156
|
+
* @type {string}
|
|
19157
|
+
* @memberof FeatureLimitServiceLimitStatus
|
|
19158
|
+
*/
|
|
19159
|
+
'block_reason'?: string;
|
|
19160
|
+
/**
|
|
19161
|
+
*
|
|
19162
|
+
* @type {FeatureLimitServiceCreditStatus}
|
|
19163
|
+
* @memberof FeatureLimitServiceLimitStatus
|
|
19164
|
+
*/
|
|
19165
|
+
'credits'?: FeatureLimitServiceCreditStatus;
|
|
19166
|
+
/**
|
|
19167
|
+
*
|
|
19168
|
+
* @type {{ [key: string]: FeatureLimitServiceFeatureStatus; }}
|
|
19169
|
+
* @memberof FeatureLimitServiceLimitStatus
|
|
19170
|
+
*/
|
|
19171
|
+
'features'?: {
|
|
19172
|
+
[key: string]: FeatureLimitServiceFeatureStatus;
|
|
19173
|
+
};
|
|
19174
|
+
/**
|
|
19175
|
+
*
|
|
19176
|
+
* @type {boolean}
|
|
19177
|
+
* @memberof FeatureLimitServiceLimitStatus
|
|
19178
|
+
*/
|
|
19179
|
+
'is_blocked'?: boolean;
|
|
19180
|
+
/**
|
|
19181
|
+
*
|
|
19182
|
+
* @type {string}
|
|
19183
|
+
* @memberof FeatureLimitServiceLimitStatus
|
|
19184
|
+
*/
|
|
19185
|
+
'last_updated'?: string;
|
|
19186
|
+
/**
|
|
19187
|
+
*
|
|
19188
|
+
* @type {string}
|
|
19189
|
+
* @memberof FeatureLimitServiceLimitStatus
|
|
19190
|
+
*/
|
|
19191
|
+
'next_reset'?: string;
|
|
19192
|
+
/**
|
|
19193
|
+
*
|
|
19194
|
+
* @type {number}
|
|
19195
|
+
* @memberof FeatureLimitServiceLimitStatus
|
|
19196
|
+
*/
|
|
19197
|
+
'org_id'?: number;
|
|
19198
|
+
/**
|
|
19199
|
+
*
|
|
19200
|
+
* @type {number}
|
|
19201
|
+
* @memberof FeatureLimitServiceLimitStatus
|
|
19202
|
+
*/
|
|
19203
|
+
'plan_id'?: number;
|
|
19204
|
+
/**
|
|
19205
|
+
*
|
|
19206
|
+
* @type {string}
|
|
19207
|
+
* @memberof FeatureLimitServiceLimitStatus
|
|
19208
|
+
*/
|
|
19209
|
+
'plan_name'?: string;
|
|
19210
|
+
}
|
|
19211
|
+
/**
|
|
19212
|
+
*
|
|
19213
|
+
* @export
|
|
19214
|
+
* @interface FeatureLimitsCheckGet200Response
|
|
19215
|
+
*/
|
|
19216
|
+
export interface FeatureLimitsCheckGet200Response {
|
|
19217
|
+
/**
|
|
19218
|
+
*
|
|
19219
|
+
* @type {DataTypesFeatureCheckResult}
|
|
19220
|
+
* @memberof FeatureLimitsCheckGet200Response
|
|
19221
|
+
*/
|
|
19222
|
+
'data'?: DataTypesFeatureCheckResult;
|
|
19223
|
+
/**
|
|
19224
|
+
*
|
|
19225
|
+
* @type {string}
|
|
19226
|
+
* @memberof FeatureLimitsCheckGet200Response
|
|
19227
|
+
*/
|
|
19228
|
+
'message'?: string;
|
|
19229
|
+
/**
|
|
19230
|
+
*
|
|
19231
|
+
* @type {number}
|
|
19232
|
+
* @memberof FeatureLimitsCheckGet200Response
|
|
19233
|
+
*/
|
|
19234
|
+
'status'?: number;
|
|
19235
|
+
}
|
|
19236
|
+
/**
|
|
19237
|
+
*
|
|
19238
|
+
* @export
|
|
19239
|
+
* @interface FeatureLimitsHistoryGet200Response
|
|
19240
|
+
*/
|
|
19241
|
+
export interface FeatureLimitsHistoryGet200Response {
|
|
19242
|
+
/**
|
|
19243
|
+
*
|
|
19244
|
+
* @type {Array<DataTypesFeatureUsageHistory>}
|
|
19245
|
+
* @memberof FeatureLimitsHistoryGet200Response
|
|
19246
|
+
*/
|
|
19247
|
+
'data'?: Array<DataTypesFeatureUsageHistory>;
|
|
19248
|
+
/**
|
|
19249
|
+
*
|
|
19250
|
+
* @type {string}
|
|
19251
|
+
* @memberof FeatureLimitsHistoryGet200Response
|
|
19252
|
+
*/
|
|
19253
|
+
'message'?: string;
|
|
19254
|
+
/**
|
|
19255
|
+
*
|
|
19256
|
+
* @type {number}
|
|
19257
|
+
* @memberof FeatureLimitsHistoryGet200Response
|
|
19258
|
+
*/
|
|
19259
|
+
'status'?: number;
|
|
19260
|
+
}
|
|
19261
|
+
/**
|
|
19262
|
+
*
|
|
19263
|
+
* @export
|
|
19264
|
+
* @interface FeatureLimitsPlanGet200Response
|
|
19265
|
+
*/
|
|
19266
|
+
export interface FeatureLimitsPlanGet200Response {
|
|
19267
|
+
/**
|
|
19268
|
+
*
|
|
19269
|
+
* @type {DataTypesPlanFeatures}
|
|
19270
|
+
* @memberof FeatureLimitsPlanGet200Response
|
|
19271
|
+
*/
|
|
19272
|
+
'data'?: DataTypesPlanFeatures;
|
|
19273
|
+
/**
|
|
19274
|
+
*
|
|
19275
|
+
* @type {string}
|
|
19276
|
+
* @memberof FeatureLimitsPlanGet200Response
|
|
19277
|
+
*/
|
|
19278
|
+
'message'?: string;
|
|
19279
|
+
/**
|
|
19280
|
+
*
|
|
19281
|
+
* @type {number}
|
|
19282
|
+
* @memberof FeatureLimitsPlanGet200Response
|
|
19283
|
+
*/
|
|
19284
|
+
'status'?: number;
|
|
19285
|
+
}
|
|
19286
|
+
/**
|
|
19287
|
+
*
|
|
19288
|
+
* @export
|
|
19289
|
+
* @interface FeatureLimitsUsageGet200Response
|
|
19290
|
+
*/
|
|
19291
|
+
export interface FeatureLimitsUsageGet200Response {
|
|
19292
|
+
/**
|
|
19293
|
+
*
|
|
19294
|
+
* @type {Array<DataTypesFeatureUsageStats>}
|
|
19295
|
+
* @memberof FeatureLimitsUsageGet200Response
|
|
19296
|
+
*/
|
|
19297
|
+
'data'?: Array<DataTypesFeatureUsageStats>;
|
|
19298
|
+
/**
|
|
19299
|
+
*
|
|
19300
|
+
* @type {string}
|
|
19301
|
+
* @memberof FeatureLimitsUsageGet200Response
|
|
19302
|
+
*/
|
|
19303
|
+
'message'?: string;
|
|
19304
|
+
/**
|
|
19305
|
+
*
|
|
19306
|
+
* @type {number}
|
|
19307
|
+
* @memberof FeatureLimitsUsageGet200Response
|
|
19308
|
+
*/
|
|
19309
|
+
'status'?: number;
|
|
19310
|
+
}
|
|
18202
19311
|
/**
|
|
18203
19312
|
*
|
|
18204
19313
|
* @export
|
|
@@ -18565,6 +19674,154 @@ export interface StoreRouteAPIUsageLogEntry {
|
|
|
18565
19674
|
*/
|
|
18566
19675
|
'url'?: string;
|
|
18567
19676
|
}
|
|
19677
|
+
/**
|
|
19678
|
+
*
|
|
19679
|
+
* @export
|
|
19680
|
+
* @interface StoreRouteDailyStats
|
|
19681
|
+
*/
|
|
19682
|
+
export interface StoreRouteDailyStats {
|
|
19683
|
+
/**
|
|
19684
|
+
*
|
|
19685
|
+
* @type {string}
|
|
19686
|
+
* @memberof StoreRouteDailyStats
|
|
19687
|
+
*/
|
|
19688
|
+
'date'?: string;
|
|
19689
|
+
/**
|
|
19690
|
+
*
|
|
19691
|
+
* @type {StoreRouteOperationsStats}
|
|
19692
|
+
* @memberof StoreRouteDailyStats
|
|
19693
|
+
*/
|
|
19694
|
+
'operations'?: StoreRouteOperationsStats;
|
|
19695
|
+
/**
|
|
19696
|
+
*
|
|
19697
|
+
* @type {StoreRouteRecordsStats}
|
|
19698
|
+
* @memberof StoreRouteDailyStats
|
|
19699
|
+
*/
|
|
19700
|
+
'records'?: StoreRouteRecordsStats;
|
|
19701
|
+
/**
|
|
19702
|
+
*
|
|
19703
|
+
* @type {number}
|
|
19704
|
+
* @memberof StoreRouteDailyStats
|
|
19705
|
+
*/
|
|
19706
|
+
'search_requests'?: number;
|
|
19707
|
+
/**
|
|
19708
|
+
*
|
|
19709
|
+
* @type {StoreRouteResponseTimeStats}
|
|
19710
|
+
* @memberof StoreRouteDailyStats
|
|
19711
|
+
*/
|
|
19712
|
+
'search_response_time'?: StoreRouteResponseTimeStats;
|
|
19713
|
+
}
|
|
19714
|
+
/**
|
|
19715
|
+
*
|
|
19716
|
+
* @export
|
|
19717
|
+
* @interface StoreRouteDailyStatsResponse
|
|
19718
|
+
*/
|
|
19719
|
+
export interface StoreRouteDailyStatsResponse {
|
|
19720
|
+
/**
|
|
19721
|
+
*
|
|
19722
|
+
* @type {Array<StoreRouteDailyStats>}
|
|
19723
|
+
* @memberof StoreRouteDailyStatsResponse
|
|
19724
|
+
*/
|
|
19725
|
+
'data'?: Array<StoreRouteDailyStats>;
|
|
19726
|
+
/**
|
|
19727
|
+
*
|
|
19728
|
+
* @type {string}
|
|
19729
|
+
* @memberof StoreRouteDailyStatsResponse
|
|
19730
|
+
*/
|
|
19731
|
+
'message'?: string;
|
|
19732
|
+
/**
|
|
19733
|
+
*
|
|
19734
|
+
* @type {StoreRouteDailyStatsResponseMeta}
|
|
19735
|
+
* @memberof StoreRouteDailyStatsResponse
|
|
19736
|
+
*/
|
|
19737
|
+
'meta'?: StoreRouteDailyStatsResponseMeta;
|
|
19738
|
+
/**
|
|
19739
|
+
*
|
|
19740
|
+
* @type {number}
|
|
19741
|
+
* @memberof StoreRouteDailyStatsResponse
|
|
19742
|
+
*/
|
|
19743
|
+
'status'?: number;
|
|
19744
|
+
}
|
|
19745
|
+
/**
|
|
19746
|
+
*
|
|
19747
|
+
* @export
|
|
19748
|
+
* @interface StoreRouteDailyStatsResponseMeta
|
|
19749
|
+
*/
|
|
19750
|
+
export interface StoreRouteDailyStatsResponseMeta {
|
|
19751
|
+
/**
|
|
19752
|
+
*
|
|
19753
|
+
* @type {string}
|
|
19754
|
+
* @memberof StoreRouteDailyStatsResponseMeta
|
|
19755
|
+
*/
|
|
19756
|
+
'end_date'?: string;
|
|
19757
|
+
/**
|
|
19758
|
+
*
|
|
19759
|
+
* @type {string}
|
|
19760
|
+
* @memberof StoreRouteDailyStatsResponseMeta
|
|
19761
|
+
*/
|
|
19762
|
+
'start_date'?: string;
|
|
19763
|
+
/**
|
|
19764
|
+
*
|
|
19765
|
+
* @type {number}
|
|
19766
|
+
* @memberof StoreRouteDailyStatsResponseMeta
|
|
19767
|
+
*/
|
|
19768
|
+
'total_days'?: number;
|
|
19769
|
+
}
|
|
19770
|
+
/**
|
|
19771
|
+
*
|
|
19772
|
+
* @export
|
|
19773
|
+
* @interface StoreRouteOperationsStats
|
|
19774
|
+
*/
|
|
19775
|
+
export interface StoreRouteOperationsStats {
|
|
19776
|
+
/**
|
|
19777
|
+
*
|
|
19778
|
+
* @type {number}
|
|
19779
|
+
* @memberof StoreRouteOperationsStats
|
|
19780
|
+
*/
|
|
19781
|
+
'acl_operations'?: number;
|
|
19782
|
+
/**
|
|
19783
|
+
*
|
|
19784
|
+
* @type {number}
|
|
19785
|
+
* @memberof StoreRouteOperationsStats
|
|
19786
|
+
*/
|
|
19787
|
+
'index_operations'?: number;
|
|
19788
|
+
/**
|
|
19789
|
+
*
|
|
19790
|
+
* @type {number}
|
|
19791
|
+
* @memberof StoreRouteOperationsStats
|
|
19792
|
+
*/
|
|
19793
|
+
'recommend_requests'?: number;
|
|
19794
|
+
/**
|
|
19795
|
+
*
|
|
19796
|
+
* @type {number}
|
|
19797
|
+
* @memberof StoreRouteOperationsStats
|
|
19798
|
+
*/
|
|
19799
|
+
'record_operations'?: number;
|
|
19800
|
+
/**
|
|
19801
|
+
*
|
|
19802
|
+
* @type {number}
|
|
19803
|
+
* @memberof StoreRouteOperationsStats
|
|
19804
|
+
*/
|
|
19805
|
+
'rules_operations'?: number;
|
|
19806
|
+
/**
|
|
19807
|
+
*
|
|
19808
|
+
* @type {StoreRouteSearchOperationsBreakdown}
|
|
19809
|
+
* @memberof StoreRouteOperationsStats
|
|
19810
|
+
*/
|
|
19811
|
+
'search_operations'?: StoreRouteSearchOperationsBreakdown;
|
|
19812
|
+
/**
|
|
19813
|
+
*
|
|
19814
|
+
* @type {number}
|
|
19815
|
+
* @memberof StoreRouteOperationsStats
|
|
19816
|
+
*/
|
|
19817
|
+
'synonym_operations'?: number;
|
|
19818
|
+
/**
|
|
19819
|
+
*
|
|
19820
|
+
* @type {number}
|
|
19821
|
+
* @memberof StoreRouteOperationsStats
|
|
19822
|
+
*/
|
|
19823
|
+
'total_operations'?: number;
|
|
19824
|
+
}
|
|
18568
19825
|
/**
|
|
18569
19826
|
*
|
|
18570
19827
|
* @export
|
|
@@ -18596,6 +19853,161 @@ export interface StoreRoutePaginationMeta {
|
|
|
18596
19853
|
*/
|
|
18597
19854
|
'total_pages'?: number;
|
|
18598
19855
|
}
|
|
19856
|
+
/**
|
|
19857
|
+
*
|
|
19858
|
+
* @export
|
|
19859
|
+
* @interface StoreRouteRecordsStats
|
|
19860
|
+
*/
|
|
19861
|
+
export interface StoreRouteRecordsStats {
|
|
19862
|
+
/**
|
|
19863
|
+
*
|
|
19864
|
+
* @type {number}
|
|
19865
|
+
* @memberof StoreRouteRecordsStats
|
|
19866
|
+
*/
|
|
19867
|
+
'included_in_plan'?: number;
|
|
19868
|
+
/**
|
|
19869
|
+
*
|
|
19870
|
+
* @type {number}
|
|
19871
|
+
* @memberof StoreRouteRecordsStats
|
|
19872
|
+
*/
|
|
19873
|
+
'percentage_used'?: number;
|
|
19874
|
+
/**
|
|
19875
|
+
*
|
|
19876
|
+
* @type {number}
|
|
19877
|
+
* @memberof StoreRouteRecordsStats
|
|
19878
|
+
*/
|
|
19879
|
+
'used'?: number;
|
|
19880
|
+
}
|
|
19881
|
+
/**
|
|
19882
|
+
*
|
|
19883
|
+
* @export
|
|
19884
|
+
* @interface StoreRouteResponseTimeStats
|
|
19885
|
+
*/
|
|
19886
|
+
export interface StoreRouteResponseTimeStats {
|
|
19887
|
+
/**
|
|
19888
|
+
*
|
|
19889
|
+
* @type {number}
|
|
19890
|
+
* @memberof StoreRouteResponseTimeStats
|
|
19891
|
+
*/
|
|
19892
|
+
'average_ms'?: number;
|
|
19893
|
+
/**
|
|
19894
|
+
*
|
|
19895
|
+
* @type {number}
|
|
19896
|
+
* @memberof StoreRouteResponseTimeStats
|
|
19897
|
+
*/
|
|
19898
|
+
'max_ms'?: number;
|
|
19899
|
+
/**
|
|
19900
|
+
*
|
|
19901
|
+
* @type {number}
|
|
19902
|
+
* @memberof StoreRouteResponseTimeStats
|
|
19903
|
+
*/
|
|
19904
|
+
'min_ms'?: number;
|
|
19905
|
+
/**
|
|
19906
|
+
*
|
|
19907
|
+
* @type {number}
|
|
19908
|
+
* @memberof StoreRouteResponseTimeStats
|
|
19909
|
+
*/
|
|
19910
|
+
'percentile_90_ms'?: number;
|
|
19911
|
+
/**
|
|
19912
|
+
*
|
|
19913
|
+
* @type {number}
|
|
19914
|
+
* @memberof StoreRouteResponseTimeStats
|
|
19915
|
+
*/
|
|
19916
|
+
'percentile_99_ms'?: number;
|
|
19917
|
+
}
|
|
19918
|
+
/**
|
|
19919
|
+
*
|
|
19920
|
+
* @export
|
|
19921
|
+
* @interface StoreRouteSearchOperationsBreakdown
|
|
19922
|
+
*/
|
|
19923
|
+
export interface StoreRouteSearchOperationsBreakdown {
|
|
19924
|
+
/**
|
|
19925
|
+
*
|
|
19926
|
+
* @type {number}
|
|
19927
|
+
* @memberof StoreRouteSearchOperationsBreakdown
|
|
19928
|
+
*/
|
|
19929
|
+
'multi_queries'?: number;
|
|
19930
|
+
/**
|
|
19931
|
+
*
|
|
19932
|
+
* @type {number}
|
|
19933
|
+
* @memberof StoreRouteSearchOperationsBreakdown
|
|
19934
|
+
*/
|
|
19935
|
+
'single_queries'?: number;
|
|
19936
|
+
/**
|
|
19937
|
+
*
|
|
19938
|
+
* @type {number}
|
|
19939
|
+
* @memberof StoreRouteSearchOperationsBreakdown
|
|
19940
|
+
*/
|
|
19941
|
+
'total'?: number;
|
|
19942
|
+
}
|
|
19943
|
+
/**
|
|
19944
|
+
*
|
|
19945
|
+
* @export
|
|
19946
|
+
* @interface StoreRouteTimeSeriesMeta
|
|
19947
|
+
*/
|
|
19948
|
+
export interface StoreRouteTimeSeriesMeta {
|
|
19949
|
+
/**
|
|
19950
|
+
*
|
|
19951
|
+
* @type {number}
|
|
19952
|
+
* @memberof StoreRouteTimeSeriesMeta
|
|
19953
|
+
*/
|
|
19954
|
+
'data_points'?: number;
|
|
19955
|
+
/**
|
|
19956
|
+
*
|
|
19957
|
+
* @type {string}
|
|
19958
|
+
* @memberof StoreRouteTimeSeriesMeta
|
|
19959
|
+
*/
|
|
19960
|
+
'end_date'?: string;
|
|
19961
|
+
/**
|
|
19962
|
+
*
|
|
19963
|
+
* @type {string}
|
|
19964
|
+
* @memberof StoreRouteTimeSeriesMeta
|
|
19965
|
+
*/
|
|
19966
|
+
'start_date'?: string;
|
|
19967
|
+
/**
|
|
19968
|
+
*
|
|
19969
|
+
* @type {number}
|
|
19970
|
+
* @memberof StoreRouteTimeSeriesMeta
|
|
19971
|
+
*/
|
|
19972
|
+
'total_days'?: number;
|
|
19973
|
+
}
|
|
19974
|
+
/**
|
|
19975
|
+
*
|
|
19976
|
+
* @export
|
|
19977
|
+
* @interface StoreRouteTimeSeriesResponse
|
|
19978
|
+
*/
|
|
19979
|
+
export interface StoreRouteTimeSeriesResponse {
|
|
19980
|
+
/**
|
|
19981
|
+
* Can be []TimeSeriesDataPoint or AllMetricsData
|
|
19982
|
+
* @type {any}
|
|
19983
|
+
* @memberof StoreRouteTimeSeriesResponse
|
|
19984
|
+
*/
|
|
19985
|
+
'data'?: any;
|
|
19986
|
+
/**
|
|
19987
|
+
*
|
|
19988
|
+
* @type {string}
|
|
19989
|
+
* @memberof StoreRouteTimeSeriesResponse
|
|
19990
|
+
*/
|
|
19991
|
+
'message'?: string;
|
|
19992
|
+
/**
|
|
19993
|
+
*
|
|
19994
|
+
* @type {StoreRouteTimeSeriesMeta}
|
|
19995
|
+
* @memberof StoreRouteTimeSeriesResponse
|
|
19996
|
+
*/
|
|
19997
|
+
'meta'?: StoreRouteTimeSeriesMeta;
|
|
19998
|
+
/**
|
|
19999
|
+
*
|
|
20000
|
+
* @type {string}
|
|
20001
|
+
* @memberof StoreRouteTimeSeriesResponse
|
|
20002
|
+
*/
|
|
20003
|
+
'metric'?: string;
|
|
20004
|
+
/**
|
|
20005
|
+
*
|
|
20006
|
+
* @type {number}
|
|
20007
|
+
* @memberof StoreRouteTimeSeriesResponse
|
|
20008
|
+
*/
|
|
20009
|
+
'status'?: number;
|
|
20010
|
+
}
|
|
18599
20011
|
/**
|
|
18600
20012
|
*
|
|
18601
20013
|
* @export
|
|
@@ -22698,6 +24110,13 @@ export declare const BillingDashboardApiAxiosParamCreator: (configuration?: Conf
|
|
|
22698
24110
|
* @throws {RequiredError}
|
|
22699
24111
|
*/
|
|
22700
24112
|
adminBillingAlertsPost: (dataTypesBillingAlertRequest: DataTypesBillingAlertRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
24113
|
+
/**
|
|
24114
|
+
* Returns available alert types and their configurations for the frontend
|
|
24115
|
+
* @summary Get billing alert types
|
|
24116
|
+
* @param {*} [options] Override http request option.
|
|
24117
|
+
* @throws {RequiredError}
|
|
24118
|
+
*/
|
|
24119
|
+
adminBillingAlertsTypesGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
22701
24120
|
/**
|
|
22702
24121
|
* Retrieves paginated list of credit consumption records with filtering options for the authenticated user\'s organization
|
|
22703
24122
|
* @summary Get credit consumption
|
|
@@ -22793,7 +24212,7 @@ export declare const BillingDashboardApiAxiosParamCreator: (configuration?: Conf
|
|
|
22793
24212
|
*/
|
|
22794
24213
|
adminBillingInvoicesIdDelete: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
22795
24214
|
/**
|
|
22796
|
-
*
|
|
24215
|
+
* Returns an invoice as a base64-encoded PDF blob for frontend download. PDFs are cached in S3 for performance.
|
|
22797
24216
|
* @summary Download invoice
|
|
22798
24217
|
* @param {string} id Invoice ID
|
|
22799
24218
|
* @param {*} [options] Override http request option.
|
|
@@ -22956,6 +24375,13 @@ export declare const BillingDashboardApiFp: (configuration?: Configuration) => {
|
|
|
22956
24375
|
* @throws {RequiredError}
|
|
22957
24376
|
*/
|
|
22958
24377
|
adminBillingAlertsPost(dataTypesBillingAlertRequest: DataTypesBillingAlertRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
24378
|
+
/**
|
|
24379
|
+
* Returns available alert types and their configurations for the frontend
|
|
24380
|
+
* @summary Get billing alert types
|
|
24381
|
+
* @param {*} [options] Override http request option.
|
|
24382
|
+
* @throws {RequiredError}
|
|
24383
|
+
*/
|
|
24384
|
+
adminBillingAlertsTypesGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
22959
24385
|
/**
|
|
22960
24386
|
* Retrieves paginated list of credit consumption records with filtering options for the authenticated user\'s organization
|
|
22961
24387
|
* @summary Get credit consumption
|
|
@@ -23051,13 +24477,13 @@ export declare const BillingDashboardApiFp: (configuration?: Configuration) => {
|
|
|
23051
24477
|
*/
|
|
23052
24478
|
adminBillingInvoicesIdDelete(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
23053
24479
|
/**
|
|
23054
|
-
*
|
|
24480
|
+
* Returns an invoice as a base64-encoded PDF blob for frontend download. PDFs are cached in S3 for performance.
|
|
23055
24481
|
* @summary Download invoice
|
|
23056
24482
|
* @param {string} id Invoice ID
|
|
23057
24483
|
* @param {*} [options] Override http request option.
|
|
23058
24484
|
* @throws {RequiredError}
|
|
23059
24485
|
*/
|
|
23060
|
-
adminBillingInvoicesIdDownloadGet(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
24486
|
+
adminBillingInvoicesIdDownloadGet(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
23061
24487
|
/**
|
|
23062
24488
|
* Retrieves a single invoice by ID
|
|
23063
24489
|
* @summary Get invoice
|
|
@@ -23214,6 +24640,13 @@ export declare const BillingDashboardApiFactory: (configuration?: Configuration,
|
|
|
23214
24640
|
* @throws {RequiredError}
|
|
23215
24641
|
*/
|
|
23216
24642
|
adminBillingAlertsPost(dataTypesBillingAlertRequest: DataTypesBillingAlertRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
24643
|
+
/**
|
|
24644
|
+
* Returns available alert types and their configurations for the frontend
|
|
24645
|
+
* @summary Get billing alert types
|
|
24646
|
+
* @param {*} [options] Override http request option.
|
|
24647
|
+
* @throws {RequiredError}
|
|
24648
|
+
*/
|
|
24649
|
+
adminBillingAlertsTypesGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
23217
24650
|
/**
|
|
23218
24651
|
* Retrieves paginated list of credit consumption records with filtering options for the authenticated user\'s organization
|
|
23219
24652
|
* @summary Get credit consumption
|
|
@@ -23309,13 +24742,13 @@ export declare const BillingDashboardApiFactory: (configuration?: Configuration,
|
|
|
23309
24742
|
*/
|
|
23310
24743
|
adminBillingInvoicesIdDelete(id: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
23311
24744
|
/**
|
|
23312
|
-
*
|
|
24745
|
+
* Returns an invoice as a base64-encoded PDF blob for frontend download. PDFs are cached in S3 for performance.
|
|
23313
24746
|
* @summary Download invoice
|
|
23314
24747
|
* @param {string} id Invoice ID
|
|
23315
24748
|
* @param {*} [options] Override http request option.
|
|
23316
24749
|
* @throws {RequiredError}
|
|
23317
24750
|
*/
|
|
23318
|
-
adminBillingInvoicesIdDownloadGet(id: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
24751
|
+
adminBillingInvoicesIdDownloadGet(id: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
23319
24752
|
/**
|
|
23320
24753
|
* Retrieves a single invoice by ID
|
|
23321
24754
|
* @summary Get invoice
|
|
@@ -23478,6 +24911,14 @@ export declare class BillingDashboardApi extends BaseAPI {
|
|
|
23478
24911
|
* @memberof BillingDashboardApi
|
|
23479
24912
|
*/
|
|
23480
24913
|
adminBillingAlertsPost(dataTypesBillingAlertRequest: DataTypesBillingAlertRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
24914
|
+
/**
|
|
24915
|
+
* Returns available alert types and their configurations for the frontend
|
|
24916
|
+
* @summary Get billing alert types
|
|
24917
|
+
* @param {*} [options] Override http request option.
|
|
24918
|
+
* @throws {RequiredError}
|
|
24919
|
+
* @memberof BillingDashboardApi
|
|
24920
|
+
*/
|
|
24921
|
+
adminBillingAlertsTypesGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
23481
24922
|
/**
|
|
23482
24923
|
* Retrieves paginated list of credit consumption records with filtering options for the authenticated user\'s organization
|
|
23483
24924
|
* @summary Get credit consumption
|
|
@@ -23582,14 +25023,14 @@ export declare class BillingDashboardApi extends BaseAPI {
|
|
|
23582
25023
|
*/
|
|
23583
25024
|
adminBillingInvoicesIdDelete(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
23584
25025
|
/**
|
|
23585
|
-
*
|
|
25026
|
+
* Returns an invoice as a base64-encoded PDF blob for frontend download. PDFs are cached in S3 for performance.
|
|
23586
25027
|
* @summary Download invoice
|
|
23587
25028
|
* @param {string} id Invoice ID
|
|
23588
25029
|
* @param {*} [options] Override http request option.
|
|
23589
25030
|
* @throws {RequiredError}
|
|
23590
25031
|
* @memberof BillingDashboardApi
|
|
23591
25032
|
*/
|
|
23592
|
-
adminBillingInvoicesIdDownloadGet(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
25033
|
+
adminBillingInvoicesIdDownloadGet(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
23593
25034
|
/**
|
|
23594
25035
|
* Retrieves a single invoice by ID
|
|
23595
25036
|
* @summary Get invoice
|
|
@@ -24880,7 +26321,7 @@ export declare const FeatureLimitsApiAxiosParamCreator: (configuration?: Configu
|
|
|
24880
26321
|
* @param {*} [options] Override http request option.
|
|
24881
26322
|
* @throws {RequiredError}
|
|
24882
26323
|
*/
|
|
24883
|
-
|
|
26324
|
+
adminFeatureLimitsViolationsGet: (featureName?: string, limit?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
24884
26325
|
/**
|
|
24885
26326
|
* Checks if a specific feature is within limits without incrementing usage
|
|
24886
26327
|
* @summary Check if a feature can be used
|
|
@@ -24889,7 +26330,7 @@ export declare const FeatureLimitsApiAxiosParamCreator: (configuration?: Configu
|
|
|
24889
26330
|
* @param {*} [options] Override http request option.
|
|
24890
26331
|
* @throws {RequiredError}
|
|
24891
26332
|
*/
|
|
24892
|
-
|
|
26333
|
+
featureLimitsCheckGet: (featureName: string, amount?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
24893
26334
|
/**
|
|
24894
26335
|
* Retrieves historical feature usage events for the organization
|
|
24895
26336
|
* @summary Get feature usage history
|
|
@@ -24898,21 +26339,35 @@ export declare const FeatureLimitsApiAxiosParamCreator: (configuration?: Configu
|
|
|
24898
26339
|
* @param {*} [options] Override http request option.
|
|
24899
26340
|
* @throws {RequiredError}
|
|
24900
26341
|
*/
|
|
24901
|
-
|
|
26342
|
+
featureLimitsHistoryGet: (featureName?: string, limit?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
24902
26343
|
/**
|
|
24903
26344
|
* Retrieves the organization\'s current plan with all feature limits
|
|
24904
26345
|
* @summary Get organization plan features
|
|
24905
26346
|
* @param {*} [options] Override http request option.
|
|
24906
26347
|
* @throws {RequiredError}
|
|
24907
26348
|
*/
|
|
24908
|
-
|
|
26349
|
+
featureLimitsPlanGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
26350
|
+
/**
|
|
26351
|
+
* Returns plan details and feature availability map for UI rendering
|
|
26352
|
+
* @summary Get plan information for frontend
|
|
26353
|
+
* @param {*} [options] Override http request option.
|
|
26354
|
+
* @throws {RequiredError}
|
|
26355
|
+
*/
|
|
26356
|
+
featureLimitsPlanInfoGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
26357
|
+
/**
|
|
26358
|
+
* Retrieves comprehensive real-time limit status for the organization including all features, credits, and API calls
|
|
26359
|
+
* @summary Get real-time limit status
|
|
26360
|
+
* @param {*} [options] Override http request option.
|
|
26361
|
+
* @throws {RequiredError}
|
|
26362
|
+
*/
|
|
26363
|
+
featureLimitsStatusGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
24909
26364
|
/**
|
|
24910
26365
|
* Retrieves current feature usage statistics for the organization
|
|
24911
26366
|
* @summary Get feature usage statistics
|
|
24912
26367
|
* @param {*} [options] Override http request option.
|
|
24913
26368
|
* @throws {RequiredError}
|
|
24914
26369
|
*/
|
|
24915
|
-
|
|
26370
|
+
featureLimitsUsageGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
24916
26371
|
};
|
|
24917
26372
|
/**
|
|
24918
26373
|
* FeatureLimitsApi - functional programming interface
|
|
@@ -24927,7 +26382,7 @@ export declare const FeatureLimitsApiFp: (configuration?: Configuration) => {
|
|
|
24927
26382
|
* @param {*} [options] Override http request option.
|
|
24928
26383
|
* @throws {RequiredError}
|
|
24929
26384
|
*/
|
|
24930
|
-
|
|
26385
|
+
adminFeatureLimitsViolationsGet(featureName?: string, limit?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminFeatureLimitsViolationsGet200Response>>;
|
|
24931
26386
|
/**
|
|
24932
26387
|
* Checks if a specific feature is within limits without incrementing usage
|
|
24933
26388
|
* @summary Check if a feature can be used
|
|
@@ -24936,7 +26391,7 @@ export declare const FeatureLimitsApiFp: (configuration?: Configuration) => {
|
|
|
24936
26391
|
* @param {*} [options] Override http request option.
|
|
24937
26392
|
* @throws {RequiredError}
|
|
24938
26393
|
*/
|
|
24939
|
-
|
|
26394
|
+
featureLimitsCheckGet(featureName: string, amount?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FeatureLimitsCheckGet200Response>>;
|
|
24940
26395
|
/**
|
|
24941
26396
|
* Retrieves historical feature usage events for the organization
|
|
24942
26397
|
* @summary Get feature usage history
|
|
@@ -24945,21 +26400,37 @@ export declare const FeatureLimitsApiFp: (configuration?: Configuration) => {
|
|
|
24945
26400
|
* @param {*} [options] Override http request option.
|
|
24946
26401
|
* @throws {RequiredError}
|
|
24947
26402
|
*/
|
|
24948
|
-
|
|
26403
|
+
featureLimitsHistoryGet(featureName?: string, limit?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FeatureLimitsHistoryGet200Response>>;
|
|
24949
26404
|
/**
|
|
24950
26405
|
* Retrieves the organization\'s current plan with all feature limits
|
|
24951
26406
|
* @summary Get organization plan features
|
|
24952
26407
|
* @param {*} [options] Override http request option.
|
|
24953
26408
|
* @throws {RequiredError}
|
|
24954
26409
|
*/
|
|
24955
|
-
|
|
26410
|
+
featureLimitsPlanGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FeatureLimitsPlanGet200Response>>;
|
|
26411
|
+
/**
|
|
26412
|
+
* Returns plan details and feature availability map for UI rendering
|
|
26413
|
+
* @summary Get plan information for frontend
|
|
26414
|
+
* @param {*} [options] Override http request option.
|
|
26415
|
+
* @throws {RequiredError}
|
|
26416
|
+
*/
|
|
26417
|
+
featureLimitsPlanInfoGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<{
|
|
26418
|
+
[key: string]: any;
|
|
26419
|
+
}>>;
|
|
26420
|
+
/**
|
|
26421
|
+
* Retrieves comprehensive real-time limit status for the organization including all features, credits, and API calls
|
|
26422
|
+
* @summary Get real-time limit status
|
|
26423
|
+
* @param {*} [options] Override http request option.
|
|
26424
|
+
* @throws {RequiredError}
|
|
26425
|
+
*/
|
|
26426
|
+
featureLimitsStatusGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseFeatureLimitServiceLimitStatus>>;
|
|
24956
26427
|
/**
|
|
24957
26428
|
* Retrieves current feature usage statistics for the organization
|
|
24958
26429
|
* @summary Get feature usage statistics
|
|
24959
26430
|
* @param {*} [options] Override http request option.
|
|
24960
26431
|
* @throws {RequiredError}
|
|
24961
26432
|
*/
|
|
24962
|
-
|
|
26433
|
+
featureLimitsUsageGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FeatureLimitsUsageGet200Response>>;
|
|
24963
26434
|
};
|
|
24964
26435
|
/**
|
|
24965
26436
|
* FeatureLimitsApi - factory interface
|
|
@@ -24974,7 +26445,7 @@ export declare const FeatureLimitsApiFactory: (configuration?: Configuration, ba
|
|
|
24974
26445
|
* @param {*} [options] Override http request option.
|
|
24975
26446
|
* @throws {RequiredError}
|
|
24976
26447
|
*/
|
|
24977
|
-
|
|
26448
|
+
adminFeatureLimitsViolationsGet(featureName?: string, limit?: number, options?: RawAxiosRequestConfig): AxiosPromise<AdminFeatureLimitsViolationsGet200Response>;
|
|
24978
26449
|
/**
|
|
24979
26450
|
* Checks if a specific feature is within limits without incrementing usage
|
|
24980
26451
|
* @summary Check if a feature can be used
|
|
@@ -24983,7 +26454,7 @@ export declare const FeatureLimitsApiFactory: (configuration?: Configuration, ba
|
|
|
24983
26454
|
* @param {*} [options] Override http request option.
|
|
24984
26455
|
* @throws {RequiredError}
|
|
24985
26456
|
*/
|
|
24986
|
-
|
|
26457
|
+
featureLimitsCheckGet(featureName: string, amount?: number, options?: RawAxiosRequestConfig): AxiosPromise<FeatureLimitsCheckGet200Response>;
|
|
24987
26458
|
/**
|
|
24988
26459
|
* Retrieves historical feature usage events for the organization
|
|
24989
26460
|
* @summary Get feature usage history
|
|
@@ -24992,21 +26463,37 @@ export declare const FeatureLimitsApiFactory: (configuration?: Configuration, ba
|
|
|
24992
26463
|
* @param {*} [options] Override http request option.
|
|
24993
26464
|
* @throws {RequiredError}
|
|
24994
26465
|
*/
|
|
24995
|
-
|
|
26466
|
+
featureLimitsHistoryGet(featureName?: string, limit?: number, options?: RawAxiosRequestConfig): AxiosPromise<FeatureLimitsHistoryGet200Response>;
|
|
24996
26467
|
/**
|
|
24997
26468
|
* Retrieves the organization\'s current plan with all feature limits
|
|
24998
26469
|
* @summary Get organization plan features
|
|
24999
26470
|
* @param {*} [options] Override http request option.
|
|
25000
26471
|
* @throws {RequiredError}
|
|
25001
26472
|
*/
|
|
25002
|
-
|
|
26473
|
+
featureLimitsPlanGet(options?: RawAxiosRequestConfig): AxiosPromise<FeatureLimitsPlanGet200Response>;
|
|
26474
|
+
/**
|
|
26475
|
+
* Returns plan details and feature availability map for UI rendering
|
|
26476
|
+
* @summary Get plan information for frontend
|
|
26477
|
+
* @param {*} [options] Override http request option.
|
|
26478
|
+
* @throws {RequiredError}
|
|
26479
|
+
*/
|
|
26480
|
+
featureLimitsPlanInfoGet(options?: RawAxiosRequestConfig): AxiosPromise<{
|
|
26481
|
+
[key: string]: any;
|
|
26482
|
+
}>;
|
|
26483
|
+
/**
|
|
26484
|
+
* Retrieves comprehensive real-time limit status for the organization including all features, credits, and API calls
|
|
26485
|
+
* @summary Get real-time limit status
|
|
26486
|
+
* @param {*} [options] Override http request option.
|
|
26487
|
+
* @throws {RequiredError}
|
|
26488
|
+
*/
|
|
26489
|
+
featureLimitsStatusGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseFeatureLimitServiceLimitStatus>;
|
|
25003
26490
|
/**
|
|
25004
26491
|
* Retrieves current feature usage statistics for the organization
|
|
25005
26492
|
* @summary Get feature usage statistics
|
|
25006
26493
|
* @param {*} [options] Override http request option.
|
|
25007
26494
|
* @throws {RequiredError}
|
|
25008
26495
|
*/
|
|
25009
|
-
|
|
26496
|
+
featureLimitsUsageGet(options?: RawAxiosRequestConfig): AxiosPromise<FeatureLimitsUsageGet200Response>;
|
|
25010
26497
|
};
|
|
25011
26498
|
/**
|
|
25012
26499
|
* FeatureLimitsApi - object-oriented interface
|
|
@@ -25024,7 +26511,7 @@ export declare class FeatureLimitsApi extends BaseAPI {
|
|
|
25024
26511
|
* @throws {RequiredError}
|
|
25025
26512
|
* @memberof FeatureLimitsApi
|
|
25026
26513
|
*/
|
|
25027
|
-
|
|
26514
|
+
adminFeatureLimitsViolationsGet(featureName?: string, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminFeatureLimitsViolationsGet200Response, any, {}>>;
|
|
25028
26515
|
/**
|
|
25029
26516
|
* Checks if a specific feature is within limits without incrementing usage
|
|
25030
26517
|
* @summary Check if a feature can be used
|
|
@@ -25034,7 +26521,7 @@ export declare class FeatureLimitsApi extends BaseAPI {
|
|
|
25034
26521
|
* @throws {RequiredError}
|
|
25035
26522
|
* @memberof FeatureLimitsApi
|
|
25036
26523
|
*/
|
|
25037
|
-
|
|
26524
|
+
featureLimitsCheckGet(featureName: string, amount?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FeatureLimitsCheckGet200Response, any, {}>>;
|
|
25038
26525
|
/**
|
|
25039
26526
|
* Retrieves historical feature usage events for the organization
|
|
25040
26527
|
* @summary Get feature usage history
|
|
@@ -25044,7 +26531,7 @@ export declare class FeatureLimitsApi extends BaseAPI {
|
|
|
25044
26531
|
* @throws {RequiredError}
|
|
25045
26532
|
* @memberof FeatureLimitsApi
|
|
25046
26533
|
*/
|
|
25047
|
-
|
|
26534
|
+
featureLimitsHistoryGet(featureName?: string, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FeatureLimitsHistoryGet200Response, any, {}>>;
|
|
25048
26535
|
/**
|
|
25049
26536
|
* Retrieves the organization\'s current plan with all feature limits
|
|
25050
26537
|
* @summary Get organization plan features
|
|
@@ -25052,7 +26539,25 @@ export declare class FeatureLimitsApi extends BaseAPI {
|
|
|
25052
26539
|
* @throws {RequiredError}
|
|
25053
26540
|
* @memberof FeatureLimitsApi
|
|
25054
26541
|
*/
|
|
25055
|
-
|
|
26542
|
+
featureLimitsPlanGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FeatureLimitsPlanGet200Response, any, {}>>;
|
|
26543
|
+
/**
|
|
26544
|
+
* Returns plan details and feature availability map for UI rendering
|
|
26545
|
+
* @summary Get plan information for frontend
|
|
26546
|
+
* @param {*} [options] Override http request option.
|
|
26547
|
+
* @throws {RequiredError}
|
|
26548
|
+
* @memberof FeatureLimitsApi
|
|
26549
|
+
*/
|
|
26550
|
+
featureLimitsPlanInfoGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
|
|
26551
|
+
[key: string]: any;
|
|
26552
|
+
}, any, {}>>;
|
|
26553
|
+
/**
|
|
26554
|
+
* Retrieves comprehensive real-time limit status for the organization including all features, credits, and API calls
|
|
26555
|
+
* @summary Get real-time limit status
|
|
26556
|
+
* @param {*} [options] Override http request option.
|
|
26557
|
+
* @throws {RequiredError}
|
|
26558
|
+
* @memberof FeatureLimitsApi
|
|
26559
|
+
*/
|
|
26560
|
+
featureLimitsStatusGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseFeatureLimitServiceLimitStatus, any, {}>>;
|
|
25056
26561
|
/**
|
|
25057
26562
|
* Retrieves current feature usage statistics for the organization
|
|
25058
26563
|
* @summary Get feature usage statistics
|
|
@@ -25060,7 +26565,7 @@ export declare class FeatureLimitsApi extends BaseAPI {
|
|
|
25060
26565
|
* @throws {RequiredError}
|
|
25061
26566
|
* @memberof FeatureLimitsApi
|
|
25062
26567
|
*/
|
|
25063
|
-
|
|
26568
|
+
featureLimitsUsageGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FeatureLimitsUsageGet200Response, any, {}>>;
|
|
25064
26569
|
}
|
|
25065
26570
|
/**
|
|
25066
26571
|
* FeatureLimitsAdminApi - axios parameter creator
|
|
@@ -25073,7 +26578,7 @@ export declare const FeatureLimitsAdminApiAxiosParamCreator: (configuration?: Co
|
|
|
25073
26578
|
* @param {*} [options] Override http request option.
|
|
25074
26579
|
* @throws {RequiredError}
|
|
25075
26580
|
*/
|
|
25076
|
-
|
|
26581
|
+
adminFeatureLimitsCacheInvalidatePost: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25077
26582
|
/**
|
|
25078
26583
|
* Resets usage counter for a specific feature (admin only)
|
|
25079
26584
|
* @summary Reset feature usage (Admin)
|
|
@@ -25081,7 +26586,7 @@ export declare const FeatureLimitsAdminApiAxiosParamCreator: (configuration?: Co
|
|
|
25081
26586
|
* @param {*} [options] Override http request option.
|
|
25082
26587
|
* @throws {RequiredError}
|
|
25083
26588
|
*/
|
|
25084
|
-
|
|
26589
|
+
adminFeatureLimitsResetPost: (featureName: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25085
26590
|
};
|
|
25086
26591
|
/**
|
|
25087
26592
|
* FeatureLimitsAdminApi - functional programming interface
|
|
@@ -25094,7 +26599,7 @@ export declare const FeatureLimitsAdminApiFp: (configuration?: Configuration) =>
|
|
|
25094
26599
|
* @param {*} [options] Override http request option.
|
|
25095
26600
|
* @throws {RequiredError}
|
|
25096
26601
|
*/
|
|
25097
|
-
|
|
26602
|
+
adminFeatureLimitsCacheInvalidatePost(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
25098
26603
|
/**
|
|
25099
26604
|
* Resets usage counter for a specific feature (admin only)
|
|
25100
26605
|
* @summary Reset feature usage (Admin)
|
|
@@ -25102,7 +26607,7 @@ export declare const FeatureLimitsAdminApiFp: (configuration?: Configuration) =>
|
|
|
25102
26607
|
* @param {*} [options] Override http request option.
|
|
25103
26608
|
* @throws {RequiredError}
|
|
25104
26609
|
*/
|
|
25105
|
-
|
|
26610
|
+
adminFeatureLimitsResetPost(featureName: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
25106
26611
|
};
|
|
25107
26612
|
/**
|
|
25108
26613
|
* FeatureLimitsAdminApi - factory interface
|
|
@@ -25115,7 +26620,7 @@ export declare const FeatureLimitsAdminApiFactory: (configuration?: Configuratio
|
|
|
25115
26620
|
* @param {*} [options] Override http request option.
|
|
25116
26621
|
* @throws {RequiredError}
|
|
25117
26622
|
*/
|
|
25118
|
-
|
|
26623
|
+
adminFeatureLimitsCacheInvalidatePost(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
25119
26624
|
/**
|
|
25120
26625
|
* Resets usage counter for a specific feature (admin only)
|
|
25121
26626
|
* @summary Reset feature usage (Admin)
|
|
@@ -25123,7 +26628,7 @@ export declare const FeatureLimitsAdminApiFactory: (configuration?: Configuratio
|
|
|
25123
26628
|
* @param {*} [options] Override http request option.
|
|
25124
26629
|
* @throws {RequiredError}
|
|
25125
26630
|
*/
|
|
25126
|
-
|
|
26631
|
+
adminFeatureLimitsResetPost(featureName: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
25127
26632
|
};
|
|
25128
26633
|
/**
|
|
25129
26634
|
* FeatureLimitsAdminApi - object-oriented interface
|
|
@@ -25139,7 +26644,7 @@ export declare class FeatureLimitsAdminApi extends BaseAPI {
|
|
|
25139
26644
|
* @throws {RequiredError}
|
|
25140
26645
|
* @memberof FeatureLimitsAdminApi
|
|
25141
26646
|
*/
|
|
25142
|
-
|
|
26647
|
+
adminFeatureLimitsCacheInvalidatePost(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
25143
26648
|
/**
|
|
25144
26649
|
* Resets usage counter for a specific feature (admin only)
|
|
25145
26650
|
* @summary Reset feature usage (Admin)
|
|
@@ -25148,7 +26653,7 @@ export declare class FeatureLimitsAdminApi extends BaseAPI {
|
|
|
25148
26653
|
* @throws {RequiredError}
|
|
25149
26654
|
* @memberof FeatureLimitsAdminApi
|
|
25150
26655
|
*/
|
|
25151
|
-
|
|
26656
|
+
adminFeatureLimitsResetPost(featureName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
25152
26657
|
}
|
|
25153
26658
|
/**
|
|
25154
26659
|
* ItemAnalyticsApi - axios parameter creator
|
|
@@ -28030,6 +29535,14 @@ export declare const PaymentGatewayApiAxiosParamCreator: (configuration?: Config
|
|
|
28030
29535
|
* @throws {RequiredError}
|
|
28031
29536
|
*/
|
|
28032
29537
|
adminPaymentGatewayRefundPost: (dataTypesRefundRequestDto: DataTypesRefundRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
29538
|
+
/**
|
|
29539
|
+
* Verifies an invoice payment using only the gateway order ID. Fetches payment details from the gateway automatically. Ideal for testing without webhook access.
|
|
29540
|
+
* @summary Verify invoice payment (simplified)
|
|
29541
|
+
* @param {AdminPaymentGatewayVerifyInvoicePostRequest} adminPaymentGatewayVerifyInvoicePostRequest Gateway Order ID
|
|
29542
|
+
* @param {*} [options] Override http request option.
|
|
29543
|
+
* @throws {RequiredError}
|
|
29544
|
+
*/
|
|
29545
|
+
adminPaymentGatewayVerifyInvoicePost: (adminPaymentGatewayVerifyInvoicePostRequest: AdminPaymentGatewayVerifyInvoicePostRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
28033
29546
|
/**
|
|
28034
29547
|
* Verifies the current status of a payment using only the order ID. Returns frontend-friendly status (\"success\", \"pending\", or \"error\"). This is a simplified endpoint that can be used for polling instead of payment-status endpoint for immediate verification.
|
|
28035
29548
|
* @summary Verify payment status by order ID
|
|
@@ -28131,6 +29644,14 @@ export declare const PaymentGatewayApiFp: (configuration?: Configuration) => {
|
|
|
28131
29644
|
* @throws {RequiredError}
|
|
28132
29645
|
*/
|
|
28133
29646
|
adminPaymentGatewayRefundPost(dataTypesRefundRequestDto: DataTypesRefundRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesRefundResponseDto>>;
|
|
29647
|
+
/**
|
|
29648
|
+
* Verifies an invoice payment using only the gateway order ID. Fetches payment details from the gateway automatically. Ideal for testing without webhook access.
|
|
29649
|
+
* @summary Verify invoice payment (simplified)
|
|
29650
|
+
* @param {AdminPaymentGatewayVerifyInvoicePostRequest} adminPaymentGatewayVerifyInvoicePostRequest Gateway Order ID
|
|
29651
|
+
* @param {*} [options] Override http request option.
|
|
29652
|
+
* @throws {RequiredError}
|
|
29653
|
+
*/
|
|
29654
|
+
adminPaymentGatewayVerifyInvoicePost(adminPaymentGatewayVerifyInvoicePostRequest: AdminPaymentGatewayVerifyInvoicePostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesPaymentStatusPollResponse>>;
|
|
28134
29655
|
/**
|
|
28135
29656
|
* Verifies the current status of a payment using only the order ID. Returns frontend-friendly status (\"success\", \"pending\", or \"error\"). This is a simplified endpoint that can be used for polling instead of payment-status endpoint for immediate verification.
|
|
28136
29657
|
* @summary Verify payment status by order ID
|
|
@@ -28236,6 +29757,14 @@ export declare const PaymentGatewayApiFactory: (configuration?: Configuration, b
|
|
|
28236
29757
|
* @throws {RequiredError}
|
|
28237
29758
|
*/
|
|
28238
29759
|
adminPaymentGatewayRefundPost(dataTypesRefundRequestDto: DataTypesRefundRequestDto, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesRefundResponseDto>;
|
|
29760
|
+
/**
|
|
29761
|
+
* Verifies an invoice payment using only the gateway order ID. Fetches payment details from the gateway automatically. Ideal for testing without webhook access.
|
|
29762
|
+
* @summary Verify invoice payment (simplified)
|
|
29763
|
+
* @param {AdminPaymentGatewayVerifyInvoicePostRequest} adminPaymentGatewayVerifyInvoicePostRequest Gateway Order ID
|
|
29764
|
+
* @param {*} [options] Override http request option.
|
|
29765
|
+
* @throws {RequiredError}
|
|
29766
|
+
*/
|
|
29767
|
+
adminPaymentGatewayVerifyInvoicePost(adminPaymentGatewayVerifyInvoicePostRequest: AdminPaymentGatewayVerifyInvoicePostRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesPaymentStatusPollResponse>;
|
|
28239
29768
|
/**
|
|
28240
29769
|
* Verifies the current status of a payment using only the order ID. Returns frontend-friendly status (\"success\", \"pending\", or \"error\"). This is a simplified endpoint that can be used for polling instead of payment-status endpoint for immediate verification.
|
|
28241
29770
|
* @summary Verify payment status by order ID
|
|
@@ -28350,6 +29879,15 @@ export declare class PaymentGatewayApi extends BaseAPI {
|
|
|
28350
29879
|
* @memberof PaymentGatewayApi
|
|
28351
29880
|
*/
|
|
28352
29881
|
adminPaymentGatewayRefundPost(dataTypesRefundRequestDto: DataTypesRefundRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRefundResponseDto, any, {}>>;
|
|
29882
|
+
/**
|
|
29883
|
+
* Verifies an invoice payment using only the gateway order ID. Fetches payment details from the gateway automatically. Ideal for testing without webhook access.
|
|
29884
|
+
* @summary Verify invoice payment (simplified)
|
|
29885
|
+
* @param {AdminPaymentGatewayVerifyInvoicePostRequest} adminPaymentGatewayVerifyInvoicePostRequest Gateway Order ID
|
|
29886
|
+
* @param {*} [options] Override http request option.
|
|
29887
|
+
* @throws {RequiredError}
|
|
29888
|
+
* @memberof PaymentGatewayApi
|
|
29889
|
+
*/
|
|
29890
|
+
adminPaymentGatewayVerifyInvoicePost(adminPaymentGatewayVerifyInvoicePostRequest: AdminPaymentGatewayVerifyInvoicePostRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPaymentStatusPollResponse, any, {}>>;
|
|
28353
29891
|
/**
|
|
28354
29892
|
* Verifies the current status of a payment using only the order ID. Returns frontend-friendly status (\"success\", \"pending\", or \"error\"). This is a simplified endpoint that can be used for polling instead of payment-status endpoint for immediate verification.
|
|
28355
29893
|
* @summary Verify payment status by order ID
|
|
@@ -32966,6 +34504,27 @@ export declare const StoresApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
32966
34504
|
* @throws {RequiredError}
|
|
32967
34505
|
*/
|
|
32968
34506
|
adminStoresUpdateStatusIdStatusPut: (id: number, status: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
34507
|
+
/**
|
|
34508
|
+
* Retrieves aggregated daily statistics for a specific store including records usage, response times, and operation counts.
|
|
34509
|
+
* @summary Get Daily Statistics for a Store
|
|
34510
|
+
* @param {string} xStoreID Store ID
|
|
34511
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD)
|
|
34512
|
+
* @param {string} [endDate] End date (YYYY-MM-DD)
|
|
34513
|
+
* @param {*} [options] Override http request option.
|
|
34514
|
+
* @throws {RequiredError}
|
|
34515
|
+
*/
|
|
34516
|
+
adminStoresXStoreIDAnalyticsDailyStatsGet: (xStoreID: string, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
34517
|
+
/**
|
|
34518
|
+
* Retrieves time series data for a specific metric (records, search_response_time, operations, or search_requests) with date filtering for graphing.
|
|
34519
|
+
* @summary Get Time Series Data for Store Metrics
|
|
34520
|
+
* @param {string} xStoreID Store ID
|
|
34521
|
+
* @param {string} metric Metric type: records, search_response_time, operations, search_requests
|
|
34522
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD)
|
|
34523
|
+
* @param {string} [endDate] End date (YYYY-MM-DD)
|
|
34524
|
+
* @param {*} [options] Override http request option.
|
|
34525
|
+
* @throws {RequiredError}
|
|
34526
|
+
*/
|
|
34527
|
+
adminStoresXStoreIDAnalyticsTimeseriesGet: (xStoreID: string, metric: string, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
32969
34528
|
/**
|
|
32970
34529
|
* Retrieve detailed information for a specific API usage event including headers, request body, and response body
|
|
32971
34530
|
* @summary Get Specific API Usage Event
|
|
@@ -33114,6 +34673,27 @@ export declare const StoresApiFp: (configuration?: Configuration) => {
|
|
|
33114
34673
|
* @throws {RequiredError}
|
|
33115
34674
|
*/
|
|
33116
34675
|
adminStoresUpdateStatusIdStatusPut(id: number, status: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
34676
|
+
/**
|
|
34677
|
+
* Retrieves aggregated daily statistics for a specific store including records usage, response times, and operation counts.
|
|
34678
|
+
* @summary Get Daily Statistics for a Store
|
|
34679
|
+
* @param {string} xStoreID Store ID
|
|
34680
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD)
|
|
34681
|
+
* @param {string} [endDate] End date (YYYY-MM-DD)
|
|
34682
|
+
* @param {*} [options] Override http request option.
|
|
34683
|
+
* @throws {RequiredError}
|
|
34684
|
+
*/
|
|
34685
|
+
adminStoresXStoreIDAnalyticsDailyStatsGet(xStoreID: string, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StoreRouteDailyStatsResponse>>;
|
|
34686
|
+
/**
|
|
34687
|
+
* Retrieves time series data for a specific metric (records, search_response_time, operations, or search_requests) with date filtering for graphing.
|
|
34688
|
+
* @summary Get Time Series Data for Store Metrics
|
|
34689
|
+
* @param {string} xStoreID Store ID
|
|
34690
|
+
* @param {string} metric Metric type: records, search_response_time, operations, search_requests
|
|
34691
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD)
|
|
34692
|
+
* @param {string} [endDate] End date (YYYY-MM-DD)
|
|
34693
|
+
* @param {*} [options] Override http request option.
|
|
34694
|
+
* @throws {RequiredError}
|
|
34695
|
+
*/
|
|
34696
|
+
adminStoresXStoreIDAnalyticsTimeseriesGet(xStoreID: string, metric: string, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StoreRouteTimeSeriesResponse>>;
|
|
33117
34697
|
/**
|
|
33118
34698
|
* Retrieve detailed information for a specific API usage event including headers, request body, and response body
|
|
33119
34699
|
* @summary Get Specific API Usage Event
|
|
@@ -33262,6 +34842,27 @@ export declare const StoresApiFactory: (configuration?: Configuration, basePath?
|
|
|
33262
34842
|
* @throws {RequiredError}
|
|
33263
34843
|
*/
|
|
33264
34844
|
adminStoresUpdateStatusIdStatusPut(id: number, status: boolean, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
34845
|
+
/**
|
|
34846
|
+
* Retrieves aggregated daily statistics for a specific store including records usage, response times, and operation counts.
|
|
34847
|
+
* @summary Get Daily Statistics for a Store
|
|
34848
|
+
* @param {string} xStoreID Store ID
|
|
34849
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD)
|
|
34850
|
+
* @param {string} [endDate] End date (YYYY-MM-DD)
|
|
34851
|
+
* @param {*} [options] Override http request option.
|
|
34852
|
+
* @throws {RequiredError}
|
|
34853
|
+
*/
|
|
34854
|
+
adminStoresXStoreIDAnalyticsDailyStatsGet(xStoreID: string, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): AxiosPromise<StoreRouteDailyStatsResponse>;
|
|
34855
|
+
/**
|
|
34856
|
+
* Retrieves time series data for a specific metric (records, search_response_time, operations, or search_requests) with date filtering for graphing.
|
|
34857
|
+
* @summary Get Time Series Data for Store Metrics
|
|
34858
|
+
* @param {string} xStoreID Store ID
|
|
34859
|
+
* @param {string} metric Metric type: records, search_response_time, operations, search_requests
|
|
34860
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD)
|
|
34861
|
+
* @param {string} [endDate] End date (YYYY-MM-DD)
|
|
34862
|
+
* @param {*} [options] Override http request option.
|
|
34863
|
+
* @throws {RequiredError}
|
|
34864
|
+
*/
|
|
34865
|
+
adminStoresXStoreIDAnalyticsTimeseriesGet(xStoreID: string, metric: string, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): AxiosPromise<StoreRouteTimeSeriesResponse>;
|
|
33265
34866
|
/**
|
|
33266
34867
|
* Retrieve detailed information for a specific API usage event including headers, request body, and response body
|
|
33267
34868
|
* @summary Get Specific API Usage Event
|
|
@@ -33417,6 +35018,29 @@ export declare class StoresApi extends BaseAPI {
|
|
|
33417
35018
|
* @memberof StoresApi
|
|
33418
35019
|
*/
|
|
33419
35020
|
adminStoresUpdateStatusIdStatusPut(id: number, status: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
35021
|
+
/**
|
|
35022
|
+
* Retrieves aggregated daily statistics for a specific store including records usage, response times, and operation counts.
|
|
35023
|
+
* @summary Get Daily Statistics for a Store
|
|
35024
|
+
* @param {string} xStoreID Store ID
|
|
35025
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD)
|
|
35026
|
+
* @param {string} [endDate] End date (YYYY-MM-DD)
|
|
35027
|
+
* @param {*} [options] Override http request option.
|
|
35028
|
+
* @throws {RequiredError}
|
|
35029
|
+
* @memberof StoresApi
|
|
35030
|
+
*/
|
|
35031
|
+
adminStoresXStoreIDAnalyticsDailyStatsGet(xStoreID: string, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StoreRouteDailyStatsResponse, any, {}>>;
|
|
35032
|
+
/**
|
|
35033
|
+
* Retrieves time series data for a specific metric (records, search_response_time, operations, or search_requests) with date filtering for graphing.
|
|
35034
|
+
* @summary Get Time Series Data for Store Metrics
|
|
35035
|
+
* @param {string} xStoreID Store ID
|
|
35036
|
+
* @param {string} metric Metric type: records, search_response_time, operations, search_requests
|
|
35037
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD)
|
|
35038
|
+
* @param {string} [endDate] End date (YYYY-MM-DD)
|
|
35039
|
+
* @param {*} [options] Override http request option.
|
|
35040
|
+
* @throws {RequiredError}
|
|
35041
|
+
* @memberof StoresApi
|
|
35042
|
+
*/
|
|
35043
|
+
adminStoresXStoreIDAnalyticsTimeseriesGet(xStoreID: string, metric: string, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StoreRouteTimeSeriesResponse, any, {}>>;
|
|
33420
35044
|
/**
|
|
33421
35045
|
* Retrieve detailed information for a specific API usage event including headers, request body, and response body
|
|
33422
35046
|
* @summary Get Specific API Usage Event
|
|
@@ -33791,6 +35415,160 @@ export declare class SubscriptionsApi extends BaseAPI {
|
|
|
33791
35415
|
*/
|
|
33792
35416
|
miscSubscriptionsSubscriptionIDGet(subscriptionID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSubscriptionResponse, any, {}>>;
|
|
33793
35417
|
}
|
|
35418
|
+
/**
|
|
35419
|
+
* TaxManagementApi - axios parameter creator
|
|
35420
|
+
* @export
|
|
35421
|
+
*/
|
|
35422
|
+
export declare const TaxManagementApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
35423
|
+
/**
|
|
35424
|
+
* Calculates GST/VAT for a transaction in a payment gateway agnostic way
|
|
35425
|
+
* @summary Calculate tax for a transaction
|
|
35426
|
+
* @param {DataTypesTaxCalculationRequest} dataTypesTaxCalculationRequest Tax calculation request
|
|
35427
|
+
* @param {*} [options] Override http request option.
|
|
35428
|
+
* @throws {RequiredError}
|
|
35429
|
+
*/
|
|
35430
|
+
adminTaxCalculatePost: (dataTypesTaxCalculationRequest: DataTypesTaxCalculationRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
35431
|
+
/**
|
|
35432
|
+
* Retrieves GST and taxation details for an organization
|
|
35433
|
+
* @summary Get organization tax details
|
|
35434
|
+
* @param {*} [options] Override http request option.
|
|
35435
|
+
* @throws {RequiredError}
|
|
35436
|
+
*/
|
|
35437
|
+
adminTaxOrganizationGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
35438
|
+
/**
|
|
35439
|
+
* Updates GST and taxation details for an organization
|
|
35440
|
+
* @summary Update organization tax details
|
|
35441
|
+
* @param {DataTypesUpdateOrganizationTaxDetailsRequest} dataTypesUpdateOrganizationTaxDetailsRequest Tax details to update
|
|
35442
|
+
* @param {*} [options] Override http request option.
|
|
35443
|
+
* @throws {RequiredError}
|
|
35444
|
+
*/
|
|
35445
|
+
adminTaxOrganizationPut: (dataTypesUpdateOrganizationTaxDetailsRequest: DataTypesUpdateOrganizationTaxDetailsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
35446
|
+
/**
|
|
35447
|
+
* Validates GSTIN format and optionally verifies with GST portal
|
|
35448
|
+
* @summary Validate GSTIN
|
|
35449
|
+
* @param {DataTypesGSTVerificationRequest} dataTypesGSTVerificationRequest GSTIN to validate
|
|
35450
|
+
* @param {*} [options] Override http request option.
|
|
35451
|
+
* @throws {RequiredError}
|
|
35452
|
+
*/
|
|
35453
|
+
adminTaxValidateGstinPost: (dataTypesGSTVerificationRequest: DataTypesGSTVerificationRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
35454
|
+
};
|
|
35455
|
+
/**
|
|
35456
|
+
* TaxManagementApi - functional programming interface
|
|
35457
|
+
* @export
|
|
35458
|
+
*/
|
|
35459
|
+
export declare const TaxManagementApiFp: (configuration?: Configuration) => {
|
|
35460
|
+
/**
|
|
35461
|
+
* Calculates GST/VAT for a transaction in a payment gateway agnostic way
|
|
35462
|
+
* @summary Calculate tax for a transaction
|
|
35463
|
+
* @param {DataTypesTaxCalculationRequest} dataTypesTaxCalculationRequest Tax calculation request
|
|
35464
|
+
* @param {*} [options] Override http request option.
|
|
35465
|
+
* @throws {RequiredError}
|
|
35466
|
+
*/
|
|
35467
|
+
adminTaxCalculatePost(dataTypesTaxCalculationRequest: DataTypesTaxCalculationRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesTaxCalculationResponse>>;
|
|
35468
|
+
/**
|
|
35469
|
+
* Retrieves GST and taxation details for an organization
|
|
35470
|
+
* @summary Get organization tax details
|
|
35471
|
+
* @param {*} [options] Override http request option.
|
|
35472
|
+
* @throws {RequiredError}
|
|
35473
|
+
*/
|
|
35474
|
+
adminTaxOrganizationGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesOrganizationTaxDetails>>;
|
|
35475
|
+
/**
|
|
35476
|
+
* Updates GST and taxation details for an organization
|
|
35477
|
+
* @summary Update organization tax details
|
|
35478
|
+
* @param {DataTypesUpdateOrganizationTaxDetailsRequest} dataTypesUpdateOrganizationTaxDetailsRequest Tax details to update
|
|
35479
|
+
* @param {*} [options] Override http request option.
|
|
35480
|
+
* @throws {RequiredError}
|
|
35481
|
+
*/
|
|
35482
|
+
adminTaxOrganizationPut(dataTypesUpdateOrganizationTaxDetailsRequest: DataTypesUpdateOrganizationTaxDetailsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
35483
|
+
/**
|
|
35484
|
+
* Validates GSTIN format and optionally verifies with GST portal
|
|
35485
|
+
* @summary Validate GSTIN
|
|
35486
|
+
* @param {DataTypesGSTVerificationRequest} dataTypesGSTVerificationRequest GSTIN to validate
|
|
35487
|
+
* @param {*} [options] Override http request option.
|
|
35488
|
+
* @throws {RequiredError}
|
|
35489
|
+
*/
|
|
35490
|
+
adminTaxValidateGstinPost(dataTypesGSTVerificationRequest: DataTypesGSTVerificationRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesGSTVerificationResponse>>;
|
|
35491
|
+
};
|
|
35492
|
+
/**
|
|
35493
|
+
* TaxManagementApi - factory interface
|
|
35494
|
+
* @export
|
|
35495
|
+
*/
|
|
35496
|
+
export declare const TaxManagementApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
35497
|
+
/**
|
|
35498
|
+
* Calculates GST/VAT for a transaction in a payment gateway agnostic way
|
|
35499
|
+
* @summary Calculate tax for a transaction
|
|
35500
|
+
* @param {DataTypesTaxCalculationRequest} dataTypesTaxCalculationRequest Tax calculation request
|
|
35501
|
+
* @param {*} [options] Override http request option.
|
|
35502
|
+
* @throws {RequiredError}
|
|
35503
|
+
*/
|
|
35504
|
+
adminTaxCalculatePost(dataTypesTaxCalculationRequest: DataTypesTaxCalculationRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesTaxCalculationResponse>;
|
|
35505
|
+
/**
|
|
35506
|
+
* Retrieves GST and taxation details for an organization
|
|
35507
|
+
* @summary Get organization tax details
|
|
35508
|
+
* @param {*} [options] Override http request option.
|
|
35509
|
+
* @throws {RequiredError}
|
|
35510
|
+
*/
|
|
35511
|
+
adminTaxOrganizationGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesOrganizationTaxDetails>;
|
|
35512
|
+
/**
|
|
35513
|
+
* Updates GST and taxation details for an organization
|
|
35514
|
+
* @summary Update organization tax details
|
|
35515
|
+
* @param {DataTypesUpdateOrganizationTaxDetailsRequest} dataTypesUpdateOrganizationTaxDetailsRequest Tax details to update
|
|
35516
|
+
* @param {*} [options] Override http request option.
|
|
35517
|
+
* @throws {RequiredError}
|
|
35518
|
+
*/
|
|
35519
|
+
adminTaxOrganizationPut(dataTypesUpdateOrganizationTaxDetailsRequest: DataTypesUpdateOrganizationTaxDetailsRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
35520
|
+
/**
|
|
35521
|
+
* Validates GSTIN format and optionally verifies with GST portal
|
|
35522
|
+
* @summary Validate GSTIN
|
|
35523
|
+
* @param {DataTypesGSTVerificationRequest} dataTypesGSTVerificationRequest GSTIN to validate
|
|
35524
|
+
* @param {*} [options] Override http request option.
|
|
35525
|
+
* @throws {RequiredError}
|
|
35526
|
+
*/
|
|
35527
|
+
adminTaxValidateGstinPost(dataTypesGSTVerificationRequest: DataTypesGSTVerificationRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesGSTVerificationResponse>;
|
|
35528
|
+
};
|
|
35529
|
+
/**
|
|
35530
|
+
* TaxManagementApi - object-oriented interface
|
|
35531
|
+
* @export
|
|
35532
|
+
* @class TaxManagementApi
|
|
35533
|
+
* @extends {BaseAPI}
|
|
35534
|
+
*/
|
|
35535
|
+
export declare class TaxManagementApi extends BaseAPI {
|
|
35536
|
+
/**
|
|
35537
|
+
* Calculates GST/VAT for a transaction in a payment gateway agnostic way
|
|
35538
|
+
* @summary Calculate tax for a transaction
|
|
35539
|
+
* @param {DataTypesTaxCalculationRequest} dataTypesTaxCalculationRequest Tax calculation request
|
|
35540
|
+
* @param {*} [options] Override http request option.
|
|
35541
|
+
* @throws {RequiredError}
|
|
35542
|
+
* @memberof TaxManagementApi
|
|
35543
|
+
*/
|
|
35544
|
+
adminTaxCalculatePost(dataTypesTaxCalculationRequest: DataTypesTaxCalculationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesTaxCalculationResponse, any, {}>>;
|
|
35545
|
+
/**
|
|
35546
|
+
* Retrieves GST and taxation details for an organization
|
|
35547
|
+
* @summary Get organization tax details
|
|
35548
|
+
* @param {*} [options] Override http request option.
|
|
35549
|
+
* @throws {RequiredError}
|
|
35550
|
+
* @memberof TaxManagementApi
|
|
35551
|
+
*/
|
|
35552
|
+
adminTaxOrganizationGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesOrganizationTaxDetails, any, {}>>;
|
|
35553
|
+
/**
|
|
35554
|
+
* Updates GST and taxation details for an organization
|
|
35555
|
+
* @summary Update organization tax details
|
|
35556
|
+
* @param {DataTypesUpdateOrganizationTaxDetailsRequest} dataTypesUpdateOrganizationTaxDetailsRequest Tax details to update
|
|
35557
|
+
* @param {*} [options] Override http request option.
|
|
35558
|
+
* @throws {RequiredError}
|
|
35559
|
+
* @memberof TaxManagementApi
|
|
35560
|
+
*/
|
|
35561
|
+
adminTaxOrganizationPut(dataTypesUpdateOrganizationTaxDetailsRequest: DataTypesUpdateOrganizationTaxDetailsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
35562
|
+
/**
|
|
35563
|
+
* Validates GSTIN format and optionally verifies with GST portal
|
|
35564
|
+
* @summary Validate GSTIN
|
|
35565
|
+
* @param {DataTypesGSTVerificationRequest} dataTypesGSTVerificationRequest GSTIN to validate
|
|
35566
|
+
* @param {*} [options] Override http request option.
|
|
35567
|
+
* @throws {RequiredError}
|
|
35568
|
+
* @memberof TaxManagementApi
|
|
35569
|
+
*/
|
|
35570
|
+
adminTaxValidateGstinPost(dataTypesGSTVerificationRequest: DataTypesGSTVerificationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesGSTVerificationResponse, any, {}>>;
|
|
35571
|
+
}
|
|
33794
35572
|
/**
|
|
33795
35573
|
* UserApi - axios parameter creator
|
|
33796
35574
|
* @export
|