@riocrypto/common 1.0.2259 → 1.0.2261

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.
@@ -1,4 +1,5 @@
1
1
  import { BulkCryptoPayoutStatus } from "./bulk-crypto-payout-status";
2
+ import { Country } from "./country";
2
3
  import { Crypto } from "./crypto";
3
4
  export interface BulkCryptoPayout {
4
5
  id: string;
@@ -7,6 +8,7 @@ export interface BulkCryptoPayout {
7
8
  orderIds: string[];
8
9
  amount: number;
9
10
  crypto: Crypto;
11
+ country: Country;
10
12
  payoutAddressId?: string;
11
13
  blockchainAddress?: string;
12
14
  status: BulkCryptoPayoutStatus;
@@ -9,4 +9,5 @@ export interface PlatformFeeRange {
9
9
  twoWaySettlementDateOffsetFee?: {
10
10
  [key: number]: number;
11
11
  };
12
+ TWAPFee?: number;
12
13
  }
@@ -110,5 +110,13 @@ export declare type User = {
110
110
  [side in Side]?: number;
111
111
  };
112
112
  };
113
+ TWAP?: {
114
+ [key in Fiat]?: {
115
+ [key in Side]?: {
116
+ minClipSize?: number;
117
+ interval?: number;
118
+ };
119
+ };
120
+ };
113
121
  } & (UserType.Individual extends UserType ? IndividualUser : {}) & (UserType.Business extends UserType ? BusinessUser : {});
114
122
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.2259",
3
+ "version": "1.0.2261",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",