Skip to content

Commit

Permalink
auto-organize
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed May 21, 2023
1 parent 4f74d09 commit 8586f34
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 9 deletions.
49 changes: 41 additions & 8 deletions .domino/compiled_metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
"title": "Input Args",
"description": "Input args.",
"default": [],
"from_upstream": "always",
"type": "array",
"items": {}
},
Expand All @@ -39,28 +40,60 @@
"description": "Python script.",
"default": "\ndef main(input_args):\n return input_args\n",
"widget": "codeeditor",
"from_upstream": "never",
"type": "string"
},
"output_args": {
"title": "Output Args",
"description": "Output args.",
"default": [],
"from_upstream": "never",
"type": "array",
"items": {}
"items": {
"$ref": "#/definitions/OutputArgsModel"
}
}
},
"definitions": {
"OutputArgsType": {
"title": "OutputArgsType",
"description": "OutputArgsType Enum",
"enum": [
"string",
"integer",
"float",
"boolean",
"array"
],
"type": "string"
},
"OutputArgsModel": {
"title": "OutputArgsModel",
"type": "object",
"properties": {
"name": {
"title": "Name",
"description": "Name of the output arg.",
"type": "string"
},
"type": {
"description": "Type of the output arg.",
"default": "string",
"allOf": [
{
"$ref": "#/definitions/OutputArgsType"
}
]
}
}
}
}
},
"output_schema": {
"title": "OutputModel",
"description": "CustomPythonPiece Output Model",
"type": "object",
"properties": {
"error": {
"title": "Error",
"description": "Error message.",
"type": "string"
}
}
"properties": {}
},
"secrets_schema": null,
"source_url": "https://github.com/Tauffer-Consulting/default_domino_pieces/tree/main/pieces/CustomPythonPiece"
Expand Down
2 changes: 1 addition & 1 deletion .domino/dependencies_map.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
"SimpleLogPiece"
],
"secrets": [],
"source_image": "ghcr.io/tauffer-consulting/default_domino_pieces:0.3.1-group0"
"source_image": "ghcr.io/tauffer-consulting/default_domino_pieces:0.3.2-group0"
}
}

0 comments on commit 8586f34

Please sign in to comment.