@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.
Files changed (2) hide show
  1. package/dist/index.d.ts +15 -10
  2. 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<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
 
@@ -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<OrderManualPaymentWithBankTransactionDTO[]>;
3935
- getOrderManualPaymentsByTenancyOrderWithBankTransfers(torId: string, options?: any): AxiosPromise<OrderManualPaymentWithBankTransactionDTO[]>;
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<OrderManualPaymentWithBankTransactionDTO[]>;
3945
- getOrderManualPaymentsByTenancyOrderWithBankTransfers(torId: string, options?: any): AxiosPromise<OrderManualPaymentWithBankTransactionDTO[]>;
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<Array<OrderManualPaymentWithBankTransactionDTO>>;
3950
- 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>;
3951
3951
  };
3952
3952
 
3953
3953
  export declare interface OrderManualPaymentsApiInterface {
3954
- getOrderManualPaymentsByClaimWithBankTransfers(claimId: string, options?: any): AxiosPromise<Array<OrderManualPaymentWithBankTransactionDTO>>;
3955
- 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;
3956
3961
  }
3957
3962
 
3958
3963
  export declare interface OrderManualPaymentWithBankTransactionDTO {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reposit/api-client",
3
- "version": "6.69.0-alpha.0",
3
+ "version": "6.70.0-alpha.0",
4
4
  "author": "Reposit",
5
5
  "description": "Reposit API client generated from back-end swagger definition",
6
6
  "main": "./dist/index.js",