@riocrypto/common 1.0.2408 → 1.0.2409

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
@@ -440,7 +440,7 @@ export * from "./types/inbound-crypto-deposit";
440
440
  export * from "./types/inbound-crypto-deposit-destination-type";
441
441
  export * from "./types/STP-mxn-withdrawal-status";
442
442
  export * from "./types/bitso-mxn-withdrawal-status";
443
- export * from "./types/fireblocks-withdrawal-status";
443
+ export * from "./types/fireblocks-transfer-status";
444
444
  export * from "./classes/KYCFieldClass";
445
445
  export * from "./classes/KYCFileClass";
446
446
  export * from "./classes/CountryAsset";
package/build/index.js CHANGED
@@ -456,7 +456,7 @@ __exportStar(require("./types/inbound-crypto-deposit"), exports);
456
456
  __exportStar(require("./types/inbound-crypto-deposit-destination-type"), exports);
457
457
  __exportStar(require("./types/STP-mxn-withdrawal-status"), exports);
458
458
  __exportStar(require("./types/bitso-mxn-withdrawal-status"), exports);
459
- __exportStar(require("./types/fireblocks-withdrawal-status"), exports);
459
+ __exportStar(require("./types/fireblocks-transfer-status"), exports);
460
460
  __exportStar(require("./classes/KYCFieldClass"), exports);
461
461
  __exportStar(require("./classes/KYCFileClass"), exports);
462
462
  __exportStar(require("./classes/CountryAsset"), exports);
@@ -1,4 +1,4 @@
1
- export declare enum FireblocksWithdrawalStatus {
1
+ export declare enum FireblocksTransferStatus {
2
2
  PendingApproval = "pendingApproval",
3
3
  Initiated = "initiated",
4
4
  Completed = "completed",
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.FireblocksTransferStatus = void 0;
4
+ var FireblocksTransferStatus;
5
+ (function (FireblocksTransferStatus) {
6
+ FireblocksTransferStatus["PendingApproval"] = "pendingApproval";
7
+ FireblocksTransferStatus["Initiated"] = "initiated";
8
+ FireblocksTransferStatus["Completed"] = "completed";
9
+ FireblocksTransferStatus["Failed"] = "failed";
10
+ })(FireblocksTransferStatus = exports.FireblocksTransferStatus || (exports.FireblocksTransferStatus = {}));
@@ -1,4 +1,4 @@
1
- import { FireblocksWithdrawalStatus } from "./fireblocks-withdrawal-status";
1
+ import { FireblocksTransferStatus } from "./fireblocks-transfer-status";
2
2
  export interface FireblocksTransfer {
3
3
  id: string;
4
4
  userId: string;
@@ -13,7 +13,7 @@ export interface FireblocksTransfer {
13
13
  fireblocksTransferId?: string;
14
14
  amount: number;
15
15
  partNumber?: number;
16
- status: FireblocksWithdrawalStatus;
16
+ status: FireblocksTransferStatus;
17
17
  retryCount: number;
18
18
  }[];
19
19
  netAmountTransfered?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.2408",
3
+ "version": "1.0.2409",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",
@@ -1,10 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.FireblocksWithdrawalStatus = void 0;
4
- var FireblocksWithdrawalStatus;
5
- (function (FireblocksWithdrawalStatus) {
6
- FireblocksWithdrawalStatus["PendingApproval"] = "pendingApproval";
7
- FireblocksWithdrawalStatus["Initiated"] = "initiated";
8
- FireblocksWithdrawalStatus["Completed"] = "completed";
9
- FireblocksWithdrawalStatus["Failed"] = "failed";
10
- })(FireblocksWithdrawalStatus = exports.FireblocksWithdrawalStatus || (exports.FireblocksWithdrawalStatus = {}));