@riocrypto/common 1.0.2510 → 1.0.2512

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
@@ -475,6 +475,7 @@ export * from "./types/liquidity-sourcing-exclusion-type";
475
475
  export * from "./types/liquidity-sourcing-settings";
476
476
  export * from "./types/stablecoin-type";
477
477
  export * from "./types/static-bank-payment-reference";
478
+ export * from "./types/indicative-quote-page";
478
479
  export * from "./helpers/get-stablecoin-type";
479
480
  export * from "./helpers/is-usd-backed-crypto";
480
481
  export * from "./helpers/is-eur-backed-crypto";
package/build/index.js CHANGED
@@ -491,6 +491,7 @@ __exportStar(require("./types/liquidity-sourcing-exclusion-type"), exports);
491
491
  __exportStar(require("./types/liquidity-sourcing-settings"), exports);
492
492
  __exportStar(require("./types/stablecoin-type"), exports);
493
493
  __exportStar(require("./types/static-bank-payment-reference"), exports);
494
+ __exportStar(require("./types/indicative-quote-page"), exports);
494
495
  __exportStar(require("./helpers/get-stablecoin-type"), exports);
495
496
  __exportStar(require("./helpers/is-usd-backed-crypto"), exports);
496
497
  __exportStar(require("./helpers/is-eur-backed-crypto"), exports);
@@ -0,0 +1,26 @@
1
+ import { Country } from "./country";
2
+ import { Crypto } from "./crypto";
3
+ import { DeferredPaymentType } from "./deferred-payment-type";
4
+ import { Fiat } from "./fiat";
5
+ import { Side } from "./side";
6
+ import { TwoWaySettlementType } from "./two-way-settlement-type";
7
+ export interface IndicativeQuotePageQuoteConfig {
8
+ side: Side;
9
+ crypto: Crypto;
10
+ fiat: Fiat;
11
+ country: Country;
12
+ amountFiat?: number;
13
+ amountCrypto?: number;
14
+ deferredPaymentType?: DeferredPaymentType;
15
+ twoWaySettlementType?: TwoWaySettlementType;
16
+ twoWaySettlementDateOffset?: number;
17
+ }
18
+ export interface IndicativeQuotePage {
19
+ id: string;
20
+ userId: string;
21
+ quotes: IndicativeQuotePageQuoteConfig[];
22
+ allowedIPs: string[];
23
+ createdBy: string;
24
+ createdAt: Date;
25
+ updatedAt: Date;
26
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.2510",
3
+ "version": "1.0.2512",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",