@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.
Files changed (716) hide show
  1. package/.claude/settings.local.json +27 -0
  2. package/.github/copilot-instructions.md +190 -0
  3. package/.github/workflows/ci.yml +31 -0
  4. package/.husky/pre-commit +1 -0
  5. package/CLAUDE.md +121 -0
  6. package/LICENSE +21 -0
  7. package/README.md +55 -0
  8. package/connection.js +7 -0
  9. package/documents.js +5 -0
  10. package/embedded/README.md +102 -0
  11. package/embedded/embeddedContent.js +74 -0
  12. package/embedded/embeddedDocuments.js +57 -0
  13. package/embedded/jsLanguageService.js +74 -0
  14. package/eslint.config.js +24 -0
  15. package/language-server-worker.js +52 -0
  16. package/lexer/action.js +31 -0
  17. package/lexer/addon.js +31 -0
  18. package/lexer/agent.js +37 -0
  19. package/lexer/agent_trigger.js +42 -0
  20. package/lexer/ai.js +82 -0
  21. package/lexer/api.js +81 -0
  22. package/lexer/api_group.js +58 -0
  23. package/lexer/arrays.js +161 -0
  24. package/lexer/branch.js +31 -0
  25. package/lexer/cast.js +105 -0
  26. package/lexer/cloud.js +159 -0
  27. package/lexer/columns.js +234 -0
  28. package/lexer/comment.js +61 -0
  29. package/lexer/comment.spec.js +77 -0
  30. package/lexer/control.js +634 -0
  31. package/lexer/db.js +190 -0
  32. package/lexer/debug.js +37 -0
  33. package/lexer/expect.js +157 -0
  34. package/lexer/function.js +36 -0
  35. package/lexer/identifier.js +6 -0
  36. package/lexer/lexer.js +26 -0
  37. package/lexer/literal.js +77 -0
  38. package/lexer/math.js +97 -0
  39. package/lexer/mcp_server.js +51 -0
  40. package/lexer/mcp_server_trigger.js +42 -0
  41. package/lexer/middleware.js +42 -0
  42. package/lexer/multiline.js +24 -0
  43. package/lexer/multiline.spec.js +179 -0
  44. package/lexer/object.js +44 -0
  45. package/lexer/query.js +99 -0
  46. package/lexer/realtime_trigger.js +50 -0
  47. package/lexer/redis.js +145 -0
  48. package/lexer/security.js +161 -0
  49. package/lexer/storage.js +99 -0
  50. package/lexer/stream.js +49 -0
  51. package/lexer/table.js +38 -0
  52. package/lexer/table_trigger.js +50 -0
  53. package/lexer/task.js +83 -0
  54. package/lexer/tests/query/query_lexer.spec.js +36 -0
  55. package/lexer/tests/query/valid_sources/basic_query.xs +44 -0
  56. package/lexer/tests/query/valid_sources/db_query.xs +77 -0
  57. package/lexer/tests/query/valid_sources/empty_query.xs +5 -0
  58. package/lexer/tests/query/valid_sources/header_query.xs +15 -0
  59. package/lexer/tests/table/basic_table.xs +17 -0
  60. package/lexer/tests/table/empty_table.xs +3 -0
  61. package/lexer/tests/table/table_lexer.spec.js +324 -0
  62. package/lexer/text.js +114 -0
  63. package/lexer/tokens.js +526 -0
  64. package/lexer/tool.js +39 -0
  65. package/lexer/util.js +113 -0
  66. package/lexer/utils.js +56 -0
  67. package/lexer/utils.spec.js +61 -0
  68. package/lexer/var.js +30 -0
  69. package/lexer/variables.js +217 -0
  70. package/lexer/workflow_test.js +42 -0
  71. package/lexer/workspace.js +23 -0
  72. package/lexer/workspace_trigger.js +42 -0
  73. package/lexer/zip.js +63 -0
  74. package/logic-assistant-script.js +8 -0
  75. package/onCheckError/onCheckError.js +43 -0
  76. package/onCompletion/contentAssist.js +183 -0
  77. package/onCompletion/contentAssist.spec.js +275 -0
  78. package/onCompletion/onCompletion.js +38 -0
  79. package/onDidChangeContent/onDidChangeContent.js +128 -0
  80. package/onHover/FilterMessageProvider.js +102 -0
  81. package/onHover/FilterMessageProvider.spec.js +85 -0
  82. package/onHover/FunctionMessageProvider.js +122 -0
  83. package/onHover/FunctionMessageProvider.spec.js +128 -0
  84. package/onHover/HoverMessageProvider.js +31 -0
  85. package/onHover/InputFilterMessageProvider.js +140 -0
  86. package/onHover/InputFilterMessageProvider.spec.js +329 -0
  87. package/onHover/InputVariableMessageProvider.js +55 -0
  88. package/onHover/QueryFilterMessageProvider.spec.js +164 -0
  89. package/onHover/filters.md +2852 -0
  90. package/onHover/functions.md +2617 -0
  91. package/onHover/inputFilters.md +271 -0
  92. package/onHover/onHover.js +40 -0
  93. package/onHover/onHoverDocument.js +64 -0
  94. package/onHover/onHoverDocument.spec.js +486 -0
  95. package/onHover/queryFilterMessageProvider.js +122 -0
  96. package/onHover/queryFilters.md +489 -0
  97. package/onSemanticCheck/highlight.js +45 -0
  98. package/onSemanticCheck/onSemanticCheck.js +25 -0
  99. package/onSemanticCheck/tokens.js +40 -0
  100. package/package.json +48 -0
  101. package/parser/addon_parser.js +90 -0
  102. package/parser/addon_parser.spec.js +88 -0
  103. package/parser/agent_parser.js +281 -0
  104. package/parser/agent_parser.spec.js +599 -0
  105. package/parser/agent_trigger_parser.js +138 -0
  106. package/parser/agent_trigger_parser.spec.js +525 -0
  107. package/parser/api_group_parser.js +143 -0
  108. package/parser/api_group_parser.spec.js +127 -0
  109. package/parser/attributes/columnDefaultValueAttribute.js +33 -0
  110. package/parser/attributes/columnDefaultValueAttribute.spec.js +49 -0
  111. package/parser/attributes/descriptionFieldAttribute.js +24 -0
  112. package/parser/attributes/descriptionFieldAttribute.spec.js +39 -0
  113. package/parser/attributes/disabledFieldAttribute.js +19 -0
  114. package/parser/attributes/disabledFieldAttribute.spec.js +34 -0
  115. package/parser/attributes/docsFieldAttribute.js +24 -0
  116. package/parser/attributes/docsFieldAttribute.spec.js +39 -0
  117. package/parser/attributes/inputFilterFn.js +71 -0
  118. package/parser/attributes/inputFilterFn.spec.js +39 -0
  119. package/parser/attributes/register.js +41 -0
  120. package/parser/attributes/sensitiveFieldAttribute.js +17 -0
  121. package/parser/attributes/sensitiveFieldAttribute.spec.js +39 -0
  122. package/parser/attributes/valueFieldAttribute.js +17 -0
  123. package/parser/attributes/valueFieldAttribute.spec.js +54 -0
  124. package/parser/attributes/valuesFieldAttribute.js +18 -0
  125. package/parser/attributes/valuesFieldAttribute.spec.js +44 -0
  126. package/parser/base_parser.js +249 -0
  127. package/parser/branch_parser.js +49 -0
  128. package/parser/branch_parser.spec.js +34 -0
  129. package/parser/clauses/agentClause.js +23 -0
  130. package/parser/clauses/agentClause.spec.js +34 -0
  131. package/parser/clauses/authClause.js +17 -0
  132. package/parser/clauses/authClause.spec.js +39 -0
  133. package/parser/clauses/cacheClause.js +32 -0
  134. package/parser/clauses/cacheClause.spec.js +103 -0
  135. package/parser/clauses/canonicalClause.js +23 -0
  136. package/parser/clauses/canonicalClause.spec.js +34 -0
  137. package/parser/clauses/channelClause.js +23 -0
  138. package/parser/clauses/channelClause.spec.js +34 -0
  139. package/parser/clauses/dbTableClause.js +23 -0
  140. package/parser/clauses/dbTableClause.spec.js +34 -0
  141. package/parser/clauses/flexibleStringClause.js +43 -0
  142. package/parser/clauses/historyClause.js +19 -0
  143. package/parser/clauses/historyClause.spec.js +53 -0
  144. package/parser/clauses/indexClause.js +36 -0
  145. package/parser/clauses/indexClause.spec.js +47 -0
  146. package/parser/clauses/inputClause.js +35 -0
  147. package/parser/clauses/inputClause.spec.js +79 -0
  148. package/parser/clauses/mcpServerClause.js +23 -0
  149. package/parser/clauses/mcpServerClause.spec.js +34 -0
  150. package/parser/clauses/middlewareClause.js +39 -0
  151. package/parser/clauses/middlewareClause.spec.js +161 -0
  152. package/parser/clauses/nakedStackFn.js +69 -0
  153. package/parser/clauses/nakedStackFn.spec.js +63 -0
  154. package/parser/clauses/outputClause.js +33 -0
  155. package/parser/clauses/register.js +50 -0
  156. package/parser/clauses/responseClause.js +17 -0
  157. package/parser/clauses/responseClause.spec.js +42 -0
  158. package/parser/clauses/scheduleClause.js +37 -0
  159. package/parser/clauses/scheduleClause.spec.js +71 -0
  160. package/parser/clauses/schemaClause.js +66 -0
  161. package/parser/clauses/schemaClause.spec.js +66 -0
  162. package/parser/clauses/stackClause.js +16 -0
  163. package/parser/clauses/testClause.js +73 -0
  164. package/parser/clauses/testClause.spec.js +78 -0
  165. package/parser/clauses/viewClause.js +49 -0
  166. package/parser/clauses/viewClause.spec.js +154 -0
  167. package/parser/definitions/arraySlice.js +70 -0
  168. package/parser/definitions/arraySlice.spec.js +49 -0
  169. package/parser/definitions/columnDefinition.js +139 -0
  170. package/parser/definitions/columnDefinition.spec.js +199 -0
  171. package/parser/definitions/dbLinkColumnDefinition.js +24 -0
  172. package/parser/definitions/dbLinkColumnDefinition.spec.js +45 -0
  173. package/parser/definitions/enumColumnDefinition.js +55 -0
  174. package/parser/definitions/enumColumnDefinition.spec.js +108 -0
  175. package/parser/definitions/filterDefinition.js +23 -0
  176. package/parser/definitions/filterDefinition.spec.js +43 -0
  177. package/parser/definitions/objectColumnDefinition.js +52 -0
  178. package/parser/definitions/objectColumnDefinition.spec.js +118 -0
  179. package/parser/definitions/register.js +28 -0
  180. package/parser/function_parser.js +123 -0
  181. package/parser/function_parser.spec.js +83 -0
  182. package/parser/functions/actionCallFn.js +41 -0
  183. package/parser/functions/actionCallFn.spec.js +51 -0
  184. package/parser/functions/addonCallFn.js +39 -0
  185. package/parser/functions/addonCallFn.spec.js +41 -0
  186. package/parser/functions/ai/aiAgentRunFn.js +40 -0
  187. package/parser/functions/ai/aiAgentRunFn.spec.js +94 -0
  188. package/parser/functions/ai/aiExternalMcpServerDetailsFn.js +28 -0
  189. package/parser/functions/ai/aiExternalMcpServerDetailsFn.spec.js +85 -0
  190. package/parser/functions/ai/aiExternalMcpToolListFn.js +28 -0
  191. package/parser/functions/ai/aiExternalMcpToolListFn.spec.js +85 -0
  192. package/parser/functions/ai/aiExternalMcpToolRunFn.js +30 -0
  193. package/parser/functions/ai/aiExternalMcpToolRunFn.spec.js +101 -0
  194. package/parser/functions/ai/register.js +24 -0
  195. package/parser/functions/aiFn.js +61 -0
  196. package/parser/functions/aiFn.spec.js +51 -0
  197. package/parser/functions/api/apiCallFn.js +49 -0
  198. package/parser/functions/api/apiCallFn.spec.js +60 -0
  199. package/parser/functions/api/apiLambdaFn.js +19 -0
  200. package/parser/functions/api/apiLambdaFn.spec.js +63 -0
  201. package/parser/functions/api/apiRealtimeEventFn.js +25 -0
  202. package/parser/functions/api/apiRealtimeEventFn.spec.js +82 -0
  203. package/parser/functions/api/apiRequestFn.js +47 -0
  204. package/parser/functions/api/apiRequestFn.spec.js +113 -0
  205. package/parser/functions/api/apiStreamFn.js +22 -0
  206. package/parser/functions/api/apiStreamFn.spec.js +44 -0
  207. package/parser/functions/api/register.js +19 -0
  208. package/parser/functions/api/webflowRequestFn.js +47 -0
  209. package/parser/functions/api/webflowRequestFn.spec.js +114 -0
  210. package/parser/functions/apiFn.js +24 -0
  211. package/parser/functions/array/arrayDifferenceFn.js +37 -0
  212. package/parser/functions/array/arrayDifferenceFn.spec.js +34 -0
  213. package/parser/functions/array/arrayEveryFn.js +13 -0
  214. package/parser/functions/array/arrayFilterCountFn.js +14 -0
  215. package/parser/functions/array/arrayFilterFn.js +14 -0
  216. package/parser/functions/array/arrayFindFn.js +14 -0
  217. package/parser/functions/array/arrayFindFn.spec.js +44 -0
  218. package/parser/functions/array/arrayFindIndexFn.js +14 -0
  219. package/parser/functions/array/arrayGroupByFn.js +36 -0
  220. package/parser/functions/array/arrayGroupByFn.spec.js +41 -0
  221. package/parser/functions/array/arrayHasFn.js +14 -0
  222. package/parser/functions/array/arrayIntersectionFn.js +37 -0
  223. package/parser/functions/array/arrayIntersectionFn.spec.js +22 -0
  224. package/parser/functions/array/arrayMapFn.js +36 -0
  225. package/parser/functions/array/arrayMapFn.spec.js +37 -0
  226. package/parser/functions/array/arrayMergeFn.js +17 -0
  227. package/parser/functions/array/arrayNoValueAs.js +31 -0
  228. package/parser/functions/array/arrayNoValueAs.spec.js +56 -0
  229. package/parser/functions/array/arrayPartitionFn.js +19 -0
  230. package/parser/functions/array/arrayPartitionFn.spec.js +29 -0
  231. package/parser/functions/array/arrayPopFn.js +17 -0
  232. package/parser/functions/array/arrayPushFn.js +14 -0
  233. package/parser/functions/array/arrayShiftFn.js +15 -0
  234. package/parser/functions/array/arrayUnionFn.js +37 -0
  235. package/parser/functions/array/arrayUnionFn.spec.js +22 -0
  236. package/parser/functions/array/arrayUnshiftFn.js +14 -0
  237. package/parser/functions/array/arrayValueIfAs.js +51 -0
  238. package/parser/functions/array/arrayValueIfAs.spec.js +54 -0
  239. package/parser/functions/array/arrayValueOnly.js +40 -0
  240. package/parser/functions/array/arrayValueOnly.spec.js +61 -0
  241. package/parser/functions/array/register.js +49 -0
  242. package/parser/functions/array/valueAttrOnly.js +47 -0
  243. package/parser/functions/array/valueAttrOnly.spec.js +61 -0
  244. package/parser/functions/arrayFn.js +33 -0
  245. package/parser/functions/cloud/cloudAlgoliaFn.js +18 -0
  246. package/parser/functions/cloud/cloudAlgoliaRequestFn.js +26 -0
  247. package/parser/functions/cloud/cloudAlgoliaRequestFn.spec.js +30 -0
  248. package/parser/functions/cloud/cloudAwsFn.js +19 -0
  249. package/parser/functions/cloud/cloudAwsOpenSearchFn.js +19 -0
  250. package/parser/functions/cloud/cloudAwsS3Fn.js +22 -0
  251. package/parser/functions/cloud/cloudAwsS3Fn.spec.js +21 -0
  252. package/parser/functions/cloud/cloudAzureFn.js +18 -0
  253. package/parser/functions/cloud/cloudDeleteFileFn.js +23 -0
  254. package/parser/functions/cloud/cloudDeleteFileFn.spec.js +25 -0
  255. package/parser/functions/cloud/cloudElasticSearchFn.js +19 -0
  256. package/parser/functions/cloud/cloudGetFileInfoFn.js +24 -0
  257. package/parser/functions/cloud/cloudGetFileInfoFn.spec.js +25 -0
  258. package/parser/functions/cloud/cloudGoogleFn.js +18 -0
  259. package/parser/functions/cloud/cloudListDirectoryFn.js +24 -0
  260. package/parser/functions/cloud/cloudListDirectoryFn.spec.js +26 -0
  261. package/parser/functions/cloud/cloudReadFileFn.js +24 -0
  262. package/parser/functions/cloud/cloudReadFileFn.spec.js +25 -0
  263. package/parser/functions/cloud/cloudSearchDocumentFn.js +24 -0
  264. package/parser/functions/cloud/cloudSearchDocumentFn.spec.js +28 -0
  265. package/parser/functions/cloud/cloudSearchQueryFn.js +24 -0
  266. package/parser/functions/cloud/cloudSearchQueryFn.spec.js +32 -0
  267. package/parser/functions/cloud/cloudSearchRequestFn.js +24 -0
  268. package/parser/functions/cloud/cloudSearchRequestFn.spec.js +32 -0
  269. package/parser/functions/cloud/cloudSignUrlFn.js +24 -0
  270. package/parser/functions/cloud/cloudSignUrlFn.spec.js +26 -0
  271. package/parser/functions/cloud/cloudStorageFn.js +23 -0
  272. package/parser/functions/cloud/cloudStorageFn.spec.js +21 -0
  273. package/parser/functions/cloud/cloudUploadFileFn.js +24 -0
  274. package/parser/functions/cloud/cloudUploadFileFn.spec.js +29 -0
  275. package/parser/functions/cloud/register.js +61 -0
  276. package/parser/functions/cloudFn.js +21 -0
  277. package/parser/functions/controlFn.js +34 -0
  278. package/parser/functions/controls/awaitFn.js +21 -0
  279. package/parser/functions/controls/awaitFn.spec.js +48 -0
  280. package/parser/functions/controls/conditionalElifFn.js +19 -0
  281. package/parser/functions/controls/conditionalElseFn.js +13 -0
  282. package/parser/functions/controls/conditionalFn.js +62 -0
  283. package/parser/functions/controls/conditionalFn.spec.js +167 -0
  284. package/parser/functions/controls/conditionalIfFn.js +19 -0
  285. package/parser/functions/controls/forEachFn.js +70 -0
  286. package/parser/functions/controls/forEachFn.spec.js +101 -0
  287. package/parser/functions/controls/forFn.js +55 -0
  288. package/parser/functions/controls/forFn.spec.js +85 -0
  289. package/parser/functions/controls/functionCallFn.js +38 -0
  290. package/parser/functions/controls/functionRunFn.js +40 -0
  291. package/parser/functions/controls/functionRunFn.spec.js +77 -0
  292. package/parser/functions/controls/groupFn.js +42 -0
  293. package/parser/functions/controls/groupFn.spec.js +63 -0
  294. package/parser/functions/controls/preconditionFn.js +40 -0
  295. package/parser/functions/controls/preconditionFn.spec.js +97 -0
  296. package/parser/functions/controls/register.js +45 -0
  297. package/parser/functions/controls/returnFn.js +21 -0
  298. package/parser/functions/controls/returnFn.spec.js +44 -0
  299. package/parser/functions/controls/switchCaseFn.js +22 -0
  300. package/parser/functions/controls/switchDefaultFn.js +13 -0
  301. package/parser/functions/controls/switchFn.js +50 -0
  302. package/parser/functions/controls/switchFn.spec.js +104 -0
  303. package/parser/functions/controls/taskCallFn.js +31 -0
  304. package/parser/functions/controls/throwFn.js +21 -0
  305. package/parser/functions/controls/throwFn.spec.js +56 -0
  306. package/parser/functions/controls/tryCatchFn.js +67 -0
  307. package/parser/functions/controls/tryCatchFn.spec.js +180 -0
  308. package/parser/functions/controls/whileFn.js +52 -0
  309. package/parser/functions/controls/whileFn.spec.js +94 -0
  310. package/parser/functions/db/dbAddFn.js +38 -0
  311. package/parser/functions/db/dbAddFn.spec.js +72 -0
  312. package/parser/functions/db/dbAddOrEditFn.js +39 -0
  313. package/parser/functions/db/dbAddOrEditFn.spec.js +97 -0
  314. package/parser/functions/db/dbAddonAttr.js +17 -0
  315. package/parser/functions/db/dbBulkAddFn.js +54 -0
  316. package/parser/functions/db/dbBulkAddFn.spec.js +94 -0
  317. package/parser/functions/db/dbBulkDeleteFn.js +35 -0
  318. package/parser/functions/db/dbBulkDeleteFn.spec.js +28 -0
  319. package/parser/functions/db/dbBulkFn.js +20 -0
  320. package/parser/functions/db/dbBulkPatchFn.js +35 -0
  321. package/parser/functions/db/dbBulkPatchFn.spec.js +42 -0
  322. package/parser/functions/db/dbBulkUpdateFn.js +35 -0
  323. package/parser/functions/db/dbBulkUpdateFn.spec.js +42 -0
  324. package/parser/functions/db/dbDelFn.js +34 -0
  325. package/parser/functions/db/dbDelFn.spec.js +62 -0
  326. package/parser/functions/db/dbDirectQueryFn.js +37 -0
  327. package/parser/functions/db/dbDirectQueryFn.spec.js +104 -0
  328. package/parser/functions/db/dbEditFn.js +40 -0
  329. package/parser/functions/db/dbEditFn.spec.js +122 -0
  330. package/parser/functions/db/dbExternalDirectQueryFn.js +29 -0
  331. package/parser/functions/db/dbExternalDirectQueryFn.spec.js +103 -0
  332. package/parser/functions/db/dbExternalFn.js +29 -0
  333. package/parser/functions/db/dbGetFn.js +40 -0
  334. package/parser/functions/db/dbGetFn.spec.js +117 -0
  335. package/parser/functions/db/dbHasFn.js +34 -0
  336. package/parser/functions/db/dbHasFn.spec.js +62 -0
  337. package/parser/functions/db/dbPatchFn.js +39 -0
  338. package/parser/functions/db/dbPatchFn.spec.js +88 -0
  339. package/parser/functions/db/dbQueryFn.js +73 -0
  340. package/parser/functions/db/dbQueryFn.spec.js +333 -0
  341. package/parser/functions/db/dbSchemaFn.js +25 -0
  342. package/parser/functions/db/dbSchemaFn.spec.js +42 -0
  343. package/parser/functions/db/dbSetDatasourceFn.js +18 -0
  344. package/parser/functions/db/dbSetDatasourceFn.spec.js +44 -0
  345. package/parser/functions/db/dbTransactionFn.js +43 -0
  346. package/parser/functions/db/dbTransactionFn.spec.js +63 -0
  347. package/parser/functions/db/dbTruncateFn.js +33 -0
  348. package/parser/functions/db/dbTruncateFn.spec.js +42 -0
  349. package/parser/functions/db/register.js +52 -0
  350. package/parser/functions/db/schema.js +8 -0
  351. package/parser/functions/dbFn.js +31 -0
  352. package/parser/functions/debug/debugLogFn.js +21 -0
  353. package/parser/functions/debug/debugLogFn.spec.js +44 -0
  354. package/parser/functions/debug/debugStopFn.js +21 -0
  355. package/parser/functions/debug/debugStopFn.spec.js +44 -0
  356. package/parser/functions/debug/register.js +11 -0
  357. package/parser/functions/debugFn.js +18 -0
  358. package/parser/functions/expect/register.js +44 -0
  359. package/parser/functions/expect/unitExpectToBeWithinFn.js +28 -0
  360. package/parser/functions/expect/unitExpectToBeWithinFn.spec.js +61 -0
  361. package/parser/functions/expect/unitExpectToThrowFn.js +15 -0
  362. package/parser/functions/expect/unitExpectToThrowFn.spec.js +40 -0
  363. package/parser/functions/expect/unitExpectWithArgumentsFn.js +49 -0
  364. package/parser/functions/expect/unitExpectWithArgumentsFn.spec.js +341 -0
  365. package/parser/functions/expect/unitExpectWithoutArgumentsFn.js +42 -0
  366. package/parser/functions/expect/unitExpectWithoutArgumentsFn.spec.js +69 -0
  367. package/parser/functions/expect/workflowExpectToBeWithinFn.js +22 -0
  368. package/parser/functions/expect/workflowExpectToBeWithinFn.spec.js +70 -0
  369. package/parser/functions/expect/workflowExpectToThrowFn.js +21 -0
  370. package/parser/functions/expect/workflowExpectToThrowFn.spec.js +56 -0
  371. package/parser/functions/expect/workflowExpectWithArgumentsFn.js +40 -0
  372. package/parser/functions/expect/workflowExpectWithArgumentsFn.spec.js +301 -0
  373. package/parser/functions/expect/workflowExpectWithoutArgumentsFn.js +39 -0
  374. package/parser/functions/expect/workflowExpectWithoutArgumentsFn.spec.js +87 -0
  375. package/parser/functions/math/allMathFn.js +64 -0
  376. package/parser/functions/math/allMathFn.spec.js +100 -0
  377. package/parser/functions/math/register.js +9 -0
  378. package/parser/functions/mathFn.js +15 -0
  379. package/parser/functions/middlewareCallFn.js +43 -0
  380. package/parser/functions/middlewareCallFn.spec.js +44 -0
  381. package/parser/functions/object/objectEntriesFn.js +22 -0
  382. package/parser/functions/object/objectEntriesFn.spec.js +44 -0
  383. package/parser/functions/object/objectKeysFn.js +22 -0
  384. package/parser/functions/object/objectKeysFn.spec.js +44 -0
  385. package/parser/functions/object/objectValuesFn.js +22 -0
  386. package/parser/functions/object/objectValuesFn.spec.js +44 -0
  387. package/parser/functions/object/register.js +13 -0
  388. package/parser/functions/objectFn.js +22 -0
  389. package/parser/functions/redis/redisCountFn.js +26 -0
  390. package/parser/functions/redis/redisCountFn.spec.js +58 -0
  391. package/parser/functions/redis/redisDecrFn.js +28 -0
  392. package/parser/functions/redis/redisDecrFn.spec.js +47 -0
  393. package/parser/functions/redis/redisDelFn.js +25 -0
  394. package/parser/functions/redis/redisDelFn.spec.js +58 -0
  395. package/parser/functions/redis/redisGetFn.js +26 -0
  396. package/parser/functions/redis/redisGetFn.spec.js +67 -0
  397. package/parser/functions/redis/redisHasFn.js +26 -0
  398. package/parser/functions/redis/redisHasFn.spec.js +58 -0
  399. package/parser/functions/redis/redisIncrFn.js +28 -0
  400. package/parser/functions/redis/redisIncrFn.spec.js +74 -0
  401. package/parser/functions/redis/redisKeysFn.js +26 -0
  402. package/parser/functions/redis/redisKeysFn.spec.js +67 -0
  403. package/parser/functions/redis/redisPopFn.js +26 -0
  404. package/parser/functions/redis/redisPopFn.spec.js +67 -0
  405. package/parser/functions/redis/redisPushFn.js +28 -0
  406. package/parser/functions/redis/redisPushFn.spec.js +71 -0
  407. package/parser/functions/redis/redisRangeFn.js +30 -0
  408. package/parser/functions/redis/redisRangeFn.spec.js +80 -0
  409. package/parser/functions/redis/redisRateLimitFn.js +32 -0
  410. package/parser/functions/redis/redisRateLimitFn.spec.js +87 -0
  411. package/parser/functions/redis/redisRemoveFn.js +29 -0
  412. package/parser/functions/redis/redisRemoveFn.spec.js +65 -0
  413. package/parser/functions/redis/redisSetFn.js +29 -0
  414. package/parser/functions/redis/redisSetFn.spec.js +89 -0
  415. package/parser/functions/redis/redisShiftFn.js +26 -0
  416. package/parser/functions/redis/redisShiftFn.spec.js +67 -0
  417. package/parser/functions/redis/redisUnshiftFn.js +28 -0
  418. package/parser/functions/redis/redisUnshiftFn.spec.js +73 -0
  419. package/parser/functions/redis/register.js +37 -0
  420. package/parser/functions/redisFn.js +31 -0
  421. package/parser/functions/register.js +91 -0
  422. package/parser/functions/schema/register.js +30 -0
  423. package/parser/functions/schema/schemaFn.js +173 -0
  424. package/parser/functions/schema/schemaFn.spec.js +92 -0
  425. package/parser/functions/schema/schemaParseArrayFn.js +47 -0
  426. package/parser/functions/schema/schemaParseArrayFn.spec.js +134 -0
  427. package/parser/functions/schema/schemaParseAttributeFn.js +194 -0
  428. package/parser/functions/schema/schemaParseAttributeFn.spec.js +281 -0
  429. package/parser/functions/schema/schemaParseConstantFn.js +136 -0
  430. package/parser/functions/schema/schemaParseConstantFn.spec.js +122 -0
  431. package/parser/functions/schema/schemaParseEnum.js +52 -0
  432. package/parser/functions/schema/schemaParseEnum.spec.js +47 -0
  433. package/parser/functions/schema/schemaParseImmutableFn.js +134 -0
  434. package/parser/functions/schema/schemaParseImmutableFn.spec.js +99 -0
  435. package/parser/functions/schema/schemaParseObjectFn.js +171 -0
  436. package/parser/functions/schema/schemaParseObjectFn.spec.js +223 -0
  437. package/parser/functions/schema/utils.js +136 -0
  438. package/parser/functions/schema/utils.spec.js +27 -0
  439. package/parser/functions/security/register.js +64 -0
  440. package/parser/functions/security/securityCheckPasswordFn.js +24 -0
  441. package/parser/functions/security/securityCheckPasswordFn.spec.js +22 -0
  442. package/parser/functions/security/securityCreateAuthTokenFn.js +24 -0
  443. package/parser/functions/security/securityCreateAuthTokenFn.spec.js +24 -0
  444. package/parser/functions/security/securityCreateCurveKeyFn.js +19 -0
  445. package/parser/functions/security/securityCreateCurveKeyFn.spec.js +22 -0
  446. package/parser/functions/security/securityCreatePasswordFn.js +26 -0
  447. package/parser/functions/security/securityCreatePasswordFn.spec.js +26 -0
  448. package/parser/functions/security/securityCreateRsaKeyFn.js +19 -0
  449. package/parser/functions/security/securityCreateRsaKeyFn.spec.js +22 -0
  450. package/parser/functions/security/securityCreateSecretKeyFn.js +24 -0
  451. package/parser/functions/security/securityCreateSecretKeyFn.spec.js +22 -0
  452. package/parser/functions/security/securityCreateUuidFn.js +26 -0
  453. package/parser/functions/security/securityCreateUuidFn.spec.js +27 -0
  454. package/parser/functions/security/securityDecryptFn.js +24 -0
  455. package/parser/functions/security/securityDecryptFn.spec.js +24 -0
  456. package/parser/functions/security/securityEncryptFn.js +24 -0
  457. package/parser/functions/security/securityEncryptFn.spec.js +24 -0
  458. package/parser/functions/security/securityJweDecodeFn.js +24 -0
  459. package/parser/functions/security/securityJweDecodeFn.spec.js +26 -0
  460. package/parser/functions/security/securityJweEncodeFn.js +24 -0
  461. package/parser/functions/security/securityJweEncodeFn.spec.js +26 -0
  462. package/parser/functions/security/securityJwsDecodeFn.js +24 -0
  463. package/parser/functions/security/securityJwsDecodeFn.spec.js +25 -0
  464. package/parser/functions/security/securityJwsEncodeFn.js +24 -0
  465. package/parser/functions/security/securityJwsEncodeFn.spec.js +25 -0
  466. package/parser/functions/security/securityRandomBytesFn.js +24 -0
  467. package/parser/functions/security/securityRandomBytesFn.spec.js +21 -0
  468. package/parser/functions/security/securityRandomNumberFn.js +24 -0
  469. package/parser/functions/security/securityRandomNumberFn.spec.js +22 -0
  470. package/parser/functions/securityFn.js +30 -0
  471. package/parser/functions/storage/register.js +44 -0
  472. package/parser/functions/storage/storageCreateAttachmentFn.js +25 -0
  473. package/parser/functions/storage/storageCreateAttachmentFn.spec.js +87 -0
  474. package/parser/functions/storage/storageCreateAudioFn.js +29 -0
  475. package/parser/functions/storage/storageCreateAudioFn.spec.js +98 -0
  476. package/parser/functions/storage/storageCreateFileResourceFn.js +19 -0
  477. package/parser/functions/storage/storageCreateFileResourceFn.spec.js +72 -0
  478. package/parser/functions/storage/storageCreateImageFn.js +25 -0
  479. package/parser/functions/storage/storageCreateImageFn.spec.js +98 -0
  480. package/parser/functions/storage/storageCreateVideoFn.js +29 -0
  481. package/parser/functions/storage/storageCreateVideoFn.spec.js +99 -0
  482. package/parser/functions/storage/storageDeleteFileFn.js +17 -0
  483. package/parser/functions/storage/storageDeleteFileFn.spec.js +67 -0
  484. package/parser/functions/storage/storageReadFileResourceFn.js +19 -0
  485. package/parser/functions/storage/storageReadFileResourceFn.spec.js +60 -0
  486. package/parser/functions/storage/storageSignPrivateUrlFn.js +19 -0
  487. package/parser/functions/storage/storageSignPrivateUrlFn.spec.js +72 -0
  488. package/parser/functions/storageFn.js +24 -0
  489. package/parser/functions/stream/register.js +13 -0
  490. package/parser/functions/stream/streamFromCsvFn.js +20 -0
  491. package/parser/functions/stream/streamFromCsvFn.spec.js +69 -0
  492. package/parser/functions/stream/streamFromJsonlFn.js +21 -0
  493. package/parser/functions/stream/streamFromJsonlFn.spec.js +47 -0
  494. package/parser/functions/stream/streamFromRequestFn.js +50 -0
  495. package/parser/functions/stream/streamFromRequestFn.spec.js +103 -0
  496. package/parser/functions/streamFn.js +19 -0
  497. package/parser/functions/text/allTextWithReturnValueFn.js +36 -0
  498. package/parser/functions/text/allTextWithReturnValueFn.spec.js +100 -0
  499. package/parser/functions/text/allTextWithoutReturnValueFn.js +34 -0
  500. package/parser/functions/text/allTextWithoutReturnValueFn.spec.js +122 -0
  501. package/parser/functions/text/register.js +17 -0
  502. package/parser/functions/textFn.js +33 -0
  503. package/parser/functions/toolCallFn.js +40 -0
  504. package/parser/functions/toolCallFn.spec.js +28 -0
  505. package/parser/functions/unitExpectFn.js +20 -0
  506. package/parser/functions/unitExpectFn.spec.js +21 -0
  507. package/parser/functions/util/register.js +29 -0
  508. package/parser/functions/util/utilGeoDistanceFn.js +30 -0
  509. package/parser/functions/util/utilGeoDistanceFn.spec.js +79 -0
  510. package/parser/functions/util/utilGetAllInputFn.js +20 -0
  511. package/parser/functions/util/utilGetAllInputFn.spec.js +33 -0
  512. package/parser/functions/util/utilGetEnvFn.js +20 -0
  513. package/parser/functions/util/utilGetEnvFn.spec.js +33 -0
  514. package/parser/functions/util/utilGetRawInputFn.js +25 -0
  515. package/parser/functions/util/utilGetRawInputFn.spec.js +55 -0
  516. package/parser/functions/util/utilGetVarsFn.js +20 -0
  517. package/parser/functions/util/utilGetVarsFn.spec.js +33 -0
  518. package/parser/functions/util/utilIpLookupFn.js +22 -0
  519. package/parser/functions/util/utilIpLookupFn.spec.js +37 -0
  520. package/parser/functions/util/utilPostProcessFn.js +43 -0
  521. package/parser/functions/util/utilPostProcessFn.spec.js +63 -0
  522. package/parser/functions/util/utilSendEmailFn.js +108 -0
  523. package/parser/functions/util/utilSendEmailFn.spec.js +62 -0
  524. package/parser/functions/util/utilSetHeaderFn.js +22 -0
  525. package/parser/functions/util/utilSetHeaderFn.spec.js +48 -0
  526. package/parser/functions/util/utilSleepFn.js +19 -0
  527. package/parser/functions/util/utilSleepFn.spec.js +44 -0
  528. package/parser/functions/util/utilTemplateFn.js +19 -0
  529. package/parser/functions/util/utilTemplateFn.spec.js +78 -0
  530. package/parser/functions/utilFn.js +39 -0
  531. package/parser/functions/varFn.js +51 -0
  532. package/parser/functions/varFn.spec.js +173 -0
  533. package/parser/functions/webflowFn.js +19 -0
  534. package/parser/functions/workflowExpectFn.js +20 -0
  535. package/parser/functions/zip/register.js +20 -0
  536. package/parser/functions/zip/zipAddToArchiveFn.js +31 -0
  537. package/parser/functions/zip/zipAddToArchiveFn.spec.js +78 -0
  538. package/parser/functions/zip/zipCreateArchiveFn.js +29 -0
  539. package/parser/functions/zip/zipCreateArchiveFn.spec.js +53 -0
  540. package/parser/functions/zip/zipDeleteFromArchiveFn.js +23 -0
  541. package/parser/functions/zip/zipDeleteFromArchiveFn.spec.js +69 -0
  542. package/parser/functions/zip/zipExtractFn.js +23 -0
  543. package/parser/functions/zip/zipExtractFn.spec.js +52 -0
  544. package/parser/functions/zip/zipViewContentsFn.js +24 -0
  545. package/parser/functions/zip/zipViewContentsFn.spec.js +52 -0
  546. package/parser/functions/zipFn.js +21 -0
  547. package/parser/generic/arrayOfObjectAttrReq.js +47 -0
  548. package/parser/generic/arrayOfObjectAttrReq.spec.js +254 -0
  549. package/parser/generic/arrayOfStringLiterals.js +45 -0
  550. package/parser/generic/arrayOfStringLiterals.spec.js +56 -0
  551. package/parser/generic/arrayWithValues.js +35 -0
  552. package/parser/generic/arrayWithValues.spec.js +72 -0
  553. package/parser/generic/asVariable.js +23 -0
  554. package/parser/generic/asVariable.spec.js +37 -0
  555. package/parser/generic/assignableVariableAs.js +27 -0
  556. package/parser/generic/assignableVariableAs.spec.js +52 -0
  557. package/parser/generic/assignableVariableProperty.js +52 -0
  558. package/parser/generic/assignableVariableProperty.spec.js +52 -0
  559. package/parser/generic/booleanValue.js +22 -0
  560. package/parser/generic/bracketAccessor.js +53 -0
  561. package/parser/generic/castedValue.js +14 -0
  562. package/parser/generic/castedValue.spec.js +29 -0
  563. package/parser/generic/chainedIdentifier.js +48 -0
  564. package/parser/generic/chainedIdentifier.spec.js +89 -0
  565. package/parser/generic/completeAuthVariable.js +13 -0
  566. package/parser/generic/completeAuthVariable.spec.js +23 -0
  567. package/parser/generic/completeEnvVariable.js +79 -0
  568. package/parser/generic/completeEnvVariable.spec.js +94 -0
  569. package/parser/generic/completeErrorVariable.js +39 -0
  570. package/parser/generic/completeErrorVariable.spec.js +17 -0
  571. package/parser/generic/completeInputVariable.js +42 -0
  572. package/parser/generic/completeInputVariable.spec.js +53 -0
  573. package/parser/generic/enumValue.js +23 -0
  574. package/parser/generic/expressionFn.js +415 -0
  575. package/parser/generic/expressionFn.spec.js +588 -0
  576. package/parser/generic/filterFn.js +48 -0
  577. package/parser/generic/filterFn.spec.js +47 -0
  578. package/parser/generic/filterNames.js +381 -0
  579. package/parser/generic/functionAttrReq.js +279 -0
  580. package/parser/generic/functionAttrReq.spec.js +353 -0
  581. package/parser/generic/longFormVariable.js +46 -0
  582. package/parser/generic/longFormVariable.spec.js +25 -0
  583. package/parser/generic/minimalFnBody.js +24 -0
  584. package/parser/generic/minimalFnBody.spec.js +47 -0
  585. package/parser/generic/mockAttribute.js +21 -0
  586. package/parser/generic/mockAttribute.spec.js +57 -0
  587. package/parser/generic/multilineFilterFn.js +27 -0
  588. package/parser/generic/multilineFilterFn.spec.js +51 -0
  589. package/parser/generic/numberValue.js +27 -0
  590. package/parser/generic/objectAttrReq.js +243 -0
  591. package/parser/generic/objectAttrReq.spec.js +412 -0
  592. package/parser/generic/objectWithAttributes.js +74 -0
  593. package/parser/generic/objectWithAttributes.spec.js +147 -0
  594. package/parser/generic/optionalCommentBlock.js +32 -0
  595. package/parser/generic/pipedFilter.js +20 -0
  596. package/parser/generic/register.js +124 -0
  597. package/parser/generic/requiredValueFnBody.js +40 -0
  598. package/parser/generic/requiredValueFnBody.spec.js +56 -0
  599. package/parser/generic/shortFormVariable.js +17 -0
  600. package/parser/generic/shortFormVariable.spec.js +27 -0
  601. package/parser/generic/stringArray.js +33 -0
  602. package/parser/generic/stringArray.spec.js +55 -0
  603. package/parser/generic/tagsAttribute.js +14 -0
  604. package/parser/generic/tagsAttribute.spec.js +47 -0
  605. package/parser/generic/utils.js +14 -0
  606. package/parser/generic/valueExpressionForResponse.js +51 -0
  607. package/parser/generic/variableOnly.js +13 -0
  608. package/parser/generic/variableOnly.spec.js +47 -0
  609. package/parser/mcp_server_parser.js +130 -0
  610. package/parser/mcp_server_parser.spec.js +478 -0
  611. package/parser/mcp_server_trigger_parser.js +142 -0
  612. package/parser/mcp_server_trigger_parser.spec.js +396 -0
  613. package/parser/metadata/columnMetadataDefinition.js +32 -0
  614. package/parser/metadata/columnMetadataDefinition.spec.js +47 -0
  615. package/parser/metadata/enumColumnMetadataDefinition.js +46 -0
  616. package/parser/metadata/enumColumnMetadataDefinition.spec.js +59 -0
  617. package/parser/metadata/objectColumnMetadataDefinition.js +26 -0
  618. package/parser/metadata/register.js +22 -0
  619. package/parser/middleware_parser.js +137 -0
  620. package/parser/middleware_parser.spec.js +203 -0
  621. package/parser/parser.js +87 -0
  622. package/parser/query_parser.js +183 -0
  623. package/parser/query_parser.spec.js +141 -0
  624. package/parser/realtime_channel_parser.js +45 -0
  625. package/parser/realtime_channel_parser.spec.js +20 -0
  626. package/parser/realtime_trigger_parser.js +141 -0
  627. package/parser/realtime_trigger_parser.spec.js +469 -0
  628. package/parser/register.js +88 -0
  629. package/parser/table_parser.js +126 -0
  630. package/parser/table_parser.spec.js +138 -0
  631. package/parser/table_trigger_parser.js +144 -0
  632. package/parser/table_trigger_parser.spec.js +449 -0
  633. package/parser/task_parser.js +116 -0
  634. package/parser/task_parser.spec.js +83 -0
  635. package/parser/test_parser.js +39 -0
  636. package/parser/tests/agent/agent_parser.spec.js +52 -0
  637. package/parser/tests/agent/valid_sources/customer_servier_agent.xs +45 -0
  638. package/parser/tests/api_group/api_group_parser.spec.js +52 -0
  639. package/parser/tests/api_group/valid_sources/api_group_history.xs +4 -0
  640. package/parser/tests/api_group/valid_sources/basic_api_group.xs +3 -0
  641. package/parser/tests/api_group/valid_sources/complete_api_group.xs +7 -0
  642. package/parser/tests/api_group/valid_sources/protected_api_group.xs +7 -0
  643. package/parser/tests/function/function_parser.spec.js +52 -0
  644. package/parser/tests/function/valid_sources/all_controls.xs +68 -0
  645. package/parser/tests/function/valid_sources/all_query_return_types.xs +227 -0
  646. package/parser/tests/function/valid_sources/all_storage.xs +45 -0
  647. package/parser/tests/function/valid_sources/discord_poll_send_to_slack.xs +133 -0
  648. package/parser/tests/function/valid_sources/expression_in_response.xs +22 -0
  649. package/parser/tests/function/valid_sources/filter_by_value.xs +55 -0
  650. package/parser/tests/function/valid_sources/filter_query.xs +82 -0
  651. package/parser/tests/function/valid_sources/large_regex.xs +13 -0
  652. package/parser/tests/function/valid_sources/ledash_ends_with.xs +90 -0
  653. package/parser/tests/function/valid_sources/multiline_description.xs +28 -0
  654. package/parser/tests/function/valid_sources/multiline_expr.xs +41 -0
  655. package/parser/tests/function/valid_sources/set_theory_fn.xs +129 -0
  656. package/parser/tests/function/valid_sources/simple_unit_test.xs +33 -0
  657. package/parser/tests/function/valid_sources/valid_officer.xs +57 -0
  658. package/parser/tests/function/valid_sources/webflow.xs +18 -0
  659. package/parser/tests/query/query_parser.spec.js +54 -0
  660. package/parser/tests/query/valid_sources/all_basics.xs +51 -0
  661. package/parser/tests/query/valid_sources/all_cloud.xs +141 -0
  662. package/parser/tests/query/valid_sources/all_db.xs +102 -0
  663. package/parser/tests/query/valid_sources/all_external_db.xs +43 -0
  664. package/parser/tests/query/valid_sources/all_keywords.xs +65 -0
  665. package/parser/tests/query/valid_sources/all_math.xs +53 -0
  666. package/parser/tests/query/valid_sources/all_object.xs +25 -0
  667. package/parser/tests/query/valid_sources/all_redis.xs +106 -0
  668. package/parser/tests/query/valid_sources/all_security.xs +105 -0
  669. package/parser/tests/query/valid_sources/all_stream.xs +69 -0
  670. package/parser/tests/query/valid_sources/all_text.xs +54 -0
  671. package/parser/tests/query/valid_sources/all_util.xs +66 -0
  672. package/parser/tests/query/valid_sources/all_zip.xs +39 -0
  673. package/parser/tests/query/valid_sources/arrays.xs +33 -0
  674. package/parser/tests/query/valid_sources/disabled_response.xs +27 -0
  675. package/parser/tests/query/valid_sources/multiline_lambda_GET.xs +50 -0
  676. package/parser/tests/query/valid_sources/mutliline_query.xs +140 -0
  677. package/parser/tests/query/valid_sources/patch_expression_multiline.xs +27 -0
  678. package/parser/tests/query/valid_sources/query_cache.xs +34 -0
  679. package/parser/tests/query/valid_sources/query_example.xs +43 -0
  680. package/parser/tests/query/valid_sources/query_mini.xs +11 -0
  681. package/parser/tests/query/valid_sources/query_rich_inputs.xs +32 -0
  682. package/parser/tests/query/valid_sources/simple_unit_test.xs +33 -0
  683. package/parser/tests/query/valid_sources/test_with_slashes.xs +22 -0
  684. package/parser/tests/query/valid_sources/with_unit_test.xs +97 -0
  685. package/parser/tests/table/table_parser.spec.js +52 -0
  686. package/parser/tests/table/valid_sources/account.xs +31 -0
  687. package/parser/tests/table/valid_sources/all_basic_columns.xs +44 -0
  688. package/parser/tests/table/valid_sources/basic_table.xs +15 -0
  689. package/parser/tests/table/valid_sources/empty_object.xs +17 -0
  690. package/parser/tests/table/valid_sources/empty_table.xs +3 -0
  691. package/parser/tests/table/valid_sources/multiline_index.xs +33 -0
  692. package/parser/tests/table/valid_sources/relation.xs +44 -0
  693. package/parser/tests/table/valid_sources/rich_columns.xs +28 -0
  694. package/parser/tests/table/valid_sources/table_with_comments.xs +17 -0
  695. package/parser/tests/table/valid_sources/table_with_search_index.xs +31 -0
  696. package/parser/tests/table/valid_sources/view_table.xs +62 -0
  697. package/parser/tests/task/task_parser.spec.js +53 -0
  698. package/parser/tests/task/valid_sources/active_event.xs +11 -0
  699. package/parser/tests/task/valid_sources/all_events.xs +17 -0
  700. package/parser/tests/task/valid_sources/daily_sales_report.xs +56 -0
  701. package/parser/tests/task/valid_sources/inactive_event.xs +11 -0
  702. package/parser/tests/workflow_test/valid_sources/basic_workflow_test.xs +13 -0
  703. package/parser/tests/workflow_test/workflow_test_parser.spec.js +52 -0
  704. package/parser/tool_parser.js +121 -0
  705. package/parser/tool_parser.spec.js +102 -0
  706. package/parser/workflow_test_parser.js +73 -0
  707. package/parser/workflow_test_parser.spec.js +71 -0
  708. package/parser/workspace_parser.js +38 -0
  709. package/parser/workspace_parser.spec.js +142 -0
  710. package/parser/workspace_trigger_parser.js +118 -0
  711. package/parser/workspace_trigger_parser.spec.js +332 -0
  712. package/profile-parser.js +214 -0
  713. package/server.js +59 -0
  714. package/toTmLanguage.js +75 -0
  715. package/utils.js +55 -0
  716. package/utils.spec.js +277 -0
