@todesktop/shared 7.188.41 → 7.188.43

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.
@@ -105,6 +105,7 @@ export interface Build {
105
105
  hash?: string;
106
106
  icon?: string;
107
107
  id: string;
108
+ isArtifactsPruned?: boolean;
108
109
  isBeingCancelled?: boolean;
109
110
  linux?: PlatformBuild;
110
111
  mac?: PlatformBuild;
@@ -114,6 +115,7 @@ export interface Build {
114
115
  releasedAt?: ISODate;
115
116
  shouldCodeSign: boolean;
116
117
  shouldRelease: boolean;
118
+ shouldRetainForever?: boolean;
117
119
  smokeTest?: {
118
120
  buildServerExecutionId?: string;
119
121
  isCanceled?: boolean;
@@ -389,6 +389,10 @@ export interface DesktopifyApp2<Plugin = DesktopAppPlugin> {
389
389
  * Enables push notifications
390
390
  */
391
391
  enablePushNotifications?: boolean;
392
+ /**
393
+ * Disable error reporting (Sentry)
394
+ */
395
+ disableErrorTracking?: boolean;
392
396
  /**
393
397
  * Sets theme for Electron UI elements and css.
394
398
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.188.41",
3
+ "version": "7.188.43",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/desktopify.ts CHANGED
@@ -145,6 +145,7 @@ export interface Build {
145
145
  hash?: string;
146
146
  icon?: string;
147
147
  id: string;
148
+ isArtifactsPruned?: boolean;
148
149
  isBeingCancelled?: boolean;
149
150
  linux?: PlatformBuild;
150
151
  mac?: PlatformBuild;
@@ -154,6 +155,7 @@ export interface Build {
154
155
  releasedAt?: ISODate;
155
156
  shouldCodeSign: boolean;
156
157
  shouldRelease: boolean;
158
+ shouldRetainForever?: boolean; // Artifacts can't be pruned
157
159
  smokeTest?: {
158
160
  buildServerExecutionId?: string;
159
161
  isCanceled?: boolean;
@@ -524,6 +524,10 @@ export interface DesktopifyApp2<Plugin = DesktopAppPlugin> {
524
524
  * Enables push notifications
525
525
  */
526
526
  enablePushNotifications?: boolean;
527
+ /**
528
+ * Disable error reporting (Sentry)
529
+ */
530
+ disableErrorTracking?: boolean;
527
531
  /**
528
532
  * Sets theme for Electron UI elements and css.
529
533
  *