@todesktop/shared 7.104.0 → 7.105.0

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
@@ -136,4 +136,18 @@ export interface BaseApp extends Schemable {
136
136
  itemId: string;
137
137
  planId: string;
138
138
  };
139
+ shouldCreate32BitWindowsArtifacts?: boolean;
140
+ shouldCreateArm64WindowsArtifacts?: boolean;
141
+ shouldCreateAppXFiles?: boolean;
142
+ shouldCreateAppImages?: boolean;
143
+ shouldCreateDebianPackages?: boolean;
144
+ shouldCreateDMGs?: boolean;
145
+ shouldCreateAppleSiliconAssets?: boolean;
146
+ shouldCreateMacZipInstallers?: boolean;
147
+ shouldCreateMSIInstallers?: boolean;
148
+ shouldCreateNSISInstallers?: boolean;
149
+ shouldCreateNSISWebInstaller?: boolean;
150
+ shouldCreateRPMPackages?: boolean;
151
+ shouldCreateSnapFiles?: boolean;
152
+ shouldCreateMacUniversalInstaller?: boolean;
139
153
  }
@@ -146,20 +146,6 @@ export interface IApp extends BaseApp {
146
146
  nsisConfig?: Partial<IAppBuilderLib["config"]["nsis"]>;
147
147
  runtimeEnvs?: string;
148
148
  secret?: string;
149
- shouldCreate32BitWindowsArtifacts?: boolean;
150
- shouldCreateArm64WindowsArtifacts?: boolean;
151
- shouldCreateAppXFiles?: boolean;
152
- shouldCreateAppImages?: boolean;
153
- shouldCreateDebianPackages?: boolean;
154
- shouldCreateDMGs?: boolean;
155
- shouldCreateAppleSiliconAssets?: boolean;
156
- shouldCreateMacZipInstallers?: boolean;
157
- shouldCreateMSIInstallers?: boolean;
158
- shouldCreateNSISInstallers?: boolean;
159
- shouldCreateNSISWebInstaller?: boolean;
160
- shouldCreateRPMPackages?: boolean;
161
- shouldCreateSnapFiles?: boolean;
162
- shouldCreateMacUniversalInstaller?: boolean;
163
149
  shouldLaunchAtStartupByDefault?: boolean;
164
150
  shouldOnlySendAbsolutelyNecessaryRequests?: boolean;
165
151
  shouldReuseRendererProcess?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.104.0",
3
+ "version": "7.105.0",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/base.ts CHANGED
@@ -144,4 +144,18 @@ export interface BaseApp extends Schemable {
144
144
  itemId: string;
145
145
  planId: string;
146
146
  };
147
+ shouldCreate32BitWindowsArtifacts?: boolean;
148
+ shouldCreateArm64WindowsArtifacts?: boolean;
149
+ shouldCreateAppXFiles?: boolean;
150
+ shouldCreateAppImages?: boolean;
151
+ shouldCreateDebianPackages?: boolean;
152
+ shouldCreateDMGs?: boolean;
153
+ shouldCreateAppleSiliconAssets?: boolean;
154
+ shouldCreateMacZipInstallers?: boolean;
155
+ shouldCreateMSIInstallers?: boolean;
156
+ shouldCreateNSISInstallers?: boolean;
157
+ shouldCreateNSISWebInstaller?: boolean;
158
+ shouldCreateRPMPackages?: boolean;
159
+ shouldCreateSnapFiles?: boolean;
160
+ shouldCreateMacUniversalInstaller?: boolean;
147
161
  }
package/src/toDesktop.ts CHANGED
@@ -166,20 +166,6 @@ export interface IApp extends BaseApp {
166
166
  nsisConfig?: Partial<IAppBuilderLib["config"]["nsis"]>;
167
167
  runtimeEnvs?: string;
168
168
  secret?: string; // support old schema versions
169
- shouldCreate32BitWindowsArtifacts?: boolean;
170
- shouldCreateArm64WindowsArtifacts?: boolean;
171
- shouldCreateAppXFiles?: boolean;
172
- shouldCreateAppImages?: boolean;
173
- shouldCreateDebianPackages?: boolean;
174
- shouldCreateDMGs?: boolean;
175
- shouldCreateAppleSiliconAssets?: boolean;
176
- shouldCreateMacZipInstallers?: boolean;
177
- shouldCreateMSIInstallers?: boolean;
178
- shouldCreateNSISInstallers?: boolean;
179
- shouldCreateNSISWebInstaller?: boolean;
180
- shouldCreateRPMPackages?: boolean;
181
- shouldCreateSnapFiles?: boolean;
182
- shouldCreateMacUniversalInstaller?: boolean;
183
169
  shouldLaunchAtStartupByDefault?: boolean;
184
170
  shouldOnlySendAbsolutelyNecessaryRequests?: boolean;
185
171
  shouldReuseRendererProcess?: boolean;