@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 +2 -0
- package/lib/toDesktop.d.ts +4 -0
- package/package.json +1 -1
- package/src/base.ts +2 -0
- package/src/toDesktop.ts +4 -0
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?: {
|
package/lib/toDesktop.d.ts
CHANGED
package/package.json
CHANGED
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?: {
|