@riocrypto/common 1.0.302 → 1.0.303

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,6 +3,5 @@ export interface AdminDeletedEvent {
3
3
  subject: Subjects.AdminDeleted;
4
4
  data: {
5
5
  id: string;
6
- version: number;
7
6
  };
8
7
  }
@@ -7,6 +7,5 @@ export interface CheckedAddressCreatedEvent {
7
7
  address: string;
8
8
  result: AddressCheckResult;
9
9
  lastChecked: Date;
10
- version: number;
11
10
  };
12
11
  }
@@ -6,6 +6,5 @@ export interface CheckedAddressUpdatedEvent {
6
6
  id: string;
7
7
  result: AddressCheckResult;
8
8
  lastChecked: Date;
9
- version: number;
10
9
  };
11
10
  }
@@ -4,6 +4,5 @@ export interface ClipCardPaymentCreatedEvent {
4
4
  data: {
5
5
  id: string;
6
6
  orderId: string;
7
- version: number;
8
7
  };
9
8
  }
@@ -5,6 +5,5 @@ export interface DlocalBankPaymentCreatedEvent {
5
5
  id: string;
6
6
  orderId: string;
7
7
  fee: number;
8
- version: number;
9
8
  };
10
9
  }
@@ -34,6 +34,5 @@ export interface OrderCreatedEvent {
34
34
  processor?: Processor;
35
35
  fees?: Fees;
36
36
  partnerId?: string;
37
- version: number;
38
37
  };
39
38
  }
@@ -3,6 +3,5 @@ export interface OrderDeletedEvent {
3
3
  subject: Subjects.OrderDeleted;
4
4
  data: {
5
5
  id: string;
6
- version: number;
7
6
  };
8
7
  }
@@ -32,6 +32,5 @@ export interface OrderUpdatedEvent {
32
32
  depositAddress?: string;
33
33
  depositTxId?: string;
34
34
  withdrawalTxId?: string;
35
- version: number;
36
35
  };
37
36
  }
@@ -15,6 +15,5 @@ export interface PartnerUpdatedEvent {
15
15
  value: string;
16
16
  label: string;
17
17
  }[];
18
- version: number;
19
18
  };
20
19
  }
@@ -3,7 +3,6 @@ export interface RioSettingsUpdatedEvent {
3
3
  subject: Subjects.RioSettingsUpdated;
4
4
  data: {
5
5
  id: string;
6
- version: number;
7
6
  platformFee?: number;
8
7
  };
9
8
  }
@@ -21,6 +21,5 @@ export interface UserCreatedEvent {
21
21
  language?: string;
22
22
  partnerId?: string;
23
23
  attributes?: UserAttribute[];
24
- version: number;
25
24
  };
26
25
  }
@@ -3,6 +3,5 @@ export interface UserDeletedEvent {
3
3
  subject: Subjects.UserDeleted;
4
4
  data: {
5
5
  id: string;
6
- version: number;
7
6
  };
8
7
  }
@@ -19,6 +19,5 @@ export interface UserUpdatedEvent {
19
19
  kycStatus?: string;
20
20
  partnerId?: string;
21
21
  attributes?: UserAttribute[];
22
- version: number;
23
22
  };
24
23
  }
@@ -2,7 +2,6 @@ import { Subjects } from "./subjects";
2
2
  export interface WyreACHPaymentCreatedEvent {
3
3
  subject: Subjects.WyreACHPaymentCreated;
4
4
  data: {
5
- version: number;
6
5
  id: string;
7
6
  orderId: string;
8
7
  plaidToken: string;
@@ -3,7 +3,6 @@ import { Subjects } from "./subjects";
3
3
  export interface WyrePaymentMethodCreatedEvent {
4
4
  subject: Subjects.WyrePaymentMethodCreated;
5
5
  data: {
6
- version: number;
7
6
  id: string;
8
7
  userId: string;
9
8
  paymentMethod: PaymentMethod;
@@ -4,5 +4,4 @@ export interface BankPayout {
4
4
  accountNumber: string;
5
5
  status: string;
6
6
  destinationBank?: string;
7
- version: number;
8
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.302",
3
+ "version": "1.0.303",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",