@todesktop/shared 7.188.58 → 7.188.60

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 CHANGED
@@ -233,7 +233,7 @@ export interface BaseApp extends Schemable {
233
233
  parent?: {
234
234
  id: string;
235
235
  relationshipToParent: string;
236
- };
236
+ } | null;
237
237
  subscription?: {
238
238
  status: string;
239
239
  subscriptionId: string;
@@ -257,6 +257,7 @@ export interface BaseApp extends Schemable {
257
257
  shouldCreateNSISWebInstaller?: boolean;
258
258
  shouldCreateRPMPackages?: boolean;
259
259
  shouldCreateSnapFiles?: boolean;
260
+ shouldMacInstallerBePinnedToSpecificVersion?: boolean;
260
261
  appxConfig?: Partial<IAppBuilderLib['config']['appx']>;
261
262
  masConfig?: Partial<IAppBuilderLib['config']['mas']>;
262
263
  nsisConfig?: Partial<IAppBuilderLib['config']['nsis']>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.188.58",
3
+ "version": "7.188.60",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/base.ts CHANGED
@@ -264,10 +264,7 @@ export interface BaseApp extends Schemable {
264
264
  meta?: IAppMeta;
265
265
  // this property is dynamically resolved at queueBuild in cloud functions
266
266
  parentApp?: BaseApp;
267
- parent?: {
268
- id: string;
269
- relationshipToParent: string;
270
- };
267
+ parent?: { id: string; relationshipToParent: string } | null;
271
268
  subscription?: {
272
269
  status: string;
273
270
  subscriptionId: string;
@@ -293,6 +290,7 @@ export interface BaseApp extends Schemable {
293
290
  shouldCreateNSISWebInstaller?: boolean;
294
291
  shouldCreateRPMPackages?: boolean;
295
292
  shouldCreateSnapFiles?: boolean;
293
+ shouldMacInstallerBePinnedToSpecificVersion?: boolean;
296
294
 
297
295
  // artifact configs
298
296
  appxConfig?: Partial<IAppBuilderLib['config']['appx']>;