@expo/eas-build-job 20.0.0 → 20.5.1

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
@@ -76,7 +76,7 @@ export declare const ArchiveSourceSchemaZ: z.ZodDiscriminatedUnion<[z.ZodObject<
76
76
  }, z.core.$strip>, z.ZodObject<{
77
77
  type: z.ZodLiteral<ArchiveSourceType.NONE>;
78
78
  }, z.core.$strip>], "type">;
79
- export type Env = Record<string, string>;
79
+ export type Env = Record<string, string | undefined>;
80
80
  export declare const EnvSchema: Joi.ObjectSchema<any>;
81
81
  export type EnvironmentSecret = {
82
82
  name: string;
package/dist/common.js CHANGED
@@ -95,7 +95,7 @@ exports.ArchiveSourceSchemaZ = zod_1.z.discriminatedUnion('type', [
95
95
  type: zod_1.z.literal(ArchiveSourceType.NONE),
96
96
  }),
97
97
  ]);
98
- exports.EnvSchema = joi_1.default.object().pattern(joi_1.default.string(), joi_1.default.string());
98
+ exports.EnvSchema = joi_1.default.object().pattern(joi_1.default.string(), joi_1.default.string().optional());
99
99
  var EnvironmentSecretType;
100
100
  (function (EnvironmentSecretType) {
101
101
  EnvironmentSecretType["STRING"] = "string";
package/dist/context.d.ts CHANGED
@@ -7,7 +7,7 @@ type StaticJobOnlyInterpolationContext = {
7
7
  steps: Record<string, {
8
8
  outputs: Record<string, string | undefined>;
9
9
  }>;
10
- expoApiServerURL: string;
10
+ expoApiServerURL: string | undefined;
11
11
  };
12
12
  export type StaticJobInterpolationContext = (StaticWorkflowInterpolationContext & StaticJobOnlyInterpolationContext) | StaticJobOnlyInterpolationContext;
13
13
  export type JobInterpolationContext = StaticJobInterpolationContext & DynamicInterpolationContext;
package/dist/logs.d.ts CHANGED
@@ -27,6 +27,7 @@ export declare enum BuildPhase {
27
27
  */
28
28
  UPLOAD_ARTIFACTS = "UPLOAD_ARTIFACTS",
29
29
  UPLOAD_APPLICATION_ARCHIVE = "UPLOAD_APPLICATION_ARCHIVE",
30
+ UPLOAD_EMBEDDED_BUNDLE = "UPLOAD_EMBEDDED_BUNDLE",
30
31
  UPLOAD_BUILD_ARTIFACTS = "UPLOAD_BUILD_ARTIFACTS",
31
32
  PREPARE_ARTIFACTS = "PREPARE_ARTIFACTS",
32
33
  CLEAN_UP_CREDENTIALS = "CLEAN_UP_CREDENTIALS",
package/dist/logs.js CHANGED
@@ -31,6 +31,7 @@ var BuildPhase;
31
31
  */
32
32
  BuildPhase["UPLOAD_ARTIFACTS"] = "UPLOAD_ARTIFACTS";
33
33
  BuildPhase["UPLOAD_APPLICATION_ARCHIVE"] = "UPLOAD_APPLICATION_ARCHIVE";
34
+ BuildPhase["UPLOAD_EMBEDDED_BUNDLE"] = "UPLOAD_EMBEDDED_BUNDLE";
34
35
  BuildPhase["UPLOAD_BUILD_ARTIFACTS"] = "UPLOAD_BUILD_ARTIFACTS";
35
36
  BuildPhase["PREPARE_ARTIFACTS"] = "PREPARE_ARTIFACTS";
36
37
  BuildPhase["CLEAN_UP_CREDENTIALS"] = "CLEAN_UP_CREDENTIALS";
@@ -89,6 +90,7 @@ exports.buildPhaseDisplayName = {
89
90
  [BuildPhase.CACHE_STATS]: 'Cache stats',
90
91
  [BuildPhase.UPLOAD_ARTIFACTS]: 'Upload artifacts',
91
92
  [BuildPhase.UPLOAD_APPLICATION_ARCHIVE]: 'Upload application archive',
93
+ [BuildPhase.UPLOAD_EMBEDDED_BUNDLE]: 'Upload embedded bundle',
92
94
  [BuildPhase.UPLOAD_BUILD_ARTIFACTS]: 'Upload build artifacts',
93
95
  [BuildPhase.PREPARE_ARTIFACTS]: 'Prepare artifacts',
94
96
  [BuildPhase.CLEAN_UP_CREDENTIALS]: 'Clean up credentials',
@@ -149,6 +151,7 @@ exports.buildPhaseWebsiteId = {
149
151
  [BuildPhase.CACHE_STATS]: 'cache-stats',
150
152
  [BuildPhase.UPLOAD_ARTIFACTS]: 'upload-artifacts',
151
153
  [BuildPhase.UPLOAD_APPLICATION_ARCHIVE]: 'upload-application-archive',
154
+ [BuildPhase.UPLOAD_EMBEDDED_BUNDLE]: 'upload-embedded-bundle',
152
155
  [BuildPhase.UPLOAD_BUILD_ARTIFACTS]: 'upload-build-artifacts',
153
156
  [BuildPhase.PREPARE_ARTIFACTS]: 'prepare-artifacts',
154
157
  [BuildPhase.CLEAN_UP_CREDENTIALS]: 'clean-up-credentials',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@expo/eas-build-job",
3
- "version": "20.0.0",
3
+ "version": "20.5.1",
4
4
  "bugs": "https://github.com/expo/eas-cli/issues",
5
5
  "license": "MIT",
6
6
  "author": "Expo <support@expo.io>",
@@ -40,5 +40,5 @@
40
40
  "ts-jest": "^29.1.4",
41
41
  "typescript": "^5.5.4"
42
42
  },
43
- "gitHead": "890387b3b62c2ed2a946ec0e1197ff69f3e29342"
43
+ "gitHead": "cd47185f29446299b7682d52cd917eb9a01038e7"
44
44
  }