fixing inconsistent case

This commit is contained in:
AtHeartEngineer
2023-11-05 10:33:07 +03:00
parent 8c239996a7
commit 92d1e42900
3 changed files with 8 additions and 5 deletions

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "discreetly-interfaces",
"version": "0.1.41",
"version": "0.1.42",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "discreetly-interfaces",
"version": "0.1.41",
"version": "0.1.42",
"license": "MIT",
"dependencies": {
"@ethersproject/bytes": "^5.7.0",

View File

@@ -1,8 +1,11 @@
{
"name": "discreetly-interfaces",
"version": "0.1.41",
"version": "0.1.42",
"description": "Common interfaces and utilities for discreetly",
"author": "AtHeartEngineer",
"authors": [
"AtHeartEngineer",
"CodeTrauma"
],
"homepage": "https://github.com/Discreetly",
"license": "MIT",
"scripts": {

View File

@@ -20,7 +20,7 @@ export interface MessageI {
timeStamp?: string | Date | number; // unix epoch time in ms as string
encrypted?: EncryptedType; // the message is encrypted or not
responseTo?: string; // internal nullifier of the message this is a response to, this could be a reply to a message, a poll response, or a request for a DM
sessionID?: string; // session ID for the message
sessionId?: string; // session ID for the message
}
export interface SystemMessageI {