@runa-ai/runa-cli 0.10.1 → 0.10.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 (37) hide show
  1. package/dist/{chunk-Y5ANTCKE.js → chunk-EZ46JIEO.js} +5 -2
  2. package/dist/{chunk-XRLIZKB2.js → chunk-S7VGVFYF.js} +4934 -4289
  3. package/dist/{chunk-ZPE52NEK.js → chunk-SS7RIWW3.js} +1 -1
  4. package/dist/{chunk-PAWNJA3N.js → chunk-XFXGFUAM.js} +1 -1
  5. package/dist/{ci-3HZWUQFN.js → ci-6P7VK6WB.js} +3 -3
  6. package/dist/{cli-RES5QRC2.js → cli-Q665YRVT.js} +8 -8
  7. package/dist/commands/build/contract.d.ts +2 -2
  8. package/dist/commands/build/machine.d.ts +6 -6
  9. package/dist/commands/ci/commands/ci-prod-types.d.ts +1 -1
  10. package/dist/commands/ci/machine/contract.d.ts +10 -10
  11. package/dist/commands/ci/machine/machine.d.ts +3 -3
  12. package/dist/commands/ci/utils/ci-summary.d.ts +3 -3
  13. package/dist/commands/db/apply/contract.d.ts +1 -1
  14. package/dist/commands/db/apply/helpers/plan-check-filter.d.ts +1 -1
  15. package/dist/commands/db/apply/helpers/planner-artifact.d.ts +1 -1
  16. package/dist/commands/db/commands/db-preview-profile.d.ts +1 -1
  17. package/dist/commands/db/preflight/contract.d.ts +1 -1
  18. package/dist/commands/db/sync/contract.d.ts +5 -5
  19. package/dist/commands/db/sync/machine.d.ts +2 -2
  20. package/dist/commands/db/sync/schema-guardrail-graph-metadata.d.ts +1 -7
  21. package/dist/commands/db/sync/schema-guardrail-graph.d.ts +2 -0
  22. package/dist/commands/db/sync/schema-guardrail-rewrite.d.ts +8 -0
  23. package/dist/commands/db/sync/schema-guardrail-types.d.ts +2 -2
  24. package/dist/commands/db/utils/duplicate-function-ownership-allowlist.d.ts +13 -0
  25. package/dist/commands/db/utils/function-acl-manifest.d.ts +39 -0
  26. package/dist/commands/upgrade.d.ts +36 -0
  27. package/dist/{db-PRGL7PBX.js → db-BQOVOQXU.js} +816 -732
  28. package/dist/index.js +3 -3
  29. package/dist/{risk-detector-S7XQF4I2.js → risk-detector-GDDLISVE.js} +1 -1
  30. package/dist/{risk-detector-core-TGFKWHRS.js → risk-detector-core-YI3M6INI.js} +1 -1
  31. package/dist/{risk-detector-plpgsql-O32TUR34.js → risk-detector-plpgsql-4GWEQXUG.js} +1 -1
  32. package/dist/{template-check-VNNQQXCX.js → template-check-D35F2GDP.js} +4 -0
  33. package/dist/{upgrade-LBO3Z3J7.js → upgrade-X7P6WRD5.js} +189 -19
  34. package/dist/{vuln-check-5JJ2YAJW.js → vuln-check-WW43E7PS.js} +1 -1
  35. package/dist/{vuln-checker-JF5234BL.js → vuln-checker-BC3ZAXJ3.js} +1 -1
  36. package/dist/{watch-RFVCEQLH.js → watch-4RHXVCQ3.js} +1 -1
  37. package/package.json +1 -1
@@ -512,10 +512,13 @@ function buildExecuteExpressionInfo(body, statementStartOffset, state) {
512
512
  }
513
513
  function parseExecuteExpressionAt(body, statementStartOffset) {
514
514
  const indexCursor = skipWhitespace(body, statementStartOffset + 7);
515
- if (isQuoteBoundary(body, indexCursor, "ON")) {
515
+ const ignoredKeyword = ["ON", "FUNCTION", "PROCEDURE"].find(
516
+ (keyword) => isQuoteBoundary(body, indexCursor, keyword)
517
+ );
518
+ if (ignoredKeyword) {
516
519
  return {
517
520
  info: null,
518
- nextCursor: Math.max(indexCursor + 2, statementStartOffset + 1)
521
+ nextCursor: Math.max(indexCursor + ignoredKeyword.length, statementStartOffset + 1)
519
522
  };
520
523
  }
521
524
  const state = {