@todesktop/shared 7.37.2 → 7.39.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/toDesktop.d.ts +3 -1
- package/package.json +1 -1
- package/src/toDesktop.ts +3 -1
package/lib/toDesktop.d.ts
CHANGED
|
@@ -117,6 +117,8 @@ export interface IAppMeta {
|
|
|
117
117
|
extraContentFiles?: ExtraFileReference[];
|
|
118
118
|
electronMirror?: string;
|
|
119
119
|
extraResources?: ExtraFileReference[];
|
|
120
|
+
fileAssociations?: IAppBuilderLib["config"]["fileAssociations"];
|
|
121
|
+
filesForDistribution?: string[];
|
|
120
122
|
icon: FilePath;
|
|
121
123
|
id: string;
|
|
122
124
|
linux?: {
|
|
@@ -278,7 +280,7 @@ export interface IApp {
|
|
|
278
280
|
login?: string;
|
|
279
281
|
};
|
|
280
282
|
subscription?: IStripeSubscription;
|
|
281
|
-
themeSource?: "
|
|
283
|
+
themeSource?: "system" | "light" | "dark";
|
|
282
284
|
toggleVisibilityKeyboardShortcut?: ISwitchableValue<string>;
|
|
283
285
|
trayIcon?: string;
|
|
284
286
|
url: string;
|
package/package.json
CHANGED
package/src/toDesktop.ts
CHANGED
|
@@ -140,6 +140,8 @@ export interface IAppMeta {
|
|
|
140
140
|
extraContentFiles?: ExtraFileReference[];
|
|
141
141
|
electronMirror?: string;
|
|
142
142
|
extraResources?: ExtraFileReference[];
|
|
143
|
+
fileAssociations?: IAppBuilderLib["config"]["fileAssociations"];
|
|
144
|
+
filesForDistribution?: string[];
|
|
143
145
|
icon: FilePath;
|
|
144
146
|
id: string;
|
|
145
147
|
linux?: {
|
|
@@ -309,7 +311,7 @@ export interface IApp {
|
|
|
309
311
|
shouldReuseRendererProcess?: boolean;
|
|
310
312
|
snapStore?: { login?: string };
|
|
311
313
|
subscription?: IStripeSubscription;
|
|
312
|
-
themeSource?: "
|
|
314
|
+
themeSource?: "system" | "light" | "dark";
|
|
313
315
|
toggleVisibilityKeyboardShortcut?: ISwitchableValue<string>;
|
|
314
316
|
trayIcon?: string;
|
|
315
317
|
url: string;
|