@expo/eas-build-job 18.4.0 → 18.5.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
@@ -203,6 +203,20 @@ export declare const StaticWorkflowInterpolationContextZ: z.ZodObject<{
203
203
  id: z.ZodString;
204
204
  name: z.ZodString;
205
205
  }, z.core.$loose>;
206
+ app_store_connect: z.ZodOptional<z.ZodObject<{
207
+ app: z.ZodObject<{
208
+ id: z.ZodString;
209
+ }, z.core.$loose>;
210
+ build_upload: z.ZodOptional<z.ZodObject<{
211
+ id: z.ZodString;
212
+ state: z.ZodEnum<{
213
+ failed: "failed";
214
+ awaiting_upload: "awaiting_upload";
215
+ processing: "processing";
216
+ complete: "complete";
217
+ }>;
218
+ }, z.core.$loose>>;
219
+ }, z.core.$loose>>;
206
220
  }, z.core.$strip>;
207
221
  export type StaticWorkflowInterpolationContext = z.infer<typeof StaticWorkflowInterpolationContextZ>;
208
222
  export type DynamicInterpolationContext = {
package/dist/common.js CHANGED
@@ -194,6 +194,19 @@ exports.StaticWorkflowInterpolationContextZ = zod_1.z.object({
194
194
  id: zod_1.z.string(),
195
195
  name: zod_1.z.string(),
196
196
  }),
197
+ app_store_connect: zod_1.z
198
+ .looseObject({
199
+ app: zod_1.z.looseObject({
200
+ id: zod_1.z.string(),
201
+ }),
202
+ build_upload: zod_1.z
203
+ .looseObject({
204
+ id: zod_1.z.string(),
205
+ state: zod_1.z.enum(['awaiting_upload', 'processing', 'failed', 'complete']),
206
+ })
207
+ .optional(),
208
+ })
209
+ .optional(),
197
210
  });
198
211
  exports.CustomBuildConfigSchema = joi_1.default.object().when('.mode', {
199
212
  is: [BuildMode.CUSTOM, BuildMode.REPACK],
package/dist/generic.d.ts CHANGED
@@ -104,6 +104,20 @@ export declare namespace Generic {
104
104
  id: z.ZodString;
105
105
  name: z.ZodString;
106
106
  }, z.core.$loose>;
107
+ app_store_connect: z.ZodOptional<z.ZodObject<{
108
+ app: z.ZodObject<{
109
+ id: z.ZodString;
110
+ }, z.core.$loose>;
111
+ build_upload: z.ZodOptional<z.ZodObject<{
112
+ id: z.ZodString;
113
+ state: z.ZodEnum<{
114
+ failed: "failed";
115
+ awaiting_upload: "awaiting_upload";
116
+ processing: "processing";
117
+ complete: "complete";
118
+ }>;
119
+ }, z.core.$loose>>;
120
+ }, z.core.$loose>>;
107
121
  }, z.core.$strip>>;
108
122
  initiatingUserId: z.ZodString;
109
123
  appId: z.ZodString;
@@ -273,6 +287,20 @@ export declare namespace Generic {
273
287
  id: z.ZodString;
274
288
  name: z.ZodString;
275
289
  }, z.core.$loose>;
290
+ app_store_connect: z.ZodOptional<z.ZodObject<{
291
+ app: z.ZodObject<{
292
+ id: z.ZodString;
293
+ }, z.core.$loose>;
294
+ build_upload: z.ZodOptional<z.ZodObject<{
295
+ id: z.ZodString;
296
+ state: z.ZodEnum<{
297
+ failed: "failed";
298
+ awaiting_upload: "awaiting_upload";
299
+ processing: "processing";
300
+ complete: "complete";
301
+ }>;
302
+ }, z.core.$loose>>;
303
+ }, z.core.$loose>>;
276
304
  }, z.core.$strip>>>;
277
305
  initiatingUserId: z.ZodOptional<z.ZodString>;
278
306
  appId: z.ZodOptional<z.ZodString>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@expo/eas-build-job",
3
- "version": "18.4.0",
3
+ "version": "18.5.0",
4
4
  "bugs": "https://github.com/expo/eas-cli/issues",
5
5
  "license": "MIT",
6
6
  "author": "Expo <support@expo.io>",
@@ -19,13 +19,13 @@
19
19
  "watch": "tsc --watch --preserveWatchOutput",
20
20
  "build": "tsc",
21
21
  "typecheck": "tsc",
22
- "prepack": "rm -rf dist *.tsbuildinfo && tsc -p tsconfig.build.json",
22
+ "prepack": "rimraf dist \"*.tsbuildinfo\" && tsc -p tsconfig.build.json",
23
23
  "test": "jest --config jest.config.ts",
24
24
  "test:watch": "jest --config jest.config.ts --watch",
25
- "clean": "rm -rf node_modules dist coverage *.tsbuildinfo"
25
+ "clean": "rimraf node_modules dist coverage \"*.tsbuildinfo\""
26
26
  },
27
27
  "dependencies": {
28
- "@expo/logger": "18.0.1",
28
+ "@expo/logger": "18.5.0",
29
29
  "joi": "^17.13.1",
30
30
  "semver": "^7.6.2",
31
31
  "zod": "^4.3.5"
@@ -34,8 +34,9 @@
34
34
  "@types/jest": "^29.5.12",
35
35
  "@types/node": "20.14.2",
36
36
  "jest": "^29.7.0",
37
+ "rimraf": "3.0.2",
37
38
  "ts-jest": "^29.1.4",
38
39
  "typescript": "^5.5.4"
39
40
  },
40
- "gitHead": "4e202db843be2dca6450af4b45ee76b226a662ea"
41
+ "gitHead": "2e2dddb59ae9df5ad2395c74f77701341103b62e"
41
42
  }