@todesktop/shared 7.189.4 → 7.189.6

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
@@ -130,6 +130,7 @@ export interface ToDesktopJson {
130
130
  linux?: {
131
131
  category?: string;
132
132
  icon?: FilePath;
133
+ imageVersion?: string;
133
134
  noSandbox?: boolean;
134
135
  };
135
136
  mac?: {
@@ -70,6 +70,7 @@ export interface PlatformBuild {
70
70
  codeSignSkipReason?: CodeSignSkipReason;
71
71
  desktopifyVersion?: SemanticVersion;
72
72
  didCodeSign: boolean;
73
+ didUseCachedDependencies?: boolean;
73
74
  downloadUrl?: URL;
74
75
  electronVersionUsed?: SemanticVersion;
75
76
  endedAt: ISODate;
@@ -105,7 +106,6 @@ export interface Build {
105
106
  commitMessage?: string;
106
107
  createdAt: ISODate;
107
108
  desktopifyVersion?: SemanticVersion;
108
- didUseCachedDependencies?: boolean;
109
109
  endedAt?: ISODate;
110
110
  electronVersionSpecified?: SemanticVersion;
111
111
  electronVersionUsed?: SemanticVersion;
@@ -149,6 +149,7 @@ export interface Build {
149
149
  todesktopRuntimeVersionUsed?: SemanticVersion;
150
150
  universalDownloadUrl?: URL;
151
151
  url?: URL;
152
+ useCachedDependencies?: boolean;
152
153
  versionControlInfo?: {
153
154
  branchName: string;
154
155
  commitDate: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.189.4",
3
+ "version": "7.189.6",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/base.ts CHANGED
@@ -144,6 +144,7 @@ export interface ToDesktopJson {
144
144
  linux?: {
145
145
  category?: string;
146
146
  icon?: FilePath;
147
+ imageVersion?: string;
147
148
  noSandbox?: boolean;
148
149
  };
149
150
  mac?: {
package/src/desktopify.ts CHANGED
@@ -106,6 +106,7 @@ export interface PlatformBuild {
106
106
  codeSignSkipReason?: CodeSignSkipReason;
107
107
  desktopifyVersion?: SemanticVersion;
108
108
  didCodeSign: boolean;
109
+ didUseCachedDependencies?: boolean;
109
110
  downloadUrl?: URL;
110
111
  electronVersionUsed?: SemanticVersion;
111
112
  endedAt: ISODate;
@@ -146,7 +147,6 @@ export interface Build {
146
147
  // createdByOsVersion: string;
147
148
  // createdByUserId: string;
148
149
  desktopifyVersion?: SemanticVersion;
149
- didUseCachedDependencies?: boolean;
150
150
  endedAt?: ISODate;
151
151
  electronVersionSpecified?: SemanticVersion;
152
152
  electronVersionUsed?: SemanticVersion;
@@ -194,6 +194,7 @@ export interface Build {
194
194
  // TODO: total progress percentage?
195
195
  universalDownloadUrl?: URL;
196
196
  url?: URL;
197
+ useCachedDependencies?: boolean;
197
198
  versionControlInfo?: {
198
199
  branchName: string;
199
200
  commitDate: string;