@todesktop/shared 7.188.28 → 7.188.30
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 +3 -0
- package/lib/desktopify.d.ts +1 -1
- package/package.json +1 -1
- package/src/base.ts +3 -0
- package/src/desktopify.ts +1 -1
package/lib/base.d.ts
CHANGED
|
@@ -141,6 +141,9 @@ export interface ToDesktopJson {
|
|
|
141
141
|
};
|
|
142
142
|
mas?: {
|
|
143
143
|
type?: 'development' | 'distribution';
|
|
144
|
+
entitlements?: FilePath;
|
|
145
|
+
entitlementsInherit?: FilePath;
|
|
146
|
+
provisioningProfile?: FilePath;
|
|
144
147
|
};
|
|
145
148
|
nodeVersion?: string;
|
|
146
149
|
npmVersion?: string;
|
package/lib/desktopify.d.ts
CHANGED
|
@@ -216,7 +216,7 @@ export interface SmokeTestPerformance {
|
|
|
216
216
|
* is calculated from the process start.
|
|
217
217
|
* It measures for the first 10-12 seconds of the app execution.
|
|
218
218
|
*/
|
|
219
|
-
|
|
219
|
+
cpuUsageMainProcessMs: number;
|
|
220
220
|
/**
|
|
221
221
|
* Maximum memory consumption by the main + renders + any other helper
|
|
222
222
|
* processes
|
package/package.json
CHANGED
package/src/base.ts
CHANGED
|
@@ -153,6 +153,9 @@ export interface ToDesktopJson {
|
|
|
153
153
|
};
|
|
154
154
|
mas?: {
|
|
155
155
|
type?: 'development' | 'distribution'; // defaults to development
|
|
156
|
+
entitlements?: FilePath;
|
|
157
|
+
entitlementsInherit?: FilePath;
|
|
158
|
+
provisioningProfile?: FilePath;
|
|
156
159
|
};
|
|
157
160
|
nodeVersion?: string;
|
|
158
161
|
npmVersion?: string;
|
package/src/desktopify.ts
CHANGED
|
@@ -294,7 +294,7 @@ export interface SmokeTestPerformance {
|
|
|
294
294
|
* is calculated from the process start.
|
|
295
295
|
* It measures for the first 10-12 seconds of the app execution.
|
|
296
296
|
*/
|
|
297
|
-
|
|
297
|
+
cpuUsageMainProcessMs: number;
|
|
298
298
|
/**
|
|
299
299
|
* Maximum memory consumption by the main + renders + any other helper
|
|
300
300
|
* processes
|