@riocrypto/common 1.0.1378 → 1.0.1380

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.
@@ -102,12 +102,7 @@ export declare class RioAdminClient {
102
102
  tosLink: string;
103
103
  kycLink: string;
104
104
  }>;
105
- getBridgeExternalAccounts(query: BridgeExternalAccountQuery): Promise<{
106
- id: string;
107
- bank_name: string;
108
- account_owner_name: string;
109
- last_4: string;
110
- }[]>;
105
+ getBridgeExternalAccounts(query: BridgeExternalAccountQuery): Promise<BankAccount[]>;
111
106
  getAdminAuth(id: string): Promise<AdminAuth>;
112
107
  deleteAdminAuth(id: string): Promise<void>;
113
108
  getAdminAuthWithoutId(): Promise<AdminAuth>;
@@ -126,12 +126,7 @@ export declare class RioClient {
126
126
  tosLink: string;
127
127
  kycLink: string;
128
128
  }>;
129
- getBridgeExternalAccounts(query: BridgeExternalAccountQuery): Promise<{
130
- id: string;
131
- bank_name: string;
132
- account_owner_name: string;
133
- last_4: string;
134
- }[]>;
129
+ getBridgeExternalAccounts(query: BridgeExternalAccountQuery): Promise<BankAccount[]>;
135
130
  getCryptoAddresses(page: number, limit?: number, query?: CryptoAddressQuery): Promise<CryptoAddress[]>;
136
131
  createCryptoAddress(address: string, crypto: Crypto, userId?: string, label?: string): Promise<CryptoAddress>;
137
132
  createBridgePlaidLink(userId: string): Promise<string>;
@@ -12,5 +12,6 @@ export declare enum UserAttribute {
12
12
  canUploadKYCReportFile = "canUploadKYCReportFile",
13
13
  shortQuote = "shortQuote",
14
14
  needsAddressApproval = "needsAddressApproval",
15
- canPriceMatch = "canPriceMatch"
15
+ canPriceMatch = "canPriceMatch",
16
+ doNotSendOrderConfirmationEmail = "doNotSendOrderConfirmationEmail"
16
17
  }
@@ -17,4 +17,5 @@ var UserAttribute;
17
17
  UserAttribute["shortQuote"] = "shortQuote";
18
18
  UserAttribute["needsAddressApproval"] = "needsAddressApproval";
19
19
  UserAttribute["canPriceMatch"] = "canPriceMatch";
20
+ UserAttribute["doNotSendOrderConfirmationEmail"] = "doNotSendOrderConfirmationEmail";
20
21
  })(UserAttribute = exports.UserAttribute || (exports.UserAttribute = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.1378",
3
+ "version": "1.0.1380",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",