@todesktop/shared 7.188.62 → 7.188.64

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
@@ -1,4 +1,4 @@
1
- import { ExtraFileReference, FilePath, IAppBuilderLib, PlatformName, Release } from './desktopify';
1
+ import { CIRunner, ExtraFileReference, FilePath, IAppBuilderLib, PlatformName, Release } from './desktopify';
2
2
  export interface Schemable {
3
3
  schemaVersion?: number;
4
4
  }
@@ -46,6 +46,7 @@ export interface IAppBuildProgress {
46
46
  }
47
47
  export interface IAppMeta {
48
48
  appIterations?: number;
49
+ ciRunner?: CIRunner;
49
50
  completedChecklistItems?: IChecklistItem;
50
51
  currentBuildProgress?: {
51
52
  channel?: string;
@@ -134,6 +135,7 @@ export interface ToDesktopJson {
134
135
  category?: string;
135
136
  dmgBackground?: FilePath;
136
137
  entitlements?: FilePath;
138
+ entitlementsInherit?: FilePath;
137
139
  provisioningProfile?: FilePath;
138
140
  extendInfo?: IAppBuilderLib['config']['mac']['extendInfo'];
139
141
  icon?: FilePath;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.188.62",
3
+ "version": "7.188.64",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/base.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  import {
2
+ CIRunner,
2
3
  ExtraFileReference,
3
4
  FilePath,
4
5
  IAppBuilderLib,
@@ -58,6 +59,7 @@ export interface IAppBuildProgress {
58
59
 
59
60
  export interface IAppMeta {
60
61
  appIterations?: number;
62
+ ciRunner?: CIRunner;
61
63
  completedChecklistItems?: IChecklistItem;
62
64
  currentBuildProgress?: {
63
65
  channel?: string;
@@ -147,6 +149,7 @@ export interface ToDesktopJson {
147
149
  category?: string;
148
150
  dmgBackground?: FilePath;
149
151
  entitlements?: FilePath;
152
+ entitlementsInherit?: FilePath;
150
153
  provisioningProfile?: FilePath;
151
154
  extendInfo?: IAppBuilderLib['config']['mac']['extendInfo'];
152
155
  icon?: FilePath;