@riocrypto/common-server 1.0.2299 → 1.0.2301

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.
@@ -125,6 +125,7 @@ interface UserAttrs {
125
125
  };
126
126
  attioRecordId?: string;
127
127
  slackChannelId?: string;
128
+ telegramChatId?: string;
128
129
  serviceFee?: {
129
130
  [country in Country]?: {
130
131
  [side in Side]?: number;
@@ -260,6 +261,7 @@ interface UserDoc extends Document {
260
261
  };
261
262
  };
262
263
  slackChannelId?: string;
264
+ telegramChatId?: string;
263
265
  serviceFee?: {
264
266
  [country in Country]?: {
265
267
  [side in Side]?: number;
@@ -54,6 +54,9 @@ const buildUser = (mongoose) => {
54
54
  slackChannelId: {
55
55
  type: String,
56
56
  },
57
+ telegramChatId: {
58
+ type: String,
59
+ },
57
60
  quotationTime: {
58
61
  type: Number,
59
62
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common-server",
3
- "version": "1.0.2299",
3
+ "version": "1.0.2301",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",