@todesktop/shared 7.188.74 → 7.188.76
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/toDesktop.d.ts +4 -1
- package/package.json +1 -1
- package/src/toDesktop.ts +4 -1
package/lib/toDesktop.d.ts
CHANGED
|
@@ -150,7 +150,10 @@ export interface FeatureFlags {
|
|
|
150
150
|
}
|
|
151
151
|
export interface UserIHaveSentInviteTo {
|
|
152
152
|
email: string;
|
|
153
|
-
permissions
|
|
153
|
+
permissions?: {
|
|
154
|
+
canBuild: boolean;
|
|
155
|
+
canRelease: boolean;
|
|
156
|
+
};
|
|
154
157
|
name: string;
|
|
155
158
|
sender: UserIHaveAcceptedInviteFrom;
|
|
156
159
|
}
|
package/package.json
CHANGED
package/src/toDesktop.ts
CHANGED
|
@@ -171,7 +171,10 @@ export interface FeatureFlags {
|
|
|
171
171
|
// uses an `email` identifier because an invited user may not have an account
|
|
172
172
|
export interface UserIHaveSentInviteTo {
|
|
173
173
|
email: string;
|
|
174
|
-
permissions
|
|
174
|
+
permissions?: {
|
|
175
|
+
canBuild: boolean;
|
|
176
|
+
canRelease: boolean;
|
|
177
|
+
};
|
|
175
178
|
name: string;
|
|
176
179
|
// this allows us to encode information about the sender without loosening firebase privileges
|
|
177
180
|
sender: UserIHaveAcceptedInviteFrom;
|