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 Oct 31, 2023
1 parent a15d749 commit 461a124
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 59 deletions.
115 changes: 59 additions & 56 deletions .domino/compiled_metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -87,17 +87,20 @@
"date": {
"title": "Date",
"description": "Date of the timestamp, in ISO format.",
"type": "string"
"type": "string",
"format": "date"
},
"time": {
"title": "Time",
"description": "Time of the timestamp, in ISO format.",
"type": "string"
"type": "string",
"format": "time"
},
"datetime": {
"title": "Datetime",
"description": "Datetime of the timestamp, in ISO format.",
"type": "string"
"type": "string",
"format": "date-time"
}
},
"required": [
Expand Down Expand Up @@ -256,6 +259,59 @@
"secrets_schema": null,
"source_url": "https://github.com/Tauffer-Consulting/default_domino_pieces/tree/main/pieces/CustomPythonPiece"
},
"SleepPiece": {
"name": "SleepPiece",
"dependency": {
"dockerfile": null,
"requirements_file": "requirements_0.txt"
},
"tags": [
"Sleep",
"Default"
],
"style": {
"node_label": "Sleep Piece",
"node_type": "default",
"node_style": {
"backgroundColor": "#b3cde8"
},
"useIcon": true,
"icon_class_name": "fa-solid:hourglass-start",
"iconStyle": {
"cursor": "pointer"
}
},
"description": "A Piece that executes a Python sleep function for a user-defined duration",
"input_schema": {
"title": "InputModel",
"description": "Sleep Piece Input Model",
"type": "object",
"properties": {
"sleep_time": {
"title": "Sleep Time",
"description": "Number of seconds to sleep",
"default": 1,
"required": true,
"type": "number"
}
}
},
"output_schema": {
"title": "OutputModel",
"description": "Sleep Piece Output Model",
"type": "object",
"properties": {
"message": {
"title": "Message",
"description": "Sleep piece executed",
"default": "",
"type": "string"
}
}
},
"secrets_schema": null,
"source_url": "https://github.com/Tauffer-Consulting/default_domino_pieces/tree/main/pieces/SleepPiece"
},
"SimpleLogPiece": {
"name": "SimpleLogPiece",
"dependency": {
Expand Down Expand Up @@ -452,58 +508,5 @@
},
"secrets_schema": null,
"source_url": "https://github.com/Tauffer-Consulting/default_domino_pieces/tree/main/pieces/SimpleLogPiece"
},
"SleepPiece": {
"name": "SleepPiece",
"dependency": {
"dockerfile": null,
"requirements_file": "requirements_0.txt"
},
"tags": [
"Sleep",
"Default"
],
"style": {
"node_label": "Sleep Piece",
"node_type": "default",
"node_style": {
"backgroundColor": "#b3cde8"
},
"useIcon": true,
"icon_class_name": "fa-solid:hourglass-start",
"iconStyle": {
"cursor": "pointer"
}
},
"description": "A Piece that executes a Python sleep function for a user-defined duration",
"input_schema": {
"title": "InputModel",
"description": "Sleep Piece Input Model",
"type": "object",
"properties": {
"sleep_time": {
"title": "Sleep Time",
"description": "Number of seconds to sleep",
"default": 1,
"required": true,
"type": "number"
}
}
},
"output_schema": {
"title": "OutputModel",
"description": "Sleep Piece Output Model",
"type": "object",
"properties": {
"message": {
"title": "Message",
"description": "Sleep piece executed",
"default": "",
"type": "string"
}
}
},
"secrets_schema": null,
"source_url": "https://github.com/Tauffer-Consulting/default_domino_pieces/tree/main/pieces/SleepPiece"
}
}
6 changes: 3 additions & 3 deletions .domino/dependencies_map.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
"pieces": [
"GetDateTimePiece",
"CustomPythonPiece",
"SimpleLogPiece",
"SleepPiece"
"SleepPiece",
"SimpleLogPiece"
],
"secrets": [],
"source_image": "ghcr.io/tauffer-consulting/default_domino_pieces:0.4.3-group0"
"source_image": "ghcr.io/tauffer-consulting/default_domino_pieces:0.4.4-group0"
}
}

0 comments on commit 461a124

Please sign in to comment.