@todesktop/shared 7.188.12 → 7.188.13

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.
@@ -88,6 +88,7 @@ export interface Build {
88
88
  appNotarizaionBundleId: string;
89
89
  appVersion?: SemanticVersion;
90
90
  buildServerExecutionId?: number;
91
+ bundlePhobiaData?: Record<string, BundlePhobiaItem>;
91
92
  ciRunner?: CIRunner;
92
93
  cliConfigSchemaVersion: number;
93
94
  continuousIntegrationServiceName?: string;
@@ -145,6 +146,12 @@ export interface Build {
145
146
  };
146
147
  windows?: PlatformBuild;
147
148
  }
149
+ export declare type BundlePhobiaItem = {
150
+ description: string;
151
+ gzip: string;
152
+ name: string;
153
+ size: number;
154
+ };
148
155
  export declare type ComputedBuildProperties = Pick<Build, 'desktopifyVersion' | 'electronVersionUsed' | 'endedAt' | 'errorMessage' | 'releasedAt' | 'standardUniversalDownloadUrl' | 'startedAt' | 'status' | 'universalDownloadUrl'>;
149
156
  export declare enum ManifestCategory {
150
157
  primary = "primary",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.188.12",
3
+ "version": "7.188.13",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/desktopify.ts CHANGED
@@ -124,6 +124,7 @@ export interface Build {
124
124
  appNotarizaionBundleId: string;
125
125
  appVersion?: SemanticVersion;
126
126
  buildServerExecutionId?: number;
127
+ bundlePhobiaData?: Record<string, BundlePhobiaItem>;
127
128
  ciRunner?: CIRunner;
128
129
  cliConfigSchemaVersion: number;
129
130
  continuousIntegrationServiceName?: string;
@@ -191,6 +192,13 @@ export interface Build {
191
192
  windows?: PlatformBuild;
192
193
  }
193
194
 
195
+ export type BundlePhobiaItem = {
196
+ description: string;
197
+ gzip: string;
198
+ name: string;
199
+ size: number;
200
+ };
201
+
194
202
  export type ComputedBuildProperties = Pick<
195
203
  Build,
196
204
  | 'desktopifyVersion'