@todesktop/shared 7.188.57 → 7.188.58
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 +1 -0
- package/package.json +1 -1
- package/src/base.ts +2 -0
package/lib/base.d.ts
CHANGED
|
@@ -229,6 +229,7 @@ export interface BaseApp extends Schemable {
|
|
|
229
229
|
customNotarization?: CustomMacNotarization;
|
|
230
230
|
customWindowsCodeSign?: CustomWindowsCodeSignFile | CustomWindowsCodeSignEV;
|
|
231
231
|
meta?: IAppMeta;
|
|
232
|
+
parentApp?: BaseApp;
|
|
232
233
|
parent?: {
|
|
233
234
|
id: string;
|
|
234
235
|
relationshipToParent: string;
|
package/package.json
CHANGED
package/src/base.ts
CHANGED
|
@@ -262,6 +262,8 @@ export interface BaseApp extends Schemable {
|
|
|
262
262
|
customWindowsCodeSign?: CustomWindowsCodeSignFile | CustomWindowsCodeSignEV;
|
|
263
263
|
|
|
264
264
|
meta?: IAppMeta;
|
|
265
|
+
// this property is dynamically resolved at queueBuild in cloud functions
|
|
266
|
+
parentApp?: BaseApp;
|
|
265
267
|
parent?: {
|
|
266
268
|
id: string;
|
|
267
269
|
relationshipToParent: string;
|