@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.
- package/lib/desktopify.d.ts +2 -0
- package/lib/desktopify2.d.ts +4 -0
- package/package.json +1 -1
- package/src/desktopify.ts +2 -0
- package/src/desktopify2.ts +4 -0
package/lib/desktopify.d.ts
CHANGED
|
@@ -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;
|
package/lib/desktopify2.d.ts
CHANGED
|
@@ -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
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;
|
package/src/desktopify2.ts
CHANGED
|
@@ -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
|
*
|