removedOutput schema / $defs
Removed value: -{
- "GerberExportResult": {
- "properties": {
- "count": {
- "title": "Count",
- "type": "integer"
- },
- "drill_count": {
- "default": 0,
- "title": "Drill Count",
- "type": "integer"
- },
- "drill_files": {
- "default": [],
- "items": {
- "type": "string"
- },
- "title": "Drill Files",
- "type": "array"
- },
- "files": {
- "items": {
- "type": "string"
- },
- "title": "Files",
- "type": "array"
- },
- "format": {
- "title": "Format",
- "type": "string"
- },
- "path": {
- "title": "Path",
- "type": "string"
- }
- },
- "required": [
- "path",
- "format",
- "files",
- "count"
- ],
- "title": "GerberExportResult",
- "type": "object"
- },
- "SingleGerberExportResult": {
- "properties": {
- "format": {
- "title": "Format",
- "type": "string"
- },
- "layer": {
- "title": "Layer",
- "type": "string"
- },
- "path": {
- "title": "Path",
- "type": "string"
- },
- "size_bytes": {
- "title": "Size Bytes",
- "type": "integer"
- }
- },
- "required": [
- "path",
- "size_bytes",
- "format",
- "layer"
- ],
- "title": "SingleGerberExportResult",
- "type": "object"
- }
-}
addedOutput schema / description
Added value: +"Single-layer mode names one file and fills size_bytes and layer.\n\nMulti-layer mode names the output directory and fills the drill fields."
addedOutput schema / properties / count
Added value: +{
+ "title": "Count",
+ "type": "integer"
+}
addedOutput schema / properties / drill_count
Added value: +{
+ "default": 0,
+ "title": "Drill Count",
+ "type": "integer"
+}
addedOutput schema / properties / drill_files
Added value: +{
+ "default": [],
+ "items": {
+ "type": "string"
+ },
+ "title": "Drill Files",
+ "type": "array"
+}
addedOutput schema / properties / files
Added value: +{
+ "items": {
+ "type": "string"
+ },
+ "title": "Files",
+ "type": "array"
+}
addedOutput schema / properties / format
Added value: +{
+ "title": "Format",
+ "type": "string"
+}
addedOutput schema / properties / layer
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Layer"
+}
addedOutput schema / properties / path
Added value: +{
+ "title": "Path",
+ "type": "string"
+}
removedOutput schema / properties / result
Removed value: -{
- "anyOf": [
- {
- "$ref": "#/$defs/SingleGerberExportResult"
- },
- {
- "$ref": "#/$defs/GerberExportResult"
- }
- ],
- "title": "Result"
-}
addedOutput schema / properties / size_bytes
Added value: +{
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Size Bytes"
+}
changedOutput schema / required
Previous value: -[
- "result"
-]New value: +[
+ "path",
+ "format",
+ "files",
+ "count"
+]
changedOutput schema / title
Previous value: -"export_gerbersOutput"New value: +"GerberExportResult"