eas-cli 16.19.1 → 16.19.3

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.
@@ -3,6 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.WorkflowJobFragmentNode = void 0;
4
4
  const tslib_1 = require("tslib");
5
5
  const graphql_tag_1 = tslib_1.__importDefault(require("graphql-tag"));
6
+ const Build_1 = require("./Build");
6
7
  exports.WorkflowJobFragmentNode = (0, graphql_tag_1.default) `
7
8
  fragment WorkflowJobFragment on WorkflowJob {
8
9
  id
@@ -16,11 +17,23 @@ exports.WorkflowJobFragmentNode = (0, graphql_tag_1.default) `
16
17
  turtleJobRun {
17
18
  id
18
19
  logFileUrls
20
+ artifacts {
21
+ id
22
+ name
23
+ contentType
24
+ fileSizeBytes
25
+ filename
26
+ downloadUrl
27
+ }
19
28
  errors {
20
29
  errorCode
21
30
  message
22
31
  }
23
32
  }
33
+ turtleBuild {
34
+ id
35
+ ...BuildFragment
36
+ }
24
37
  outputs
25
38
  errors {
26
39
  title
@@ -29,4 +42,5 @@ exports.WorkflowJobFragmentNode = (0, graphql_tag_1.default) `
29
42
  createdAt
30
43
  updatedAt
31
44
  }
45
+ ${Build_1.BuildFragmentNode}
32
46
  `;
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "16.19.1",
2
+ "version": "16.19.3",
3
3
  "commands": {
4
4
  "analytics": {
5
5
  "id": "analytics",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "eas-cli",
3
3
  "description": "EAS command line tool",
4
- "version": "16.19.1",
4
+ "version": "16.19.3",
5
5
  "author": "Expo <support@expo.dev>",
6
6
  "bin": {
7
7
  "eas": "./bin/run"
@@ -241,5 +241,5 @@
241
241
  "node": "20.11.0",
242
242
  "yarn": "1.22.21"
243
243
  },
244
- "gitHead": "0fd33a95f51ede01a0658558825b1e579106c7f4"
244
+ "gitHead": "6c5c99b5d1ae1087686a2fcbf09a313e615aff67"
245
245
  }