@riocrypto/common 1.0.2409 → 1.0.2411

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.
@@ -5,5 +5,6 @@ export interface OrderStatusResetEvent {
5
5
  data: {
6
6
  id: string;
7
7
  status: OrderStatus;
8
+ needToClearPayouts: boolean;
8
9
  };
9
10
  }
@@ -2,5 +2,6 @@ export declare enum STPMXNWithdrawalStatus {
2
2
  PendingApproval = "pendingApproval",
3
3
  Processing = "processing",
4
4
  Complete = "complete",
5
- Failed = "failed"
5
+ Failed = "failed",
6
+ Cancelled = "cancelled"
6
7
  }
@@ -7,4 +7,5 @@ var STPMXNWithdrawalStatus;
7
7
  STPMXNWithdrawalStatus["Processing"] = "processing";
8
8
  STPMXNWithdrawalStatus["Complete"] = "complete";
9
9
  STPMXNWithdrawalStatus["Failed"] = "failed";
10
+ STPMXNWithdrawalStatus["Cancelled"] = "cancelled";
10
11
  })(STPMXNWithdrawalStatus = exports.STPMXNWithdrawalStatus || (exports.STPMXNWithdrawalStatus = {}));
@@ -8,6 +8,7 @@ export interface STPMXNWithdrawal {
8
8
  orderVersion?: number;
9
9
  bulkBankPayoutId?: string;
10
10
  STPWithdrawals: {
11
+ id: string;
11
12
  STPWithdrawalId?: number;
12
13
  partNumber: number;
13
14
  amount: number;
@@ -2,5 +2,6 @@ export declare enum BitsoMXNWithdrawalStatus {
2
2
  PendingApproval = "pendingApproval",
3
3
  Processing = "processing",
4
4
  Complete = "complete",
5
- Failed = "failed"
5
+ Failed = "failed",
6
+ Cancelled = "cancelled"
6
7
  }
@@ -7,4 +7,5 @@ var BitsoMXNWithdrawalStatus;
7
7
  BitsoMXNWithdrawalStatus["Processing"] = "processing";
8
8
  BitsoMXNWithdrawalStatus["Complete"] = "complete";
9
9
  BitsoMXNWithdrawalStatus["Failed"] = "failed";
10
+ BitsoMXNWithdrawalStatus["Cancelled"] = "cancelled";
10
11
  })(BitsoMXNWithdrawalStatus = exports.BitsoMXNWithdrawalStatus || (exports.BitsoMXNWithdrawalStatus = {}));
@@ -9,6 +9,7 @@ export interface BitsoMXNWithdrawal {
9
9
  orderVersion?: number;
10
10
  bulkBankPayoutId?: string;
11
11
  bitsoWithdrawals: {
12
+ id: string;
12
13
  bitsoWithdrawalId?: string;
13
14
  partNumber: number;
14
15
  status: BitsoMXNWithdrawalStatus;
@@ -2,5 +2,6 @@ export declare enum FireblocksTransferStatus {
2
2
  PendingApproval = "pendingApproval",
3
3
  Initiated = "initiated",
4
4
  Completed = "completed",
5
- Failed = "failed"
5
+ Failed = "failed",
6
+ Cancelled = "cancelled"
6
7
  }
@@ -7,4 +7,5 @@ var FireblocksTransferStatus;
7
7
  FireblocksTransferStatus["Initiated"] = "initiated";
8
8
  FireblocksTransferStatus["Completed"] = "completed";
9
9
  FireblocksTransferStatus["Failed"] = "failed";
10
+ FireblocksTransferStatus["Cancelled"] = "cancelled";
10
11
  })(FireblocksTransferStatus = exports.FireblocksTransferStatus || (exports.FireblocksTransferStatus = {}));
@@ -10,6 +10,7 @@ export interface FireblocksTransfer {
10
10
  numberOfParts?: number;
11
11
  partsCompleted?: number;
12
12
  fireblocksTransfers: {
13
+ id: string;
13
14
  fireblocksTransferId?: string;
14
15
  amount: number;
15
16
  partNumber?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.2409",
3
+ "version": "1.0.2411",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",