@xano/xanoscript-language-server 11.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/settings.local.json +27 -0
- package/.github/copilot-instructions.md +190 -0
- package/.github/workflows/ci.yml +31 -0
- package/.husky/pre-commit +1 -0
- package/CLAUDE.md +121 -0
- package/LICENSE +21 -0
- package/README.md +55 -0
- package/connection.js +7 -0
- package/documents.js +5 -0
- package/embedded/README.md +102 -0
- package/embedded/embeddedContent.js +74 -0
- package/embedded/embeddedDocuments.js +57 -0
- package/embedded/jsLanguageService.js +74 -0
- package/eslint.config.js +24 -0
- package/language-server-worker.js +52 -0
- package/lexer/action.js +31 -0
- package/lexer/addon.js +31 -0
- package/lexer/agent.js +37 -0
- package/lexer/agent_trigger.js +42 -0
- package/lexer/ai.js +82 -0
- package/lexer/api.js +81 -0
- package/lexer/api_group.js +58 -0
- package/lexer/arrays.js +161 -0
- package/lexer/branch.js +31 -0
- package/lexer/cast.js +105 -0
- package/lexer/cloud.js +159 -0
- package/lexer/columns.js +234 -0
- package/lexer/comment.js +61 -0
- package/lexer/comment.spec.js +77 -0
- package/lexer/control.js +634 -0
- package/lexer/db.js +190 -0
- package/lexer/debug.js +37 -0
- package/lexer/expect.js +157 -0
- package/lexer/function.js +36 -0
- package/lexer/identifier.js +6 -0
- package/lexer/lexer.js +26 -0
- package/lexer/literal.js +77 -0
- package/lexer/math.js +97 -0
- package/lexer/mcp_server.js +51 -0
- package/lexer/mcp_server_trigger.js +42 -0
- package/lexer/middleware.js +42 -0
- package/lexer/multiline.js +24 -0
- package/lexer/multiline.spec.js +179 -0
- package/lexer/object.js +44 -0
- package/lexer/query.js +99 -0
- package/lexer/realtime_trigger.js +50 -0
- package/lexer/redis.js +145 -0
- package/lexer/security.js +161 -0
- package/lexer/storage.js +99 -0
- package/lexer/stream.js +49 -0
- package/lexer/table.js +38 -0
- package/lexer/table_trigger.js +50 -0
- package/lexer/task.js +83 -0
- package/lexer/tests/query/query_lexer.spec.js +36 -0
- package/lexer/tests/query/valid_sources/basic_query.xs +44 -0
- package/lexer/tests/query/valid_sources/db_query.xs +77 -0
- package/lexer/tests/query/valid_sources/empty_query.xs +5 -0
- package/lexer/tests/query/valid_sources/header_query.xs +15 -0
- package/lexer/tests/table/basic_table.xs +17 -0
- package/lexer/tests/table/empty_table.xs +3 -0
- package/lexer/tests/table/table_lexer.spec.js +324 -0
- package/lexer/text.js +114 -0
- package/lexer/tokens.js +526 -0
- package/lexer/tool.js +39 -0
- package/lexer/util.js +113 -0
- package/lexer/utils.js +56 -0
- package/lexer/utils.spec.js +61 -0
- package/lexer/var.js +30 -0
- package/lexer/variables.js +217 -0
- package/lexer/workflow_test.js +42 -0
- package/lexer/workspace.js +23 -0
- package/lexer/workspace_trigger.js +42 -0
- package/lexer/zip.js +63 -0
- package/logic-assistant-script.js +8 -0
- package/onCheckError/onCheckError.js +43 -0
- package/onCompletion/contentAssist.js +183 -0
- package/onCompletion/contentAssist.spec.js +275 -0
- package/onCompletion/onCompletion.js +38 -0
- package/onDidChangeContent/onDidChangeContent.js +128 -0
- package/onHover/FilterMessageProvider.js +102 -0
- package/onHover/FilterMessageProvider.spec.js +85 -0
- package/onHover/FunctionMessageProvider.js +122 -0
- package/onHover/FunctionMessageProvider.spec.js +128 -0
- package/onHover/HoverMessageProvider.js +31 -0
- package/onHover/InputFilterMessageProvider.js +140 -0
- package/onHover/InputFilterMessageProvider.spec.js +329 -0
- package/onHover/InputVariableMessageProvider.js +55 -0
- package/onHover/QueryFilterMessageProvider.spec.js +164 -0
- package/onHover/filters.md +2852 -0
- package/onHover/functions.md +2617 -0
- package/onHover/inputFilters.md +271 -0
- package/onHover/onHover.js +40 -0
- package/onHover/onHoverDocument.js +64 -0
- package/onHover/onHoverDocument.spec.js +486 -0
- package/onHover/queryFilterMessageProvider.js +122 -0
- package/onHover/queryFilters.md +489 -0
- package/onSemanticCheck/highlight.js +45 -0
- package/onSemanticCheck/onSemanticCheck.js +25 -0
- package/onSemanticCheck/tokens.js +40 -0
- package/package.json +48 -0
- package/parser/addon_parser.js +90 -0
- package/parser/addon_parser.spec.js +88 -0
- package/parser/agent_parser.js +281 -0
- package/parser/agent_parser.spec.js +599 -0
- package/parser/agent_trigger_parser.js +138 -0
- package/parser/agent_trigger_parser.spec.js +525 -0
- package/parser/api_group_parser.js +143 -0
- package/parser/api_group_parser.spec.js +127 -0
- package/parser/attributes/columnDefaultValueAttribute.js +33 -0
- package/parser/attributes/columnDefaultValueAttribute.spec.js +49 -0
- package/parser/attributes/descriptionFieldAttribute.js +24 -0
- package/parser/attributes/descriptionFieldAttribute.spec.js +39 -0
- package/parser/attributes/disabledFieldAttribute.js +19 -0
- package/parser/attributes/disabledFieldAttribute.spec.js +34 -0
- package/parser/attributes/docsFieldAttribute.js +24 -0
- package/parser/attributes/docsFieldAttribute.spec.js +39 -0
- package/parser/attributes/inputFilterFn.js +71 -0
- package/parser/attributes/inputFilterFn.spec.js +39 -0
- package/parser/attributes/register.js +41 -0
- package/parser/attributes/sensitiveFieldAttribute.js +17 -0
- package/parser/attributes/sensitiveFieldAttribute.spec.js +39 -0
- package/parser/attributes/valueFieldAttribute.js +17 -0
- package/parser/attributes/valueFieldAttribute.spec.js +54 -0
- package/parser/attributes/valuesFieldAttribute.js +18 -0
- package/parser/attributes/valuesFieldAttribute.spec.js +44 -0
- package/parser/base_parser.js +249 -0
- package/parser/branch_parser.js +49 -0
- package/parser/branch_parser.spec.js +34 -0
- package/parser/clauses/agentClause.js +23 -0
- package/parser/clauses/agentClause.spec.js +34 -0
- package/parser/clauses/authClause.js +17 -0
- package/parser/clauses/authClause.spec.js +39 -0
- package/parser/clauses/cacheClause.js +32 -0
- package/parser/clauses/cacheClause.spec.js +103 -0
- package/parser/clauses/canonicalClause.js +23 -0
- package/parser/clauses/canonicalClause.spec.js +34 -0
- package/parser/clauses/channelClause.js +23 -0
- package/parser/clauses/channelClause.spec.js +34 -0
- package/parser/clauses/dbTableClause.js +23 -0
- package/parser/clauses/dbTableClause.spec.js +34 -0
- package/parser/clauses/flexibleStringClause.js +43 -0
- package/parser/clauses/historyClause.js +19 -0
- package/parser/clauses/historyClause.spec.js +53 -0
- package/parser/clauses/indexClause.js +36 -0
- package/parser/clauses/indexClause.spec.js +47 -0
- package/parser/clauses/inputClause.js +35 -0
- package/parser/clauses/inputClause.spec.js +79 -0
- package/parser/clauses/mcpServerClause.js +23 -0
- package/parser/clauses/mcpServerClause.spec.js +34 -0
- package/parser/clauses/middlewareClause.js +39 -0
- package/parser/clauses/middlewareClause.spec.js +161 -0
- package/parser/clauses/nakedStackFn.js +69 -0
- package/parser/clauses/nakedStackFn.spec.js +63 -0
- package/parser/clauses/outputClause.js +33 -0
- package/parser/clauses/register.js +50 -0
- package/parser/clauses/responseClause.js +17 -0
- package/parser/clauses/responseClause.spec.js +42 -0
- package/parser/clauses/scheduleClause.js +37 -0
- package/parser/clauses/scheduleClause.spec.js +71 -0
- package/parser/clauses/schemaClause.js +66 -0
- package/parser/clauses/schemaClause.spec.js +66 -0
- package/parser/clauses/stackClause.js +16 -0
- package/parser/clauses/testClause.js +73 -0
- package/parser/clauses/testClause.spec.js +78 -0
- package/parser/clauses/viewClause.js +49 -0
- package/parser/clauses/viewClause.spec.js +154 -0
- package/parser/definitions/arraySlice.js +70 -0
- package/parser/definitions/arraySlice.spec.js +49 -0
- package/parser/definitions/columnDefinition.js +139 -0
- package/parser/definitions/columnDefinition.spec.js +199 -0
- package/parser/definitions/dbLinkColumnDefinition.js +24 -0
- package/parser/definitions/dbLinkColumnDefinition.spec.js +45 -0
- package/parser/definitions/enumColumnDefinition.js +55 -0
- package/parser/definitions/enumColumnDefinition.spec.js +108 -0
- package/parser/definitions/filterDefinition.js +23 -0
- package/parser/definitions/filterDefinition.spec.js +43 -0
- package/parser/definitions/objectColumnDefinition.js +52 -0
- package/parser/definitions/objectColumnDefinition.spec.js +118 -0
- package/parser/definitions/register.js +28 -0
- package/parser/function_parser.js +123 -0
- package/parser/function_parser.spec.js +83 -0
- package/parser/functions/actionCallFn.js +41 -0
- package/parser/functions/actionCallFn.spec.js +51 -0
- package/parser/functions/addonCallFn.js +39 -0
- package/parser/functions/addonCallFn.spec.js +41 -0
- package/parser/functions/ai/aiAgentRunFn.js +40 -0
- package/parser/functions/ai/aiAgentRunFn.spec.js +94 -0
- package/parser/functions/ai/aiExternalMcpServerDetailsFn.js +28 -0
- package/parser/functions/ai/aiExternalMcpServerDetailsFn.spec.js +85 -0
- package/parser/functions/ai/aiExternalMcpToolListFn.js +28 -0
- package/parser/functions/ai/aiExternalMcpToolListFn.spec.js +85 -0
- package/parser/functions/ai/aiExternalMcpToolRunFn.js +30 -0
- package/parser/functions/ai/aiExternalMcpToolRunFn.spec.js +101 -0
- package/parser/functions/ai/register.js +24 -0
- package/parser/functions/aiFn.js +61 -0
- package/parser/functions/aiFn.spec.js +51 -0
- package/parser/functions/api/apiCallFn.js +49 -0
- package/parser/functions/api/apiCallFn.spec.js +60 -0
- package/parser/functions/api/apiLambdaFn.js +19 -0
- package/parser/functions/api/apiLambdaFn.spec.js +63 -0
- package/parser/functions/api/apiRealtimeEventFn.js +25 -0
- package/parser/functions/api/apiRealtimeEventFn.spec.js +82 -0
- package/parser/functions/api/apiRequestFn.js +47 -0
- package/parser/functions/api/apiRequestFn.spec.js +113 -0
- package/parser/functions/api/apiStreamFn.js +22 -0
- package/parser/functions/api/apiStreamFn.spec.js +44 -0
- package/parser/functions/api/register.js +19 -0
- package/parser/functions/api/webflowRequestFn.js +47 -0
- package/parser/functions/api/webflowRequestFn.spec.js +114 -0
- package/parser/functions/apiFn.js +24 -0
- package/parser/functions/array/arrayDifferenceFn.js +37 -0
- package/parser/functions/array/arrayDifferenceFn.spec.js +34 -0
- package/parser/functions/array/arrayEveryFn.js +13 -0
- package/parser/functions/array/arrayFilterCountFn.js +14 -0
- package/parser/functions/array/arrayFilterFn.js +14 -0
- package/parser/functions/array/arrayFindFn.js +14 -0
- package/parser/functions/array/arrayFindFn.spec.js +44 -0
- package/parser/functions/array/arrayFindIndexFn.js +14 -0
- package/parser/functions/array/arrayGroupByFn.js +36 -0
- package/parser/functions/array/arrayGroupByFn.spec.js +41 -0
- package/parser/functions/array/arrayHasFn.js +14 -0
- package/parser/functions/array/arrayIntersectionFn.js +37 -0
- package/parser/functions/array/arrayIntersectionFn.spec.js +22 -0
- package/parser/functions/array/arrayMapFn.js +36 -0
- package/parser/functions/array/arrayMapFn.spec.js +37 -0
- package/parser/functions/array/arrayMergeFn.js +17 -0
- package/parser/functions/array/arrayNoValueAs.js +31 -0
- package/parser/functions/array/arrayNoValueAs.spec.js +56 -0
- package/parser/functions/array/arrayPartitionFn.js +19 -0
- package/parser/functions/array/arrayPartitionFn.spec.js +29 -0
- package/parser/functions/array/arrayPopFn.js +17 -0
- package/parser/functions/array/arrayPushFn.js +14 -0
- package/parser/functions/array/arrayShiftFn.js +15 -0
- package/parser/functions/array/arrayUnionFn.js +37 -0
- package/parser/functions/array/arrayUnionFn.spec.js +22 -0
- package/parser/functions/array/arrayUnshiftFn.js +14 -0
- package/parser/functions/array/arrayValueIfAs.js +51 -0
- package/parser/functions/array/arrayValueIfAs.spec.js +54 -0
- package/parser/functions/array/arrayValueOnly.js +40 -0
- package/parser/functions/array/arrayValueOnly.spec.js +61 -0
- package/parser/functions/array/register.js +49 -0
- package/parser/functions/array/valueAttrOnly.js +47 -0
- package/parser/functions/array/valueAttrOnly.spec.js +61 -0
- package/parser/functions/arrayFn.js +33 -0
- package/parser/functions/cloud/cloudAlgoliaFn.js +18 -0
- package/parser/functions/cloud/cloudAlgoliaRequestFn.js +26 -0
- package/parser/functions/cloud/cloudAlgoliaRequestFn.spec.js +30 -0
- package/parser/functions/cloud/cloudAwsFn.js +19 -0
- package/parser/functions/cloud/cloudAwsOpenSearchFn.js +19 -0
- package/parser/functions/cloud/cloudAwsS3Fn.js +22 -0
- package/parser/functions/cloud/cloudAwsS3Fn.spec.js +21 -0
- package/parser/functions/cloud/cloudAzureFn.js +18 -0
- package/parser/functions/cloud/cloudDeleteFileFn.js +23 -0
- package/parser/functions/cloud/cloudDeleteFileFn.spec.js +25 -0
- package/parser/functions/cloud/cloudElasticSearchFn.js +19 -0
- package/parser/functions/cloud/cloudGetFileInfoFn.js +24 -0
- package/parser/functions/cloud/cloudGetFileInfoFn.spec.js +25 -0
- package/parser/functions/cloud/cloudGoogleFn.js +18 -0
- package/parser/functions/cloud/cloudListDirectoryFn.js +24 -0
- package/parser/functions/cloud/cloudListDirectoryFn.spec.js +26 -0
- package/parser/functions/cloud/cloudReadFileFn.js +24 -0
- package/parser/functions/cloud/cloudReadFileFn.spec.js +25 -0
- package/parser/functions/cloud/cloudSearchDocumentFn.js +24 -0
- package/parser/functions/cloud/cloudSearchDocumentFn.spec.js +28 -0
- package/parser/functions/cloud/cloudSearchQueryFn.js +24 -0
- package/parser/functions/cloud/cloudSearchQueryFn.spec.js +32 -0
- package/parser/functions/cloud/cloudSearchRequestFn.js +24 -0
- package/parser/functions/cloud/cloudSearchRequestFn.spec.js +32 -0
- package/parser/functions/cloud/cloudSignUrlFn.js +24 -0
- package/parser/functions/cloud/cloudSignUrlFn.spec.js +26 -0
- package/parser/functions/cloud/cloudStorageFn.js +23 -0
- package/parser/functions/cloud/cloudStorageFn.spec.js +21 -0
- package/parser/functions/cloud/cloudUploadFileFn.js +24 -0
- package/parser/functions/cloud/cloudUploadFileFn.spec.js +29 -0
- package/parser/functions/cloud/register.js +61 -0
- package/parser/functions/cloudFn.js +21 -0
- package/parser/functions/controlFn.js +34 -0
- package/parser/functions/controls/awaitFn.js +21 -0
- package/parser/functions/controls/awaitFn.spec.js +48 -0
- package/parser/functions/controls/conditionalElifFn.js +19 -0
- package/parser/functions/controls/conditionalElseFn.js +13 -0
- package/parser/functions/controls/conditionalFn.js +62 -0
- package/parser/functions/controls/conditionalFn.spec.js +167 -0
- package/parser/functions/controls/conditionalIfFn.js +19 -0
- package/parser/functions/controls/forEachFn.js +70 -0
- package/parser/functions/controls/forEachFn.spec.js +101 -0
- package/parser/functions/controls/forFn.js +55 -0
- package/parser/functions/controls/forFn.spec.js +85 -0
- package/parser/functions/controls/functionCallFn.js +38 -0
- package/parser/functions/controls/functionRunFn.js +40 -0
- package/parser/functions/controls/functionRunFn.spec.js +77 -0
- package/parser/functions/controls/groupFn.js +42 -0
- package/parser/functions/controls/groupFn.spec.js +63 -0
- package/parser/functions/controls/preconditionFn.js +40 -0
- package/parser/functions/controls/preconditionFn.spec.js +97 -0
- package/parser/functions/controls/register.js +45 -0
- package/parser/functions/controls/returnFn.js +21 -0
- package/parser/functions/controls/returnFn.spec.js +44 -0
- package/parser/functions/controls/switchCaseFn.js +22 -0
- package/parser/functions/controls/switchDefaultFn.js +13 -0
- package/parser/functions/controls/switchFn.js +50 -0
- package/parser/functions/controls/switchFn.spec.js +104 -0
- package/parser/functions/controls/taskCallFn.js +31 -0
- package/parser/functions/controls/throwFn.js +21 -0
- package/parser/functions/controls/throwFn.spec.js +56 -0
- package/parser/functions/controls/tryCatchFn.js +67 -0
- package/parser/functions/controls/tryCatchFn.spec.js +180 -0
- package/parser/functions/controls/whileFn.js +52 -0
- package/parser/functions/controls/whileFn.spec.js +94 -0
- package/parser/functions/db/dbAddFn.js +38 -0
- package/parser/functions/db/dbAddFn.spec.js +72 -0
- package/parser/functions/db/dbAddOrEditFn.js +39 -0
- package/parser/functions/db/dbAddOrEditFn.spec.js +97 -0
- package/parser/functions/db/dbAddonAttr.js +17 -0
- package/parser/functions/db/dbBulkAddFn.js +54 -0
- package/parser/functions/db/dbBulkAddFn.spec.js +94 -0
- package/parser/functions/db/dbBulkDeleteFn.js +35 -0
- package/parser/functions/db/dbBulkDeleteFn.spec.js +28 -0
- package/parser/functions/db/dbBulkFn.js +20 -0
- package/parser/functions/db/dbBulkPatchFn.js +35 -0
- package/parser/functions/db/dbBulkPatchFn.spec.js +42 -0
- package/parser/functions/db/dbBulkUpdateFn.js +35 -0
- package/parser/functions/db/dbBulkUpdateFn.spec.js +42 -0
- package/parser/functions/db/dbDelFn.js +34 -0
- package/parser/functions/db/dbDelFn.spec.js +62 -0
- package/parser/functions/db/dbDirectQueryFn.js +37 -0
- package/parser/functions/db/dbDirectQueryFn.spec.js +104 -0
- package/parser/functions/db/dbEditFn.js +40 -0
- package/parser/functions/db/dbEditFn.spec.js +122 -0
- package/parser/functions/db/dbExternalDirectQueryFn.js +29 -0
- package/parser/functions/db/dbExternalDirectQueryFn.spec.js +103 -0
- package/parser/functions/db/dbExternalFn.js +29 -0
- package/parser/functions/db/dbGetFn.js +40 -0
- package/parser/functions/db/dbGetFn.spec.js +117 -0
- package/parser/functions/db/dbHasFn.js +34 -0
- package/parser/functions/db/dbHasFn.spec.js +62 -0
- package/parser/functions/db/dbPatchFn.js +39 -0
- package/parser/functions/db/dbPatchFn.spec.js +88 -0
- package/parser/functions/db/dbQueryFn.js +73 -0
- package/parser/functions/db/dbQueryFn.spec.js +333 -0
- package/parser/functions/db/dbSchemaFn.js +25 -0
- package/parser/functions/db/dbSchemaFn.spec.js +42 -0
- package/parser/functions/db/dbSetDatasourceFn.js +18 -0
- package/parser/functions/db/dbSetDatasourceFn.spec.js +44 -0
- package/parser/functions/db/dbTransactionFn.js +43 -0
- package/parser/functions/db/dbTransactionFn.spec.js +63 -0
- package/parser/functions/db/dbTruncateFn.js +33 -0
- package/parser/functions/db/dbTruncateFn.spec.js +42 -0
- package/parser/functions/db/register.js +52 -0
- package/parser/functions/db/schema.js +8 -0
- package/parser/functions/dbFn.js +31 -0
- package/parser/functions/debug/debugLogFn.js +21 -0
- package/parser/functions/debug/debugLogFn.spec.js +44 -0
- package/parser/functions/debug/debugStopFn.js +21 -0
- package/parser/functions/debug/debugStopFn.spec.js +44 -0
- package/parser/functions/debug/register.js +11 -0
- package/parser/functions/debugFn.js +18 -0
- package/parser/functions/expect/register.js +44 -0
- package/parser/functions/expect/unitExpectToBeWithinFn.js +28 -0
- package/parser/functions/expect/unitExpectToBeWithinFn.spec.js +61 -0
- package/parser/functions/expect/unitExpectToThrowFn.js +15 -0
- package/parser/functions/expect/unitExpectToThrowFn.spec.js +40 -0
- package/parser/functions/expect/unitExpectWithArgumentsFn.js +49 -0
- package/parser/functions/expect/unitExpectWithArgumentsFn.spec.js +341 -0
- package/parser/functions/expect/unitExpectWithoutArgumentsFn.js +42 -0
- package/parser/functions/expect/unitExpectWithoutArgumentsFn.spec.js +69 -0
- package/parser/functions/expect/workflowExpectToBeWithinFn.js +22 -0
- package/parser/functions/expect/workflowExpectToBeWithinFn.spec.js +70 -0
- package/parser/functions/expect/workflowExpectToThrowFn.js +21 -0
- package/parser/functions/expect/workflowExpectToThrowFn.spec.js +56 -0
- package/parser/functions/expect/workflowExpectWithArgumentsFn.js +40 -0
- package/parser/functions/expect/workflowExpectWithArgumentsFn.spec.js +301 -0
- package/parser/functions/expect/workflowExpectWithoutArgumentsFn.js +39 -0
- package/parser/functions/expect/workflowExpectWithoutArgumentsFn.spec.js +87 -0
- package/parser/functions/math/allMathFn.js +64 -0
- package/parser/functions/math/allMathFn.spec.js +100 -0
- package/parser/functions/math/register.js +9 -0
- package/parser/functions/mathFn.js +15 -0
- package/parser/functions/middlewareCallFn.js +43 -0
- package/parser/functions/middlewareCallFn.spec.js +44 -0
- package/parser/functions/object/objectEntriesFn.js +22 -0
- package/parser/functions/object/objectEntriesFn.spec.js +44 -0
- package/parser/functions/object/objectKeysFn.js +22 -0
- package/parser/functions/object/objectKeysFn.spec.js +44 -0
- package/parser/functions/object/objectValuesFn.js +22 -0
- package/parser/functions/object/objectValuesFn.spec.js +44 -0
- package/parser/functions/object/register.js +13 -0
- package/parser/functions/objectFn.js +22 -0
- package/parser/functions/redis/redisCountFn.js +26 -0
- package/parser/functions/redis/redisCountFn.spec.js +58 -0
- package/parser/functions/redis/redisDecrFn.js +28 -0
- package/parser/functions/redis/redisDecrFn.spec.js +47 -0
- package/parser/functions/redis/redisDelFn.js +25 -0
- package/parser/functions/redis/redisDelFn.spec.js +58 -0
- package/parser/functions/redis/redisGetFn.js +26 -0
- package/parser/functions/redis/redisGetFn.spec.js +67 -0
- package/parser/functions/redis/redisHasFn.js +26 -0
- package/parser/functions/redis/redisHasFn.spec.js +58 -0
- package/parser/functions/redis/redisIncrFn.js +28 -0
- package/parser/functions/redis/redisIncrFn.spec.js +74 -0
- package/parser/functions/redis/redisKeysFn.js +26 -0
- package/parser/functions/redis/redisKeysFn.spec.js +67 -0
- package/parser/functions/redis/redisPopFn.js +26 -0
- package/parser/functions/redis/redisPopFn.spec.js +67 -0
- package/parser/functions/redis/redisPushFn.js +28 -0
- package/parser/functions/redis/redisPushFn.spec.js +71 -0
- package/parser/functions/redis/redisRangeFn.js +30 -0
- package/parser/functions/redis/redisRangeFn.spec.js +80 -0
- package/parser/functions/redis/redisRateLimitFn.js +32 -0
- package/parser/functions/redis/redisRateLimitFn.spec.js +87 -0
- package/parser/functions/redis/redisRemoveFn.js +29 -0
- package/parser/functions/redis/redisRemoveFn.spec.js +65 -0
- package/parser/functions/redis/redisSetFn.js +29 -0
- package/parser/functions/redis/redisSetFn.spec.js +89 -0
- package/parser/functions/redis/redisShiftFn.js +26 -0
- package/parser/functions/redis/redisShiftFn.spec.js +67 -0
- package/parser/functions/redis/redisUnshiftFn.js +28 -0
- package/parser/functions/redis/redisUnshiftFn.spec.js +73 -0
- package/parser/functions/redis/register.js +37 -0
- package/parser/functions/redisFn.js +31 -0
- package/parser/functions/register.js +91 -0
- package/parser/functions/schema/register.js +30 -0
- package/parser/functions/schema/schemaFn.js +173 -0
- package/parser/functions/schema/schemaFn.spec.js +92 -0
- package/parser/functions/schema/schemaParseArrayFn.js +47 -0
- package/parser/functions/schema/schemaParseArrayFn.spec.js +134 -0
- package/parser/functions/schema/schemaParseAttributeFn.js +194 -0
- package/parser/functions/schema/schemaParseAttributeFn.spec.js +281 -0
- package/parser/functions/schema/schemaParseConstantFn.js +136 -0
- package/parser/functions/schema/schemaParseConstantFn.spec.js +122 -0
- package/parser/functions/schema/schemaParseEnum.js +52 -0
- package/parser/functions/schema/schemaParseEnum.spec.js +47 -0
- package/parser/functions/schema/schemaParseImmutableFn.js +134 -0
- package/parser/functions/schema/schemaParseImmutableFn.spec.js +99 -0
- package/parser/functions/schema/schemaParseObjectFn.js +171 -0
- package/parser/functions/schema/schemaParseObjectFn.spec.js +223 -0
- package/parser/functions/schema/utils.js +136 -0
- package/parser/functions/schema/utils.spec.js +27 -0
- package/parser/functions/security/register.js +64 -0
- package/parser/functions/security/securityCheckPasswordFn.js +24 -0
- package/parser/functions/security/securityCheckPasswordFn.spec.js +22 -0
- package/parser/functions/security/securityCreateAuthTokenFn.js +24 -0
- package/parser/functions/security/securityCreateAuthTokenFn.spec.js +24 -0
- package/parser/functions/security/securityCreateCurveKeyFn.js +19 -0
- package/parser/functions/security/securityCreateCurveKeyFn.spec.js +22 -0
- package/parser/functions/security/securityCreatePasswordFn.js +26 -0
- package/parser/functions/security/securityCreatePasswordFn.spec.js +26 -0
- package/parser/functions/security/securityCreateRsaKeyFn.js +19 -0
- package/parser/functions/security/securityCreateRsaKeyFn.spec.js +22 -0
- package/parser/functions/security/securityCreateSecretKeyFn.js +24 -0
- package/parser/functions/security/securityCreateSecretKeyFn.spec.js +22 -0
- package/parser/functions/security/securityCreateUuidFn.js +26 -0
- package/parser/functions/security/securityCreateUuidFn.spec.js +27 -0
- package/parser/functions/security/securityDecryptFn.js +24 -0
- package/parser/functions/security/securityDecryptFn.spec.js +24 -0
- package/parser/functions/security/securityEncryptFn.js +24 -0
- package/parser/functions/security/securityEncryptFn.spec.js +24 -0
- package/parser/functions/security/securityJweDecodeFn.js +24 -0
- package/parser/functions/security/securityJweDecodeFn.spec.js +26 -0
- package/parser/functions/security/securityJweEncodeFn.js +24 -0
- package/parser/functions/security/securityJweEncodeFn.spec.js +26 -0
- package/parser/functions/security/securityJwsDecodeFn.js +24 -0
- package/parser/functions/security/securityJwsDecodeFn.spec.js +25 -0
- package/parser/functions/security/securityJwsEncodeFn.js +24 -0
- package/parser/functions/security/securityJwsEncodeFn.spec.js +25 -0
- package/parser/functions/security/securityRandomBytesFn.js +24 -0
- package/parser/functions/security/securityRandomBytesFn.spec.js +21 -0
- package/parser/functions/security/securityRandomNumberFn.js +24 -0
- package/parser/functions/security/securityRandomNumberFn.spec.js +22 -0
- package/parser/functions/securityFn.js +30 -0
- package/parser/functions/storage/register.js +44 -0
- package/parser/functions/storage/storageCreateAttachmentFn.js +25 -0
- package/parser/functions/storage/storageCreateAttachmentFn.spec.js +87 -0
- package/parser/functions/storage/storageCreateAudioFn.js +29 -0
- package/parser/functions/storage/storageCreateAudioFn.spec.js +98 -0
- package/parser/functions/storage/storageCreateFileResourceFn.js +19 -0
- package/parser/functions/storage/storageCreateFileResourceFn.spec.js +72 -0
- package/parser/functions/storage/storageCreateImageFn.js +25 -0
- package/parser/functions/storage/storageCreateImageFn.spec.js +98 -0
- package/parser/functions/storage/storageCreateVideoFn.js +29 -0
- package/parser/functions/storage/storageCreateVideoFn.spec.js +99 -0
- package/parser/functions/storage/storageDeleteFileFn.js +17 -0
- package/parser/functions/storage/storageDeleteFileFn.spec.js +67 -0
- package/parser/functions/storage/storageReadFileResourceFn.js +19 -0
- package/parser/functions/storage/storageReadFileResourceFn.spec.js +60 -0
- package/parser/functions/storage/storageSignPrivateUrlFn.js +19 -0
- package/parser/functions/storage/storageSignPrivateUrlFn.spec.js +72 -0
- package/parser/functions/storageFn.js +24 -0
- package/parser/functions/stream/register.js +13 -0
- package/parser/functions/stream/streamFromCsvFn.js +20 -0
- package/parser/functions/stream/streamFromCsvFn.spec.js +69 -0
- package/parser/functions/stream/streamFromJsonlFn.js +21 -0
- package/parser/functions/stream/streamFromJsonlFn.spec.js +47 -0
- package/parser/functions/stream/streamFromRequestFn.js +50 -0
- package/parser/functions/stream/streamFromRequestFn.spec.js +103 -0
- package/parser/functions/streamFn.js +19 -0
- package/parser/functions/text/allTextWithReturnValueFn.js +36 -0
- package/parser/functions/text/allTextWithReturnValueFn.spec.js +100 -0
- package/parser/functions/text/allTextWithoutReturnValueFn.js +34 -0
- package/parser/functions/text/allTextWithoutReturnValueFn.spec.js +122 -0
- package/parser/functions/text/register.js +17 -0
- package/parser/functions/textFn.js +33 -0
- package/parser/functions/toolCallFn.js +40 -0
- package/parser/functions/toolCallFn.spec.js +28 -0
- package/parser/functions/unitExpectFn.js +20 -0
- package/parser/functions/unitExpectFn.spec.js +21 -0
- package/parser/functions/util/register.js +29 -0
- package/parser/functions/util/utilGeoDistanceFn.js +30 -0
- package/parser/functions/util/utilGeoDistanceFn.spec.js +79 -0
- package/parser/functions/util/utilGetAllInputFn.js +20 -0
- package/parser/functions/util/utilGetAllInputFn.spec.js +33 -0
- package/parser/functions/util/utilGetEnvFn.js +20 -0
- package/parser/functions/util/utilGetEnvFn.spec.js +33 -0
- package/parser/functions/util/utilGetRawInputFn.js +25 -0
- package/parser/functions/util/utilGetRawInputFn.spec.js +55 -0
- package/parser/functions/util/utilGetVarsFn.js +20 -0
- package/parser/functions/util/utilGetVarsFn.spec.js +33 -0
- package/parser/functions/util/utilIpLookupFn.js +22 -0
- package/parser/functions/util/utilIpLookupFn.spec.js +37 -0
- package/parser/functions/util/utilPostProcessFn.js +43 -0
- package/parser/functions/util/utilPostProcessFn.spec.js +63 -0
- package/parser/functions/util/utilSendEmailFn.js +108 -0
- package/parser/functions/util/utilSendEmailFn.spec.js +62 -0
- package/parser/functions/util/utilSetHeaderFn.js +22 -0
- package/parser/functions/util/utilSetHeaderFn.spec.js +48 -0
- package/parser/functions/util/utilSleepFn.js +19 -0
- package/parser/functions/util/utilSleepFn.spec.js +44 -0
- package/parser/functions/util/utilTemplateFn.js +19 -0
- package/parser/functions/util/utilTemplateFn.spec.js +78 -0
- package/parser/functions/utilFn.js +39 -0
- package/parser/functions/varFn.js +51 -0
- package/parser/functions/varFn.spec.js +173 -0
- package/parser/functions/webflowFn.js +19 -0
- package/parser/functions/workflowExpectFn.js +20 -0
- package/parser/functions/zip/register.js +20 -0
- package/parser/functions/zip/zipAddToArchiveFn.js +31 -0
- package/parser/functions/zip/zipAddToArchiveFn.spec.js +78 -0
- package/parser/functions/zip/zipCreateArchiveFn.js +29 -0
- package/parser/functions/zip/zipCreateArchiveFn.spec.js +53 -0
- package/parser/functions/zip/zipDeleteFromArchiveFn.js +23 -0
- package/parser/functions/zip/zipDeleteFromArchiveFn.spec.js +69 -0
- package/parser/functions/zip/zipExtractFn.js +23 -0
- package/parser/functions/zip/zipExtractFn.spec.js +52 -0
- package/parser/functions/zip/zipViewContentsFn.js +24 -0
- package/parser/functions/zip/zipViewContentsFn.spec.js +52 -0
- package/parser/functions/zipFn.js +21 -0
- package/parser/generic/arrayOfObjectAttrReq.js +47 -0
- package/parser/generic/arrayOfObjectAttrReq.spec.js +254 -0
- package/parser/generic/arrayOfStringLiterals.js +45 -0
- package/parser/generic/arrayOfStringLiterals.spec.js +56 -0
- package/parser/generic/arrayWithValues.js +35 -0
- package/parser/generic/arrayWithValues.spec.js +72 -0
- package/parser/generic/asVariable.js +23 -0
- package/parser/generic/asVariable.spec.js +37 -0
- package/parser/generic/assignableVariableAs.js +27 -0
- package/parser/generic/assignableVariableAs.spec.js +52 -0
- package/parser/generic/assignableVariableProperty.js +52 -0
- package/parser/generic/assignableVariableProperty.spec.js +52 -0
- package/parser/generic/booleanValue.js +22 -0
- package/parser/generic/bracketAccessor.js +53 -0
- package/parser/generic/castedValue.js +14 -0
- package/parser/generic/castedValue.spec.js +29 -0
- package/parser/generic/chainedIdentifier.js +48 -0
- package/parser/generic/chainedIdentifier.spec.js +89 -0
- package/parser/generic/completeAuthVariable.js +13 -0
- package/parser/generic/completeAuthVariable.spec.js +23 -0
- package/parser/generic/completeEnvVariable.js +79 -0
- package/parser/generic/completeEnvVariable.spec.js +94 -0
- package/parser/generic/completeErrorVariable.js +39 -0
- package/parser/generic/completeErrorVariable.spec.js +17 -0
- package/parser/generic/completeInputVariable.js +42 -0
- package/parser/generic/completeInputVariable.spec.js +53 -0
- package/parser/generic/enumValue.js +23 -0
- package/parser/generic/expressionFn.js +415 -0
- package/parser/generic/expressionFn.spec.js +588 -0
- package/parser/generic/filterFn.js +48 -0
- package/parser/generic/filterFn.spec.js +47 -0
- package/parser/generic/filterNames.js +381 -0
- package/parser/generic/functionAttrReq.js +279 -0
- package/parser/generic/functionAttrReq.spec.js +353 -0
- package/parser/generic/longFormVariable.js +46 -0
- package/parser/generic/longFormVariable.spec.js +25 -0
- package/parser/generic/minimalFnBody.js +24 -0
- package/parser/generic/minimalFnBody.spec.js +47 -0
- package/parser/generic/mockAttribute.js +21 -0
- package/parser/generic/mockAttribute.spec.js +57 -0
- package/parser/generic/multilineFilterFn.js +27 -0
- package/parser/generic/multilineFilterFn.spec.js +51 -0
- package/parser/generic/numberValue.js +27 -0
- package/parser/generic/objectAttrReq.js +243 -0
- package/parser/generic/objectAttrReq.spec.js +412 -0
- package/parser/generic/objectWithAttributes.js +74 -0
- package/parser/generic/objectWithAttributes.spec.js +147 -0
- package/parser/generic/optionalCommentBlock.js +32 -0
- package/parser/generic/pipedFilter.js +20 -0
- package/parser/generic/register.js +124 -0
- package/parser/generic/requiredValueFnBody.js +40 -0
- package/parser/generic/requiredValueFnBody.spec.js +56 -0
- package/parser/generic/shortFormVariable.js +17 -0
- package/parser/generic/shortFormVariable.spec.js +27 -0
- package/parser/generic/stringArray.js +33 -0
- package/parser/generic/stringArray.spec.js +55 -0
- package/parser/generic/tagsAttribute.js +14 -0
- package/parser/generic/tagsAttribute.spec.js +47 -0
- package/parser/generic/utils.js +14 -0
- package/parser/generic/valueExpressionForResponse.js +51 -0
- package/parser/generic/variableOnly.js +13 -0
- package/parser/generic/variableOnly.spec.js +47 -0
- package/parser/mcp_server_parser.js +130 -0
- package/parser/mcp_server_parser.spec.js +478 -0
- package/parser/mcp_server_trigger_parser.js +142 -0
- package/parser/mcp_server_trigger_parser.spec.js +396 -0
- package/parser/metadata/columnMetadataDefinition.js +32 -0
- package/parser/metadata/columnMetadataDefinition.spec.js +47 -0
- package/parser/metadata/enumColumnMetadataDefinition.js +46 -0
- package/parser/metadata/enumColumnMetadataDefinition.spec.js +59 -0
- package/parser/metadata/objectColumnMetadataDefinition.js +26 -0
- package/parser/metadata/register.js +22 -0
- package/parser/middleware_parser.js +137 -0
- package/parser/middleware_parser.spec.js +203 -0
- package/parser/parser.js +87 -0
- package/parser/query_parser.js +183 -0
- package/parser/query_parser.spec.js +141 -0
- package/parser/realtime_channel_parser.js +45 -0
- package/parser/realtime_channel_parser.spec.js +20 -0
- package/parser/realtime_trigger_parser.js +141 -0
- package/parser/realtime_trigger_parser.spec.js +469 -0
- package/parser/register.js +88 -0
- package/parser/table_parser.js +126 -0
- package/parser/table_parser.spec.js +138 -0
- package/parser/table_trigger_parser.js +144 -0
- package/parser/table_trigger_parser.spec.js +449 -0
- package/parser/task_parser.js +116 -0
- package/parser/task_parser.spec.js +83 -0
- package/parser/test_parser.js +39 -0
- package/parser/tests/agent/agent_parser.spec.js +52 -0
- package/parser/tests/agent/valid_sources/customer_servier_agent.xs +45 -0
- package/parser/tests/api_group/api_group_parser.spec.js +52 -0
- package/parser/tests/api_group/valid_sources/api_group_history.xs +4 -0
- package/parser/tests/api_group/valid_sources/basic_api_group.xs +3 -0
- package/parser/tests/api_group/valid_sources/complete_api_group.xs +7 -0
- package/parser/tests/api_group/valid_sources/protected_api_group.xs +7 -0
- package/parser/tests/function/function_parser.spec.js +52 -0
- package/parser/tests/function/valid_sources/all_controls.xs +68 -0
- package/parser/tests/function/valid_sources/all_query_return_types.xs +227 -0
- package/parser/tests/function/valid_sources/all_storage.xs +45 -0
- package/parser/tests/function/valid_sources/discord_poll_send_to_slack.xs +133 -0
- package/parser/tests/function/valid_sources/expression_in_response.xs +22 -0
- package/parser/tests/function/valid_sources/filter_by_value.xs +55 -0
- package/parser/tests/function/valid_sources/filter_query.xs +82 -0
- package/parser/tests/function/valid_sources/large_regex.xs +13 -0
- package/parser/tests/function/valid_sources/ledash_ends_with.xs +90 -0
- package/parser/tests/function/valid_sources/multiline_description.xs +28 -0
- package/parser/tests/function/valid_sources/multiline_expr.xs +41 -0
- package/parser/tests/function/valid_sources/set_theory_fn.xs +129 -0
- package/parser/tests/function/valid_sources/simple_unit_test.xs +33 -0
- package/parser/tests/function/valid_sources/valid_officer.xs +57 -0
- package/parser/tests/function/valid_sources/webflow.xs +18 -0
- package/parser/tests/query/query_parser.spec.js +54 -0
- package/parser/tests/query/valid_sources/all_basics.xs +51 -0
- package/parser/tests/query/valid_sources/all_cloud.xs +141 -0
- package/parser/tests/query/valid_sources/all_db.xs +102 -0
- package/parser/tests/query/valid_sources/all_external_db.xs +43 -0
- package/parser/tests/query/valid_sources/all_keywords.xs +65 -0
- package/parser/tests/query/valid_sources/all_math.xs +53 -0
- package/parser/tests/query/valid_sources/all_object.xs +25 -0
- package/parser/tests/query/valid_sources/all_redis.xs +106 -0
- package/parser/tests/query/valid_sources/all_security.xs +105 -0
- package/parser/tests/query/valid_sources/all_stream.xs +69 -0
- package/parser/tests/query/valid_sources/all_text.xs +54 -0
- package/parser/tests/query/valid_sources/all_util.xs +66 -0
- package/parser/tests/query/valid_sources/all_zip.xs +39 -0
- package/parser/tests/query/valid_sources/arrays.xs +33 -0
- package/parser/tests/query/valid_sources/disabled_response.xs +27 -0
- package/parser/tests/query/valid_sources/multiline_lambda_GET.xs +50 -0
- package/parser/tests/query/valid_sources/mutliline_query.xs +140 -0
- package/parser/tests/query/valid_sources/patch_expression_multiline.xs +27 -0
- package/parser/tests/query/valid_sources/query_cache.xs +34 -0
- package/parser/tests/query/valid_sources/query_example.xs +43 -0
- package/parser/tests/query/valid_sources/query_mini.xs +11 -0
- package/parser/tests/query/valid_sources/query_rich_inputs.xs +32 -0
- package/parser/tests/query/valid_sources/simple_unit_test.xs +33 -0
- package/parser/tests/query/valid_sources/test_with_slashes.xs +22 -0
- package/parser/tests/query/valid_sources/with_unit_test.xs +97 -0
- package/parser/tests/table/table_parser.spec.js +52 -0
- package/parser/tests/table/valid_sources/account.xs +31 -0
- package/parser/tests/table/valid_sources/all_basic_columns.xs +44 -0
- package/parser/tests/table/valid_sources/basic_table.xs +15 -0
- package/parser/tests/table/valid_sources/empty_object.xs +17 -0
- package/parser/tests/table/valid_sources/empty_table.xs +3 -0
- package/parser/tests/table/valid_sources/multiline_index.xs +33 -0
- package/parser/tests/table/valid_sources/relation.xs +44 -0
- package/parser/tests/table/valid_sources/rich_columns.xs +28 -0
- package/parser/tests/table/valid_sources/table_with_comments.xs +17 -0
- package/parser/tests/table/valid_sources/table_with_search_index.xs +31 -0
- package/parser/tests/table/valid_sources/view_table.xs +62 -0
- package/parser/tests/task/task_parser.spec.js +53 -0
- package/parser/tests/task/valid_sources/active_event.xs +11 -0
- package/parser/tests/task/valid_sources/all_events.xs +17 -0
- package/parser/tests/task/valid_sources/daily_sales_report.xs +56 -0
- package/parser/tests/task/valid_sources/inactive_event.xs +11 -0
- package/parser/tests/workflow_test/valid_sources/basic_workflow_test.xs +13 -0
- package/parser/tests/workflow_test/workflow_test_parser.spec.js +52 -0
- package/parser/tool_parser.js +121 -0
- package/parser/tool_parser.spec.js +102 -0
- package/parser/workflow_test_parser.js +73 -0
- package/parser/workflow_test_parser.spec.js +71 -0
- package/parser/workspace_parser.js +38 -0
- package/parser/workspace_parser.spec.js +142 -0
- package/parser/workspace_trigger_parser.js +118 -0
- package/parser/workspace_trigger_parser.spec.js +332 -0
- package/profile-parser.js +214 -0
- package/server.js +59 -0
- package/toTmLanguage.js +75 -0
- package/utils.js +55 -0
- package/utils.spec.js +277 -0
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
function "Discord/PollSendToSlack" {
|
|
2
|
+
input {
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
stack {
|
|
6
|
+
var $channel_id {
|
|
7
|
+
value = 1234567890123456789
|
|
8
|
+
disabled = true
|
|
9
|
+
description = "#test-channel"
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
var $channel_id {
|
|
13
|
+
value = 9876543210987654321
|
|
14
|
+
description = "#example-channel"
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
db.query discord_messages {
|
|
18
|
+
sort = {
|
|
19
|
+
"discord_messages.created_at": "desc"
|
|
20
|
+
}
|
|
21
|
+
return = {
|
|
22
|
+
type : "single"
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
} as $discord_messages
|
|
26
|
+
|
|
27
|
+
var $after {
|
|
28
|
+
value = $discord_messages.message_id ?? null
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
debug.stop {
|
|
32
|
+
value = $discord_messages
|
|
33
|
+
disabled = true
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
api.request {
|
|
37
|
+
url = "https://discord.com/api/v10/channels/:CHANNEL_ID/messages"|replace:":CHANNEL_ID":$channel_id
|
|
38
|
+
method = "GET"
|
|
39
|
+
params = {}|set:"limit":"100"|set_ifnotnull:"after":$after
|
|
40
|
+
headers = []|push:"Authorization: Bot "~$env.discord_bot_key|push:"User-Agent: DiscordBot (your_url, 1.0.0)"
|
|
41
|
+
} as $discord_list_messages_api
|
|
42
|
+
|
|
43
|
+
var $messages {
|
|
44
|
+
value = $discord_list_messages_api|sort:"timestamp":"itext":true
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
debug.stop {
|
|
48
|
+
value = $messages
|
|
49
|
+
disabled = true
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
foreach ($messages) {
|
|
53
|
+
each as $message {
|
|
54
|
+
var $message_id {
|
|
55
|
+
value = $message.id
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
var $channel_id {
|
|
59
|
+
value = $message.channel_id
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
var $ref_message_id {
|
|
63
|
+
value = $message.referenced_message.id ?? $message.message_reference.message_id
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
var $author {
|
|
67
|
+
value = $message.author
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
var $content {
|
|
71
|
+
value = $message.referenced_message.content ?? $message.content
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
conditional {
|
|
75
|
+
if ($content|is_empty) {
|
|
76
|
+
function.run "Discord/GetMessageByID" {
|
|
77
|
+
input = {
|
|
78
|
+
message_id: $ref_message_id
|
|
79
|
+
channel_id: $message.message_reference.channel_id
|
|
80
|
+
}
|
|
81
|
+
} as $discord_message
|
|
82
|
+
|
|
83
|
+
debug.stop {
|
|
84
|
+
value = $discord_message
|
|
85
|
+
disabled = true
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
var $content {
|
|
89
|
+
value = $discord_message.content
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
var $discord_url {
|
|
95
|
+
value = ```
|
|
96
|
+
"https://discord.com/channels/:SERVER_ID/:CHANNEL_ID/:MESSAGE_ID"
|
|
97
|
+
|replace:":CHANNEL_ID":$channel_id
|
|
98
|
+
|replace:":MESSAGE_ID":$message_id
|
|
99
|
+
```
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
function.run "sendSlackMessage/DiscordMessagetoSlack" {
|
|
103
|
+
input = {
|
|
104
|
+
content : $content
|
|
105
|
+
username : $author.username
|
|
106
|
+
discord_url: $discord_url
|
|
107
|
+
}
|
|
108
|
+
} as $slack_post
|
|
109
|
+
|
|
110
|
+
db.add_or_edit discord_messages {
|
|
111
|
+
field_name = "message_id"
|
|
112
|
+
field_value = $message_id
|
|
113
|
+
data = {
|
|
114
|
+
created_at : $message.timestamp
|
|
115
|
+
ref_message_id : $ref_message_id
|
|
116
|
+
slack_ts : $slack_post.ts
|
|
117
|
+
content : $content
|
|
118
|
+
author_username: $author.username
|
|
119
|
+
author_id : $author.id
|
|
120
|
+
discord_url : $discord_url
|
|
121
|
+
}
|
|
122
|
+
} as $discord_message
|
|
123
|
+
|
|
124
|
+
debug.stop {
|
|
125
|
+
value = $discord_message
|
|
126
|
+
disabled = true
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
response = $discord_list_messages_api
|
|
133
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
function "expression and filter in response" {
|
|
2
|
+
history = 100
|
|
3
|
+
|
|
4
|
+
input {
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
stack {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
response = {
|
|
11
|
+
with_filter : `{"test": {"value": 1}}`|get:"test":null
|
|
12
|
+
with_filter_multiline: ```
|
|
13
|
+
{
|
|
14
|
+
"test": {
|
|
15
|
+
"value": 1
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
```|get:"test":null
|
|
19
|
+
expression : {"foo": [1,2,3], "bar" : false}|get:"foo"
|
|
20
|
+
text : "text"
|
|
21
|
+
}
|
|
22
|
+
}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
function "data/filter_by_value" {
|
|
2
|
+
description = "Selects rows based on a specific value in a chosen column."
|
|
3
|
+
input {
|
|
4
|
+
json data {
|
|
5
|
+
description = "The dataset (e.g., a list of lists or a similar tabular structure)."
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
int column_index {
|
|
9
|
+
description = "The zero-based index of the column to filter on."
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
text filter_value {
|
|
13
|
+
description = "The value to match within the specified column."
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
stack {
|
|
18
|
+
var $filtered_data {
|
|
19
|
+
value = []
|
|
20
|
+
description = "Initialize an empty array to store filtered rows."
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
precondition (($input.data|is_array) && (($input.data|count) > 0)) {
|
|
24
|
+
error_type = "inputerror"
|
|
25
|
+
error = "Invalid data input. Expected a non-empty array."
|
|
26
|
+
description = "Validate that the data input is a non-empty array."
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
precondition (($input.column_index >= 0) && ($input.column_index < ($input.data|first|count))) {
|
|
30
|
+
error_type = "inputerror"
|
|
31
|
+
error = "Invalid column index. Index out of bounds."
|
|
32
|
+
description = "Validate that the column index is within the bounds of the data."
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
foreach ($input.data) {
|
|
36
|
+
each as $row {
|
|
37
|
+
var $column_value {
|
|
38
|
+
value = $row[$input.column_index]
|
|
39
|
+
description = "Get the value from the specified column index in the current row."
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
conditional {
|
|
43
|
+
if ($column_value == $input.filter_value) {
|
|
44
|
+
var.update $filtered_data {
|
|
45
|
+
value = $filtered_data|append:$row
|
|
46
|
+
description = "Append the row to filtered_data if the column value matches the filter value."
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
response = $filtered_data
|
|
55
|
+
}
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
function queries {
|
|
2
|
+
input {
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
stack {
|
|
6
|
+
db.query invoices {
|
|
7
|
+
where = $db.clients.name == $db.invoices.total_amount || $db.invoices contains $db.clients.name && ($db.invoices.items != $db.clients.name || $db.invoices.client_id > $db.invoices.id || $db.clients.is_active not in $db.invoices.id || $db.invoices.id in $db.invoices.id || $env.$request_method contains "something" || $db.clients.name includes $db.clients.id || ($db.invoices.total_amount|add:55) not contains $db.clients.name && $db.invoices.items overlaps $db.invoices.id || $db.invoices.items not overlaps $db.invoices.items)
|
|
8
|
+
join = {
|
|
9
|
+
clients: {
|
|
10
|
+
type : "right"
|
|
11
|
+
table : "clients"
|
|
12
|
+
where: $db.invoices.client_id == $db.clients.id
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
return = {
|
|
17
|
+
type : "list"
|
|
18
|
+
paging: {
|
|
19
|
+
page : 1
|
|
20
|
+
per_page: 25
|
|
21
|
+
totals : false
|
|
22
|
+
offset : 0
|
|
23
|
+
metadata: true
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
} as $invoices1
|
|
27
|
+
|
|
28
|
+
db.query books {
|
|
29
|
+
join = {
|
|
30
|
+
user: {
|
|
31
|
+
table: "user"
|
|
32
|
+
where: $db.books.id == $db.user.id
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
return = {
|
|
37
|
+
type : "stream"
|
|
38
|
+
distinct: "yes"
|
|
39
|
+
paging : {page: 1, per_page: 25}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
sort = { "books.title": "asc"}
|
|
43
|
+
|
|
44
|
+
} as $books1
|
|
45
|
+
|
|
46
|
+
db.query book_club_meeting {
|
|
47
|
+
return = {
|
|
48
|
+
type: "exists"
|
|
49
|
+
}
|
|
50
|
+
} as $book_club_meeting1
|
|
51
|
+
|
|
52
|
+
db.query book_club_meeting {
|
|
53
|
+
description = "Some description"
|
|
54
|
+
return = {
|
|
55
|
+
type: "count"
|
|
56
|
+
}
|
|
57
|
+
} as $book_club_meeting2
|
|
58
|
+
|
|
59
|
+
db.query book_club_meeting {
|
|
60
|
+
disabled = true
|
|
61
|
+
sort = {"book_club_meeting.id": "asc"}
|
|
62
|
+
return = {
|
|
63
|
+
type :"single"
|
|
64
|
+
}
|
|
65
|
+
} as $book_club_meeting2
|
|
66
|
+
|
|
67
|
+
db.query book_club_meeting {
|
|
68
|
+
sort = {
|
|
69
|
+
"book_club_meeting_book_id": "asc"
|
|
70
|
+
}
|
|
71
|
+
return = {
|
|
72
|
+
type : "aggregate"
|
|
73
|
+
group : {"book_club_meeting.book_id": "book_club_meeting.book_id"}
|
|
74
|
+
eval : {
|
|
75
|
+
"book_club_meeting.book_id": $db.book_club_meeting_book_id|min
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
} as $book_club_meeting2
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
response = $books1
|
|
82
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
function "bug regex xs" {
|
|
2
|
+
input {
|
|
3
|
+
text youtube_url? filters=trim
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
stack {
|
|
7
|
+
var $youtube_id {
|
|
8
|
+
value = ("/^((?:https?:)?\\/\\/)?((?:www|m)\\.)?((?:youtube\\.com|youtu.be))(\\/(?:[\\w\\-]+\\?v=|embed\\/|v\\/)?)([\\w\\-]+)(\\S+)?$/"|regex_get_all_matches:$input.youtube_url)[5]|first
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
response = $youtube_id
|
|
13
|
+
}
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
function "ledash/ends_with" {
|
|
2
|
+
description = """
|
|
3
|
+
Checks if `string` (or `array`) ends with the given `target` string (or `array`).
|
|
4
|
+
|
|
5
|
+
## Example
|
|
6
|
+
|
|
7
|
+
```
|
|
8
|
+
{
|
|
9
|
+
"text": "some string",
|
|
10
|
+
"target": "ing"
|
|
11
|
+
}
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
returns
|
|
15
|
+
```
|
|
16
|
+
true
|
|
17
|
+
```
|
|
18
|
+
"""
|
|
19
|
+
|
|
20
|
+
input {
|
|
21
|
+
json text?
|
|
22
|
+
json target?
|
|
23
|
+
int position?=-1
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
stack {
|
|
27
|
+
var $text {
|
|
28
|
+
description = "Working copy of the input text for processing"
|
|
29
|
+
value = $input.text
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
var $target {
|
|
33
|
+
description = "Working copy of the target value for processing"
|
|
34
|
+
value = $input.target
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
conditional {
|
|
38
|
+
description = "Convert any string into an array of characters"
|
|
39
|
+
|
|
40
|
+
if (($input.text|is_text) === true) {
|
|
41
|
+
var.update $text {
|
|
42
|
+
value = $text|split:""
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
conditional {
|
|
48
|
+
description = "Convert any string into an array of characters"
|
|
49
|
+
|
|
50
|
+
if (($target|is_text) === true) {
|
|
51
|
+
var.update $target {
|
|
52
|
+
value = $target|split:""
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
conditional {
|
|
58
|
+
description = "If we still have a single value, make it an array with a single element"
|
|
59
|
+
|
|
60
|
+
if (($target|is_array) !== true) {
|
|
61
|
+
var.update $target {
|
|
62
|
+
value = []|push:$target
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
var $position {
|
|
68
|
+
description = "Calculate the final position to check based on input or text length"
|
|
69
|
+
value = $input.position > -1 ? $input.position : ($text|count)
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
for ($target|count) {
|
|
73
|
+
description = "Now we should only have arrays in target and text variables"
|
|
74
|
+
|
|
75
|
+
each as $index {
|
|
76
|
+
conditional {
|
|
77
|
+
description = "compare every element using position as an offset on the string"
|
|
78
|
+
|
|
79
|
+
if (($text|get:$position - $index - 1:null) !== ($target|get:($target|count) - $index - 1:null)) {
|
|
80
|
+
return {
|
|
81
|
+
value = false
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
response = true
|
|
90
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
function multiline_description {
|
|
2
|
+
description = """
|
|
3
|
+
This function has a description that spans multiple lines.
|
|
4
|
+
It is used to demonstrate how multiline comments are handled in the parser.
|
|
5
|
+
The description should be clear and concise, even when spread across several lines.
|
|
6
|
+
"""
|
|
7
|
+
input {
|
|
8
|
+
text value {
|
|
9
|
+
description = "sing line description"
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
int number {
|
|
13
|
+
description = """
|
|
14
|
+
This is a multiline description for the number input.
|
|
15
|
+
It can include details about the expected range, format, or any other relevant information.
|
|
16
|
+
For example, this number should be a positive integer.
|
|
17
|
+
It can also include examples or usage notes.
|
|
18
|
+
Make sure to keep it informative and easy to understand.
|
|
19
|
+
"""
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
stack {
|
|
24
|
+
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
response = "This function is valid and has a multiline description."
|
|
28
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
function multiline {
|
|
2
|
+
input {
|
|
3
|
+
int score?
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
stack {
|
|
7
|
+
conditional {
|
|
8
|
+
if (
|
|
9
|
+
(```
|
|
10
|
+
$input.score
|
|
11
|
+
|is_empty
|
|
12
|
+
|is_empty
|
|
13
|
+
|is_empty
|
|
14
|
+
|is_empty
|
|
15
|
+
|is_empty
|
|
16
|
+
|is_empty
|
|
17
|
+
|is_empty
|
|
18
|
+
|is_empty
|
|
19
|
+
|is_empty
|
|
20
|
+
```) == (```
|
|
21
|
+
$input.score
|
|
22
|
+
|is_empty
|
|
23
|
+
|is_empty
|
|
24
|
+
|is_empty
|
|
25
|
+
|is_empty
|
|
26
|
+
|is_empty
|
|
27
|
+
|is_empty
|
|
28
|
+
|is_empty
|
|
29
|
+
|is_empty
|
|
30
|
+
|is_empty
|
|
31
|
+
```)
|
|
32
|
+
) {
|
|
33
|
+
var $x1 {
|
|
34
|
+
value = 123
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
response = $x1
|
|
41
|
+
}
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
function array_functions {
|
|
2
|
+
input {
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
stack {
|
|
6
|
+
var $json {
|
|
7
|
+
value = [
|
|
8
|
+
{
|
|
9
|
+
"_id": "6900e859251a9c0bf81feef8",
|
|
10
|
+
"index": 0,
|
|
11
|
+
"isActive": false,
|
|
12
|
+
"age": 24,
|
|
13
|
+
"name": "Aguilar Whitehead",
|
|
14
|
+
"gender": "male"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"_id": "6900e859fce05fec39869537",
|
|
18
|
+
"index": 1,
|
|
19
|
+
"isActive": true,
|
|
20
|
+
"age": 24,
|
|
21
|
+
"name": "Kay Higgins",
|
|
22
|
+
"gender": "female"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"_id": "6900e8596bac5247d793238f",
|
|
26
|
+
"index": 2,
|
|
27
|
+
"isActive": true,
|
|
28
|
+
"age": 25,
|
|
29
|
+
"name": "Leigh Frederick",
|
|
30
|
+
"gender": "female"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"_id": "6900e859f3a896081f4520a8",
|
|
34
|
+
"index": 3,
|
|
35
|
+
"isActive": false,
|
|
36
|
+
"age": 21,
|
|
37
|
+
"name": "Krystal Colon",
|
|
38
|
+
"gender": "female"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"_id": "6900e859023839f86f579d73",
|
|
42
|
+
"index": 4,
|
|
43
|
+
"isActive": false,
|
|
44
|
+
"age": 22,
|
|
45
|
+
"name": "Daniels Workman",
|
|
46
|
+
"gender": "male"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"_id": "6900e859756c6b3e882c9244",
|
|
50
|
+
"index": 5,
|
|
51
|
+
"isActive": true,
|
|
52
|
+
"age": 33,
|
|
53
|
+
"name": "Mccormick Perkins",
|
|
54
|
+
"gender": "male"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"_id": "6900e8596bc2768908f0bf30",
|
|
58
|
+
"index": 6,
|
|
59
|
+
"isActive": true,
|
|
60
|
+
"age": 23,
|
|
61
|
+
"name": "Dixie Cabrera",
|
|
62
|
+
"gender": "female"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"_id": "6900e859aa0822a778b99f69",
|
|
66
|
+
"index": 7,
|
|
67
|
+
"isActive": true,
|
|
68
|
+
"age": 23,
|
|
69
|
+
"name": "Battle James",
|
|
70
|
+
"gender": "male"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"_id": "6900e859e5098eb59309df64",
|
|
74
|
+
"index": 8,
|
|
75
|
+
"isActive": true,
|
|
76
|
+
"age": 26,
|
|
77
|
+
"name": "Petty Armstrong",
|
|
78
|
+
"gender": "male"
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"_id": "6900e859f2b37bedb90cb73f",
|
|
82
|
+
"index": 9,
|
|
83
|
+
"isActive": false,
|
|
84
|
+
"age": 35,
|
|
85
|
+
"name": "Parsons Lloyd",
|
|
86
|
+
"gender": "male"
|
|
87
|
+
}
|
|
88
|
+
]
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
array.map ($json) {
|
|
92
|
+
by = $this.email
|
|
93
|
+
} as $emails
|
|
94
|
+
|
|
95
|
+
array.map ($json) {
|
|
96
|
+
by = {name: $this.name, gender: $this.gender}
|
|
97
|
+
} as $people
|
|
98
|
+
|
|
99
|
+
array.partition ($json) if ($this.gender == "male") as $is_male
|
|
100
|
+
array.group_by ($json) {
|
|
101
|
+
by = $this.isActive
|
|
102
|
+
} as $is_active
|
|
103
|
+
|
|
104
|
+
array.difference ([1,2,3,4,5,6,7,8,9]) {
|
|
105
|
+
value = [2,4,6,8]
|
|
106
|
+
by = $this
|
|
107
|
+
} as $difference
|
|
108
|
+
|
|
109
|
+
array.intersection ([1,2,3,4,5,6,7,8,9]) {
|
|
110
|
+
value = [2,4,6,8]
|
|
111
|
+
by = $this
|
|
112
|
+
} as $intersection
|
|
113
|
+
|
|
114
|
+
array.union ([1,3,5,7,9]) {
|
|
115
|
+
value = [2,4,6,8]
|
|
116
|
+
by = $this
|
|
117
|
+
} as $union
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
response = {
|
|
121
|
+
emails : $emails
|
|
122
|
+
people : $people
|
|
123
|
+
is_male : $is_male
|
|
124
|
+
is_active : $is_active
|
|
125
|
+
difference : $difference
|
|
126
|
+
intersection: $intersection
|
|
127
|
+
union : $union
|
|
128
|
+
}
|
|
129
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
function test_expect {
|
|
2
|
+
input {
|
|
3
|
+
int a
|
|
4
|
+
int b
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
stack {
|
|
8
|
+
var $sum {
|
|
9
|
+
value = $input.a
|
|
10
|
+
}
|
|
11
|
+
math.add $sum {
|
|
12
|
+
value = $input.b
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
response = $sum
|
|
17
|
+
|
|
18
|
+
test "should add two numbers" {
|
|
19
|
+
input = {a: 20, b: 22}
|
|
20
|
+
|
|
21
|
+
expect.to_equal ($response) {
|
|
22
|
+
value = 42
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
test "another test with input" {
|
|
27
|
+
input = {a: 20, b: 22}
|
|
28
|
+
|
|
29
|
+
expect.to_be_greater_than ($response) {
|
|
30
|
+
value = 40
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
function "Starfleet/RankCheck" {
|
|
2
|
+
description = "Determines if a user's Starfleet rank is sufficient for a specific mission."
|
|
3
|
+
input {
|
|
4
|
+
text userRank {
|
|
5
|
+
description = "The Starfleet rank of the user (e.g., 'Ensign', 'Lieutenant Commander', 'Captain')."
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
text requiredRank {
|
|
9
|
+
description = "The minimum rank needed for the mission (e.g., 'Lieutenant', 'Commander')."
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
stack {
|
|
14
|
+
var $rank_order {
|
|
15
|
+
value = {
|
|
16
|
+
"ensign": 1,
|
|
17
|
+
"lieutenant junior grade": 2,
|
|
18
|
+
"lieutenant": 3,
|
|
19
|
+
"lieutenant commander": 4,
|
|
20
|
+
"commander": 5,
|
|
21
|
+
"captain": 6,
|
|
22
|
+
"commodore": 7,
|
|
23
|
+
"rear admiral": 8,
|
|
24
|
+
"vice admiral": 9,
|
|
25
|
+
"admiral": 10
|
|
26
|
+
}
|
|
27
|
+
description = "Defines a numerical order for Starfleet ranks."
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
var $user_rank_lower {
|
|
31
|
+
value = $input.userRank|to_lower
|
|
32
|
+
description = "Convert user's rank to lowercase for comparison."
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
var $required_rank_lower {
|
|
36
|
+
value = $input.requiredRank|to_lower
|
|
37
|
+
description = "Convert required rank to lowercase for comparison."
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
var $user_rank_value {
|
|
41
|
+
value = $rank_order[$user_rank_lower] ?? 0
|
|
42
|
+
description = "Get the numerical rank value for the user, defaulting to 0 if rank is not found."
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
var $required_rank_value {
|
|
46
|
+
value = $rank_order[$required_rank_lower] ?? 0
|
|
47
|
+
description = "Get the numerical rank value for the required rank, defaulting to 0 if rank is not found."
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
var $is_sufficient {
|
|
51
|
+
value = $user_rank_value >= $required_rank_value
|
|
52
|
+
description = "Compare numerical ranks to determine sufficiency."
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
response = $is_sufficient
|
|
57
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
function array_functions {
|
|
2
|
+
input {
|
|
3
|
+
// what is this argument about?
|
|
4
|
+
text some_argument? filters=trim
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
stack {
|
|
8
|
+
webflow.request {
|
|
9
|
+
path = $input.some_argument
|
|
10
|
+
method = "PUT"
|
|
11
|
+
params = {}|set:"test":"testtest"
|
|
12
|
+
timeout = 14
|
|
13
|
+
follow_location = false
|
|
14
|
+
} as $api1
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
response = $api1
|
|
18
|
+
}
|