@todesktop/shared 7.35.0 → 7.36.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.
@@ -111,6 +111,9 @@ export interface IAppMeta {
111
111
  appPath?: FilePath;
112
112
  appProtocolScheme?: string;
113
113
  copyright?: string;
114
+ dmg?: {
115
+ background?: FilePath;
116
+ };
114
117
  extraContentFiles?: ExtraFileReference[];
115
118
  electronMirror?: string;
116
119
  extraResources?: ExtraFileReference[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.35.0",
3
+ "version": "7.36.0",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/toDesktop.ts CHANGED
@@ -134,6 +134,9 @@ export interface IAppMeta {
134
134
  appPath?: FilePath;
135
135
  appProtocolScheme?: string;
136
136
  copyright?: string;
137
+ dmg?: {
138
+ background?: FilePath;
139
+ };
137
140
  extraContentFiles?: ExtraFileReference[];
138
141
  electronMirror?: string;
139
142
  extraResources?: ExtraFileReference[];