@reposit/api-client 6.67.0-alpha.0 → 6.70.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 CHANGED
@@ -3024,9 +3024,9 @@ export declare function getMySupplier(configuration?: Configuration, axios?: Axi
3024
3024
 
3025
3025
  export declare function getOrderCustomerById(orderId: string, customerId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<OrderCustomerDTO>;
3026
3026
 
3027
- export declare function getOrderManualPaymentsByClaimWithBankTransfers(claimId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<Array<OrderManualPaymentWithBankTransactionDTO>>;
3027
+ export declare function getOrderManualPaymentsByClaimWithBankTransfers(claimId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<OrderManualPaymentsWithBankTransfersDTO>;
3028
3028
 
3029
- export declare function getOrderManualPaymentsByTenancyOrderWithBankTransfers(torId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<Array<OrderManualPaymentWithBankTransactionDTO>>;
3029
+ export declare function getOrderManualPaymentsByTenancyOrderWithBankTransfers(torId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<OrderManualPaymentsWithBankTransfersDTO>;
3030
3030
 
3031
3031
  export declare function getOrganizationMetrics(organizationId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<OrganizationMetricsDTO>;
3032
3032
 
@@ -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 {
@@ -3889,8 +3931,8 @@ export declare interface OrderManualPaymentDTO {
3889
3931
  }
3890
3932
 
3891
3933
  export declare class OrderManualPaymentsApi extends BaseAPI implements OrderManualPaymentsApiInterface {
3892
- getOrderManualPaymentsByClaimWithBankTransfers(claimId: string, options?: any): AxiosPromise<OrderManualPaymentWithBankTransactionDTO[]>;
3893
- getOrderManualPaymentsByTenancyOrderWithBankTransfers(torId: string, options?: any): AxiosPromise<OrderManualPaymentWithBankTransactionDTO[]>;
3934
+ getOrderManualPaymentsByClaimWithBankTransfers(claimId: string, options?: any): AxiosPromise<OrderManualPaymentsWithBankTransfersDTO>;
3935
+ getOrderManualPaymentsByTenancyOrderWithBankTransfers(torId: string, options?: any): AxiosPromise<OrderManualPaymentsWithBankTransfersDTO>;
3894
3936
  }
3895
3937
 
3896
3938
  export declare const OrderManualPaymentsApiAxiosParamCreator: (configuration?: Configuration) => {
@@ -3899,18 +3941,23 @@ export declare const OrderManualPaymentsApiAxiosParamCreator: (configuration?: C
3899
3941
  };
3900
3942
 
3901
3943
  export declare const OrderManualPaymentsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
3902
- getOrderManualPaymentsByClaimWithBankTransfers(claimId: string, options?: any): AxiosPromise<OrderManualPaymentWithBankTransactionDTO[]>;
3903
- getOrderManualPaymentsByTenancyOrderWithBankTransfers(torId: string, options?: any): AxiosPromise<OrderManualPaymentWithBankTransactionDTO[]>;
3944
+ getOrderManualPaymentsByClaimWithBankTransfers(claimId: string, options?: any): AxiosPromise<OrderManualPaymentsWithBankTransfersDTO>;
3945
+ getOrderManualPaymentsByTenancyOrderWithBankTransfers(torId: string, options?: any): AxiosPromise<OrderManualPaymentsWithBankTransfersDTO>;
3904
3946
  };
3905
3947
 
3906
3948
  export declare const OrderManualPaymentsApiFp: (configuration?: Configuration) => {
3907
- getOrderManualPaymentsByClaimWithBankTransfers(claimId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderManualPaymentWithBankTransactionDTO>>;
3908
- getOrderManualPaymentsByTenancyOrderWithBankTransfers(torId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderManualPaymentWithBankTransactionDTO>>;
3949
+ getOrderManualPaymentsByClaimWithBankTransfers(claimId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<OrderManualPaymentsWithBankTransfersDTO>;
3950
+ getOrderManualPaymentsByTenancyOrderWithBankTransfers(torId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<OrderManualPaymentsWithBankTransfersDTO>;
3909
3951
  };
3910
3952
 
3911
3953
  export declare interface OrderManualPaymentsApiInterface {
3912
- getOrderManualPaymentsByClaimWithBankTransfers(claimId: string, options?: any): AxiosPromise<Array<OrderManualPaymentWithBankTransactionDTO>>;
3913
- getOrderManualPaymentsByTenancyOrderWithBankTransfers(torId: string, options?: any): AxiosPromise<Array<OrderManualPaymentWithBankTransactionDTO>>;
3954
+ getOrderManualPaymentsByClaimWithBankTransfers(claimId: string, options?: any): AxiosPromise<OrderManualPaymentsWithBankTransfersDTO>;
3955
+ getOrderManualPaymentsByTenancyOrderWithBankTransfers(torId: string, options?: any): AxiosPromise<OrderManualPaymentsWithBankTransfersDTO>;
3956
+ }
3957
+
3958
+ export declare interface OrderManualPaymentsWithBankTransfersDTO {
3959
+ manualPayments: Array<OrderManualPaymentWithBankTransactionDTO>;
3960
+ manualPaymentsTotal: number;
3914
3961
  }
3915
3962
 
3916
3963
  export declare interface OrderManualPaymentWithBankTransactionDTO {