@todesktop/shared 7.186.17 → 7.186.19
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 +5 -4
- package/lib/desktopify2.d.ts +4 -0
- package/package.json +1 -1
- package/src/base.ts +5 -4
- package/src/desktopify2.ts +4 -0
package/lib/base.d.ts
CHANGED
|
@@ -190,19 +190,20 @@ export interface BaseApp extends Schemable {
|
|
|
190
190
|
planId: string;
|
|
191
191
|
};
|
|
192
192
|
shouldCreate32BitWindowsArtifacts?: boolean;
|
|
193
|
-
shouldCreateArm64WindowsArtifacts?: boolean;
|
|
194
|
-
shouldCreateAppXFiles?: boolean;
|
|
195
193
|
shouldCreateAppImages?: boolean;
|
|
194
|
+
shouldCreateAppleSiliconAssets?: boolean;
|
|
195
|
+
shouldCreateAppXFiles?: boolean;
|
|
196
|
+
shouldCreateArm64LinuxArtifacts?: boolean;
|
|
197
|
+
shouldCreateArm64WindowsArtifacts?: boolean;
|
|
196
198
|
shouldCreateDebianPackages?: boolean;
|
|
197
199
|
shouldCreateDMGs?: boolean;
|
|
198
|
-
|
|
200
|
+
shouldCreateMacUniversalInstaller?: boolean;
|
|
199
201
|
shouldCreateMacZipInstallers?: boolean;
|
|
200
202
|
shouldCreateMSIInstallers?: boolean;
|
|
201
203
|
shouldCreateNSISInstallers?: boolean;
|
|
202
204
|
shouldCreateNSISWebInstaller?: boolean;
|
|
203
205
|
shouldCreateRPMPackages?: boolean;
|
|
204
206
|
shouldCreateSnapFiles?: boolean;
|
|
205
|
-
shouldCreateMacUniversalInstaller?: boolean;
|
|
206
207
|
appxConfig?: Partial<IAppBuilderLib['config']['appx']>;
|
|
207
208
|
nsisConfig?: Partial<IAppBuilderLib['config']['nsis']>;
|
|
208
209
|
snapStore?: {
|
package/lib/desktopify2.d.ts
CHANGED
|
@@ -125,6 +125,10 @@ export interface DesktopifyAppWindow {
|
|
|
125
125
|
* A *mutable* window object id
|
|
126
126
|
*/
|
|
127
127
|
objectId?: string;
|
|
128
|
+
/**
|
|
129
|
+
* The window's background type
|
|
130
|
+
*/
|
|
131
|
+
backgroundType?: 'normal' | 'vibrant' | 'transparent' | 'color';
|
|
128
132
|
/**
|
|
129
133
|
* The window name. Only visible to developer
|
|
130
134
|
*/
|
package/package.json
CHANGED
package/src/base.ts
CHANGED
|
@@ -212,19 +212,20 @@ export interface BaseApp extends Schemable {
|
|
|
212
212
|
|
|
213
213
|
// artifacts
|
|
214
214
|
shouldCreate32BitWindowsArtifacts?: boolean;
|
|
215
|
-
shouldCreateArm64WindowsArtifacts?: boolean;
|
|
216
|
-
shouldCreateAppXFiles?: boolean;
|
|
217
215
|
shouldCreateAppImages?: boolean;
|
|
216
|
+
shouldCreateAppleSiliconAssets?: boolean;
|
|
217
|
+
shouldCreateAppXFiles?: boolean;
|
|
218
|
+
shouldCreateArm64LinuxArtifacts?: boolean;
|
|
219
|
+
shouldCreateArm64WindowsArtifacts?: boolean;
|
|
218
220
|
shouldCreateDebianPackages?: boolean;
|
|
219
221
|
shouldCreateDMGs?: boolean;
|
|
220
|
-
|
|
222
|
+
shouldCreateMacUniversalInstaller?: boolean;
|
|
221
223
|
shouldCreateMacZipInstallers?: boolean;
|
|
222
224
|
shouldCreateMSIInstallers?: boolean;
|
|
223
225
|
shouldCreateNSISInstallers?: boolean;
|
|
224
226
|
shouldCreateNSISWebInstaller?: boolean;
|
|
225
227
|
shouldCreateRPMPackages?: boolean;
|
|
226
228
|
shouldCreateSnapFiles?: boolean;
|
|
227
|
-
shouldCreateMacUniversalInstaller?: boolean;
|
|
228
229
|
|
|
229
230
|
// artifact configs
|
|
230
231
|
appxConfig?: Partial<IAppBuilderLib['config']['appx']>;
|
package/src/desktopify2.ts
CHANGED
|
@@ -251,6 +251,10 @@ export interface DesktopifyAppWindow {
|
|
|
251
251
|
* A *mutable* window object id
|
|
252
252
|
*/
|
|
253
253
|
objectId?: string;
|
|
254
|
+
/**
|
|
255
|
+
* The window's background type
|
|
256
|
+
*/
|
|
257
|
+
backgroundType?: 'normal' | 'vibrant' | 'transparent' | 'color';
|
|
254
258
|
/**
|
|
255
259
|
* The window name. Only visible to developer
|
|
256
260
|
*/
|