You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"uploaded": {"description": "Blobs whose bytes were transferred. Never exceeds `upload_count`: the builder answers with an id it already holds, and no upload URL, when the workspace already stored those exact bytes.", "type": "integer", "minimum": 0},
27
27
"deduped": {"description": "Blobs the builder already held, so `upload_count` was planned but not transferred. Always `upload_count - uploaded`.", "type": "integer", "minimum": 0},
28
+
"warnings": {
29
+
"description": "Non-blocking advisories the save returned; present only when it returned at least one. A warning at `models[<n>].sourceUri` names a model link a deployment could not download.",
30
+
"type": "array",
31
+
"minItems": 1,
32
+
"items": {
33
+
"type": "object",
34
+
"required": ["field", "reason"],
35
+
"additionalProperties": false,
36
+
"properties": {
37
+
"field": { "type": "string" },
38
+
"reason": { "type": "string" }
39
+
}
40
+
}
41
+
},
28
42
"skipped_symlinks": {
29
43
"description": "Symlinks excluded from a packaged custom node; present only when packaging skipped at least one. `location` points into the definition of the spec at `spec_file` (this payload carries no definition of its own), `localPath` names the node under custom_nodes/, and `member` is the symlink's path inside that node.",
0 commit comments