@riocrypto/common-server 1.0.2341 → 1.0.2342

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.
@@ -115,6 +115,11 @@ interface RioSettingsDoc extends mongoose.Document {
115
115
  [Side.Sell]: Processor[];
116
116
  bankAccountVerifications: Processor[];
117
117
  };
118
+ TVFXDataProvider: {
119
+ [key in Fiat]: {
120
+ [key in Side]?: TVFXDataProvider;
121
+ };
122
+ };
118
123
  }
119
124
  interface RioSettingsModel extends mongoose.Model<RioSettingsDoc> {
120
125
  build(attrs: RioSettingsAttrs): RioSettingsDoc;
@@ -63,6 +63,9 @@ const buildRioSettings = (mongoose) => {
63
63
  activeFiatPaymentProcessors: {
64
64
  type: Object,
65
65
  },
66
+ TVFXDataProvider: {
67
+ type: Object,
68
+ },
66
69
  }, {
67
70
  toJSON: {
68
71
  transform(doc, ret) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common-server",
3
- "version": "1.0.2341",
3
+ "version": "1.0.2342",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",