@riocrypto/common 1.0.737 → 1.0.739

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/build/index.d.ts CHANGED
@@ -131,6 +131,8 @@ export * from "./types/order-query";
131
131
  export * from "./types/user-query";
132
132
  export * from "./types/bank-account-query";
133
133
  export * from "./types/mexico-fiscal-regimen";
134
+ export * from "./types/bridge-customer";
135
+ export * from "./types/bridge-customer-input";
134
136
  export * from "./classes/Asset";
135
137
  export * from "./classes/CountryAsset";
136
138
  export * from "./classes/CryptoAsset";
package/build/index.js CHANGED
@@ -147,6 +147,8 @@ __exportStar(require("./types/order-query"), exports);
147
147
  __exportStar(require("./types/user-query"), exports);
148
148
  __exportStar(require("./types/bank-account-query"), exports);
149
149
  __exportStar(require("./types/mexico-fiscal-regimen"), exports);
150
+ __exportStar(require("./types/bridge-customer"), exports);
151
+ __exportStar(require("./types/bridge-customer-input"), exports);
150
152
  __exportStar(require("./classes/Asset"), exports);
151
153
  __exportStar(require("./classes/CountryAsset"), exports);
152
154
  __exportStar(require("./classes/CryptoAsset"), exports);
@@ -0,0 +1,18 @@
1
+ export interface BridgeCustomerInput {
2
+ type: "individual" | "business";
3
+ first_name: string;
4
+ last_name: string;
5
+ email: string;
6
+ phone: string;
7
+ address: {
8
+ street_line_1: string;
9
+ street_line_2: string;
10
+ city: string;
11
+ state: string;
12
+ postal_code: string;
13
+ country: string;
14
+ };
15
+ signed_agreement_id: string;
16
+ dob: string;
17
+ ssn: string;
18
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,10 @@
1
+ export interface BridgeCustomer {
2
+ id: string;
3
+ type: "individual" | "business";
4
+ first_name: string;
5
+ last_name: string;
6
+ email: string;
7
+ phone: string;
8
+ requirements_due?: string[];
9
+ future_requirements_due?: string[];
10
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.737",
3
+ "version": "1.0.739",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",