@todesktop/shared 7.189.18 → 7.189.19

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
@@ -47,6 +47,7 @@ export interface IAppBuildProgress {
47
47
  }
48
48
  export interface IAppMeta {
49
49
  appIterations?: number;
50
+ autoSecurityUpdatesEnabled?: boolean;
50
51
  ciRunner?: CIRunner;
51
52
  completedChecklistItems?: IChecklistItem;
52
53
  currentBuildProgress?: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.189.18",
3
+ "version": "7.189.19",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/base.ts CHANGED
@@ -60,6 +60,7 @@ export interface IAppBuildProgress {
60
60
 
61
61
  export interface IAppMeta {
62
62
  appIterations?: number;
63
+ autoSecurityUpdatesEnabled?: boolean; // Only applicable to ToDesktop Builder
63
64
  ciRunner?: CIRunner;
64
65
  completedChecklistItems?: IChecklistItem;
65
66
  currentBuildProgress?: {