@riocrypto/common 1.0.2023 → 1.0.2025

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
@@ -358,7 +358,6 @@ export * from "./types/STP-deposit-CLABE";
358
358
  export * from "./types/STP-settings";
359
359
  export * from "./types/axe";
360
360
  export * from "./types/axe-status";
361
- export * from "./types/custom-payout-fireblocks-vault";
362
361
  export * from "./classes/KYCFieldClass";
363
362
  export * from "./classes/KYCFileClass";
364
363
  export * from "./classes/CountryAsset";
package/build/index.js CHANGED
@@ -374,7 +374,6 @@ __exportStar(require("./types/STP-deposit-CLABE"), exports);
374
374
  __exportStar(require("./types/STP-settings"), exports);
375
375
  __exportStar(require("./types/axe"), exports);
376
376
  __exportStar(require("./types/axe-status"), exports);
377
- __exportStar(require("./types/custom-payout-fireblocks-vault"), exports);
378
377
  __exportStar(require("./classes/KYCFieldClass"), exports);
379
378
  __exportStar(require("./classes/KYCFileClass"), exports);
380
379
  __exportStar(require("./classes/CountryAsset"), exports);
@@ -7,6 +7,7 @@ import { UserType } from "./user-type";
7
7
  import { ImmigrationStatus } from "./immigration-status";
8
8
  import { Country } from "./country";
9
9
  import { Fiat } from "./fiat";
10
+ import { Crypto } from "./crypto";
10
11
  import { Side } from "./side";
11
12
  declare type IndividualUser = {
12
13
  id: string;
@@ -123,6 +124,12 @@ export declare type User = {
123
124
  };
124
125
  };
125
126
  };
127
+ customPayoutFireblocksVault?: {
128
+ [crypto in Crypto]?: {
129
+ id: string;
130
+ overrideOvernightAndWeekendVault: boolean;
131
+ };
132
+ };
126
133
  accumulatedVolumeInUSD?: {
127
134
  [country in Country]?: {
128
135
  buy?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.2023",
3
+ "version": "1.0.2025",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",
@@ -1,5 +0,0 @@
1
- export interface CustomPayoutFireblocksVault {
2
- id: string;
3
- userId: string;
4
- overrideOvernightAndWeekendVault: boolean;
5
- }
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });