From d1d952b8b0ad46805bb2c6689db9bb63d4ecc64d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 30 Oct 2023 18:13:30 +0000 Subject: [PATCH] auto-organize --- .domino/compiled_metadata.json | 262 ++++++++++++++++----------------- .domino/dependencies_map.json | 6 +- 2 files changed, 134 insertions(+), 134 deletions(-) diff --git a/.domino/compiled_metadata.json b/.domino/compiled_metadata.json index 834cd79..c235a1f 100644 --- a/.domino/compiled_metadata.json +++ b/.domino/compiled_metadata.json @@ -1,4 +1,114 @@ { + "GetDateTimePiece": { + "name": "GetDateTimePiece", + "dependency": { + "dockerfile": null, + "requirements_file": "requirements_0.txt" + }, + "tags": [ + "datetime", + "default" + ], + "style": { + "node_label": "Get Datetime", + "node_type": "default", + "node_style": { + "backgroundColor": "#b3cde8" + }, + "useIcon": true, + "icon_class_name": "fa:calendar-o", + "iconStyle": { + "cursor": "pointer" + } + }, + "description": "A Piece that gets current system date and time.", + "input_schema": { + "title": "InputModel", + "description": "GetDateTimePiece Input Model", + "type": "object", + "properties": { + "use_timezone": { + "title": "Use Timezone", + "description": "Whether to use a timezone for the timestamp.", + "default": false, + "type": "boolean" + }, + "timezone": { + "description": "Timezone to use for timestamp.", + "default": "(UTC+00) - UTC", + "allOf": [ + { + "$ref": "#/definitions/TZOptions" + } + ] + } + }, + "definitions": { + "TZOptions": { + "title": "TZOptions", + "description": "An enumeration.", + "enum": [ + "(UTC-11) - Pacific/Pago_Pago", + "(UTC-10) - US/Hawaii", + "(UTC-09) - Pacific/Gambier", + "(UTC-08) - US/Alaska", + "(UTC-07) - US/Pacific", + "(UTC-06) - US/Mountain", + "(UTC-05) - US/Central", + "(UTC-04) - US/Eastern", + "(UTC-03) - Canada/Atlantic", + "(UTC-02) - Atlantic/South_Georgia", + "(UTC-01) - Atlantic/Cape_Verde", + "(UTC+00) - UTC", + "(UTC+01) - Europe/London", + "(UTC+02) - Europe/Zurich", + "(UTC+03) - Indian/Mayotte", + "(UTC+04) - Asia/Tehran", + "(UTC+05) - Asia/Kathmandu", + "(UTC+06) - Indian/Cocos", + "(UTC+07) - Indian/Christmas", + "(UTC+08) - Australia/Eucla", + "(UTC+09) - Australia/Darwin", + "(UTC+10) - Australia/Lord_Howe", + "(UTC+11) - Pacific/Pohnpei", + "(UTC+12) - Pacific/Chatham", + "(UTC+13) - Pacific/Tongatapu", + "(UTC+14) - Pacific/Kiritimati" + ], + "type": "string" + } + } + }, + "output_schema": { + "title": "OutputModel", + "description": "GetDateTimePiece Output Model", + "type": "object", + "properties": { + "date": { + "title": "Date", + "description": "Date of the timestamp, in ISO format.", + "type": "string" + }, + "time": { + "title": "Time", + "description": "Time of the timestamp, in ISO format.", + "type": "string" + }, + "datetime": { + "title": "Datetime", + "description": "Datetime of the timestamp, in ISO format.", + "type": "string" + } + }, + "required": [ + "date", + "time", + "datetime" + ] + }, + "secrets_schema": null, + "source_url": "https://github.com/Tauffer-Consulting/default_domino_pieces/tree/main/pieces/GetDateTimePiece" + }, "CustomPythonPiece": { "name": "CustomPythonPiece", "dependency": { @@ -146,59 +256,6 @@ "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": { @@ -396,114 +453,57 @@ "secrets_schema": null, "source_url": "https://github.com/Tauffer-Consulting/default_domino_pieces/tree/main/pieces/SimpleLogPiece" }, - "GetDateTimePiece": { - "name": "GetDateTimePiece", + "SleepPiece": { + "name": "SleepPiece", "dependency": { "dockerfile": null, "requirements_file": "requirements_0.txt" }, "tags": [ - "datetime", - "default" + "Sleep", + "Default" ], "style": { - "node_label": "Get Datetime", + "node_label": "Sleep Piece", "node_type": "default", "node_style": { "backgroundColor": "#b3cde8" }, "useIcon": true, - "icon_class_name": "fa:calendar-o", + "icon_class_name": "fa-solid:hourglass-start", "iconStyle": { "cursor": "pointer" } }, - "description": "A Piece that gets current system date and time.", + "description": "A Piece that executes a Python sleep function for a user-defined duration", "input_schema": { "title": "InputModel", - "description": "GetDateTimePiece Input Model", + "description": "Sleep Piece Input Model", "type": "object", "properties": { - "use_timezone": { - "title": "Use Timezone", - "description": "Whether to use a timezone for the timestamp.", - "default": false, - "type": "boolean" - }, - "timezone": { - "description": "Timezone to use for timestamp.", - "default": "(UTC+00) - UTC", - "allOf": [ - { - "$ref": "#/definitions/TZOptions" - } - ] - } - }, - "definitions": { - "TZOptions": { - "title": "TZOptions", - "description": "An enumeration.", - "enum": [ - "(UTC-11) - Pacific/Pago_Pago", - "(UTC-10) - US/Hawaii", - "(UTC-09) - Pacific/Gambier", - "(UTC-08) - US/Alaska", - "(UTC-07) - US/Pacific", - "(UTC-06) - US/Mountain", - "(UTC-05) - US/Central", - "(UTC-04) - US/Eastern", - "(UTC-03) - Canada/Atlantic", - "(UTC-02) - Atlantic/South_Georgia", - "(UTC-01) - Atlantic/Cape_Verde", - "(UTC+00) - UTC", - "(UTC+01) - Europe/London", - "(UTC+02) - Europe/Zurich", - "(UTC+03) - Indian/Mayotte", - "(UTC+04) - Asia/Tehran", - "(UTC+05) - Asia/Kathmandu", - "(UTC+06) - Indian/Cocos", - "(UTC+07) - Indian/Christmas", - "(UTC+08) - Australia/Eucla", - "(UTC+09) - Australia/Darwin", - "(UTC+10) - Australia/Lord_Howe", - "(UTC+11) - Pacific/Pohnpei", - "(UTC+12) - Pacific/Chatham", - "(UTC+13) - Pacific/Tongatapu", - "(UTC+14) - Pacific/Kiritimati" - ], - "type": "string" + "sleep_time": { + "title": "Sleep Time", + "description": "Number of seconds to sleep", + "default": 1, + "required": true, + "type": "number" } } }, "output_schema": { "title": "OutputModel", - "description": "GetDateTimePiece Output Model", + "description": "Sleep Piece Output Model", "type": "object", "properties": { - "date": { - "title": "Date", - "description": "Date of the timestamp, in ISO format.", - "type": "string" - }, - "time": { - "title": "Time", - "description": "Time of the timestamp, in ISO format.", - "type": "string" - }, - "datetime": { - "title": "Datetime", - "description": "Datetime of the timestamp, in ISO format.", + "message": { + "title": "Message", + "description": "Sleep piece executed", + "default": "", "type": "string" } - }, - "required": [ - "date", - "time", - "datetime" - ] + } }, "secrets_schema": null, - "source_url": "https://github.com/Tauffer-Consulting/default_domino_pieces/tree/main/pieces/GetDateTimePiece" + "source_url": "https://github.com/Tauffer-Consulting/default_domino_pieces/tree/main/pieces/SleepPiece" } } \ No newline at end of file diff --git a/.domino/dependencies_map.json b/.domino/dependencies_map.json index 71b4504..03a4fc5 100644 --- a/.domino/dependencies_map.json +++ b/.domino/dependencies_map.json @@ -5,12 +5,12 @@ "requirements_file": "requirements_0.txt" }, "pieces": [ + "GetDateTimePiece", "CustomPythonPiece", - "SleepPiece", "SimpleLogPiece", - "GetDateTimePiece" + "SleepPiece" ], "secrets": [], - "source_image": "ghcr.io/tauffer-consulting/default_domino_pieces:0.4.2-group0" + "source_image": "ghcr.io/tauffer-consulting/default_domino_pieces:0.4.3-group0" } } \ No newline at end of file