@reposit/api-client 6.69.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 +15 -10
- package/package.json +1 -1
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<
|
|
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<
|
|
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
|
|
|
@@ -3931,8 +3931,8 @@ export declare interface OrderManualPaymentDTO {
|
|
|
3931
3931
|
}
|
|
3932
3932
|
|
|
3933
3933
|
export declare class OrderManualPaymentsApi extends BaseAPI implements OrderManualPaymentsApiInterface {
|
|
3934
|
-
getOrderManualPaymentsByClaimWithBankTransfers(claimId: string, options?: any): AxiosPromise<
|
|
3935
|
-
getOrderManualPaymentsByTenancyOrderWithBankTransfers(torId: string, options?: any): AxiosPromise<
|
|
3934
|
+
getOrderManualPaymentsByClaimWithBankTransfers(claimId: string, options?: any): AxiosPromise<OrderManualPaymentsWithBankTransfersDTO>;
|
|
3935
|
+
getOrderManualPaymentsByTenancyOrderWithBankTransfers(torId: string, options?: any): AxiosPromise<OrderManualPaymentsWithBankTransfersDTO>;
|
|
3936
3936
|
}
|
|
3937
3937
|
|
|
3938
3938
|
export declare const OrderManualPaymentsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
@@ -3941,18 +3941,23 @@ export declare const OrderManualPaymentsApiAxiosParamCreator: (configuration?: C
|
|
|
3941
3941
|
};
|
|
3942
3942
|
|
|
3943
3943
|
export declare const OrderManualPaymentsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
3944
|
-
getOrderManualPaymentsByClaimWithBankTransfers(claimId: string, options?: any): AxiosPromise<
|
|
3945
|
-
getOrderManualPaymentsByTenancyOrderWithBankTransfers(torId: string, options?: any): AxiosPromise<
|
|
3944
|
+
getOrderManualPaymentsByClaimWithBankTransfers(claimId: string, options?: any): AxiosPromise<OrderManualPaymentsWithBankTransfersDTO>;
|
|
3945
|
+
getOrderManualPaymentsByTenancyOrderWithBankTransfers(torId: string, options?: any): AxiosPromise<OrderManualPaymentsWithBankTransfersDTO>;
|
|
3946
3946
|
};
|
|
3947
3947
|
|
|
3948
3948
|
export declare const OrderManualPaymentsApiFp: (configuration?: Configuration) => {
|
|
3949
|
-
getOrderManualPaymentsByClaimWithBankTransfers(claimId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
3950
|
-
getOrderManualPaymentsByTenancyOrderWithBankTransfers(torId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
3949
|
+
getOrderManualPaymentsByClaimWithBankTransfers(claimId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<OrderManualPaymentsWithBankTransfersDTO>;
|
|
3950
|
+
getOrderManualPaymentsByTenancyOrderWithBankTransfers(torId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<OrderManualPaymentsWithBankTransfersDTO>;
|
|
3951
3951
|
};
|
|
3952
3952
|
|
|
3953
3953
|
export declare interface OrderManualPaymentsApiInterface {
|
|
3954
|
-
getOrderManualPaymentsByClaimWithBankTransfers(claimId: string, options?: any): AxiosPromise<
|
|
3955
|
-
getOrderManualPaymentsByTenancyOrderWithBankTransfers(torId: string, options?: any): AxiosPromise<
|
|
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;
|
|
3956
3961
|
}
|
|
3957
3962
|
|
|
3958
3963
|
export declare interface OrderManualPaymentWithBankTransactionDTO {
|