@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,105 @@
|
|
|
1
|
+
query all_security verb=GET {
|
|
2
|
+
input
|
|
3
|
+
stack {
|
|
4
|
+
security.create_uuid as $x1
|
|
5
|
+
security.create_auth_token {
|
|
6
|
+
table = "empty"
|
|
7
|
+
extras = {}
|
|
8
|
+
expiration = 86400
|
|
9
|
+
id = ""
|
|
10
|
+
} as $authToken
|
|
11
|
+
|
|
12
|
+
security.check_password {
|
|
13
|
+
text_password = ""
|
|
14
|
+
hash_password = ""
|
|
15
|
+
} as $x2
|
|
16
|
+
|
|
17
|
+
security.create_rsa_key {
|
|
18
|
+
bits = 1024
|
|
19
|
+
format = "object"
|
|
20
|
+
} as $x2
|
|
21
|
+
|
|
22
|
+
security.create_password {
|
|
23
|
+
character_count = 12
|
|
24
|
+
require_lowercase = true
|
|
25
|
+
require_uppercase = true
|
|
26
|
+
require_digit = true
|
|
27
|
+
require_symbol = false
|
|
28
|
+
symbol_whitelist = ""
|
|
29
|
+
} as $x3
|
|
30
|
+
|
|
31
|
+
security.random_number {
|
|
32
|
+
min = 0
|
|
33
|
+
max = 9007199254740991
|
|
34
|
+
} as $x4
|
|
35
|
+
|
|
36
|
+
security.random_bytes {
|
|
37
|
+
length = 1
|
|
38
|
+
} as $x5
|
|
39
|
+
|
|
40
|
+
security.create_secret_key {
|
|
41
|
+
bits = 1024
|
|
42
|
+
format = "object"
|
|
43
|
+
} as $crypto1
|
|
44
|
+
|
|
45
|
+
security.create_rsa_key {
|
|
46
|
+
bits = 1024
|
|
47
|
+
format = "object"
|
|
48
|
+
} as $crypto2
|
|
49
|
+
|
|
50
|
+
security.create_curve_key {
|
|
51
|
+
curve = "P-256"
|
|
52
|
+
format = "object"
|
|
53
|
+
} as $crypto3
|
|
54
|
+
|
|
55
|
+
security.jwe_encode {
|
|
56
|
+
headers = {}
|
|
57
|
+
claims = {}
|
|
58
|
+
key = ""
|
|
59
|
+
key_algorithm = "A256KW"
|
|
60
|
+
content_algorithm = "A256CBC-HS512"
|
|
61
|
+
ttl = 0
|
|
62
|
+
} as $crypto4
|
|
63
|
+
|
|
64
|
+
security.jwe_decode {
|
|
65
|
+
token = ""
|
|
66
|
+
key = ""
|
|
67
|
+
check_claims = {}
|
|
68
|
+
key_algorithm = "A256KW"
|
|
69
|
+
content_algorithm = "A256CBC-HS512"
|
|
70
|
+
timeDrift = 0
|
|
71
|
+
} as $crypto5
|
|
72
|
+
|
|
73
|
+
security.jws_encode {
|
|
74
|
+
headers = {}
|
|
75
|
+
claims = {}
|
|
76
|
+
key = ""
|
|
77
|
+
signature_algorithm = "HS256"
|
|
78
|
+
ttl = 0
|
|
79
|
+
} as $crypto6
|
|
80
|
+
|
|
81
|
+
security.jws_decode {
|
|
82
|
+
token = ""
|
|
83
|
+
key = ""
|
|
84
|
+
check_claims = {}
|
|
85
|
+
signature_algorithm = "HS256"
|
|
86
|
+
timeDrift = 0
|
|
87
|
+
} as $crypto7
|
|
88
|
+
|
|
89
|
+
security.encrypt {
|
|
90
|
+
data = ""
|
|
91
|
+
algorithm = "aes-128-cbc"
|
|
92
|
+
key = ""
|
|
93
|
+
iv = ""
|
|
94
|
+
} as $crypto8
|
|
95
|
+
|
|
96
|
+
security.decrypt {
|
|
97
|
+
data = ""
|
|
98
|
+
algorithm = "aes-128-cbc"
|
|
99
|
+
key = ""
|
|
100
|
+
iv = ""
|
|
101
|
+
} as $crypto9
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
response = $x1
|
|
105
|
+
}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
query stream verb=GET {
|
|
2
|
+
input
|
|
3
|
+
stack {
|
|
4
|
+
group {
|
|
5
|
+
stack {
|
|
6
|
+
storage.create_file_resource {
|
|
7
|
+
filename = "addr.csv"
|
|
8
|
+
filedata = """
|
|
9
|
+
Name,Age,City
|
|
10
|
+
Alice,30,Sydney
|
|
11
|
+
Bob,25,Granville
|
|
12
|
+
Charlie,35,Melbourne
|
|
13
|
+
Diana,28,Brisbane
|
|
14
|
+
"""
|
|
15
|
+
} as $my_file
|
|
16
|
+
|
|
17
|
+
stream.from_csv {
|
|
18
|
+
value = $file
|
|
19
|
+
separator = ","
|
|
20
|
+
enclosure = "'"
|
|
21
|
+
escape_char = "'"
|
|
22
|
+
} as $stream_1
|
|
23
|
+
|
|
24
|
+
var $csv_records {
|
|
25
|
+
value = []
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
foreach ($stream_1) {
|
|
29
|
+
each as $item {
|
|
30
|
+
var.update $csv_records {
|
|
31
|
+
value = $csv_records|push:$item
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
storage.create_file_resource {
|
|
39
|
+
filename = "test.jsonl"
|
|
40
|
+
filedata = """
|
|
41
|
+
{"name": "Alice Smith", "age": 30, "address": {"street": "123 Main St", "city": "Granville", "state": "NSW", "zip": "2142"}, "hobbies": ["reading", "hiking", "painting"]}
|
|
42
|
+
{"name": "Bob Johnson", "age": 25, "address": {"street": "456 Oak Ave", "city": "Sydney", "state": "NSW", "zip": "2000"}, "hobbies": ["gaming", "coding", "swimming"]}
|
|
43
|
+
{"name": "Charlie Brown", "age": 35, "address": {"street": "789 Pine Ln", "city": "Melbourne", "state": "VIC", "zip": "3000"}, "hobbies": ["cooking", "traveling", "photography"]}
|
|
44
|
+
"""
|
|
45
|
+
} as $file_data_content
|
|
46
|
+
|
|
47
|
+
var $jsonl_lines {
|
|
48
|
+
value = []
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
stream.from_jsonl {
|
|
52
|
+
value = $jsonl_file_resource
|
|
53
|
+
} as $stream1
|
|
54
|
+
|
|
55
|
+
foreach ($stream1) {
|
|
56
|
+
each as $item {
|
|
57
|
+
var.update $jsonl_lines {
|
|
58
|
+
value = $jsonl_lines|push:$item
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
response = {
|
|
65
|
+
jsonl_lines: $jsonl_lines,
|
|
66
|
+
csv_records: $csv_records
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
query text verb=GET {
|
|
2
|
+
input
|
|
3
|
+
stack {
|
|
4
|
+
var $x1 {
|
|
5
|
+
value = "Hello World"
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
text.append $x1 {
|
|
9
|
+
value = "Namaste"
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
text.contains $x1 {
|
|
13
|
+
value = "Hello"
|
|
14
|
+
} as $x2
|
|
15
|
+
|
|
16
|
+
text.ends_with $x1 {
|
|
17
|
+
value = "World"
|
|
18
|
+
} as $x3
|
|
19
|
+
|
|
20
|
+
text.icontains $x1 {
|
|
21
|
+
value = "hello"
|
|
22
|
+
} as $x4
|
|
23
|
+
|
|
24
|
+
text.iends_with $x1 {
|
|
25
|
+
value = "WORLD"
|
|
26
|
+
} as $x5
|
|
27
|
+
|
|
28
|
+
text.istarts_with $x1 {
|
|
29
|
+
value = "HELLO"
|
|
30
|
+
} as $x6
|
|
31
|
+
|
|
32
|
+
text.ltrim $x1 {
|
|
33
|
+
value = ""
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
text.prepend $x1 {
|
|
37
|
+
value = "Hi"
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
text.rtrim $x1 {
|
|
41
|
+
value = ""
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
text.starts_with $x1 {
|
|
45
|
+
value = "THE"
|
|
46
|
+
} as $x7
|
|
47
|
+
|
|
48
|
+
text.trim $x1 {
|
|
49
|
+
value = ""
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
response = $x1
|
|
54
|
+
}
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
query all_util verb=GET {
|
|
2
|
+
api_group = "foo"
|
|
3
|
+
|
|
4
|
+
input
|
|
5
|
+
stack {
|
|
6
|
+
util.geo_distance {
|
|
7
|
+
latitude_1 = 1
|
|
8
|
+
longitude_1 = 2
|
|
9
|
+
latitude_2 = 3
|
|
10
|
+
longitude_2 = 4
|
|
11
|
+
} as $x1
|
|
12
|
+
|
|
13
|
+
util.get_all_input as $x2
|
|
14
|
+
util.get_env as $x3
|
|
15
|
+
util.ip_lookup {
|
|
16
|
+
value = ""
|
|
17
|
+
disabled = true
|
|
18
|
+
description = ""
|
|
19
|
+
} as $x6
|
|
20
|
+
|
|
21
|
+
util.post_process {
|
|
22
|
+
stack
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
precondition (true == true) {
|
|
26
|
+
error_type = "standard"
|
|
27
|
+
error = ""
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
util.set_header {
|
|
31
|
+
value = ""
|
|
32
|
+
duplicates = "replace"
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
util.sleep {
|
|
36
|
+
value = ""
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
util.get_raw_input {
|
|
40
|
+
encoding = "json"
|
|
41
|
+
} as $x4
|
|
42
|
+
|
|
43
|
+
util.get_vars as $x5
|
|
44
|
+
|
|
45
|
+
util.send_email {
|
|
46
|
+
service_provider = "xano"
|
|
47
|
+
subject = "hellow"
|
|
48
|
+
message = "Hey there"
|
|
49
|
+
} as $xano_email
|
|
50
|
+
|
|
51
|
+
util.send_email {
|
|
52
|
+
api_key = $env.secret_key
|
|
53
|
+
service_provider = "resend"
|
|
54
|
+
subject = "hellow"
|
|
55
|
+
message = "Hey there"
|
|
56
|
+
to = "some_email@xano.com"
|
|
57
|
+
bcc = []|push:"foo@goo.com"
|
|
58
|
+
cc = ["me@me.com", "john@be.com"]
|
|
59
|
+
from = "admin@xano.com"
|
|
60
|
+
reply_to = "no-reply@xano.com"
|
|
61
|
+
scheduled_at = "2025-11-26T01:01:02.00"
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
response = $x1
|
|
66
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
query all_zip verb=GET {
|
|
2
|
+
input {
|
|
3
|
+
file ?file?
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
stack {
|
|
7
|
+
zip.create_archive {
|
|
8
|
+
filename = "some_file.zip"
|
|
9
|
+
password = "foo bar"
|
|
10
|
+
password_encryption = "standard"
|
|
11
|
+
} as $zip_file
|
|
12
|
+
|
|
13
|
+
zip.add_to_archive {
|
|
14
|
+
file = $input.file
|
|
15
|
+
filename = ""
|
|
16
|
+
zip = $zip_file
|
|
17
|
+
password = ""
|
|
18
|
+
password_encryption = ""
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
zip.delete_from_archive {
|
|
22
|
+
filename = $input.file
|
|
23
|
+
zip = $input.file
|
|
24
|
+
password = ""
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
zip.extract {
|
|
28
|
+
zip = $zip_file
|
|
29
|
+
password = ""
|
|
30
|
+
} as $output
|
|
31
|
+
|
|
32
|
+
zip.view_contents {
|
|
33
|
+
zip = $input.file
|
|
34
|
+
password = ""
|
|
35
|
+
} as $zip_content
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
response = $x1
|
|
39
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
query array verb=GET {
|
|
2
|
+
input
|
|
3
|
+
stack {
|
|
4
|
+
array.find ([]|push:1|push:2|push:3) if ($this == 1) as $x1
|
|
5
|
+
var $my_array {
|
|
6
|
+
value = !text "[\n 1,\n 2,\n 3,\n 4,\n 5,\n 6,\n 6\n]"|json_decode
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
array.push $my_array {
|
|
10
|
+
value = 1
|
|
11
|
+
disabled = true
|
|
12
|
+
description = "Some description"
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
array.unshift $my_array {
|
|
16
|
+
value = $x1
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
array.shift $my_array as $removed
|
|
20
|
+
array.pop $my_array as $popped
|
|
21
|
+
array.merge $my_array {
|
|
22
|
+
value = $removed
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
array.find_index ($my_array|push:1) if ($this == 2) as $x2
|
|
26
|
+
array.has ($my_array) if ($this == 3) as $x3
|
|
27
|
+
array.every ([]|push:2) if ($this|istarts_with:"foo" == true) as $x4
|
|
28
|
+
array.filter ($x1) if ($this == 2) as $x5
|
|
29
|
+
array.filter_count ($x1) if ($this > 2) as $x6
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
response = $x1
|
|
33
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
query query_0 verb=GET {
|
|
2
|
+
input {
|
|
3
|
+
// new name comment
|
|
4
|
+
text name?
|
|
5
|
+
|
|
6
|
+
// new desc
|
|
7
|
+
int integer?
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
stack {
|
|
11
|
+
// new x1 comment
|
|
12
|
+
|
|
13
|
+
var $x1 {
|
|
14
|
+
value = "test1ahe"
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
// test1
|
|
18
|
+
|
|
19
|
+
var $x2 {
|
|
20
|
+
value = $input.name
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
response = {
|
|
25
|
+
!result1: $x1,
|
|
26
|
+
}
|
|
27
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
query "crypto/signverify" verb=GET {
|
|
2
|
+
api_group = "foo"
|
|
3
|
+
|
|
4
|
+
input {
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
stack {
|
|
8
|
+
api.lambda {
|
|
9
|
+
code = """
|
|
10
|
+
const algorithm = 'SHA256';
|
|
11
|
+
const data = 'some data to sign';
|
|
12
|
+
|
|
13
|
+
// Generate a key pair
|
|
14
|
+
const { publicKey, privateKey } = crypto.generateKeyPairSync('rsa', {
|
|
15
|
+
modulusLength: 2048,
|
|
16
|
+
publicKeyEncoding: {
|
|
17
|
+
type: 'spki',
|
|
18
|
+
format: 'pem'
|
|
19
|
+
},
|
|
20
|
+
privateKeyEncoding: {
|
|
21
|
+
type: 'pkcs8',
|
|
22
|
+
format: 'pem'
|
|
23
|
+
}
|
|
24
|
+
});
|
|
25
|
+
|
|
26
|
+
// Create a Sign object and sign the data
|
|
27
|
+
const sign = crypto.createSign(algorithm);
|
|
28
|
+
sign.update(data);
|
|
29
|
+
sign.end();
|
|
30
|
+
const signature = sign.sign(privateKey, 'hex');
|
|
31
|
+
console.log('Signature:', signature);
|
|
32
|
+
|
|
33
|
+
// Create a Verify object and verify the signature
|
|
34
|
+
const verify = crypto.createVerify(algorithm);
|
|
35
|
+
verify.update(data);
|
|
36
|
+
verify.end();
|
|
37
|
+
const isValid = verify.verify(publicKey, signature, 'hex');
|
|
38
|
+
console.log('Signature valid:', isValid);
|
|
39
|
+
|
|
40
|
+
return isValid
|
|
41
|
+
"""
|
|
42
|
+
|
|
43
|
+
timeout = 10
|
|
44
|
+
} as $x1
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
response = $x1
|
|
48
|
+
|
|
49
|
+
history = "inherit"
|
|
50
|
+
}
|
|
@@ -0,0 +1,140 @@
|
|
|
1
|
+
query control_structures verb=GET {
|
|
2
|
+
input {
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
stack {
|
|
6
|
+
util.template_engine {
|
|
7
|
+
value = """
|
|
8
|
+
{% set user = {
|
|
9
|
+
'isActive': true,
|
|
10
|
+
'isPending': false
|
|
11
|
+
} %}
|
|
12
|
+
|
|
13
|
+
{% if user.isActive %}
|
|
14
|
+
Active user
|
|
15
|
+
{% elseif user.isPending %}
|
|
16
|
+
Pending activation
|
|
17
|
+
{% else %}
|
|
18
|
+
Inactive user
|
|
19
|
+
{% endif %}
|
|
20
|
+
"""
|
|
21
|
+
} as $elif
|
|
22
|
+
|
|
23
|
+
util.template_engine {
|
|
24
|
+
value = """
|
|
25
|
+
{% set user = {
|
|
26
|
+
'isActive': true,
|
|
27
|
+
'isPending': false
|
|
28
|
+
} %}
|
|
29
|
+
|
|
30
|
+
{# Ternary operator #}
|
|
31
|
+
{{ user.isActive ? 'Active' : 'Inactive' }}
|
|
32
|
+
"""
|
|
33
|
+
|
|
34
|
+
disabled = true
|
|
35
|
+
} as $ternary
|
|
36
|
+
|
|
37
|
+
util.template_engine {
|
|
38
|
+
value = """
|
|
39
|
+
{% set user = {
|
|
40
|
+
'isActive': true,
|
|
41
|
+
'isPending': false
|
|
42
|
+
} %}
|
|
43
|
+
|
|
44
|
+
{# Inline if with alternate syntax #}
|
|
45
|
+
{% if user is defined %}{{ user }}{% endif %}
|
|
46
|
+
"""
|
|
47
|
+
|
|
48
|
+
disabled = true
|
|
49
|
+
} as $inline_if
|
|
50
|
+
|
|
51
|
+
util.template_engine {
|
|
52
|
+
value = """
|
|
53
|
+
{% set users = [
|
|
54
|
+
{'name': 'Alice'},
|
|
55
|
+
{'name': 'Bob'},
|
|
56
|
+
{'name': 'Charlie'}
|
|
57
|
+
] %}
|
|
58
|
+
|
|
59
|
+
<h1>User List</h1>
|
|
60
|
+
|
|
61
|
+
<ul>
|
|
62
|
+
{% for user in users %}
|
|
63
|
+
<li>
|
|
64
|
+
{{ user.name }} -
|
|
65
|
+
Iteration (1-based): {{ loop.index }} -
|
|
66
|
+
Iteration (0-based): {{ loop.index0 }} -
|
|
67
|
+
First iteration: {{ loop.first ? 'Yes' : 'No' }} -
|
|
68
|
+
Last iteration: {{ loop.last ? 'Yes' : 'No' }}
|
|
69
|
+
</li>
|
|
70
|
+
{% else %}
|
|
71
|
+
<li>No users found</li>
|
|
72
|
+
{% endfor %}
|
|
73
|
+
</ul>
|
|
74
|
+
"""
|
|
75
|
+
|
|
76
|
+
disabled = true
|
|
77
|
+
} as $for_loop
|
|
78
|
+
|
|
79
|
+
util.template_engine {
|
|
80
|
+
value = """
|
|
81
|
+
{% set user = {
|
|
82
|
+
'name': 'Alice',
|
|
83
|
+
'email': 'alice@example.com',
|
|
84
|
+
'age': 30,
|
|
85
|
+
'active': true
|
|
86
|
+
} %}
|
|
87
|
+
|
|
88
|
+
<h1>User Properties</h1>
|
|
89
|
+
|
|
90
|
+
<ul>
|
|
91
|
+
{% for key, value in user %}
|
|
92
|
+
<li>{{ key }}: {{ value }}</li>
|
|
93
|
+
{% endfor %}
|
|
94
|
+
</ul>
|
|
95
|
+
"""
|
|
96
|
+
} as $loop_over_obj_props
|
|
97
|
+
|
|
98
|
+
util.template_engine {
|
|
99
|
+
value = """
|
|
100
|
+
{# active-users.html.twig #}
|
|
101
|
+
|
|
102
|
+
{% set users = [
|
|
103
|
+
{'name': 'Alice', 'active': true},
|
|
104
|
+
{'name': 'Bob', 'active': false},
|
|
105
|
+
{'name': 'Charlie', 'active': true},
|
|
106
|
+
{'name': 'David', 'active': false}
|
|
107
|
+
] %}
|
|
108
|
+
|
|
109
|
+
<h1>Active Users</h1>
|
|
110
|
+
|
|
111
|
+
<ul>
|
|
112
|
+
{% for user in users if user.active %}
|
|
113
|
+
<li>{{ user.name }}</li>
|
|
114
|
+
{% endfor %}
|
|
115
|
+
</ul>
|
|
116
|
+
"""
|
|
117
|
+
|
|
118
|
+
disabled = true
|
|
119
|
+
} as $loop_with_condition
|
|
120
|
+
|
|
121
|
+
precondition (```
|
|
122
|
+
($loop_over_obj_props|trim:"") == ("""
|
|
123
|
+
<h1>User Properties</h1>
|
|
124
|
+
|
|
125
|
+
<ul>
|
|
126
|
+
<li>name: Alice</li>
|
|
127
|
+
<li>email: alice@example.com</li>
|
|
128
|
+
<li>age: 30</li>
|
|
129
|
+
<li>active: 1</li>
|
|
130
|
+
</ul>
|
|
131
|
+
"""|trim:"")
|
|
132
|
+
```)
|
|
133
|
+
|
|
134
|
+
precondition (($elif|trim:"") == ("Active user"|trim:""))
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
response = true
|
|
138
|
+
|
|
139
|
+
history = "inherit"
|
|
140
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
query "book_club_meeting_registration/{book_club_meeting_registration_id}" verb=PATCH {
|
|
2
|
+
input {
|
|
3
|
+
int book_club_meeting_registration_id? filters=min:1
|
|
4
|
+
dblink {
|
|
5
|
+
table = "book_club_meeting_registration"
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
stack {
|
|
10
|
+
util.get_raw_input {
|
|
11
|
+
encoding = "json"
|
|
12
|
+
} as $raw_input
|
|
13
|
+
|
|
14
|
+
db.patch book_club_meeting_registration {
|
|
15
|
+
field_name = "id"
|
|
16
|
+
field_value = $input.book_club_meeting_registration_id
|
|
17
|
+
data = ```
|
|
18
|
+
$input|
|
|
19
|
+
pick:(
|
|
20
|
+
$raw_input|keys
|
|
21
|
+
)
|
|
22
|
+
```|filter_null|filter_empty_text
|
|
23
|
+
} as $model
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
response = $model
|
|
27
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
query "book_club_meeting_registration/{book_club_meeting_registration_id}" verb=PATCH {
|
|
2
|
+
auth = "user"
|
|
3
|
+
input {
|
|
4
|
+
int book_club_meeting_registration_id? filters=min:1
|
|
5
|
+
dblink {
|
|
6
|
+
table = "book_club_meeting_registration"
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
stack {
|
|
11
|
+
util.get_raw_input {
|
|
12
|
+
encoding = "json"
|
|
13
|
+
} as $raw_input
|
|
14
|
+
|
|
15
|
+
db.patch book_club_meeting_registration {
|
|
16
|
+
field_name = "id"
|
|
17
|
+
field_value = $input.book_club_meeting_registration_id
|
|
18
|
+
data = `$input|pick:($raw_input|keys)`|filter_null|filter_empty_text
|
|
19
|
+
} as $model
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
response = $model
|
|
23
|
+
|
|
24
|
+
history = "inherit"
|
|
25
|
+
cache = {
|
|
26
|
+
ttl : 3600
|
|
27
|
+
input : true
|
|
28
|
+
auth : true
|
|
29
|
+
datasource: true
|
|
30
|
+
ip : false
|
|
31
|
+
headers : ["foo=bar"]
|
|
32
|
+
env : ["some_var"]
|
|
33
|
+
}
|
|
34
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
query "auth/sign8up/now" verb=POST {
|
|
2
|
+
description = "Signup and retrieve an authentication token"
|
|
3
|
+
input {
|
|
4
|
+
text name?
|
|
5
|
+
email email?
|
|
6
|
+
text password?
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
stack {
|
|
10
|
+
db.get "email table" {
|
|
11
|
+
field_name = "email"
|
|
12
|
+
field_value = $input.email
|
|
13
|
+
} as $user
|
|
14
|
+
|
|
15
|
+
precondition ($user == null) {
|
|
16
|
+
error_type = "accessdenied"
|
|
17
|
+
error = "This account is already in use."
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
db.add "my table" {
|
|
21
|
+
data = {
|
|
22
|
+
created_at: '"now"'
|
|
23
|
+
name : "$input.name"
|
|
24
|
+
email : "$input.email"
|
|
25
|
+
password : "$input.password"
|
|
26
|
+
larget_text: """
|
|
27
|
+
This is a large text field
|
|
28
|
+
that spans multiple lines.
|
|
29
|
+
"""
|
|
30
|
+
test: "foo"
|
|
31
|
+
}
|
|
32
|
+
} as $user
|
|
33
|
+
|
|
34
|
+
security.create_auth_token {
|
|
35
|
+
table = "34"
|
|
36
|
+
extras = []
|
|
37
|
+
expiration = 86400
|
|
38
|
+
id = $user.id
|
|
39
|
+
} as $authToken
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
response = {authToken: $authToken}
|
|
43
|
+
}
|