@seekora-ai/admin-api 1.1.1 → 1.1.3
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 +35 -16
- package/api.ts +1408 -221
- package/dist/api.d.ts +1196 -175
- package/dist/api.js +395 -89
- package/dist/esm/api.d.ts +1196 -175
- package/dist/esm/api.js +389 -87
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.1.3.tgz +0 -0
- package/seekora-ai-admin-api-1.1.1.tgz +0 -0
package/dist/esm/api.d.ts
CHANGED
|
@@ -746,6 +746,31 @@ 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
|
+
}
|
|
749
774
|
/**
|
|
750
775
|
*
|
|
751
776
|
* @export
|
|
@@ -7088,131 +7113,6 @@ export interface AnalyticsWidgetData {
|
|
|
7088
7113
|
*/
|
|
7089
7114
|
'tertiary_text'?: string;
|
|
7090
7115
|
}
|
|
7091
|
-
/**
|
|
7092
|
-
*
|
|
7093
|
-
* @export
|
|
7094
|
-
* @interface ApiAdminFeatureLimitsViolationsGet200Response
|
|
7095
|
-
*/
|
|
7096
|
-
export interface ApiAdminFeatureLimitsViolationsGet200Response {
|
|
7097
|
-
/**
|
|
7098
|
-
*
|
|
7099
|
-
* @type {Array<DataTypesFeatureLimitViolation>}
|
|
7100
|
-
* @memberof ApiAdminFeatureLimitsViolationsGet200Response
|
|
7101
|
-
*/
|
|
7102
|
-
'data'?: Array<DataTypesFeatureLimitViolation>;
|
|
7103
|
-
/**
|
|
7104
|
-
*
|
|
7105
|
-
* @type {string}
|
|
7106
|
-
* @memberof ApiAdminFeatureLimitsViolationsGet200Response
|
|
7107
|
-
*/
|
|
7108
|
-
'message'?: string;
|
|
7109
|
-
/**
|
|
7110
|
-
*
|
|
7111
|
-
* @type {number}
|
|
7112
|
-
* @memberof ApiAdminFeatureLimitsViolationsGet200Response
|
|
7113
|
-
*/
|
|
7114
|
-
'status'?: number;
|
|
7115
|
-
}
|
|
7116
|
-
/**
|
|
7117
|
-
*
|
|
7118
|
-
* @export
|
|
7119
|
-
* @interface ApiFeatureLimitsCheckGet200Response
|
|
7120
|
-
*/
|
|
7121
|
-
export interface ApiFeatureLimitsCheckGet200Response {
|
|
7122
|
-
/**
|
|
7123
|
-
*
|
|
7124
|
-
* @type {DataTypesFeatureCheckResult}
|
|
7125
|
-
* @memberof ApiFeatureLimitsCheckGet200Response
|
|
7126
|
-
*/
|
|
7127
|
-
'data'?: DataTypesFeatureCheckResult;
|
|
7128
|
-
/**
|
|
7129
|
-
*
|
|
7130
|
-
* @type {string}
|
|
7131
|
-
* @memberof ApiFeatureLimitsCheckGet200Response
|
|
7132
|
-
*/
|
|
7133
|
-
'message'?: string;
|
|
7134
|
-
/**
|
|
7135
|
-
*
|
|
7136
|
-
* @type {number}
|
|
7137
|
-
* @memberof ApiFeatureLimitsCheckGet200Response
|
|
7138
|
-
*/
|
|
7139
|
-
'status'?: number;
|
|
7140
|
-
}
|
|
7141
|
-
/**
|
|
7142
|
-
*
|
|
7143
|
-
* @export
|
|
7144
|
-
* @interface ApiFeatureLimitsHistoryGet200Response
|
|
7145
|
-
*/
|
|
7146
|
-
export interface ApiFeatureLimitsHistoryGet200Response {
|
|
7147
|
-
/**
|
|
7148
|
-
*
|
|
7149
|
-
* @type {Array<DataTypesFeatureUsageHistory>}
|
|
7150
|
-
* @memberof ApiFeatureLimitsHistoryGet200Response
|
|
7151
|
-
*/
|
|
7152
|
-
'data'?: Array<DataTypesFeatureUsageHistory>;
|
|
7153
|
-
/**
|
|
7154
|
-
*
|
|
7155
|
-
* @type {string}
|
|
7156
|
-
* @memberof ApiFeatureLimitsHistoryGet200Response
|
|
7157
|
-
*/
|
|
7158
|
-
'message'?: string;
|
|
7159
|
-
/**
|
|
7160
|
-
*
|
|
7161
|
-
* @type {number}
|
|
7162
|
-
* @memberof ApiFeatureLimitsHistoryGet200Response
|
|
7163
|
-
*/
|
|
7164
|
-
'status'?: number;
|
|
7165
|
-
}
|
|
7166
|
-
/**
|
|
7167
|
-
*
|
|
7168
|
-
* @export
|
|
7169
|
-
* @interface ApiFeatureLimitsPlanGet200Response
|
|
7170
|
-
*/
|
|
7171
|
-
export interface ApiFeatureLimitsPlanGet200Response {
|
|
7172
|
-
/**
|
|
7173
|
-
*
|
|
7174
|
-
* @type {DataTypesPlanFeatures}
|
|
7175
|
-
* @memberof ApiFeatureLimitsPlanGet200Response
|
|
7176
|
-
*/
|
|
7177
|
-
'data'?: DataTypesPlanFeatures;
|
|
7178
|
-
/**
|
|
7179
|
-
*
|
|
7180
|
-
* @type {string}
|
|
7181
|
-
* @memberof ApiFeatureLimitsPlanGet200Response
|
|
7182
|
-
*/
|
|
7183
|
-
'message'?: string;
|
|
7184
|
-
/**
|
|
7185
|
-
*
|
|
7186
|
-
* @type {number}
|
|
7187
|
-
* @memberof ApiFeatureLimitsPlanGet200Response
|
|
7188
|
-
*/
|
|
7189
|
-
'status'?: number;
|
|
7190
|
-
}
|
|
7191
|
-
/**
|
|
7192
|
-
*
|
|
7193
|
-
* @export
|
|
7194
|
-
* @interface ApiFeatureLimitsUsageGet200Response
|
|
7195
|
-
*/
|
|
7196
|
-
export interface ApiFeatureLimitsUsageGet200Response {
|
|
7197
|
-
/**
|
|
7198
|
-
*
|
|
7199
|
-
* @type {Array<DataTypesFeatureUsageStats>}
|
|
7200
|
-
* @memberof ApiFeatureLimitsUsageGet200Response
|
|
7201
|
-
*/
|
|
7202
|
-
'data'?: Array<DataTypesFeatureUsageStats>;
|
|
7203
|
-
/**
|
|
7204
|
-
*
|
|
7205
|
-
* @type {string}
|
|
7206
|
-
* @memberof ApiFeatureLimitsUsageGet200Response
|
|
7207
|
-
*/
|
|
7208
|
-
'message'?: string;
|
|
7209
|
-
/**
|
|
7210
|
-
*
|
|
7211
|
-
* @type {number}
|
|
7212
|
-
* @memberof ApiFeatureLimitsUsageGet200Response
|
|
7213
|
-
*/
|
|
7214
|
-
'status'?: number;
|
|
7215
|
-
}
|
|
7216
7116
|
/**
|
|
7217
7117
|
*
|
|
7218
7118
|
* @export
|
|
@@ -10772,6 +10672,92 @@ export interface DataTypesFulfillmentInfoSubscription {
|
|
|
10772
10672
|
*/
|
|
10773
10673
|
'plan_name'?: string;
|
|
10774
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
|
+
}
|
|
10775
10761
|
/**
|
|
10776
10762
|
*
|
|
10777
10763
|
* @export
|
|
@@ -10866,6 +10852,56 @@ export interface DataTypesGenericResponseDataTypesBillingOrderDetailsResponse {
|
|
|
10866
10852
|
*/
|
|
10867
10853
|
'status'?: number;
|
|
10868
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
|
+
}
|
|
10869
10905
|
/**
|
|
10870
10906
|
*
|
|
10871
10907
|
* @export
|
|
@@ -10891,6 +10927,31 @@ export interface DataTypesGenericResponseDataTypesPayInvoiceResponse {
|
|
|
10891
10927
|
*/
|
|
10892
10928
|
'status'?: number;
|
|
10893
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
|
+
}
|
|
10894
10955
|
/**
|
|
10895
10956
|
*
|
|
10896
10957
|
* @export
|
|
@@ -11593,6 +11654,12 @@ export interface DataTypesInvoice {
|
|
|
11593
11654
|
* @memberof DataTypesInvoice
|
|
11594
11655
|
*/
|
|
11595
11656
|
'tax_amount'?: number;
|
|
11657
|
+
/**
|
|
11658
|
+
* Tax and GST details (comprehensive)
|
|
11659
|
+
* @type {DataTypesInvoiceTaxDetails}
|
|
11660
|
+
* @memberof DataTypesInvoice
|
|
11661
|
+
*/
|
|
11662
|
+
'tax_details'?: DataTypesInvoiceTaxDetails;
|
|
11596
11663
|
/**
|
|
11597
11664
|
*
|
|
11598
11665
|
* @type {number}
|
|
@@ -11618,6 +11685,24 @@ export interface DataTypesInvoiceItem {
|
|
|
11618
11685
|
* @memberof DataTypesInvoiceItem
|
|
11619
11686
|
*/
|
|
11620
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;
|
|
11621
11706
|
/**
|
|
11622
11707
|
*
|
|
11623
11708
|
* @type {string}
|
|
@@ -11636,6 +11721,12 @@ export interface DataTypesInvoiceItem {
|
|
|
11636
11721
|
* @memberof DataTypesInvoiceItem
|
|
11637
11722
|
*/
|
|
11638
11723
|
'tax_amount'?: number;
|
|
11724
|
+
/**
|
|
11725
|
+
* Detailed tax breakdown
|
|
11726
|
+
* @type {DataTypesTaxBreakdown}
|
|
11727
|
+
* @memberof DataTypesInvoiceItem
|
|
11728
|
+
*/
|
|
11729
|
+
'tax_breakdown'?: DataTypesTaxBreakdown;
|
|
11639
11730
|
/**
|
|
11640
11731
|
*
|
|
11641
11732
|
* @type {number}
|
|
@@ -11655,6 +11746,214 @@ export interface DataTypesInvoiceItem {
|
|
|
11655
11746
|
*/
|
|
11656
11747
|
'unit_price'?: number;
|
|
11657
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
|
+
}
|
|
11658
11957
|
/**
|
|
11659
11958
|
*
|
|
11660
11959
|
* @export
|
|
@@ -13476,6 +13775,99 @@ export interface DataTypesOrganizationResponse {
|
|
|
13476
13775
|
*/
|
|
13477
13776
|
'status'?: number;
|
|
13478
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
|
+
}
|
|
13479
13871
|
/**
|
|
13480
13872
|
*
|
|
13481
13873
|
* @export
|
|
@@ -13679,17 +14071,29 @@ export interface DataTypesPayInvoiceRequest {
|
|
|
13679
14071
|
*/
|
|
13680
14072
|
export interface DataTypesPayInvoiceResponse {
|
|
13681
14073
|
/**
|
|
13682
|
-
*
|
|
14074
|
+
* Amount in currency units
|
|
13683
14075
|
* @type {number}
|
|
13684
14076
|
* @memberof DataTypesPayInvoiceResponse
|
|
13685
14077
|
*/
|
|
13686
14078
|
'amount'?: number;
|
|
14079
|
+
/**
|
|
14080
|
+
*
|
|
14081
|
+
* @type {string}
|
|
14082
|
+
* @memberof DataTypesPayInvoiceResponse
|
|
14083
|
+
*/
|
|
14084
|
+
'created_at'?: string;
|
|
13687
14085
|
/**
|
|
13688
14086
|
*
|
|
13689
14087
|
* @type {string}
|
|
13690
14088
|
* @memberof DataTypesPayInvoiceResponse
|
|
13691
14089
|
*/
|
|
13692
14090
|
'currency'?: string;
|
|
14091
|
+
/**
|
|
14092
|
+
* Razorpay customer ID for tokenization
|
|
14093
|
+
* @type {string}
|
|
14094
|
+
* @memberof DataTypesPayInvoiceResponse
|
|
14095
|
+
*/
|
|
14096
|
+
'customer_id'?: string;
|
|
13693
14097
|
/**
|
|
13694
14098
|
* Customer details for prefill
|
|
13695
14099
|
* @type {{ [key: string]: any; }}
|
|
@@ -13703,13 +14107,13 @@ export interface DataTypesPayInvoiceResponse {
|
|
|
13703
14107
|
* @type {string}
|
|
13704
14108
|
* @memberof DataTypesPayInvoiceResponse
|
|
13705
14109
|
*/
|
|
13706
|
-
'
|
|
14110
|
+
'expires_at'?: string;
|
|
13707
14111
|
/**
|
|
13708
14112
|
*
|
|
13709
14113
|
* @type {string}
|
|
13710
14114
|
* @memberof DataTypesPayInvoiceResponse
|
|
13711
14115
|
*/
|
|
13712
|
-
'
|
|
14116
|
+
'gateway'?: string;
|
|
13713
14117
|
/**
|
|
13714
14118
|
*
|
|
13715
14119
|
* @type {{ [key: string]: any; }}
|
|
@@ -13719,11 +14123,17 @@ export interface DataTypesPayInvoiceResponse {
|
|
|
13719
14123
|
[key: string]: any;
|
|
13720
14124
|
};
|
|
13721
14125
|
/**
|
|
13722
|
-
*
|
|
14126
|
+
* Internal order ID
|
|
13723
14127
|
* @type {string}
|
|
13724
14128
|
* @memberof DataTypesPayInvoiceResponse
|
|
13725
14129
|
*/
|
|
13726
|
-
'
|
|
14130
|
+
'order_id'?: string;
|
|
14131
|
+
/**
|
|
14132
|
+
* Gateway payment/order ID (razorpay_order_id)
|
|
14133
|
+
* @type {string}
|
|
14134
|
+
* @memberof DataTypesPayInvoiceResponse
|
|
14135
|
+
*/
|
|
14136
|
+
'payment_id'?: string;
|
|
13727
14137
|
/**
|
|
13728
14138
|
*
|
|
13729
14139
|
* @type {string}
|
|
@@ -13731,11 +14141,11 @@ export interface DataTypesPayInvoiceResponse {
|
|
|
13731
14141
|
*/
|
|
13732
14142
|
'payment_url'?: string;
|
|
13733
14143
|
/**
|
|
13734
|
-
*
|
|
14144
|
+
* Gateway public key for frontend
|
|
13735
14145
|
* @type {string}
|
|
13736
14146
|
* @memberof DataTypesPayInvoiceResponse
|
|
13737
14147
|
*/
|
|
13738
|
-
'
|
|
14148
|
+
'public_key'?: string;
|
|
13739
14149
|
/**
|
|
13740
14150
|
*
|
|
13741
14151
|
* @type {string}
|
|
@@ -16985,6 +17395,276 @@ export interface DataTypesTaskRun {
|
|
|
16985
17395
|
*/
|
|
16986
17396
|
'task_run_id'?: number;
|
|
16987
17397
|
}
|
|
17398
|
+
/**
|
|
17399
|
+
*
|
|
17400
|
+
* @export
|
|
17401
|
+
* @interface DataTypesTaxBillingAddress
|
|
17402
|
+
*/
|
|
17403
|
+
export interface DataTypesTaxBillingAddress {
|
|
17404
|
+
/**
|
|
17405
|
+
*
|
|
17406
|
+
* @type {string}
|
|
17407
|
+
* @memberof DataTypesTaxBillingAddress
|
|
17408
|
+
*/
|
|
17409
|
+
'address_line1'?: string;
|
|
17410
|
+
/**
|
|
17411
|
+
*
|
|
17412
|
+
* @type {string}
|
|
17413
|
+
* @memberof DataTypesTaxBillingAddress
|
|
17414
|
+
*/
|
|
17415
|
+
'address_line2'?: string;
|
|
17416
|
+
/**
|
|
17417
|
+
*
|
|
17418
|
+
* @type {string}
|
|
17419
|
+
* @memberof DataTypesTaxBillingAddress
|
|
17420
|
+
*/
|
|
17421
|
+
'city'?: string;
|
|
17422
|
+
/**
|
|
17423
|
+
* ISO country code
|
|
17424
|
+
* @type {string}
|
|
17425
|
+
* @memberof DataTypesTaxBillingAddress
|
|
17426
|
+
*/
|
|
17427
|
+
'country'?: string;
|
|
17428
|
+
/**
|
|
17429
|
+
* Required for GST
|
|
17430
|
+
* @type {string}
|
|
17431
|
+
* @memberof DataTypesTaxBillingAddress
|
|
17432
|
+
*/
|
|
17433
|
+
'postal_code'?: string;
|
|
17434
|
+
/**
|
|
17435
|
+
* Required for GST
|
|
17436
|
+
* @type {string}
|
|
17437
|
+
* @memberof DataTypesTaxBillingAddress
|
|
17438
|
+
*/
|
|
17439
|
+
'state'?: string;
|
|
17440
|
+
}
|
|
17441
|
+
/**
|
|
17442
|
+
*
|
|
17443
|
+
* @export
|
|
17444
|
+
* @interface DataTypesTaxBreakdown
|
|
17445
|
+
*/
|
|
17446
|
+
export interface DataTypesTaxBreakdown {
|
|
17447
|
+
/**
|
|
17448
|
+
* Cess
|
|
17449
|
+
* @type {DataTypesTaxComponent}
|
|
17450
|
+
* @memberof DataTypesTaxBreakdown
|
|
17451
|
+
*/
|
|
17452
|
+
'cess'?: DataTypesTaxComponent;
|
|
17453
|
+
/**
|
|
17454
|
+
* GST components (India)
|
|
17455
|
+
* @type {DataTypesTaxComponent}
|
|
17456
|
+
* @memberof DataTypesTaxBreakdown
|
|
17457
|
+
*/
|
|
17458
|
+
'cgst'?: DataTypesTaxComponent;
|
|
17459
|
+
/**
|
|
17460
|
+
* Integrated GST
|
|
17461
|
+
* @type {DataTypesTaxComponent}
|
|
17462
|
+
* @memberof DataTypesTaxBreakdown
|
|
17463
|
+
*/
|
|
17464
|
+
'igst'?: DataTypesTaxComponent;
|
|
17465
|
+
/**
|
|
17466
|
+
* Generic tax components (for other countries)
|
|
17467
|
+
* @type {Array<DataTypesTaxComponent>}
|
|
17468
|
+
* @memberof DataTypesTaxBreakdown
|
|
17469
|
+
*/
|
|
17470
|
+
'other_taxes'?: Array<DataTypesTaxComponent>;
|
|
17471
|
+
/**
|
|
17472
|
+
* State GST
|
|
17473
|
+
* @type {DataTypesTaxComponent}
|
|
17474
|
+
* @memberof DataTypesTaxBreakdown
|
|
17475
|
+
*/
|
|
17476
|
+
'sgst'?: DataTypesTaxComponent;
|
|
17477
|
+
}
|
|
17478
|
+
/**
|
|
17479
|
+
*
|
|
17480
|
+
* @export
|
|
17481
|
+
* @interface DataTypesTaxCalculationItem
|
|
17482
|
+
*/
|
|
17483
|
+
export interface DataTypesTaxCalculationItem {
|
|
17484
|
+
/**
|
|
17485
|
+
*
|
|
17486
|
+
* @type {number}
|
|
17487
|
+
* @memberof DataTypesTaxCalculationItem
|
|
17488
|
+
*/
|
|
17489
|
+
'amount': number;
|
|
17490
|
+
/**
|
|
17491
|
+
*
|
|
17492
|
+
* @type {string}
|
|
17493
|
+
* @memberof DataTypesTaxCalculationItem
|
|
17494
|
+
*/
|
|
17495
|
+
'description': string;
|
|
17496
|
+
/**
|
|
17497
|
+
*
|
|
17498
|
+
* @type {string}
|
|
17499
|
+
* @memberof DataTypesTaxCalculationItem
|
|
17500
|
+
*/
|
|
17501
|
+
'exemption_reason'?: string;
|
|
17502
|
+
/**
|
|
17503
|
+
*
|
|
17504
|
+
* @type {string}
|
|
17505
|
+
* @memberof DataTypesTaxCalculationItem
|
|
17506
|
+
*/
|
|
17507
|
+
'hsn_sac_code'?: string;
|
|
17508
|
+
/**
|
|
17509
|
+
*
|
|
17510
|
+
* @type {boolean}
|
|
17511
|
+
* @memberof DataTypesTaxCalculationItem
|
|
17512
|
+
*/
|
|
17513
|
+
'is_tax_exempt'?: boolean;
|
|
17514
|
+
/**
|
|
17515
|
+
*
|
|
17516
|
+
* @type {number}
|
|
17517
|
+
* @memberof DataTypesTaxCalculationItem
|
|
17518
|
+
*/
|
|
17519
|
+
'quantity': number;
|
|
17520
|
+
}
|
|
17521
|
+
/**
|
|
17522
|
+
*
|
|
17523
|
+
* @export
|
|
17524
|
+
* @interface DataTypesTaxCalculationRequest
|
|
17525
|
+
*/
|
|
17526
|
+
export interface DataTypesTaxCalculationRequest {
|
|
17527
|
+
/**
|
|
17528
|
+
*
|
|
17529
|
+
* @type {number}
|
|
17530
|
+
* @memberof DataTypesTaxCalculationRequest
|
|
17531
|
+
*/
|
|
17532
|
+
'amount': number;
|
|
17533
|
+
/**
|
|
17534
|
+
*
|
|
17535
|
+
* @type {string}
|
|
17536
|
+
* @memberof DataTypesTaxCalculationRequest
|
|
17537
|
+
*/
|
|
17538
|
+
'currency': string;
|
|
17539
|
+
/**
|
|
17540
|
+
* null for B2C
|
|
17541
|
+
* @type {number}
|
|
17542
|
+
* @memberof DataTypesTaxCalculationRequest
|
|
17543
|
+
*/
|
|
17544
|
+
'customer_org_id'?: number;
|
|
17545
|
+
/**
|
|
17546
|
+
*
|
|
17547
|
+
* @type {Array<DataTypesTaxCalculationItem>}
|
|
17548
|
+
* @memberof DataTypesTaxCalculationRequest
|
|
17549
|
+
*/
|
|
17550
|
+
'items': Array<DataTypesTaxCalculationItem>;
|
|
17551
|
+
/**
|
|
17552
|
+
* Override if different from customer
|
|
17553
|
+
* @type {string}
|
|
17554
|
+
* @memberof DataTypesTaxCalculationRequest
|
|
17555
|
+
*/
|
|
17556
|
+
'place_of_supply'?: string;
|
|
17557
|
+
/**
|
|
17558
|
+
*
|
|
17559
|
+
* @type {number}
|
|
17560
|
+
* @memberof DataTypesTaxCalculationRequest
|
|
17561
|
+
*/
|
|
17562
|
+
'supplier_org_id': number;
|
|
17563
|
+
/**
|
|
17564
|
+
*
|
|
17565
|
+
* @type {string}
|
|
17566
|
+
* @memberof DataTypesTaxCalculationRequest
|
|
17567
|
+
*/
|
|
17568
|
+
'transaction_date'?: string;
|
|
17569
|
+
}
|
|
17570
|
+
/**
|
|
17571
|
+
*
|
|
17572
|
+
* @export
|
|
17573
|
+
* @interface DataTypesTaxCalculationResponse
|
|
17574
|
+
*/
|
|
17575
|
+
export interface DataTypesTaxCalculationResponse {
|
|
17576
|
+
/**
|
|
17577
|
+
*
|
|
17578
|
+
* @type {Array<DataTypesItemTaxDetails>}
|
|
17579
|
+
* @memberof DataTypesTaxCalculationResponse
|
|
17580
|
+
*/
|
|
17581
|
+
'item_tax_details'?: Array<DataTypesItemTaxDetails>;
|
|
17582
|
+
/**
|
|
17583
|
+
*
|
|
17584
|
+
* @type {boolean}
|
|
17585
|
+
* @memberof DataTypesTaxCalculationResponse
|
|
17586
|
+
*/
|
|
17587
|
+
'reverse_charge'?: boolean;
|
|
17588
|
+
/**
|
|
17589
|
+
*
|
|
17590
|
+
* @type {number}
|
|
17591
|
+
* @memberof DataTypesTaxCalculationResponse
|
|
17592
|
+
*/
|
|
17593
|
+
'subtotal'?: number;
|
|
17594
|
+
/**
|
|
17595
|
+
* \'intrastate\', \'interstate\', \'export\'
|
|
17596
|
+
* @type {string}
|
|
17597
|
+
* @memberof DataTypesTaxCalculationResponse
|
|
17598
|
+
*/
|
|
17599
|
+
'supply_type'?: string;
|
|
17600
|
+
/**
|
|
17601
|
+
*
|
|
17602
|
+
* @type {DataTypesTaxBreakdown}
|
|
17603
|
+
* @memberof DataTypesTaxCalculationResponse
|
|
17604
|
+
*/
|
|
17605
|
+
'tax_breakdown'?: DataTypesTaxBreakdown;
|
|
17606
|
+
/**
|
|
17607
|
+
* \'GST\', \'VAT\', \'Sales Tax\', etc.
|
|
17608
|
+
* @type {string}
|
|
17609
|
+
* @memberof DataTypesTaxCalculationResponse
|
|
17610
|
+
*/
|
|
17611
|
+
'tax_type'?: string;
|
|
17612
|
+
/**
|
|
17613
|
+
*
|
|
17614
|
+
* @type {number}
|
|
17615
|
+
* @memberof DataTypesTaxCalculationResponse
|
|
17616
|
+
*/
|
|
17617
|
+
'total_amount'?: number;
|
|
17618
|
+
/**
|
|
17619
|
+
*
|
|
17620
|
+
* @type {number}
|
|
17621
|
+
* @memberof DataTypesTaxCalculationResponse
|
|
17622
|
+
*/
|
|
17623
|
+
'total_tax'?: number;
|
|
17624
|
+
/**
|
|
17625
|
+
* \'B2B\', \'B2C\', \'B2G\'
|
|
17626
|
+
* @type {string}
|
|
17627
|
+
* @memberof DataTypesTaxCalculationResponse
|
|
17628
|
+
*/
|
|
17629
|
+
'transaction_type'?: string;
|
|
17630
|
+
/**
|
|
17631
|
+
*
|
|
17632
|
+
* @type {Array<string>}
|
|
17633
|
+
* @memberof DataTypesTaxCalculationResponse
|
|
17634
|
+
*/
|
|
17635
|
+
'warnings'?: Array<string>;
|
|
17636
|
+
}
|
|
17637
|
+
/**
|
|
17638
|
+
*
|
|
17639
|
+
* @export
|
|
17640
|
+
* @interface DataTypesTaxComponent
|
|
17641
|
+
*/
|
|
17642
|
+
export interface DataTypesTaxComponent {
|
|
17643
|
+
/**
|
|
17644
|
+
* Calculated amount
|
|
17645
|
+
* @type {number}
|
|
17646
|
+
* @memberof DataTypesTaxComponent
|
|
17647
|
+
*/
|
|
17648
|
+
'tax_amount'?: number;
|
|
17649
|
+
/**
|
|
17650
|
+
* \'CGST\', \'SGST\', \'IGST\', \'VAT\', \'Sales Tax\', etc.
|
|
17651
|
+
* @type {string}
|
|
17652
|
+
* @memberof DataTypesTaxComponent
|
|
17653
|
+
*/
|
|
17654
|
+
'tax_name'?: string;
|
|
17655
|
+
/**
|
|
17656
|
+
* Percentage
|
|
17657
|
+
* @type {number}
|
|
17658
|
+
* @memberof DataTypesTaxComponent
|
|
17659
|
+
*/
|
|
17660
|
+
'tax_rate'?: number;
|
|
17661
|
+
/**
|
|
17662
|
+
* Amount on which tax is calculated
|
|
17663
|
+
* @type {number}
|
|
17664
|
+
* @memberof DataTypesTaxComponent
|
|
17665
|
+
*/
|
|
17666
|
+
'taxable_amount'?: number;
|
|
17667
|
+
}
|
|
16988
17668
|
/**
|
|
16989
17669
|
*
|
|
16990
17670
|
* @export
|
|
@@ -17250,6 +17930,93 @@ export interface DataTypesUpdateOrganizationRequest {
|
|
|
17250
17930
|
*/
|
|
17251
17931
|
'ZipCode'?: string;
|
|
17252
17932
|
}
|
|
17933
|
+
/**
|
|
17934
|
+
*
|
|
17935
|
+
* @export
|
|
17936
|
+
* @interface DataTypesUpdateOrganizationTaxDetailsRequest
|
|
17937
|
+
*/
|
|
17938
|
+
export interface DataTypesUpdateOrganizationTaxDetailsRequest {
|
|
17939
|
+
/**
|
|
17940
|
+
*
|
|
17941
|
+
* @type {DataTypesTaxBillingAddress}
|
|
17942
|
+
* @memberof DataTypesUpdateOrganizationTaxDetailsRequest
|
|
17943
|
+
*/
|
|
17944
|
+
'billing_address'?: DataTypesTaxBillingAddress;
|
|
17945
|
+
/**
|
|
17946
|
+
*
|
|
17947
|
+
* @type {string}
|
|
17948
|
+
* @memberof DataTypesUpdateOrganizationTaxDetailsRequest
|
|
17949
|
+
*/
|
|
17950
|
+
'business_legal_name'?: string;
|
|
17951
|
+
/**
|
|
17952
|
+
*
|
|
17953
|
+
* @type {string}
|
|
17954
|
+
* @memberof DataTypesUpdateOrganizationTaxDetailsRequest
|
|
17955
|
+
*/
|
|
17956
|
+
'business_type'?: string;
|
|
17957
|
+
/**
|
|
17958
|
+
*
|
|
17959
|
+
* @type {string}
|
|
17960
|
+
* @memberof DataTypesUpdateOrganizationTaxDetailsRequest
|
|
17961
|
+
*/
|
|
17962
|
+
'gstin'?: string;
|
|
17963
|
+
/**
|
|
17964
|
+
*
|
|
17965
|
+
* @type {string}
|
|
17966
|
+
* @memberof DataTypesUpdateOrganizationTaxDetailsRequest
|
|
17967
|
+
*/
|
|
17968
|
+
'hsn_sac_code'?: string;
|
|
17969
|
+
/**
|
|
17970
|
+
*
|
|
17971
|
+
* @type {string}
|
|
17972
|
+
* @memberof DataTypesUpdateOrganizationTaxDetailsRequest
|
|
17973
|
+
*/
|
|
17974
|
+
'pan'?: string;
|
|
17975
|
+
/**
|
|
17976
|
+
*
|
|
17977
|
+
* @type {string}
|
|
17978
|
+
* @memberof DataTypesUpdateOrganizationTaxDetailsRequest
|
|
17979
|
+
*/
|
|
17980
|
+
'place_of_supply'?: string;
|
|
17981
|
+
/**
|
|
17982
|
+
*
|
|
17983
|
+
* @type {string}
|
|
17984
|
+
* @memberof DataTypesUpdateOrganizationTaxDetailsRequest
|
|
17985
|
+
*/
|
|
17986
|
+
'tax_exemption_certificate'?: string;
|
|
17987
|
+
/**
|
|
17988
|
+
*
|
|
17989
|
+
* @type {boolean}
|
|
17990
|
+
* @memberof DataTypesUpdateOrganizationTaxDetailsRequest
|
|
17991
|
+
*/
|
|
17992
|
+
'tax_exemption_status'?: boolean;
|
|
17993
|
+
/**
|
|
17994
|
+
*
|
|
17995
|
+
* @type {string}
|
|
17996
|
+
* @memberof DataTypesUpdateOrganizationTaxDetailsRequest
|
|
17997
|
+
*/
|
|
17998
|
+
'tax_exemption_valid_until'?: string;
|
|
17999
|
+
/**
|
|
18000
|
+
*
|
|
18001
|
+
* @type {string}
|
|
18002
|
+
* @memberof DataTypesUpdateOrganizationTaxDetailsRequest
|
|
18003
|
+
*/
|
|
18004
|
+
'tax_registration_country'?: string;
|
|
18005
|
+
/**
|
|
18006
|
+
*
|
|
18007
|
+
* @type {string}
|
|
18008
|
+
* @memberof DataTypesUpdateOrganizationTaxDetailsRequest
|
|
18009
|
+
*/
|
|
18010
|
+
'tax_registration_number'?: string;
|
|
18011
|
+
/**
|
|
18012
|
+
*
|
|
18013
|
+
* @type {{ [key: string]: any; }}
|
|
18014
|
+
* @memberof DataTypesUpdateOrganizationTaxDetailsRequest
|
|
18015
|
+
*/
|
|
18016
|
+
'tax_settings'?: {
|
|
18017
|
+
[key: string]: any;
|
|
18018
|
+
};
|
|
18019
|
+
}
|
|
17253
18020
|
/**
|
|
17254
18021
|
*
|
|
17255
18022
|
* @export
|
|
@@ -18459,6 +19226,106 @@ export interface FeatureLimitServiceLimitStatus {
|
|
|
18459
19226
|
*/
|
|
18460
19227
|
'plan_name'?: string;
|
|
18461
19228
|
}
|
|
19229
|
+
/**
|
|
19230
|
+
*
|
|
19231
|
+
* @export
|
|
19232
|
+
* @interface FeatureLimitsCheckGet200Response
|
|
19233
|
+
*/
|
|
19234
|
+
export interface FeatureLimitsCheckGet200Response {
|
|
19235
|
+
/**
|
|
19236
|
+
*
|
|
19237
|
+
* @type {DataTypesFeatureCheckResult}
|
|
19238
|
+
* @memberof FeatureLimitsCheckGet200Response
|
|
19239
|
+
*/
|
|
19240
|
+
'data'?: DataTypesFeatureCheckResult;
|
|
19241
|
+
/**
|
|
19242
|
+
*
|
|
19243
|
+
* @type {string}
|
|
19244
|
+
* @memberof FeatureLimitsCheckGet200Response
|
|
19245
|
+
*/
|
|
19246
|
+
'message'?: string;
|
|
19247
|
+
/**
|
|
19248
|
+
*
|
|
19249
|
+
* @type {number}
|
|
19250
|
+
* @memberof FeatureLimitsCheckGet200Response
|
|
19251
|
+
*/
|
|
19252
|
+
'status'?: number;
|
|
19253
|
+
}
|
|
19254
|
+
/**
|
|
19255
|
+
*
|
|
19256
|
+
* @export
|
|
19257
|
+
* @interface FeatureLimitsHistoryGet200Response
|
|
19258
|
+
*/
|
|
19259
|
+
export interface FeatureLimitsHistoryGet200Response {
|
|
19260
|
+
/**
|
|
19261
|
+
*
|
|
19262
|
+
* @type {Array<DataTypesFeatureUsageHistory>}
|
|
19263
|
+
* @memberof FeatureLimitsHistoryGet200Response
|
|
19264
|
+
*/
|
|
19265
|
+
'data'?: Array<DataTypesFeatureUsageHistory>;
|
|
19266
|
+
/**
|
|
19267
|
+
*
|
|
19268
|
+
* @type {string}
|
|
19269
|
+
* @memberof FeatureLimitsHistoryGet200Response
|
|
19270
|
+
*/
|
|
19271
|
+
'message'?: string;
|
|
19272
|
+
/**
|
|
19273
|
+
*
|
|
19274
|
+
* @type {number}
|
|
19275
|
+
* @memberof FeatureLimitsHistoryGet200Response
|
|
19276
|
+
*/
|
|
19277
|
+
'status'?: number;
|
|
19278
|
+
}
|
|
19279
|
+
/**
|
|
19280
|
+
*
|
|
19281
|
+
* @export
|
|
19282
|
+
* @interface FeatureLimitsPlanGet200Response
|
|
19283
|
+
*/
|
|
19284
|
+
export interface FeatureLimitsPlanGet200Response {
|
|
19285
|
+
/**
|
|
19286
|
+
*
|
|
19287
|
+
* @type {DataTypesPlanFeatures}
|
|
19288
|
+
* @memberof FeatureLimitsPlanGet200Response
|
|
19289
|
+
*/
|
|
19290
|
+
'data'?: DataTypesPlanFeatures;
|
|
19291
|
+
/**
|
|
19292
|
+
*
|
|
19293
|
+
* @type {string}
|
|
19294
|
+
* @memberof FeatureLimitsPlanGet200Response
|
|
19295
|
+
*/
|
|
19296
|
+
'message'?: string;
|
|
19297
|
+
/**
|
|
19298
|
+
*
|
|
19299
|
+
* @type {number}
|
|
19300
|
+
* @memberof FeatureLimitsPlanGet200Response
|
|
19301
|
+
*/
|
|
19302
|
+
'status'?: number;
|
|
19303
|
+
}
|
|
19304
|
+
/**
|
|
19305
|
+
*
|
|
19306
|
+
* @export
|
|
19307
|
+
* @interface FeatureLimitsUsageGet200Response
|
|
19308
|
+
*/
|
|
19309
|
+
export interface FeatureLimitsUsageGet200Response {
|
|
19310
|
+
/**
|
|
19311
|
+
*
|
|
19312
|
+
* @type {Array<DataTypesFeatureUsageStats>}
|
|
19313
|
+
* @memberof FeatureLimitsUsageGet200Response
|
|
19314
|
+
*/
|
|
19315
|
+
'data'?: Array<DataTypesFeatureUsageStats>;
|
|
19316
|
+
/**
|
|
19317
|
+
*
|
|
19318
|
+
* @type {string}
|
|
19319
|
+
* @memberof FeatureLimitsUsageGet200Response
|
|
19320
|
+
*/
|
|
19321
|
+
'message'?: string;
|
|
19322
|
+
/**
|
|
19323
|
+
*
|
|
19324
|
+
* @type {number}
|
|
19325
|
+
* @memberof FeatureLimitsUsageGet200Response
|
|
19326
|
+
*/
|
|
19327
|
+
'status'?: number;
|
|
19328
|
+
}
|
|
18462
19329
|
/**
|
|
18463
19330
|
*
|
|
18464
19331
|
* @export
|
|
@@ -23363,7 +24230,7 @@ export declare const BillingDashboardApiAxiosParamCreator: (configuration?: Conf
|
|
|
23363
24230
|
*/
|
|
23364
24231
|
adminBillingInvoicesIdDelete: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
23365
24232
|
/**
|
|
23366
|
-
*
|
|
24233
|
+
* Returns an invoice as a base64-encoded PDF blob for frontend download. PDFs are cached in S3 for performance.
|
|
23367
24234
|
* @summary Download invoice
|
|
23368
24235
|
* @param {string} id Invoice ID
|
|
23369
24236
|
* @param {*} [options] Override http request option.
|
|
@@ -23628,13 +24495,13 @@ export declare const BillingDashboardApiFp: (configuration?: Configuration) => {
|
|
|
23628
24495
|
*/
|
|
23629
24496
|
adminBillingInvoicesIdDelete(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
23630
24497
|
/**
|
|
23631
|
-
*
|
|
24498
|
+
* Returns an invoice as a base64-encoded PDF blob for frontend download. PDFs are cached in S3 for performance.
|
|
23632
24499
|
* @summary Download invoice
|
|
23633
24500
|
* @param {string} id Invoice ID
|
|
23634
24501
|
* @param {*} [options] Override http request option.
|
|
23635
24502
|
* @throws {RequiredError}
|
|
23636
24503
|
*/
|
|
23637
|
-
adminBillingInvoicesIdDownloadGet(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
24504
|
+
adminBillingInvoicesIdDownloadGet(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
23638
24505
|
/**
|
|
23639
24506
|
* Retrieves a single invoice by ID
|
|
23640
24507
|
* @summary Get invoice
|
|
@@ -23893,13 +24760,13 @@ export declare const BillingDashboardApiFactory: (configuration?: Configuration,
|
|
|
23893
24760
|
*/
|
|
23894
24761
|
adminBillingInvoicesIdDelete(id: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
23895
24762
|
/**
|
|
23896
|
-
*
|
|
24763
|
+
* Returns an invoice as a base64-encoded PDF blob for frontend download. PDFs are cached in S3 for performance.
|
|
23897
24764
|
* @summary Download invoice
|
|
23898
24765
|
* @param {string} id Invoice ID
|
|
23899
24766
|
* @param {*} [options] Override http request option.
|
|
23900
24767
|
* @throws {RequiredError}
|
|
23901
24768
|
*/
|
|
23902
|
-
adminBillingInvoicesIdDownloadGet(id: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
24769
|
+
adminBillingInvoicesIdDownloadGet(id: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
23903
24770
|
/**
|
|
23904
24771
|
* Retrieves a single invoice by ID
|
|
23905
24772
|
* @summary Get invoice
|
|
@@ -24174,14 +25041,14 @@ export declare class BillingDashboardApi extends BaseAPI {
|
|
|
24174
25041
|
*/
|
|
24175
25042
|
adminBillingInvoicesIdDelete(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
24176
25043
|
/**
|
|
24177
|
-
*
|
|
25044
|
+
* Returns an invoice as a base64-encoded PDF blob for frontend download. PDFs are cached in S3 for performance.
|
|
24178
25045
|
* @summary Download invoice
|
|
24179
25046
|
* @param {string} id Invoice ID
|
|
24180
25047
|
* @param {*} [options] Override http request option.
|
|
24181
25048
|
* @throws {RequiredError}
|
|
24182
25049
|
* @memberof BillingDashboardApi
|
|
24183
25050
|
*/
|
|
24184
|
-
adminBillingInvoicesIdDownloadGet(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
25051
|
+
adminBillingInvoicesIdDownloadGet(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
24185
25052
|
/**
|
|
24186
25053
|
* Retrieves a single invoice by ID
|
|
24187
25054
|
* @summary Get invoice
|
|
@@ -25472,7 +26339,7 @@ export declare const FeatureLimitsApiAxiosParamCreator: (configuration?: Configu
|
|
|
25472
26339
|
* @param {*} [options] Override http request option.
|
|
25473
26340
|
* @throws {RequiredError}
|
|
25474
26341
|
*/
|
|
25475
|
-
|
|
26342
|
+
adminFeatureLimitsViolationsGet: (featureName?: string, limit?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25476
26343
|
/**
|
|
25477
26344
|
* Checks if a specific feature is within limits without incrementing usage
|
|
25478
26345
|
* @summary Check if a feature can be used
|
|
@@ -25481,7 +26348,7 @@ export declare const FeatureLimitsApiAxiosParamCreator: (configuration?: Configu
|
|
|
25481
26348
|
* @param {*} [options] Override http request option.
|
|
25482
26349
|
* @throws {RequiredError}
|
|
25483
26350
|
*/
|
|
25484
|
-
|
|
26351
|
+
featureLimitsCheckGet: (featureName: string, amount?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25485
26352
|
/**
|
|
25486
26353
|
* Retrieves historical feature usage events for the organization
|
|
25487
26354
|
* @summary Get feature usage history
|
|
@@ -25490,35 +26357,35 @@ export declare const FeatureLimitsApiAxiosParamCreator: (configuration?: Configu
|
|
|
25490
26357
|
* @param {*} [options] Override http request option.
|
|
25491
26358
|
* @throws {RequiredError}
|
|
25492
26359
|
*/
|
|
25493
|
-
|
|
26360
|
+
featureLimitsHistoryGet: (featureName?: string, limit?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25494
26361
|
/**
|
|
25495
26362
|
* Retrieves the organization\'s current plan with all feature limits
|
|
25496
26363
|
* @summary Get organization plan features
|
|
25497
26364
|
* @param {*} [options] Override http request option.
|
|
25498
26365
|
* @throws {RequiredError}
|
|
25499
26366
|
*/
|
|
25500
|
-
|
|
26367
|
+
featureLimitsPlanGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25501
26368
|
/**
|
|
25502
26369
|
* Returns plan details and feature availability map for UI rendering
|
|
25503
26370
|
* @summary Get plan information for frontend
|
|
25504
26371
|
* @param {*} [options] Override http request option.
|
|
25505
26372
|
* @throws {RequiredError}
|
|
25506
26373
|
*/
|
|
25507
|
-
|
|
26374
|
+
featureLimitsPlanInfoGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25508
26375
|
/**
|
|
25509
26376
|
* Retrieves comprehensive real-time limit status for the organization including all features, credits, and API calls
|
|
25510
26377
|
* @summary Get real-time limit status
|
|
25511
26378
|
* @param {*} [options] Override http request option.
|
|
25512
26379
|
* @throws {RequiredError}
|
|
25513
26380
|
*/
|
|
25514
|
-
|
|
26381
|
+
featureLimitsStatusGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25515
26382
|
/**
|
|
25516
26383
|
* Retrieves current feature usage statistics for the organization
|
|
25517
26384
|
* @summary Get feature usage statistics
|
|
25518
26385
|
* @param {*} [options] Override http request option.
|
|
25519
26386
|
* @throws {RequiredError}
|
|
25520
26387
|
*/
|
|
25521
|
-
|
|
26388
|
+
featureLimitsUsageGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25522
26389
|
};
|
|
25523
26390
|
/**
|
|
25524
26391
|
* FeatureLimitsApi - functional programming interface
|
|
@@ -25533,7 +26400,7 @@ export declare const FeatureLimitsApiFp: (configuration?: Configuration) => {
|
|
|
25533
26400
|
* @param {*} [options] Override http request option.
|
|
25534
26401
|
* @throws {RequiredError}
|
|
25535
26402
|
*/
|
|
25536
|
-
|
|
26403
|
+
adminFeatureLimitsViolationsGet(featureName?: string, limit?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminFeatureLimitsViolationsGet200Response>>;
|
|
25537
26404
|
/**
|
|
25538
26405
|
* Checks if a specific feature is within limits without incrementing usage
|
|
25539
26406
|
* @summary Check if a feature can be used
|
|
@@ -25542,7 +26409,7 @@ export declare const FeatureLimitsApiFp: (configuration?: Configuration) => {
|
|
|
25542
26409
|
* @param {*} [options] Override http request option.
|
|
25543
26410
|
* @throws {RequiredError}
|
|
25544
26411
|
*/
|
|
25545
|
-
|
|
26412
|
+
featureLimitsCheckGet(featureName: string, amount?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FeatureLimitsCheckGet200Response>>;
|
|
25546
26413
|
/**
|
|
25547
26414
|
* Retrieves historical feature usage events for the organization
|
|
25548
26415
|
* @summary Get feature usage history
|
|
@@ -25551,21 +26418,21 @@ export declare const FeatureLimitsApiFp: (configuration?: Configuration) => {
|
|
|
25551
26418
|
* @param {*} [options] Override http request option.
|
|
25552
26419
|
* @throws {RequiredError}
|
|
25553
26420
|
*/
|
|
25554
|
-
|
|
26421
|
+
featureLimitsHistoryGet(featureName?: string, limit?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FeatureLimitsHistoryGet200Response>>;
|
|
25555
26422
|
/**
|
|
25556
26423
|
* Retrieves the organization\'s current plan with all feature limits
|
|
25557
26424
|
* @summary Get organization plan features
|
|
25558
26425
|
* @param {*} [options] Override http request option.
|
|
25559
26426
|
* @throws {RequiredError}
|
|
25560
26427
|
*/
|
|
25561
|
-
|
|
26428
|
+
featureLimitsPlanGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FeatureLimitsPlanGet200Response>>;
|
|
25562
26429
|
/**
|
|
25563
26430
|
* Returns plan details and feature availability map for UI rendering
|
|
25564
26431
|
* @summary Get plan information for frontend
|
|
25565
26432
|
* @param {*} [options] Override http request option.
|
|
25566
26433
|
* @throws {RequiredError}
|
|
25567
26434
|
*/
|
|
25568
|
-
|
|
26435
|
+
featureLimitsPlanInfoGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<{
|
|
25569
26436
|
[key: string]: any;
|
|
25570
26437
|
}>>;
|
|
25571
26438
|
/**
|
|
@@ -25574,14 +26441,14 @@ export declare const FeatureLimitsApiFp: (configuration?: Configuration) => {
|
|
|
25574
26441
|
* @param {*} [options] Override http request option.
|
|
25575
26442
|
* @throws {RequiredError}
|
|
25576
26443
|
*/
|
|
25577
|
-
|
|
26444
|
+
featureLimitsStatusGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseFeatureLimitServiceLimitStatus>>;
|
|
25578
26445
|
/**
|
|
25579
26446
|
* Retrieves current feature usage statistics for the organization
|
|
25580
26447
|
* @summary Get feature usage statistics
|
|
25581
26448
|
* @param {*} [options] Override http request option.
|
|
25582
26449
|
* @throws {RequiredError}
|
|
25583
26450
|
*/
|
|
25584
|
-
|
|
26451
|
+
featureLimitsUsageGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FeatureLimitsUsageGet200Response>>;
|
|
25585
26452
|
};
|
|
25586
26453
|
/**
|
|
25587
26454
|
* FeatureLimitsApi - factory interface
|
|
@@ -25596,7 +26463,7 @@ export declare const FeatureLimitsApiFactory: (configuration?: Configuration, ba
|
|
|
25596
26463
|
* @param {*} [options] Override http request option.
|
|
25597
26464
|
* @throws {RequiredError}
|
|
25598
26465
|
*/
|
|
25599
|
-
|
|
26466
|
+
adminFeatureLimitsViolationsGet(featureName?: string, limit?: number, options?: RawAxiosRequestConfig): AxiosPromise<AdminFeatureLimitsViolationsGet200Response>;
|
|
25600
26467
|
/**
|
|
25601
26468
|
* Checks if a specific feature is within limits without incrementing usage
|
|
25602
26469
|
* @summary Check if a feature can be used
|
|
@@ -25605,7 +26472,7 @@ export declare const FeatureLimitsApiFactory: (configuration?: Configuration, ba
|
|
|
25605
26472
|
* @param {*} [options] Override http request option.
|
|
25606
26473
|
* @throws {RequiredError}
|
|
25607
26474
|
*/
|
|
25608
|
-
|
|
26475
|
+
featureLimitsCheckGet(featureName: string, amount?: number, options?: RawAxiosRequestConfig): AxiosPromise<FeatureLimitsCheckGet200Response>;
|
|
25609
26476
|
/**
|
|
25610
26477
|
* Retrieves historical feature usage events for the organization
|
|
25611
26478
|
* @summary Get feature usage history
|
|
@@ -25614,21 +26481,21 @@ export declare const FeatureLimitsApiFactory: (configuration?: Configuration, ba
|
|
|
25614
26481
|
* @param {*} [options] Override http request option.
|
|
25615
26482
|
* @throws {RequiredError}
|
|
25616
26483
|
*/
|
|
25617
|
-
|
|
26484
|
+
featureLimitsHistoryGet(featureName?: string, limit?: number, options?: RawAxiosRequestConfig): AxiosPromise<FeatureLimitsHistoryGet200Response>;
|
|
25618
26485
|
/**
|
|
25619
26486
|
* Retrieves the organization\'s current plan with all feature limits
|
|
25620
26487
|
* @summary Get organization plan features
|
|
25621
26488
|
* @param {*} [options] Override http request option.
|
|
25622
26489
|
* @throws {RequiredError}
|
|
25623
26490
|
*/
|
|
25624
|
-
|
|
26491
|
+
featureLimitsPlanGet(options?: RawAxiosRequestConfig): AxiosPromise<FeatureLimitsPlanGet200Response>;
|
|
25625
26492
|
/**
|
|
25626
26493
|
* Returns plan details and feature availability map for UI rendering
|
|
25627
26494
|
* @summary Get plan information for frontend
|
|
25628
26495
|
* @param {*} [options] Override http request option.
|
|
25629
26496
|
* @throws {RequiredError}
|
|
25630
26497
|
*/
|
|
25631
|
-
|
|
26498
|
+
featureLimitsPlanInfoGet(options?: RawAxiosRequestConfig): AxiosPromise<{
|
|
25632
26499
|
[key: string]: any;
|
|
25633
26500
|
}>;
|
|
25634
26501
|
/**
|
|
@@ -25637,14 +26504,14 @@ export declare const FeatureLimitsApiFactory: (configuration?: Configuration, ba
|
|
|
25637
26504
|
* @param {*} [options] Override http request option.
|
|
25638
26505
|
* @throws {RequiredError}
|
|
25639
26506
|
*/
|
|
25640
|
-
|
|
26507
|
+
featureLimitsStatusGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseFeatureLimitServiceLimitStatus>;
|
|
25641
26508
|
/**
|
|
25642
26509
|
* Retrieves current feature usage statistics for the organization
|
|
25643
26510
|
* @summary Get feature usage statistics
|
|
25644
26511
|
* @param {*} [options] Override http request option.
|
|
25645
26512
|
* @throws {RequiredError}
|
|
25646
26513
|
*/
|
|
25647
|
-
|
|
26514
|
+
featureLimitsUsageGet(options?: RawAxiosRequestConfig): AxiosPromise<FeatureLimitsUsageGet200Response>;
|
|
25648
26515
|
};
|
|
25649
26516
|
/**
|
|
25650
26517
|
* FeatureLimitsApi - object-oriented interface
|
|
@@ -25662,7 +26529,7 @@ export declare class FeatureLimitsApi extends BaseAPI {
|
|
|
25662
26529
|
* @throws {RequiredError}
|
|
25663
26530
|
* @memberof FeatureLimitsApi
|
|
25664
26531
|
*/
|
|
25665
|
-
|
|
26532
|
+
adminFeatureLimitsViolationsGet(featureName?: string, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminFeatureLimitsViolationsGet200Response, any, {}>>;
|
|
25666
26533
|
/**
|
|
25667
26534
|
* Checks if a specific feature is within limits without incrementing usage
|
|
25668
26535
|
* @summary Check if a feature can be used
|
|
@@ -25672,7 +26539,7 @@ export declare class FeatureLimitsApi extends BaseAPI {
|
|
|
25672
26539
|
* @throws {RequiredError}
|
|
25673
26540
|
* @memberof FeatureLimitsApi
|
|
25674
26541
|
*/
|
|
25675
|
-
|
|
26542
|
+
featureLimitsCheckGet(featureName: string, amount?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FeatureLimitsCheckGet200Response, any, {}>>;
|
|
25676
26543
|
/**
|
|
25677
26544
|
* Retrieves historical feature usage events for the organization
|
|
25678
26545
|
* @summary Get feature usage history
|
|
@@ -25682,7 +26549,7 @@ export declare class FeatureLimitsApi extends BaseAPI {
|
|
|
25682
26549
|
* @throws {RequiredError}
|
|
25683
26550
|
* @memberof FeatureLimitsApi
|
|
25684
26551
|
*/
|
|
25685
|
-
|
|
26552
|
+
featureLimitsHistoryGet(featureName?: string, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FeatureLimitsHistoryGet200Response, any, {}>>;
|
|
25686
26553
|
/**
|
|
25687
26554
|
* Retrieves the organization\'s current plan with all feature limits
|
|
25688
26555
|
* @summary Get organization plan features
|
|
@@ -25690,7 +26557,7 @@ export declare class FeatureLimitsApi extends BaseAPI {
|
|
|
25690
26557
|
* @throws {RequiredError}
|
|
25691
26558
|
* @memberof FeatureLimitsApi
|
|
25692
26559
|
*/
|
|
25693
|
-
|
|
26560
|
+
featureLimitsPlanGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FeatureLimitsPlanGet200Response, any, {}>>;
|
|
25694
26561
|
/**
|
|
25695
26562
|
* Returns plan details and feature availability map for UI rendering
|
|
25696
26563
|
* @summary Get plan information for frontend
|
|
@@ -25698,7 +26565,7 @@ export declare class FeatureLimitsApi extends BaseAPI {
|
|
|
25698
26565
|
* @throws {RequiredError}
|
|
25699
26566
|
* @memberof FeatureLimitsApi
|
|
25700
26567
|
*/
|
|
25701
|
-
|
|
26568
|
+
featureLimitsPlanInfoGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
|
|
25702
26569
|
[key: string]: any;
|
|
25703
26570
|
}, any, {}>>;
|
|
25704
26571
|
/**
|
|
@@ -25708,7 +26575,7 @@ export declare class FeatureLimitsApi extends BaseAPI {
|
|
|
25708
26575
|
* @throws {RequiredError}
|
|
25709
26576
|
* @memberof FeatureLimitsApi
|
|
25710
26577
|
*/
|
|
25711
|
-
|
|
26578
|
+
featureLimitsStatusGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseFeatureLimitServiceLimitStatus, any, {}>>;
|
|
25712
26579
|
/**
|
|
25713
26580
|
* Retrieves current feature usage statistics for the organization
|
|
25714
26581
|
* @summary Get feature usage statistics
|
|
@@ -25716,7 +26583,7 @@ export declare class FeatureLimitsApi extends BaseAPI {
|
|
|
25716
26583
|
* @throws {RequiredError}
|
|
25717
26584
|
* @memberof FeatureLimitsApi
|
|
25718
26585
|
*/
|
|
25719
|
-
|
|
26586
|
+
featureLimitsUsageGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FeatureLimitsUsageGet200Response, any, {}>>;
|
|
25720
26587
|
}
|
|
25721
26588
|
/**
|
|
25722
26589
|
* FeatureLimitsAdminApi - axios parameter creator
|
|
@@ -25729,7 +26596,7 @@ export declare const FeatureLimitsAdminApiAxiosParamCreator: (configuration?: Co
|
|
|
25729
26596
|
* @param {*} [options] Override http request option.
|
|
25730
26597
|
* @throws {RequiredError}
|
|
25731
26598
|
*/
|
|
25732
|
-
|
|
26599
|
+
adminFeatureLimitsCacheInvalidatePost: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25733
26600
|
/**
|
|
25734
26601
|
* Resets usage counter for a specific feature (admin only)
|
|
25735
26602
|
* @summary Reset feature usage (Admin)
|
|
@@ -25737,7 +26604,7 @@ export declare const FeatureLimitsAdminApiAxiosParamCreator: (configuration?: Co
|
|
|
25737
26604
|
* @param {*} [options] Override http request option.
|
|
25738
26605
|
* @throws {RequiredError}
|
|
25739
26606
|
*/
|
|
25740
|
-
|
|
26607
|
+
adminFeatureLimitsResetPost: (featureName: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25741
26608
|
};
|
|
25742
26609
|
/**
|
|
25743
26610
|
* FeatureLimitsAdminApi - functional programming interface
|
|
@@ -25750,7 +26617,7 @@ export declare const FeatureLimitsAdminApiFp: (configuration?: Configuration) =>
|
|
|
25750
26617
|
* @param {*} [options] Override http request option.
|
|
25751
26618
|
* @throws {RequiredError}
|
|
25752
26619
|
*/
|
|
25753
|
-
|
|
26620
|
+
adminFeatureLimitsCacheInvalidatePost(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
25754
26621
|
/**
|
|
25755
26622
|
* Resets usage counter for a specific feature (admin only)
|
|
25756
26623
|
* @summary Reset feature usage (Admin)
|
|
@@ -25758,7 +26625,7 @@ export declare const FeatureLimitsAdminApiFp: (configuration?: Configuration) =>
|
|
|
25758
26625
|
* @param {*} [options] Override http request option.
|
|
25759
26626
|
* @throws {RequiredError}
|
|
25760
26627
|
*/
|
|
25761
|
-
|
|
26628
|
+
adminFeatureLimitsResetPost(featureName: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
25762
26629
|
};
|
|
25763
26630
|
/**
|
|
25764
26631
|
* FeatureLimitsAdminApi - factory interface
|
|
@@ -25771,7 +26638,7 @@ export declare const FeatureLimitsAdminApiFactory: (configuration?: Configuratio
|
|
|
25771
26638
|
* @param {*} [options] Override http request option.
|
|
25772
26639
|
* @throws {RequiredError}
|
|
25773
26640
|
*/
|
|
25774
|
-
|
|
26641
|
+
adminFeatureLimitsCacheInvalidatePost(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
25775
26642
|
/**
|
|
25776
26643
|
* Resets usage counter for a specific feature (admin only)
|
|
25777
26644
|
* @summary Reset feature usage (Admin)
|
|
@@ -25779,7 +26646,7 @@ export declare const FeatureLimitsAdminApiFactory: (configuration?: Configuratio
|
|
|
25779
26646
|
* @param {*} [options] Override http request option.
|
|
25780
26647
|
* @throws {RequiredError}
|
|
25781
26648
|
*/
|
|
25782
|
-
|
|
26649
|
+
adminFeatureLimitsResetPost(featureName: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
25783
26650
|
};
|
|
25784
26651
|
/**
|
|
25785
26652
|
* FeatureLimitsAdminApi - object-oriented interface
|
|
@@ -25795,7 +26662,7 @@ export declare class FeatureLimitsAdminApi extends BaseAPI {
|
|
|
25795
26662
|
* @throws {RequiredError}
|
|
25796
26663
|
* @memberof FeatureLimitsAdminApi
|
|
25797
26664
|
*/
|
|
25798
|
-
|
|
26665
|
+
adminFeatureLimitsCacheInvalidatePost(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
25799
26666
|
/**
|
|
25800
26667
|
* Resets usage counter for a specific feature (admin only)
|
|
25801
26668
|
* @summary Reset feature usage (Admin)
|
|
@@ -25804,7 +26671,7 @@ export declare class FeatureLimitsAdminApi extends BaseAPI {
|
|
|
25804
26671
|
* @throws {RequiredError}
|
|
25805
26672
|
* @memberof FeatureLimitsAdminApi
|
|
25806
26673
|
*/
|
|
25807
|
-
|
|
26674
|
+
adminFeatureLimitsResetPost(featureName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
25808
26675
|
}
|
|
25809
26676
|
/**
|
|
25810
26677
|
* ItemAnalyticsApi - axios parameter creator
|
|
@@ -34566,6 +35433,160 @@ export declare class SubscriptionsApi extends BaseAPI {
|
|
|
34566
35433
|
*/
|
|
34567
35434
|
miscSubscriptionsSubscriptionIDGet(subscriptionID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSubscriptionResponse, any, {}>>;
|
|
34568
35435
|
}
|
|
35436
|
+
/**
|
|
35437
|
+
* TaxManagementApi - axios parameter creator
|
|
35438
|
+
* @export
|
|
35439
|
+
*/
|
|
35440
|
+
export declare const TaxManagementApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
35441
|
+
/**
|
|
35442
|
+
* Calculates GST/VAT for a transaction in a payment gateway agnostic way
|
|
35443
|
+
* @summary Calculate tax for a transaction
|
|
35444
|
+
* @param {DataTypesTaxCalculationRequest} dataTypesTaxCalculationRequest Tax calculation request
|
|
35445
|
+
* @param {*} [options] Override http request option.
|
|
35446
|
+
* @throws {RequiredError}
|
|
35447
|
+
*/
|
|
35448
|
+
adminTaxCalculatePost: (dataTypesTaxCalculationRequest: DataTypesTaxCalculationRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
35449
|
+
/**
|
|
35450
|
+
* Retrieves GST and taxation details for an organization
|
|
35451
|
+
* @summary Get organization tax details
|
|
35452
|
+
* @param {*} [options] Override http request option.
|
|
35453
|
+
* @throws {RequiredError}
|
|
35454
|
+
*/
|
|
35455
|
+
adminTaxOrganizationGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
35456
|
+
/**
|
|
35457
|
+
* Updates GST and taxation details for an organization
|
|
35458
|
+
* @summary Update organization tax details
|
|
35459
|
+
* @param {DataTypesUpdateOrganizationTaxDetailsRequest} dataTypesUpdateOrganizationTaxDetailsRequest Tax details to update
|
|
35460
|
+
* @param {*} [options] Override http request option.
|
|
35461
|
+
* @throws {RequiredError}
|
|
35462
|
+
*/
|
|
35463
|
+
adminTaxOrganizationPut: (dataTypesUpdateOrganizationTaxDetailsRequest: DataTypesUpdateOrganizationTaxDetailsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
35464
|
+
/**
|
|
35465
|
+
* Validates GSTIN format and optionally verifies with GST portal
|
|
35466
|
+
* @summary Validate GSTIN
|
|
35467
|
+
* @param {DataTypesGSTVerificationRequest} dataTypesGSTVerificationRequest GSTIN to validate
|
|
35468
|
+
* @param {*} [options] Override http request option.
|
|
35469
|
+
* @throws {RequiredError}
|
|
35470
|
+
*/
|
|
35471
|
+
adminTaxValidateGstinPost: (dataTypesGSTVerificationRequest: DataTypesGSTVerificationRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
35472
|
+
};
|
|
35473
|
+
/**
|
|
35474
|
+
* TaxManagementApi - functional programming interface
|
|
35475
|
+
* @export
|
|
35476
|
+
*/
|
|
35477
|
+
export declare const TaxManagementApiFp: (configuration?: Configuration) => {
|
|
35478
|
+
/**
|
|
35479
|
+
* Calculates GST/VAT for a transaction in a payment gateway agnostic way
|
|
35480
|
+
* @summary Calculate tax for a transaction
|
|
35481
|
+
* @param {DataTypesTaxCalculationRequest} dataTypesTaxCalculationRequest Tax calculation request
|
|
35482
|
+
* @param {*} [options] Override http request option.
|
|
35483
|
+
* @throws {RequiredError}
|
|
35484
|
+
*/
|
|
35485
|
+
adminTaxCalculatePost(dataTypesTaxCalculationRequest: DataTypesTaxCalculationRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesTaxCalculationResponse>>;
|
|
35486
|
+
/**
|
|
35487
|
+
* Retrieves GST and taxation details for an organization
|
|
35488
|
+
* @summary Get organization tax details
|
|
35489
|
+
* @param {*} [options] Override http request option.
|
|
35490
|
+
* @throws {RequiredError}
|
|
35491
|
+
*/
|
|
35492
|
+
adminTaxOrganizationGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesOrganizationTaxDetails>>;
|
|
35493
|
+
/**
|
|
35494
|
+
* Updates GST and taxation details for an organization
|
|
35495
|
+
* @summary Update organization tax details
|
|
35496
|
+
* @param {DataTypesUpdateOrganizationTaxDetailsRequest} dataTypesUpdateOrganizationTaxDetailsRequest Tax details to update
|
|
35497
|
+
* @param {*} [options] Override http request option.
|
|
35498
|
+
* @throws {RequiredError}
|
|
35499
|
+
*/
|
|
35500
|
+
adminTaxOrganizationPut(dataTypesUpdateOrganizationTaxDetailsRequest: DataTypesUpdateOrganizationTaxDetailsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
35501
|
+
/**
|
|
35502
|
+
* Validates GSTIN format and optionally verifies with GST portal
|
|
35503
|
+
* @summary Validate GSTIN
|
|
35504
|
+
* @param {DataTypesGSTVerificationRequest} dataTypesGSTVerificationRequest GSTIN to validate
|
|
35505
|
+
* @param {*} [options] Override http request option.
|
|
35506
|
+
* @throws {RequiredError}
|
|
35507
|
+
*/
|
|
35508
|
+
adminTaxValidateGstinPost(dataTypesGSTVerificationRequest: DataTypesGSTVerificationRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesGSTVerificationResponse>>;
|
|
35509
|
+
};
|
|
35510
|
+
/**
|
|
35511
|
+
* TaxManagementApi - factory interface
|
|
35512
|
+
* @export
|
|
35513
|
+
*/
|
|
35514
|
+
export declare const TaxManagementApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
35515
|
+
/**
|
|
35516
|
+
* Calculates GST/VAT for a transaction in a payment gateway agnostic way
|
|
35517
|
+
* @summary Calculate tax for a transaction
|
|
35518
|
+
* @param {DataTypesTaxCalculationRequest} dataTypesTaxCalculationRequest Tax calculation request
|
|
35519
|
+
* @param {*} [options] Override http request option.
|
|
35520
|
+
* @throws {RequiredError}
|
|
35521
|
+
*/
|
|
35522
|
+
adminTaxCalculatePost(dataTypesTaxCalculationRequest: DataTypesTaxCalculationRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesTaxCalculationResponse>;
|
|
35523
|
+
/**
|
|
35524
|
+
* Retrieves GST and taxation details for an organization
|
|
35525
|
+
* @summary Get organization tax details
|
|
35526
|
+
* @param {*} [options] Override http request option.
|
|
35527
|
+
* @throws {RequiredError}
|
|
35528
|
+
*/
|
|
35529
|
+
adminTaxOrganizationGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesOrganizationTaxDetails>;
|
|
35530
|
+
/**
|
|
35531
|
+
* Updates GST and taxation details for an organization
|
|
35532
|
+
* @summary Update organization tax details
|
|
35533
|
+
* @param {DataTypesUpdateOrganizationTaxDetailsRequest} dataTypesUpdateOrganizationTaxDetailsRequest Tax details to update
|
|
35534
|
+
* @param {*} [options] Override http request option.
|
|
35535
|
+
* @throws {RequiredError}
|
|
35536
|
+
*/
|
|
35537
|
+
adminTaxOrganizationPut(dataTypesUpdateOrganizationTaxDetailsRequest: DataTypesUpdateOrganizationTaxDetailsRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
35538
|
+
/**
|
|
35539
|
+
* Validates GSTIN format and optionally verifies with GST portal
|
|
35540
|
+
* @summary Validate GSTIN
|
|
35541
|
+
* @param {DataTypesGSTVerificationRequest} dataTypesGSTVerificationRequest GSTIN to validate
|
|
35542
|
+
* @param {*} [options] Override http request option.
|
|
35543
|
+
* @throws {RequiredError}
|
|
35544
|
+
*/
|
|
35545
|
+
adminTaxValidateGstinPost(dataTypesGSTVerificationRequest: DataTypesGSTVerificationRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesGSTVerificationResponse>;
|
|
35546
|
+
};
|
|
35547
|
+
/**
|
|
35548
|
+
* TaxManagementApi - object-oriented interface
|
|
35549
|
+
* @export
|
|
35550
|
+
* @class TaxManagementApi
|
|
35551
|
+
* @extends {BaseAPI}
|
|
35552
|
+
*/
|
|
35553
|
+
export declare class TaxManagementApi extends BaseAPI {
|
|
35554
|
+
/**
|
|
35555
|
+
* Calculates GST/VAT for a transaction in a payment gateway agnostic way
|
|
35556
|
+
* @summary Calculate tax for a transaction
|
|
35557
|
+
* @param {DataTypesTaxCalculationRequest} dataTypesTaxCalculationRequest Tax calculation request
|
|
35558
|
+
* @param {*} [options] Override http request option.
|
|
35559
|
+
* @throws {RequiredError}
|
|
35560
|
+
* @memberof TaxManagementApi
|
|
35561
|
+
*/
|
|
35562
|
+
adminTaxCalculatePost(dataTypesTaxCalculationRequest: DataTypesTaxCalculationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesTaxCalculationResponse, any, {}>>;
|
|
35563
|
+
/**
|
|
35564
|
+
* Retrieves GST and taxation details for an organization
|
|
35565
|
+
* @summary Get organization tax details
|
|
35566
|
+
* @param {*} [options] Override http request option.
|
|
35567
|
+
* @throws {RequiredError}
|
|
35568
|
+
* @memberof TaxManagementApi
|
|
35569
|
+
*/
|
|
35570
|
+
adminTaxOrganizationGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesOrganizationTaxDetails, any, {}>>;
|
|
35571
|
+
/**
|
|
35572
|
+
* Updates GST and taxation details for an organization
|
|
35573
|
+
* @summary Update organization tax details
|
|
35574
|
+
* @param {DataTypesUpdateOrganizationTaxDetailsRequest} dataTypesUpdateOrganizationTaxDetailsRequest Tax details to update
|
|
35575
|
+
* @param {*} [options] Override http request option.
|
|
35576
|
+
* @throws {RequiredError}
|
|
35577
|
+
* @memberof TaxManagementApi
|
|
35578
|
+
*/
|
|
35579
|
+
adminTaxOrganizationPut(dataTypesUpdateOrganizationTaxDetailsRequest: DataTypesUpdateOrganizationTaxDetailsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
35580
|
+
/**
|
|
35581
|
+
* Validates GSTIN format and optionally verifies with GST portal
|
|
35582
|
+
* @summary Validate GSTIN
|
|
35583
|
+
* @param {DataTypesGSTVerificationRequest} dataTypesGSTVerificationRequest GSTIN to validate
|
|
35584
|
+
* @param {*} [options] Override http request option.
|
|
35585
|
+
* @throws {RequiredError}
|
|
35586
|
+
* @memberof TaxManagementApi
|
|
35587
|
+
*/
|
|
35588
|
+
adminTaxValidateGstinPost(dataTypesGSTVerificationRequest: DataTypesGSTVerificationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesGSTVerificationResponse, any, {}>>;
|
|
35589
|
+
}
|
|
34569
35590
|
/**
|
|
34570
35591
|
* UserApi - axios parameter creator
|
|
34571
35592
|
* @export
|