@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.
- package/build/models/user.d.ts +2 -0
- package/build/models/user.js +3 -0
- package/package.json +1 -1
package/build/models/user.d.ts
CHANGED
|
@@ -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;
|
package/build/models/user.js
CHANGED