@todesktop/shared 7.188.67 → 7.188.69

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/base.d.ts CHANGED
@@ -83,6 +83,7 @@ export interface IAppMeta {
83
83
  electron?: string;
84
84
  version?: string;
85
85
  };
86
+ previousInstallLockSha?: string;
86
87
  releaseRedirections?: ReleaseRedirectionRule[];
87
88
  windowsEVOnboarding?: {
88
89
  provider: WindowsEVOnboardingProvider;
@@ -157,6 +158,7 @@ export interface ToDesktopJson {
157
158
  schemaVersion: number;
158
159
  snap?: IAppBuilderLib['config']['snap'];
159
160
  uploadSizeLimit?: number;
161
+ useCachedDependencies?: boolean;
160
162
  windows?: {
161
163
  icon?: FilePath;
162
164
  nsisCustomBinary?: {
@@ -165,4 +165,8 @@ export interface CiInput {
165
165
  buildId?: string;
166
166
  userId: string;
167
167
  contextUserId: string;
168
+ auth: {
169
+ email: string;
170
+ accessToken: string;
171
+ };
168
172
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.188.67",
3
+ "version": "7.188.69",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/base.ts CHANGED
@@ -96,6 +96,7 @@ export interface IAppMeta {
96
96
  electron?: string;
97
97
  version?: string;
98
98
  };
99
+ previousInstallLockSha?: string;
99
100
  releaseRedirections?: ReleaseRedirectionRule[];
100
101
  windowsEVOnboarding?: {
101
102
  provider: WindowsEVOnboardingProvider;
@@ -171,6 +172,7 @@ export interface ToDesktopJson {
171
172
  schemaVersion: number;
172
173
  snap?: IAppBuilderLib['config']['snap'];
173
174
  uploadSizeLimit?: number;
175
+ useCachedDependencies?: boolean;
174
176
  windows?: {
175
177
  icon?: FilePath;
176
178
  nsisCustomBinary?: {
package/src/toDesktop.ts CHANGED
@@ -189,4 +189,8 @@ export interface CiInput {
189
189
  buildId?: string;
190
190
  userId: string;
191
191
  contextUserId: string;
192
+ auth: {
193
+ email: string;
194
+ accessToken: string;
195
+ };
192
196
  }