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