diff --git a/definitions/standard/runtime_functions/text/std_text_start_with.proto.json b/definitions/standard/runtime_functions/text/std_text_start_with.proto.json deleted file mode 100644 index 8cd913d..0000000 --- a/definitions/standard/runtime_functions/text/std_text_start_with.proto.json +++ /dev/null @@ -1,72 +0,0 @@ -{ - "runtimeName": "std::text::start_with", - "runtimeParameterDefinitions": [ - { - "runtimeName": "value", - "defaultValue": null, - "name": [ - { - "code": "en-US", - "content": "Text" - } - ], - "description": [ - { - "code": "en-US", - "content": "The input text to check." - } - ], - "documentation": [] - }, - { - "runtimeName": "prefix", - "defaultValue": null, - "name": [ - { - "code": "en-US", - "content": "Prefix" - } - ], - "description": [ - { - "code": "en-US", - "content": "The prefix to test against the input text." - } - ], - "documentation": [] - } - ], - "throwsError": false, - "name": [ - { - "code": "en-US", - "content": "Starts With" - } - ], - "description": [ - { - "code": "en-US", - "content": "Returns true if the input text begins with the given prefix. Otherwise, returns false." - } - ], - "documentation": [], - "alias": [ - { - "code": "en-US", - "content": "text;string;std;start;with" - } - ], - "displayMessage": [ - { - "code": "en-US", - "content": "Check if ${value} starts with ${prefix}" - } - ], - "deprecationMessage": [], - "displayIcon": "tabler:abc", - "signature": "(value: TEXT, prefix: TEXT): BOOLEAN", - "linkedDataTypeIdentifiers": [ - "TEXT", - "BOOLEAN" - ] -} diff --git a/definitions/standard/runtime_functions/text/std_text_starts_with.proto.json b/definitions/standard/runtime_functions/text/std_text_starts_with.proto.json new file mode 100644 index 0000000..ac3bcbf --- /dev/null +++ b/definitions/standard/runtime_functions/text/std_text_starts_with.proto.json @@ -0,0 +1,72 @@ +{ + "runtimeName": "std::text::starts_with", + "runtimeParameterDefinitions": [ + { + "runtimeName": "value", + "defaultValue": null, + "name": [ + { + "code": "en-US", + "content": "Text" + } + ], + "description": [ + { + "code": "en-US", + "content": "The input text to check." + } + ], + "documentation": [] + }, + { + "runtimeName": "prefix", + "defaultValue": null, + "name": [ + { + "code": "en-US", + "content": "Prefix" + } + ], + "description": [ + { + "code": "en-US", + "content": "The prefix to test against the input text." + } + ], + "documentation": [] + } + ], + "throwsError": false, + "name": [ + { + "code": "en-US", + "content": "Starts With" + } + ], + "description": [ + { + "code": "en-US", + "content": "Returns true if the input text begins with the given prefix. Otherwise, returns false." + } + ], + "documentation": [], + "alias": [ + { + "code": "en-US", + "content": "text;string;std;start;with;starts" + } + ], + "displayMessage": [ + { + "code": "en-US", + "content": "Check if ${value} starts with ${prefix}" + } + ], + "deprecationMessage": [], + "displayIcon": "tabler:abc", + "signature": "(value: TEXT, prefix: TEXT): BOOLEAN", + "linkedDataTypeIdentifiers": [ + "TEXT", + "BOOLEAN" + ] +}