@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.
@@ -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?: "auto" | "light" | "dark";
283
+ themeSource?: "system" | "light" | "dark";
282
284
  toggleVisibilityKeyboardShortcut?: ISwitchableValue<string>;
283
285
  trayIcon?: string;
284
286
  url: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.37.2",
3
+ "version": "7.39.0",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
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?: "auto" | "light" | "dark";
314
+ themeSource?: "system" | "light" | "dark";
313
315
  toggleVisibilityKeyboardShortcut?: ISwitchableValue<string>;
314
316
  trayIcon?: string;
315
317
  url: string;