@todesktop/shared 7.189.2 → 7.189.4
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/desktopify.d.ts +1 -0
- package/lib/toDesktop.d.ts +1 -0
- package/package.json +1 -1
- package/src/desktopify.ts +1 -0
- package/src/toDesktop.ts +3 -0
package/lib/desktopify.d.ts
CHANGED
|
@@ -105,6 +105,7 @@ export interface Build {
|
|
|
105
105
|
commitMessage?: string;
|
|
106
106
|
createdAt: ISODate;
|
|
107
107
|
desktopifyVersion?: SemanticVersion;
|
|
108
|
+
didUseCachedDependencies?: boolean;
|
|
108
109
|
endedAt?: ISODate;
|
|
109
110
|
electronVersionSpecified?: SemanticVersion;
|
|
110
111
|
electronVersionUsed?: SemanticVersion;
|
package/lib/toDesktop.d.ts
CHANGED
package/package.json
CHANGED
package/src/desktopify.ts
CHANGED
|
@@ -146,6 +146,7 @@ export interface Build {
|
|
|
146
146
|
// createdByOsVersion: string;
|
|
147
147
|
// createdByUserId: string;
|
|
148
148
|
desktopifyVersion?: SemanticVersion;
|
|
149
|
+
didUseCachedDependencies?: boolean;
|
|
149
150
|
endedAt?: ISODate;
|
|
150
151
|
electronVersionSpecified?: SemanticVersion;
|
|
151
152
|
electronVersionUsed?: SemanticVersion;
|
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 {
|