@expo/eas-build-job 18.6.0 → 18.8.0

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/dist/common.d.ts CHANGED
@@ -235,6 +235,10 @@ export declare const StaticWorkflowInterpolationContextZ: z.ZodObject<{
235
235
  processing: "processing";
236
236
  complete: "complete";
237
237
  }>;
238
+ cf_bundle_version: z.ZodOptional<z.ZodString>;
239
+ build: z.ZodOptional<z.ZodObject<{
240
+ id: z.ZodString;
241
+ }, z.core.$loose>>;
238
242
  }, z.core.$loose>>;
239
243
  external_beta: z.ZodOptional<z.ZodObject<{
240
244
  id: z.ZodString;
package/dist/common.js CHANGED
@@ -197,6 +197,12 @@ const AppStoreConnectContextZ = zod_1.z.looseObject({
197
197
  .looseObject({
198
198
  id: zod_1.z.string(),
199
199
  state: zod_1.z.enum(['awaiting_upload', 'processing', 'failed', 'complete']),
200
+ cf_bundle_version: zod_1.z.string().optional(),
201
+ build: zod_1.z
202
+ .looseObject({
203
+ id: zod_1.z.string(),
204
+ })
205
+ .optional(),
200
206
  })
201
207
  .optional(),
202
208
  external_beta: zod_1.z
package/dist/generic.d.ts CHANGED
@@ -136,6 +136,10 @@ export declare namespace Generic {
136
136
  processing: "processing";
137
137
  complete: "complete";
138
138
  }>;
139
+ cf_bundle_version: z.ZodOptional<z.ZodString>;
140
+ build: z.ZodOptional<z.ZodObject<{
141
+ id: z.ZodString;
142
+ }, z.core.$loose>>;
139
143
  }, z.core.$loose>>;
140
144
  external_beta: z.ZodOptional<z.ZodObject<{
141
145
  id: z.ZodString;
@@ -364,6 +368,10 @@ export declare namespace Generic {
364
368
  processing: "processing";
365
369
  complete: "complete";
366
370
  }>;
371
+ cf_bundle_version: z.ZodOptional<z.ZodString>;
372
+ build: z.ZodOptional<z.ZodObject<{
373
+ id: z.ZodString;
374
+ }, z.core.$loose>>;
367
375
  }, z.core.$loose>>;
368
376
  external_beta: z.ZodOptional<z.ZodObject<{
369
377
  id: z.ZodString;
package/dist/logs.d.ts CHANGED
@@ -37,6 +37,7 @@ export declare enum BuildPhase {
37
37
  INSTALL_PODS = "INSTALL_PODS",
38
38
  CONFIGURE_XCODE_PROJECT = "CONFIGURE_XCODE_PROJECT",
39
39
  RUN_FASTLANE = "RUN_FASTLANE",
40
+ PARSE_XCACTIVITYLOG = "PARSE_XCACTIVITYLOG",
40
41
  PRE_INSTALL_HOOK = "PRE_INSTALL_HOOK",
41
42
  POST_INSTALL_HOOK = "POST_INSTALL_HOOK",
42
43
  PRE_UPLOAD_ARTIFACTS_HOOK = "PRE_UPLOAD_ARTIFACTS_HOOK",
package/dist/logs.js CHANGED
@@ -43,6 +43,7 @@ var BuildPhase;
43
43
  BuildPhase["INSTALL_PODS"] = "INSTALL_PODS";
44
44
  BuildPhase["CONFIGURE_XCODE_PROJECT"] = "CONFIGURE_XCODE_PROJECT";
45
45
  BuildPhase["RUN_FASTLANE"] = "RUN_FASTLANE";
46
+ BuildPhase["PARSE_XCACTIVITYLOG"] = "PARSE_XCACTIVITYLOG";
46
47
  // HOOKS
47
48
  BuildPhase["PRE_INSTALL_HOOK"] = "PRE_INSTALL_HOOK";
48
49
  BuildPhase["POST_INSTALL_HOOK"] = "POST_INSTALL_HOOK";
@@ -104,6 +105,7 @@ exports.buildPhaseDisplayName = {
104
105
  [BuildPhase.INSTALL_PODS]: 'Install pods',
105
106
  [BuildPhase.CONFIGURE_XCODE_PROJECT]: 'Configure Xcode project',
106
107
  [BuildPhase.RUN_FASTLANE]: 'Run fastlane',
108
+ [BuildPhase.PARSE_XCACTIVITYLOG]: 'Analyze build performance',
107
109
  // HOOKS
108
110
  [BuildPhase.PRE_INSTALL_HOOK]: 'Pre-install hook',
109
111
  [BuildPhase.POST_INSTALL_HOOK]: 'Post-install hook',
@@ -162,6 +164,7 @@ exports.buildPhaseWebsiteId = {
162
164
  [BuildPhase.INSTALL_PODS]: 'install-pods',
163
165
  [BuildPhase.CONFIGURE_XCODE_PROJECT]: 'configure-xcode-project',
164
166
  [BuildPhase.RUN_FASTLANE]: 'run-fastlane',
167
+ [BuildPhase.PARSE_XCACTIVITYLOG]: 'parse-xcactivitylog',
165
168
  // HOOKS
166
169
  [BuildPhase.PRE_INSTALL_HOOK]: 'pre-install-hook',
167
170
  [BuildPhase.POST_INSTALL_HOOK]: 'post-install-hook',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@expo/eas-build-job",
3
- "version": "18.6.0",
3
+ "version": "18.8.0",
4
4
  "bugs": "https://github.com/expo/eas-cli/issues",
5
5
  "license": "MIT",
6
6
  "author": "Expo <support@expo.io>",
@@ -38,5 +38,5 @@
38
38
  "ts-jest": "^29.1.4",
39
39
  "typescript": "^5.5.4"
40
40
  },
41
- "gitHead": "0fb6dfc334f0e496d701ff2afad0d15da9a83478"
41
+ "gitHead": "7c7fad4a13a8a45bdca698fc0fd4c08b17bb189c"
42
42
  }