diff --git a/.domino/compiled_metadata.json b/.domino/compiled_metadata.json index 615d5b6..dce9ea4 100644 --- a/.domino/compiled_metadata.json +++ b/.domino/compiled_metadata.json @@ -1,72 +1,4 @@ { - "YDataProfilingPiece": { - "name": "YDataProfilingPiece", - "dependency": { - "dockerfile": null, - "requirements_file": "requirements_0.txt" - }, - "tags": [ - "default", - "eda" - ], - "style": { - "node_label": "Data Profiling", - "node_type": "default", - "node_style": { - "backgroundColor": "#ebebeb" - }, - "useIcon": true, - "icon_class_name": "mingcute:profile-line", - "iconStyle": { - "cursor": "pointer" - } - }, - "description": "Piece that uses ydata-profiling to create fast EDA.", - "input_schema": { - "properties": { - "data_path": { - "description": "Path to the CSV file to be profiled", - "from_upstream": "always", - "title": "CSV file path", - "type": "string" - }, - "report_tile": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": "Profiling Report", - "description": "Title of the report", - "title": "Report title" - } - }, - "required": [ - "data_path" - ], - "title": "InputModel", - "type": "object" - }, - "output_schema": { - "properties": { - "profile_file_path": { - "description": "Path to the output file.", - "title": "Output file path", - "type": "string" - } - }, - "required": [ - "profile_file_path" - ], - "title": "OutputModel", - "type": "object" - }, - "secrets_schema": null, - "source_url": "https://github.com/Tauffer-Consulting/default_domino_pieces/tree/main/pieces/YDataProfilingPiece" - }, "CustomPythonPiece": { "name": "CustomPythonPiece", "dependency": { @@ -211,7 +143,7 @@ "type": "array" }, "script": { - "default": "# Do not modify the function definition line\ndef custom_function(kwarg_1, kwarg_2):\n # Write your code here\n print(f\"First argument: {kwarg_1}\")\n print(f\"Second argument: {kwarg_2}\")\n\n # Return the output of the function as an object,\n # Matching the Output Args defined in the Form below\n return {\n \"output_1\": \"this is a string\",\n \"output_2\": 420\n }\n", + "default": "# Do not modify the function name in definition line\ndef custom_function(kwarg_1, kwarg_2):\n # Write your code here\n print(f\"First argument: {kwarg_1}\")\n print(f\"Second argument: {kwarg_2}\")\n\n # Return the output of the function as an object,\n # Matching the Output Args defined in the Form below\n return {\n \"output_1\": \"this is a string\",\n \"output_2\": 420\n }\n", "description": "Python script.", "from_upstream": "never", "title": "Script", @@ -253,122 +185,78 @@ "secrets_schema": null, "source_url": "https://github.com/Tauffer-Consulting/default_domino_pieces/tree/main/pieces/CustomPythonPiece" }, - "HttpRequestPiece": { - "name": "HttpRequestPiece", + "GetItemFromArrayPiece": { + "name": "GetItemFromArrayPiece", "dependency": { "dockerfile": null, "requirements_file": "requirements_0.txt" }, "tags": [ "default", - "http", - "request" + "array" ], "style": { - "node_label": "HTTP Request", + "node_label": "Get Item From Array", "node_type": "default", "node_style": { "backgroundColor": "#ebebeb" }, "useIcon": true, - "icon_class_name": "material-symbols:send", + "icon_class_name": "fluent:tray-item-remove-24-filled", "iconStyle": { "cursor": "pointer" } }, - "description": "Makes a HTTP request to a given URL.", + "description": "Get one item from an input array.", "input_schema": { "$defs": { - "MethodTypes": { + "IndexType": { "enum": [ - "GET", - "POST", - "PUT", - "DELETE" + "first", + "last", + "random", + "another" ], - "title": "MethodTypes", + "title": "IndexType", "type": "string" } }, + "description": "GetItemFromArrayPiece Input Model", "properties": { - "url": { - "description": "URL to make a request to.", - "title": "Url", - "type": "string" + "input_array": { + "description": "Input array to get item from.", + "from_upstream": "always", + "items": {}, + "title": "Input Array", + "type": "array" }, - "method": { + "index": { "allOf": [ { - "$ref": "#/$defs/MethodTypes" + "$ref": "#/$defs/IndexType" } ], - "default": "GET", - "description": "HTTP method to use." - }, - "bearer_token": { - "default": null, - "description": "Bearer token to use for authentication.", - "title": "Bearer Token", - "type": "string" + "default": "first", + "description": "Index of item to get from input array." }, - "body_json_data": { - "default": "{\n \"key_1\": \"value_1\",\n \"key_2\": \"value_2\"\n}\n", - "description": "JSON data to send in the request body.", - "title": "Body Json Data", - "type": "string", - "widget": "codeeditor-json" + "another_index": { + "default": 1, + "description": "Index number of item to get from input array.", + "minimum": 1, + "title": "Another Index", + "type": "integer" } }, "required": [ - "url" + "input_array" ], "title": "InputModel", "type": "object" }, "output_schema": { + "description": "GetItemFromArrayPiece Output Model", "properties": { - "base64_bytes_data": { - "description": "Output data as base64 encoded string.", - "title": "Base64 Bytes Data", - "type": "string" - } - }, - "required": [ - "base64_bytes_data" - ], - "title": "OutputModel", - "type": "object" - }, - "secrets_schema": null, - "source_url": "https://github.com/Tauffer-Consulting/default_domino_pieces/tree/main/pieces/HttpRequestPiece" - }, - "ToStringPiece": { - "name": "ToStringPiece", - "dependency": { - "dockerfile": null, - "requirements_file": "requirements_0.txt" - }, - "tags": [ - "default", - "string" - ], - "style": { - "node_label": "To String", - "node_type": "default", - "node_style": { - "backgroundColor": "#ebebeb" - }, - "useIcon": true, - "icon_class_name": "solar:text-bold", - "iconStyle": { - "cursor": "pointer" - } - }, - "description": "A Piece that transforms any input to string.", - "input_schema": { - "description": "ToStringPiece Input Model", - "properties": { - "input_value": { + "output_value": { "anyOf": [ { "type": "string" @@ -402,24 +290,8 @@ "type": "string" } ], - "description": "Input value to be turned into string.", - "from_upstream": "always", - "title": "Input Value" - } - }, - "required": [ - "input_value" - ], - "title": "InputModel", - "type": "object" - }, - "output_schema": { - "description": "ToStringPiece Output Model", - "properties": { - "output_value": { - "description": "Input value as a string.", - "title": "Output Value", - "type": "string" + "description": "Item from input array at specified index.", + "title": "Output Value" } }, "required": [ @@ -429,67 +301,334 @@ "type": "object" }, "secrets_schema": null, - "source_url": "https://github.com/Tauffer-Consulting/default_domino_pieces/tree/main/pieces/ToStringPiece" + "source_url": "https://github.com/Tauffer-Consulting/default_domino_pieces/tree/main/pieces/GetItemFromArrayPiece" }, - "StringConditionChecksPiece": { - "name": "StringConditionChecksPiece", + "ToyDatasetsPiece": { + "name": "ToyDatasetsPiece", "dependency": { "dockerfile": null, "requirements_file": "requirements_0.txt" }, "tags": [ "default", - "string" + "datasets" ], "style": { - "node_label": "String Conditions Checks", + "node_label": "Toy Datasets", "node_type": "default", "node_style": { "backgroundColor": "#ebebeb" }, "useIcon": true, - "icon_class_name": "mdi:format-letter-matches", + "icon_class_name": "lucide:toy-brick", "iconStyle": { "cursor": "pointer" } }, - "description": "A Piece that checks conditions on a string", + "description": "Load toy datasets from scikit-learn", "input_schema": { "$defs": { - "ChecksTypes": { + "DatasetName": { "enum": [ - "contains_case_sensitive", - "contains_case_insensitive", - "length_greater_than", - "length_greater_than_or_equal_to", - "length_less_than", - "length_less_than_or_equal_to", - "length_equal_to", - "regex_match" + "iris", + "diabetes", + "digits", + "wine", + "breast_cancer", + "linnerrud" ], - "title": "ChecksTypes", + "title": "DatasetName", "type": "string" - }, - "LogicalOperators": { - "enum": [ - "and", - "or" + } + }, + "properties": { + "dataset": { + "allOf": [ + { + "$ref": "#/$defs/DatasetName" + } ], - "title": "LogicalOperators", - "type": "string" - }, - "OperationItem": { - "properties": { - "operation": { - "allOf": [ - { - "$ref": "#/$defs/ChecksTypes" - } - ], - "description": "Operation to perform.\nOptions: `contains_case_sensitive`, `contains_case_insensitive`, `length_greater_than`, `length_greater_than_or_equal_to`, `length_less_than`, `length_less_than_or_equal_to`, `length_equal_to`, `regex_match`.\n", - "from_upstream": "never" - }, - "second_argument": { + "default": "iris", + "title": "Dataset name" + } + }, + "title": "InputModel", + "type": "object" + }, + "output_schema": { + "properties": { + "file_path": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "File path" + } + }, + "title": "OutputModel", + "type": "object" + }, + "secrets_schema": null, + "source_url": "https://github.com/Tauffer-Consulting/default_domino_pieces/tree/main/pieces/ToyDatasetsPiece" + }, + "SaveImagePiece": { + "name": "SaveImagePiece", + "dependency": { + "dockerfile": null, + "requirements_file": "requirements_0.txt" + }, + "tags": [ + "default", + "image" + ], + "style": { + "node_label": "Save Image", + "node_type": "default", + "node_style": { + "backgroundColor": "#ebebeb" + }, + "useIcon": true, + "icon_class_name": "material-symbols:image-outline", + "iconStyle": { + "cursor": "pointer" + } + }, + "description": "Save base64 as image file to results folder.", + "input_schema": { + "properties": { + "base64_data": { + "description": "Input data to be saved as image.", + "title": "Base64 Data", + "type": "string" + } + }, + "required": [ + "base64_data" + ], + "title": "InputModel", + "type": "object" + }, + "output_schema": { + "properties": { + "output_image_path": { + "description": "Output file path of the saved image.", + "title": "Output Image Path", + "type": "string" + } + }, + "required": [ + "output_image_path" + ], + "title": "OutputModel", + "type": "object" + }, + "secrets_schema": null, + "source_url": "https://github.com/Tauffer-Consulting/default_domino_pieces/tree/main/pieces/SaveImagePiece" + }, + "ImageFilterPiece": { + "name": "ImageFilterPiece", + "dependency": { + "dockerfile": null, + "requirements_file": "requirements_0.txt" + }, + "tags": [ + "default", + "image" + ], + "style": { + "node_label": "Image Filter", + "node_type": "default", + "node_style": { + "backgroundColor": "#ebebeb" + }, + "useIcon": true, + "icon_class_name": "ic:twotone-filter", + "iconStyle": { + "cursor": "pointer" + } + }, + "description": "A Piece that applies selected image filters to an image.", + "input_schema": { + "$defs": { + "OutputTypeType": { + "description": "Output type for the result text", + "enum": [ + "file", + "base64_string", + "both" + ], + "title": "OutputTypeType", + "type": "string" + } + }, + "properties": { + "input_image": { + "description": "Input image. It should be either a path to a file, or a base64 encoded string.", + "from_upstream": "always", + "title": "Input Image", + "type": "string" + }, + "sepia": { + "default": false, + "description": "Apply sepia effect.", + "title": "Sepia", + "type": "boolean" + }, + "black_and_white": { + "default": false, + "description": "Apply black and white effect.", + "title": "Black And White", + "type": "boolean" + }, + "brightness": { + "default": false, + "description": "Apply brightness effect.", + "title": "Brightness", + "type": "boolean" + }, + "darkness": { + "default": false, + "description": "Apply darkness effect.", + "title": "Darkness", + "type": "boolean" + }, + "contrast": { + "default": false, + "description": "Apply contrast effect.", + "title": "Contrast", + "type": "boolean" + }, + "red": { + "default": false, + "description": "Apply red effect.", + "title": "Red", + "type": "boolean" + }, + "green": { + "default": false, + "description": "Apply green effect.", + "title": "Green", + "type": "boolean" + }, + "blue": { + "default": false, + "description": "Apply blue effect.", + "title": "Blue", + "type": "boolean" + }, + "cool": { + "default": false, + "description": "Apply cool effect.", + "title": "Cool", + "type": "boolean" + }, + "warm": { + "default": false, + "description": "Apply warm effect.", + "title": "Warm", + "type": "boolean" + }, + "output_type": { + "allOf": [ + { + "$ref": "#/$defs/OutputTypeType" + } + ], + "default": "both", + "description": "Format of the output image. Options are: `file`, `base64_string`, `both`." + } + }, + "required": [ + "input_image" + ], + "title": "InputModel", + "type": "object" + }, + "output_schema": { + "properties": { + "image_base64_string": { + "default": "", + "description": "Base64 encoded string of the output image.", + "title": "Image Base64 String", + "type": "string" + }, + "image_file_path": { + "default": "", + "description": "Path to the output image file.", + "title": "Image File Path", + "type": "string" + } + }, + "title": "OutputModel", + "type": "object" + }, + "secrets_schema": null, + "source_url": "https://github.com/Tauffer-Consulting/default_domino_pieces/tree/main/pieces/ImageFilterPiece" + }, + "StringConditionChecksPiece": { + "name": "StringConditionChecksPiece", + "dependency": { + "dockerfile": null, + "requirements_file": "requirements_0.txt" + }, + "tags": [ + "default", + "string" + ], + "style": { + "node_label": "String Conditions Checks", + "node_type": "default", + "node_style": { + "backgroundColor": "#ebebeb" + }, + "useIcon": true, + "icon_class_name": "mdi:format-letter-matches", + "iconStyle": { + "cursor": "pointer" + } + }, + "description": "A Piece that checks conditions on a string", + "input_schema": { + "$defs": { + "ChecksTypes": { + "enum": [ + "contains_case_sensitive", + "contains_case_insensitive", + "length_greater_than", + "length_greater_than_or_equal_to", + "length_less_than", + "length_less_than_or_equal_to", + "length_equal_to", + "regex_match" + ], + "title": "ChecksTypes", + "type": "string" + }, + "LogicalOperators": { + "enum": [ + "and", + "or" + ], + "title": "LogicalOperators", + "type": "string" + }, + "OperationItem": { + "properties": { + "operation": { + "allOf": [ + { + "$ref": "#/$defs/ChecksTypes" + } + ], + "description": "Operation to perform.\nOptions: `contains_case_sensitive`, `contains_case_insensitive`, `length_greater_than`, `length_greater_than_or_equal_to`, `length_less_than`, `length_less_than_or_equal_to`, `length_equal_to`, `regex_match`.\n", + "from_upstream": "never" + }, + "second_argument": { "default": "", "description": "Value for the second argument.\nIf `contains_case_sensitive` or `contains_case_insensitive` are selected, this argument will be used as the string to search for.\nIf `length_greater_than`, `length_greater_than_or_equal_to`, `length_less_than`, `length_less_than_or_equal_to` or `length_equal_to` are selected, this argument will be used as the integer value to compare with.\nIf `regex_match` is selected, this argument will be used as the string to match with the regex pattern.\n", "title": "Second Argument", @@ -551,240 +690,168 @@ "secrets_schema": null, "source_url": "https://github.com/Tauffer-Consulting/default_domino_pieces/tree/main/pieces/StringConditionChecksPiece" }, - "LogPiece": { - "name": "LogPiece", + "LoremIpsumGeneratorPiece": { + "name": "LoremIpsumGeneratorPiece", "dependency": { "dockerfile": null, "requirements_file": "requirements_0.txt" }, "tags": [ "default", - "log" + "text" ], "style": { - "node_label": "Log", + "node_label": "Lorem Ipsum Generator", "node_type": "default", "node_style": { "backgroundColor": "#ebebeb" }, "useIcon": true, - "icon_class_name": "fa-solid:file-alt", + "icon_class_name": "carbon:character-sentence-case", "iconStyle": { "cursor": "pointer" } }, - "description": "A Piece that logs its inputs.", + "description": "A Piece that generates Lorem Ipsum text.", "input_schema": { "$defs": { - "InputEnum": { + "ItemsType": { "enum": [ - "option1", - "option2", - "option3" + "words", + "sentences", + "paragraphs" ], - "title": "InputEnum", + "title": "ItemsType", "type": "string" } }, - "description": "LogPiece Input Model", + "description": "LoremIpsumGeneratorPiece Input Model", "properties": { - "input_str": { - "default": "default value", - "description": "Input string to be logged.", - "title": "Input Str", - "type": "string" - }, - "input_int": { - "default": 10, - "description": "Input integer to be logged.", - "title": "Input Int", - "type": "integer" - }, - "input_float": { - "default": 10.5, - "description": "Input float to be logged.", - "title": "Input Float", - "type": "number" - }, - "input_bool": { - "default": false, - "description": "Input boolean to be logged.", - "title": "Input Bool", - "type": "boolean" - }, - "input_enum": { + "items": { "allOf": [ { - "$ref": "#/$defs/InputEnum" + "$ref": "#/$defs/ItemsType" } ], - "default": "option1", - "description": "Input enum to be logged." - }, - "input_date": { - "default": "2023-01-01", - "description": "Input date to be logged.", - "format": "date", - "title": "Input Date", - "type": "string" - }, - "input_time": { - "default": "16:20:00", - "description": "Input time to be logged.", - "format": "time", - "title": "Input Time", - "type": "string" - }, - "input_datetime": { - "default": "2023-01-01T16:20:00", - "description": "Input datetime to be logged.", - "format": "date-time", - "title": "Input Datetime", - "type": "string" - }, - "input_array": { - "default": [ - "default_1", - "default_2", - "default_3" - ], - "description": "Input array to be logged.", - "items": { - "type": "string" - }, - "title": "Input Array", - "type": "array" + "default": "words", + "description": "Type of items to generate." }, - "input_code": { - "default": "print('Hello world!')", - "description": "Input code to be logged.", - "title": "Input Code", - "type": "string", - "widget": "codeeditor" + "number_of_items": { + "default": 1, + "description": "Number of items to generate.", + "title": "Number Of Items", + "type": "integer" } }, "title": "InputModel", "type": "object" }, "output_schema": { - "description": "LogPiece Output Model", + "description": "LoremIpsumGeneratorPiece Output Model", "properties": { - "output_log": { - "description": "All values logged.", - "title": "Output Log", + "output_text": { + "description": "Generated text.", + "title": "Output Text", "type": "string" - }, - "output_str": { + } + }, + "required": [ + "output_text" + ], + "title": "OutputModel", + "type": "object" + }, + "secrets_schema": null, + "source_url": "https://github.com/Tauffer-Consulting/default_domino_pieces/tree/main/pieces/LoremIpsumGeneratorPiece" + }, + "ToStringPiece": { + "name": "ToStringPiece", + "dependency": { + "dockerfile": null, + "requirements_file": "requirements_0.txt" + }, + "tags": [ + "default", + "string" + ], + "style": { + "node_label": "To String", + "node_type": "default", + "node_style": { + "backgroundColor": "#ebebeb" + }, + "useIcon": true, + "icon_class_name": "solar:text-bold", + "iconStyle": { + "cursor": "pointer" + } + }, + "description": "A Piece that transforms any input to string.", + "input_schema": { + "description": "ToStringPiece Input Model", + "properties": { + "input_value": { "anyOf": [ { - "type": "string" - }, - { - "type": "null" - } - ], - "description": "Output string logged.", - "title": "Output Str" - }, - "output_int": { - "anyOf": [ + "type": "string" + }, { - "type": "integer" + "items": {}, + "type": "array" }, { - "type": "null" - } - ], - "description": "Output integer logged.", - "title": "Output Int" - }, - "output_float": { - "anyOf": [ + "type": "integer" + }, { "type": "number" }, - { - "type": "null" - } - ], - "description": "Output float logged.", - "title": "Output Float" - }, - "output_bool": { - "anyOf": [ { "type": "boolean" }, { - "type": "null" - } - ], - "description": "Output boolean logged.", - "title": "Output Bool" - }, - "output_enum": { - "anyOf": [ + "type": "object" + }, { + "format": "date", "type": "string" }, { - "type": "null" + "format": "time", + "type": "string" + }, + { + "format": "date-time", + "type": "string" } ], - "description": "Output enum logged.", - "title": "Output Enum" - }, - "output_date": { - "description": "Output date logged.", - "format": "date", - "title": "Output Date", - "type": "string" - }, - "output_time": { - "description": "Output time logged.", - "format": "time", - "title": "Output Time", - "type": "string" - }, - "output_datetime": { - "description": "Output datetime logged.", - "format": "date-time", - "title": "Output Datetime", + "description": "Input value to be turned into string.", + "from_upstream": "always", + "title": "Input Value" + } + }, + "required": [ + "input_value" + ], + "title": "InputModel", + "type": "object" + }, + "output_schema": { + "description": "ToStringPiece Output Model", + "properties": { + "output_value": { + "description": "Input value as a string.", + "title": "Output Value", "type": "string" - }, - "output_array": { - "description": "Output array logged.", - "items": { - "type": "string" - }, - "title": "Output Array", - "type": "array" - }, - "output_code": { - "description": "Output code logged.", - "title": "Output Code", - "type": "string", - "widget": "codeeditor" } }, "required": [ - "output_log", - "output_str", - "output_int", - "output_float", - "output_bool", - "output_enum", - "output_date", - "output_time", - "output_datetime", - "output_array", - "output_code" + "output_value" ], "title": "OutputModel", "type": "object" }, "secrets_schema": null, - "source_url": "https://github.com/Tauffer-Consulting/default_domino_pieces/tree/main/pieces/LogPiece" + "source_url": "https://github.com/Tauffer-Consulting/default_domino_pieces/tree/main/pieces/ToStringPiece" }, "GetDateTimePiece": { "name": "GetDateTimePiece", @@ -898,802 +965,822 @@ "secrets_schema": null, "source_url": "https://github.com/Tauffer-Consulting/default_domino_pieces/tree/main/pieces/GetDateTimePiece" }, - "SleepPiece": { - "name": "SleepPiece", + "LogPiece": { + "name": "LogPiece", "dependency": { "dockerfile": null, "requirements_file": "requirements_0.txt" }, "tags": [ "default", - "sleep" + "log" ], "style": { - "node_label": "Sleep", + "node_label": "Log", "node_type": "default", "node_style": { "backgroundColor": "#ebebeb" }, "useIcon": true, - "icon_class_name": "fa-solid:hourglass-start", + "icon_class_name": "fa-solid:file-alt", "iconStyle": { "cursor": "pointer" } }, - "description": "A Piece that sleeps for a given number of seconds.", + "description": "A Piece that logs its inputs.", "input_schema": { - "description": "Sleep Piece Input Model", - "properties": { - "sleep_time": { - "default": 1, - "description": "Number of seconds to sleep", - "title": "Sleep Time", - "type": "number" + "$defs": { + "InputEnum": { + "enum": [ + "option1", + "option2", + "option3" + ], + "title": "InputEnum", + "type": "string" } }, - "title": "InputModel", - "type": "object" - }, - "output_schema": { - "description": "Sleep Piece Output Model", + "description": "LogPiece Input Model", "properties": { - "message": { - "description": "Sleep piece executed", - "title": "Message", + "input_str": { + "default": "default value", + "description": "Input string to be logged.", + "title": "Input Str", "type": "string" - } - }, - "required": [ - "message" - ], - "title": "OutputModel", - "type": "object" - }, - "secrets_schema": null, - "source_url": "https://github.com/Tauffer-Consulting/default_domino_pieces/tree/main/pieces/SleepPiece" - }, - "DataConversionPiece": { - "name": "DataConversionPiece", - "dependency": { - "dockerfile": null, - "requirements_file": "requirements_0.txt" - }, - "tags": [ - "data", - "conversion", - "default" - ], - "style": { - "node_label": "Data Conversion Piece", - "node_type": "default", - "node_style": { - "backgroundColor": "#ebebeb" - }, - "useIcon": true, - "icon_class_name": "icon-park-outline:file-conversion", - "iconStyle": { - "cursor": "pointer" - } - }, - "description": "Convert data from one format to another", - "input_schema": { - "$defs": { - "DataFormatOption": { - "enum": [ - "csv", - "json" + }, + "input_int": { + "default": 10, + "description": "Input integer to be logged.", + "title": "Input Int", + "type": "integer" + }, + "input_float": { + "default": 10.5, + "description": "Input float to be logged.", + "title": "Input Float", + "type": "number" + }, + "input_bool": { + "default": false, + "description": "Input boolean to be logged.", + "title": "Input Bool", + "type": "boolean" + }, + "input_enum": { + "allOf": [ + { + "$ref": "#/$defs/InputEnum" + } ], - "title": "DataFormatOption", + "default": "option1", + "description": "Input enum to be logged." + }, + "input_date": { + "default": "2023-01-01", + "description": "Input date to be logged.", + "format": "date", + "title": "Input Date", + "type": "string" + }, + "input_time": { + "default": "16:20:00", + "description": "Input time to be logged.", + "format": "time", + "title": "Input Time", + "type": "string" + }, + "input_datetime": { + "default": "2023-01-01T16:20:00", + "description": "Input datetime to be logged.", + "format": "date-time", + "title": "Input Datetime", "type": "string" + }, + "input_array": { + "default": [ + "default_1", + "default_2", + "default_3" + ], + "description": "Input array to be logged.", + "items": { + "type": "string" + }, + "title": "Input Array", + "type": "array" + }, + "input_code": { + "default": "print('Hello world!')", + "description": "Input code to be logged.", + "title": "Input Code", + "type": "string", + "widget": "codeeditor" } }, + "title": "InputModel", + "type": "object" + }, + "output_schema": { + "description": "LogPiece Output Model", "properties": { - "input_data": { - "description": "Input data to be converted. Can be a file path or data as string.", - "title": "Input Data", + "output_log": { + "description": "All values logged.", + "title": "Output Log", "type": "string" }, - "input_data_format": { - "allOf": [ + "output_str": { + "anyOf": [ { - "$ref": "#/$defs/DataFormatOption" + "type": "string" + }, + { + "type": "null" } ], - "default": "csv", - "description": "Input data format to be converted." + "description": "Output string logged.", + "title": "Output Str" }, - "output_data_format": { - "allOf": [ + "output_int": { + "anyOf": [ { - "$ref": "#/$defs/DataFormatOption" + "type": "integer" + }, + { + "type": "null" } ], - "default": "json", - "description": "Output data format." - } - }, - "required": [ - "input_data" - ], - "title": "InputModel", - "type": "object" - }, - "output_schema": { - "properties": { - "output_file_path": { - "description": "Path to the converted file.", - "title": "Output File Path", + "description": "Output integer logged.", + "title": "Output Int" + }, + "output_float": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "description": "Output float logged.", + "title": "Output Float" + }, + "output_bool": { + "anyOf": [ + { + "type": "boolean" + }, + { + "type": "null" + } + ], + "description": "Output boolean logged.", + "title": "Output Bool" + }, + "output_enum": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "description": "Output enum logged.", + "title": "Output Enum" + }, + "output_date": { + "description": "Output date logged.", + "format": "date", + "title": "Output Date", + "type": "string" + }, + "output_time": { + "description": "Output time logged.", + "format": "time", + "title": "Output Time", "type": "string" + }, + "output_datetime": { + "description": "Output datetime logged.", + "format": "date-time", + "title": "Output Datetime", + "type": "string" + }, + "output_array": { + "description": "Output array logged.", + "items": { + "type": "string" + }, + "title": "Output Array", + "type": "array" + }, + "output_code": { + "description": "Output code logged.", + "title": "Output Code", + "type": "string", + "widget": "codeeditor" } }, "required": [ - "output_file_path" + "output_log", + "output_str", + "output_int", + "output_float", + "output_bool", + "output_enum", + "output_date", + "output_time", + "output_datetime", + "output_array", + "output_code" ], "title": "OutputModel", "type": "object" }, "secrets_schema": null, - "source_url": "https://github.com/Tauffer-Consulting/default_domino_pieces/tree/main/pieces/DataConversionPiece" + "source_url": "https://github.com/Tauffer-Consulting/default_domino_pieces/tree/main/pieces/LogPiece" }, - "StringOperationsPiece": { - "name": "StringOperationsPiece", + "PageScrapperPiece": { + "name": "PageScrapperPiece", "dependency": { "dockerfile": null, "requirements_file": "requirements_0.txt" }, "tags": [ "default", - "string" + "scrapper" ], "style": { - "node_label": "String Operations", + "node_label": "Page Scrapper", "node_type": "default", "node_style": { "backgroundColor": "#ebebeb" }, "useIcon": true, - "icon_class_name": "tabler:sort-a-z", + "icon_class_name": "lucide:text-selection", "iconStyle": { "cursor": "pointer" } }, - "description": "A Piece that performs string operations", + "description": "Scrapes text from a web page, given a URL and a list of HTML tags.", "input_schema": { "$defs": { - "OperationItem": { + "ItemType": { "properties": { - "operation": { - "allOf": [ + "tag": { + "default": "p", + "description": "HTML tag name.", + "title": "Tag", + "type": "string" + }, + "class_name": { + "anyOf": [ { - "$ref": "#/$defs/OperationsTypes" + "type": "string" + }, + { + "type": "null" } ], - "description": "Operation to perform. Options: `concatenate`, `lower_case`, `upper_case`, `split_by`, `replace_by`.", - "from_upstream": "never" - }, - "second_argument": { - "default": "", - "description": "Value for the second argument.", - "title": "Second Argument", - "type": "string" - }, - "auxiliary_argument": { "default": "", - "description": "Auxiliary argument for `split_by` and `replace_by` operations.\nIf `split_by` is selected, this argument will be used as the index of the split array.\nIf `replace_by` is selected, this argument will be used as the string to replace.\n", - "title": "Auxiliary Argument", - "type": "string" + "description": "HTML tag class name.", + "title": "Class Name" } }, - "required": [ - "operation" - ], - "title": "OperationItem", + "title": "ItemType", "type": "object" - }, - "OperationsTypes": { - "enum": [ - "concatenate", - "lower_case", - "upper_case", - "split_by", - "replace_by", - "strip_spaces" - ], - "title": "OperationsTypes", - "type": "string" } }, + "description": "PageScrapperPiece Input Model", "properties": { - "first_argument": { - "description": "Value for the first argument.", - "title": "First Argument", + "url": { + "default": "", + "description": "URL to retrieve content from.", + "title": "Url", "type": "string" }, - "operations": { - "description": "Sequence of operations to perform.", + "search_items": { + "default": [ + { + "class_name": "", + "tag": "p" + } + ], + "description": "List of HTML tags and class names to search for.", "items": { - "$ref": "#/$defs/OperationItem" + "$ref": "#/$defs/ItemType" }, - "title": "Operations", + "title": "Search Items", "type": "array" } }, - "required": [ - "first_argument", - "operations" - ], "title": "InputModel", "type": "object" }, "output_schema": { + "description": "PageScrapperPiece Output Model", "properties": { - "output_string": { - "description": "Output string.", - "title": "Output String", + "scrapped_text": { + "description": "Scrapped text from the URL.", + "title": "Scrapped Text", "type": "string" } }, "required": [ - "output_string" + "scrapped_text" ], "title": "OutputModel", "type": "object" }, "secrets_schema": null, - "source_url": "https://github.com/Tauffer-Consulting/default_domino_pieces/tree/main/pieces/StringOperationsPiece" + "source_url": "https://github.com/Tauffer-Consulting/default_domino_pieces/tree/main/pieces/PageScrapperPiece" }, - "LoremIpsumGeneratorPiece": { - "name": "LoremIpsumGeneratorPiece", + "SleepPiece": { + "name": "SleepPiece", "dependency": { "dockerfile": null, "requirements_file": "requirements_0.txt" }, "tags": [ "default", - "text" + "sleep" ], "style": { - "node_label": "Lorem Ipsum Generator", + "node_label": "Sleep", "node_type": "default", "node_style": { "backgroundColor": "#ebebeb" }, - "useIcon": true, - "icon_class_name": "carbon:character-sentence-case", - "iconStyle": { - "cursor": "pointer" - } - }, - "description": "A Piece that generates Lorem Ipsum text.", - "input_schema": { - "$defs": { - "ItemsType": { - "enum": [ - "words", - "sentences", - "paragraphs" - ], - "title": "ItemsType", - "type": "string" - } - }, - "description": "LoremIpsumGeneratorPiece Input Model", + "useIcon": true, + "icon_class_name": "fa-solid:hourglass-start", + "iconStyle": { + "cursor": "pointer" + } + }, + "description": "A Piece that sleeps for a given number of seconds.", + "input_schema": { + "description": "Sleep Piece Input Model", "properties": { - "items": { - "allOf": [ - { - "$ref": "#/$defs/ItemsType" - } - ], - "default": "words", - "description": "Type of items to generate." - }, - "number_of_items": { + "sleep_time": { "default": 1, - "description": "Number of items to generate.", - "title": "Number Of Items", - "type": "integer" + "description": "Number of seconds to sleep", + "title": "Sleep Time", + "type": "number" } }, "title": "InputModel", "type": "object" }, "output_schema": { - "description": "LoremIpsumGeneratorPiece Output Model", + "description": "Sleep Piece Output Model", "properties": { - "output_text": { - "description": "Generated text.", - "title": "Output Text", + "message": { + "description": "Sleep piece executed", + "title": "Message", "type": "string" } }, "required": [ - "output_text" + "message" ], "title": "OutputModel", "type": "object" }, "secrets_schema": null, - "source_url": "https://github.com/Tauffer-Consulting/default_domino_pieces/tree/main/pieces/LoremIpsumGeneratorPiece" + "source_url": "https://github.com/Tauffer-Consulting/default_domino_pieces/tree/main/pieces/SleepPiece" }, - "SaveImagePiece": { - "name": "SaveImagePiece", + "HttpRequestPiece": { + "name": "HttpRequestPiece", "dependency": { "dockerfile": null, "requirements_file": "requirements_0.txt" }, "tags": [ "default", - "image" + "http", + "request" ], "style": { - "node_label": "Save Image", + "node_label": "HTTP Request", "node_type": "default", "node_style": { "backgroundColor": "#ebebeb" }, "useIcon": true, - "icon_class_name": "material-symbols:image-outline", + "icon_class_name": "material-symbols:send", "iconStyle": { "cursor": "pointer" } }, - "description": "Save base64 as image file to results folder.", + "description": "Makes a HTTP request to a given URL.", "input_schema": { + "$defs": { + "MethodTypes": { + "enum": [ + "GET", + "POST", + "PUT", + "DELETE" + ], + "title": "MethodTypes", + "type": "string" + } + }, "properties": { - "base64_data": { - "description": "Input data to be saved as image.", - "title": "Base64 Data", + "url": { + "description": "URL to make a request to.", + "title": "Url", + "type": "string" + }, + "method": { + "allOf": [ + { + "$ref": "#/$defs/MethodTypes" + } + ], + "default": "GET", + "description": "HTTP method to use." + }, + "bearer_token": { + "default": null, + "description": "Bearer token to use for authentication.", + "title": "Bearer Token", "type": "string" + }, + "body_json_data": { + "default": "{\n \"key_1\": \"value_1\",\n \"key_2\": \"value_2\"\n}\n", + "description": "JSON data to send in the request body.", + "title": "Body Json Data", + "type": "string", + "widget": "codeeditor-json" } }, "required": [ - "base64_data" + "url" ], "title": "InputModel", "type": "object" }, "output_schema": { "properties": { - "output_image_path": { - "description": "Output file path of the saved image.", - "title": "Output Image Path", + "base64_bytes_data": { + "description": "Output data as base64 encoded string.", + "title": "Base64 Bytes Data", "type": "string" } }, "required": [ - "output_image_path" + "base64_bytes_data" ], "title": "OutputModel", "type": "object" }, "secrets_schema": null, - "source_url": "https://github.com/Tauffer-Consulting/default_domino_pieces/tree/main/pieces/SaveImagePiece" + "source_url": "https://github.com/Tauffer-Consulting/default_domino_pieces/tree/main/pieces/HttpRequestPiece" }, - "ImageFilterPiece": { - "name": "ImageFilterPiece", + "StringOperationsPiece": { + "name": "StringOperationsPiece", "dependency": { "dockerfile": null, "requirements_file": "requirements_0.txt" }, "tags": [ "default", - "image" + "string" ], "style": { - "node_label": "Image Filter", + "node_label": "String Operations", "node_type": "default", "node_style": { "backgroundColor": "#ebebeb" }, "useIcon": true, - "icon_class_name": "ic:twotone-filter", + "icon_class_name": "tabler:sort-a-z", "iconStyle": { "cursor": "pointer" } }, - "description": "A Piece that applies selected image filters to an image.", + "description": "A Piece that performs string operations", "input_schema": { "$defs": { - "OutputTypeType": { - "description": "Output type for the result text", + "OperationItem": { + "properties": { + "operation": { + "allOf": [ + { + "$ref": "#/$defs/OperationsTypes" + } + ], + "description": "Operation to perform. Options: `concatenate`, `lower_case`, `upper_case`, `split_by`, `replace_by`.", + "from_upstream": "never" + }, + "second_argument": { + "default": "", + "description": "Value for the second argument.", + "title": "Second Argument", + "type": "string" + }, + "auxiliary_argument": { + "default": "", + "description": "Auxiliary argument for `split_by` and `replace_by` operations.\nIf `split_by` is selected, this argument will be used as the index of the split array.\nIf `replace_by` is selected, this argument will be used as the string to replace.\n", + "title": "Auxiliary Argument", + "type": "string" + } + }, + "required": [ + "operation" + ], + "title": "OperationItem", + "type": "object" + }, + "OperationsTypes": { "enum": [ - "file", - "base64_string", - "both" + "concatenate", + "lower_case", + "upper_case", + "split_by", + "replace_by", + "strip_spaces" ], - "title": "OutputTypeType", + "title": "OperationsTypes", "type": "string" } }, "properties": { - "input_image": { - "description": "Input image. It should be either a path to a file, or a base64 encoded string.", - "from_upstream": "always", - "title": "Input Image", + "first_argument": { + "description": "Value for the first argument.", + "title": "First Argument", "type": "string" }, - "sepia": { - "default": false, - "description": "Apply sepia effect.", - "title": "Sepia", - "type": "boolean" - }, - "black_and_white": { - "default": false, - "description": "Apply black and white effect.", - "title": "Black And White", - "type": "boolean" - }, - "brightness": { - "default": false, - "description": "Apply brightness effect.", - "title": "Brightness", - "type": "boolean" - }, - "darkness": { - "default": false, - "description": "Apply darkness effect.", - "title": "Darkness", - "type": "boolean" - }, - "contrast": { - "default": false, - "description": "Apply contrast effect.", - "title": "Contrast", - "type": "boolean" - }, - "red": { - "default": false, - "description": "Apply red effect.", - "title": "Red", - "type": "boolean" - }, - "green": { - "default": false, - "description": "Apply green effect.", - "title": "Green", - "type": "boolean" - }, - "blue": { - "default": false, - "description": "Apply blue effect.", - "title": "Blue", - "type": "boolean" - }, - "cool": { - "default": false, - "description": "Apply cool effect.", - "title": "Cool", - "type": "boolean" - }, - "warm": { - "default": false, - "description": "Apply warm effect.", - "title": "Warm", - "type": "boolean" - }, - "output_type": { - "allOf": [ - { - "$ref": "#/$defs/OutputTypeType" - } - ], - "default": "both", - "description": "Format of the output image. Options are: `file`, `base64_string`, `both`." + "operations": { + "description": "Sequence of operations to perform.", + "items": { + "$ref": "#/$defs/OperationItem" + }, + "title": "Operations", + "type": "array" } }, "required": [ - "input_image" + "first_argument", + "operations" ], "title": "InputModel", "type": "object" }, - "output_schema": { - "properties": { - "image_base64_string": { - "default": "", - "description": "Base64 encoded string of the output image.", - "title": "Image Base64 String", - "type": "string" - }, - "image_file_path": { - "default": "", - "description": "Path to the output image file.", - "title": "Image File Path", + "output_schema": { + "properties": { + "output_string": { + "description": "Output string.", + "title": "Output String", "type": "string" } }, + "required": [ + "output_string" + ], "title": "OutputModel", "type": "object" }, "secrets_schema": null, - "source_url": "https://github.com/Tauffer-Consulting/default_domino_pieces/tree/main/pieces/ImageFilterPiece" + "source_url": "https://github.com/Tauffer-Consulting/default_domino_pieces/tree/main/pieces/StringOperationsPiece" }, - "ToyDatasetsPiece": { - "name": "ToyDatasetsPiece", + "DataConversionPiece": { + "name": "DataConversionPiece", "dependency": { "dockerfile": null, "requirements_file": "requirements_0.txt" }, "tags": [ - "default", - "datasets" + "data", + "conversion", + "default" ], "style": { - "node_label": "Toy Datasets", + "node_label": "Data Conversion Piece", "node_type": "default", "node_style": { "backgroundColor": "#ebebeb" }, "useIcon": true, - "icon_class_name": "lucide:toy-brick", + "icon_class_name": "icon-park-outline:file-conversion", "iconStyle": { "cursor": "pointer" } }, - "description": "Load toy datasets from scikit-learn", + "description": "Convert data from one format to another", "input_schema": { "$defs": { - "DatasetName": { + "DataFormatOption": { "enum": [ - "iris", - "diabetes", - "digits", - "wine", - "breast_cancer", - "linnerrud" + "csv", + "json" ], - "title": "DatasetName", + "title": "DataFormatOption", "type": "string" } }, "properties": { - "dataset": { + "input_data": { + "description": "Input data to be converted. Can be a file path or data as string.", + "title": "Input Data", + "type": "string" + }, + "input_data_format": { "allOf": [ { - "$ref": "#/$defs/DatasetName" + "$ref": "#/$defs/DataFormatOption" } ], - "default": "iris", - "title": "Dataset name" + "default": "csv", + "description": "Input data format to be converted." + }, + "output_data_format": { + "allOf": [ + { + "$ref": "#/$defs/DataFormatOption" + } + ], + "default": "json", + "description": "Output data format." } }, + "required": [ + "input_data" + ], "title": "InputModel", "type": "object" }, "output_schema": { "properties": { - "file_path": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "File path" + "output_file_path": { + "description": "Path to the converted file.", + "title": "Output File Path", + "type": "string" } }, + "required": [ + "output_file_path" + ], "title": "OutputModel", "type": "object" }, "secrets_schema": null, - "source_url": "https://github.com/Tauffer-Consulting/default_domino_pieces/tree/main/pieces/ToyDatasetsPiece" + "source_url": "https://github.com/Tauffer-Consulting/default_domino_pieces/tree/main/pieces/DataConversionPiece" }, - "PageScrapperPiece": { - "name": "PageScrapperPiece", + "YDataProfilingPiece": { + "name": "YDataProfilingPiece", "dependency": { "dockerfile": null, "requirements_file": "requirements_0.txt" }, "tags": [ "default", - "scrapper" + "eda" ], "style": { - "node_label": "Page Scrapper", + "node_label": "Data Profiling", "node_type": "default", "node_style": { "backgroundColor": "#ebebeb" }, "useIcon": true, - "icon_class_name": "lucide:text-selection", + "icon_class_name": "mingcute:profile-line", "iconStyle": { "cursor": "pointer" } }, - "description": "Scrapes text from a web page, given a URL and a list of HTML tags.", + "description": "Piece that uses ydata-profiling to create fast EDA.", "input_schema": { - "$defs": { - "ItemType": { - "properties": { - "tag": { - "default": "p", - "description": "HTML tag name.", - "title": "Tag", - "type": "string" - }, - "class_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": "", - "description": "HTML tag class name.", - "title": "Class Name" - } - }, - "title": "ItemType", - "type": "object" - } - }, - "description": "PageScrapperPiece Input Model", "properties": { - "url": { - "default": "", - "description": "URL to retrieve content from.", - "title": "Url", + "data_path": { + "description": "Path to the CSV file to be profiled", + "from_upstream": "always", + "title": "CSV file path", "type": "string" }, - "search_items": { - "default": [ + "report_tile": { + "anyOf": [ { - "class_name": "", - "tag": "p" + "type": "string" + }, + { + "type": "null" } ], - "description": "List of HTML tags and class names to search for.", - "items": { - "$ref": "#/$defs/ItemType" - }, - "title": "Search Items", - "type": "array" + "default": "Profiling Report", + "description": "Title of the report", + "title": "Report title" } }, + "required": [ + "data_path" + ], "title": "InputModel", "type": "object" }, "output_schema": { - "description": "PageScrapperPiece Output Model", "properties": { - "scrapped_text": { - "description": "Scrapped text from the URL.", - "title": "Scrapped Text", + "profile_file_path": { + "description": "Path to the output file.", + "title": "Output file path", "type": "string" } }, "required": [ - "scrapped_text" + "profile_file_path" ], "title": "OutputModel", "type": "object" }, "secrets_schema": null, - "source_url": "https://github.com/Tauffer-Consulting/default_domino_pieces/tree/main/pieces/PageScrapperPiece" + "source_url": "https://github.com/Tauffer-Consulting/default_domino_pieces/tree/main/pieces/YDataProfilingPiece" }, - "GetItemFromArrayPiece": { - "name": "GetItemFromArrayPiece", + "RenameTabularColumnsPiece": { + "name": "RenameTabularColumnsPiece", "dependency": { "dockerfile": null, "requirements_file": "requirements_0.txt" }, "tags": [ "default", - "array" + "pandas", + "dataframe" ], "style": { - "node_label": "Get Item From Array", + "node_label": "Rename Tabular Columns", "node_type": "default", "node_style": { "backgroundColor": "#ebebeb" }, "useIcon": true, - "icon_class_name": "fluent:tray-item-remove-24-filled", + "icon_class_name": "icon-park-twotone:data-file", "iconStyle": { "cursor": "pointer" } }, - "description": "Get one item from an input array.", + "description": "A piece that receives an dataframe and a dictionary with the columns to rename and returns the dataframe with the columns renamed.", "input_schema": { "$defs": { - "IndexType": { - "enum": [ - "first", - "last", - "random", - "another" + "ColumnsToRename": { + "description": "ColumnsToRename Model", + "properties": { + "old_column_name": { + "title": "Old Column Name", + "type": "string" + }, + "new_column_name": { + "title": "New Column Name", + "type": "string" + } + }, + "required": [ + "old_column_name", + "new_column_name" ], - "title": "IndexType", - "type": "string" + "title": "ColumnsToRename", + "type": "object" } }, - "description": "GetItemFromArrayPiece Input Model", + "description": "GetDateTimePiece Input Model", "properties": { - "input_array": { - "description": "Input array to get item from.", - "from_upstream": "always", - "items": {}, - "title": "Input Array", - "type": "array" - }, - "index": { - "allOf": [ - { - "$ref": "#/$defs/IndexType" - } - ], - "default": "first", - "description": "Index of item to get from input array." + "input_data": { + "description": "Input data.", + "title": "Input Data", + "type": "string" }, - "another_index": { - "default": 1, - "description": "Index number of item to get from input array.", - "minimum": 1, - "title": "Another Index", - "type": "integer" + "columns_to_rename": { + "description": "List of columns to rename.", + "items": { + "$ref": "#/$defs/ColumnsToRename" + }, + "title": "Columns to Rename", + "type": "array" } }, "required": [ - "input_array" + "input_data", + "columns_to_rename" ], "title": "InputModel", "type": "object" }, "output_schema": { - "description": "GetItemFromArrayPiece Output Model", + "description": "GetDateTimePiece Output Model", "properties": { - "output_value": { - "anyOf": [ - { - "type": "string" - }, - { - "items": {}, - "type": "array" - }, - { - "type": "integer" - }, - { - "type": "number" - }, - { - "type": "boolean" - }, - { - "type": "object" - }, - { - "format": "date", - "type": "string" - }, - { - "format": "time", - "type": "string" - }, - { - "format": "date-time", - "type": "string" - } - ], - "description": "Item from input array at specified index.", - "title": "Output Value" + "output_data": { + "description": "Output data.", + "title": "Output Data", + "type": "string" } }, "required": [ - "output_value" + "output_data" ], "title": "OutputModel", "type": "object" }, "secrets_schema": null, - "source_url": "https://github.com/Tauffer-Consulting/default_domino_pieces/tree/main/pieces/GetItemFromArrayPiece" + "source_url": "https://github.com/Tauffer-Consulting/default_domino_pieces/tree/main/pieces/RenameTabularColumnsPiece" } } \ No newline at end of file diff --git a/.domino/dependencies_map.json b/.domino/dependencies_map.json index 0ef16a1..bfd20b9 100644 --- a/.domino/dependencies_map.json +++ b/.domino/dependencies_map.json @@ -5,22 +5,23 @@ "requirements_file": "requirements_0.txt" }, "pieces": [ - "YDataProfilingPiece", "CustomPythonPiece", - "HttpRequestPiece", - "ToStringPiece", + "GetItemFromArrayPiece", + "ToyDatasetsPiece", + "SaveImagePiece", + "ImageFilterPiece", "StringConditionChecksPiece", - "LogPiece", + "LoremIpsumGeneratorPiece", + "ToStringPiece", "GetDateTimePiece", + "LogPiece", + "PageScrapperPiece", "SleepPiece", - "DataConversionPiece", + "HttpRequestPiece", "StringOperationsPiece", - "LoremIpsumGeneratorPiece", - "SaveImagePiece", - "ImageFilterPiece", - "ToyDatasetsPiece", - "PageScrapperPiece", - "GetItemFromArrayPiece" + "DataConversionPiece", + "YDataProfilingPiece", + "RenameTabularColumnsPiece" ], "secrets": [], "source_image": "ghcr.io/tauffer-consulting/default_domino_pieces:development-group0"