@reposit/api-client 6.67.0-alpha.0 → 6.69.0-alpha.0
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/dist/index.d.ts +42 -0
- package/dist/index.js +1 -1
- package/dist/index.mjs +1126 -1123
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3880,6 +3880,48 @@ export declare interface OrderManualPaymentBankTransactionDTO {
|
|
|
3880
3880
|
type?: string;
|
|
3881
3881
|
debit?: number;
|
|
3882
3882
|
credit?: number;
|
|
3883
|
+
bulkImportRow: OrderManualPaymentBulkImportRowDTO;
|
|
3884
|
+
}
|
|
3885
|
+
|
|
3886
|
+
export declare interface OrderManualPaymentBulkImportDTO {
|
|
3887
|
+
id: string;
|
|
3888
|
+
name: string;
|
|
3889
|
+
importType: OrderManualPaymentBulkImportDTOImportTypeEnum;
|
|
3890
|
+
status: OrderManualPaymentBulkImportDTOStatusEnum;
|
|
3891
|
+
createdAt: Date;
|
|
3892
|
+
}
|
|
3893
|
+
|
|
3894
|
+
export declare enum OrderManualPaymentBulkImportDTOImportTypeEnum {
|
|
3895
|
+
REPOSIT = "REPOSIT",
|
|
3896
|
+
PROPERTY = "PROPERTY",
|
|
3897
|
+
BANKTRANSACTION = "BANK_TRANSACTION"
|
|
3898
|
+
}
|
|
3899
|
+
|
|
3900
|
+
export declare enum OrderManualPaymentBulkImportDTOStatusEnum {
|
|
3901
|
+
DRAFT = "DRAFT",
|
|
3902
|
+
IMPORTING = "IMPORTING",
|
|
3903
|
+
PROCESSING = "PROCESSING",
|
|
3904
|
+
COMPLETED = "COMPLETED",
|
|
3905
|
+
FAILED = "FAILED"
|
|
3906
|
+
}
|
|
3907
|
+
|
|
3908
|
+
export declare interface OrderManualPaymentBulkImportRowDTO {
|
|
3909
|
+
id: string;
|
|
3910
|
+
bulkImportId: string;
|
|
3911
|
+
rowNumber: number;
|
|
3912
|
+
status: OrderManualPaymentBulkImportRowDTOStatusEnum;
|
|
3913
|
+
error?: string;
|
|
3914
|
+
createdAt: Date;
|
|
3915
|
+
updatedAt: Date;
|
|
3916
|
+
bulkImport: OrderManualPaymentBulkImportDTO;
|
|
3917
|
+
}
|
|
3918
|
+
|
|
3919
|
+
export declare enum OrderManualPaymentBulkImportRowDTOStatusEnum {
|
|
3920
|
+
PENDING = "PENDING",
|
|
3921
|
+
PROCESSING = "PROCESSING",
|
|
3922
|
+
COMPLETED = "COMPLETED",
|
|
3923
|
+
FAILED = "FAILED",
|
|
3924
|
+
DUPLICATE = "DUPLICATE"
|
|
3883
3925
|
}
|
|
3884
3926
|
|
|
3885
3927
|
export declare interface OrderManualPaymentDTO {
|