@riocrypto/common 1.0.257 → 1.0.259

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.
@@ -3,6 +3,6 @@ export interface RioSettingsCreatedEvent {
3
3
  subject: Subjects.RioSettingsCreated;
4
4
  data: {
5
5
  id: string;
6
- platformFeeFloat: number;
6
+ platformFee: number;
7
7
  };
8
8
  }
@@ -4,6 +4,6 @@ export interface RioSettingsUpdatedEvent {
4
4
  data: {
5
5
  id: string;
6
6
  version: number;
7
- platformFeeFloat?: number;
7
+ platformFee?: number;
8
8
  };
9
9
  }
package/build/index.d.ts CHANGED
@@ -87,3 +87,4 @@ export * from "./types/ccxt-liquidity-provider";
87
87
  export * from "./types/security-question";
88
88
  export * from "./types/rio-settings";
89
89
  export * from "./types/rio-settings-update";
90
+ export * from "./types/rio-env";
package/build/index.js CHANGED
@@ -103,3 +103,4 @@ __exportStar(require("./types/ccxt-liquidity-provider"), exports);
103
103
  __exportStar(require("./types/security-question"), exports);
104
104
  __exportStar(require("./types/rio-settings"), exports);
105
105
  __exportStar(require("./types/rio-settings-update"), exports);
106
+ __exportStar(require("./types/rio-env"), exports);
@@ -0,0 +1,6 @@
1
+ export declare enum RioEnv {
2
+ Development = "development",
3
+ Sandbox = "sandbox",
4
+ Staging = "staging",
5
+ Production = "production"
6
+ }
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.RioEnv = void 0;
4
+ var RioEnv;
5
+ (function (RioEnv) {
6
+ RioEnv["Development"] = "development";
7
+ RioEnv["Sandbox"] = "sandbox";
8
+ RioEnv["Staging"] = "staging";
9
+ RioEnv["Production"] = "production";
10
+ })(RioEnv = exports.RioEnv || (exports.RioEnv = {}));
@@ -1,4 +1,4 @@
1
1
  export interface RioSettingsUpdate {
2
2
  id: string;
3
- platformFeeFloat?: number;
3
+ platformFee?: number;
4
4
  }
@@ -1,4 +1,4 @@
1
1
  export interface RioSettings {
2
2
  id: string;
3
- platformFeeFloat: number;
3
+ platformFee: number;
4
4
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.257",
3
+ "version": "1.0.259",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",