@riocrypto/common 1.0.255 → 1.0.257

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
@@ -85,3 +85,5 @@ export * from "./types/clip-card-payment";
85
85
  export * from "./types/clip-payment-status";
86
86
  export * from "./types/ccxt-liquidity-provider";
87
87
  export * from "./types/security-question";
88
+ export * from "./types/rio-settings";
89
+ export * from "./types/rio-settings-update";
package/build/index.js CHANGED
@@ -101,3 +101,5 @@ __exportStar(require("./types/clip-card-payment"), exports);
101
101
  __exportStar(require("./types/clip-payment-status"), exports);
102
102
  __exportStar(require("./types/ccxt-liquidity-provider"), exports);
103
103
  __exportStar(require("./types/security-question"), exports);
104
+ __exportStar(require("./types/rio-settings"), exports);
105
+ __exportStar(require("./types/rio-settings-update"), exports);
@@ -0,0 +1,4 @@
1
+ export interface RioSettingsUpdate {
2
+ id: string;
3
+ platformFeeFloat?: number;
4
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ export interface RioSettings {
2
+ id: string;
3
+ platformFeeFloat: number;
4
+ }
@@ -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.255",
3
+ "version": "1.0.257",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",