@todesktop/shared 7.69.0 → 7.72.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/desktopify2.d.ts +1 -0
- package/lib/toDesktop.d.ts +3 -0
- package/package.json +1 -1
- package/src/desktopify2.ts +1 -0
- package/src/toDesktop.ts +3 -1
package/lib/desktopify2.d.ts
CHANGED
package/lib/toDesktop.d.ts
CHANGED
|
@@ -233,6 +233,7 @@ export interface IApp extends BaseApp {
|
|
|
233
233
|
appPkgName?: string;
|
|
234
234
|
appProtocol?: ISwitchableValue<string>;
|
|
235
235
|
appType?: string;
|
|
236
|
+
appxConfig?: Partial<IAppBuilderLib["config"]["appx"]>;
|
|
236
237
|
cssToInject?: string;
|
|
237
238
|
customMacCodeSign?: CustomMacCodeSign;
|
|
238
239
|
customDomain?: string;
|
|
@@ -271,6 +272,7 @@ export interface IApp extends BaseApp {
|
|
|
271
272
|
runtimeEnvs?: string;
|
|
272
273
|
secret?: string;
|
|
273
274
|
shouldCreate32BitWindowsArtifacts?: boolean;
|
|
275
|
+
shouldCreateArm64WindowsArtifacts?: boolean;
|
|
274
276
|
shouldCreateAppXFiles?: boolean;
|
|
275
277
|
shouldCreateAppImages?: boolean;
|
|
276
278
|
shouldCreateDebianPackages?: boolean;
|
|
@@ -287,6 +289,7 @@ export interface IApp extends BaseApp {
|
|
|
287
289
|
shouldReuseRendererProcess?: boolean;
|
|
288
290
|
snapStore?: {
|
|
289
291
|
login?: string;
|
|
292
|
+
description?: string;
|
|
290
293
|
};
|
|
291
294
|
themeSource?: "system" | "light" | "dark";
|
|
292
295
|
themeSourceMac?: "system" | "light" | "dark";
|
package/package.json
CHANGED
package/src/desktopify2.ts
CHANGED
package/src/toDesktop.ts
CHANGED
|
@@ -266,6 +266,7 @@ export interface IApp extends BaseApp {
|
|
|
266
266
|
appPkgName?: string;
|
|
267
267
|
appProtocol?: ISwitchableValue<string>;
|
|
268
268
|
appType?: string;
|
|
269
|
+
appxConfig?: Partial<IAppBuilderLib["config"]["appx"]>;
|
|
269
270
|
cssToInject?: string;
|
|
270
271
|
customMacCodeSign?: CustomMacCodeSign;
|
|
271
272
|
customDomain?: string;
|
|
@@ -302,6 +303,7 @@ export interface IApp extends BaseApp {
|
|
|
302
303
|
runtimeEnvs?: string;
|
|
303
304
|
secret?: string; // support old schema versions
|
|
304
305
|
shouldCreate32BitWindowsArtifacts?: boolean;
|
|
306
|
+
shouldCreateArm64WindowsArtifacts?: boolean;
|
|
305
307
|
shouldCreateAppXFiles?: boolean;
|
|
306
308
|
shouldCreateAppImages?: boolean;
|
|
307
309
|
shouldCreateDebianPackages?: boolean;
|
|
@@ -316,7 +318,7 @@ export interface IApp extends BaseApp {
|
|
|
316
318
|
shouldLaunchAtStartupByDefault?: boolean;
|
|
317
319
|
shouldOnlySendAbsolutelyNecessaryRequests?: boolean;
|
|
318
320
|
shouldReuseRendererProcess?: boolean;
|
|
319
|
-
snapStore?: { login?: string };
|
|
321
|
+
snapStore?: { login?: string; description?: string };
|
|
320
322
|
themeSource?: "system" | "light" | "dark";
|
|
321
323
|
themeSourceMac?: "system" | "light" | "dark";
|
|
322
324
|
toggleVisibilityKeyboardShortcut?: ISwitchableValue<string>;
|