@seekora-ai/admin-api 1.1.1 → 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 +35 -16
- package/api.ts +1383 -214
- package/dist/api.d.ts +1171 -168
- package/dist/api.js +395 -89
- package/dist/esm/api.d.ts +1171 -168
- package/dist/esm/api.js +389 -87
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.1.2.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
|
|
@@ -16985,6 +17377,276 @@ export interface DataTypesTaskRun {
|
|
|
16985
17377
|
*/
|
|
16986
17378
|
'task_run_id'?: number;
|
|
16987
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
|
+
}
|
|
16988
17650
|
/**
|
|
16989
17651
|
*
|
|
16990
17652
|
* @export
|
|
@@ -17250,6 +17912,93 @@ export interface DataTypesUpdateOrganizationRequest {
|
|
|
17250
17912
|
*/
|
|
17251
17913
|
'ZipCode'?: string;
|
|
17252
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
|
+
}
|
|
17253
18002
|
/**
|
|
17254
18003
|
*
|
|
17255
18004
|
* @export
|
|
@@ -18459,6 +19208,106 @@ export interface FeatureLimitServiceLimitStatus {
|
|
|
18459
19208
|
*/
|
|
18460
19209
|
'plan_name'?: string;
|
|
18461
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
|
+
}
|
|
18462
19311
|
/**
|
|
18463
19312
|
*
|
|
18464
19313
|
* @export
|
|
@@ -23363,7 +24212,7 @@ export declare const BillingDashboardApiAxiosParamCreator: (configuration?: Conf
|
|
|
23363
24212
|
*/
|
|
23364
24213
|
adminBillingInvoicesIdDelete: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
23365
24214
|
/**
|
|
23366
|
-
*
|
|
24215
|
+
* Returns an invoice as a base64-encoded PDF blob for frontend download. PDFs are cached in S3 for performance.
|
|
23367
24216
|
* @summary Download invoice
|
|
23368
24217
|
* @param {string} id Invoice ID
|
|
23369
24218
|
* @param {*} [options] Override http request option.
|
|
@@ -23628,13 +24477,13 @@ export declare const BillingDashboardApiFp: (configuration?: Configuration) => {
|
|
|
23628
24477
|
*/
|
|
23629
24478
|
adminBillingInvoicesIdDelete(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
23630
24479
|
/**
|
|
23631
|
-
*
|
|
24480
|
+
* Returns an invoice as a base64-encoded PDF blob for frontend download. PDFs are cached in S3 for performance.
|
|
23632
24481
|
* @summary Download invoice
|
|
23633
24482
|
* @param {string} id Invoice ID
|
|
23634
24483
|
* @param {*} [options] Override http request option.
|
|
23635
24484
|
* @throws {RequiredError}
|
|
23636
24485
|
*/
|
|
23637
|
-
adminBillingInvoicesIdDownloadGet(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
24486
|
+
adminBillingInvoicesIdDownloadGet(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
23638
24487
|
/**
|
|
23639
24488
|
* Retrieves a single invoice by ID
|
|
23640
24489
|
* @summary Get invoice
|
|
@@ -23893,13 +24742,13 @@ export declare const BillingDashboardApiFactory: (configuration?: Configuration,
|
|
|
23893
24742
|
*/
|
|
23894
24743
|
adminBillingInvoicesIdDelete(id: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
23895
24744
|
/**
|
|
23896
|
-
*
|
|
24745
|
+
* Returns an invoice as a base64-encoded PDF blob for frontend download. PDFs are cached in S3 for performance.
|
|
23897
24746
|
* @summary Download invoice
|
|
23898
24747
|
* @param {string} id Invoice ID
|
|
23899
24748
|
* @param {*} [options] Override http request option.
|
|
23900
24749
|
* @throws {RequiredError}
|
|
23901
24750
|
*/
|
|
23902
|
-
adminBillingInvoicesIdDownloadGet(id: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
24751
|
+
adminBillingInvoicesIdDownloadGet(id: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
23903
24752
|
/**
|
|
23904
24753
|
* Retrieves a single invoice by ID
|
|
23905
24754
|
* @summary Get invoice
|
|
@@ -24174,14 +25023,14 @@ export declare class BillingDashboardApi extends BaseAPI {
|
|
|
24174
25023
|
*/
|
|
24175
25024
|
adminBillingInvoicesIdDelete(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
24176
25025
|
/**
|
|
24177
|
-
*
|
|
25026
|
+
* Returns an invoice as a base64-encoded PDF blob for frontend download. PDFs are cached in S3 for performance.
|
|
24178
25027
|
* @summary Download invoice
|
|
24179
25028
|
* @param {string} id Invoice ID
|
|
24180
25029
|
* @param {*} [options] Override http request option.
|
|
24181
25030
|
* @throws {RequiredError}
|
|
24182
25031
|
* @memberof BillingDashboardApi
|
|
24183
25032
|
*/
|
|
24184
|
-
adminBillingInvoicesIdDownloadGet(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
25033
|
+
adminBillingInvoicesIdDownloadGet(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
24185
25034
|
/**
|
|
24186
25035
|
* Retrieves a single invoice by ID
|
|
24187
25036
|
* @summary Get invoice
|
|
@@ -25472,7 +26321,7 @@ export declare const FeatureLimitsApiAxiosParamCreator: (configuration?: Configu
|
|
|
25472
26321
|
* @param {*} [options] Override http request option.
|
|
25473
26322
|
* @throws {RequiredError}
|
|
25474
26323
|
*/
|
|
25475
|
-
|
|
26324
|
+
adminFeatureLimitsViolationsGet: (featureName?: string, limit?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25476
26325
|
/**
|
|
25477
26326
|
* Checks if a specific feature is within limits without incrementing usage
|
|
25478
26327
|
* @summary Check if a feature can be used
|
|
@@ -25481,7 +26330,7 @@ export declare const FeatureLimitsApiAxiosParamCreator: (configuration?: Configu
|
|
|
25481
26330
|
* @param {*} [options] Override http request option.
|
|
25482
26331
|
* @throws {RequiredError}
|
|
25483
26332
|
*/
|
|
25484
|
-
|
|
26333
|
+
featureLimitsCheckGet: (featureName: string, amount?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25485
26334
|
/**
|
|
25486
26335
|
* Retrieves historical feature usage events for the organization
|
|
25487
26336
|
* @summary Get feature usage history
|
|
@@ -25490,35 +26339,35 @@ export declare const FeatureLimitsApiAxiosParamCreator: (configuration?: Configu
|
|
|
25490
26339
|
* @param {*} [options] Override http request option.
|
|
25491
26340
|
* @throws {RequiredError}
|
|
25492
26341
|
*/
|
|
25493
|
-
|
|
26342
|
+
featureLimitsHistoryGet: (featureName?: string, limit?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25494
26343
|
/**
|
|
25495
26344
|
* Retrieves the organization\'s current plan with all feature limits
|
|
25496
26345
|
* @summary Get organization plan features
|
|
25497
26346
|
* @param {*} [options] Override http request option.
|
|
25498
26347
|
* @throws {RequiredError}
|
|
25499
26348
|
*/
|
|
25500
|
-
|
|
26349
|
+
featureLimitsPlanGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25501
26350
|
/**
|
|
25502
26351
|
* Returns plan details and feature availability map for UI rendering
|
|
25503
26352
|
* @summary Get plan information for frontend
|
|
25504
26353
|
* @param {*} [options] Override http request option.
|
|
25505
26354
|
* @throws {RequiredError}
|
|
25506
26355
|
*/
|
|
25507
|
-
|
|
26356
|
+
featureLimitsPlanInfoGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25508
26357
|
/**
|
|
25509
26358
|
* Retrieves comprehensive real-time limit status for the organization including all features, credits, and API calls
|
|
25510
26359
|
* @summary Get real-time limit status
|
|
25511
26360
|
* @param {*} [options] Override http request option.
|
|
25512
26361
|
* @throws {RequiredError}
|
|
25513
26362
|
*/
|
|
25514
|
-
|
|
26363
|
+
featureLimitsStatusGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25515
26364
|
/**
|
|
25516
26365
|
* Retrieves current feature usage statistics for the organization
|
|
25517
26366
|
* @summary Get feature usage statistics
|
|
25518
26367
|
* @param {*} [options] Override http request option.
|
|
25519
26368
|
* @throws {RequiredError}
|
|
25520
26369
|
*/
|
|
25521
|
-
|
|
26370
|
+
featureLimitsUsageGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25522
26371
|
};
|
|
25523
26372
|
/**
|
|
25524
26373
|
* FeatureLimitsApi - functional programming interface
|
|
@@ -25533,7 +26382,7 @@ export declare const FeatureLimitsApiFp: (configuration?: Configuration) => {
|
|
|
25533
26382
|
* @param {*} [options] Override http request option.
|
|
25534
26383
|
* @throws {RequiredError}
|
|
25535
26384
|
*/
|
|
25536
|
-
|
|
26385
|
+
adminFeatureLimitsViolationsGet(featureName?: string, limit?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminFeatureLimitsViolationsGet200Response>>;
|
|
25537
26386
|
/**
|
|
25538
26387
|
* Checks if a specific feature is within limits without incrementing usage
|
|
25539
26388
|
* @summary Check if a feature can be used
|
|
@@ -25542,7 +26391,7 @@ export declare const FeatureLimitsApiFp: (configuration?: Configuration) => {
|
|
|
25542
26391
|
* @param {*} [options] Override http request option.
|
|
25543
26392
|
* @throws {RequiredError}
|
|
25544
26393
|
*/
|
|
25545
|
-
|
|
26394
|
+
featureLimitsCheckGet(featureName: string, amount?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FeatureLimitsCheckGet200Response>>;
|
|
25546
26395
|
/**
|
|
25547
26396
|
* Retrieves historical feature usage events for the organization
|
|
25548
26397
|
* @summary Get feature usage history
|
|
@@ -25551,21 +26400,21 @@ export declare const FeatureLimitsApiFp: (configuration?: Configuration) => {
|
|
|
25551
26400
|
* @param {*} [options] Override http request option.
|
|
25552
26401
|
* @throws {RequiredError}
|
|
25553
26402
|
*/
|
|
25554
|
-
|
|
26403
|
+
featureLimitsHistoryGet(featureName?: string, limit?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FeatureLimitsHistoryGet200Response>>;
|
|
25555
26404
|
/**
|
|
25556
26405
|
* Retrieves the organization\'s current plan with all feature limits
|
|
25557
26406
|
* @summary Get organization plan features
|
|
25558
26407
|
* @param {*} [options] Override http request option.
|
|
25559
26408
|
* @throws {RequiredError}
|
|
25560
26409
|
*/
|
|
25561
|
-
|
|
26410
|
+
featureLimitsPlanGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FeatureLimitsPlanGet200Response>>;
|
|
25562
26411
|
/**
|
|
25563
26412
|
* Returns plan details and feature availability map for UI rendering
|
|
25564
26413
|
* @summary Get plan information for frontend
|
|
25565
26414
|
* @param {*} [options] Override http request option.
|
|
25566
26415
|
* @throws {RequiredError}
|
|
25567
26416
|
*/
|
|
25568
|
-
|
|
26417
|
+
featureLimitsPlanInfoGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<{
|
|
25569
26418
|
[key: string]: any;
|
|
25570
26419
|
}>>;
|
|
25571
26420
|
/**
|
|
@@ -25574,14 +26423,14 @@ export declare const FeatureLimitsApiFp: (configuration?: Configuration) => {
|
|
|
25574
26423
|
* @param {*} [options] Override http request option.
|
|
25575
26424
|
* @throws {RequiredError}
|
|
25576
26425
|
*/
|
|
25577
|
-
|
|
26426
|
+
featureLimitsStatusGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseFeatureLimitServiceLimitStatus>>;
|
|
25578
26427
|
/**
|
|
25579
26428
|
* Retrieves current feature usage statistics for the organization
|
|
25580
26429
|
* @summary Get feature usage statistics
|
|
25581
26430
|
* @param {*} [options] Override http request option.
|
|
25582
26431
|
* @throws {RequiredError}
|
|
25583
26432
|
*/
|
|
25584
|
-
|
|
26433
|
+
featureLimitsUsageGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FeatureLimitsUsageGet200Response>>;
|
|
25585
26434
|
};
|
|
25586
26435
|
/**
|
|
25587
26436
|
* FeatureLimitsApi - factory interface
|
|
@@ -25596,7 +26445,7 @@ export declare const FeatureLimitsApiFactory: (configuration?: Configuration, ba
|
|
|
25596
26445
|
* @param {*} [options] Override http request option.
|
|
25597
26446
|
* @throws {RequiredError}
|
|
25598
26447
|
*/
|
|
25599
|
-
|
|
26448
|
+
adminFeatureLimitsViolationsGet(featureName?: string, limit?: number, options?: RawAxiosRequestConfig): AxiosPromise<AdminFeatureLimitsViolationsGet200Response>;
|
|
25600
26449
|
/**
|
|
25601
26450
|
* Checks if a specific feature is within limits without incrementing usage
|
|
25602
26451
|
* @summary Check if a feature can be used
|
|
@@ -25605,7 +26454,7 @@ export declare const FeatureLimitsApiFactory: (configuration?: Configuration, ba
|
|
|
25605
26454
|
* @param {*} [options] Override http request option.
|
|
25606
26455
|
* @throws {RequiredError}
|
|
25607
26456
|
*/
|
|
25608
|
-
|
|
26457
|
+
featureLimitsCheckGet(featureName: string, amount?: number, options?: RawAxiosRequestConfig): AxiosPromise<FeatureLimitsCheckGet200Response>;
|
|
25609
26458
|
/**
|
|
25610
26459
|
* Retrieves historical feature usage events for the organization
|
|
25611
26460
|
* @summary Get feature usage history
|
|
@@ -25614,21 +26463,21 @@ export declare const FeatureLimitsApiFactory: (configuration?: Configuration, ba
|
|
|
25614
26463
|
* @param {*} [options] Override http request option.
|
|
25615
26464
|
* @throws {RequiredError}
|
|
25616
26465
|
*/
|
|
25617
|
-
|
|
26466
|
+
featureLimitsHistoryGet(featureName?: string, limit?: number, options?: RawAxiosRequestConfig): AxiosPromise<FeatureLimitsHistoryGet200Response>;
|
|
25618
26467
|
/**
|
|
25619
26468
|
* Retrieves the organization\'s current plan with all feature limits
|
|
25620
26469
|
* @summary Get organization plan features
|
|
25621
26470
|
* @param {*} [options] Override http request option.
|
|
25622
26471
|
* @throws {RequiredError}
|
|
25623
26472
|
*/
|
|
25624
|
-
|
|
26473
|
+
featureLimitsPlanGet(options?: RawAxiosRequestConfig): AxiosPromise<FeatureLimitsPlanGet200Response>;
|
|
25625
26474
|
/**
|
|
25626
26475
|
* Returns plan details and feature availability map for UI rendering
|
|
25627
26476
|
* @summary Get plan information for frontend
|
|
25628
26477
|
* @param {*} [options] Override http request option.
|
|
25629
26478
|
* @throws {RequiredError}
|
|
25630
26479
|
*/
|
|
25631
|
-
|
|
26480
|
+
featureLimitsPlanInfoGet(options?: RawAxiosRequestConfig): AxiosPromise<{
|
|
25632
26481
|
[key: string]: any;
|
|
25633
26482
|
}>;
|
|
25634
26483
|
/**
|
|
@@ -25637,14 +26486,14 @@ export declare const FeatureLimitsApiFactory: (configuration?: Configuration, ba
|
|
|
25637
26486
|
* @param {*} [options] Override http request option.
|
|
25638
26487
|
* @throws {RequiredError}
|
|
25639
26488
|
*/
|
|
25640
|
-
|
|
26489
|
+
featureLimitsStatusGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseFeatureLimitServiceLimitStatus>;
|
|
25641
26490
|
/**
|
|
25642
26491
|
* Retrieves current feature usage statistics for the organization
|
|
25643
26492
|
* @summary Get feature usage statistics
|
|
25644
26493
|
* @param {*} [options] Override http request option.
|
|
25645
26494
|
* @throws {RequiredError}
|
|
25646
26495
|
*/
|
|
25647
|
-
|
|
26496
|
+
featureLimitsUsageGet(options?: RawAxiosRequestConfig): AxiosPromise<FeatureLimitsUsageGet200Response>;
|
|
25648
26497
|
};
|
|
25649
26498
|
/**
|
|
25650
26499
|
* FeatureLimitsApi - object-oriented interface
|
|
@@ -25662,7 +26511,7 @@ export declare class FeatureLimitsApi extends BaseAPI {
|
|
|
25662
26511
|
* @throws {RequiredError}
|
|
25663
26512
|
* @memberof FeatureLimitsApi
|
|
25664
26513
|
*/
|
|
25665
|
-
|
|
26514
|
+
adminFeatureLimitsViolationsGet(featureName?: string, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminFeatureLimitsViolationsGet200Response, any, {}>>;
|
|
25666
26515
|
/**
|
|
25667
26516
|
* Checks if a specific feature is within limits without incrementing usage
|
|
25668
26517
|
* @summary Check if a feature can be used
|
|
@@ -25672,7 +26521,7 @@ export declare class FeatureLimitsApi extends BaseAPI {
|
|
|
25672
26521
|
* @throws {RequiredError}
|
|
25673
26522
|
* @memberof FeatureLimitsApi
|
|
25674
26523
|
*/
|
|
25675
|
-
|
|
26524
|
+
featureLimitsCheckGet(featureName: string, amount?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FeatureLimitsCheckGet200Response, any, {}>>;
|
|
25676
26525
|
/**
|
|
25677
26526
|
* Retrieves historical feature usage events for the organization
|
|
25678
26527
|
* @summary Get feature usage history
|
|
@@ -25682,7 +26531,7 @@ export declare class FeatureLimitsApi extends BaseAPI {
|
|
|
25682
26531
|
* @throws {RequiredError}
|
|
25683
26532
|
* @memberof FeatureLimitsApi
|
|
25684
26533
|
*/
|
|
25685
|
-
|
|
26534
|
+
featureLimitsHistoryGet(featureName?: string, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FeatureLimitsHistoryGet200Response, any, {}>>;
|
|
25686
26535
|
/**
|
|
25687
26536
|
* Retrieves the organization\'s current plan with all feature limits
|
|
25688
26537
|
* @summary Get organization plan features
|
|
@@ -25690,7 +26539,7 @@ export declare class FeatureLimitsApi extends BaseAPI {
|
|
|
25690
26539
|
* @throws {RequiredError}
|
|
25691
26540
|
* @memberof FeatureLimitsApi
|
|
25692
26541
|
*/
|
|
25693
|
-
|
|
26542
|
+
featureLimitsPlanGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FeatureLimitsPlanGet200Response, any, {}>>;
|
|
25694
26543
|
/**
|
|
25695
26544
|
* Returns plan details and feature availability map for UI rendering
|
|
25696
26545
|
* @summary Get plan information for frontend
|
|
@@ -25698,7 +26547,7 @@ export declare class FeatureLimitsApi extends BaseAPI {
|
|
|
25698
26547
|
* @throws {RequiredError}
|
|
25699
26548
|
* @memberof FeatureLimitsApi
|
|
25700
26549
|
*/
|
|
25701
|
-
|
|
26550
|
+
featureLimitsPlanInfoGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
|
|
25702
26551
|
[key: string]: any;
|
|
25703
26552
|
}, any, {}>>;
|
|
25704
26553
|
/**
|
|
@@ -25708,7 +26557,7 @@ export declare class FeatureLimitsApi extends BaseAPI {
|
|
|
25708
26557
|
* @throws {RequiredError}
|
|
25709
26558
|
* @memberof FeatureLimitsApi
|
|
25710
26559
|
*/
|
|
25711
|
-
|
|
26560
|
+
featureLimitsStatusGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseFeatureLimitServiceLimitStatus, any, {}>>;
|
|
25712
26561
|
/**
|
|
25713
26562
|
* Retrieves current feature usage statistics for the organization
|
|
25714
26563
|
* @summary Get feature usage statistics
|
|
@@ -25716,7 +26565,7 @@ export declare class FeatureLimitsApi extends BaseAPI {
|
|
|
25716
26565
|
* @throws {RequiredError}
|
|
25717
26566
|
* @memberof FeatureLimitsApi
|
|
25718
26567
|
*/
|
|
25719
|
-
|
|
26568
|
+
featureLimitsUsageGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FeatureLimitsUsageGet200Response, any, {}>>;
|
|
25720
26569
|
}
|
|
25721
26570
|
/**
|
|
25722
26571
|
* FeatureLimitsAdminApi - axios parameter creator
|
|
@@ -25729,7 +26578,7 @@ export declare const FeatureLimitsAdminApiAxiosParamCreator: (configuration?: Co
|
|
|
25729
26578
|
* @param {*} [options] Override http request option.
|
|
25730
26579
|
* @throws {RequiredError}
|
|
25731
26580
|
*/
|
|
25732
|
-
|
|
26581
|
+
adminFeatureLimitsCacheInvalidatePost: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25733
26582
|
/**
|
|
25734
26583
|
* Resets usage counter for a specific feature (admin only)
|
|
25735
26584
|
* @summary Reset feature usage (Admin)
|
|
@@ -25737,7 +26586,7 @@ export declare const FeatureLimitsAdminApiAxiosParamCreator: (configuration?: Co
|
|
|
25737
26586
|
* @param {*} [options] Override http request option.
|
|
25738
26587
|
* @throws {RequiredError}
|
|
25739
26588
|
*/
|
|
25740
|
-
|
|
26589
|
+
adminFeatureLimitsResetPost: (featureName: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25741
26590
|
};
|
|
25742
26591
|
/**
|
|
25743
26592
|
* FeatureLimitsAdminApi - functional programming interface
|
|
@@ -25750,7 +26599,7 @@ export declare const FeatureLimitsAdminApiFp: (configuration?: Configuration) =>
|
|
|
25750
26599
|
* @param {*} [options] Override http request option.
|
|
25751
26600
|
* @throws {RequiredError}
|
|
25752
26601
|
*/
|
|
25753
|
-
|
|
26602
|
+
adminFeatureLimitsCacheInvalidatePost(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
25754
26603
|
/**
|
|
25755
26604
|
* Resets usage counter for a specific feature (admin only)
|
|
25756
26605
|
* @summary Reset feature usage (Admin)
|
|
@@ -25758,7 +26607,7 @@ export declare const FeatureLimitsAdminApiFp: (configuration?: Configuration) =>
|
|
|
25758
26607
|
* @param {*} [options] Override http request option.
|
|
25759
26608
|
* @throws {RequiredError}
|
|
25760
26609
|
*/
|
|
25761
|
-
|
|
26610
|
+
adminFeatureLimitsResetPost(featureName: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
25762
26611
|
};
|
|
25763
26612
|
/**
|
|
25764
26613
|
* FeatureLimitsAdminApi - factory interface
|
|
@@ -25771,7 +26620,7 @@ export declare const FeatureLimitsAdminApiFactory: (configuration?: Configuratio
|
|
|
25771
26620
|
* @param {*} [options] Override http request option.
|
|
25772
26621
|
* @throws {RequiredError}
|
|
25773
26622
|
*/
|
|
25774
|
-
|
|
26623
|
+
adminFeatureLimitsCacheInvalidatePost(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
25775
26624
|
/**
|
|
25776
26625
|
* Resets usage counter for a specific feature (admin only)
|
|
25777
26626
|
* @summary Reset feature usage (Admin)
|
|
@@ -25779,7 +26628,7 @@ export declare const FeatureLimitsAdminApiFactory: (configuration?: Configuratio
|
|
|
25779
26628
|
* @param {*} [options] Override http request option.
|
|
25780
26629
|
* @throws {RequiredError}
|
|
25781
26630
|
*/
|
|
25782
|
-
|
|
26631
|
+
adminFeatureLimitsResetPost(featureName: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
25783
26632
|
};
|
|
25784
26633
|
/**
|
|
25785
26634
|
* FeatureLimitsAdminApi - object-oriented interface
|
|
@@ -25795,7 +26644,7 @@ export declare class FeatureLimitsAdminApi extends BaseAPI {
|
|
|
25795
26644
|
* @throws {RequiredError}
|
|
25796
26645
|
* @memberof FeatureLimitsAdminApi
|
|
25797
26646
|
*/
|
|
25798
|
-
|
|
26647
|
+
adminFeatureLimitsCacheInvalidatePost(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
25799
26648
|
/**
|
|
25800
26649
|
* Resets usage counter for a specific feature (admin only)
|
|
25801
26650
|
* @summary Reset feature usage (Admin)
|
|
@@ -25804,7 +26653,7 @@ export declare class FeatureLimitsAdminApi extends BaseAPI {
|
|
|
25804
26653
|
* @throws {RequiredError}
|
|
25805
26654
|
* @memberof FeatureLimitsAdminApi
|
|
25806
26655
|
*/
|
|
25807
|
-
|
|
26656
|
+
adminFeatureLimitsResetPost(featureName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
25808
26657
|
}
|
|
25809
26658
|
/**
|
|
25810
26659
|
* ItemAnalyticsApi - axios parameter creator
|
|
@@ -34566,6 +35415,160 @@ export declare class SubscriptionsApi extends BaseAPI {
|
|
|
34566
35415
|
*/
|
|
34567
35416
|
miscSubscriptionsSubscriptionIDGet(subscriptionID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSubscriptionResponse, any, {}>>;
|
|
34568
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
|
+
}
|
|
34569
35572
|
/**
|
|
34570
35573
|
* UserApi - axios parameter creator
|
|
34571
35574
|
* @export
|