@expo/eas-build-job 1.0.144 → 1.0.148
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/context.d.ts +1 -0
- package/dist/context.js.map +1 -1
- package/package.json +2 -2
package/dist/context.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ type StaticJobOnlyInterpolationContext = {
|
|
|
8
8
|
steps: Record<string, {
|
|
9
9
|
outputs: Record<string, string | undefined>;
|
|
10
10
|
}>;
|
|
11
|
+
expoApiServerURL: string;
|
|
11
12
|
};
|
|
12
13
|
export type StaticJobInterpolationContext = (StaticWorkflowInterpolationContext & StaticJobOnlyInterpolationContext) | StaticJobOnlyInterpolationContext;
|
|
13
14
|
export type JobInterpolationContext = StaticJobInterpolationContext & DynamicInterpolationContext;
|
package/dist/context.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"context.js","sourceRoot":"","sources":["../src/context.ts"],"names":[],"mappings":"","sourcesContent":["import { DynamicInterpolationContext, Env, StaticWorkflowInterpolationContext } from './common';\nimport { Job } from './job';\nimport { Metadata } from './metadata';\n\ntype StaticJobOnlyInterpolationContext = {\n job: Job;\n metadata: Metadata | null;\n env: Env;\n steps: Record<\n string,\n {\n outputs: Record<string, string | undefined>;\n }\n >;\n};\n\nexport type StaticJobInterpolationContext =\n | (StaticWorkflowInterpolationContext & StaticJobOnlyInterpolationContext)\n | StaticJobOnlyInterpolationContext;\n\nexport type JobInterpolationContext = StaticJobInterpolationContext & DynamicInterpolationContext;\n"]}
|
|
1
|
+
{"version":3,"file":"context.js","sourceRoot":"","sources":["../src/context.ts"],"names":[],"mappings":"","sourcesContent":["import { DynamicInterpolationContext, Env, StaticWorkflowInterpolationContext } from './common';\nimport { Job } from './job';\nimport { Metadata } from './metadata';\n\ntype StaticJobOnlyInterpolationContext = {\n job: Job;\n metadata: Metadata | null;\n env: Env;\n steps: Record<\n string,\n {\n outputs: Record<string, string | undefined>;\n }\n >;\n expoApiServerURL: string;\n};\n\nexport type StaticJobInterpolationContext =\n | (StaticWorkflowInterpolationContext & StaticJobOnlyInterpolationContext)\n | StaticJobOnlyInterpolationContext;\n\nexport type JobInterpolationContext = StaticJobInterpolationContext & DynamicInterpolationContext;\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@expo/eas-build-job",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.148",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -35,5 +35,5 @@
|
|
|
35
35
|
"node": "20.14.0",
|
|
36
36
|
"yarn": "1.22.21"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "bf607e6b982ca1ae8dff449eee998de7d4ad8bfd"
|
|
39
39
|
}
|