@todesktop/shared 7.189.2 → 7.189.3

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.
@@ -166,6 +166,7 @@ export interface UserIHaveAcceptedInviteFrom {
166
166
  email: string;
167
167
  firstName: string;
168
168
  lastName: string;
169
+ receiver?: Pick<IUser, 'id' | 'email'>;
169
170
  }
170
171
  export interface CiInput {
171
172
  appData: IApp;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.189.2",
3
+ "version": "7.189.3",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/toDesktop.ts CHANGED
@@ -192,6 +192,9 @@ export interface UserIHaveAcceptedInviteFrom {
192
192
  email: string;
193
193
  firstName: string;
194
194
  lastName: string;
195
+
196
+ // duplicated user details about the person who accepted the invite
197
+ receiver?: Pick<IUser, 'id' | 'email'>;
195
198
  }
196
199
 
197
200
  export interface CiInput {