removedOutput schema / $defs
Removed value: -{
- "ExportResult": {
- "properties": {
- "format": {
- "title": "Format",
- "type": "string"
- },
- "path": {
- "title": "Path",
- "type": "string"
- },
- "size_bytes": {
- "title": "Size Bytes",
- "type": "integer"
- }
- },
- "required": [
- "path",
- "size_bytes",
- "format"
- ],
- "title": "ExportResult",
- "type": "object"
- },
- "MultiFileExportResult": {
- "properties": {
- "count": {
- "title": "Count",
- "type": "integer"
- },
- "files": {
- "items": {
- "type": "string"
- },
- "title": "Files",
- "type": "array"
- },
- "format": {
- "title": "Format",
- "type": "string"
- },
- "path": {
- "title": "Path",
- "type": "string"
- }
- },
- "required": [
- "path",
- "format",
- "files",
- "count"
- ],
- "title": "MultiFileExportResult",
- "type": "object"
- }
-}
addedOutput schema / description
Added value: +"pdf and dxf name one file and fill size_bytes; svg names a directory."
addedOutput schema / properties / count
Added value: +{
+ "title": "Count",
+ "type": "integer"
+}
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 / path
Added value: +{
+ "title": "Path",
+ "type": "string"
+}
removedOutput schema / properties / result
Removed value: -{
- "anyOf": [
- {
- "$ref": "#/$defs/ExportResult"
- },
- {
- "$ref": "#/$defs/MultiFileExportResult"
- }
- ],
- "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_schematicOutput"New value: +"SchematicExportResult"