@riocrypto/common 1.0.2241 → 1.0.2243

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.
@@ -3,7 +3,7 @@ export interface BankAccountCreatedEvent {
3
3
  subject: Subjects.BankAccountCreated;
4
4
  data: {
5
5
  id: string;
6
- authId: string;
6
+ authId?: string;
7
7
  userId: string;
8
8
  needsApproval: boolean;
9
9
  };
@@ -3,7 +3,7 @@ export interface CryptoAddressCreatedEvent {
3
3
  subject: Subjects.CryptoAddressCreated;
4
4
  data: {
5
5
  id: string;
6
- authId: string;
6
+ authId?: string;
7
7
  userId: string;
8
8
  };
9
9
  }
@@ -14,7 +14,7 @@ export interface OrderCreatedEvent {
14
14
  subject: Subjects.OrderCreated;
15
15
  data: {
16
16
  id: string;
17
- authId: string;
17
+ authId?: string;
18
18
  userId: string;
19
19
  crypto: Crypto;
20
20
  side: Side;
@@ -3,6 +3,6 @@ export interface QuoteCreatedEvent {
3
3
  subject: Subjects.QuoteCreated;
4
4
  data: {
5
5
  id: string;
6
- authId: string;
6
+ authId?: string;
7
7
  };
8
8
  }
@@ -137,7 +137,7 @@ export interface Order {
137
137
  };
138
138
  payoutTransferLimit?: number;
139
139
  paymentReceivedAt?: Date;
140
- rioPayoutFireblocksVaultId: string;
140
+ rioPayoutFireblocksVaultId?: string;
141
141
  previousActiveStatus?: OrderStatus;
142
142
  version: number;
143
143
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.2241",
3
+ "version": "1.0.2243",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",