@riocrypto/common 1.0.1832 → 1.0.1834

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.
@@ -4,5 +4,8 @@ export interface AsyncBankPayoutCompletedEvent {
4
4
  data: {
5
5
  orderId: string;
6
6
  fee?: number;
7
+ SPEITrackingNumbers?: string[];
8
+ SPIDTrackingNumbers?: string[];
9
+ CEPLinks?: string[];
7
10
  };
8
11
  }
@@ -5,8 +5,8 @@ export interface AsyncCryptoPayoutCompletedEvent {
5
5
  data: {
6
6
  orderId: string;
7
7
  amountCrypto: number;
8
- fireblocksTransferId?: string;
9
- withdrawalTxId?: string;
8
+ fireblocksTransferIds?: string[];
9
+ blockchainTxIds?: string[];
10
10
  fees?: Fees;
11
11
  };
12
12
  }
@@ -4,5 +4,9 @@ export interface BankPayoutCompletedEvent {
4
4
  data: {
5
5
  orderId: string;
6
6
  fee?: number;
7
+ SPEITrackingNumbers?: string[];
8
+ SPIDTrackingNumbers?: string[];
9
+ CEPLinks?: string[];
10
+ references?: string[];
7
11
  };
8
12
  }
@@ -6,6 +6,10 @@ export interface BankPayout {
6
6
  originBank: Processor;
7
7
  status: "initialized" | "processing" | "complete" | "failed" | "cancelled";
8
8
  transferDetails?: {
9
+ SPEITrackingNumbers?: string[];
10
+ SPIDTrackingNumbers?: string[];
11
+ CEPLinks?: string[];
12
+ references?: string[];
9
13
  speiTrackingNumber?: string;
10
14
  spidTrackingNumber?: string;
11
15
  cepLink?: string;
@@ -106,6 +106,7 @@ export interface Order {
106
106
  SPEITrackingNumbers?: string[];
107
107
  SPIDTrackingNumbers?: string[];
108
108
  CEPLinks?: string[];
109
+ references?: string[];
109
110
  };
110
111
  payoutTransferLimit?: number;
111
112
  paymentReceivedAt?: Date;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.1832",
3
+ "version": "1.0.1834",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",