@todesktop/shared 7.189.20 → 7.189.22

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/lib/index.d.ts CHANGED
@@ -6,6 +6,7 @@ export * from './plans';
6
6
  export * from './base';
7
7
  export * from './plugin';
8
8
  export * from './hsm';
9
+ export * from './invitePermissionLabels';
9
10
  export * from './desktopify2';
10
11
  declare const schemaVersion: string;
11
12
  export { schemaVersion };
package/lib/index.js CHANGED
@@ -24,6 +24,7 @@ __exportStar(require("./plans"), exports);
24
24
  __exportStar(require("./base"), exports);
25
25
  __exportStar(require("./plugin"), exports);
26
26
  __exportStar(require("./hsm"), exports);
27
+ __exportStar(require("./invitePermissionLabels"), exports);
27
28
  __exportStar(require("./desktopify2"), exports);
28
29
  const schemaVersion = package_json_1.version;
29
30
  exports.schemaVersion = schemaVersion;
@@ -178,6 +178,7 @@ export interface UserIHaveAcceptedInviteFrom {
178
178
  firstName: string;
179
179
  lastName: string;
180
180
  receiver?: Pick<IUser, 'id' | 'email'>;
181
+ permissions?: InvitePermissions;
181
182
  }
182
183
  export interface CiInput {
183
184
  appData: IApp;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.189.20",
3
+ "version": "7.189.22",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/index.ts CHANGED
@@ -8,6 +8,7 @@ export * from './plans';
8
8
  export * from './base';
9
9
  export * from './plugin';
10
10
  export * from './hsm';
11
+ export * from './invitePermissionLabels';
11
12
 
12
13
  export * from './desktopify2';
13
14
 
package/src/toDesktop.ts CHANGED
@@ -209,6 +209,7 @@ export interface UserIHaveAcceptedInviteFrom {
209
209
 
210
210
  // duplicated user details about the person who accepted the invite
211
211
  receiver?: Pick<IUser, 'id' | 'email'>;
212
+ permissions?: InvitePermissions;
212
213
  }
213
214
 
214
215
  export interface CiInput {