@riocrypto/common-server 1.0.2230 → 1.0.2231

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.
@@ -47,6 +47,7 @@ interface RioSettingsAttrs {
47
47
  };
48
48
  };
49
49
  fxExecutionThreshold: number;
50
+ STPCLABEOffset: number;
50
51
  }
51
52
  interface RioSettingsDoc extends mongoose.Document {
52
53
  platformFee: number;
@@ -95,6 +96,7 @@ interface RioSettingsDoc extends mongoose.Document {
95
96
  };
96
97
  };
97
98
  fxExecutionThreshold: number;
99
+ STPCLABEOffset: number;
98
100
  }
99
101
  interface RioSettingsModel extends mongoose.Model<RioSettingsDoc> {
100
102
  build(attrs: RioSettingsAttrs): RioSettingsDoc;
@@ -56,6 +56,9 @@ const buildRioSettings = (mongoose) => {
56
56
  fxExecutionThreshold: {
57
57
  type: Number,
58
58
  },
59
+ STPCLABEOffset: {
60
+ type: Number,
61
+ },
59
62
  }, {
60
63
  toJSON: {
61
64
  transform(doc, ret) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common-server",
3
- "version": "1.0.2230",
3
+ "version": "1.0.2231",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",