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"
- },
- "RenderExportResult": {
- "properties": {
- "format": {
- "title": "Format",
- "type": "string"
- },
- "height": {
- "title": "Height",
- "type": "integer"
- },
- "path": {
- "title": "Path",
- "type": "string"
- },
- "side": {
- "title": "Side",
- "type": "string"
- },
- "size_bytes": {
- "title": "Size Bytes",
- "type": "integer"
- },
- "width": {
- "title": "Width",
- "type": "integer"
- }
- },
- "required": [
- "path",
- "size_bytes",
- "format",
- "width",
- "height",
- "side"
- ],
- "title": "RenderExportResult",
- "type": "object"
- }
-}
addedOutput schema / description
Added value: +"`render` fills width, height and side; step, stl and glb do not."
addedOutput schema / properties / format
Added value: +{
+ "title": "Format",
+ "type": "string"
+}
addedOutput schema / properties / height
Added value: +{
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Height"
+}
addedOutput schema / properties / path
Added value: +{
+ "title": "Path",
+ "type": "string"
+}
removedOutput schema / properties / result
Removed value: -{
- "anyOf": [
- {
- "$ref": "#/$defs/RenderExportResult"
- },
- {
- "$ref": "#/$defs/ExportResult"
- }
- ],
- "title": "Result"
-}
addedOutput schema / properties / side
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Side"
+}
addedOutput schema / properties / size_bytes
Added value: +{
+ "title": "Size Bytes",
+ "type": "integer"
+}
addedOutput schema / properties / width
Added value: +{
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Width"
+}
changedOutput schema / required
Previous value: -[
- "result"
-]New value: +[
+ "path",
+ "format",
+ "size_bytes"
+]
changedOutput schema / title
Previous value: -"export_3dOutput"New value: +"Model3dExportResult"