diff --git a/node/constants.js b/node/constants.js index 633076bda..30fb5a7b1 100644 --- a/node/constants.js +++ b/node/constants.js @@ -110,6 +110,7 @@ module.exports = { DC_MSG_IMAGE: 20, DC_MSG_STICKER: 23, DC_MSG_TEXT: 10, + DC_MSG_VCARD: 90, DC_MSG_VIDEO: 50, DC_MSG_VIDEOCHAT_INVITATION: 70, DC_MSG_VOICE: 41, @@ -173,6 +174,7 @@ module.exports = { DC_STR_CONFIGURATION_FAILED: 84, DC_STR_CONNECTED: 107, DC_STR_CONNTECTING: 108, + DC_STR_CONTACT: 200, DC_STR_CONTACT_NOT_VERIFIED: 36, DC_STR_CONTACT_SETUP_CHANGED: 37, DC_STR_CONTACT_VERIFIED: 35, diff --git a/node/lib/constants.ts b/node/lib/constants.ts index 4ba72ba31..e789d1722 100644 --- a/node/lib/constants.ts +++ b/node/lib/constants.ts @@ -110,6 +110,7 @@ export enum C { DC_MSG_IMAGE = 20, DC_MSG_STICKER = 23, DC_MSG_TEXT = 10, + DC_MSG_VCARD = 90, DC_MSG_VIDEO = 50, DC_MSG_VIDEOCHAT_INVITATION = 70, DC_MSG_VOICE = 41, @@ -173,6 +174,7 @@ export enum C { DC_STR_CONFIGURATION_FAILED = 84, DC_STR_CONNECTED = 107, DC_STR_CONNTECTING = 108, + DC_STR_CONTACT = 200, DC_STR_CONTACT_NOT_VERIFIED = 36, DC_STR_CONTACT_SETUP_CHANGED = 37, DC_STR_CONTACT_VERIFIED = 35,