@seekora-ai/admin-api 1.1.6 → 1.1.8
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 +6 -2
- package/api.ts +936 -11
- package/dist/api.d.ts +797 -9
- package/dist/api.js +273 -16
- package/dist/esm/api.d.ts +797 -9
- package/dist/esm/api.js +263 -10
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.1.8.tgz +0 -0
- package/seekora-ai-admin-api-1.1.6.tgz +0 -0
package/dist/api.d.ts
CHANGED
|
@@ -7727,18 +7727,44 @@ export interface DataTypesAutocompleteSuggestion {
|
|
|
7727
7727
|
* @interface DataTypesBillingAlertRequest
|
|
7728
7728
|
*/
|
|
7729
7729
|
export interface DataTypesBillingAlertRequest {
|
|
7730
|
+
/**
|
|
7731
|
+
* Custom email recipients (overrides org defaults)
|
|
7732
|
+
* @type {Array<string>}
|
|
7733
|
+
* @memberof DataTypesBillingAlertRequest
|
|
7734
|
+
*/
|
|
7735
|
+
'alert_emails'?: Array<string>;
|
|
7736
|
+
/**
|
|
7737
|
+
* Custom name for the alert
|
|
7738
|
+
* @type {string}
|
|
7739
|
+
* @memberof DataTypesBillingAlertRequest
|
|
7740
|
+
*/
|
|
7741
|
+
'alert_name'?: string;
|
|
7730
7742
|
/**
|
|
7731
7743
|
*
|
|
7732
7744
|
* @type {string}
|
|
7733
7745
|
* @memberof DataTypesBillingAlertRequest
|
|
7734
7746
|
*/
|
|
7735
7747
|
'alert_type': DataTypesBillingAlertRequestAlertTypeEnum;
|
|
7748
|
+
/**
|
|
7749
|
+
* Minutes between alerts (default: 60)
|
|
7750
|
+
* @type {number}
|
|
7751
|
+
* @memberof DataTypesBillingAlertRequest
|
|
7752
|
+
*/
|
|
7753
|
+
'cooldown_period'?: number;
|
|
7736
7754
|
/**
|
|
7737
7755
|
*
|
|
7738
7756
|
* @type {boolean}
|
|
7739
7757
|
* @memberof DataTypesBillingAlertRequest
|
|
7740
7758
|
*/
|
|
7741
7759
|
'is_enabled'?: boolean;
|
|
7760
|
+
/**
|
|
7761
|
+
*
|
|
7762
|
+
* @type {{ [key: string]: any; }}
|
|
7763
|
+
* @memberof DataTypesBillingAlertRequest
|
|
7764
|
+
*/
|
|
7765
|
+
'metadata'?: {
|
|
7766
|
+
[key: string]: any;
|
|
7767
|
+
};
|
|
7742
7768
|
/**
|
|
7743
7769
|
*
|
|
7744
7770
|
* @type {{ [key: string]: any; }}
|
|
@@ -7747,12 +7773,30 @@ export interface DataTypesBillingAlertRequest {
|
|
|
7747
7773
|
'notification_channels'?: {
|
|
7748
7774
|
[key: string]: any;
|
|
7749
7775
|
};
|
|
7776
|
+
/**
|
|
7777
|
+
* NULL = org-level, value = store-level
|
|
7778
|
+
* @type {number}
|
|
7779
|
+
* @memberof DataTypesBillingAlertRequest
|
|
7780
|
+
*/
|
|
7781
|
+
'store_id'?: number;
|
|
7782
|
+
/**
|
|
7783
|
+
* Percentage threshold 0-100 (exclusive with threshold_value)
|
|
7784
|
+
* @type {number}
|
|
7785
|
+
* @memberof DataTypesBillingAlertRequest
|
|
7786
|
+
*/
|
|
7787
|
+
'threshold_percentage'?: number;
|
|
7750
7788
|
/**
|
|
7751
7789
|
*
|
|
7790
|
+
* @type {string}
|
|
7791
|
+
* @memberof DataTypesBillingAlertRequest
|
|
7792
|
+
*/
|
|
7793
|
+
'threshold_unit': DataTypesBillingAlertRequestThresholdUnitEnum;
|
|
7794
|
+
/**
|
|
7795
|
+
* Absolute threshold value (exclusive with threshold_percentage)
|
|
7752
7796
|
* @type {number}
|
|
7753
7797
|
* @memberof DataTypesBillingAlertRequest
|
|
7754
7798
|
*/
|
|
7755
|
-
'threshold_value'
|
|
7799
|
+
'threshold_value'?: number;
|
|
7756
7800
|
}
|
|
7757
7801
|
export declare const DataTypesBillingAlertRequestAlertTypeEnum: {
|
|
7758
7802
|
readonly LowBalance: "low_balance";
|
|
@@ -7760,6 +7804,12 @@ export declare const DataTypesBillingAlertRequestAlertTypeEnum: {
|
|
|
7760
7804
|
readonly DaysRemaining: "days_remaining";
|
|
7761
7805
|
};
|
|
7762
7806
|
export type DataTypesBillingAlertRequestAlertTypeEnum = typeof DataTypesBillingAlertRequestAlertTypeEnum[keyof typeof DataTypesBillingAlertRequestAlertTypeEnum];
|
|
7807
|
+
export declare const DataTypesBillingAlertRequestThresholdUnitEnum: {
|
|
7808
|
+
readonly Credits: "credits";
|
|
7809
|
+
readonly Days: "days";
|
|
7810
|
+
readonly Percentage: "percentage";
|
|
7811
|
+
};
|
|
7812
|
+
export type DataTypesBillingAlertRequestThresholdUnitEnum = typeof DataTypesBillingAlertRequestThresholdUnitEnum[keyof typeof DataTypesBillingAlertRequestThresholdUnitEnum];
|
|
7763
7813
|
/**
|
|
7764
7814
|
*
|
|
7765
7815
|
* @export
|
|
@@ -8025,6 +8075,248 @@ export interface DataTypesCombinedSearchResult {
|
|
|
8025
8075
|
*/
|
|
8026
8076
|
'widget'?: DataTypesWidgetSearchResult;
|
|
8027
8077
|
}
|
|
8078
|
+
/**
|
|
8079
|
+
*
|
|
8080
|
+
* @export
|
|
8081
|
+
* @interface DataTypesCompanyConfig
|
|
8082
|
+
*/
|
|
8083
|
+
export interface DataTypesCompanyConfig {
|
|
8084
|
+
/**
|
|
8085
|
+
*
|
|
8086
|
+
* @type {string}
|
|
8087
|
+
* @memberof DataTypesCompanyConfig
|
|
8088
|
+
*/
|
|
8089
|
+
'account_number'?: string;
|
|
8090
|
+
/**
|
|
8091
|
+
*
|
|
8092
|
+
* @type {string}
|
|
8093
|
+
* @memberof DataTypesCompanyConfig
|
|
8094
|
+
*/
|
|
8095
|
+
'address_line1'?: string;
|
|
8096
|
+
/**
|
|
8097
|
+
*
|
|
8098
|
+
* @type {string}
|
|
8099
|
+
* @memberof DataTypesCompanyConfig
|
|
8100
|
+
*/
|
|
8101
|
+
'address_line2'?: string;
|
|
8102
|
+
/**
|
|
8103
|
+
*
|
|
8104
|
+
* @type {string}
|
|
8105
|
+
* @memberof DataTypesCompanyConfig
|
|
8106
|
+
*/
|
|
8107
|
+
'bank_name'?: string;
|
|
8108
|
+
/**
|
|
8109
|
+
*
|
|
8110
|
+
* @type {string}
|
|
8111
|
+
* @memberof DataTypesCompanyConfig
|
|
8112
|
+
*/
|
|
8113
|
+
'billing_email'?: string;
|
|
8114
|
+
/**
|
|
8115
|
+
*
|
|
8116
|
+
* @type {string}
|
|
8117
|
+
* @memberof DataTypesCompanyConfig
|
|
8118
|
+
*/
|
|
8119
|
+
'city'?: string;
|
|
8120
|
+
/**
|
|
8121
|
+
*
|
|
8122
|
+
* @type {string}
|
|
8123
|
+
* @memberof DataTypesCompanyConfig
|
|
8124
|
+
*/
|
|
8125
|
+
'company_name'?: string;
|
|
8126
|
+
/**
|
|
8127
|
+
*
|
|
8128
|
+
* @type {string}
|
|
8129
|
+
* @memberof DataTypesCompanyConfig
|
|
8130
|
+
*/
|
|
8131
|
+
'country'?: string;
|
|
8132
|
+
/**
|
|
8133
|
+
*
|
|
8134
|
+
* @type {string}
|
|
8135
|
+
* @memberof DataTypesCompanyConfig
|
|
8136
|
+
*/
|
|
8137
|
+
'email'?: string;
|
|
8138
|
+
/**
|
|
8139
|
+
*
|
|
8140
|
+
* @type {string}
|
|
8141
|
+
* @memberof DataTypesCompanyConfig
|
|
8142
|
+
*/
|
|
8143
|
+
'gstin'?: string;
|
|
8144
|
+
/**
|
|
8145
|
+
*
|
|
8146
|
+
* @type {string}
|
|
8147
|
+
* @memberof DataTypesCompanyConfig
|
|
8148
|
+
*/
|
|
8149
|
+
'ifsc_code'?: string;
|
|
8150
|
+
/**
|
|
8151
|
+
*
|
|
8152
|
+
* @type {string}
|
|
8153
|
+
* @memberof DataTypesCompanyConfig
|
|
8154
|
+
*/
|
|
8155
|
+
'logo_url'?: string;
|
|
8156
|
+
/**
|
|
8157
|
+
*
|
|
8158
|
+
* @type {string}
|
|
8159
|
+
* @memberof DataTypesCompanyConfig
|
|
8160
|
+
*/
|
|
8161
|
+
'pan'?: string;
|
|
8162
|
+
/**
|
|
8163
|
+
*
|
|
8164
|
+
* @type {string}
|
|
8165
|
+
* @memberof DataTypesCompanyConfig
|
|
8166
|
+
*/
|
|
8167
|
+
'phone_number'?: string;
|
|
8168
|
+
/**
|
|
8169
|
+
*
|
|
8170
|
+
* @type {string}
|
|
8171
|
+
* @memberof DataTypesCompanyConfig
|
|
8172
|
+
*/
|
|
8173
|
+
'postal_code'?: string;
|
|
8174
|
+
/**
|
|
8175
|
+
*
|
|
8176
|
+
* @type {string}
|
|
8177
|
+
* @memberof DataTypesCompanyConfig
|
|
8178
|
+
*/
|
|
8179
|
+
'state'?: string;
|
|
8180
|
+
/**
|
|
8181
|
+
*
|
|
8182
|
+
* @type {string}
|
|
8183
|
+
* @memberof DataTypesCompanyConfig
|
|
8184
|
+
*/
|
|
8185
|
+
'support_email'?: string;
|
|
8186
|
+
/**
|
|
8187
|
+
*
|
|
8188
|
+
* @type {string}
|
|
8189
|
+
* @memberof DataTypesCompanyConfig
|
|
8190
|
+
*/
|
|
8191
|
+
'tax_registration'?: string;
|
|
8192
|
+
/**
|
|
8193
|
+
*
|
|
8194
|
+
* @type {string}
|
|
8195
|
+
* @memberof DataTypesCompanyConfig
|
|
8196
|
+
*/
|
|
8197
|
+
'website'?: string;
|
|
8198
|
+
}
|
|
8199
|
+
/**
|
|
8200
|
+
*
|
|
8201
|
+
* @export
|
|
8202
|
+
* @interface DataTypesCompanyConfigRequest
|
|
8203
|
+
*/
|
|
8204
|
+
export interface DataTypesCompanyConfigRequest {
|
|
8205
|
+
/**
|
|
8206
|
+
*
|
|
8207
|
+
* @type {string}
|
|
8208
|
+
* @memberof DataTypesCompanyConfigRequest
|
|
8209
|
+
*/
|
|
8210
|
+
'account_number'?: string;
|
|
8211
|
+
/**
|
|
8212
|
+
*
|
|
8213
|
+
* @type {string}
|
|
8214
|
+
* @memberof DataTypesCompanyConfigRequest
|
|
8215
|
+
*/
|
|
8216
|
+
'address_line1': string;
|
|
8217
|
+
/**
|
|
8218
|
+
*
|
|
8219
|
+
* @type {string}
|
|
8220
|
+
* @memberof DataTypesCompanyConfigRequest
|
|
8221
|
+
*/
|
|
8222
|
+
'address_line2'?: string;
|
|
8223
|
+
/**
|
|
8224
|
+
*
|
|
8225
|
+
* @type {string}
|
|
8226
|
+
* @memberof DataTypesCompanyConfigRequest
|
|
8227
|
+
*/
|
|
8228
|
+
'bank_name'?: string;
|
|
8229
|
+
/**
|
|
8230
|
+
*
|
|
8231
|
+
* @type {string}
|
|
8232
|
+
* @memberof DataTypesCompanyConfigRequest
|
|
8233
|
+
*/
|
|
8234
|
+
'billing_email'?: string;
|
|
8235
|
+
/**
|
|
8236
|
+
*
|
|
8237
|
+
* @type {string}
|
|
8238
|
+
* @memberof DataTypesCompanyConfigRequest
|
|
8239
|
+
*/
|
|
8240
|
+
'city': string;
|
|
8241
|
+
/**
|
|
8242
|
+
*
|
|
8243
|
+
* @type {string}
|
|
8244
|
+
* @memberof DataTypesCompanyConfigRequest
|
|
8245
|
+
*/
|
|
8246
|
+
'company_name': string;
|
|
8247
|
+
/**
|
|
8248
|
+
*
|
|
8249
|
+
* @type {string}
|
|
8250
|
+
* @memberof DataTypesCompanyConfigRequest
|
|
8251
|
+
*/
|
|
8252
|
+
'country': string;
|
|
8253
|
+
/**
|
|
8254
|
+
*
|
|
8255
|
+
* @type {string}
|
|
8256
|
+
* @memberof DataTypesCompanyConfigRequest
|
|
8257
|
+
*/
|
|
8258
|
+
'email': string;
|
|
8259
|
+
/**
|
|
8260
|
+
*
|
|
8261
|
+
* @type {string}
|
|
8262
|
+
* @memberof DataTypesCompanyConfigRequest
|
|
8263
|
+
*/
|
|
8264
|
+
'gstin'?: string;
|
|
8265
|
+
/**
|
|
8266
|
+
*
|
|
8267
|
+
* @type {string}
|
|
8268
|
+
* @memberof DataTypesCompanyConfigRequest
|
|
8269
|
+
*/
|
|
8270
|
+
'ifsc_code'?: string;
|
|
8271
|
+
/**
|
|
8272
|
+
*
|
|
8273
|
+
* @type {string}
|
|
8274
|
+
* @memberof DataTypesCompanyConfigRequest
|
|
8275
|
+
*/
|
|
8276
|
+
'logo_url'?: string;
|
|
8277
|
+
/**
|
|
8278
|
+
*
|
|
8279
|
+
* @type {string}
|
|
8280
|
+
* @memberof DataTypesCompanyConfigRequest
|
|
8281
|
+
*/
|
|
8282
|
+
'pan'?: string;
|
|
8283
|
+
/**
|
|
8284
|
+
*
|
|
8285
|
+
* @type {string}
|
|
8286
|
+
* @memberof DataTypesCompanyConfigRequest
|
|
8287
|
+
*/
|
|
8288
|
+
'phone_number': string;
|
|
8289
|
+
/**
|
|
8290
|
+
*
|
|
8291
|
+
* @type {string}
|
|
8292
|
+
* @memberof DataTypesCompanyConfigRequest
|
|
8293
|
+
*/
|
|
8294
|
+
'postal_code': string;
|
|
8295
|
+
/**
|
|
8296
|
+
*
|
|
8297
|
+
* @type {string}
|
|
8298
|
+
* @memberof DataTypesCompanyConfigRequest
|
|
8299
|
+
*/
|
|
8300
|
+
'state': string;
|
|
8301
|
+
/**
|
|
8302
|
+
*
|
|
8303
|
+
* @type {string}
|
|
8304
|
+
* @memberof DataTypesCompanyConfigRequest
|
|
8305
|
+
*/
|
|
8306
|
+
'support_email'?: string;
|
|
8307
|
+
/**
|
|
8308
|
+
*
|
|
8309
|
+
* @type {string}
|
|
8310
|
+
* @memberof DataTypesCompanyConfigRequest
|
|
8311
|
+
*/
|
|
8312
|
+
'tax_registration'?: string;
|
|
8313
|
+
/**
|
|
8314
|
+
*
|
|
8315
|
+
* @type {string}
|
|
8316
|
+
* @memberof DataTypesCompanyConfigRequest
|
|
8317
|
+
*/
|
|
8318
|
+
'website'?: string;
|
|
8319
|
+
}
|
|
8028
8320
|
/**
|
|
8029
8321
|
*
|
|
8030
8322
|
* @export
|
|
@@ -8319,6 +8611,54 @@ export interface DataTypesCreateOrganizationRequest {
|
|
|
8319
8611
|
* @memberof DataTypesCreateOrganizationRequest
|
|
8320
8612
|
*/
|
|
8321
8613
|
'Address'?: string;
|
|
8614
|
+
/**
|
|
8615
|
+
*
|
|
8616
|
+
* @type {string}
|
|
8617
|
+
* @memberof DataTypesCreateOrganizationRequest
|
|
8618
|
+
*/
|
|
8619
|
+
'BillingAddressLine1'?: string;
|
|
8620
|
+
/**
|
|
8621
|
+
*
|
|
8622
|
+
* @type {string}
|
|
8623
|
+
* @memberof DataTypesCreateOrganizationRequest
|
|
8624
|
+
*/
|
|
8625
|
+
'BillingAddressLine2'?: string;
|
|
8626
|
+
/**
|
|
8627
|
+
*
|
|
8628
|
+
* @type {string}
|
|
8629
|
+
* @memberof DataTypesCreateOrganizationRequest
|
|
8630
|
+
*/
|
|
8631
|
+
'BillingCity'?: string;
|
|
8632
|
+
/**
|
|
8633
|
+
*
|
|
8634
|
+
* @type {string}
|
|
8635
|
+
* @memberof DataTypesCreateOrganizationRequest
|
|
8636
|
+
*/
|
|
8637
|
+
'BillingCountry'?: string;
|
|
8638
|
+
/**
|
|
8639
|
+
*
|
|
8640
|
+
* @type {string}
|
|
8641
|
+
* @memberof DataTypesCreateOrganizationRequest
|
|
8642
|
+
*/
|
|
8643
|
+
'BillingPostalCode'?: string;
|
|
8644
|
+
/**
|
|
8645
|
+
*
|
|
8646
|
+
* @type {string}
|
|
8647
|
+
* @memberof DataTypesCreateOrganizationRequest
|
|
8648
|
+
*/
|
|
8649
|
+
'BillingState'?: string;
|
|
8650
|
+
/**
|
|
8651
|
+
*
|
|
8652
|
+
* @type {string}
|
|
8653
|
+
* @memberof DataTypesCreateOrganizationRequest
|
|
8654
|
+
*/
|
|
8655
|
+
'BusinessLegalName'?: string;
|
|
8656
|
+
/**
|
|
8657
|
+
*
|
|
8658
|
+
* @type {string}
|
|
8659
|
+
* @memberof DataTypesCreateOrganizationRequest
|
|
8660
|
+
*/
|
|
8661
|
+
'BusinessType'?: string;
|
|
8322
8662
|
/**
|
|
8323
8663
|
*
|
|
8324
8664
|
* @type {string}
|
|
@@ -8343,6 +8683,18 @@ export interface DataTypesCreateOrganizationRequest {
|
|
|
8343
8683
|
* @memberof DataTypesCreateOrganizationRequest
|
|
8344
8684
|
*/
|
|
8345
8685
|
'Footer'?: string;
|
|
8686
|
+
/**
|
|
8687
|
+
* Tax and Billing Details
|
|
8688
|
+
* @type {string}
|
|
8689
|
+
* @memberof DataTypesCreateOrganizationRequest
|
|
8690
|
+
*/
|
|
8691
|
+
'GSTIN'?: string;
|
|
8692
|
+
/**
|
|
8693
|
+
*
|
|
8694
|
+
* @type {string}
|
|
8695
|
+
* @memberof DataTypesCreateOrganizationRequest
|
|
8696
|
+
*/
|
|
8697
|
+
'HSNSACCode'?: string;
|
|
8346
8698
|
/**
|
|
8347
8699
|
*
|
|
8348
8700
|
* @type {Array<number>}
|
|
@@ -8366,25 +8718,67 @@ export interface DataTypesCreateOrganizationRequest {
|
|
|
8366
8718
|
* @type {string}
|
|
8367
8719
|
* @memberof DataTypesCreateOrganizationRequest
|
|
8368
8720
|
*/
|
|
8369
|
-
'OrgName'?: string;
|
|
8721
|
+
'OrgName'?: string;
|
|
8722
|
+
/**
|
|
8723
|
+
*
|
|
8724
|
+
* @type {string}
|
|
8725
|
+
* @memberof DataTypesCreateOrganizationRequest
|
|
8726
|
+
*/
|
|
8727
|
+
'PAN'?: string;
|
|
8728
|
+
/**
|
|
8729
|
+
*
|
|
8730
|
+
* @type {string}
|
|
8731
|
+
* @memberof DataTypesCreateOrganizationRequest
|
|
8732
|
+
*/
|
|
8733
|
+
'PhoneNo'?: string;
|
|
8734
|
+
/**
|
|
8735
|
+
*
|
|
8736
|
+
* @type {string}
|
|
8737
|
+
* @memberof DataTypesCreateOrganizationRequest
|
|
8738
|
+
*/
|
|
8739
|
+
'PlaceOfSupply'?: string;
|
|
8740
|
+
/**
|
|
8741
|
+
*
|
|
8742
|
+
* @type {string}
|
|
8743
|
+
* @memberof DataTypesCreateOrganizationRequest
|
|
8744
|
+
*/
|
|
8745
|
+
'RegistrationNo'?: string;
|
|
8746
|
+
/**
|
|
8747
|
+
*
|
|
8748
|
+
* @type {string}
|
|
8749
|
+
* @memberof DataTypesCreateOrganizationRequest
|
|
8750
|
+
*/
|
|
8751
|
+
'TIN'?: string;
|
|
8752
|
+
/**
|
|
8753
|
+
*
|
|
8754
|
+
* @type {string}
|
|
8755
|
+
* @memberof DataTypesCreateOrganizationRequest
|
|
8756
|
+
*/
|
|
8757
|
+
'TaxExemptionCertificate'?: string;
|
|
8758
|
+
/**
|
|
8759
|
+
*
|
|
8760
|
+
* @type {boolean}
|
|
8761
|
+
* @memberof DataTypesCreateOrganizationRequest
|
|
8762
|
+
*/
|
|
8763
|
+
'TaxExemptionStatus'?: boolean;
|
|
8370
8764
|
/**
|
|
8371
8765
|
*
|
|
8372
8766
|
* @type {string}
|
|
8373
8767
|
* @memberof DataTypesCreateOrganizationRequest
|
|
8374
8768
|
*/
|
|
8375
|
-
'
|
|
8769
|
+
'TaxExemptionValidUntil'?: string;
|
|
8376
8770
|
/**
|
|
8377
8771
|
*
|
|
8378
8772
|
* @type {string}
|
|
8379
8773
|
* @memberof DataTypesCreateOrganizationRequest
|
|
8380
8774
|
*/
|
|
8381
|
-
'
|
|
8775
|
+
'TaxRegistrationCountry'?: string;
|
|
8382
8776
|
/**
|
|
8383
8777
|
*
|
|
8384
8778
|
* @type {string}
|
|
8385
8779
|
* @memberof DataTypesCreateOrganizationRequest
|
|
8386
8780
|
*/
|
|
8387
|
-
'
|
|
8781
|
+
'TaxRegistrationNumber'?: string;
|
|
8388
8782
|
/**
|
|
8389
8783
|
*
|
|
8390
8784
|
* @type {string}
|
|
@@ -11582,6 +11976,12 @@ export interface DataTypesInvoice {
|
|
|
11582
11976
|
* @memberof DataTypesInvoice
|
|
11583
11977
|
*/
|
|
11584
11978
|
'due_date'?: string;
|
|
11979
|
+
/**
|
|
11980
|
+
* Download helpers
|
|
11981
|
+
* @type {string}
|
|
11982
|
+
* @memberof DataTypesInvoice
|
|
11983
|
+
*/
|
|
11984
|
+
'invoice_download_path'?: string;
|
|
11585
11985
|
/**
|
|
11586
11986
|
*
|
|
11587
11987
|
* @type {string}
|
|
@@ -11594,6 +11994,12 @@ export interface DataTypesInvoice {
|
|
|
11594
11994
|
* @memberof DataTypesInvoice
|
|
11595
11995
|
*/
|
|
11596
11996
|
'invoice_number'?: string;
|
|
11997
|
+
/**
|
|
11998
|
+
*
|
|
11999
|
+
* @type {string}
|
|
12000
|
+
* @memberof DataTypesInvoice
|
|
12001
|
+
*/
|
|
12002
|
+
'invoice_pdf_url'?: string;
|
|
11597
12003
|
/**
|
|
11598
12004
|
*
|
|
11599
12005
|
* @type {string}
|
|
@@ -11670,6 +12076,30 @@ export interface DataTypesInvoice {
|
|
|
11670
12076
|
* @memberof DataTypesInvoice
|
|
11671
12077
|
*/
|
|
11672
12078
|
'pdf_s3_key'?: string;
|
|
12079
|
+
/**
|
|
12080
|
+
*
|
|
12081
|
+
* @type {string}
|
|
12082
|
+
* @memberof DataTypesInvoice
|
|
12083
|
+
*/
|
|
12084
|
+
'receipt_download_path'?: string;
|
|
12085
|
+
/**
|
|
12086
|
+
* Linked receipt metadata
|
|
12087
|
+
* @type {number}
|
|
12088
|
+
* @memberof DataTypesInvoice
|
|
12089
|
+
*/
|
|
12090
|
+
'receipt_id'?: number;
|
|
12091
|
+
/**
|
|
12092
|
+
*
|
|
12093
|
+
* @type {string}
|
|
12094
|
+
* @memberof DataTypesInvoice
|
|
12095
|
+
*/
|
|
12096
|
+
'receipt_number'?: string;
|
|
12097
|
+
/**
|
|
12098
|
+
*
|
|
12099
|
+
* @type {string}
|
|
12100
|
+
* @memberof DataTypesInvoice
|
|
12101
|
+
*/
|
|
12102
|
+
'receipt_pdf_url'?: string;
|
|
11673
12103
|
/**
|
|
11674
12104
|
* \"draft\", \"sent\", \"paid\", \"overdue\", \"cancelled\"
|
|
11675
12105
|
* @type {string}
|
|
@@ -13772,6 +14202,54 @@ export interface DataTypesOrganization {
|
|
|
13772
14202
|
* @memberof DataTypesOrganization
|
|
13773
14203
|
*/
|
|
13774
14204
|
'Address'?: string;
|
|
14205
|
+
/**
|
|
14206
|
+
* Billing address line 1
|
|
14207
|
+
* @type {string}
|
|
14208
|
+
* @memberof DataTypesOrganization
|
|
14209
|
+
*/
|
|
14210
|
+
'BillingAddressLine1'?: string;
|
|
14211
|
+
/**
|
|
14212
|
+
* Billing address line 2
|
|
14213
|
+
* @type {string}
|
|
14214
|
+
* @memberof DataTypesOrganization
|
|
14215
|
+
*/
|
|
14216
|
+
'BillingAddressLine2'?: string;
|
|
14217
|
+
/**
|
|
14218
|
+
* Billing city
|
|
14219
|
+
* @type {string}
|
|
14220
|
+
* @memberof DataTypesOrganization
|
|
14221
|
+
*/
|
|
14222
|
+
'BillingCity'?: string;
|
|
14223
|
+
/**
|
|
14224
|
+
* Billing country (ISO code)
|
|
14225
|
+
* @type {string}
|
|
14226
|
+
* @memberof DataTypesOrganization
|
|
14227
|
+
*/
|
|
14228
|
+
'BillingCountry'?: string;
|
|
14229
|
+
/**
|
|
14230
|
+
* Billing postal/zip code
|
|
14231
|
+
* @type {string}
|
|
14232
|
+
* @memberof DataTypesOrganization
|
|
14233
|
+
*/
|
|
14234
|
+
'BillingPostalCode'?: string;
|
|
14235
|
+
/**
|
|
14236
|
+
* Billing state/province
|
|
14237
|
+
* @type {string}
|
|
14238
|
+
* @memberof DataTypesOrganization
|
|
14239
|
+
*/
|
|
14240
|
+
'BillingState'?: string;
|
|
14241
|
+
/**
|
|
14242
|
+
* Legal business name
|
|
14243
|
+
* @type {string}
|
|
14244
|
+
* @memberof DataTypesOrganization
|
|
14245
|
+
*/
|
|
14246
|
+
'BusinessLegalName'?: string;
|
|
14247
|
+
/**
|
|
14248
|
+
* Business entity type
|
|
14249
|
+
* @type {string}
|
|
14250
|
+
* @memberof DataTypesOrganization
|
|
14251
|
+
*/
|
|
14252
|
+
'BusinessType'?: string;
|
|
13775
14253
|
/**
|
|
13776
14254
|
* Nullable field
|
|
13777
14255
|
* @type {string}
|
|
@@ -13808,6 +14286,18 @@ export interface DataTypesOrganization {
|
|
|
13808
14286
|
* @memberof DataTypesOrganization
|
|
13809
14287
|
*/
|
|
13810
14288
|
'Footer'?: string;
|
|
14289
|
+
/**
|
|
14290
|
+
* Tax and Billing Details
|
|
14291
|
+
* @type {string}
|
|
14292
|
+
* @memberof DataTypesOrganization
|
|
14293
|
+
*/
|
|
14294
|
+
'GSTIN'?: string;
|
|
14295
|
+
/**
|
|
14296
|
+
* HSN/SAC code
|
|
14297
|
+
* @type {string}
|
|
14298
|
+
* @memberof DataTypesOrganization
|
|
14299
|
+
*/
|
|
14300
|
+
'HSNSACCode'?: string;
|
|
13811
14301
|
/**
|
|
13812
14302
|
* Nullable BOOLEAN field
|
|
13813
14303
|
* @type {boolean}
|
|
@@ -13856,12 +14346,36 @@ export interface DataTypesOrganization {
|
|
|
13856
14346
|
* @memberof DataTypesOrganization
|
|
13857
14347
|
*/
|
|
13858
14348
|
'OrgName'?: string;
|
|
14349
|
+
/**
|
|
14350
|
+
* Permanent Account Number (India)
|
|
14351
|
+
* @type {string}
|
|
14352
|
+
* @memberof DataTypesOrganization
|
|
14353
|
+
*/
|
|
14354
|
+
'PAN'?: string;
|
|
13859
14355
|
/**
|
|
13860
14356
|
* Nullable field
|
|
13861
14357
|
* @type {string}
|
|
13862
14358
|
* @memberof DataTypesOrganization
|
|
13863
14359
|
*/
|
|
13864
14360
|
'PhoneNo'?: string;
|
|
14361
|
+
/**
|
|
14362
|
+
* State/Province for tax
|
|
14363
|
+
* @type {string}
|
|
14364
|
+
* @memberof DataTypesOrganization
|
|
14365
|
+
*/
|
|
14366
|
+
'PlaceOfSupply'?: string;
|
|
14367
|
+
/**
|
|
14368
|
+
* Razorpay customer creation time
|
|
14369
|
+
* @type {string}
|
|
14370
|
+
* @memberof DataTypesOrganization
|
|
14371
|
+
*/
|
|
14372
|
+
'RazorpayCustomerCreatedAt'?: string;
|
|
14373
|
+
/**
|
|
14374
|
+
* Razorpay Integration
|
|
14375
|
+
* @type {string}
|
|
14376
|
+
* @memberof DataTypesOrganization
|
|
14377
|
+
*/
|
|
14378
|
+
'RazorpayCustomerID'?: string;
|
|
13865
14379
|
/**
|
|
13866
14380
|
* Nullable field
|
|
13867
14381
|
* @type {string}
|
|
@@ -13874,6 +14388,42 @@ export interface DataTypesOrganization {
|
|
|
13874
14388
|
* @memberof DataTypesOrganization
|
|
13875
14389
|
*/
|
|
13876
14390
|
'TIN'?: string;
|
|
14391
|
+
/**
|
|
14392
|
+
* Certificate number
|
|
14393
|
+
* @type {string}
|
|
14394
|
+
* @memberof DataTypesOrganization
|
|
14395
|
+
*/
|
|
14396
|
+
'TaxExemptionCertificate'?: string;
|
|
14397
|
+
/**
|
|
14398
|
+
* Tax exemption flag
|
|
14399
|
+
* @type {boolean}
|
|
14400
|
+
* @memberof DataTypesOrganization
|
|
14401
|
+
*/
|
|
14402
|
+
'TaxExemptionStatus'?: boolean;
|
|
14403
|
+
/**
|
|
14404
|
+
* Validity date
|
|
14405
|
+
* @type {string}
|
|
14406
|
+
* @memberof DataTypesOrganization
|
|
14407
|
+
*/
|
|
14408
|
+
'TaxExemptionValidUntil'?: string;
|
|
14409
|
+
/**
|
|
14410
|
+
* ISO country code for tax
|
|
14411
|
+
* @type {string}
|
|
14412
|
+
* @memberof DataTypesOrganization
|
|
14413
|
+
*/
|
|
14414
|
+
'TaxRegistrationCountry'?: string;
|
|
14415
|
+
/**
|
|
14416
|
+
* Generic tax registration number
|
|
14417
|
+
* @type {string}
|
|
14418
|
+
* @memberof DataTypesOrganization
|
|
14419
|
+
*/
|
|
14420
|
+
'TaxRegistrationNumber'?: string;
|
|
14421
|
+
/**
|
|
14422
|
+
* Flexible tax config (JSONB)
|
|
14423
|
+
* @type {string}
|
|
14424
|
+
* @memberof DataTypesOrganization
|
|
14425
|
+
*/
|
|
14426
|
+
'TaxSettings'?: string;
|
|
13877
14427
|
/**
|
|
13878
14428
|
* Nullable field
|
|
13879
14429
|
* @type {string}
|
|
@@ -18161,6 +18711,54 @@ export interface DataTypesUpdateOrganizationRequest {
|
|
|
18161
18711
|
* @memberof DataTypesUpdateOrganizationRequest
|
|
18162
18712
|
*/
|
|
18163
18713
|
'Address'?: string;
|
|
18714
|
+
/**
|
|
18715
|
+
*
|
|
18716
|
+
* @type {string}
|
|
18717
|
+
* @memberof DataTypesUpdateOrganizationRequest
|
|
18718
|
+
*/
|
|
18719
|
+
'BillingAddressLine1'?: string;
|
|
18720
|
+
/**
|
|
18721
|
+
*
|
|
18722
|
+
* @type {string}
|
|
18723
|
+
* @memberof DataTypesUpdateOrganizationRequest
|
|
18724
|
+
*/
|
|
18725
|
+
'BillingAddressLine2'?: string;
|
|
18726
|
+
/**
|
|
18727
|
+
*
|
|
18728
|
+
* @type {string}
|
|
18729
|
+
* @memberof DataTypesUpdateOrganizationRequest
|
|
18730
|
+
*/
|
|
18731
|
+
'BillingCity'?: string;
|
|
18732
|
+
/**
|
|
18733
|
+
*
|
|
18734
|
+
* @type {string}
|
|
18735
|
+
* @memberof DataTypesUpdateOrganizationRequest
|
|
18736
|
+
*/
|
|
18737
|
+
'BillingCountry'?: string;
|
|
18738
|
+
/**
|
|
18739
|
+
*
|
|
18740
|
+
* @type {string}
|
|
18741
|
+
* @memberof DataTypesUpdateOrganizationRequest
|
|
18742
|
+
*/
|
|
18743
|
+
'BillingPostalCode'?: string;
|
|
18744
|
+
/**
|
|
18745
|
+
*
|
|
18746
|
+
* @type {string}
|
|
18747
|
+
* @memberof DataTypesUpdateOrganizationRequest
|
|
18748
|
+
*/
|
|
18749
|
+
'BillingState'?: string;
|
|
18750
|
+
/**
|
|
18751
|
+
*
|
|
18752
|
+
* @type {string}
|
|
18753
|
+
* @memberof DataTypesUpdateOrganizationRequest
|
|
18754
|
+
*/
|
|
18755
|
+
'BusinessLegalName'?: string;
|
|
18756
|
+
/**
|
|
18757
|
+
*
|
|
18758
|
+
* @type {string}
|
|
18759
|
+
* @memberof DataTypesUpdateOrganizationRequest
|
|
18760
|
+
*/
|
|
18761
|
+
'BusinessType'?: string;
|
|
18164
18762
|
/**
|
|
18165
18763
|
*
|
|
18166
18764
|
* @type {string}
|
|
@@ -18185,6 +18783,18 @@ export interface DataTypesUpdateOrganizationRequest {
|
|
|
18185
18783
|
* @memberof DataTypesUpdateOrganizationRequest
|
|
18186
18784
|
*/
|
|
18187
18785
|
'Footer'?: string;
|
|
18786
|
+
/**
|
|
18787
|
+
* Tax and Billing Details
|
|
18788
|
+
* @type {string}
|
|
18789
|
+
* @memberof DataTypesUpdateOrganizationRequest
|
|
18790
|
+
*/
|
|
18791
|
+
'GSTIN'?: string;
|
|
18792
|
+
/**
|
|
18793
|
+
*
|
|
18794
|
+
* @type {string}
|
|
18795
|
+
* @memberof DataTypesUpdateOrganizationRequest
|
|
18796
|
+
*/
|
|
18797
|
+
'HSNSACCode'?: string;
|
|
18188
18798
|
/**
|
|
18189
18799
|
*
|
|
18190
18800
|
* @type {string}
|
|
@@ -18197,12 +18807,24 @@ export interface DataTypesUpdateOrganizationRequest {
|
|
|
18197
18807
|
* @memberof DataTypesUpdateOrganizationRequest
|
|
18198
18808
|
*/
|
|
18199
18809
|
'OrgName': string;
|
|
18810
|
+
/**
|
|
18811
|
+
*
|
|
18812
|
+
* @type {string}
|
|
18813
|
+
* @memberof DataTypesUpdateOrganizationRequest
|
|
18814
|
+
*/
|
|
18815
|
+
'PAN'?: string;
|
|
18200
18816
|
/**
|
|
18201
18817
|
*
|
|
18202
18818
|
* @type {string}
|
|
18203
18819
|
* @memberof DataTypesUpdateOrganizationRequest
|
|
18204
18820
|
*/
|
|
18205
18821
|
'PhoneNo'?: string;
|
|
18822
|
+
/**
|
|
18823
|
+
*
|
|
18824
|
+
* @type {string}
|
|
18825
|
+
* @memberof DataTypesUpdateOrganizationRequest
|
|
18826
|
+
*/
|
|
18827
|
+
'PlaceOfSupply'?: string;
|
|
18206
18828
|
/**
|
|
18207
18829
|
*
|
|
18208
18830
|
* @type {string}
|
|
@@ -18215,6 +18837,36 @@ export interface DataTypesUpdateOrganizationRequest {
|
|
|
18215
18837
|
* @memberof DataTypesUpdateOrganizationRequest
|
|
18216
18838
|
*/
|
|
18217
18839
|
'TIN'?: string;
|
|
18840
|
+
/**
|
|
18841
|
+
*
|
|
18842
|
+
* @type {string}
|
|
18843
|
+
* @memberof DataTypesUpdateOrganizationRequest
|
|
18844
|
+
*/
|
|
18845
|
+
'TaxExemptionCertificate'?: string;
|
|
18846
|
+
/**
|
|
18847
|
+
*
|
|
18848
|
+
* @type {boolean}
|
|
18849
|
+
* @memberof DataTypesUpdateOrganizationRequest
|
|
18850
|
+
*/
|
|
18851
|
+
'TaxExemptionStatus'?: boolean;
|
|
18852
|
+
/**
|
|
18853
|
+
*
|
|
18854
|
+
* @type {string}
|
|
18855
|
+
* @memberof DataTypesUpdateOrganizationRequest
|
|
18856
|
+
*/
|
|
18857
|
+
'TaxExemptionValidUntil'?: string;
|
|
18858
|
+
/**
|
|
18859
|
+
*
|
|
18860
|
+
* @type {string}
|
|
18861
|
+
* @memberof DataTypesUpdateOrganizationRequest
|
|
18862
|
+
*/
|
|
18863
|
+
'TaxRegistrationCountry'?: string;
|
|
18864
|
+
/**
|
|
18865
|
+
*
|
|
18866
|
+
* @type {string}
|
|
18867
|
+
* @memberof DataTypesUpdateOrganizationRequest
|
|
18868
|
+
*/
|
|
18869
|
+
'TaxRegistrationNumber'?: string;
|
|
18218
18870
|
/**
|
|
18219
18871
|
*
|
|
18220
18872
|
* @type {string}
|
|
@@ -25768,6 +26420,94 @@ export declare class CommonApi extends BaseAPI {
|
|
|
25768
26420
|
[key: string]: any;
|
|
25769
26421
|
}, any, {}>>;
|
|
25770
26422
|
}
|
|
26423
|
+
/**
|
|
26424
|
+
* CompanyConfigApi - axios parameter creator
|
|
26425
|
+
* @export
|
|
26426
|
+
*/
|
|
26427
|
+
export declare const CompanyConfigApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
26428
|
+
/**
|
|
26429
|
+
* Retrieves company information used on invoices and receipts
|
|
26430
|
+
* @summary Get company configuration
|
|
26431
|
+
* @param {*} [options] Override http request option.
|
|
26432
|
+
* @throws {RequiredError}
|
|
26433
|
+
*/
|
|
26434
|
+
adminV1ConfigCompanyGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
26435
|
+
/**
|
|
26436
|
+
* Updates company information used on invoices and receipts
|
|
26437
|
+
* @summary Update company configuration
|
|
26438
|
+
* @param {DataTypesCompanyConfigRequest} dataTypesCompanyConfigRequest Company config
|
|
26439
|
+
* @param {*} [options] Override http request option.
|
|
26440
|
+
* @throws {RequiredError}
|
|
26441
|
+
*/
|
|
26442
|
+
adminV1ConfigCompanyPut: (dataTypesCompanyConfigRequest: DataTypesCompanyConfigRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
26443
|
+
};
|
|
26444
|
+
/**
|
|
26445
|
+
* CompanyConfigApi - functional programming interface
|
|
26446
|
+
* @export
|
|
26447
|
+
*/
|
|
26448
|
+
export declare const CompanyConfigApiFp: (configuration?: Configuration) => {
|
|
26449
|
+
/**
|
|
26450
|
+
* Retrieves company information used on invoices and receipts
|
|
26451
|
+
* @summary Get company configuration
|
|
26452
|
+
* @param {*} [options] Override http request option.
|
|
26453
|
+
* @throws {RequiredError}
|
|
26454
|
+
*/
|
|
26455
|
+
adminV1ConfigCompanyGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesCompanyConfig>>;
|
|
26456
|
+
/**
|
|
26457
|
+
* Updates company information used on invoices and receipts
|
|
26458
|
+
* @summary Update company configuration
|
|
26459
|
+
* @param {DataTypesCompanyConfigRequest} dataTypesCompanyConfigRequest Company config
|
|
26460
|
+
* @param {*} [options] Override http request option.
|
|
26461
|
+
* @throws {RequiredError}
|
|
26462
|
+
*/
|
|
26463
|
+
adminV1ConfigCompanyPut(dataTypesCompanyConfigRequest: DataTypesCompanyConfigRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
26464
|
+
};
|
|
26465
|
+
/**
|
|
26466
|
+
* CompanyConfigApi - factory interface
|
|
26467
|
+
* @export
|
|
26468
|
+
*/
|
|
26469
|
+
export declare const CompanyConfigApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
26470
|
+
/**
|
|
26471
|
+
* Retrieves company information used on invoices and receipts
|
|
26472
|
+
* @summary Get company configuration
|
|
26473
|
+
* @param {*} [options] Override http request option.
|
|
26474
|
+
* @throws {RequiredError}
|
|
26475
|
+
*/
|
|
26476
|
+
adminV1ConfigCompanyGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesCompanyConfig>;
|
|
26477
|
+
/**
|
|
26478
|
+
* Updates company information used on invoices and receipts
|
|
26479
|
+
* @summary Update company configuration
|
|
26480
|
+
* @param {DataTypesCompanyConfigRequest} dataTypesCompanyConfigRequest Company config
|
|
26481
|
+
* @param {*} [options] Override http request option.
|
|
26482
|
+
* @throws {RequiredError}
|
|
26483
|
+
*/
|
|
26484
|
+
adminV1ConfigCompanyPut(dataTypesCompanyConfigRequest: DataTypesCompanyConfigRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
26485
|
+
};
|
|
26486
|
+
/**
|
|
26487
|
+
* CompanyConfigApi - object-oriented interface
|
|
26488
|
+
* @export
|
|
26489
|
+
* @class CompanyConfigApi
|
|
26490
|
+
* @extends {BaseAPI}
|
|
26491
|
+
*/
|
|
26492
|
+
export declare class CompanyConfigApi extends BaseAPI {
|
|
26493
|
+
/**
|
|
26494
|
+
* Retrieves company information used on invoices and receipts
|
|
26495
|
+
* @summary Get company configuration
|
|
26496
|
+
* @param {*} [options] Override http request option.
|
|
26497
|
+
* @throws {RequiredError}
|
|
26498
|
+
* @memberof CompanyConfigApi
|
|
26499
|
+
*/
|
|
26500
|
+
adminV1ConfigCompanyGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCompanyConfig, any, {}>>;
|
|
26501
|
+
/**
|
|
26502
|
+
* Updates company information used on invoices and receipts
|
|
26503
|
+
* @summary Update company configuration
|
|
26504
|
+
* @param {DataTypesCompanyConfigRequest} dataTypesCompanyConfigRequest Company config
|
|
26505
|
+
* @param {*} [options] Override http request option.
|
|
26506
|
+
* @throws {RequiredError}
|
|
26507
|
+
* @memberof CompanyConfigApi
|
|
26508
|
+
*/
|
|
26509
|
+
adminV1ConfigCompanyPut(dataTypesCompanyConfigRequest: DataTypesCompanyConfigRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
26510
|
+
}
|
|
25771
26511
|
/**
|
|
25772
26512
|
* ConnectorsApi - axios parameter creator
|
|
25773
26513
|
* @export
|
|
@@ -30041,10 +30781,22 @@ export declare const PaymentGatewayApiAxiosParamCreator: (configuration?: Config
|
|
|
30041
30781
|
* @summary List orders (paginated)
|
|
30042
30782
|
* @param {number} [page] Page number (default 1)
|
|
30043
30783
|
* @param {number} [pageSize] Page size (default 20, max 100)
|
|
30784
|
+
* @param {string} [search] Search by order ID, gateway references, amount, or customer details
|
|
30785
|
+
* @param {string} [statuses] Comma-separated statuses to include
|
|
30786
|
+
* @param {string} [paymentTypes] Comma-separated payment types to include
|
|
30787
|
+
* @param {string} [gateways] Comma-separated gateways to include
|
|
30788
|
+
* @param {string} [currencies] Comma-separated currencies to include
|
|
30789
|
+
* @param {string} [createdFrom] Created_at filter (RFC3339 or YYYY-MM-DD)
|
|
30790
|
+
* @param {string} [createdTo] Created_at upper bound (inclusive, RFC3339 or YYYY-MM-DD)
|
|
30791
|
+
* @param {number} [amountMin] Minimum order amount
|
|
30792
|
+
* @param {number} [amountMax] Maximum order amount
|
|
30793
|
+
* @param {string} [sort] Multi-field sort (e.g. created_at:desc,amount:asc or -created_at,+amount)
|
|
30794
|
+
* @param {string} [sortBy] Legacy single-field sort
|
|
30795
|
+
* @param {string} [sortOrder] Sort direction for sort_by (asc or desc)
|
|
30044
30796
|
* @param {*} [options] Override http request option.
|
|
30045
30797
|
* @throws {RequiredError}
|
|
30046
30798
|
*/
|
|
30047
|
-
adminPaymentGatewayOrdersGet: (page?: number, pageSize?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
30799
|
+
adminPaymentGatewayOrdersGet: (page?: number, pageSize?: number, search?: string, statuses?: string, paymentTypes?: string, gateways?: string, currencies?: string, createdFrom?: string, createdTo?: string, amountMin?: number, amountMax?: number, sort?: string, sortBy?: string, sortOrder?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
30048
30800
|
/**
|
|
30049
30801
|
* Returns order details, list of payment transactions for that order, and the latest invoice if available. Does not expose raw gateway secrets.
|
|
30050
30802
|
* @summary Get single order details with transactions and invoice
|
|
@@ -30150,10 +30902,22 @@ export declare const PaymentGatewayApiFp: (configuration?: Configuration) => {
|
|
|
30150
30902
|
* @summary List orders (paginated)
|
|
30151
30903
|
* @param {number} [page] Page number (default 1)
|
|
30152
30904
|
* @param {number} [pageSize] Page size (default 20, max 100)
|
|
30905
|
+
* @param {string} [search] Search by order ID, gateway references, amount, or customer details
|
|
30906
|
+
* @param {string} [statuses] Comma-separated statuses to include
|
|
30907
|
+
* @param {string} [paymentTypes] Comma-separated payment types to include
|
|
30908
|
+
* @param {string} [gateways] Comma-separated gateways to include
|
|
30909
|
+
* @param {string} [currencies] Comma-separated currencies to include
|
|
30910
|
+
* @param {string} [createdFrom] Created_at filter (RFC3339 or YYYY-MM-DD)
|
|
30911
|
+
* @param {string} [createdTo] Created_at upper bound (inclusive, RFC3339 or YYYY-MM-DD)
|
|
30912
|
+
* @param {number} [amountMin] Minimum order amount
|
|
30913
|
+
* @param {number} [amountMax] Maximum order amount
|
|
30914
|
+
* @param {string} [sort] Multi-field sort (e.g. created_at:desc,amount:asc or -created_at,+amount)
|
|
30915
|
+
* @param {string} [sortBy] Legacy single-field sort
|
|
30916
|
+
* @param {string} [sortOrder] Sort direction for sort_by (asc or desc)
|
|
30153
30917
|
* @param {*} [options] Override http request option.
|
|
30154
30918
|
* @throws {RequiredError}
|
|
30155
30919
|
*/
|
|
30156
|
-
adminPaymentGatewayOrdersGet(page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesOrdersListResponse>>;
|
|
30920
|
+
adminPaymentGatewayOrdersGet(page?: number, pageSize?: number, search?: string, statuses?: string, paymentTypes?: string, gateways?: string, currencies?: string, createdFrom?: string, createdTo?: string, amountMin?: number, amountMax?: number, sort?: string, sortBy?: string, sortOrder?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesOrdersListResponse>>;
|
|
30157
30921
|
/**
|
|
30158
30922
|
* Returns order details, list of payment transactions for that order, and the latest invoice if available. Does not expose raw gateway secrets.
|
|
30159
30923
|
* @summary Get single order details with transactions and invoice
|
|
@@ -30263,10 +31027,22 @@ export declare const PaymentGatewayApiFactory: (configuration?: Configuration, b
|
|
|
30263
31027
|
* @summary List orders (paginated)
|
|
30264
31028
|
* @param {number} [page] Page number (default 1)
|
|
30265
31029
|
* @param {number} [pageSize] Page size (default 20, max 100)
|
|
31030
|
+
* @param {string} [search] Search by order ID, gateway references, amount, or customer details
|
|
31031
|
+
* @param {string} [statuses] Comma-separated statuses to include
|
|
31032
|
+
* @param {string} [paymentTypes] Comma-separated payment types to include
|
|
31033
|
+
* @param {string} [gateways] Comma-separated gateways to include
|
|
31034
|
+
* @param {string} [currencies] Comma-separated currencies to include
|
|
31035
|
+
* @param {string} [createdFrom] Created_at filter (RFC3339 or YYYY-MM-DD)
|
|
31036
|
+
* @param {string} [createdTo] Created_at upper bound (inclusive, RFC3339 or YYYY-MM-DD)
|
|
31037
|
+
* @param {number} [amountMin] Minimum order amount
|
|
31038
|
+
* @param {number} [amountMax] Maximum order amount
|
|
31039
|
+
* @param {string} [sort] Multi-field sort (e.g. created_at:desc,amount:asc or -created_at,+amount)
|
|
31040
|
+
* @param {string} [sortBy] Legacy single-field sort
|
|
31041
|
+
* @param {string} [sortOrder] Sort direction for sort_by (asc or desc)
|
|
30266
31042
|
* @param {*} [options] Override http request option.
|
|
30267
31043
|
* @throws {RequiredError}
|
|
30268
31044
|
*/
|
|
30269
|
-
adminPaymentGatewayOrdersGet(page?: number, pageSize?: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesOrdersListResponse>;
|
|
31045
|
+
adminPaymentGatewayOrdersGet(page?: number, pageSize?: number, search?: string, statuses?: string, paymentTypes?: string, gateways?: string, currencies?: string, createdFrom?: string, createdTo?: string, amountMin?: number, amountMax?: number, sort?: string, sortBy?: string, sortOrder?: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesOrdersListResponse>;
|
|
30270
31046
|
/**
|
|
30271
31047
|
* Returns order details, list of payment transactions for that order, and the latest invoice if available. Does not expose raw gateway secrets.
|
|
30272
31048
|
* @summary Get single order details with transactions and invoice
|
|
@@ -30381,11 +31157,23 @@ export declare class PaymentGatewayApi extends BaseAPI {
|
|
|
30381
31157
|
* @summary List orders (paginated)
|
|
30382
31158
|
* @param {number} [page] Page number (default 1)
|
|
30383
31159
|
* @param {number} [pageSize] Page size (default 20, max 100)
|
|
31160
|
+
* @param {string} [search] Search by order ID, gateway references, amount, or customer details
|
|
31161
|
+
* @param {string} [statuses] Comma-separated statuses to include
|
|
31162
|
+
* @param {string} [paymentTypes] Comma-separated payment types to include
|
|
31163
|
+
* @param {string} [gateways] Comma-separated gateways to include
|
|
31164
|
+
* @param {string} [currencies] Comma-separated currencies to include
|
|
31165
|
+
* @param {string} [createdFrom] Created_at filter (RFC3339 or YYYY-MM-DD)
|
|
31166
|
+
* @param {string} [createdTo] Created_at upper bound (inclusive, RFC3339 or YYYY-MM-DD)
|
|
31167
|
+
* @param {number} [amountMin] Minimum order amount
|
|
31168
|
+
* @param {number} [amountMax] Maximum order amount
|
|
31169
|
+
* @param {string} [sort] Multi-field sort (e.g. created_at:desc,amount:asc or -created_at,+amount)
|
|
31170
|
+
* @param {string} [sortBy] Legacy single-field sort
|
|
31171
|
+
* @param {string} [sortOrder] Sort direction for sort_by (asc or desc)
|
|
30384
31172
|
* @param {*} [options] Override http request option.
|
|
30385
31173
|
* @throws {RequiredError}
|
|
30386
31174
|
* @memberof PaymentGatewayApi
|
|
30387
31175
|
*/
|
|
30388
|
-
adminPaymentGatewayOrdersGet(page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOrdersListResponse, any, {}>>;
|
|
31176
|
+
adminPaymentGatewayOrdersGet(page?: number, pageSize?: number, search?: string, statuses?: string, paymentTypes?: string, gateways?: string, currencies?: string, createdFrom?: string, createdTo?: string, amountMin?: number, amountMax?: number, sort?: string, sortBy?: string, sortOrder?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOrdersListResponse, any, {}>>;
|
|
30389
31177
|
/**
|
|
30390
31178
|
* Returns order details, list of payment transactions for that order, and the latest invoice if available. Does not expose raw gateway secrets.
|
|
30391
31179
|
* @summary Get single order details with transactions and invoice
|