@expo/eas-build-job 18.13.1 → 19.1.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 +0 -6
- package/dist/index.d.ts +1 -1
- package/dist/ios.d.ts +1 -0
- package/dist/ios.js +1 -0
- package/package.json +4 -4
package/dist/common.d.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import Joi from 'joi';
|
|
2
2
|
import { z } from 'zod';
|
|
3
|
-
import { BuildPhase, BuildPhaseResult } from './logs';
|
|
4
3
|
import { Step } from './step';
|
|
5
4
|
export declare enum BuildMode {
|
|
6
5
|
BUILD = "build",
|
|
@@ -142,11 +141,6 @@ export interface Cache {
|
|
|
142
141
|
paths: string[];
|
|
143
142
|
}
|
|
144
143
|
export declare const CacheSchema: Joi.ObjectSchema<any>;
|
|
145
|
-
export interface BuildPhaseStats {
|
|
146
|
-
buildPhase: BuildPhase;
|
|
147
|
-
result: BuildPhaseResult;
|
|
148
|
-
durationMs: number;
|
|
149
|
-
}
|
|
150
144
|
export declare const StaticWorkflowInterpolationContextZ: z.ZodObject<{
|
|
151
145
|
after: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
152
146
|
status: z.ZodString;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export * as Android from './android';
|
|
2
2
|
export * as Ios from './ios';
|
|
3
|
-
export { ArchiveSourceType, ArchiveSource, ArchiveSourceSchemaZ, BuildMode,
|
|
3
|
+
export { ArchiveSourceType, ArchiveSource, ArchiveSourceSchemaZ, BuildMode, BuildTrigger, EasCliNpmTags, Env, EnvironmentSecret, EnvironmentSecretType, Hooks, Workflow, Platform, Cache, WorkflowInterpolationContext, } from './common';
|
|
4
4
|
export { Metadata, sanitizeMetadata } from './metadata';
|
|
5
5
|
export * from './job';
|
|
6
6
|
export * from './logs';
|
package/dist/ios.d.ts
CHANGED
package/dist/ios.js
CHANGED
|
@@ -103,5 +103,6 @@ exports.JobSchema = joi_1.default.object({
|
|
|
103
103
|
initiatingUserId: joi_1.default.string().required(),
|
|
104
104
|
appId: joi_1.default.string().required(),
|
|
105
105
|
environment: joi_1.default.string(),
|
|
106
|
+
refreshAdHocProvisioningProfile: joi_1.default.boolean(),
|
|
106
107
|
workflowInterpolationContext: joi_1.default.object().custom(workflowInterpolationContext => common_1.StaticWorkflowInterpolationContextZ.optional().parse(workflowInterpolationContext)),
|
|
107
108
|
}).concat(common_1.CustomBuildConfigSchema);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@expo/eas-build-job",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "19.1.0",
|
|
4
4
|
"bugs": "https://github.com/expo/eas-cli/issues",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Expo <support@expo.io>",
|
|
@@ -25,9 +25,9 @@
|
|
|
25
25
|
"clean": "rimraf node_modules dist coverage \"*.tsbuildinfo\""
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@expo/logger": "
|
|
28
|
+
"@expo/logger": "19.0.0",
|
|
29
29
|
"@expo/results": "1.0.0",
|
|
30
|
-
"@expo/turtle-spawn": "
|
|
30
|
+
"@expo/turtle-spawn": "19.0.0",
|
|
31
31
|
"joi": "^17.13.1",
|
|
32
32
|
"semver": "^7.6.2",
|
|
33
33
|
"zod": "^4.3.5"
|
|
@@ -40,5 +40,5 @@
|
|
|
40
40
|
"ts-jest": "^29.1.4",
|
|
41
41
|
"typescript": "^5.5.4"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "27a2e2abc752aa0123075958651a796fe045d601"
|
|
44
44
|
}
|