@riocrypto/common 1.0.1035 → 1.0.1036

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.
@@ -115,7 +115,10 @@ export declare class RioAdminClient {
115
115
  getCryptoAddresses(page: number, limit?: number, query?: CryptoAddressQuery): Promise<CryptoAddress[]>;
116
116
  createChainedOrder(order: ChainedOrderInput): Promise<ChainedOrder>;
117
117
  createCryptoAddress(address: string, crypto: Crypto, userId: string, label?: string): Promise<CryptoAddress>;
118
- createChainedQuote(input: ChainedQuoteInput): Promise<ChainedQuote>;
118
+ createChainedQuote(input: ChainedQuoteInput): Promise<{
119
+ chainedQuote: ChainedQuote;
120
+ sufficientLiquidity: boolean;
121
+ }>;
119
122
  createBankAccount(userId: string, country: Country, fiat: Fiat, bankName: string, accountHolderName: string, accountNumber: string, swiftCode?: string, CCI?: string, notes?: string): Promise<BankAccount>;
120
123
  updateBankAccount(id: string, userId?: string, country?: Country, fiat?: Fiat, bankName?: string, accountHolderName?: string, accountNumber?: string, swiftCode?: string, notes?: string, approved?: boolean): Promise<BankAccount>;
121
124
  deleteBankAccount(id: string): Promise<void>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.1035",
3
+ "version": "1.0.1036",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",