@@ -0,0 +1,29 @@
1
+ import { RemoveToken } from "../../../lexer/redis.js";
2
+
3
+ /**
4
+ * redis.remove {
5
+ * key = "list"
6
+ * value = "FIRST"
7
+ * count = ""
8
+ * }
9
+ * @param {import('../../base_parser.js').XanoBaseParser} $
10
+ */
11
+ export function redisRemoveFn($) {
12
+ return () => {
13
+ $.sectionStack.push("redisRemoveFn");
14
+ const fnToken = $.CONSUME(RemoveToken); // "remove"
15
+ $.SUBRULE($.schemaParseAttributeFn, {
16
+ ARGS: [
17
+ fnToken,
18
+ {
19
+ key: "[expression]",
20
+ value: "[expression]",
21
+ count: "[expression]",
22
+ "description?": "[string]",
23
+ "disabled?": "[boolean]",
24
+ },
25
+ ],
26
+ });
27
+ $.sectionStack.pop();
28
+ };
29
+ }
@@ -0,0 +1,65 @@
1
+ import { expect } from "chai";
2
+ import { describe, it } from "mocha";
3
+ import { lexDocument } from "../../../lexer/lexer.js";
4
+ import { parser } from "../../test_parser.js";
5
+
6
+ function parse(inputText) {
7
+ parser.reset();
8
+ const lexResult = lexDocument(inputText);
9
+ parser.input = lexResult.tokens;
10
+ parser.redisRemoveFn();
11
+ return parser;
12
+ }
13
+
14
+ describe("redis.remove", () => {
15
+ it("Check remove is taking required params", () => {
16
+ const input = `remove {
17
+ key = "list"
18
+ value = "FIRST"
19
+ count = ""
20
+ }`;
21
+ const parser = parse(input);
22
+ expect(parser.errors).to.be.empty;
23
+ });
24
+
25
+ it("Check remove is missing required params", () => {
26
+ const input = `remove {
27
+ key = "list"
28
+ value = "FIRST"
29
+ }`;
30
+ const parser = parse(input);
31
+ expect(parser.errors).to.not.be.empty;
32
+ });
33
+
34
+ it("Check remove has duplicate attributes", () => {
35
+ const input = `remove {
36
+ key = "list"
37
+ key = "another_list"
38
+ value = "FIRST"
39
+ count = ""
40
+ }`;
41
+ const parser = parse(input);
42
+ expect(parser.errors).to.not.be.empty;
43
+ });
44
+
45
+ it("Check remove has illegal attributes", () => {
46
+ const input = `remove {
47
+ key = "list"
48
+ value = "FIRST"
49
+ count = ""
50
+ illegalAttr = "value"
51
+ }`;
52
+ const parser = parse(input);
53
+ expect(parser.errors).to.not.be.empty;
54
+ });
55
+
56
+ it("Check remove count attribute works", () => {
57
+ const input = `remove {
58
+ key = "list"
59
+ value = "FIRST"
60
+ count = "1"
61
+ }`;
62
+ const parser = parse(input);
63
+ expect(parser.errors).to.be.empty;
64
+ });
65
+ });
@@ -0,0 +1,29 @@
1
+ import { SetToken } from "../../../lexer/redis.js";
2
+
3
+ /**
4
+ * redis.set {
5
+ * key = "name"
6
+ * data = "xano"
7
+ * ttl = 0
8
+ * }
9
+ * @param {import('../../base_parser.js').XanoBaseParser} $
10
+ */
11
+ export function redisSetFn($) {
12
+ return () => {
13
+ $.sectionStack.push("redisSetFn");
14
+ const fnToken = $.CONSUME(SetToken); // "set"
15
+ $.SUBRULE($.schemaParseAttributeFn, {
16
+ ARGS: [
17
+ fnToken,
18
+ {
19
+ key: "[expression]",
20
+ data: "[expression]",
21
+ ttl: "[expression]",
22
+ "description?": "[string]",
23
+ "disabled?": "[boolean]",
24
+ },
25
+ ],
26
+ });
27
+ $.sectionStack.pop();
28
+ };
29
+ }
@@ -0,0 +1,89 @@
1
+ import { expect } from "chai";
2
+ import { describe, it } from "mocha";
3
+ import { lexDocument } from "../../../lexer/lexer.js";
4
+ import { parser } from "../../test_parser.js";
5
+
6
+ function parse(inputText) {
7
+ parser.reset();
8
+ const lexResult = lexDocument(inputText);
9
+ parser.input = lexResult.tokens;
10
+ parser.redisSetFn();
11
+ return parser;
12
+ }
13
+
14
+ describe("redis.set", () => {
15
+ it("Check set is taking required params", () => {
16
+ const input = `set {
17
+ key = "name"
18
+ data = "xano"
19
+ ttl = 0
20
+ }`;
21
+ const parser = parse(input);
22
+ expect(parser.errors).to.be.empty;
23
+ });
24
+
25
+ it("Check set is taking optional params", () => {
26
+ const input = `set {
27
+ key = "name"
28
+ data = "xano"
29
+ ttl = 0
30
+ description = "foo"
31
+ disabled = true
32
+ }`;
33
+ const parser = parse(input);
34
+ expect(parser.errors).to.be.empty;
35
+ });
36
+
37
+ it("Check set is missing required params", () => {
38
+ const input = `set {
39
+ key = "name"
40
+ data = "xano"
41
+ }`;
42
+ const parser = parse(input);
43
+ expect(parser.errors).to.not.be.empty;
44
+ });
45
+
46
+ it("Check set has duplicate attributes", () => {
47
+ const input = `set {
48
+ key = "name"
49
+ key = "another_name"
50
+ data = "xano"
51
+ ttl = 0
52
+ }`;
53
+ const parser = parse(input);
54
+ expect(parser.errors).to.not.be.empty;
55
+ });
56
+
57
+ it("Check set has illegal attributes", () => {
58
+ const input = `set {
59
+ key = "name"
60
+ data = "xano"
61
+ ttl = 0
62
+ illegalAttr = "value"
63
+ }`;
64
+ const parser = parse(input);
65
+ expect(parser.errors).to.not.be.empty;
66
+ });
67
+
68
+ it("Check set description attribute works", () => {
69
+ const input = `set {
70
+ key = "name"
71
+ data = "xano"
72
+ ttl = 0
73
+ description = "foo"
74
+ }`;
75
+ const parser = parse(input);
76
+ expect(parser.errors).to.be.empty;
77
+ });
78
+
79
+ it("Check set disabled attribute works", () => {
80
+ const input = `set {
81
+ key = "name"
82
+ data = "xano"
83
+ ttl = 0
84
+ disabled = true
85
+ }`;
86
+ const parser = parse(input);
87
+ expect(parser.errors).to.be.empty;
88
+ });
89
+ });
@@ -0,0 +1,26 @@
1
+ import { ShiftToken } from "../../../lexer/redis.js";
2
+
3
+ /**
4
+ * redis.shift {
5
+ * key = "list"
6
+ * } as $x8
7
+ * @param {import('../../base_parser.js').XanoBaseParser} $
8
+ */
9
+ export function redisShiftFn($) {
10
+ return () => {
11
+ $.sectionStack.push("redisShiftFn");
12
+ const fnToken = $.CONSUME(ShiftToken); // "shift"
13
+ $.SUBRULE($.schemaParseAttributeFn, {
14
+ ARGS: [
15
+ fnToken,
16
+ {
17
+ key: "[expression]",
18
+ "description?": "[string]",
19
+ "disabled?": "[boolean]",
20
+ },
21
+ ],
22
+ });
23
+ $.SUBRULE($.asVariable, { ARGS: [fnToken] });
24
+ $.sectionStack.pop();
25
+ };
26
+ }
@@ -0,0 +1,67 @@
1
+ import { expect } from "chai";
2
+ import { describe, it } from "mocha";
3
+ import { lexDocument } from "../../../lexer/lexer.js";
4
+ import { parser } from "../../test_parser.js";
5
+
6
+ function parse(inputText) {
7
+ parser.reset();
8
+ const lexResult = lexDocument(inputText);
9
+ parser.input = lexResult.tokens;
10
+ parser.redisShiftFn();
11
+ return parser;
12
+ }
13
+
14
+ describe("redis.shift", () => {
15
+ it("Check shift is taking required params", () => {
16
+ const parser = parse(`shift {
17
+ key = "list"
18
+ } as $x8`);
19
+ expect(parser.errors).to.be.empty;
20
+ });
21
+
22
+ it("Check shift is missing required params", () => {
23
+ const parser = parse(`shift {} as $x8`);
24
+ expect(parser.errors).to.not.be.empty;
25
+ });
26
+
27
+ it("Check shift has duplicate attributes", () => {
28
+ const parser = parse(`shift {
29
+ key = "list"
30
+ key = "another_list"
31
+ } as $x8`);
32
+ expect(parser.errors).to.not.be.empty;
33
+ });
34
+
35
+ it("Check shift has illegal attributes", () => {
36
+ const parser = parse(`shift {
37
+ key = "list"
38
+ illegalAttr = "value"
39
+ } as $x8`);
40
+ expect(parser.errors).to.not.be.empty;
41
+ });
42
+
43
+ it("Check shift with optional description attribute", () => {
44
+ const parser = parse(`shift {
45
+ key = "list"
46
+ description = "This is a description"
47
+ } as $x8`);
48
+ expect(parser.errors).to.be.empty;
49
+ });
50
+
51
+ it("Check shift with optional disabled attribute", () => {
52
+ const parser = parse(`shift {
53
+ key = "list"
54
+ disabled = true
55
+ } as $x8`);
56
+ expect(parser.errors).to.be.empty;
57
+ });
58
+
59
+ it("Check shift with both optional attributes", () => {
60
+ const parser = parse(`shift {
61
+ key = "list"
62
+ description = "This is a description"
63
+ disabled = true
64
+ } as $x8`);
65
+ expect(parser.errors).to.be.empty;
66
+ });
67
+ });
@@ -0,0 +1,28 @@
1
+ import { UnshiftToken } from "../../../lexer/redis.js";
2
+
3
+ /**
4
+ * redis.unshift {
5
+ * key = "list"
6
+ * value = "zero"
7
+ * } as $x6
8
+ * @param {import('../../base_parser.js').XanoBaseParser} $
9
+ */
10
+ export function redisUnshiftFn($) {
11
+ return () => {
12
+ $.sectionStack.push("redisUnshiftFn");
13
+ const fnToken = $.CONSUME(UnshiftToken); // "unshift"
14
+ $.SUBRULE($.schemaParseAttributeFn, {
15
+ ARGS: [
16
+ fnToken,
17
+ {
18
+ key: "[expression]",
19
+ value: "[expression]",
20
+ "description?": "[string]",
21
+ "disabled?": "[boolean]",
22
+ },
23
+ ],
24
+ });
25
+ $.SUBRULE($.asVariable, { ARGS: [fnToken] });
26
+ $.sectionStack.pop();
27
+ };
28
+ }
@@ -0,0 +1,73 @@
1
+ import { expect } from "chai";
2
+ import { describe, it } from "mocha";
3
+ import { lexDocument } from "../../../lexer/lexer.js";
4
+ import { parser } from "../../test_parser.js";
5
+
6
+ function parse(inputText) {
7
+ parser.reset();
8
+ const lexResult = lexDocument(inputText);
9
+ parser.input = lexResult.tokens;
10
+ parser.redisUnshiftFn();
11
+ return parser;
12
+ }
13
+
14
+ describe("redis.unshift", () => {
15
+ it("Check unshift is taking required params", () => {
16
+ const parser = parse(`unshift {
17
+ key = "list"
18
+ value = "zero"
19
+ } as $x6`);
20
+ expect(parser.errors).to.be.empty;
21
+ });
22
+
23
+ it("Check unshift is missing required params", () => {
24
+ const parser = parse(`unshift {} as $x6`);
25
+ expect(parser.errors).to.not.be.empty;
26
+ });
27
+
28
+ it("Check unshift has duplicate attributes", () => {
29
+ const parser = parse(`unshift {
30
+ key = "list"
31
+ key = "another_list"
32
+ value = "zero"
33
+ } as $x6`);
34
+ expect(parser.errors).to.not.be.empty;
35
+ });
36
+
37
+ it("Check unshift has illegal attributes", () => {
38
+ const parser = parse(`unshift {
39
+ key = "list"
40
+ value = "zero"
41
+ illegalAttr = "value"
42
+ } as $x6`);
43
+ expect(parser.errors).to.not.be.empty;
44
+ });
45
+
46
+ it("Check unshift with optional description attribute", () => {
47
+ const parser = parse(`unshift {
48
+ key = "list"
49
+ value = "zero"
50
+ description = "This is a description"
51
+ } as $x6`);
52
+ expect(parser.errors).to.be.empty;
53
+ });
54
+
55
+ it("Check unshift with optional disabled attribute", () => {
56
+ const parser = parse(`unshift {
57
+ key = "list"
58
+ value = "zero"
59
+ disabled = true
60
+ } as $x6`);
61
+ expect(parser.errors).to.be.empty;
62
+ });
63
+
64
+ it("Check unshift with both optional attributes", () => {
65
+ const parser = parse(`unshift {
66
+ key = "list"
67
+ value = "zero"
68
+ description = "This is a description"
69
+ disabled = true
70
+ } as $x6`);
71
+ expect(parser.errors).to.be.empty;
72
+ });
73
+ });
@@ -0,0 +1,37 @@
1
+ import { redisCountFn } from "./redisCountFn.js";
2
+ import { redisDecrFn } from "./redisDecrFn.js";
3
+ import { redisDelFn } from "./redisDelFn.js";
4
+ import { redisGetFn } from "./redisGetFn.js";
5
+ import { redisHasFn } from "./redisHasFn.js";
6
+ import { redisIncrFn } from "./redisIncrFn.js";
7
+ import { redisKeysFn } from "./redisKeysFn.js";
8
+ import { redisPopFn } from "./redisPopFn.js";
9
+ import { redisPushFn } from "./redisPushFn.js";
10
+ import { redisRangeFn } from "./redisRangeFn.js";
11
+ import { redisRateLimitFn } from "./redisRateLimitFn.js";
12
+ import { redisRemoveFn } from "./redisRemoveFn.js";
13
+ import { redisSetFn } from "./redisSetFn.js";
14
+ import { redisShiftFn } from "./redisShiftFn.js";
15
+ import { redisUnshiftFn } from "./redisUnshiftFn.js";
16
+
17
+ /**
18
+ * Registers all the parsers in this folder
19
+ * @param {import('../base_parser.js').XanoBaseParser} $
20
+ */
21
+ export const register = ($) => {
22
+ $.redisCountFn = $.RULE("redisCountFn", redisCountFn($));
23
+ $.redisDecrFn = $.RULE("redisDecrFn", redisDecrFn($));
24
+ $.redisDelFn = $.RULE("redisDelFn", redisDelFn($));
25
+ $.redisGetFn = $.RULE("redisGetFn", redisGetFn($));
26
+ $.redisHasFn = $.RULE("redisHasFn", redisHasFn($));
27
+ $.redisIncrFn = $.RULE("redisIncrFn", redisIncrFn($));
28
+ $.redisKeysFn = $.RULE("redisKeysFn", redisKeysFn($));
29
+ $.redisPopFn = $.RULE("redisPopFn", redisPopFn($));
30
+ $.redisPushFn = $.RULE("redisPushFn", redisPushFn($));
31
+ $.redisRangeFn = $.RULE("redisRangeFn", redisRangeFn($));
32
+ $.redisRateLimitFn = $.RULE("redisRateLimitFn", redisRateLimitFn($));
33
+ $.redisRemoveFn = $.RULE("redisRemoveFn", redisRemoveFn($));
34
+ $.redisSetFn = $.RULE("redisSetFn", redisSetFn($));
35
+ $.redisShiftFn = $.RULE("redisShiftFn", redisShiftFn($));
36
+ $.redisUnshiftFn = $.RULE("redisUnshiftFn", redisUnshiftFn($));
37
+ };
@@ -0,0 +1,31 @@
1
+ import { RedisToken } from "../../lexer/redis.js";
2
+ import { DotToken } from "../../lexer/tokens.js";
3
+
4
+ /**
5
+ * @param {import('../base_parser.js').XanoBaseParser} $
6
+ */
7
+ export function redisFn($) {
8
+ return () => {
9
+ $.sectionStack.push("redis");
10
+ $.CONSUME(RedisToken); // "redis"
11
+ $.CONSUME(DotToken); // "."
12
+ $.OR([
13
+ { ALT: () => $.SUBRULE($.redisDelFn) }, // redis.del
14
+ { ALT: () => $.SUBRULE($.redisSetFn) }, // redis.set
15
+ { ALT: () => $.SUBRULE($.redisGetFn) }, // redis.get
16
+ { ALT: () => $.SUBRULE($.redisHasFn) }, // redis.has
17
+ { ALT: () => $.SUBRULE($.redisIncrFn) }, // redis.incr
18
+ { ALT: () => $.SUBRULE($.redisDecrFn) }, // redis.decr
19
+ { ALT: () => $.SUBRULE($.redisKeysFn) }, // redis.keys
20
+ { ALT: () => $.SUBRULE($.redisPushFn) }, // redis.push
21
+ { ALT: () => $.SUBRULE($.redisUnshiftFn) }, // redis.unshift
22
+ { ALT: () => $.SUBRULE($.redisPopFn) }, // redis.pop
23
+ { ALT: () => $.SUBRULE($.redisShiftFn) }, // redis.shift
24
+ { ALT: () => $.SUBRULE($.redisRemoveFn) }, // redis.remove
25
+ { ALT: () => $.SUBRULE($.redisCountFn) }, // redis.count
26
+ { ALT: () => $.SUBRULE($.redisRangeFn) }, // redis.range
27
+ { ALT: () => $.SUBRULE($.redisRateLimitFn) }, // redis.ratelimit
28
+ ]);
29
+ $.sectionStack.pop();
30
+ };
31
+ }
@@ -0,0 +1,91 @@
1
+ import { actionCallFn } from "./actionCallFn.js";
2
+ import { addonCallFn } from "./addonCallFn.js";
3
+ import { register as register_ai } from "./ai/register.js";
4
+ import { aiFn } from "./aiFn.js";
5
+ import { register as register_api } from "./api/register.js";
6
+ import { apiFn } from "./apiFn.js";
7
+ import { register as register_array } from "./array/register.js";
8
+ import { arrayFn } from "./arrayFn.js";
9
+ import { register as register_cloud } from "./cloud/register.js";
10
+ import { cloudFn } from "./cloudFn.js";
11
+ import { controlFn } from "./controlFn.js";
12
+ import { register as register_controls } from "./controls/register.js";
13
+ import { register as register_db } from "./db/register.js";
14
+ import { dbFn } from "./dbFn.js";
15
+ import { register as register_debug } from "./debug/register.js";
16
+ import { debugFn } from "./debugFn.js";
17
+ import { register as register_expect } from "./expect/register.js";
18
+ import { register as register_math } from "./math/register.js";
19
+ import { mathFn } from "./mathFn.js";
20
+ import { middlewareCallFn } from "./middlewareCallFn.js";
21
+ import { register as register_object } from "./object/register.js";
22
+ import { objectFn } from "./objectFn.js";
23
+ import { register as register_redis } from "./redis/register.js";
24
+ import { redisFn } from "./redisFn.js";
25
+ import { register as register_schema } from "./schema/register.js";
26
+ import { register as register_security } from "./security/register.js";
27
+ import { securityFn } from "./securityFn.js";
28
+ import { register as register_storage } from "./storage/register.js";
29
+ import { storageFn } from "./storageFn.js";
30
+ import { register as register_stream } from "./stream/register.js";
31
+ import { streamFn } from "./streamFn.js";
32
+ import { register as register_text } from "./text/register.js";
33
+ import { textFn } from "./textFn.js";
34
+ import { toolCallFn } from "./toolCallFn.js";
35
+ import { unitExpectFn } from "./unitExpectFn.js";
36
+ import { register as register_util } from "./util/register.js";
37
+ import { utilFn } from "./utilFn.js";
38
+ import { varFn } from "./varFn.js";
39
+ import { webflowFn } from "./webflowFn.js";
40
+ import { workflowExpectFn } from "./workflowExpectFn.js";
41
+ import { register as register_zip } from "./zip/register.js";
42
+ import { zipFn } from "./zipFn.js";
43
+
44
+ /**
45
+ * Registers all the parsers in this folder
46
+ * @param {import('../base_parser.js').XanoBaseParser} $
47
+ */
48
+ export const register = ($) => {
49
+ $.addonCallFn = $.RULE("addonCallFn", addonCallFn($));
50
+ $.actionCallFn = $.RULE("actionCallFn", actionCallFn($));
51
+ $.middlewareCallFn = $.RULE("middlewareCallFn", middlewareCallFn($));
52
+ $.aiFn = $.RULE("aiFn", aiFn($));
53
+ $.apiFn = $.RULE("apiFn", apiFn($));
54
+ $.webflowFn = $.RULE("webflowFn", webflowFn($));
55
+ $.arrayFn = $.RULE("arrayFn", arrayFn($));
56
+ $.cloudFn = $.RULE("cloudFn", cloudFn($));
57
+ $.controlFn = $.RULE("controlFn", controlFn($));
58
+ $.dbFn = $.RULE("dbFn", dbFn($));
59
+ $.debugFn = $.RULE("debugFn", debugFn($));
60
+ $.mathFn = $.RULE("mathFn", mathFn($));
61
+ $.objectFn = $.RULE("objectFn", objectFn($));
62
+ $.redisFn = $.RULE("redisFn", redisFn($));
63
+ $.securityFn = $.RULE("securityFn", securityFn($));
64
+ $.storageFn = $.RULE("storageFn", storageFn($));
65
+ $.streamFn = $.RULE("streamFn", streamFn($));
66
+ $.textFn = $.RULE("textFn", textFn($));
67
+ $.utilFn = $.RULE("utilFn", utilFn($));
68
+ $.varFn = $.RULE("varFn", varFn($));
69
+ $.zipFn = $.RULE("zipFn", zipFn($));
70
+ $.unitExpectFn = $.RULE("unitExpectFn", unitExpectFn($));
71
+ $.workflowExpectFn = $.RULE("workflowExpectFn", workflowExpectFn($));
72
+ $.toolCallFn = $.RULE("toolCallFn", toolCallFn($));
73
+ register_ai($);
74
+ register_schema($);
75
+ register_api($);
76
+ register_array($);
77
+ register_cloud($);
78
+ register_controls($);
79
+ register_db($);
80
+ register_debug($);
81
+ register_math($);
82
+ register_object($);
83
+ register_redis($);
84
+ register_security($);
85
+ register_storage($);
86
+ register_stream($);
87
+ register_text($);
88
+ register_util($);
89
+ register_zip($);
90
+ register_expect($);
91
+ };
@@ -0,0 +1,30 @@
1
+ import { schemaFn } from "./schemaFn.js";
2
+ import { schemaParseArrayFn } from "./schemaParseArrayFn.js";
3
+ import { schemaParseAttributeFn } from "./schemaParseAttributeFn.js";
4
+ import { schemaParseConstantFn } from "./schemaParseConstantFn.js";
5
+ import { schemaParseEnumFn } from "./schemaParseEnum.js";
6
+ import { schemaParseImmutableFn } from "./schemaParseImmutableFn.js";
7
+ import { schemaParseObjectFn } from "./schemaParseObjectFn.js";
8
+
9
+ /**
10
+ * Registers all the parsers in this folder
11
+ * @param {import('../base_parser.js').XanoBaseParser} $
12
+ */
13
+ export const register = ($) => {
14
+ $.schemaFn = $.RULE("schemaFn", schemaFn($));
15
+ $.schemaParseImmutableFn = $.RULE(
16
+ "schemaParseImmutableFn",
17
+ schemaParseImmutableFn($)
18
+ );
19
+ $.schemaParseEnumFn = $.RULE("schemaParseEnumFn", schemaParseEnumFn($));
20
+ $.schemaParseConstantFn = $.RULE(
21
+ "schemaParseConstantFn",
22
+ schemaParseConstantFn($)
23
+ );
24
+ $.schemaParseArrayFn = $.RULE("schemaParseArrayFn", schemaParseArrayFn($));
25
+ $.schemaParseObjectFn = $.RULE("schemaParseObjectFn", schemaParseObjectFn($));
26
+ $.schemaParseAttributeFn = $.RULE(
27
+ "schemaParseAttributeFn",
28
+ schemaParseAttributeFn($)
29
+ );
30
+ };