@riocrypto/common 1.0.2631 → 1.0.2633

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
@@ -467,7 +467,7 @@ export * from "./types/inbound-bank-deposit";
467
467
  export * from "./types/inbound-crypto-deposit";
468
468
  export * from "./types/inbound-crypto-deposit-destination-type";
469
469
  export * from "./types/STP-mxn-withdrawal-status";
470
- export * from "./types/alfin-pen-withdrawal-status";
470
+ export * from "./types/alfin-withdrawal-status";
471
471
  export * from "./types/bitso-mxn-withdrawal-status";
472
472
  export * from "./types/fireblocks-transfer-status";
473
473
  export * from "./types/mexico-invoicing-method";
package/build/index.js CHANGED
@@ -483,7 +483,7 @@ __exportStar(require("./types/inbound-bank-deposit"), exports);
483
483
  __exportStar(require("./types/inbound-crypto-deposit"), exports);
484
484
  __exportStar(require("./types/inbound-crypto-deposit-destination-type"), exports);
485
485
  __exportStar(require("./types/STP-mxn-withdrawal-status"), exports);
486
- __exportStar(require("./types/alfin-pen-withdrawal-status"), exports);
486
+ __exportStar(require("./types/alfin-withdrawal-status"), exports);
487
487
  __exportStar(require("./types/bitso-mxn-withdrawal-status"), exports);
488
488
  __exportStar(require("./types/fireblocks-transfer-status"), exports);
489
489
  __exportStar(require("./types/mexico-invoicing-method"), exports);
@@ -1,4 +1,4 @@
1
- export declare enum AlfinPENWithdrawalStatus {
1
+ export declare enum AlfinWithdrawalStatus {
2
2
  PendingApproval = "pendingApproval",
3
3
  Processing = "processing",
4
4
  Complete = "complete",
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AlfinWithdrawalStatus = void 0;
4
+ var AlfinWithdrawalStatus;
5
+ (function (AlfinWithdrawalStatus) {
6
+ AlfinWithdrawalStatus["PendingApproval"] = "pendingApproval";
7
+ AlfinWithdrawalStatus["Processing"] = "processing";
8
+ AlfinWithdrawalStatus["Complete"] = "complete";
9
+ AlfinWithdrawalStatus["Failed"] = "failed";
10
+ AlfinWithdrawalStatus["Cancelled"] = "cancelled";
11
+ })(AlfinWithdrawalStatus = exports.AlfinWithdrawalStatus || (exports.AlfinWithdrawalStatus = {}));
@@ -43,5 +43,7 @@ export declare enum UserAttribute {
43
43
  SellOrderMaintenanceModeActive = "sellOrderMaintenanceModeActive",
44
44
  CanPlaceLongDatedForwards = "canPlaceLongDatedForwards",
45
45
  UseAlfinForPENDeposits = "useAlfinForPENDeposits",
46
- UseAlfinForPENWithdrawals = "useAlfinForPENWithdrawals"
46
+ UseAlfinForPENWithdrawals = "useAlfinForPENWithdrawals",
47
+ UseAlfinForUSDDeposits = "useAlfinForUSDDeposits",
48
+ UseAlfinForUSDWithdrawals = "useAlfinForUSDWithdrawals"
47
49
  }
@@ -48,4 +48,6 @@ var UserAttribute;
48
48
  UserAttribute["CanPlaceLongDatedForwards"] = "canPlaceLongDatedForwards";
49
49
  UserAttribute["UseAlfinForPENDeposits"] = "useAlfinForPENDeposits";
50
50
  UserAttribute["UseAlfinForPENWithdrawals"] = "useAlfinForPENWithdrawals";
51
+ UserAttribute["UseAlfinForUSDDeposits"] = "useAlfinForUSDDeposits";
52
+ UserAttribute["UseAlfinForUSDWithdrawals"] = "useAlfinForUSDWithdrawals";
51
53
  })(UserAttribute = exports.UserAttribute || (exports.UserAttribute = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.2631",
3
+ "version": "1.0.2633",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",
@@ -1,11 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.AlfinPENWithdrawalStatus = void 0;
4
- var AlfinPENWithdrawalStatus;
5
- (function (AlfinPENWithdrawalStatus) {
6
- AlfinPENWithdrawalStatus["PendingApproval"] = "pendingApproval";
7
- AlfinPENWithdrawalStatus["Processing"] = "processing";
8
- AlfinPENWithdrawalStatus["Complete"] = "complete";
9
- AlfinPENWithdrawalStatus["Failed"] = "failed";
10
- AlfinPENWithdrawalStatus["Cancelled"] = "cancelled";
11
- })(AlfinPENWithdrawalStatus = exports.AlfinPENWithdrawalStatus || (exports.AlfinPENWithdrawalStatus = {}));