diff --git a/_redirects b/_redirects
deleted file mode 100644
index afc9ffd..0000000
--- a/_redirects
+++ /dev/null
@@ -1,5 +0,0 @@
-# See: https://docs.netlify.com/routing/redirects/
-# https://docs.netlify.com/routing/redirects/redirect-options/
-/schemas/previous/* /schemas/0.8/:splat 200
-/schemas/latest/* /schemas/0.9/:splat 200
-/schemas/snapshot/* /schemas/1.0.0-alpha5/:splat 200
diff --git a/astro.config.mjs b/astro.config.mjs
index 43609d0..8365c6c 100644
--- a/astro.config.mjs
+++ b/astro.config.mjs
@@ -2,13 +2,13 @@
import { defineConfig } from 'astro/config';
import mdx from '@astrojs/mdx';
import sitemap from '@astrojs/sitemap';
-import tailwind from '@astrojs/tailwind';
+import tailwindcss from "@tailwindcss/vite";
import netlify from '@astrojs/netlify';
// https://astro.build/config
export default defineConfig({
site: 'https://serverlessworkflow.io/',
- integrations: [mdx(), sitemap(), tailwind()],
+ integrations: [mdx(), sitemap()],
markdown: {
syntaxHighlight: 'shiki',
shikiConfig: {
@@ -20,4 +20,7 @@ export default defineConfig({
},
},
adapter: netlify(),
+ vite: {
+ plugins: [tailwindcss()],
+ }
});
\ No newline at end of file
diff --git a/package-lock.json b/package-lock.json
index 67bc33f..5630f1b 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -8,49 +8,37 @@
"name": "website",
"version": "0.0.1",
"dependencies": {
- "@astrojs/mdx": "^4.0.3",
- "@astrojs/netlify": "^6.0.1",
+ "@astrojs/mdx": "^4.2.2",
+ "@astrojs/netlify": "^6.2.4",
"@astrojs/rss": "^4.0.11",
- "@astrojs/sitemap": "^3.2.1",
- "@astrojs/tailwind": "^5.1.4",
- "astro": "^5.1.2",
- "tailwindcss": "^3.4.17"
+ "@astrojs/sitemap": "^3.3.0",
+ "@tailwindcss/vite": "^4.0.13",
+ "astro": "^5.5.5",
+ "tailwindcss": "^4.0.13"
},
"devDependencies": {
- "@tailwindcss/typography": "^0.5.15",
- "daisyui": "^4.12.23"
- }
- },
- "node_modules/@alloc/quick-lru": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz",
- "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==",
- "license": "MIT",
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "@tailwindcss/typography": "^0.5.16",
+ "daisyui": "^5.0.2"
}
},
"node_modules/@astrojs/compiler": {
- "version": "2.10.3",
- "resolved": "https://registry.npmjs.org/@astrojs/compiler/-/compiler-2.10.3.tgz",
- "integrity": "sha512-bL/O7YBxsFt55YHU021oL+xz+B/9HvGNId3F9xURN16aeqDK9juHGktdkCSXz+U4nqFACq6ZFvWomOzhV+zfPw==",
+ "version": "2.12.2",
+ "resolved": "https://registry.npmjs.org/@astrojs/compiler/-/compiler-2.12.2.tgz",
+ "integrity": "sha512-w2zfvhjNCkNMmMMOn5b0J8+OmUaBL1o40ipMvqcG6NRpdC+lKxmTi48DT8Xw0SzJ3AfmeFLB45zXZXtmbsjcgw==",
"license": "MIT"
},
"node_modules/@astrojs/internal-helpers": {
- "version": "0.4.2",
- "resolved": "https://registry.npmjs.org/@astrojs/internal-helpers/-/internal-helpers-0.4.2.tgz",
- "integrity": "sha512-EdDWkC3JJVcpGpqJAU/5hSk2LKXyG3mNGkzGoAuyK+xoPHbaVdSuIWoN1QTnmK3N/gGfaaAfM8gO2KDCAW7S3w==",
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/@astrojs/internal-helpers/-/internal-helpers-0.6.1.tgz",
+ "integrity": "sha512-l5Pqf6uZu31aG+3Lv8nl/3s4DbUzdlxTWDof4pEpto6GUJNhhCbelVi9dEyurOVyqaelwmS9oSyOWOENSfgo9A==",
"license": "MIT"
},
"node_modules/@astrojs/markdown-remark": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/@astrojs/markdown-remark/-/markdown-remark-6.0.1.tgz",
- "integrity": "sha512-CTSYijj25NfxgZi15TU3CwPwgyD1/7yA3FcdcNmB9p94nydupiUbrIiq3IqeTp2m5kCVzxbPZeC7fTwEOaNyGw==",
- "license": "MIT",
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/@astrojs/markdown-remark/-/markdown-remark-6.3.1.tgz",
+ "integrity": "sha512-c5F5gGrkczUaTVgmMW9g1YMJGzOtRvjjhw6IfGuxarM6ct09MpwysP10US729dy07gg8y+ofVifezvP3BNsWZg==",
"dependencies": {
+ "@astrojs/internal-helpers": "0.6.1",
"@astrojs/prism": "3.2.0",
"github-slugger": "^2.0.0",
"hast-util-from-html": "^2.0.3",
@@ -60,11 +48,12 @@
"mdast-util-definitions": "^6.0.0",
"rehype-raw": "^7.0.0",
"rehype-stringify": "^10.0.1",
- "remark-gfm": "^4.0.0",
+ "remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"remark-smartypants": "^3.0.2",
- "shiki": "^1.23.1",
+ "shiki": "^3.0.0",
+ "smol-toml": "^1.3.1",
"unified": "^11.0.5",
"unist-util-remove-position": "^5.0.0",
"unist-util-visit": "^5.0.0",
@@ -73,20 +62,19 @@
}
},
"node_modules/@astrojs/mdx": {
- "version": "4.0.3",
- "resolved": "https://registry.npmjs.org/@astrojs/mdx/-/mdx-4.0.3.tgz",
- "integrity": "sha512-8HcuyNG/KgYUAQWVzKFkboXcTOBCW6aQ0WK0Er/iSmVSF0y3yimg4/3QSt+Twv9dogpwIHL+E8iBJKqieFv4+g==",
- "license": "MIT",
+ "version": "4.2.2",
+ "resolved": "https://registry.npmjs.org/@astrojs/mdx/-/mdx-4.2.2.tgz",
+ "integrity": "sha512-nWDvuCPenxoxbog3YK3yVWF3Jw7Lq1+ziWSAOc9fy6zAUbPDSr2bt3c6r6+oa1ll0miCQByj5UVts6eJvN/y+g==",
"dependencies": {
- "@astrojs/markdown-remark": "6.0.1",
+ "@astrojs/markdown-remark": "6.3.1",
"@mdx-js/mdx": "^3.1.0",
- "acorn": "^8.14.0",
- "es-module-lexer": "^1.5.4",
+ "acorn": "^8.14.1",
+ "es-module-lexer": "^1.6.0",
"estree-util-visit": "^2.0.0",
- "hast-util-to-html": "^9.0.3",
+ "hast-util-to-html": "^9.0.5",
"kleur": "^4.1.5",
"rehype-raw": "^7.0.0",
- "remark-gfm": "^4.0.0",
+ "remark-gfm": "^4.0.1",
"remark-smartypants": "^3.0.2",
"source-map": "^0.7.4",
"unist-util-visit": "^5.0.0",
@@ -100,32 +88,149 @@
}
},
"node_modules/@astrojs/netlify": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/@astrojs/netlify/-/netlify-6.0.1.tgz",
- "integrity": "sha512-Y8rsMVClPp6cJuAClL0BAr4p8FtNtvaOhODy8YHUfe8QsaNSrnUTJ6Np+RbTBKBTQ9JkRKGe5F0f0LaAD21euw==",
+ "version": "6.2.4",
+ "resolved": "https://registry.npmjs.org/@astrojs/netlify/-/netlify-6.2.4.tgz",
+ "integrity": "sha512-Pk1ZRDgH4cmrIqIuYQn1DJjNKRLNjybHoYWMoZnE+zP2NLQFirR15FQFKGbg8S3+zWQ1EptOBAb/ETnXpbwepA==",
+ "dependencies": {
+ "@astrojs/internal-helpers": "0.6.1",
+ "@astrojs/underscore-redirects": "0.6.0",
+ "@netlify/blobs": "^8.1.1",
+ "@netlify/functions": "^3.0.1",
+ "@vercel/nft": "^0.29.2",
+ "esbuild": "^0.25.0",
+ "tinyglobby": "^0.2.12",
+ "vite": "^6.2.3"
+ },
+ "peerDependencies": {
+ "astro": "^5.3.0"
+ }
+ },
+ "node_modules/@astrojs/prism": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/@astrojs/prism/-/prism-3.2.0.tgz",
+ "integrity": "sha512-GilTHKGCW6HMq7y3BUv9Ac7GMe/MO9gi9GW62GzKtth0SwukCu/qp2wLiGpEujhY+VVhaG9v7kv/5vFzvf4NYw==",
+ "dependencies": {
+ "prismjs": "^1.29.0"
+ },
+ "engines": {
+ "node": "^18.17.1 || ^20.3.0 || >=22.0.0"
+ }
+ },
+ "node_modules/@astrojs/rss": {
+ "version": "4.0.11",
+ "resolved": "https://registry.npmjs.org/@astrojs/rss/-/rss-4.0.11.tgz",
+ "integrity": "sha512-3e3H8i6kc97KGnn9iaZBJpIkdoQi8MmR5zH5R+dWsfCM44lLTszOqy1OBfGGxDt56mpQkYVtZJWoxMyWuUZBfw==",
+ "license": "MIT",
+ "dependencies": {
+ "fast-xml-parser": "^4.5.0",
+ "kleur": "^4.1.5"
+ }
+ },
+ "node_modules/@astrojs/sitemap": {
+ "version": "3.3.0",
+ "resolved": "https://registry.npmjs.org/@astrojs/sitemap/-/sitemap-3.3.0.tgz",
+ "integrity": "sha512-nYE4lKQtk+Kbrw/w0G0TTgT724co0jUsU4tPlHY9au5HmTBKbwiCLwO/15b1/y13aZ4Kr9ZbMeMHlXuwn0ty4Q==",
+ "dependencies": {
+ "sitemap": "^8.0.0",
+ "stream-replace-string": "^2.0.0",
+ "zod": "^3.24.2"
+ }
+ },
+ "node_modules/@astrojs/telemetry": {
+ "version": "3.3.0",
+ "resolved": "https://registry.npmjs.org/@astrojs/telemetry/-/telemetry-3.3.0.tgz",
+ "integrity": "sha512-UFBgfeldP06qu6khs/yY+q1cDAaArM2/7AEIqQ9Cuvf7B1hNLq0xDrZkct+QoIGyjq56y8IaE2I3CTvG99mlhQ==",
"license": "MIT",
"dependencies": {
- "@astrojs/internal-helpers": "0.4.1",
- "@astrojs/underscore-redirects": "^0.4.0-alpha.0",
- "@netlify/functions": "^2.8.0",
- "@vercel/nft": "^0.27.6",
- "esbuild": "^0.24.0",
- "vite": "^6.0.2"
+ "ci-info": "^4.2.0",
+ "debug": "^4.4.0",
+ "dlv": "^1.1.3",
+ "dset": "^3.1.4",
+ "is-docker": "^3.0.0",
+ "is-wsl": "^3.1.0",
+ "which-pm-runs": "^1.1.0"
},
- "peerDependencies": {
- "astro": "^5.0.0"
+ "engines": {
+ "node": "18.20.8 || ^20.3.0 || >=22.0.0"
}
},
- "node_modules/@astrojs/netlify/node_modules/@astrojs/internal-helpers": {
- "version": "0.4.1",
- "resolved": "https://registry.npmjs.org/@astrojs/internal-helpers/-/internal-helpers-0.4.1.tgz",
- "integrity": "sha512-bMf9jFihO8YP940uD70SI/RDzIhUHJAolWVcO1v5PUivxGKvfLZTLTVVxEYzGYyPsA3ivdLNqMnL5VgmQySa+g==",
+ "node_modules/@astrojs/underscore-redirects": {
+ "version": "0.6.0",
+ "resolved": "https://registry.npmjs.org/@astrojs/underscore-redirects/-/underscore-redirects-0.6.0.tgz",
+ "integrity": "sha512-dnJgFpaM955IFNIkEEmMaaIdWXRdeZs1ID6mlGBqdjh6NiCXfKmOdq7L4fd9Dd/tr18fkLrOJ25IUJSxRAEhjQ==",
"license": "MIT"
},
- "node_modules/@astrojs/netlify/node_modules/@esbuild/aix-ppc64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.24.2.tgz",
- "integrity": "sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==",
+ "node_modules/@babel/helper-string-parser": {
+ "version": "7.25.9",
+ "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz",
+ "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-validator-identifier": {
+ "version": "7.25.9",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz",
+ "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/parser": {
+ "version": "7.26.10",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.10.tgz",
+ "integrity": "sha512-6aQR2zGE/QFi8JpDLjUZEPYOs7+mhKXm86VaKFiLP35JQwQb6bwUE+XbvkH0EptsYhbNBSUGaUBLKqxH1xSgsA==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/types": "^7.26.10"
+ },
+ "bin": {
+ "parser": "bin/babel-parser.js"
+ },
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
+ "node_modules/@babel/types": {
+ "version": "7.26.10",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.10.tgz",
+ "integrity": "sha512-emqcG3vHrpxUKTrxcblR36dcrcoRDvKmnL/dCL6ZsHaShW80qxCAcNhzQZrpeM765VzEos+xOi4s+r4IXzTwdQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-string-parser": "^7.25.9",
+ "@babel/helper-validator-identifier": "^7.25.9"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@capsizecss/unpack": {
+ "version": "2.4.0",
+ "resolved": "https://registry.npmjs.org/@capsizecss/unpack/-/unpack-2.4.0.tgz",
+ "integrity": "sha512-GrSU71meACqcmIUxPYOJvGKF0yryjN/L1aCuE9DViCTJI7bfkjgYDPD1zbNDcINJwSSP6UaBZY9GAbYDO7re0Q==",
+ "license": "MIT",
+ "dependencies": {
+ "blob-to-buffer": "^1.2.8",
+ "cross-fetch": "^3.0.4",
+ "fontkit": "^2.0.2"
+ }
+ },
+ "node_modules/@emnapi/runtime": {
+ "version": "1.5.0",
+ "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.5.0.tgz",
+ "integrity": "sha512-97/BJ3iXHww3djw6hYIfErCZFee7qCtrneuLa20UXFCOTCfBM2cvQHjWJ2EG0s0MtdNwInarqCTz35i4wWXHsQ==",
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "tslib": "^2.4.0"
+ }
+ },
+ "node_modules/@esbuild/aix-ppc64": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.1.tgz",
+ "integrity": "sha512-kfYGy8IdzTGy+z0vFGvExZtxkFlA4zAxgKEahG9KE1ScBjpQnFsNOX8KTU5ojNru5ed5CVoJYXFtoxaq5nFbjQ==",
"cpu": [
"ppc64"
],
@@ -138,10 +243,10 @@
"node": ">=18"
}
},
- "node_modules/@astrojs/netlify/node_modules/@esbuild/android-arm": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.24.2.tgz",
- "integrity": "sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==",
+ "node_modules/@esbuild/android-arm": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.1.tgz",
+ "integrity": "sha512-dp+MshLYux6j/JjdqVLnMglQlFu+MuVeNrmT5nk6q07wNhCdSnB7QZj+7G8VMUGh1q+vj2Bq8kRsuyA00I/k+Q==",
"cpu": [
"arm"
],
@@ -154,10 +259,10 @@
"node": ">=18"
}
},
- "node_modules/@astrojs/netlify/node_modules/@esbuild/android-arm64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.24.2.tgz",
- "integrity": "sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==",
+ "node_modules/@esbuild/android-arm64": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.1.tgz",
+ "integrity": "sha512-50tM0zCJW5kGqgG7fQ7IHvQOcAn9TKiVRuQ/lN0xR+T2lzEFvAi1ZcS8DiksFcEpf1t/GYOeOfCAgDHFpkiSmA==",
"cpu": [
"arm64"
],
@@ -170,10 +275,10 @@
"node": ">=18"
}
},
- "node_modules/@astrojs/netlify/node_modules/@esbuild/android-x64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.24.2.tgz",
- "integrity": "sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==",
+ "node_modules/@esbuild/android-x64": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.1.tgz",
+ "integrity": "sha512-GCj6WfUtNldqUzYkN/ITtlhwQqGWu9S45vUXs7EIYf+7rCiiqH9bCloatO9VhxsL0Pji+PF4Lz2XXCES+Q8hDw==",
"cpu": [
"x64"
],
@@ -186,10 +291,10 @@
"node": ">=18"
}
},
- "node_modules/@astrojs/netlify/node_modules/@esbuild/darwin-arm64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.24.2.tgz",
- "integrity": "sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==",
+ "node_modules/@esbuild/darwin-arm64": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.1.tgz",
+ "integrity": "sha512-5hEZKPf+nQjYoSr/elb62U19/l1mZDdqidGfmFutVUjjUZrOazAtwK+Kr+3y0C/oeJfLlxo9fXb1w7L+P7E4FQ==",
"cpu": [
"arm64"
],
@@ -202,10 +307,10 @@
"node": ">=18"
}
},
- "node_modules/@astrojs/netlify/node_modules/@esbuild/darwin-x64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.24.2.tgz",
- "integrity": "sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==",
+ "node_modules/@esbuild/darwin-x64": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.1.tgz",
+ "integrity": "sha512-hxVnwL2Dqs3fM1IWq8Iezh0cX7ZGdVhbTfnOy5uURtao5OIVCEyj9xIzemDi7sRvKsuSdtCAhMKarxqtlyVyfA==",
"cpu": [
"x64"
],
@@ -218,10 +323,10 @@
"node": ">=18"
}
},
- "node_modules/@astrojs/netlify/node_modules/@esbuild/freebsd-arm64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.24.2.tgz",
- "integrity": "sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==",
+ "node_modules/@esbuild/freebsd-arm64": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.1.tgz",
+ "integrity": "sha512-1MrCZs0fZa2g8E+FUo2ipw6jw5qqQiH+tERoS5fAfKnRx6NXH31tXBKI3VpmLijLH6yriMZsxJtaXUyFt/8Y4A==",
"cpu": [
"arm64"
],
@@ -234,10 +339,10 @@
"node": ">=18"
}
},
- "node_modules/@astrojs/netlify/node_modules/@esbuild/freebsd-x64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.24.2.tgz",
- "integrity": "sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==",
+ "node_modules/@esbuild/freebsd-x64": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.1.tgz",
+ "integrity": "sha512-0IZWLiTyz7nm0xuIs0q1Y3QWJC52R8aSXxe40VUxm6BB1RNmkODtW6LHvWRrGiICulcX7ZvyH6h5fqdLu4gkww==",
"cpu": [
"x64"
],
@@ -250,10 +355,10 @@
"node": ">=18"
}
},
- "node_modules/@astrojs/netlify/node_modules/@esbuild/linux-arm": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.24.2.tgz",
- "integrity": "sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==",
+ "node_modules/@esbuild/linux-arm": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.1.tgz",
+ "integrity": "sha512-NdKOhS4u7JhDKw9G3cY6sWqFcnLITn6SqivVArbzIaf3cemShqfLGHYMx8Xlm/lBit3/5d7kXvriTUGa5YViuQ==",
"cpu": [
"arm"
],
@@ -266,10 +371,10 @@
"node": ">=18"
}
},
- "node_modules/@astrojs/netlify/node_modules/@esbuild/linux-arm64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.24.2.tgz",
- "integrity": "sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==",
+ "node_modules/@esbuild/linux-arm64": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.1.tgz",
+ "integrity": "sha512-jaN3dHi0/DDPelk0nLcXRm1q7DNJpjXy7yWaWvbfkPvI+7XNSc/lDOnCLN7gzsyzgu6qSAmgSvP9oXAhP973uQ==",
"cpu": [
"arm64"
],
@@ -282,10 +387,10 @@
"node": ">=18"
}
},
- "node_modules/@astrojs/netlify/node_modules/@esbuild/linux-ia32": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.24.2.tgz",
- "integrity": "sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==",
+ "node_modules/@esbuild/linux-ia32": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.1.tgz",
+ "integrity": "sha512-OJykPaF4v8JidKNGz8c/q1lBO44sQNUQtq1KktJXdBLn1hPod5rE/Hko5ugKKZd+D2+o1a9MFGUEIUwO2YfgkQ==",
"cpu": [
"ia32"
],
@@ -298,10 +403,10 @@
"node": ">=18"
}
},
- "node_modules/@astrojs/netlify/node_modules/@esbuild/linux-loong64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.24.2.tgz",
- "integrity": "sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==",
+ "node_modules/@esbuild/linux-loong64": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.1.tgz",
+ "integrity": "sha512-nGfornQj4dzcq5Vp835oM/o21UMlXzn79KobKlcs3Wz9smwiifknLy4xDCLUU0BWp7b/houtdrgUz7nOGnfIYg==",
"cpu": [
"loong64"
],
@@ -314,10 +419,10 @@
"node": ">=18"
}
},
- "node_modules/@astrojs/netlify/node_modules/@esbuild/linux-mips64el": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.24.2.tgz",
- "integrity": "sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==",
+ "node_modules/@esbuild/linux-mips64el": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.1.tgz",
+ "integrity": "sha512-1osBbPEFYwIE5IVB/0g2X6i1qInZa1aIoj1TdL4AaAb55xIIgbg8Doq6a5BzYWgr+tEcDzYH67XVnTmUzL+nXg==",
"cpu": [
"mips64el"
],
@@ -330,10 +435,10 @@
"node": ">=18"
}
},
- "node_modules/@astrojs/netlify/node_modules/@esbuild/linux-ppc64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.24.2.tgz",
- "integrity": "sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==",
+ "node_modules/@esbuild/linux-ppc64": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.1.tgz",
+ "integrity": "sha512-/6VBJOwUf3TdTvJZ82qF3tbLuWsscd7/1w+D9LH0W/SqUgM5/JJD0lrJ1fVIfZsqB6RFmLCe0Xz3fmZc3WtyVg==",
"cpu": [
"ppc64"
],
@@ -346,10 +451,10 @@
"node": ">=18"
}
},
- "node_modules/@astrojs/netlify/node_modules/@esbuild/linux-riscv64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.24.2.tgz",
- "integrity": "sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==",
+ "node_modules/@esbuild/linux-riscv64": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.1.tgz",
+ "integrity": "sha512-nSut/Mx5gnilhcq2yIMLMe3Wl4FK5wx/o0QuuCLMtmJn+WeWYoEGDN1ipcN72g1WHsnIbxGXd4i/MF0gTcuAjQ==",
"cpu": [
"riscv64"
],
@@ -362,10 +467,10 @@
"node": ">=18"
}
},
- "node_modules/@astrojs/netlify/node_modules/@esbuild/linux-s390x": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.24.2.tgz",
- "integrity": "sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==",
+ "node_modules/@esbuild/linux-s390x": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.1.tgz",
+ "integrity": "sha512-cEECeLlJNfT8kZHqLarDBQso9a27o2Zd2AQ8USAEoGtejOrCYHNtKP8XQhMDJMtthdF4GBmjR2au3x1udADQQQ==",
"cpu": [
"s390x"
],
@@ -378,10 +483,10 @@
"node": ">=18"
}
},
- "node_modules/@astrojs/netlify/node_modules/@esbuild/linux-x64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.24.2.tgz",
- "integrity": "sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==",
+ "node_modules/@esbuild/linux-x64": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.1.tgz",
+ "integrity": "sha512-xbfUhu/gnvSEg+EGovRc+kjBAkrvtk38RlerAzQxvMzlB4fXpCFCeUAYzJvrnhFtdeyVCDANSjJvOvGYoeKzFA==",
"cpu": [
"x64"
],
@@ -394,10 +499,26 @@
"node": ">=18"
}
},
- "node_modules/@astrojs/netlify/node_modules/@esbuild/netbsd-x64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.24.2.tgz",
- "integrity": "sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==",
+ "node_modules/@esbuild/netbsd-arm64": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.1.tgz",
+ "integrity": "sha512-O96poM2XGhLtpTh+s4+nP7YCCAfb4tJNRVZHfIE7dgmax+yMP2WgMd2OecBuaATHKTHsLWHQeuaxMRnCsH8+5g==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "netbsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/netbsd-x64": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.1.tgz",
+ "integrity": "sha512-X53z6uXip6KFXBQ+Krbx25XHV/NCbzryM6ehOAeAil7X7oa4XIq+394PWGnwaSQ2WRA0KI6PUO6hTO5zeF5ijA==",
"cpu": [
"x64"
],
@@ -410,10 +531,26 @@
"node": ">=18"
}
},
- "node_modules/@astrojs/netlify/node_modules/@esbuild/openbsd-x64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.24.2.tgz",
- "integrity": "sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==",
+ "node_modules/@esbuild/openbsd-arm64": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.1.tgz",
+ "integrity": "sha512-Na9T3szbXezdzM/Kfs3GcRQNjHzM6GzFBeU1/6IV/npKP5ORtp9zbQjvkDJ47s6BCgaAZnnnu/cY1x342+MvZg==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "openbsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/openbsd-x64": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.1.tgz",
+ "integrity": "sha512-T3H78X2h1tszfRSf+txbt5aOp/e7TAz3ptVKu9Oyir3IAOFPGV6O9c2naym5TOriy1l0nNf6a4X5UXRZSGX/dw==",
"cpu": [
"x64"
],
@@ -426,10 +563,10 @@
"node": ">=18"
}
},
- "node_modules/@astrojs/netlify/node_modules/@esbuild/sunos-x64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.24.2.tgz",
- "integrity": "sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==",
+ "node_modules/@esbuild/sunos-x64": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.1.tgz",
+ "integrity": "sha512-2H3RUvcmULO7dIE5EWJH8eubZAI4xw54H1ilJnRNZdeo8dTADEZ21w6J22XBkXqGJbe0+wnNJtw3UXRoLJnFEg==",
"cpu": [
"x64"
],
@@ -442,10 +579,10 @@
"node": ">=18"
}
},
- "node_modules/@astrojs/netlify/node_modules/@esbuild/win32-arm64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.24.2.tgz",
- "integrity": "sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==",
+ "node_modules/@esbuild/win32-arm64": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.1.tgz",
+ "integrity": "sha512-GE7XvrdOzrb+yVKB9KsRMq+7a2U/K5Cf/8grVFRAGJmfADr/e/ODQ134RK2/eeHqYV5eQRFxb1hY7Nr15fv1NQ==",
"cpu": [
"arm64"
],
@@ -458,10 +595,10 @@
"node": ">=18"
}
},
- "node_modules/@astrojs/netlify/node_modules/@esbuild/win32-ia32": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.24.2.tgz",
- "integrity": "sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==",
+ "node_modules/@esbuild/win32-ia32": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.1.tgz",
+ "integrity": "sha512-uOxSJCIcavSiT6UnBhBzE8wy3n0hOkJsBOzy7HDAuTDE++1DJMRRVCPGisULScHL+a/ZwdXPpXD3IyFKjA7K8A==",
"cpu": [
"ia32"
],
@@ -474,10 +611,10 @@
"node": ">=18"
}
},
- "node_modules/@astrojs/netlify/node_modules/@esbuild/win32-x64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.24.2.tgz",
- "integrity": "sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==",
+ "node_modules/@esbuild/win32-x64": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.1.tgz",
+ "integrity": "sha512-Y1EQdcfwMSeQN/ujR5VayLOJ1BHaK+ssyk0AEzPjC+t1lITgsnccPqFjb6V+LsTp/9Iov4ysfjxLaGJ9RPtkVg==",
"cpu": [
"x64"
],
@@ -490,1408 +627,1118 @@
"node": ">=18"
}
},
- "node_modules/@astrojs/netlify/node_modules/esbuild": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.24.2.tgz",
- "integrity": "sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==",
- "hasInstallScript": true,
- "license": "MIT",
- "bin": {
- "esbuild": "bin/esbuild"
- },
+ "node_modules/@img/sharp-darwin-arm64": {
+ "version": "0.34.3",
+ "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.34.3.tgz",
+ "integrity": "sha512-ryFMfvxxpQRsgZJqBd4wsttYQbCxsJksrv9Lw/v798JcQ8+w84mBWuXwl+TT0WJ/WrYOLaYpwQXi3sA9nTIaIg==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "Apache-2.0",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
"engines": {
- "node": ">=18"
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/libvips"
},
"optionalDependencies": {
- "@esbuild/aix-ppc64": "0.24.2",
- "@esbuild/android-arm": "0.24.2",
- "@esbuild/android-arm64": "0.24.2",
- "@esbuild/android-x64": "0.24.2",
- "@esbuild/darwin-arm64": "0.24.2",
- "@esbuild/darwin-x64": "0.24.2",
- "@esbuild/freebsd-arm64": "0.24.2",
- "@esbuild/freebsd-x64": "0.24.2",
- "@esbuild/linux-arm": "0.24.2",
- "@esbuild/linux-arm64": "0.24.2",
- "@esbuild/linux-ia32": "0.24.2",
- "@esbuild/linux-loong64": "0.24.2",
- "@esbuild/linux-mips64el": "0.24.2",
- "@esbuild/linux-ppc64": "0.24.2",
- "@esbuild/linux-riscv64": "0.24.2",
- "@esbuild/linux-s390x": "0.24.2",
- "@esbuild/linux-x64": "0.24.2",
- "@esbuild/netbsd-arm64": "0.24.2",
- "@esbuild/netbsd-x64": "0.24.2",
- "@esbuild/openbsd-arm64": "0.24.2",
- "@esbuild/openbsd-x64": "0.24.2",
- "@esbuild/sunos-x64": "0.24.2",
- "@esbuild/win32-arm64": "0.24.2",
- "@esbuild/win32-ia32": "0.24.2",
- "@esbuild/win32-x64": "0.24.2"
+ "@img/sharp-libvips-darwin-arm64": "1.2.0"
}
},
- "node_modules/@astrojs/prism": {
- "version": "3.2.0",
- "resolved": "https://registry.npmjs.org/@astrojs/prism/-/prism-3.2.0.tgz",
- "integrity": "sha512-GilTHKGCW6HMq7y3BUv9Ac7GMe/MO9gi9GW62GzKtth0SwukCu/qp2wLiGpEujhY+VVhaG9v7kv/5vFzvf4NYw==",
- "license": "MIT",
- "dependencies": {
- "prismjs": "^1.29.0"
- },
+ "node_modules/@img/sharp-darwin-x64": {
+ "version": "0.34.3",
+ "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.34.3.tgz",
+ "integrity": "sha512-yHpJYynROAj12TA6qil58hmPmAwxKKC7reUqtGLzsOHfP7/rniNGTL8tjWX6L3CTV4+5P4ypcS7Pp+7OB+8ihA==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "Apache-2.0",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
"engines": {
- "node": "^18.17.1 || ^20.3.0 || >=22.0.0"
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ },
+ "optionalDependencies": {
+ "@img/sharp-libvips-darwin-x64": "1.2.0"
}
},
- "node_modules/@astrojs/rss": {
- "version": "4.0.11",
- "resolved": "https://registry.npmjs.org/@astrojs/rss/-/rss-4.0.11.tgz",
- "integrity": "sha512-3e3H8i6kc97KGnn9iaZBJpIkdoQi8MmR5zH5R+dWsfCM44lLTszOqy1OBfGGxDt56mpQkYVtZJWoxMyWuUZBfw==",
- "license": "MIT",
- "dependencies": {
- "fast-xml-parser": "^4.5.0",
- "kleur": "^4.1.5"
+ "node_modules/@img/sharp-libvips-darwin-arm64": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.2.0.tgz",
+ "integrity": "sha512-sBZmpwmxqwlqG9ueWFXtockhsxefaV6O84BMOrhtg/YqbTaRdqDE7hxraVE3y6gVM4eExmfzW4a8el9ArLeEiQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "LGPL-3.0-or-later",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "funding": {
+ "url": "https://opencollective.com/libvips"
}
},
- "node_modules/@astrojs/sitemap": {
- "version": "3.2.1",
- "resolved": "https://registry.npmjs.org/@astrojs/sitemap/-/sitemap-3.2.1.tgz",
- "integrity": "sha512-uxMfO8f7pALq0ADL6Lk68UV6dNYjJ2xGUzyjjVj60JLBs5a6smtlkBYv3tQ0DzoqwS7c9n4FUx5lgv0yPo/fgA==",
- "license": "MIT",
- "dependencies": {
- "sitemap": "^8.0.0",
- "stream-replace-string": "^2.0.0",
- "zod": "^3.23.8"
+ "node_modules/@img/sharp-libvips-darwin-x64": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.2.0.tgz",
+ "integrity": "sha512-M64XVuL94OgiNHa5/m2YvEQI5q2cl9d/wk0qFTDVXcYzi43lxuiFTftMR1tOnFQovVXNZJ5TURSDK2pNe9Yzqg==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "LGPL-3.0-or-later",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "funding": {
+ "url": "https://opencollective.com/libvips"
}
},
- "node_modules/@astrojs/tailwind": {
- "version": "5.1.4",
- "resolved": "https://registry.npmjs.org/@astrojs/tailwind/-/tailwind-5.1.4.tgz",
- "integrity": "sha512-EJ3uoTZZr0RYwTrVS2HgYN0+VbXvg7h87AtwpD5OzqS3GyMwRmzfOwHfORTxoWGQRrY9k/Fi+Awk60kwpvRL5Q==",
- "license": "MIT",
- "dependencies": {
- "autoprefixer": "^10.4.20",
- "postcss": "^8.4.49",
- "postcss-load-config": "^4.0.2"
- },
- "peerDependencies": {
- "astro": "^3.0.0 || ^4.0.0 || ^5.0.0",
- "tailwindcss": "^3.0.24"
+ "node_modules/@img/sharp-libvips-linux-arm": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.2.0.tgz",
+ "integrity": "sha512-mWd2uWvDtL/nvIzThLq3fr2nnGfyr/XMXlq8ZJ9WMR6PXijHlC3ksp0IpuhK6bougvQrchUAfzRLnbsen0Cqvw==",
+ "cpu": [
+ "arm"
+ ],
+ "license": "LGPL-3.0-or-later",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "funding": {
+ "url": "https://opencollective.com/libvips"
}
},
- "node_modules/@astrojs/telemetry": {
- "version": "3.2.0",
- "resolved": "https://registry.npmjs.org/@astrojs/telemetry/-/telemetry-3.2.0.tgz",
- "integrity": "sha512-wxhSKRfKugLwLlr4OFfcqovk+LIFtKwLyGPqMsv+9/ibqqnW3Gv7tBhtKEb0gAyUAC4G9BTVQeQahqnQAhd6IQ==",
- "license": "MIT",
- "dependencies": {
- "ci-info": "^4.1.0",
- "debug": "^4.3.7",
- "dlv": "^1.1.3",
- "dset": "^3.1.4",
- "is-docker": "^3.0.0",
- "is-wsl": "^3.1.0",
- "which-pm-runs": "^1.1.0"
- },
- "engines": {
- "node": "^18.17.1 || ^20.3.0 || >=22.0.0"
- }
- },
- "node_modules/@astrojs/underscore-redirects": {
- "version": "0.4.0",
- "resolved": "https://registry.npmjs.org/@astrojs/underscore-redirects/-/underscore-redirects-0.4.0.tgz",
- "integrity": "sha512-Urt32++4ql0IFTTNejnRIN7LPJ6YzU9QXLcc4RXm5or1RLPnQBKVrLvmDxKx3eT72l7ZAi6W4L5E7pcbWbYDRA==",
- "license": "MIT"
- },
- "node_modules/@babel/helper-string-parser": {
- "version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz",
- "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==",
- "license": "MIT",
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-validator-identifier": {
- "version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz",
- "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==",
- "license": "MIT",
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/parser": {
- "version": "7.26.3",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.3.tgz",
- "integrity": "sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA==",
- "license": "MIT",
- "dependencies": {
- "@babel/types": "^7.26.3"
- },
- "bin": {
- "parser": "bin/babel-parser.js"
- },
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/@babel/types": {
- "version": "7.26.3",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.3.tgz",
- "integrity": "sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==",
- "license": "MIT",
- "dependencies": {
- "@babel/helper-string-parser": "^7.25.9",
- "@babel/helper-validator-identifier": "^7.25.9"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@emnapi/runtime": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.3.1.tgz",
- "integrity": "sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "tslib": "^2.4.0"
- }
- },
- "node_modules/@esbuild/aix-ppc64": {
- "version": "0.21.5",
- "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz",
- "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==",
+ "node_modules/@img/sharp-libvips-linux-arm64": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.2.0.tgz",
+ "integrity": "sha512-RXwd0CgG+uPRX5YYrkzKyalt2OJYRiJQ8ED/fi1tq9WQW2jsQIn0tqrlR5l5dr/rjqq6AHAxURhj2DVjyQWSOA==",
"cpu": [
- "ppc64"
+ "arm64"
],
- "license": "MIT",
+ "license": "LGPL-3.0-or-later",
"optional": true,
"os": [
- "aix"
+ "linux"
],
- "engines": {
- "node": ">=12"
+ "funding": {
+ "url": "https://opencollective.com/libvips"
}
},
- "node_modules/@esbuild/android-arm": {
- "version": "0.21.5",
- "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz",
- "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==",
+ "node_modules/@img/sharp-libvips-linux-ppc64": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-ppc64/-/sharp-libvips-linux-ppc64-1.2.0.tgz",
+ "integrity": "sha512-Xod/7KaDDHkYu2phxxfeEPXfVXFKx70EAFZ0qyUdOjCcxbjqyJOEUpDe6RIyaunGxT34Anf9ue/wuWOqBW2WcQ==",
"cpu": [
- "arm"
+ "ppc64"
],
- "license": "MIT",
+ "license": "LGPL-3.0-or-later",
"optional": true,
"os": [
- "android"
+ "linux"
],
- "engines": {
- "node": ">=12"
+ "funding": {
+ "url": "https://opencollective.com/libvips"
}
},
- "node_modules/@esbuild/android-arm64": {
- "version": "0.21.5",
- "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz",
- "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==",
+ "node_modules/@img/sharp-libvips-linux-s390x": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.2.0.tgz",
+ "integrity": "sha512-eMKfzDxLGT8mnmPJTNMcjfO33fLiTDsrMlUVcp6b96ETbnJmd4uvZxVJSKPQfS+odwfVaGifhsB07J1LynFehw==",
"cpu": [
- "arm64"
+ "s390x"
],
- "license": "MIT",
+ "license": "LGPL-3.0-or-later",
"optional": true,
"os": [
- "android"
+ "linux"
],
- "engines": {
- "node": ">=12"
+ "funding": {
+ "url": "https://opencollective.com/libvips"
}
},
- "node_modules/@esbuild/android-x64": {
- "version": "0.21.5",
- "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz",
- "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==",
+ "node_modules/@img/sharp-libvips-linux-x64": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.2.0.tgz",
+ "integrity": "sha512-ZW3FPWIc7K1sH9E3nxIGB3y3dZkpJlMnkk7z5tu1nSkBoCgw2nSRTFHI5pB/3CQaJM0pdzMF3paf9ckKMSE9Tg==",
"cpu": [
"x64"
],
- "license": "MIT",
+ "license": "LGPL-3.0-or-later",
"optional": true,
"os": [
- "android"
+ "linux"
],
- "engines": {
- "node": ">=12"
+ "funding": {
+ "url": "https://opencollective.com/libvips"
}
},
- "node_modules/@esbuild/darwin-arm64": {
- "version": "0.21.5",
- "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz",
- "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==",
+ "node_modules/@img/sharp-libvips-linuxmusl-arm64": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.2.0.tgz",
+ "integrity": "sha512-UG+LqQJbf5VJ8NWJ5Z3tdIe/HXjuIdo4JeVNADXBFuG7z9zjoegpzzGIyV5zQKi4zaJjnAd2+g2nna8TZvuW9Q==",
"cpu": [
"arm64"
],
- "license": "MIT",
+ "license": "LGPL-3.0-or-later",
"optional": true,
"os": [
- "darwin"
+ "linux"
],
- "engines": {
- "node": ">=12"
+ "funding": {
+ "url": "https://opencollective.com/libvips"
}
},
- "node_modules/@esbuild/darwin-x64": {
- "version": "0.21.5",
- "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz",
- "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==",
+ "node_modules/@img/sharp-libvips-linuxmusl-x64": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.2.0.tgz",
+ "integrity": "sha512-SRYOLR7CXPgNze8akZwjoGBoN1ThNZoqpOgfnOxmWsklTGVfJiGJoC/Lod7aNMGA1jSsKWM1+HRX43OP6p9+6Q==",
"cpu": [
"x64"
],
- "license": "MIT",
+ "license": "LGPL-3.0-or-later",
"optional": true,
"os": [
- "darwin"
+ "linux"
],
- "engines": {
- "node": ">=12"
+ "funding": {
+ "url": "https://opencollective.com/libvips"
}
},
- "node_modules/@esbuild/freebsd-arm64": {
- "version": "0.21.5",
- "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz",
- "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==",
+ "node_modules/@img/sharp-linux-arm": {
+ "version": "0.34.3",
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.34.3.tgz",
+ "integrity": "sha512-oBK9l+h6KBN0i3dC8rYntLiVfW8D8wH+NPNT3O/WBHeW0OQWCjfWksLUaPidsrDKpJgXp3G3/hkmhptAW0I3+A==",
"cpu": [
- "arm64"
+ "arm"
],
- "license": "MIT",
+ "license": "Apache-2.0",
"optional": true,
"os": [
- "freebsd"
+ "linux"
],
"engines": {
- "node": ">=12"
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ },
+ "optionalDependencies": {
+ "@img/sharp-libvips-linux-arm": "1.2.0"
}
},
- "node_modules/@esbuild/freebsd-x64": {
- "version": "0.21.5",
- "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz",
- "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==",
+ "node_modules/@img/sharp-linux-arm64": {
+ "version": "0.34.3",
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.34.3.tgz",
+ "integrity": "sha512-QdrKe3EvQrqwkDrtuTIjI0bu6YEJHTgEeqdzI3uWJOH6G1O8Nl1iEeVYRGdj1h5I21CqxSvQp1Yv7xeU3ZewbA==",
"cpu": [
- "x64"
+ "arm64"
],
- "license": "MIT",
+ "license": "Apache-2.0",
"optional": true,
"os": [
- "freebsd"
+ "linux"
],
"engines": {
- "node": ">=12"
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ },
+ "optionalDependencies": {
+ "@img/sharp-libvips-linux-arm64": "1.2.0"
}
},
- "node_modules/@esbuild/linux-arm": {
- "version": "0.21.5",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz",
- "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==",
+ "node_modules/@img/sharp-linux-ppc64": {
+ "version": "0.34.3",
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-ppc64/-/sharp-linux-ppc64-0.34.3.tgz",
+ "integrity": "sha512-GLtbLQMCNC5nxuImPR2+RgrviwKwVql28FWZIW1zWruy6zLgA5/x2ZXk3mxj58X/tszVF69KK0Is83V8YgWhLA==",
"cpu": [
- "arm"
+ "ppc64"
],
- "license": "MIT",
+ "license": "Apache-2.0",
"optional": true,
"os": [
"linux"
],
"engines": {
- "node": ">=12"
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ },
+ "optionalDependencies": {
+ "@img/sharp-libvips-linux-ppc64": "1.2.0"
}
},
- "node_modules/@esbuild/linux-arm64": {
- "version": "0.21.5",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz",
- "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==",
+ "node_modules/@img/sharp-linux-s390x": {
+ "version": "0.34.3",
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.34.3.tgz",
+ "integrity": "sha512-3gahT+A6c4cdc2edhsLHmIOXMb17ltffJlxR0aC2VPZfwKoTGZec6u5GrFgdR7ciJSsHT27BD3TIuGcuRT0KmQ==",
"cpu": [
- "arm64"
+ "s390x"
],
- "license": "MIT",
+ "license": "Apache-2.0",
"optional": true,
"os": [
"linux"
],
"engines": {
- "node": ">=12"
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ },
+ "optionalDependencies": {
+ "@img/sharp-libvips-linux-s390x": "1.2.0"
}
},
- "node_modules/@esbuild/linux-ia32": {
- "version": "0.21.5",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz",
- "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==",
+ "node_modules/@img/sharp-linux-x64": {
+ "version": "0.34.3",
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.34.3.tgz",
+ "integrity": "sha512-8kYso8d806ypnSq3/Ly0QEw90V5ZoHh10yH0HnrzOCr6DKAPI6QVHvwleqMkVQ0m+fc7EH8ah0BB0QPuWY6zJQ==",
"cpu": [
- "ia32"
+ "x64"
],
- "license": "MIT",
+ "license": "Apache-2.0",
"optional": true,
"os": [
"linux"
],
"engines": {
- "node": ">=12"
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ },
+ "optionalDependencies": {
+ "@img/sharp-libvips-linux-x64": "1.2.0"
}
},
- "node_modules/@esbuild/linux-loong64": {
- "version": "0.21.5",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz",
- "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==",
+ "node_modules/@img/sharp-linuxmusl-arm64": {
+ "version": "0.34.3",
+ "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.34.3.tgz",
+ "integrity": "sha512-vAjbHDlr4izEiXM1OTggpCcPg9tn4YriK5vAjowJsHwdBIdx0fYRsURkxLG2RLm9gyBq66gwtWI8Gx0/ov+JKQ==",
"cpu": [
- "loong64"
+ "arm64"
],
- "license": "MIT",
+ "license": "Apache-2.0",
"optional": true,
"os": [
"linux"
],
"engines": {
- "node": ">=12"
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ },
+ "optionalDependencies": {
+ "@img/sharp-libvips-linuxmusl-arm64": "1.2.0"
}
},
- "node_modules/@esbuild/linux-mips64el": {
- "version": "0.21.5",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz",
- "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==",
+ "node_modules/@img/sharp-linuxmusl-x64": {
+ "version": "0.34.3",
+ "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.34.3.tgz",
+ "integrity": "sha512-gCWUn9547K5bwvOn9l5XGAEjVTTRji4aPTqLzGXHvIr6bIDZKNTA34seMPgM0WmSf+RYBH411VavCejp3PkOeQ==",
"cpu": [
- "mips64el"
+ "x64"
],
- "license": "MIT",
+ "license": "Apache-2.0",
"optional": true,
"os": [
"linux"
],
"engines": {
- "node": ">=12"
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ },
+ "optionalDependencies": {
+ "@img/sharp-libvips-linuxmusl-x64": "1.2.0"
}
},
- "node_modules/@esbuild/linux-ppc64": {
- "version": "0.21.5",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz",
- "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==",
+ "node_modules/@img/sharp-wasm32": {
+ "version": "0.34.3",
+ "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.34.3.tgz",
+ "integrity": "sha512-+CyRcpagHMGteySaWos8IbnXcHgfDn7pO2fiC2slJxvNq9gDipYBN42/RagzctVRKgxATmfqOSulgZv5e1RdMg==",
"cpu": [
- "ppc64"
+ "wasm32"
],
- "license": "MIT",
+ "license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT",
"optional": true,
- "os": [
- "linux"
- ],
+ "dependencies": {
+ "@emnapi/runtime": "^1.4.4"
+ },
"engines": {
- "node": ">=12"
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/libvips"
}
},
- "node_modules/@esbuild/linux-riscv64": {
- "version": "0.21.5",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz",
- "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==",
+ "node_modules/@img/sharp-win32-arm64": {
+ "version": "0.34.3",
+ "resolved": "https://registry.npmjs.org/@img/sharp-win32-arm64/-/sharp-win32-arm64-0.34.3.tgz",
+ "integrity": "sha512-MjnHPnbqMXNC2UgeLJtX4XqoVHHlZNd+nPt1kRPmj63wURegwBhZlApELdtxM2OIZDRv/DFtLcNhVbd1z8GYXQ==",
"cpu": [
- "riscv64"
+ "arm64"
],
- "license": "MIT",
+ "license": "Apache-2.0 AND LGPL-3.0-or-later",
"optional": true,
"os": [
- "linux"
+ "win32"
],
"engines": {
- "node": ">=12"
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/libvips"
}
},
- "node_modules/@esbuild/linux-s390x": {
- "version": "0.21.5",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz",
- "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==",
+ "node_modules/@img/sharp-win32-ia32": {
+ "version": "0.34.3",
+ "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.34.3.tgz",
+ "integrity": "sha512-xuCdhH44WxuXgOM714hn4amodJMZl3OEvf0GVTm0BEyMeA2to+8HEdRPShH0SLYptJY1uBw+SCFP9WVQi1Q/cw==",
"cpu": [
- "s390x"
+ "ia32"
],
- "license": "MIT",
+ "license": "Apache-2.0 AND LGPL-3.0-or-later",
"optional": true,
"os": [
- "linux"
+ "win32"
],
"engines": {
- "node": ">=12"
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/libvips"
}
},
- "node_modules/@esbuild/linux-x64": {
- "version": "0.21.5",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz",
- "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==",
+ "node_modules/@img/sharp-win32-x64": {
+ "version": "0.34.3",
+ "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.34.3.tgz",
+ "integrity": "sha512-OWwz05d++TxzLEv4VnsTz5CmZ6mI6S05sfQGEMrNrQcOEERbX46332IvE7pO/EUiw7jUrrS40z/M7kPyjfl04g==",
"cpu": [
"x64"
],
- "license": "MIT",
+ "license": "Apache-2.0 AND LGPL-3.0-or-later",
"optional": true,
"os": [
- "linux"
+ "win32"
],
+ "engines": {
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ }
+ },
+ "node_modules/@isaacs/cliui": {
+ "version": "8.0.2",
+ "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz",
+ "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==",
+ "license": "ISC",
+ "dependencies": {
+ "string-width": "^5.1.2",
+ "string-width-cjs": "npm:string-width@^4.2.0",
+ "strip-ansi": "^7.0.1",
+ "strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
+ "wrap-ansi": "^8.1.0",
+ "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
+ },
"engines": {
"node": ">=12"
}
},
- "node_modules/@esbuild/netbsd-arm64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.24.2.tgz",
- "integrity": "sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw==",
- "cpu": [
- "arm64"
- ],
+ "node_modules/@isaacs/cliui/node_modules/emoji-regex": {
+ "version": "9.2.2",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
+ "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==",
+ "license": "MIT"
+ },
+ "node_modules/@isaacs/cliui/node_modules/string-width": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz",
+ "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
"license": "MIT",
- "optional": true,
- "os": [
- "netbsd"
- ],
+ "dependencies": {
+ "eastasianwidth": "^0.2.0",
+ "emoji-regex": "^9.2.2",
+ "strip-ansi": "^7.0.1"
+ },
"engines": {
- "node": ">=18"
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/@esbuild/netbsd-x64": {
- "version": "0.21.5",
- "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz",
- "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==",
- "cpu": [
- "x64"
- ],
+ "node_modules/@isaacs/cliui/node_modules/wrap-ansi": {
+ "version": "8.1.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz",
+ "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==",
"license": "MIT",
- "optional": true,
- "os": [
- "netbsd"
- ],
+ "dependencies": {
+ "ansi-styles": "^6.1.0",
+ "string-width": "^5.0.1",
+ "strip-ansi": "^7.0.1"
+ },
"engines": {
"node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
}
},
- "node_modules/@esbuild/openbsd-arm64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.24.2.tgz",
- "integrity": "sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A==",
- "cpu": [
- "arm64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "openbsd"
- ],
+ "node_modules/@isaacs/fs-minipass": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz",
+ "integrity": "sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==",
+ "license": "ISC",
+ "dependencies": {
+ "minipass": "^7.0.4"
+ },
+ "engines": {
+ "node": ">=18.0.0"
+ }
+ },
+ "node_modules/@jridgewell/sourcemap-codec": {
+ "version": "1.5.5",
+ "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
+ "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
+ "license": "MIT"
+ },
+ "node_modules/@mapbox/node-pre-gyp": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-2.0.0.tgz",
+ "integrity": "sha512-llMXd39jtP0HpQLVI37Bf1m2ADlEb35GYSh1SDSLsBhR+5iCxiNGlT31yqbNtVHygHAtMy6dWFERpU2JgufhPg==",
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "consola": "^3.2.3",
+ "detect-libc": "^2.0.0",
+ "https-proxy-agent": "^7.0.5",
+ "node-fetch": "^2.6.7",
+ "nopt": "^8.0.0",
+ "semver": "^7.5.3",
+ "tar": "^7.4.0"
+ },
+ "bin": {
+ "node-pre-gyp": "bin/node-pre-gyp"
+ },
"engines": {
"node": ">=18"
}
},
- "node_modules/@esbuild/openbsd-x64": {
- "version": "0.21.5",
- "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz",
- "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==",
- "cpu": [
- "x64"
- ],
+ "node_modules/@mdx-js/mdx": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/@mdx-js/mdx/-/mdx-3.1.0.tgz",
+ "integrity": "sha512-/QxEhPAvGwbQmy1Px8F899L5Uc2KZ6JtXwlCgJmjSTBedwOZkByYcBG4GceIGPXRDsmfxhHazuS+hlOShRLeDw==",
+ "license": "MIT",
+ "dependencies": {
+ "@types/estree": "^1.0.0",
+ "@types/estree-jsx": "^1.0.0",
+ "@types/hast": "^3.0.0",
+ "@types/mdx": "^2.0.0",
+ "collapse-white-space": "^2.0.0",
+ "devlop": "^1.0.0",
+ "estree-util-is-identifier-name": "^3.0.0",
+ "estree-util-scope": "^1.0.0",
+ "estree-walker": "^3.0.0",
+ "hast-util-to-jsx-runtime": "^2.0.0",
+ "markdown-extensions": "^2.0.0",
+ "recma-build-jsx": "^1.0.0",
+ "recma-jsx": "^1.0.0",
+ "recma-stringify": "^1.0.0",
+ "rehype-recma": "^1.0.0",
+ "remark-mdx": "^3.0.0",
+ "remark-parse": "^11.0.0",
+ "remark-rehype": "^11.0.0",
+ "source-map": "^0.7.0",
+ "unified": "^11.0.0",
+ "unist-util-position-from-estree": "^2.0.0",
+ "unist-util-stringify-position": "^4.0.0",
+ "unist-util-visit": "^5.0.0",
+ "vfile": "^6.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/@netlify/blobs": {
+ "version": "8.1.1",
+ "resolved": "https://registry.npmjs.org/@netlify/blobs/-/blobs-8.1.1.tgz",
+ "integrity": "sha512-7Dg3PzArvQ0Owq4wpkLECC9iaDBOxuWUN2uwbQtUF6tZssyez2QN+eO0CjuIhhZUivbw+X9bwsyiEjWkdJnv/A==",
"license": "MIT",
- "optional": true,
- "os": [
- "openbsd"
- ],
"engines": {
- "node": ">=12"
+ "node": "^14.16.0 || >=16.0.0"
}
},
- "node_modules/@esbuild/sunos-x64": {
- "version": "0.21.5",
- "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz",
- "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==",
- "cpu": [
- "x64"
- ],
+ "node_modules/@netlify/functions": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/@netlify/functions/-/functions-3.0.1.tgz",
+ "integrity": "sha512-KqVvGatPnn3lw80vXsFbYV3H2S9FI9TQHneFVR6BBvfHWiqTvs8NwUoBpnUWgqPKKeUMuynycDabeSi9CW2WWw==",
"license": "MIT",
- "optional": true,
- "os": [
- "sunos"
- ],
+ "dependencies": {
+ "@netlify/serverless-functions-api": "1.35.0"
+ },
"engines": {
- "node": ">=12"
+ "node": ">=18.0.0"
}
},
- "node_modules/@esbuild/win32-arm64": {
- "version": "0.21.5",
- "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz",
- "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==",
- "cpu": [
- "arm64"
- ],
+ "node_modules/@netlify/serverless-functions-api": {
+ "version": "1.35.0",
+ "resolved": "https://registry.npmjs.org/@netlify/serverless-functions-api/-/serverless-functions-api-1.35.0.tgz",
+ "integrity": "sha512-BH9eF3s7bUbqkcEUMR7dne/iCXSpZD10KVkGcs53eDrON5pKxsMdXvrdAx/q0HD24vJgHXGXObGSr5sjPllGEA==",
"license": "MIT",
- "optional": true,
- "os": [
- "win32"
- ],
"engines": {
- "node": ">=12"
+ "node": ">=18.0.0"
}
},
- "node_modules/@esbuild/win32-ia32": {
- "version": "0.21.5",
- "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz",
- "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==",
- "cpu": [
- "ia32"
- ],
+ "node_modules/@oslojs/encoding": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/@oslojs/encoding/-/encoding-1.1.0.tgz",
+ "integrity": "sha512-70wQhgYmndg4GCPxPPxPGevRKqTIJ2Nh4OkiMWmDAVYsTQ+Ta7Sq+rPevXyXGdzr30/qZBnyOalCszoMxlyldQ==",
+ "license": "MIT"
+ },
+ "node_modules/@pkgjs/parseargs": {
+ "version": "0.11.0",
+ "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz",
+ "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==",
"license": "MIT",
"optional": true,
- "os": [
- "win32"
- ],
"engines": {
- "node": ">=12"
+ "node": ">=14"
}
},
- "node_modules/@esbuild/win32-x64": {
- "version": "0.21.5",
- "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz",
- "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==",
+ "node_modules/@rollup/pluginutils": {
+ "version": "5.3.0",
+ "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.3.0.tgz",
+ "integrity": "sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==",
+ "license": "MIT",
+ "dependencies": {
+ "@types/estree": "^1.0.0",
+ "estree-walker": "^2.0.2",
+ "picomatch": "^4.0.2"
+ },
+ "engines": {
+ "node": ">=14.0.0"
+ },
+ "peerDependencies": {
+ "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0"
+ },
+ "peerDependenciesMeta": {
+ "rollup": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@rollup/pluginutils/node_modules/estree-walker": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz",
+ "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
+ "license": "MIT"
+ },
+ "node_modules/@rollup/rollup-android-arm-eabi": {
+ "version": "4.35.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.35.0.tgz",
+ "integrity": "sha512-uYQ2WfPaqz5QtVgMxfN6NpLD+no0MYHDBywl7itPYd3K5TjjSghNKmX8ic9S8NU8w81NVhJv/XojcHptRly7qQ==",
"cpu": [
- "x64"
+ "arm"
],
"license": "MIT",
"optional": true,
"os": [
- "win32"
- ],
- "engines": {
- "node": ">=12"
- }
+ "android"
+ ]
},
- "node_modules/@img/sharp-darwin-arm64": {
- "version": "0.33.5",
- "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.33.5.tgz",
- "integrity": "sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==",
+ "node_modules/@rollup/rollup-android-arm64": {
+ "version": "4.35.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.35.0.tgz",
+ "integrity": "sha512-FtKddj9XZudurLhdJnBl9fl6BwCJ3ky8riCXjEw3/UIbjmIY58ppWwPEvU3fNu+W7FUsAsB1CdH+7EQE6CXAPA==",
"cpu": [
"arm64"
],
- "license": "Apache-2.0",
+ "license": "MIT",
"optional": true,
"os": [
- "darwin"
- ],
- "engines": {
- "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
- },
- "funding": {
- "url": "https://opencollective.com/libvips"
- },
- "optionalDependencies": {
- "@img/sharp-libvips-darwin-arm64": "1.0.4"
- }
- },
- "node_modules/@img/sharp-darwin-x64": {
- "version": "0.33.5",
- "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.33.5.tgz",
- "integrity": "sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==",
- "cpu": [
- "x64"
- ],
- "license": "Apache-2.0",
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
- },
- "funding": {
- "url": "https://opencollective.com/libvips"
- },
- "optionalDependencies": {
- "@img/sharp-libvips-darwin-x64": "1.0.4"
- }
+ "android"
+ ]
},
- "node_modules/@img/sharp-libvips-darwin-arm64": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.0.4.tgz",
- "integrity": "sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==",
+ "node_modules/@rollup/rollup-darwin-arm64": {
+ "version": "4.35.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.35.0.tgz",
+ "integrity": "sha512-Uk+GjOJR6CY844/q6r5DR/6lkPFOw0hjfOIzVx22THJXMxktXG6CbejseJFznU8vHcEBLpiXKY3/6xc+cBm65Q==",
"cpu": [
"arm64"
],
- "license": "LGPL-3.0-or-later",
+ "license": "MIT",
"optional": true,
"os": [
"darwin"
- ],
- "funding": {
- "url": "https://opencollective.com/libvips"
- }
+ ]
},
- "node_modules/@img/sharp-libvips-darwin-x64": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.0.4.tgz",
- "integrity": "sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==",
+ "node_modules/@rollup/rollup-darwin-x64": {
+ "version": "4.35.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.35.0.tgz",
+ "integrity": "sha512-3IrHjfAS6Vkp+5bISNQnPogRAW5GAV1n+bNCrDwXmfMHbPl5EhTmWtfmwlJxFRUCBZ+tZ/OxDyU08aF6NI/N5Q==",
"cpu": [
"x64"
],
- "license": "LGPL-3.0-or-later",
+ "license": "MIT",
"optional": true,
"os": [
"darwin"
- ],
- "funding": {
- "url": "https://opencollective.com/libvips"
- }
+ ]
},
- "node_modules/@img/sharp-libvips-linux-arm": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.0.5.tgz",
- "integrity": "sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==",
+ "node_modules/@rollup/rollup-freebsd-arm64": {
+ "version": "4.35.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.35.0.tgz",
+ "integrity": "sha512-sxjoD/6F9cDLSELuLNnY0fOrM9WA0KrM0vWm57XhrIMf5FGiN8D0l7fn+bpUeBSU7dCgPV2oX4zHAsAXyHFGcQ==",
"cpu": [
- "arm"
+ "arm64"
],
- "license": "LGPL-3.0-or-later",
+ "license": "MIT",
"optional": true,
"os": [
- "linux"
- ],
- "funding": {
- "url": "https://opencollective.com/libvips"
- }
+ "freebsd"
+ ]
},
- "node_modules/@img/sharp-libvips-linux-arm64": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.0.4.tgz",
- "integrity": "sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==",
+ "node_modules/@rollup/rollup-freebsd-x64": {
+ "version": "4.35.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.35.0.tgz",
+ "integrity": "sha512-2mpHCeRuD1u/2kruUiHSsnjWtHjqVbzhBkNVQ1aVD63CcexKVcQGwJ2g5VphOd84GvxfSvnnlEyBtQCE5hxVVw==",
"cpu": [
- "arm64"
+ "x64"
],
- "license": "LGPL-3.0-or-later",
+ "license": "MIT",
"optional": true,
"os": [
- "linux"
- ],
- "funding": {
- "url": "https://opencollective.com/libvips"
- }
+ "freebsd"
+ ]
},
- "node_modules/@img/sharp-libvips-linux-s390x": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.0.4.tgz",
- "integrity": "sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==",
+ "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
+ "version": "4.35.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.35.0.tgz",
+ "integrity": "sha512-mrA0v3QMy6ZSvEuLs0dMxcO2LnaCONs1Z73GUDBHWbY8tFFocM6yl7YyMu7rz4zS81NDSqhrUuolyZXGi8TEqg==",
"cpu": [
- "s390x"
+ "arm"
],
- "license": "LGPL-3.0-or-later",
+ "license": "MIT",
"optional": true,
"os": [
"linux"
- ],
- "funding": {
- "url": "https://opencollective.com/libvips"
- }
+ ]
},
- "node_modules/@img/sharp-libvips-linux-x64": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.0.4.tgz",
- "integrity": "sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==",
+ "node_modules/@rollup/rollup-linux-arm-musleabihf": {
+ "version": "4.35.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.35.0.tgz",
+ "integrity": "sha512-DnYhhzcvTAKNexIql8pFajr0PiDGrIsBYPRvCKlA5ixSS3uwo/CWNZxB09jhIapEIg945KOzcYEAGGSmTSpk7A==",
"cpu": [
- "x64"
+ "arm"
],
- "license": "LGPL-3.0-or-later",
+ "license": "MIT",
"optional": true,
"os": [
"linux"
- ],
- "funding": {
- "url": "https://opencollective.com/libvips"
- }
+ ]
},
- "node_modules/@img/sharp-libvips-linuxmusl-arm64": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.0.4.tgz",
- "integrity": "sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==",
+ "node_modules/@rollup/rollup-linux-arm64-gnu": {
+ "version": "4.35.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.35.0.tgz",
+ "integrity": "sha512-uagpnH2M2g2b5iLsCTZ35CL1FgyuzzJQ8L9VtlJ+FckBXroTwNOaD0z0/UF+k5K3aNQjbm8LIVpxykUOQt1m/A==",
"cpu": [
"arm64"
],
- "license": "LGPL-3.0-or-later",
+ "license": "MIT",
"optional": true,
"os": [
"linux"
- ],
- "funding": {
- "url": "https://opencollective.com/libvips"
- }
+ ]
},
- "node_modules/@img/sharp-libvips-linuxmusl-x64": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.0.4.tgz",
- "integrity": "sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==",
+ "node_modules/@rollup/rollup-linux-arm64-musl": {
+ "version": "4.35.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.35.0.tgz",
+ "integrity": "sha512-XQxVOCd6VJeHQA/7YcqyV0/88N6ysSVzRjJ9I9UA/xXpEsjvAgDTgH3wQYz5bmr7SPtVK2TsP2fQ2N9L4ukoUg==",
"cpu": [
- "x64"
+ "arm64"
],
- "license": "LGPL-3.0-or-later",
+ "license": "MIT",
"optional": true,
"os": [
"linux"
- ],
- "funding": {
- "url": "https://opencollective.com/libvips"
- }
+ ]
},
- "node_modules/@img/sharp-linux-arm": {
- "version": "0.33.5",
- "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.33.5.tgz",
- "integrity": "sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==",
+ "node_modules/@rollup/rollup-linux-loongarch64-gnu": {
+ "version": "4.35.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.35.0.tgz",
+ "integrity": "sha512-5pMT5PzfgwcXEwOaSrqVsz/LvjDZt+vQ8RT/70yhPU06PTuq8WaHhfT1LW+cdD7mW6i/J5/XIkX/1tCAkh1W6g==",
"cpu": [
- "arm"
+ "loong64"
],
- "license": "Apache-2.0",
+ "license": "MIT",
"optional": true,
"os": [
"linux"
- ],
- "engines": {
- "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
- },
- "funding": {
- "url": "https://opencollective.com/libvips"
- },
- "optionalDependencies": {
- "@img/sharp-libvips-linux-arm": "1.0.5"
- }
+ ]
},
- "node_modules/@img/sharp-linux-arm64": {
- "version": "0.33.5",
- "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.33.5.tgz",
- "integrity": "sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==",
+ "node_modules/@rollup/rollup-linux-powerpc64le-gnu": {
+ "version": "4.35.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.35.0.tgz",
+ "integrity": "sha512-c+zkcvbhbXF98f4CtEIP1EBA/lCic5xB0lToneZYvMeKu5Kamq3O8gqrxiYYLzlZH6E3Aq+TSW86E4ay8iD8EA==",
"cpu": [
- "arm64"
+ "ppc64"
],
- "license": "Apache-2.0",
+ "license": "MIT",
"optional": true,
"os": [
"linux"
- ],
- "engines": {
- "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
- },
- "funding": {
- "url": "https://opencollective.com/libvips"
- },
- "optionalDependencies": {
- "@img/sharp-libvips-linux-arm64": "1.0.4"
- }
+ ]
},
- "node_modules/@img/sharp-linux-s390x": {
- "version": "0.33.5",
- "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.33.5.tgz",
- "integrity": "sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==",
+ "node_modules/@rollup/rollup-linux-riscv64-gnu": {
+ "version": "4.35.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.35.0.tgz",
+ "integrity": "sha512-s91fuAHdOwH/Tad2tzTtPX7UZyytHIRR6V4+2IGlV0Cej5rkG0R61SX4l4y9sh0JBibMiploZx3oHKPnQBKe4g==",
"cpu": [
- "s390x"
+ "riscv64"
],
- "license": "Apache-2.0",
+ "license": "MIT",
"optional": true,
"os": [
"linux"
- ],
- "engines": {
- "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
- },
- "funding": {
- "url": "https://opencollective.com/libvips"
- },
- "optionalDependencies": {
- "@img/sharp-libvips-linux-s390x": "1.0.4"
- }
+ ]
},
- "node_modules/@img/sharp-linux-x64": {
- "version": "0.33.5",
- "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.33.5.tgz",
- "integrity": "sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==",
+ "node_modules/@rollup/rollup-linux-s390x-gnu": {
+ "version": "4.35.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.35.0.tgz",
+ "integrity": "sha512-hQRkPQPLYJZYGP+Hj4fR9dDBMIM7zrzJDWFEMPdTnTy95Ljnv0/4w/ixFw3pTBMEuuEuoqtBINYND4M7ujcuQw==",
"cpu": [
- "x64"
+ "s390x"
],
- "license": "Apache-2.0",
+ "license": "MIT",
"optional": true,
"os": [
"linux"
- ],
- "engines": {
- "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
- },
- "funding": {
- "url": "https://opencollective.com/libvips"
- },
- "optionalDependencies": {
- "@img/sharp-libvips-linux-x64": "1.0.4"
- }
+ ]
},
- "node_modules/@img/sharp-linuxmusl-arm64": {
- "version": "0.33.5",
- "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.33.5.tgz",
- "integrity": "sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==",
+ "node_modules/@rollup/rollup-linux-x64-gnu": {
+ "version": "4.35.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.35.0.tgz",
+ "integrity": "sha512-Pim1T8rXOri+0HmV4CdKSGrqcBWX0d1HoPnQ0uw0bdp1aP5SdQVNBy8LjYncvnLgu3fnnCt17xjWGd4cqh8/hA==",
"cpu": [
- "arm64"
+ "x64"
],
- "license": "Apache-2.0",
+ "license": "MIT",
"optional": true,
"os": [
"linux"
- ],
- "engines": {
- "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
- },
- "funding": {
- "url": "https://opencollective.com/libvips"
- },
- "optionalDependencies": {
- "@img/sharp-libvips-linuxmusl-arm64": "1.0.4"
- }
+ ]
},
- "node_modules/@img/sharp-linuxmusl-x64": {
- "version": "0.33.5",
- "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.33.5.tgz",
- "integrity": "sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==",
+ "node_modules/@rollup/rollup-linux-x64-musl": {
+ "version": "4.35.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.35.0.tgz",
+ "integrity": "sha512-QysqXzYiDvQWfUiTm8XmJNO2zm9yC9P/2Gkrwg2dH9cxotQzunBHYr6jk4SujCTqnfGxduOmQcI7c2ryuW8XVg==",
"cpu": [
"x64"
],
- "license": "Apache-2.0",
+ "license": "MIT",
"optional": true,
"os": [
"linux"
- ],
- "engines": {
- "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
- },
- "funding": {
- "url": "https://opencollective.com/libvips"
- },
- "optionalDependencies": {
- "@img/sharp-libvips-linuxmusl-x64": "1.0.4"
- }
+ ]
},
- "node_modules/@img/sharp-wasm32": {
- "version": "0.33.5",
- "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.33.5.tgz",
- "integrity": "sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==",
+ "node_modules/@rollup/rollup-win32-arm64-msvc": {
+ "version": "4.35.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.35.0.tgz",
+ "integrity": "sha512-OUOlGqPkVJCdJETKOCEf1mw848ZyJ5w50/rZ/3IBQVdLfR5jk/6Sr5m3iO2tdPgwo0x7VcncYuOvMhBWZq8ayg==",
"cpu": [
- "wasm32"
+ "arm64"
],
- "license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT",
+ "license": "MIT",
"optional": true,
- "dependencies": {
- "@emnapi/runtime": "^1.2.0"
- },
- "engines": {
- "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
- },
- "funding": {
- "url": "https://opencollective.com/libvips"
- }
+ "os": [
+ "win32"
+ ]
},
- "node_modules/@img/sharp-win32-ia32": {
- "version": "0.33.5",
- "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.33.5.tgz",
- "integrity": "sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==",
+ "node_modules/@rollup/rollup-win32-ia32-msvc": {
+ "version": "4.35.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.35.0.tgz",
+ "integrity": "sha512-2/lsgejMrtwQe44glq7AFFHLfJBPafpsTa6JvP2NGef/ifOa4KBoglVf7AKN7EV9o32evBPRqfg96fEHzWo5kw==",
"cpu": [
"ia32"
],
- "license": "Apache-2.0 AND LGPL-3.0-or-later",
+ "license": "MIT",
"optional": true,
"os": [
"win32"
- ],
- "engines": {
- "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
- },
- "funding": {
- "url": "https://opencollective.com/libvips"
- }
+ ]
},
- "node_modules/@img/sharp-win32-x64": {
- "version": "0.33.5",
- "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.33.5.tgz",
- "integrity": "sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==",
+ "node_modules/@rollup/rollup-win32-x64-msvc": {
+ "version": "4.35.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.35.0.tgz",
+ "integrity": "sha512-PIQeY5XDkrOysbQblSW7v3l1MDZzkTEzAfTPkj5VAu3FW8fS4ynyLg2sINp0fp3SjZ8xkRYpLqoKcYqAkhU1dw==",
"cpu": [
"x64"
],
- "license": "Apache-2.0 AND LGPL-3.0-or-later",
+ "license": "MIT",
"optional": true,
"os": [
"win32"
- ],
- "engines": {
- "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
- },
- "funding": {
- "url": "https://opencollective.com/libvips"
+ ]
+ },
+ "node_modules/@shikijs/core": {
+ "version": "3.12.2",
+ "resolved": "https://registry.npmjs.org/@shikijs/core/-/core-3.12.2.tgz",
+ "integrity": "sha512-L1Safnhra3tX/oJK5kYHaWmLEBJi1irASwewzY3taX5ibyXyMkkSDZlq01qigjryOBwrXSdFgTiZ3ryzSNeu7Q==",
+ "license": "MIT",
+ "dependencies": {
+ "@shikijs/types": "3.12.2",
+ "@shikijs/vscode-textmate": "^10.0.2",
+ "@types/hast": "^3.0.4",
+ "hast-util-to-html": "^9.0.5"
}
},
- "node_modules/@isaacs/cliui": {
- "version": "8.0.2",
- "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz",
- "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==",
- "license": "ISC",
- "dependencies": {
- "string-width": "^5.1.2",
- "string-width-cjs": "npm:string-width@^4.2.0",
- "strip-ansi": "^7.0.1",
- "strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
- "wrap-ansi": "^8.1.0",
- "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
- },
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/@isaacs/cliui/node_modules/emoji-regex": {
- "version": "9.2.2",
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
- "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==",
- "license": "MIT"
- },
- "node_modules/@isaacs/cliui/node_modules/string-width": {
- "version": "5.1.2",
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz",
- "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
+ "node_modules/@shikijs/engine-javascript": {
+ "version": "3.12.2",
+ "resolved": "https://registry.npmjs.org/@shikijs/engine-javascript/-/engine-javascript-3.12.2.tgz",
+ "integrity": "sha512-Nm3/azSsaVS7hk6EwtHEnTythjQfwvrO5tKqMlaH9TwG1P+PNaR8M0EAKZ+GaH2DFwvcr4iSfTveyxMIvXEHMw==",
"license": "MIT",
"dependencies": {
- "eastasianwidth": "^0.2.0",
- "emoji-regex": "^9.2.2",
- "strip-ansi": "^7.0.1"
- },
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "@shikijs/types": "3.12.2",
+ "@shikijs/vscode-textmate": "^10.0.2",
+ "oniguruma-to-es": "^4.3.3"
}
},
- "node_modules/@isaacs/cliui/node_modules/wrap-ansi": {
- "version": "8.1.0",
- "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz",
- "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==",
+ "node_modules/@shikijs/engine-oniguruma": {
+ "version": "3.12.2",
+ "resolved": "https://registry.npmjs.org/@shikijs/engine-oniguruma/-/engine-oniguruma-3.12.2.tgz",
+ "integrity": "sha512-hozwnFHsLvujK4/CPVHNo3Bcg2EsnG8krI/ZQ2FlBlCRpPZW4XAEQmEwqegJsypsTAN9ehu2tEYe30lYKSZW/w==",
"license": "MIT",
"dependencies": {
- "ansi-styles": "^6.1.0",
- "string-width": "^5.0.1",
- "strip-ansi": "^7.0.1"
- },
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
- }
- },
- "node_modules/@isaacs/fs-minipass": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz",
- "integrity": "sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==",
- "license": "ISC",
- "dependencies": {
- "minipass": "^7.0.4"
- },
- "engines": {
- "node": ">=18.0.0"
+ "@shikijs/types": "3.12.2",
+ "@shikijs/vscode-textmate": "^10.0.2"
}
},
- "node_modules/@jridgewell/gen-mapping": {
- "version": "0.3.8",
- "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz",
- "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==",
+ "node_modules/@shikijs/langs": {
+ "version": "3.12.2",
+ "resolved": "https://registry.npmjs.org/@shikijs/langs/-/langs-3.12.2.tgz",
+ "integrity": "sha512-bVx5PfuZHDSHoBal+KzJZGheFuyH4qwwcwG/n+MsWno5cTlKmaNtTsGzJpHYQ8YPbB5BdEdKU1rga5/6JGY8ww==",
"license": "MIT",
"dependencies": {
- "@jridgewell/set-array": "^1.2.1",
- "@jridgewell/sourcemap-codec": "^1.4.10",
- "@jridgewell/trace-mapping": "^0.3.24"
- },
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/@jridgewell/resolve-uri": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
- "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
- "license": "MIT",
- "engines": {
- "node": ">=6.0.0"
+ "@shikijs/types": "3.12.2"
}
},
- "node_modules/@jridgewell/set-array": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz",
- "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==",
+ "node_modules/@shikijs/themes": {
+ "version": "3.12.2",
+ "resolved": "https://registry.npmjs.org/@shikijs/themes/-/themes-3.12.2.tgz",
+ "integrity": "sha512-fTR3QAgnwYpfGczpIbzPjlRnxyONJOerguQv1iwpyQZ9QXX4qy/XFQqXlf17XTsorxnHoJGbH/LXBvwtqDsF5A==",
"license": "MIT",
- "engines": {
- "node": ">=6.0.0"
+ "dependencies": {
+ "@shikijs/types": "3.12.2"
}
},
- "node_modules/@jridgewell/sourcemap-codec": {
- "version": "1.5.0",
- "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz",
- "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==",
- "license": "MIT"
- },
- "node_modules/@jridgewell/trace-mapping": {
- "version": "0.3.25",
- "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz",
- "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==",
+ "node_modules/@shikijs/types": {
+ "version": "3.12.2",
+ "resolved": "https://registry.npmjs.org/@shikijs/types/-/types-3.12.2.tgz",
+ "integrity": "sha512-K5UIBzxCyv0YoxN3LMrKB9zuhp1bV+LgewxuVwHdl4Gz5oePoUFrr9EfgJlGlDeXCU1b/yhdnXeuRvAnz8HN8Q==",
"license": "MIT",
"dependencies": {
- "@jridgewell/resolve-uri": "^3.1.0",
- "@jridgewell/sourcemap-codec": "^1.4.14"
+ "@shikijs/vscode-textmate": "^10.0.2",
+ "@types/hast": "^3.0.4"
}
},
- "node_modules/@mapbox/node-pre-gyp": {
- "version": "2.0.0-rc.0",
- "resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-2.0.0-rc.0.tgz",
- "integrity": "sha512-nhSMNprz3WmeRvd8iUs5JqkKr0Ncx46JtPxM3AhXes84XpSJfmIwKeWXRpsr53S7kqPkQfPhzrMFUxSNb23qSA==",
- "license": "BSD-3-Clause",
- "dependencies": {
- "consola": "^3.2.3",
- "detect-libc": "^2.0.0",
- "https-proxy-agent": "^7.0.5",
- "node-fetch": "^2.6.7",
- "nopt": "^8.0.0",
- "semver": "^7.5.3",
- "tar": "^7.4.0"
- },
- "bin": {
- "node-pre-gyp": "bin/node-pre-gyp"
- },
- "engines": {
- "node": ">=18"
- }
+ "node_modules/@shikijs/vscode-textmate": {
+ "version": "10.0.2",
+ "resolved": "https://registry.npmjs.org/@shikijs/vscode-textmate/-/vscode-textmate-10.0.2.tgz",
+ "integrity": "sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==",
+ "license": "MIT"
},
- "node_modules/@mdx-js/mdx": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/@mdx-js/mdx/-/mdx-3.1.0.tgz",
- "integrity": "sha512-/QxEhPAvGwbQmy1Px8F899L5Uc2KZ6JtXwlCgJmjSTBedwOZkByYcBG4GceIGPXRDsmfxhHazuS+hlOShRLeDw==",
- "license": "MIT",
+ "node_modules/@swc/helpers": {
+ "version": "0.5.17",
+ "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.17.tgz",
+ "integrity": "sha512-5IKx/Y13RsYd+sauPb2x+U/xZikHjolzfuDgTAl/Tdf3Q8rslRvC19NKDLgAJQ6wsqADk10ntlv08nPFw/gO/A==",
+ "license": "Apache-2.0",
"dependencies": {
- "@types/estree": "^1.0.0",
- "@types/estree-jsx": "^1.0.0",
- "@types/hast": "^3.0.0",
- "@types/mdx": "^2.0.0",
- "collapse-white-space": "^2.0.0",
- "devlop": "^1.0.0",
- "estree-util-is-identifier-name": "^3.0.0",
- "estree-util-scope": "^1.0.0",
- "estree-walker": "^3.0.0",
- "hast-util-to-jsx-runtime": "^2.0.0",
- "markdown-extensions": "^2.0.0",
- "recma-build-jsx": "^1.0.0",
- "recma-jsx": "^1.0.0",
- "recma-stringify": "^1.0.0",
- "rehype-recma": "^1.0.0",
- "remark-mdx": "^3.0.0",
- "remark-parse": "^11.0.0",
- "remark-rehype": "^11.0.0",
- "source-map": "^0.7.0",
- "unified": "^11.0.0",
- "unist-util-position-from-estree": "^2.0.0",
- "unist-util-stringify-position": "^4.0.0",
- "unist-util-visit": "^5.0.0",
- "vfile": "^6.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "tslib": "^2.8.0"
}
},
- "node_modules/@netlify/functions": {
- "version": "2.8.2",
- "resolved": "https://registry.npmjs.org/@netlify/functions/-/functions-2.8.2.tgz",
- "integrity": "sha512-DeoAQh8LuNPvBE4qsKlezjKj0PyXDryOFJfJKo3Z1qZLKzQ21sT314KQKPVjfvw6knqijj+IO+0kHXy/TJiqNA==",
+ "node_modules/@tailwindcss/node": {
+ "version": "4.0.13",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.0.13.tgz",
+ "integrity": "sha512-P9TmtE9Vew0vv5FwyD4bsg/dHHsIsAuUXkenuGUc5gm8fYgaxpdoxIKngCyEMEQxyCKR8PQY5V5VrrKNOx7exg==",
"license": "MIT",
"dependencies": {
- "@netlify/serverless-functions-api": "1.26.1"
- },
- "engines": {
- "node": ">=14.0.0"
- }
- },
- "node_modules/@netlify/node-cookies": {
- "version": "0.1.0",
- "resolved": "https://registry.npmjs.org/@netlify/node-cookies/-/node-cookies-0.1.0.tgz",
- "integrity": "sha512-OAs1xG+FfLX0LoRASpqzVntVV/RpYkgpI0VrUnw2u0Q1qiZUzcPffxRK8HF3gc4GjuhG5ahOEMJ9bswBiZPq0g==",
- "license": "MIT",
- "engines": {
- "node": "^14.16.0 || >=16.0.0"
+ "enhanced-resolve": "^5.18.1",
+ "jiti": "^2.4.2",
+ "tailwindcss": "4.0.13"
}
},
- "node_modules/@netlify/serverless-functions-api": {
- "version": "1.26.1",
- "resolved": "https://registry.npmjs.org/@netlify/serverless-functions-api/-/serverless-functions-api-1.26.1.tgz",
- "integrity": "sha512-q3L9i3HoNfz0SGpTIS4zTcKBbRkxzCRpd169eyiTuk3IwcPC3/85mzLHranlKo2b+HYT0gu37YxGB45aD8A3Tw==",
+ "node_modules/@tailwindcss/oxide": {
+ "version": "4.0.13",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.0.13.tgz",
+ "integrity": "sha512-pTH3Ex5zAWC9LbS+WsYAFmkXQW3NRjmvxkKJY3NP1x0KHBWjz0Q2uGtdGMJzsa0EwoZ7wq9RTbMH1UNPceCpWw==",
"license": "MIT",
- "dependencies": {
- "@netlify/node-cookies": "^0.1.0",
- "urlpattern-polyfill": "8.0.2"
- },
"engines": {
- "node": ">=18.0.0"
- }
- },
- "node_modules/@nodelib/fs.scandir": {
- "version": "2.1.5",
- "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
- "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
- "license": "MIT",
- "dependencies": {
- "@nodelib/fs.stat": "2.0.5",
- "run-parallel": "^1.1.9"
+ "node": ">= 10"
},
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/@nodelib/fs.stat": {
- "version": "2.0.5",
- "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
- "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
+ "optionalDependencies": {
+ "@tailwindcss/oxide-android-arm64": "4.0.13",
+ "@tailwindcss/oxide-darwin-arm64": "4.0.13",
+ "@tailwindcss/oxide-darwin-x64": "4.0.13",
+ "@tailwindcss/oxide-freebsd-x64": "4.0.13",
+ "@tailwindcss/oxide-linux-arm-gnueabihf": "4.0.13",
+ "@tailwindcss/oxide-linux-arm64-gnu": "4.0.13",
+ "@tailwindcss/oxide-linux-arm64-musl": "4.0.13",
+ "@tailwindcss/oxide-linux-x64-gnu": "4.0.13",
+ "@tailwindcss/oxide-linux-x64-musl": "4.0.13",
+ "@tailwindcss/oxide-win32-arm64-msvc": "4.0.13",
+ "@tailwindcss/oxide-win32-x64-msvc": "4.0.13"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-android-arm64": {
+ "version": "4.0.13",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.0.13.tgz",
+ "integrity": "sha512-+9zmwaPQ8A9ycDcdb+hRkMn6NzsmZ4YJBsW5Xqq5EdOu9xlIgmuMuJauVzDPB5BSbIWfhPdZ+le8NeRZpl1coA==",
+ "cpu": [
+ "arm64"
+ ],
"license": "MIT",
+ "optional": true,
+ "os": [
+ "android"
+ ],
"engines": {
- "node": ">= 8"
+ "node": ">= 10"
}
},
- "node_modules/@nodelib/fs.walk": {
- "version": "1.2.8",
- "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
- "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
+ "node_modules/@tailwindcss/oxide-darwin-arm64": {
+ "version": "4.0.13",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.0.13.tgz",
+ "integrity": "sha512-Bj1QGlEJSjs/205CIRfb5/jeveOqzJ4pFMdRxu0gyiYWxBRyxsExXqaD+7162wnLP/EDKh6S1MC9E/1GwEhLtA==",
+ "cpu": [
+ "arm64"
+ ],
"license": "MIT",
- "dependencies": {
- "@nodelib/fs.scandir": "2.1.5",
- "fastq": "^1.6.0"
- },
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
"engines": {
- "node": ">= 8"
+ "node": ">= 10"
}
},
- "node_modules/@oslojs/encoding": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/@oslojs/encoding/-/encoding-1.1.0.tgz",
- "integrity": "sha512-70wQhgYmndg4GCPxPPxPGevRKqTIJ2Nh4OkiMWmDAVYsTQ+Ta7Sq+rPevXyXGdzr30/qZBnyOalCszoMxlyldQ==",
- "license": "MIT"
- },
- "node_modules/@pkgjs/parseargs": {
- "version": "0.11.0",
- "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz",
- "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==",
+ "node_modules/@tailwindcss/oxide-darwin-x64": {
+ "version": "4.0.13",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.0.13.tgz",
+ "integrity": "sha512-lRTkxjTpMGXhLLM5GjZ0MtjPczMuhAo9j7PeSsaU6Imkm7W7RbrXfT8aP934kS7cBBV+HKN5U19Z0WWaORfb8Q==",
+ "cpu": [
+ "x64"
+ ],
"license": "MIT",
"optional": true,
+ "os": [
+ "darwin"
+ ],
"engines": {
- "node": ">=14"
+ "node": ">= 10"
}
},
- "node_modules/@rollup/pluginutils": {
- "version": "5.1.4",
- "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.1.4.tgz",
- "integrity": "sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ==",
+ "node_modules/@tailwindcss/oxide-freebsd-x64": {
+ "version": "4.0.13",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.0.13.tgz",
+ "integrity": "sha512-p/YLyKhs+xFibVeAPlpMGDVMKgjChgzs12VnDFaaqRSJoOz+uJgRSKiir2tn50e7Nm4YYw35q/DRBwpDBNo1MQ==",
+ "cpu": [
+ "x64"
+ ],
"license": "MIT",
- "dependencies": {
- "@types/estree": "^1.0.0",
- "estree-walker": "^2.0.2",
- "picomatch": "^4.0.2"
- },
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
"engines": {
- "node": ">=14.0.0"
- },
- "peerDependencies": {
- "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0"
- },
- "peerDependenciesMeta": {
- "rollup": {
- "optional": true
- }
+ "node": ">= 10"
}
},
- "node_modules/@rollup/pluginutils/node_modules/estree-walker": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz",
- "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
- "license": "MIT"
- },
- "node_modules/@rollup/rollup-android-arm-eabi": {
- "version": "4.29.1",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.29.1.tgz",
- "integrity": "sha512-ssKhA8RNltTZLpG6/QNkCSge+7mBQGUqJRisZ2MDQcEGaK93QESEgWK2iOpIDZ7k9zPVkG5AS3ksvD5ZWxmItw==",
+ "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": {
+ "version": "4.0.13",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.0.13.tgz",
+ "integrity": "sha512-Ua/5ydE/QOTX8jHuc7M9ICWnaLi6K2MV/r+Ws2OppsOjy8tdlPbqYainJJ6Kl7ofm524K+4Fk9CQITPzeIESPw==",
"cpu": [
"arm"
],
"license": "MIT",
"optional": true,
"os": [
- "android"
- ]
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
},
- "node_modules/@rollup/rollup-android-arm64": {
- "version": "4.29.1",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.29.1.tgz",
- "integrity": "sha512-CaRfrV0cd+NIIcVVN/jx+hVLN+VRqnuzLRmfmlzpOzB87ajixsN/+9L5xNmkaUUvEbI5BmIKS+XTwXsHEb65Ew==",
+ "node_modules/@tailwindcss/oxide-linux-arm64-gnu": {
+ "version": "4.0.13",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.0.13.tgz",
+ "integrity": "sha512-/W1+Q6tBAVgZWh/bhfOHo4n7Ryh6E7zYj4bJd9SRbkPyLtRioyK3bi6RLuDj57sa7Amk/DeomSV9iycS0xqIPA==",
"cpu": [
"arm64"
],
"license": "MIT",
"optional": true,
"os": [
- "android"
- ]
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
},
- "node_modules/@rollup/rollup-darwin-arm64": {
- "version": "4.29.1",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.29.1.tgz",
- "integrity": "sha512-2ORr7T31Y0Mnk6qNuwtyNmy14MunTAMx06VAPI6/Ju52W10zk1i7i5U3vlDRWjhOI5quBcrvhkCHyF76bI7kEw==",
+ "node_modules/@tailwindcss/oxide-linux-arm64-musl": {
+ "version": "4.0.13",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.0.13.tgz",
+ "integrity": "sha512-GQj6TWevNxwsYw20FdT2r2d1f7uiRsF07iFvNYxPIvIyPEV74eZ0zgFEsAH1daK1OxPy+LXdZ4grV17P5tVzhQ==",
"cpu": [
"arm64"
],
"license": "MIT",
"optional": true,
"os": [
- "darwin"
- ]
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
},
- "node_modules/@rollup/rollup-darwin-x64": {
- "version": "4.29.1",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.29.1.tgz",
- "integrity": "sha512-j/Ej1oanzPjmN0tirRd5K2/nncAhS9W6ICzgxV+9Y5ZsP0hiGhHJXZ2JQ53iSSjj8m6cRY6oB1GMzNn2EUt6Ng==",
+ "node_modules/@tailwindcss/oxide-linux-x64-gnu": {
+ "version": "4.0.13",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.0.13.tgz",
+ "integrity": "sha512-sQRH09faifF9w9WS6TKDWr1oLi4hoPx0EIWXZHQK/jcjarDpXGQ2DbF0KnALJCwWBxOIP/1nrmU01fZwwMzY3g==",
"cpu": [
"x64"
],
"license": "MIT",
"optional": true,
- "os": [
- "darwin"
- ]
- },
- "node_modules/@rollup/rollup-freebsd-arm64": {
- "version": "4.29.1",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.29.1.tgz",
- "integrity": "sha512-91C//G6Dm/cv724tpt7nTyP+JdN12iqeXGFM1SqnljCmi5yTXriH7B1r8AD9dAZByHpKAumqP1Qy2vVNIdLZqw==",
- "cpu": [
- "arm64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "freebsd"
- ]
- },
- "node_modules/@rollup/rollup-freebsd-x64": {
- "version": "4.29.1",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.29.1.tgz",
- "integrity": "sha512-hEioiEQ9Dec2nIRoeHUP6hr1PSkXzQaCUyqBDQ9I9ik4gCXQZjJMIVzoNLBRGet+hIUb3CISMh9KXuCcWVW/8w==",
- "cpu": [
- "x64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "freebsd"
- ]
- },
- "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
- "version": "4.29.1",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.29.1.tgz",
- "integrity": "sha512-Py5vFd5HWYN9zxBv3WMrLAXY3yYJ6Q/aVERoeUFwiDGiMOWsMs7FokXihSOaT/PMWUty/Pj60XDQndK3eAfE6A==",
- "cpu": [
- "arm"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ]
- },
- "node_modules/@rollup/rollup-linux-arm-musleabihf": {
- "version": "4.29.1",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.29.1.tgz",
- "integrity": "sha512-RiWpGgbayf7LUcuSNIbahr0ys2YnEERD4gYdISA06wa0i8RALrnzflh9Wxii7zQJEB2/Eh74dX4y/sHKLWp5uQ==",
- "cpu": [
- "arm"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ]
- },
- "node_modules/@rollup/rollup-linux-arm64-gnu": {
- "version": "4.29.1",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.29.1.tgz",
- "integrity": "sha512-Z80O+taYxTQITWMjm/YqNoe9d10OX6kDh8X5/rFCMuPqsKsSyDilvfg+vd3iXIqtfmp+cnfL1UrYirkaF8SBZA==",
- "cpu": [
- "arm64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ]
- },
- "node_modules/@rollup/rollup-linux-arm64-musl": {
- "version": "4.29.1",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.29.1.tgz",
- "integrity": "sha512-fOHRtF9gahwJk3QVp01a/GqS4hBEZCV1oKglVVq13kcK3NeVlS4BwIFzOHDbmKzt3i0OuHG4zfRP0YoG5OF/rA==",
- "cpu": [
- "arm64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ]
- },
- "node_modules/@rollup/rollup-linux-loongarch64-gnu": {
- "version": "4.29.1",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.29.1.tgz",
- "integrity": "sha512-5a7q3tnlbcg0OodyxcAdrrCxFi0DgXJSoOuidFUzHZ2GixZXQs6Tc3CHmlvqKAmOs5eRde+JJxeIf9DonkmYkw==",
- "cpu": [
- "loong64"
- ],
- "license": "MIT",
- "optional": true,
"os": [
"linux"
- ]
- },
- "node_modules/@rollup/rollup-linux-powerpc64le-gnu": {
- "version": "4.29.1",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.29.1.tgz",
- "integrity": "sha512-9b4Mg5Yfz6mRnlSPIdROcfw1BU22FQxmfjlp/CShWwO3LilKQuMISMTtAu/bxmmrE6A902W2cZJuzx8+gJ8e9w==",
- "cpu": [
- "ppc64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ]
- },
- "node_modules/@rollup/rollup-linux-riscv64-gnu": {
- "version": "4.29.1",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.29.1.tgz",
- "integrity": "sha512-G5pn0NChlbRM8OJWpJFMX4/i8OEU538uiSv0P6roZcbpe/WfhEO+AT8SHVKfp8qhDQzaz7Q+1/ixMy7hBRidnQ==",
- "cpu": [
- "riscv64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ]
- },
- "node_modules/@rollup/rollup-linux-s390x-gnu": {
- "version": "4.29.1",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.29.1.tgz",
- "integrity": "sha512-WM9lIkNdkhVwiArmLxFXpWndFGuOka4oJOZh8EP3Vb8q5lzdSCBuhjavJsw68Q9AKDGeOOIHYzYm4ZFvmWez5g==",
- "cpu": [
- "s390x"
],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ]
+ "engines": {
+ "node": ">= 10"
+ }
},
- "node_modules/@rollup/rollup-linux-x64-gnu": {
- "version": "4.29.1",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.29.1.tgz",
- "integrity": "sha512-87xYCwb0cPGZFoGiErT1eDcssByaLX4fc0z2nRM6eMtV9njAfEE6OW3UniAoDhX4Iq5xQVpE6qO9aJbCFumKYQ==",
+ "node_modules/@tailwindcss/oxide-linux-x64-musl": {
+ "version": "4.0.13",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.0.13.tgz",
+ "integrity": "sha512-Or1N8DIF3tP+LsloJp+UXLTIMMHMUcWXFhJLCsM4T7MzFzxkeReewRWXfk5mk137cdqVeUEH/R50xAhY1mOkTQ==",
"cpu": [
"x64"
],
@@ -1899,25 +1746,15 @@
"optional": true,
"os": [
"linux"
- ]
- },
- "node_modules/@rollup/rollup-linux-x64-musl": {
- "version": "4.29.1",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.29.1.tgz",
- "integrity": "sha512-xufkSNppNOdVRCEC4WKvlR1FBDyqCSCpQeMMgv9ZyXqqtKBfkw1yfGMTUTs9Qsl6WQbJnsGboWCp7pJGkeMhKA==",
- "cpu": [
- "x64"
],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ]
+ "engines": {
+ "node": ">= 10"
+ }
},
- "node_modules/@rollup/rollup-win32-arm64-msvc": {
- "version": "4.29.1",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.29.1.tgz",
- "integrity": "sha512-F2OiJ42m77lSkizZQLuC+jiZ2cgueWQL5YC9tjo3AgaEw+KJmVxHGSyQfDUoYR9cci0lAywv2Clmckzulcq6ig==",
+ "node_modules/@tailwindcss/oxide-win32-arm64-msvc": {
+ "version": "4.0.13",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.0.13.tgz",
+ "integrity": "sha512-u2mQyqCFrr9vVTP6sfDRfGE6bhOX3/7rInehzxNhHX1HYRIx09H3sDdXzTxnZWKOjIg3qjFTCrYFUZckva5PIg==",
"cpu": [
"arm64"
],
@@ -1925,25 +1762,15 @@
"optional": true,
"os": [
"win32"
- ]
- },
- "node_modules/@rollup/rollup-win32-ia32-msvc": {
- "version": "4.29.1",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.29.1.tgz",
- "integrity": "sha512-rYRe5S0FcjlOBZQHgbTKNrqxCBUmgDJem/VQTCcTnA2KCabYSWQDrytOzX7avb79cAAweNmMUb/Zw18RNd4mng==",
- "cpu": [
- "ia32"
],
- "license": "MIT",
- "optional": true,
- "os": [
- "win32"
- ]
+ "engines": {
+ "node": ">= 10"
+ }
},
- "node_modules/@rollup/rollup-win32-x64-msvc": {
- "version": "4.29.1",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.29.1.tgz",
- "integrity": "sha512-+10CMg9vt1MoHj6x1pxyjPSMjHTIlqs8/tBztXvPAx24SKs9jwVnKqHJumlH/IzhaPUaj3T6T6wfZr8okdXaIg==",
+ "node_modules/@tailwindcss/oxide-win32-x64-msvc": {
+ "version": "4.0.13",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.0.13.tgz",
+ "integrity": "sha512-sOEc4iCanp1Yqyeu9suQcEzfaUcHnqjBUgDg0ZXpjUMUwdSi37S1lu1RGoV1BYInvvGu3y3HHTmvsSfDhx2L8w==",
"cpu": [
"x64"
],
@@ -1951,81 +1778,15 @@
"optional": true,
"os": [
"win32"
- ]
- },
- "node_modules/@shikijs/core": {
- "version": "1.26.1",
- "resolved": "https://registry.npmjs.org/@shikijs/core/-/core-1.26.1.tgz",
- "integrity": "sha512-yeo7sG+WZQblKPclUOKRPwkv1PyoHYkJ4gP9DzhFJbTdueKR7wYTI1vfF/bFi1NTgc545yG/DzvVhZgueVOXMA==",
- "license": "MIT",
- "dependencies": {
- "@shikijs/engine-javascript": "1.26.1",
- "@shikijs/engine-oniguruma": "1.26.1",
- "@shikijs/types": "1.26.1",
- "@shikijs/vscode-textmate": "^10.0.1",
- "@types/hast": "^3.0.4",
- "hast-util-to-html": "^9.0.4"
- }
- },
- "node_modules/@shikijs/engine-javascript": {
- "version": "1.26.1",
- "resolved": "https://registry.npmjs.org/@shikijs/engine-javascript/-/engine-javascript-1.26.1.tgz",
- "integrity": "sha512-CRhA0b8CaSLxS0E9A4Bzcb3LKBNpykfo9F85ozlNyArxjo2NkijtiwrJZ6eHa+NT5I9Kox2IXVdjUsP4dilsmw==",
- "license": "MIT",
- "dependencies": {
- "@shikijs/types": "1.26.1",
- "@shikijs/vscode-textmate": "^10.0.1",
- "oniguruma-to-es": "0.10.0"
- }
- },
- "node_modules/@shikijs/engine-oniguruma": {
- "version": "1.26.1",
- "resolved": "https://registry.npmjs.org/@shikijs/engine-oniguruma/-/engine-oniguruma-1.26.1.tgz",
- "integrity": "sha512-F5XuxN1HljLuvfXv7d+mlTkV7XukC1cawdtOo+7pKgPD83CAB1Sf8uHqP3PK0u7njFH0ZhoXE1r+0JzEgAQ+kg==",
- "license": "MIT",
- "dependencies": {
- "@shikijs/types": "1.26.1",
- "@shikijs/vscode-textmate": "^10.0.1"
- }
- },
- "node_modules/@shikijs/langs": {
- "version": "1.26.1",
- "resolved": "https://registry.npmjs.org/@shikijs/langs/-/langs-1.26.1.tgz",
- "integrity": "sha512-oz/TQiIqZejEIZbGtn68hbJijAOTtYH4TMMSWkWYozwqdpKR3EXgILneQy26WItmJjp3xVspHdiUxUCws4gtuw==",
- "license": "MIT",
- "dependencies": {
- "@shikijs/types": "1.26.1"
- }
- },
- "node_modules/@shikijs/themes": {
- "version": "1.26.1",
- "resolved": "https://registry.npmjs.org/@shikijs/themes/-/themes-1.26.1.tgz",
- "integrity": "sha512-JDxVn+z+wgLCiUhBGx2OQrLCkKZQGzNH3nAxFir4PjUcYiyD8Jdms9izyxIogYmSwmoPTatFTdzyrRKbKlSfPA==",
- "license": "MIT",
- "dependencies": {
- "@shikijs/types": "1.26.1"
- }
- },
- "node_modules/@shikijs/types": {
- "version": "1.26.1",
- "resolved": "https://registry.npmjs.org/@shikijs/types/-/types-1.26.1.tgz",
- "integrity": "sha512-d4B00TKKAMaHuFYgRf3L0gwtvqpW4hVdVwKcZYbBfAAQXspgkbWqnFfuFl3MDH6gLbsubOcr+prcnsqah3ny7Q==",
- "license": "MIT",
- "dependencies": {
- "@shikijs/vscode-textmate": "^10.0.1",
- "@types/hast": "^3.0.4"
+ ],
+ "engines": {
+ "node": ">= 10"
}
},
- "node_modules/@shikijs/vscode-textmate": {
- "version": "10.0.1",
- "resolved": "https://registry.npmjs.org/@shikijs/vscode-textmate/-/vscode-textmate-10.0.1.tgz",
- "integrity": "sha512-fTIQwLF+Qhuws31iw7Ncl1R3HUDtGwIipiJ9iU+UsDUwMhegFcQKQHd51nZjb7CArq0MvON8rbgCGQYWHUKAdg==",
- "license": "MIT"
- },
"node_modules/@tailwindcss/typography": {
- "version": "0.5.15",
- "resolved": "https://registry.npmjs.org/@tailwindcss/typography/-/typography-0.5.15.tgz",
- "integrity": "sha512-AqhlCXl+8grUz8uqExv5OTtgpjuVIwFTSXTrh8y9/pw6q2ek7fJ+Y8ZEVw7EB2DCcuCOtEjf9w3+J3rzts01uA==",
+ "version": "0.5.16",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/typography/-/typography-0.5.16.tgz",
+ "integrity": "sha512-0wDLwCVF5V3x3b1SGXPCDcdsbDHMBe+lkFzBRaHeLvNi+nrrnZ1lA18u+OTWO8iSWU2GxUOCvlXtDuqftc1oiA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2035,21 +1796,22 @@
"postcss-selector-parser": "6.0.10"
},
"peerDependencies": {
- "tailwindcss": ">=3.0.0 || insiders || >=4.0.0-alpha.20"
+ "tailwindcss": ">=3.0.0 || insiders || >=4.0.0-alpha.20 || >=4.0.0-beta.1"
}
},
- "node_modules/@tailwindcss/typography/node_modules/postcss-selector-parser": {
- "version": "6.0.10",
- "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz",
- "integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==",
- "dev": true,
+ "node_modules/@tailwindcss/vite": {
+ "version": "4.0.13",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/vite/-/vite-4.0.13.tgz",
+ "integrity": "sha512-0XTd/NoVUAktIDaA4MdXhve0QWYh7WlZg20EHCuBFR80F8FhbVkRX+AY5cjbUP/IO2itHzt0iHc0iSE5kBUMhQ==",
"license": "MIT",
"dependencies": {
- "cssesc": "^3.0.0",
- "util-deprecate": "^1.0.2"
+ "@tailwindcss/node": "4.0.13",
+ "@tailwindcss/oxide": "4.0.13",
+ "lightningcss": "1.29.2",
+ "tailwindcss": "4.0.13"
},
- "engines": {
- "node": ">=4"
+ "peerDependencies": {
+ "vite": "^5.2.0 || ^6"
}
},
"node_modules/@types/acorn": {
@@ -2061,12 +1823,6 @@
"@types/estree": "*"
}
},
- "node_modules/@types/cookie": {
- "version": "0.6.0",
- "resolved": "https://registry.npmjs.org/@types/cookie/-/cookie-0.6.0.tgz",
- "integrity": "sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==",
- "license": "MIT"
- },
"node_modules/@types/debug": {
"version": "4.1.12",
"resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz",
@@ -2091,6 +1847,15 @@
"@types/estree": "*"
}
},
+ "node_modules/@types/fontkit": {
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/@types/fontkit/-/fontkit-2.0.8.tgz",
+ "integrity": "sha512-wN+8bYxIpJf+5oZdrdtaX04qUuWHcKxcDEgRS9Qm9ZClSHjzEn13SxUC+5eRM+4yXIeTYk8mTzLAWGF64847ew==",
+ "license": "MIT",
+ "dependencies": {
+ "@types/node": "*"
+ }
+ },
"node_modules/@types/hast": {
"version": "3.0.4",
"resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz",
@@ -2116,9 +1881,9 @@
"license": "MIT"
},
"node_modules/@types/ms": {
- "version": "0.7.34",
- "resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.34.tgz",
- "integrity": "sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==",
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz",
+ "integrity": "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==",
"license": "MIT"
},
"node_modules/@types/nlcst": {
@@ -2131,9 +1896,9 @@
}
},
"node_modules/@types/node": {
- "version": "22.10.5",
- "resolved": "https://registry.npmjs.org/@types/node/-/node-22.10.5.tgz",
- "integrity": "sha512-F8Q+SeGimwOo86fiovQh8qiXfFEh2/ocYv7tU5pJ3EXMSSxk1Joj5wefpFK2fHTf/N6HKGSxIDBT9f3gCxXPkQ==",
+ "version": "22.13.10",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-22.13.10.tgz",
+ "integrity": "sha512-I6LPUvlRH+O6VRUqYOcMudhaIdUVWfsjnZavnsraHvpBwaEyMN29ry+0UVJhImYL16xsscu0aske3yA+uPOWfw==",
"license": "MIT",
"dependencies": {
"undici-types": "~6.20.0"
@@ -2155,25 +1920,25 @@
"license": "MIT"
},
"node_modules/@ungap/structured-clone": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.1.tgz",
- "integrity": "sha512-fEzPV3hSkSMltkw152tJKNARhOupqbH96MZWyRjNaYZOMIzbrTeQDG+MTc6Mr2pgzFQzFxAfmhGDNP5QK++2ZA==",
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.0.tgz",
+ "integrity": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==",
"license": "ISC"
},
"node_modules/@vercel/nft": {
- "version": "0.27.10",
- "resolved": "https://registry.npmjs.org/@vercel/nft/-/nft-0.27.10.tgz",
- "integrity": "sha512-zbaF9Wp/NsZtKLE4uVmL3FyfFwlpDyuymQM1kPbeT0mVOHKDQQNjnnfslB3REg3oZprmNFJuh3pkHBk2qAaizg==",
+ "version": "0.29.2",
+ "resolved": "https://registry.npmjs.org/@vercel/nft/-/nft-0.29.2.tgz",
+ "integrity": "sha512-A/Si4mrTkQqJ6EXJKv5EYCDQ3NL6nJXxG8VGXePsaiQigsomHYQC9xSpX8qGk7AEZk4b1ssbYIqJ0ISQQ7bfcA==",
"license": "MIT",
"dependencies": {
- "@mapbox/node-pre-gyp": "^2.0.0-rc.0",
+ "@mapbox/node-pre-gyp": "^2.0.0",
"@rollup/pluginutils": "^5.1.3",
"acorn": "^8.6.0",
"acorn-import-attributes": "^1.9.5",
"async-sema": "^3.1.1",
"bindings": "^1.4.0",
"estree-walker": "2.0.2",
- "glob": "^7.1.3",
+ "glob": "^10.4.5",
"graceful-fs": "^4.2.9",
"node-gyp-build": "^4.2.2",
"picomatch": "^4.0.2",
@@ -2183,17 +1948,7 @@
"nft": "out/cli.js"
},
"engines": {
- "node": ">=16"
- }
- },
- "node_modules/@vercel/nft/node_modules/brace-expansion": {
- "version": "1.1.11",
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
- "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
- "license": "MIT",
- "dependencies": {
- "balanced-match": "^1.0.0",
- "concat-map": "0.0.1"
+ "node": ">=18"
}
},
"node_modules/@vercel/nft/node_modules/estree-walker": {
@@ -2202,52 +1957,19 @@
"integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
"license": "MIT"
},
- "node_modules/@vercel/nft/node_modules/glob": {
- "version": "7.2.3",
- "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
- "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
- "deprecated": "Glob versions prior to v9 are no longer supported",
- "license": "ISC",
- "dependencies": {
- "fs.realpath": "^1.0.0",
- "inflight": "^1.0.4",
- "inherits": "2",
- "minimatch": "^3.1.1",
- "once": "^1.3.0",
- "path-is-absolute": "^1.0.0"
- },
- "engines": {
- "node": "*"
- },
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
- }
- },
- "node_modules/@vercel/nft/node_modules/minimatch": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
- "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
- "license": "ISC",
- "dependencies": {
- "brace-expansion": "^1.1.7"
- },
- "engines": {
- "node": "*"
- }
- },
"node_modules/abbrev": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-2.0.0.tgz",
- "integrity": "sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==",
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-3.0.0.tgz",
+ "integrity": "sha512-+/kfrslGQ7TNV2ecmQwMJj/B65g5KVq1/L3SGVZ3tCYGqlzFuFCGBZJtMP99wH3NpEUyAjn0zPdPUg0D+DwrOA==",
"license": "ISC",
"engines": {
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
+ "node": "^18.17.0 || >=20.5.0"
}
},
"node_modules/acorn": {
- "version": "8.14.0",
- "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz",
- "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==",
+ "version": "8.15.0",
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz",
+ "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==",
"license": "MIT",
"bin": {
"acorn": "bin/acorn"
@@ -2357,12 +2079,6 @@
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
- "node_modules/any-promise": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz",
- "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==",
- "license": "MIT"
- },
"node_modules/anymatch": {
"version": "3.1.3",
"resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
@@ -2397,8 +2113,7 @@
"node_modules/argparse": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
- "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
- "license": "Python-2.0"
+ "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="
},
"node_modules/aria-query": {
"version": "5.3.2",
@@ -2429,81 +2144,135 @@
}
},
"node_modules/astro": {
- "version": "5.1.2",
- "resolved": "https://registry.npmjs.org/astro/-/astro-5.1.2.tgz",
- "integrity": "sha512-+U5lXPEJZ6cQx0botGbPhzN6XGWRgDtXgy/RUkpTmUj18LW6pbzYo0O0k3hFWOazlI039bZ+4P2e/oSNlKzm0Q==",
+ "version": "5.13.7",
+ "resolved": "https://registry.npmjs.org/astro/-/astro-5.13.7.tgz",
+ "integrity": "sha512-Of2tST7ErbE4y1dVb4aWDXaQSIRBAfraJ4jDqaA3PzPRJOn6Ina36+tQ+8BezjYqiWwRRJdOEE07PRAJXnsddw==",
"license": "MIT",
"dependencies": {
- "@astrojs/compiler": "^2.10.3",
- "@astrojs/internal-helpers": "0.4.2",
- "@astrojs/markdown-remark": "6.0.1",
- "@astrojs/telemetry": "3.2.0",
+ "@astrojs/compiler": "^2.12.2",
+ "@astrojs/internal-helpers": "0.7.2",
+ "@astrojs/markdown-remark": "6.3.6",
+ "@astrojs/telemetry": "3.3.0",
+ "@capsizecss/unpack": "^2.4.0",
"@oslojs/encoding": "^1.1.0",
- "@rollup/pluginutils": "^5.1.3",
- "@types/cookie": "^0.6.0",
- "acorn": "^8.14.0",
+ "@rollup/pluginutils": "^5.2.0",
+ "acorn": "^8.15.0",
"aria-query": "^5.3.2",
"axobject-query": "^4.1.0",
"boxen": "8.0.1",
- "ci-info": "^4.1.0",
+ "ci-info": "^4.3.0",
"clsx": "^2.1.1",
"common-ancestor-path": "^1.0.1",
- "cookie": "^0.7.2",
+ "cookie": "^1.0.2",
"cssesc": "^3.0.0",
- "debug": "^4.3.7",
+ "debug": "^4.4.1",
"deterministic-object-hash": "^2.0.2",
"devalue": "^5.1.1",
"diff": "^5.2.0",
"dlv": "^1.1.3",
"dset": "^3.1.4",
- "es-module-lexer": "^1.5.4",
- "esbuild": "^0.21.5",
+ "es-module-lexer": "^1.7.0",
+ "esbuild": "^0.25.0",
"estree-walker": "^3.0.3",
- "fast-glob": "^3.3.2",
"flattie": "^1.1.1",
+ "fontace": "~0.3.0",
"github-slugger": "^2.0.0",
- "html-escaper": "^3.0.3",
- "http-cache-semantics": "^4.1.1",
+ "html-escaper": "3.0.3",
+ "http-cache-semantics": "^4.2.0",
+ "import-meta-resolve": "^4.2.0",
"js-yaml": "^4.1.0",
"kleur": "^4.1.5",
- "magic-string": "^0.30.14",
+ "magic-string": "^0.30.18",
"magicast": "^0.3.5",
- "micromatch": "^4.0.8",
- "mrmime": "^2.0.0",
+ "mrmime": "^2.0.1",
"neotraverse": "^0.6.18",
- "p-limit": "^6.1.0",
- "p-queue": "^8.0.1",
- "preferred-pm": "^4.0.0",
+ "p-limit": "^6.2.0",
+ "p-queue": "^8.1.0",
+ "package-manager-detector": "^1.3.0",
+ "picomatch": "^4.0.3",
"prompts": "^2.4.2",
"rehype": "^13.0.2",
- "semver": "^7.6.3",
- "shiki": "^1.23.1",
- "tinyexec": "^0.3.1",
- "tsconfck": "^3.1.4",
- "ultrahtml": "^1.5.3",
+ "semver": "^7.7.2",
+ "shiki": "^3.12.0",
+ "smol-toml": "^1.4.2",
+ "tinyexec": "^0.3.2",
+ "tinyglobby": "^0.2.14",
+ "tsconfck": "^3.1.6",
+ "ultrahtml": "^1.6.0",
+ "unifont": "~0.5.2",
"unist-util-visit": "^5.0.0",
- "unstorage": "^1.14.0",
+ "unstorage": "^1.17.0",
"vfile": "^6.0.3",
- "vite": "^6.0.5",
- "vitefu": "^1.0.4",
- "which-pm": "^3.0.0",
+ "vite": "^6.3.6",
+ "vitefu": "^1.1.1",
"xxhash-wasm": "^1.1.0",
"yargs-parser": "^21.1.1",
- "yocto-spinner": "^0.1.0",
- "zod": "^3.23.8",
- "zod-to-json-schema": "^3.23.5",
+ "yocto-spinner": "^0.2.3",
+ "zod": "^3.25.76",
+ "zod-to-json-schema": "^3.24.6",
"zod-to-ts": "^1.2.0"
},
"bin": {
"astro": "astro.js"
},
"engines": {
- "node": "^18.17.1 || ^20.3.0 || >=22.0.0",
+ "node": "18.20.8 || ^20.3.0 || >=22.0.0",
"npm": ">=9.6.5",
"pnpm": ">=7.1.0"
},
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/astrodotbuild"
+ },
"optionalDependencies": {
- "sharp": "^0.33.3"
+ "sharp": "^0.34.0"
+ }
+ },
+ "node_modules/astro/node_modules/@astrojs/internal-helpers": {
+ "version": "0.7.2",
+ "resolved": "https://registry.npmjs.org/@astrojs/internal-helpers/-/internal-helpers-0.7.2.tgz",
+ "integrity": "sha512-KCkCqR3Goym79soqEtbtLzJfqhTWMyVaizUi35FLzgGSzBotSw8DB1qwsu7U96ihOJgYhDk2nVPz+3LnXPeX6g==",
+ "license": "MIT"
+ },
+ "node_modules/astro/node_modules/@astrojs/markdown-remark": {
+ "version": "6.3.6",
+ "resolved": "https://registry.npmjs.org/@astrojs/markdown-remark/-/markdown-remark-6.3.6.tgz",
+ "integrity": "sha512-bwylYktCTsLMVoCOEHbn2GSUA3c5KT/qilekBKA3CBng0bo1TYjNZPr761vxumRk9kJGqTOtU+fgCAp5Vwokug==",
+ "license": "MIT",
+ "dependencies": {
+ "@astrojs/internal-helpers": "0.7.2",
+ "@astrojs/prism": "3.3.0",
+ "github-slugger": "^2.0.0",
+ "hast-util-from-html": "^2.0.3",
+ "hast-util-to-text": "^4.0.2",
+ "import-meta-resolve": "^4.1.0",
+ "js-yaml": "^4.1.0",
+ "mdast-util-definitions": "^6.0.0",
+ "rehype-raw": "^7.0.0",
+ "rehype-stringify": "^10.0.1",
+ "remark-gfm": "^4.0.1",
+ "remark-parse": "^11.0.0",
+ "remark-rehype": "^11.1.2",
+ "remark-smartypants": "^3.0.2",
+ "shiki": "^3.2.1",
+ "smol-toml": "^1.3.4",
+ "unified": "^11.0.5",
+ "unist-util-remove-position": "^5.0.0",
+ "unist-util-visit": "^5.0.0",
+ "unist-util-visit-parents": "^6.0.1",
+ "vfile": "^6.0.3"
+ }
+ },
+ "node_modules/astro/node_modules/@astrojs/prism": {
+ "version": "3.3.0",
+ "resolved": "https://registry.npmjs.org/@astrojs/prism/-/prism-3.3.0.tgz",
+ "integrity": "sha512-q8VwfU/fDZNoDOf+r7jUnMC2//H2l0TuQ6FkGJL8vD8nw/q5KiL3DS1KKBI3QhI9UQhpJ5dc7AtqfbXWuOgLCQ==",
+ "license": "MIT",
+ "dependencies": {
+ "prismjs": "^1.30.0"
+ },
+ "engines": {
+ "node": "18.20.8 || ^20.3.0 || >=22.0.0"
}
},
"node_modules/async-sema": {
@@ -2512,43 +2281,6 @@
"integrity": "sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==",
"license": "MIT"
},
- "node_modules/autoprefixer": {
- "version": "10.4.20",
- "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.20.tgz",
- "integrity": "sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==",
- "funding": [
- {
- "type": "opencollective",
- "url": "https://opencollective.com/postcss/"
- },
- {
- "type": "tidelift",
- "url": "https://tidelift.com/funding/github/npm/autoprefixer"
- },
- {
- "type": "github",
- "url": "https://github.com/sponsors/ai"
- }
- ],
- "license": "MIT",
- "dependencies": {
- "browserslist": "^4.23.3",
- "caniuse-lite": "^1.0.30001646",
- "fraction.js": "^4.3.7",
- "normalize-range": "^0.1.2",
- "picocolors": "^1.0.1",
- "postcss-value-parser": "^4.2.0"
- },
- "bin": {
- "autoprefixer": "bin/autoprefixer"
- },
- "engines": {
- "node": "^10 || ^12 || >=14"
- },
- "peerDependencies": {
- "postcss": "^8.1.0"
- }
- },
"node_modules/axobject-query": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-4.1.0.tgz",
@@ -2580,17 +2312,25 @@
"integrity": "sha512-kwDPIFCGx0NZHog36dj+tHiwP4QMzsZ3AgMViUBKI0+V5n4U0ufTCUMhnQ04diaRI8EX/QcPfql7zlhZ7j4zgg==",
"license": "MIT"
},
- "node_modules/binary-extensions": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz",
- "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==",
- "license": "MIT",
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
+ "node_modules/base64-js": {
+ "version": "1.5.1",
+ "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
+ "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "license": "MIT"
},
"node_modules/bindings": {
"version": "1.5.0",
@@ -2601,6 +2341,26 @@
"file-uri-to-path": "1.0.0"
}
},
+ "node_modules/blob-to-buffer": {
+ "version": "1.2.9",
+ "resolved": "https://registry.npmjs.org/blob-to-buffer/-/blob-to-buffer-1.2.9.tgz",
+ "integrity": "sha512-BF033y5fN6OCofD3vgHmNtwZWRcq9NLyyxyILx9hfMy1sXYy4ojFl765hJ2lP0YaN2fuxPaLO2Vzzoxy0FLFFA==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "license": "MIT"
+ },
"node_modules/boxen": {
"version": "8.0.1",
"resolved": "https://registry.npmjs.org/boxen/-/boxen-8.0.1.tgz",
@@ -2624,56 +2384,21 @@
}
},
"node_modules/brace-expansion": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
- "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz",
+ "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==",
"license": "MIT",
"dependencies": {
"balanced-match": "^1.0.0"
}
},
- "node_modules/braces": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
- "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
- "license": "MIT",
- "dependencies": {
- "fill-range": "^7.1.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/browserslist": {
- "version": "4.24.3",
- "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.3.tgz",
- "integrity": "sha512-1CPmv8iobE2fyRMV97dAcMVegvvWKxmq94hkLiAkUGwKVTyDLw33K+ZxiFrREKmmps4rIw6grcCFCnTMSZ/YiA==",
- "funding": [
- {
- "type": "opencollective",
- "url": "https://opencollective.com/browserslist"
- },
- {
- "type": "tidelift",
- "url": "https://tidelift.com/funding/github/npm/browserslist"
- },
- {
- "type": "github",
- "url": "https://github.com/sponsors/ai"
- }
- ],
+ "node_modules/brotli": {
+ "version": "1.3.3",
+ "resolved": "https://registry.npmjs.org/brotli/-/brotli-1.3.3.tgz",
+ "integrity": "sha512-oTKjJdShmDuGW94SyyaoQvAjf30dZaHnjJ8uAF+u2/vGJkJbJPJAT1gDiOJP5v1Zb6f9KEyW/1HpuaWIXtGHPg==",
"license": "MIT",
"dependencies": {
- "caniuse-lite": "^1.0.30001688",
- "electron-to-chromium": "^1.5.73",
- "node-releases": "^2.0.19",
- "update-browserslist-db": "^1.1.1"
- },
- "bin": {
- "browserslist": "cli.js"
- },
- "engines": {
- "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
+ "base64-js": "^1.1.2"
}
},
"node_modules/camelcase": {
@@ -2688,35 +2413,6 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/camelcase-css": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz",
- "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==",
- "license": "MIT",
- "engines": {
- "node": ">= 6"
- }
- },
- "node_modules/caniuse-lite": {
- "version": "1.0.30001690",
- "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001690.tgz",
- "integrity": "sha512-5ExiE3qQN6oF8Clf8ifIDcMRCRE/dMGcETG/XGMD8/XiXm6HXQgQTh1yZYLXXpSOsEUlJm1Xr7kGULZTuGtP/w==",
- "funding": [
- {
- "type": "opencollective",
- "url": "https://opencollective.com/browserslist"
- },
- {
- "type": "tidelift",
- "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
- },
- {
- "type": "github",
- "url": "https://github.com/sponsors/ai"
- }
- ],
- "license": "CC-BY-4.0"
- },
"node_modules/ccount": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz",
@@ -2780,27 +2476,18 @@
}
},
"node_modules/chokidar": {
- "version": "3.6.0",
- "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz",
- "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz",
+ "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==",
"license": "MIT",
"dependencies": {
- "anymatch": "~3.1.2",
- "braces": "~3.0.2",
- "glob-parent": "~5.1.2",
- "is-binary-path": "~2.1.0",
- "is-glob": "~4.0.1",
- "normalize-path": "~3.0.0",
- "readdirp": "~3.6.0"
+ "readdirp": "^4.0.1"
},
"engines": {
- "node": ">= 8.10.0"
+ "node": ">= 14.16.0"
},
"funding": {
"url": "https://paulmillr.com/funding/"
- },
- "optionalDependencies": {
- "fsevents": "~2.3.2"
}
},
"node_modules/chownr": {
@@ -2813,9 +2500,9 @@
}
},
"node_modules/ci-info": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-4.1.0.tgz",
- "integrity": "sha512-HutrvTNsF48wnxkzERIXOe5/mlcfFcbfCmwcg6CJnizbSue78AbDt+1cgl26zwn61WFxhcPykPfZrbqjGmBb4A==",
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-4.3.0.tgz",
+ "integrity": "sha512-l+2bNRMiQgcfILUi33labAZYIWlH1kWDp+ecNo5iisRKrbm0xcRyCww71/YU0Fkw0mAFpz9bJayXPjey6vkmaQ==",
"funding": [
{
"type": "github",
@@ -2839,6 +2526,15 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
+ "node_modules/clone": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz",
+ "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.8"
+ }
+ },
"node_modules/clsx": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz",
@@ -2911,43 +2607,27 @@
"url": "https://github.com/sponsors/wooorm"
}
},
- "node_modules/commander": {
- "version": "4.1.1",
- "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz",
- "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==",
- "license": "MIT",
- "engines": {
- "node": ">= 6"
- }
- },
"node_modules/common-ancestor-path": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/common-ancestor-path/-/common-ancestor-path-1.0.1.tgz",
"integrity": "sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==",
"license": "ISC"
},
- "node_modules/concat-map": {
- "version": "0.0.1",
- "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
- "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
- "license": "MIT"
- },
"node_modules/consola": {
- "version": "3.3.3",
- "resolved": "https://registry.npmjs.org/consola/-/consola-3.3.3.tgz",
- "integrity": "sha512-Qil5KwghMzlqd51UXM0b6fyaGHtOC22scxrwrz4A2882LyUMwQjnvaedN1HAeXzphspQ6CpHkzMAWxBTUruDLg==",
+ "version": "3.4.0",
+ "resolved": "https://registry.npmjs.org/consola/-/consola-3.4.0.tgz",
+ "integrity": "sha512-EiPU8G6dQG0GFHNR8ljnZFki/8a+cQwEQ+7wpxdChl02Q8HXlwEZWD5lqAF8vC2sEC3Tehr8hy7vErz88LHyUA==",
"license": "MIT",
"engines": {
"node": "^14.18.0 || >=16.10.0"
}
},
"node_modules/cookie": {
- "version": "0.7.2",
- "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.2.tgz",
- "integrity": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==",
- "license": "MIT",
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/cookie/-/cookie-1.0.2.tgz",
+ "integrity": "sha512-9Kr/j4O16ISv8zBBhJoi4bXOYNTkFLOqSL3UDB0njXxCXNezjeyVrJyGOWtgfs/q2km1gwBcfH8q1yEGoMYunA==",
"engines": {
- "node": ">= 0.6"
+ "node": ">=18"
}
},
"node_modules/cookie-es": {
@@ -2956,6 +2636,15 @@
"integrity": "sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg==",
"license": "MIT"
},
+ "node_modules/cross-fetch": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.2.0.tgz",
+ "integrity": "sha512-Q+xVJLoGOeIMXZmbUK4HYk+69cQH6LudR0Vu/pRm2YlU/hDV9CiS0gKUMaWY5f2NeUH9C1nV3bsTlCo0FsTV1Q==",
+ "license": "MIT",
+ "dependencies": {
+ "node-fetch": "^2.7.0"
+ }
+ },
"node_modules/cross-spawn": {
"version": "7.0.6",
"resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
@@ -2971,23 +2660,25 @@
}
},
"node_modules/crossws": {
- "version": "0.3.1",
- "resolved": "https://registry.npmjs.org/crossws/-/crossws-0.3.1.tgz",
- "integrity": "sha512-HsZgeVYaG+b5zA+9PbIPGq4+J/CJynJuearykPsXx4V/eMhyQ5EDVg3Ak2FBZtVXCiOLu/U7IiwDHTr9MA+IKw==",
+ "version": "0.3.5",
+ "resolved": "https://registry.npmjs.org/crossws/-/crossws-0.3.5.tgz",
+ "integrity": "sha512-ojKiDvcmByhwa8YYqbQI/hg7MEU0NC03+pSdEq4ZUnZR9xXpwk7E43SMNGkn+JxJGPFtNvQ48+vV2p+P1ml5PA==",
"license": "MIT",
"dependencies": {
"uncrypto": "^0.1.3"
}
},
- "node_modules/css-selector-tokenizer": {
- "version": "0.8.0",
- "resolved": "https://registry.npmjs.org/css-selector-tokenizer/-/css-selector-tokenizer-0.8.0.tgz",
- "integrity": "sha512-Jd6Ig3/pe62/qe5SBPTN8h8LeUg/pT4lLgtavPf7updwwHpvFzxvOQBHYj2LZDMjUnBzgvIUSjRcf6oT5HzHFg==",
- "dev": true,
+ "node_modules/css-tree": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-3.1.0.tgz",
+ "integrity": "sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w==",
"license": "MIT",
"dependencies": {
- "cssesc": "^3.0.0",
- "fastparse": "^1.1.2"
+ "mdn-data": "2.12.2",
+ "source-map-js": "^1.0.1"
+ },
+ "engines": {
+ "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0"
}
},
"node_modules/cssesc": {
@@ -3002,40 +2693,20 @@
"node": ">=4"
}
},
- "node_modules/culori": {
- "version": "3.3.0",
- "resolved": "https://registry.npmjs.org/culori/-/culori-3.3.0.tgz",
- "integrity": "sha512-pHJg+jbuFsCjz9iclQBqyL3B2HLCBF71BwVNujUYEvCeQMvV97R59MNK3R2+jgJ3a1fcZgI9B3vYgz8lzr/BFQ==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
- }
- },
"node_modules/daisyui": {
- "version": "4.12.23",
- "resolved": "https://registry.npmjs.org/daisyui/-/daisyui-4.12.23.tgz",
- "integrity": "sha512-EM38duvxutJ5PD65lO/AFMpcw+9qEy6XAZrTpzp7WyaPeO/l+F/Qiq0ECHHmFNcFXh5aVoALY4MGrrxtCiaQCQ==",
+ "version": "5.0.2",
+ "resolved": "https://registry.npmjs.org/daisyui/-/daisyui-5.0.2.tgz",
+ "integrity": "sha512-AfOlwcE+Ukwuh2NSrMDE8VXOl9UWidj2Q5f64DEYqtZVW0Z9pELBA50iGEKg2FpBUvztFY5DFv7+eZgRts70BA==",
"dev": true,
"license": "MIT",
- "dependencies": {
- "css-selector-tokenizer": "^0.8",
- "culori": "^3",
- "picocolors": "^1",
- "postcss-js": "^4"
- },
- "engines": {
- "node": ">=16.9.0"
- },
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/daisyui"
+ "url": "https://github.com/saadeghi/daisyui?sponsor=1"
}
},
"node_modules/debug": {
- "version": "4.4.0",
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz",
- "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==",
+ "version": "4.4.1",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz",
+ "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==",
"license": "MIT",
"dependencies": {
"ms": "^2.1.3"
@@ -3050,9 +2721,9 @@
}
},
"node_modules/decode-named-character-reference": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.0.2.tgz",
- "integrity": "sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==",
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.1.0.tgz",
+ "integrity": "sha512-Wy+JTSbFThEOXQIR2L6mxJvEs+veIzpmqD7ynWxMXGpnk3smkHQOp6forLdHsKpAMW9iJpaBBIxz285t1n1C3w==",
"license": "MIT",
"dependencies": {
"character-entities": "^2.0.0"
@@ -3078,15 +2749,15 @@
}
},
"node_modules/destr": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/destr/-/destr-2.0.3.tgz",
- "integrity": "sha512-2N3BOUU4gYMpTP24s5rF5iP7BDr7uNTCs4ozw3kf/eKfvWSIu93GEBi5m427YoyJoeOzQ5smuu4nNAPGb8idSQ==",
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/destr/-/destr-2.0.5.tgz",
+ "integrity": "sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA==",
"license": "MIT"
},
"node_modules/detect-libc": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz",
- "integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==",
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.4.tgz",
+ "integrity": "sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==",
"license": "Apache-2.0",
"engines": {
"node": ">=8"
@@ -3105,9 +2776,9 @@
}
},
"node_modules/devalue": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/devalue/-/devalue-5.1.1.tgz",
- "integrity": "sha512-maua5KUiapvEwiEAe+XnlZ3Rh0GD+qI1J/nb9vrJc3muPXvcF/8gXYTWF76+5DAqHyDUtOIImEuo0YKE9mshVw==",
+ "version": "5.3.2",
+ "resolved": "https://registry.npmjs.org/devalue/-/devalue-5.3.2.tgz",
+ "integrity": "sha512-UDsjUbpQn9kvm68slnrs+mfxwFkIflOhkanmyabZ8zOYk8SMEIbJ3TK+88g70hSIeytu4y18f0z/hYHMTrXIWw==",
"license": "MIT"
},
"node_modules/devlop": {
@@ -3123,11 +2794,11 @@
"url": "https://github.com/sponsors/wooorm"
}
},
- "node_modules/didyoumean": {
- "version": "1.2.2",
- "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz",
- "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==",
- "license": "Apache-2.0"
+ "node_modules/dfa": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/dfa/-/dfa-1.2.0.tgz",
+ "integrity": "sha512-ED3jP8saaweFTjeGX8HQPjeC1YYyZs98jGNZx6IiBvxW7JG5v492kamAQB3m2wop07CvU/RQmzcKr6bgcC5D/Q==",
+ "license": "MIT"
},
"node_modules/diff": {
"version": "5.2.0",
@@ -3159,23 +2830,24 @@
"integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==",
"license": "MIT"
},
- "node_modules/electron-to-chromium": {
- "version": "1.5.76",
- "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.76.tgz",
- "integrity": "sha512-CjVQyG7n7Sr+eBXE86HIulnL5N8xZY1sgmOPGuq/F0Rr0FJq63lg0kEtOIDfZBk44FnDLf6FUJ+dsJcuiUDdDQ==",
- "license": "ISC"
- },
"node_modules/emoji-regex": {
"version": "10.4.0",
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.4.0.tgz",
"integrity": "sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==",
"license": "MIT"
},
- "node_modules/emoji-regex-xs": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/emoji-regex-xs/-/emoji-regex-xs-1.0.0.tgz",
- "integrity": "sha512-LRlerrMYoIDrT6jgpeZ2YYl/L8EulRTt5hQcYjy5AInh7HWXKimpqx68aknBFpGL2+/IcogTcaydJEgaTmOpDg==",
- "license": "MIT"
+ "node_modules/enhanced-resolve": {
+ "version": "5.18.1",
+ "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.1.tgz",
+ "integrity": "sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg==",
+ "license": "MIT",
+ "dependencies": {
+ "graceful-fs": "^4.2.4",
+ "tapable": "^2.2.0"
+ },
+ "engines": {
+ "node": ">=10.13.0"
+ }
},
"node_modules/entities": {
"version": "4.5.0",
@@ -3190,9 +2862,9 @@
}
},
"node_modules/es-module-lexer": {
- "version": "1.6.0",
- "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.6.0.tgz",
- "integrity": "sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==",
+ "version": "1.7.0",
+ "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.7.0.tgz",
+ "integrity": "sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==",
"license": "MIT"
},
"node_modules/esast-util-from-estree": {
@@ -3228,50 +2900,43 @@
}
},
"node_modules/esbuild": {
- "version": "0.21.5",
- "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz",
- "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==",
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.1.tgz",
+ "integrity": "sha512-BGO5LtrGC7vxnqucAe/rmvKdJllfGaYWdyABvyMoXQlfYMb2bbRuReWR5tEGE//4LcNJj9XrkovTqNYRFZHAMQ==",
"hasInstallScript": true,
"license": "MIT",
"bin": {
"esbuild": "bin/esbuild"
},
"engines": {
- "node": ">=12"
+ "node": ">=18"
},
"optionalDependencies": {
- "@esbuild/aix-ppc64": "0.21.5",
- "@esbuild/android-arm": "0.21.5",
- "@esbuild/android-arm64": "0.21.5",
- "@esbuild/android-x64": "0.21.5",
- "@esbuild/darwin-arm64": "0.21.5",
- "@esbuild/darwin-x64": "0.21.5",
- "@esbuild/freebsd-arm64": "0.21.5",
- "@esbuild/freebsd-x64": "0.21.5",
- "@esbuild/linux-arm": "0.21.5",
- "@esbuild/linux-arm64": "0.21.5",
- "@esbuild/linux-ia32": "0.21.5",
- "@esbuild/linux-loong64": "0.21.5",
- "@esbuild/linux-mips64el": "0.21.5",
- "@esbuild/linux-ppc64": "0.21.5",
- "@esbuild/linux-riscv64": "0.21.5",
- "@esbuild/linux-s390x": "0.21.5",
- "@esbuild/linux-x64": "0.21.5",
- "@esbuild/netbsd-x64": "0.21.5",
- "@esbuild/openbsd-x64": "0.21.5",
- "@esbuild/sunos-x64": "0.21.5",
- "@esbuild/win32-arm64": "0.21.5",
- "@esbuild/win32-ia32": "0.21.5",
- "@esbuild/win32-x64": "0.21.5"
- }
- },
- "node_modules/escalade": {
- "version": "3.2.0",
- "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
- "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
- "license": "MIT",
- "engines": {
- "node": ">=6"
+ "@esbuild/aix-ppc64": "0.25.1",
+ "@esbuild/android-arm": "0.25.1",
+ "@esbuild/android-arm64": "0.25.1",
+ "@esbuild/android-x64": "0.25.1",
+ "@esbuild/darwin-arm64": "0.25.1",
+ "@esbuild/darwin-x64": "0.25.1",
+ "@esbuild/freebsd-arm64": "0.25.1",
+ "@esbuild/freebsd-x64": "0.25.1",
+ "@esbuild/linux-arm": "0.25.1",
+ "@esbuild/linux-arm64": "0.25.1",
+ "@esbuild/linux-ia32": "0.25.1",
+ "@esbuild/linux-loong64": "0.25.1",
+ "@esbuild/linux-mips64el": "0.25.1",
+ "@esbuild/linux-ppc64": "0.25.1",
+ "@esbuild/linux-riscv64": "0.25.1",
+ "@esbuild/linux-s390x": "0.25.1",
+ "@esbuild/linux-x64": "0.25.1",
+ "@esbuild/netbsd-arm64": "0.25.1",
+ "@esbuild/netbsd-x64": "0.25.1",
+ "@esbuild/openbsd-arm64": "0.25.1",
+ "@esbuild/openbsd-x64": "0.25.1",
+ "@esbuild/sunos-x64": "0.25.1",
+ "@esbuild/win32-arm64": "0.25.1",
+ "@esbuild/win32-ia32": "0.25.1",
+ "@esbuild/win32-x64": "0.25.1"
}
},
"node_modules/escape-string-regexp": {
@@ -3286,19 +2951,6 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/esprima": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
- "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==",
- "license": "BSD-2-Clause",
- "bin": {
- "esparse": "bin/esparse.js",
- "esvalidate": "bin/esvalidate.js"
- },
- "engines": {
- "node": ">=4"
- }
- },
"node_modules/estree-util-attach-comments": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/estree-util-attach-comments/-/estree-util-attach-comments-3.0.0.tgz",
@@ -3402,58 +3054,45 @@
"integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==",
"license": "MIT"
},
- "node_modules/fast-glob": {
- "version": "3.3.2",
- "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz",
- "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==",
- "license": "MIT",
- "dependencies": {
- "@nodelib/fs.stat": "^2.0.2",
- "@nodelib/fs.walk": "^1.2.3",
- "glob-parent": "^5.1.2",
- "merge2": "^1.3.0",
- "micromatch": "^4.0.4"
- },
- "engines": {
- "node": ">=8.6.0"
- }
+ "node_modules/fast-deep-equal": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
+ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
+ "license": "MIT"
},
"node_modules/fast-xml-parser": {
- "version": "4.5.1",
- "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.5.1.tgz",
- "integrity": "sha512-y655CeyUQ+jj7KBbYMc4FG01V8ZQqjN+gDYGJ50RtfsUB8iG9AmwmwoAgeKLJdmueKKMrH1RJ7yXHTSoczdv5w==",
+ "version": "4.5.3",
+ "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.5.3.tgz",
+ "integrity": "sha512-RKihhV+SHsIUGXObeVy9AXiBbFwkVk7Syp8XgwN5U3JV416+Gwp/GO9i0JYKmikykgz/UHRrrV4ROuZEo/T0ig==",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/NaturalIntelligence"
- },
- {
- "type": "paypal",
- "url": "https://paypal.me/naturalintelligence"
}
],
"license": "MIT",
"dependencies": {
- "strnum": "^1.0.5"
+ "strnum": "^1.1.1"
},
"bin": {
"fxparser": "src/cli/cli.js"
}
},
- "node_modules/fastparse": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/fastparse/-/fastparse-1.1.2.tgz",
- "integrity": "sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/fastq": {
- "version": "1.18.0",
- "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.18.0.tgz",
- "integrity": "sha512-QKHXPW0hD8g4UET03SdOdunzSouc9N4AuHdsX8XNcTsuz+yYFILVNIX4l9yHABMhiEI9Db0JTTIpu0wB+Y1QQw==",
- "license": "ISC",
- "dependencies": {
- "reusify": "^1.0.4"
+ "node_modules/fdir": {
+ "version": "6.5.0",
+ "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
+ "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=12.0.0"
+ },
+ "peerDependencies": {
+ "picomatch": "^3 || ^4"
+ },
+ "peerDependenciesMeta": {
+ "picomatch": {
+ "optional": true
+ }
}
},
"node_modules/file-uri-to-path": {
@@ -3462,69 +3101,49 @@
"integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==",
"license": "MIT"
},
- "node_modules/fill-range": {
- "version": "7.1.1",
- "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
- "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
+ "node_modules/flattie": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/flattie/-/flattie-1.1.1.tgz",
+ "integrity": "sha512-9UbaD6XdAL97+k/n+N7JwX46K/M6Zc6KcFYskrYL8wbBV/Uyk0CTAMY0VT+qiK5PM7AIc9aTWYtq65U7T+aCNQ==",
"license": "MIT",
- "dependencies": {
- "to-regex-range": "^5.0.1"
- },
"engines": {
"node": ">=8"
}
},
- "node_modules/find-up": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
- "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
+ "node_modules/fontace": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/fontace/-/fontace-0.3.0.tgz",
+ "integrity": "sha512-czoqATrcnxgWb/nAkfyIrRp6Q8biYj7nGnL6zfhTcX+JKKpWHFBnb8uNMw/kZr7u++3Y3wYSYoZgHkCcsuBpBg==",
"license": "MIT",
"dependencies": {
- "locate-path": "^5.0.0",
- "path-exists": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
+ "@types/fontkit": "^2.0.8",
+ "fontkit": "^2.0.4"
}
},
- "node_modules/find-up-simple": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/find-up-simple/-/find-up-simple-1.0.0.tgz",
- "integrity": "sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw==",
+ "node_modules/fontkit": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/fontkit/-/fontkit-2.0.4.tgz",
+ "integrity": "sha512-syetQadaUEDNdxdugga9CpEYVaQIxOwk7GlwZWWZ19//qW4zE5bknOKeMBDYAASwnpaSHKJITRLMF9m1fp3s6g==",
"license": "MIT",
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/find-yarn-workspace-root2": {
- "version": "1.2.16",
- "resolved": "https://registry.npmjs.org/find-yarn-workspace-root2/-/find-yarn-workspace-root2-1.2.16.tgz",
- "integrity": "sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==",
- "license": "Apache-2.0",
"dependencies": {
- "micromatch": "^4.0.2",
- "pkg-dir": "^4.2.0"
- }
- },
- "node_modules/flattie": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/flattie/-/flattie-1.1.1.tgz",
- "integrity": "sha512-9UbaD6XdAL97+k/n+N7JwX46K/M6Zc6KcFYskrYL8wbBV/Uyk0CTAMY0VT+qiK5PM7AIc9aTWYtq65U7T+aCNQ==",
- "license": "MIT",
- "engines": {
- "node": ">=8"
+ "@swc/helpers": "^0.5.12",
+ "brotli": "^1.3.2",
+ "clone": "^2.1.2",
+ "dfa": "^1.2.0",
+ "fast-deep-equal": "^3.1.3",
+ "restructure": "^3.0.0",
+ "tiny-inflate": "^1.0.3",
+ "unicode-properties": "^1.4.0",
+ "unicode-trie": "^2.0.0"
}
},
"node_modules/foreground-child": {
- "version": "3.3.0",
- "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz",
- "integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==",
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz",
+ "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==",
"license": "ISC",
"dependencies": {
- "cross-spawn": "^7.0.0",
+ "cross-spawn": "^7.0.6",
"signal-exit": "^4.0.1"
},
"engines": {
@@ -3534,25 +3153,6 @@
"url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/fraction.js": {
- "version": "4.3.7",
- "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz",
- "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==",
- "license": "MIT",
- "engines": {
- "node": "*"
- },
- "funding": {
- "type": "patreon",
- "url": "https://github.com/sponsors/rawify"
- }
- },
- "node_modules/fs.realpath": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
- "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==",
- "license": "ISC"
- },
"node_modules/fsevents": {
"version": "2.3.3",
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
@@ -3567,15 +3167,6 @@
"node": "^8.16.0 || ^10.6.0 || >=11.0.0"
}
},
- "node_modules/function-bind": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
- "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
- "license": "MIT",
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
"node_modules/get-east-asian-width": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/get-east-asian-width/-/get-east-asian-width-1.3.0.tgz",
@@ -3591,8 +3182,7 @@
"node_modules/github-slugger": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/github-slugger/-/github-slugger-2.0.0.tgz",
- "integrity": "sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==",
- "license": "ISC"
+ "integrity": "sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw=="
},
"node_modules/glob": {
"version": "10.4.5",
@@ -3614,18 +3204,6 @@
"url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/glob-parent": {
- "version": "5.1.2",
- "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
- "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
- "license": "ISC",
- "dependencies": {
- "is-glob": "^4.0.1"
- },
- "engines": {
- "node": ">= 6"
- }
- },
"node_modules/graceful-fs": {
"version": "4.2.11",
"resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
@@ -3633,33 +3211,20 @@
"license": "ISC"
},
"node_modules/h3": {
- "version": "1.13.0",
- "resolved": "https://registry.npmjs.org/h3/-/h3-1.13.0.tgz",
- "integrity": "sha512-vFEAu/yf8UMUcB4s43OaDaigcqpQd14yanmOsn+NcRX3/guSKncyE2rOYhq8RIchgJrPSs/QiIddnTTR1ddiAg==",
+ "version": "1.15.4",
+ "resolved": "https://registry.npmjs.org/h3/-/h3-1.15.4.tgz",
+ "integrity": "sha512-z5cFQWDffyOe4vQ9xIqNfCZdV4p//vy6fBnr8Q1AWnVZ0teurKMG66rLj++TKwKPUP3u7iMUvrvKaEUiQw2QWQ==",
"license": "MIT",
"dependencies": {
"cookie-es": "^1.2.2",
- "crossws": ">=0.2.0 <0.4.0",
+ "crossws": "^0.3.5",
"defu": "^6.1.4",
- "destr": "^2.0.3",
+ "destr": "^2.0.5",
"iron-webcrypto": "^1.2.1",
- "ohash": "^1.1.4",
+ "node-mock-http": "^1.0.2",
"radix3": "^1.1.2",
- "ufo": "^1.5.4",
- "uncrypto": "^0.1.3",
- "unenv": "^1.10.0"
- }
- },
- "node_modules/hasown": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
- "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
- "license": "MIT",
- "dependencies": {
- "function-bind": "^1.1.2"
- },
- "engines": {
- "node": ">= 0.4"
+ "ufo": "^1.6.1",
+ "uncrypto": "^0.1.3"
}
},
"node_modules/hast-util-from-html": {
@@ -3681,16 +3246,16 @@
}
},
"node_modules/hast-util-from-parse5": {
- "version": "8.0.2",
- "resolved": "https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-8.0.2.tgz",
- "integrity": "sha512-SfMzfdAi/zAoZ1KkFEyyeXBn7u/ShQrfd675ZEE9M3qj+PMFX05xubzRyF76CCSJu8au9jgVxDV1+okFvgZU4A==",
+ "version": "8.0.3",
+ "resolved": "https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-8.0.3.tgz",
+ "integrity": "sha512-3kxEVkEKt0zvcZ3hCRYI8rqrgwtlIOFMWkbclACvjlDw8Li9S2hk/d51OI0nr/gIpdMHNepwgOKqZ/sy0Clpyg==",
"license": "MIT",
"dependencies": {
"@types/hast": "^3.0.0",
"@types/unist": "^3.0.0",
"devlop": "^1.0.0",
"hastscript": "^9.0.0",
- "property-information": "^6.0.0",
+ "property-information": "^7.0.0",
"vfile": "^6.0.0",
"vfile-location": "^5.0.0",
"web-namespaces": "^2.0.0"
@@ -3704,7 +3269,6 @@
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/hast-util-is-element/-/hast-util-is-element-3.0.0.tgz",
"integrity": "sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g==",
- "license": "MIT",
"dependencies": {
"@types/hast": "^3.0.0"
},
@@ -3752,9 +3316,9 @@
}
},
"node_modules/hast-util-to-estree": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/hast-util-to-estree/-/hast-util-to-estree-3.1.1.tgz",
- "integrity": "sha512-IWtwwmPskfSmma9RpzCappDUitC8t5jhAynHhc1m2+5trOgsrp7txscUSavc5Ic8PATyAjfrCK1wgtxh2cICVQ==",
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/hast-util-to-estree/-/hast-util-to-estree-3.1.3.tgz",
+ "integrity": "sha512-48+B/rJWAp0jamNbAAf9M7Uf//UVqAoMmgXhBdxTDJLGKY+LRnZ99qcG+Qjl5HfMpYNzS5v4EAwVEF34LeAj7w==",
"license": "MIT",
"dependencies": {
"@types/estree": "^1.0.0",
@@ -3768,9 +3332,9 @@
"mdast-util-mdx-expression": "^2.0.0",
"mdast-util-mdx-jsx": "^3.0.0",
"mdast-util-mdxjs-esm": "^2.0.0",
- "property-information": "^6.0.0",
+ "property-information": "^7.0.0",
"space-separated-tokens": "^2.0.0",
- "style-to-object": "^1.0.0",
+ "style-to-js": "^1.0.0",
"unist-util-position": "^5.0.0",
"zwitch": "^2.0.0"
},
@@ -3780,9 +3344,9 @@
}
},
"node_modules/hast-util-to-html": {
- "version": "9.0.4",
- "resolved": "https://registry.npmjs.org/hast-util-to-html/-/hast-util-to-html-9.0.4.tgz",
- "integrity": "sha512-wxQzXtdbhiwGAUKrnQJXlOPmHnEehzphwkK7aluUPQ+lEc1xefC8pblMgpp2w5ldBTEfveRIrADcrhGIWrlTDA==",
+ "version": "9.0.5",
+ "resolved": "https://registry.npmjs.org/hast-util-to-html/-/hast-util-to-html-9.0.5.tgz",
+ "integrity": "sha512-OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw==",
"license": "MIT",
"dependencies": {
"@types/hast": "^3.0.0",
@@ -3792,7 +3356,7 @@
"hast-util-whitespace": "^3.0.0",
"html-void-elements": "^3.0.0",
"mdast-util-to-hast": "^13.0.0",
- "property-information": "^6.0.0",
+ "property-information": "^7.0.0",
"space-separated-tokens": "^2.0.0",
"stringify-entities": "^4.0.0",
"zwitch": "^2.0.4"
@@ -3803,9 +3367,9 @@
}
},
"node_modules/hast-util-to-jsx-runtime": {
- "version": "2.3.2",
- "resolved": "https://registry.npmjs.org/hast-util-to-jsx-runtime/-/hast-util-to-jsx-runtime-2.3.2.tgz",
- "integrity": "sha512-1ngXYb+V9UT5h+PxNRa1O1FYguZK/XL+gkeqvp7EdHlB9oHUG0eYRo/vY5inBdcqo3RkPMC58/H94HvkbfGdyg==",
+ "version": "2.3.6",
+ "resolved": "https://registry.npmjs.org/hast-util-to-jsx-runtime/-/hast-util-to-jsx-runtime-2.3.6.tgz",
+ "integrity": "sha512-zl6s8LwNyo1P9uw+XJGvZtdFF1GdAkOg8ujOw+4Pyb76874fLps4ueHXDhXWdk6YHQ6OgUtinliG7RsYvCbbBg==",
"license": "MIT",
"dependencies": {
"@types/estree": "^1.0.0",
@@ -3818,9 +3382,9 @@
"mdast-util-mdx-expression": "^2.0.0",
"mdast-util-mdx-jsx": "^3.0.0",
"mdast-util-mdxjs-esm": "^2.0.0",
- "property-information": "^6.0.0",
+ "property-information": "^7.0.0",
"space-separated-tokens": "^2.0.0",
- "style-to-object": "^1.0.0",
+ "style-to-js": "^1.0.0",
"unist-util-position": "^5.0.0",
"vfile-message": "^4.0.0"
},
@@ -3848,11 +3412,20 @@
"url": "https://opencollective.com/unified"
}
},
+ "node_modules/hast-util-to-parse5/node_modules/property-information": {
+ "version": "6.5.0",
+ "resolved": "https://registry.npmjs.org/property-information/-/property-information-6.5.0.tgz",
+ "integrity": "sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==",
+ "license": "MIT",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
"node_modules/hast-util-to-text": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/hast-util-to-text/-/hast-util-to-text-4.0.2.tgz",
"integrity": "sha512-KK6y/BN8lbaq654j7JgBydev7wuNMcID54lkRav1P0CaE1e47P72AWWPiGKXTJU271ooYzcvTAn/Zt0REnvc7A==",
- "license": "MIT",
"dependencies": {
"@types/hast": "^3.0.0",
"@types/unist": "^3.0.0",
@@ -3878,15 +3451,15 @@
}
},
"node_modules/hastscript": {
- "version": "9.0.0",
- "resolved": "https://registry.npmjs.org/hastscript/-/hastscript-9.0.0.tgz",
- "integrity": "sha512-jzaLBGavEDKHrc5EfFImKN7nZKKBdSLIdGvCwDZ9TfzbF2ffXiov8CKE445L2Z1Ek2t/m4SKQ2j6Ipv7NyUolw==",
+ "version": "9.0.1",
+ "resolved": "https://registry.npmjs.org/hastscript/-/hastscript-9.0.1.tgz",
+ "integrity": "sha512-g7df9rMFX/SPi34tyGCyUBREQoKkapwdY/T04Qn9TDWfHhAYt4/I0gMVirzK5wEzeUqIjEB+LXC/ypb7Aqno5w==",
"license": "MIT",
"dependencies": {
"@types/hast": "^3.0.0",
"comma-separated-tokens": "^2.0.0",
"hast-util-parse-selector": "^4.0.0",
- "property-information": "^6.0.0",
+ "property-information": "^7.0.0",
"space-separated-tokens": "^2.0.0"
},
"funding": {
@@ -3911,9 +3484,9 @@
}
},
"node_modules/http-cache-semantics": {
- "version": "4.1.1",
- "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz",
- "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==",
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz",
+ "integrity": "sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==",
"license": "BSD-2-Clause"
},
"node_modules/https-proxy-agent": {
@@ -3930,32 +3503,15 @@
}
},
"node_modules/import-meta-resolve": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-4.1.0.tgz",
- "integrity": "sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==",
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-4.2.0.tgz",
+ "integrity": "sha512-Iqv2fzaTQN28s/FwZAoFq0ZSs/7hMAHJVX+w8PZl3cY19Pxk6jFFalxQoIfW2826i/fDLXv8IiEZRIT0lDuWcg==",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/wooorm"
}
},
- "node_modules/inflight": {
- "version": "1.0.6",
- "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
- "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
- "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.",
- "license": "ISC",
- "dependencies": {
- "once": "^1.3.0",
- "wrappy": "1"
- }
- },
- "node_modules/inherits": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
- "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
- "license": "ISC"
- },
"node_modules/inline-style-parser": {
"version": "0.2.4",
"resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.2.4.tgz",
@@ -4002,33 +3558,6 @@
"license": "MIT",
"optional": true
},
- "node_modules/is-binary-path": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
- "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
- "license": "MIT",
- "dependencies": {
- "binary-extensions": "^2.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/is-core-module": {
- "version": "2.16.1",
- "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz",
- "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==",
- "license": "MIT",
- "dependencies": {
- "hasown": "^2.0.2"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
"node_modules/is-decimal": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.1.tgz",
@@ -4054,15 +3583,6 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/is-extglob": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
- "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
"node_modules/is-fullwidth-code-point": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
@@ -4072,18 +3592,6 @@
"node": ">=8"
}
},
- "node_modules/is-glob": {
- "version": "4.0.3",
- "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
- "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
- "license": "MIT",
- "dependencies": {
- "is-extglob": "^2.1.1"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
"node_modules/is-hexadecimal": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz",
@@ -4112,15 +3620,6 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/is-number": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
- "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
- "license": "MIT",
- "engines": {
- "node": ">=0.12.0"
- }
- },
"node_modules/is-plain-obj": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz",
@@ -4170,19 +3669,18 @@
}
},
"node_modules/jiti": {
- "version": "1.21.7",
- "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.7.tgz",
- "integrity": "sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==",
+ "version": "2.4.2",
+ "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.4.2.tgz",
+ "integrity": "sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==",
"license": "MIT",
"bin": {
- "jiti": "bin/jiti.js"
+ "jiti": "lib/jiti-cli.mjs"
}
},
"node_modules/js-yaml": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
"integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
- "license": "MIT",
"dependencies": {
"argparse": "^2.0.1"
},
@@ -4199,71 +3697,232 @@
"node": ">=6"
}
},
- "node_modules/lilconfig": {
- "version": "3.1.3",
- "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz",
- "integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==",
- "license": "MIT",
+ "node_modules/lightningcss": {
+ "version": "1.29.2",
+ "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.29.2.tgz",
+ "integrity": "sha512-6b6gd/RUXKaw5keVdSEtqFVdzWnU5jMxTUjA2bVcMNPLwSQ08Sv/UodBVtETLCn7k4S1Ibxwh7k68IwLZPgKaA==",
+ "license": "MPL-2.0",
+ "dependencies": {
+ "detect-libc": "^2.0.3"
+ },
"engines": {
- "node": ">=14"
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ },
+ "optionalDependencies": {
+ "lightningcss-darwin-arm64": "1.29.2",
+ "lightningcss-darwin-x64": "1.29.2",
+ "lightningcss-freebsd-x64": "1.29.2",
+ "lightningcss-linux-arm-gnueabihf": "1.29.2",
+ "lightningcss-linux-arm64-gnu": "1.29.2",
+ "lightningcss-linux-arm64-musl": "1.29.2",
+ "lightningcss-linux-x64-gnu": "1.29.2",
+ "lightningcss-linux-x64-musl": "1.29.2",
+ "lightningcss-win32-arm64-msvc": "1.29.2",
+ "lightningcss-win32-x64-msvc": "1.29.2"
+ }
+ },
+ "node_modules/lightningcss-darwin-arm64": {
+ "version": "1.29.2",
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.29.2.tgz",
+ "integrity": "sha512-cK/eMabSViKn/PG8U/a7aCorpeKLMlK0bQeNHmdb7qUnBkNPnL+oV5DjJUo0kqWsJUapZsM4jCfYItbqBDvlcA==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MPL-2.0",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
},
"funding": {
- "url": "https://github.com/sponsors/antonk52"
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
}
},
- "node_modules/lines-and-columns": {
- "version": "1.2.4",
- "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
- "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==",
- "license": "MIT"
+ "node_modules/lightningcss-darwin-x64": {
+ "version": "1.29.2",
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.29.2.tgz",
+ "integrity": "sha512-j5qYxamyQw4kDXX5hnnCKMf3mLlHvG44f24Qyi2965/Ycz829MYqjrVg2H8BidybHBp9kom4D7DR5VqCKDXS0w==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MPL-2.0",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
},
- "node_modules/load-yaml-file": {
- "version": "0.2.0",
- "resolved": "https://registry.npmjs.org/load-yaml-file/-/load-yaml-file-0.2.0.tgz",
- "integrity": "sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==",
- "license": "MIT",
- "dependencies": {
- "graceful-fs": "^4.1.5",
- "js-yaml": "^3.13.0",
- "pify": "^4.0.1",
- "strip-bom": "^3.0.0"
+ "node_modules/lightningcss-freebsd-x64": {
+ "version": "1.29.2",
+ "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.29.2.tgz",
+ "integrity": "sha512-wDk7M2tM78Ii8ek9YjnY8MjV5f5JN2qNVO+/0BAGZRvXKtQrBC4/cn4ssQIpKIPP44YXw6gFdpUF+Ps+RGsCwg==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MPL-2.0",
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
},
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-linux-arm-gnueabihf": {
+ "version": "1.29.2",
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.29.2.tgz",
+ "integrity": "sha512-IRUrOrAF2Z+KExdExe3Rz7NSTuuJ2HvCGlMKoquK5pjvo2JY4Rybr+NrKnq0U0hZnx5AnGsuFHjGnNT14w26sg==",
+ "cpu": [
+ "arm"
+ ],
+ "license": "MPL-2.0",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
"engines": {
- "node": ">=6"
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
}
},
- "node_modules/load-yaml-file/node_modules/argparse": {
- "version": "1.0.10",
- "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
- "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
- "license": "MIT",
- "dependencies": {
- "sprintf-js": "~1.0.2"
+ "node_modules/lightningcss-linux-arm64-gnu": {
+ "version": "1.29.2",
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.29.2.tgz",
+ "integrity": "sha512-KKCpOlmhdjvUTX/mBuaKemp0oeDIBBLFiU5Fnqxh1/DZ4JPZi4evEH7TKoSBFOSOV3J7iEmmBaw/8dpiUvRKlQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MPL-2.0",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
}
},
- "node_modules/load-yaml-file/node_modules/js-yaml": {
- "version": "3.14.1",
- "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
- "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
- "license": "MIT",
- "dependencies": {
- "argparse": "^1.0.7",
- "esprima": "^4.0.0"
+ "node_modules/lightningcss-linux-arm64-musl": {
+ "version": "1.29.2",
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.29.2.tgz",
+ "integrity": "sha512-Q64eM1bPlOOUgxFmoPUefqzY1yV3ctFPE6d/Vt7WzLW4rKTv7MyYNky+FWxRpLkNASTnKQUaiMJ87zNODIrrKQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MPL-2.0",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
},
- "bin": {
- "js-yaml": "bin/js-yaml.js"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
}
},
- "node_modules/locate-path": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
- "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
- "license": "MIT",
- "dependencies": {
- "p-locate": "^4.1.0"
+ "node_modules/lightningcss-linux-x64-gnu": {
+ "version": "1.29.2",
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.29.2.tgz",
+ "integrity": "sha512-0v6idDCPG6epLXtBH/RPkHvYx74CVziHo6TMYga8O2EiQApnUPZsbR9nFNrg2cgBzk1AYqEd95TlrsL7nYABQg==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MPL-2.0",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-linux-x64-musl": {
+ "version": "1.29.2",
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.29.2.tgz",
+ "integrity": "sha512-rMpz2yawkgGT8RULc5S4WiZopVMOFWjiItBT7aSfDX4NQav6M44rhn5hjtkKzB+wMTRlLLqxkeYEtQ3dd9696w==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MPL-2.0",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
},
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-win32-arm64-msvc": {
+ "version": "1.29.2",
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.29.2.tgz",
+ "integrity": "sha512-nL7zRW6evGQqYVu/bKGK+zShyz8OVzsCotFgc7judbt6wnB2KbiKKJwBE4SGoDBQ1O94RjW4asrCjQL4i8Fhbw==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MPL-2.0",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
"engines": {
- "node": ">=8"
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-win32-x64-msvc": {
+ "version": "1.29.2",
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.29.2.tgz",
+ "integrity": "sha512-EdIUW3B2vLuHmv7urfzMI/h2fmlnOQBk1xlsDxkN1tCWKjNFjfLhGxYk8C8mzpSfr+A6jFFIi8fU6LbQGsRWjA==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MPL-2.0",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
}
},
"node_modules/lodash.castarray": {
@@ -4304,12 +3963,12 @@
"license": "ISC"
},
"node_modules/magic-string": {
- "version": "0.30.17",
- "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.17.tgz",
- "integrity": "sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==",
+ "version": "0.30.19",
+ "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.19.tgz",
+ "integrity": "sha512-2N21sPY9Ws53PZvsEpVtNuSW+ScYbQdp4b9qUaL+9QkHUrGFKo56Lg9Emg5s9V/qrtNBmiR01sYhUOwu3H+VOw==",
"license": "MIT",
"dependencies": {
- "@jridgewell/sourcemap-codec": "^1.5.0"
+ "@jridgewell/sourcemap-codec": "^1.5.5"
}
},
"node_modules/magicast": {
@@ -4349,7 +4008,6 @@
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-6.0.0.tgz",
"integrity": "sha512-scTllyX6pnYNZH/AIp/0ePz6s4cZtARxImwoPJ7kS42n+MnVsI4XbnG6d4ibehRIldYMWM2LD7ImQblVhUejVQ==",
- "license": "MIT",
"dependencies": {
"@types/mdast": "^4.0.0",
"@types/unist": "^3.0.0",
@@ -4401,9 +4059,9 @@
}
},
"node_modules/mdast-util-gfm": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-3.0.0.tgz",
- "integrity": "sha512-dgQEX5Amaq+DuUqf26jJqSK9qgixgd6rYDHAv4aTBuA92cTknZlKpPfa86Z/s8Dj8xsAQpFfBmPUHWJBWqS4Bw==",
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-3.1.0.tgz",
+ "integrity": "sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==",
"license": "MIT",
"dependencies": {
"mdast-util-from-markdown": "^2.0.0",
@@ -4437,9 +4095,9 @@
}
},
"node_modules/mdast-util-gfm-footnote": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-2.0.0.tgz",
- "integrity": "sha512-5jOT2boTSVkMnQ7LTrd6n/18kqwjmuYqo7JUPe+tRCY6O7dAuTFMtTPauYYrMPpox9hlN0uOx/FL8XvEfG9/mQ==",
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-2.1.0.tgz",
+ "integrity": "sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==",
"license": "MIT",
"dependencies": {
"@types/mdast": "^4.0.0",
@@ -4537,9 +4195,9 @@
}
},
"node_modules/mdast-util-mdx-jsx": {
- "version": "3.1.3",
- "resolved": "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-3.1.3.tgz",
- "integrity": "sha512-bfOjvNt+1AcbPLTFMFWY149nJz0OjmewJs3LQQ5pIyVGxP4CdOqNVJL6kTaM5c68p8q82Xv3nCyFfUnuEcH3UQ==",
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-3.2.0.tgz",
+ "integrity": "sha512-lj/z8v0r6ZtsN/cGNNtemmmfoLAFZnjMbNyLzBafjzikOM+glrjNHPlf6lQDOTccj9n5b0PPihEBbhneMyGs1Q==",
"license": "MIT",
"dependencies": {
"@types/estree-jsx": "^1.0.0",
@@ -4647,19 +4305,16 @@
"url": "https://opencollective.com/unified"
}
},
- "node_modules/merge2": {
- "version": "1.4.1",
- "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
- "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
- "license": "MIT",
- "engines": {
- "node": ">= 8"
- }
+ "node_modules/mdn-data": {
+ "version": "2.12.2",
+ "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.12.2.tgz",
+ "integrity": "sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==",
+ "license": "CC0-1.0"
},
"node_modules/micromark": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.1.tgz",
- "integrity": "sha512-eBPdkcoCNvYcxQOAKAlceo5SNdzZWfF+FcSupREAzdAh9rRmE239CEQAiTwIgblwnoM8zzj35sZ5ZwvSEOF6Kw==",
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.2.tgz",
+ "integrity": "sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==",
"funding": [
{
"type": "GitHub Sponsors",
@@ -4692,9 +4347,9 @@
}
},
"node_modules/micromark-core-commonmark": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.2.tgz",
- "integrity": "sha512-FKjQKbxd1cibWMM1P9N+H8TwlgGgSkWZMmfuVucLCHaYqeSvJ0hFeHsIa65pA2nYbes0f8LDHPMrd9X7Ujxg9w==",
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.3.tgz",
+ "integrity": "sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==",
"funding": [
{
"type": "GitHub Sponsors",
@@ -4800,9 +4455,9 @@
}
},
"node_modules/micromark-extension-gfm-table": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-2.1.0.tgz",
- "integrity": "sha512-Ub2ncQv+fwD70/l4ou27b4YzfNaCJOvyX4HxXU15m7mpYY+rjuWzsLIPZHJL253Z643RpbcP1oeIJlQ/SKW67g==",
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-2.1.1.tgz",
+ "integrity": "sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==",
"license": "MIT",
"dependencies": {
"devlop": "^1.0.0",
@@ -5322,9 +4977,9 @@
}
},
"node_modules/micromark-util-subtokenize": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.0.3.tgz",
- "integrity": "sha512-VXJJuNxYWSoYL6AJ6OQECCFGhIU2GGHMw8tahogePBrjkG8aCCas3ibkp7RnVOSTClg2is05/R7maAhF1XyQMg==",
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.1.0.tgz",
+ "integrity": "sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==",
"funding": [
{
"type": "GitHub Sponsors",
@@ -5360,9 +5015,9 @@
"license": "MIT"
},
"node_modules/micromark-util-types": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.1.tgz",
- "integrity": "sha512-534m2WhVTddrcKVepwmVEVnUAmtrx9bfIjNoQHRqfnvdaHQiFytEhJoTgpWJvDEXCO5gLTQh3wYC1PgOJA4NSQ==",
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz",
+ "integrity": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==",
"funding": [
{
"type": "GitHub Sponsors",
@@ -5375,56 +5030,19 @@
],
"license": "MIT"
},
- "node_modules/micromatch": {
- "version": "4.0.8",
- "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz",
- "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
- "license": "MIT",
+ "node_modules/minimatch": {
+ "version": "9.0.5",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
+ "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
+ "license": "ISC",
"dependencies": {
- "braces": "^3.0.3",
- "picomatch": "^2.3.1"
+ "brace-expansion": "^2.0.1"
},
"engines": {
- "node": ">=8.6"
- }
- },
- "node_modules/micromatch/node_modules/picomatch": {
- "version": "2.3.1",
- "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
- "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
- "license": "MIT",
- "engines": {
- "node": ">=8.6"
- },
- "funding": {
- "url": "https://github.com/sponsors/jonschlinkert"
- }
- },
- "node_modules/mime": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz",
- "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==",
- "license": "MIT",
- "bin": {
- "mime": "cli.js"
- },
- "engines": {
- "node": ">=10.0.0"
- }
- },
- "node_modules/minimatch": {
- "version": "9.0.5",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
- "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
- "license": "ISC",
- "dependencies": {
- "brace-expansion": "^2.0.1"
- },
- "engines": {
- "node": ">=16 || 14 >=14.17"
- },
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
+ "node": ">=16 || 14 >=14.17"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
}
},
"node_modules/minipass": {
@@ -5465,9 +5083,9 @@
}
},
"node_modules/mrmime": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-2.0.0.tgz",
- "integrity": "sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==",
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-2.0.1.tgz",
+ "integrity": "sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==",
"license": "MIT",
"engines": {
"node": ">=10"
@@ -5479,21 +5097,10 @@
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
"license": "MIT"
},
- "node_modules/mz": {
- "version": "2.7.0",
- "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz",
- "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==",
- "license": "MIT",
- "dependencies": {
- "any-promise": "^1.0.0",
- "object-assign": "^4.0.1",
- "thenify-all": "^1.0.0"
- }
- },
"node_modules/nanoid": {
- "version": "3.3.8",
- "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz",
- "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==",
+ "version": "3.3.9",
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.9.tgz",
+ "integrity": "sha512-SppoicMGpZvbF1l3z4x7No3OlIjP7QJvC9XR7AhZr1kL133KHnKPztkKDc+Ir4aJ/1VhTySrtKhrsycmrMQfvg==",
"funding": [
{
"type": "github",
@@ -5551,9 +5158,9 @@
}
},
"node_modules/node-fetch-native": {
- "version": "1.6.4",
- "resolved": "https://registry.npmjs.org/node-fetch-native/-/node-fetch-native-1.6.4.tgz",
- "integrity": "sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ==",
+ "version": "1.6.7",
+ "resolved": "https://registry.npmjs.org/node-fetch-native/-/node-fetch-native-1.6.7.tgz",
+ "integrity": "sha512-g9yhqoedzIUm0nTnTqAQvueMPVOuIY16bqgAJJC8XOOubYFNwz6IER9qs0Gq2Xd0+CecCKFjtdDTMA4u4xG06Q==",
"license": "MIT"
},
"node_modules/node-gyp-build": {
@@ -5567,19 +5174,19 @@
"node-gyp-build-test": "build-test.js"
}
},
- "node_modules/node-releases": {
- "version": "2.0.19",
- "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz",
- "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==",
+ "node_modules/node-mock-http": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/node-mock-http/-/node-mock-http-1.0.3.tgz",
+ "integrity": "sha512-jN8dK25fsfnMrVsEhluUTPkBFY+6ybu7jSB1n+ri/vOGjJxU8J9CZhpSGkHXSkFjtUhbmoncG/YG9ta5Ludqog==",
"license": "MIT"
},
"node_modules/nopt": {
- "version": "8.0.0",
- "resolved": "https://registry.npmjs.org/nopt/-/nopt-8.0.0.tgz",
- "integrity": "sha512-1L/fTJ4UmV/lUxT2Uf006pfZKTvAgCF+chz+0OgBHO8u2Z67pE7AaAUUj7CJy0lXqHmymUvGFt6NE9R3HER0yw==",
+ "version": "8.1.0",
+ "resolved": "https://registry.npmjs.org/nopt/-/nopt-8.1.0.tgz",
+ "integrity": "sha512-ieGu42u/Qsa4TFktmaKEwM6MQH0pOWnaB3htzh0JRtx84+Mebc0cbZYN5bC+6WTZ4+77xrL9Pn5m7CV6VIkV7A==",
"license": "ISC",
"dependencies": {
- "abbrev": "^2.0.0"
+ "abbrev": "^3.0.0"
},
"bin": {
"nopt": "bin/nopt.js"
@@ -5597,33 +5204,6 @@
"node": ">=0.10.0"
}
},
- "node_modules/normalize-range": {
- "version": "0.1.2",
- "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz",
- "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==",
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/object-assign": {
- "version": "4.1.1",
- "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
- "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/object-hash": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz",
- "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==",
- "license": "MIT",
- "engines": {
- "node": ">= 6"
- }
- },
"node_modules/ofetch": {
"version": "1.4.1",
"resolved": "https://registry.npmjs.org/ofetch/-/ofetch-1.4.1.tgz",
@@ -5636,29 +5216,26 @@
}
},
"node_modules/ohash": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/ohash/-/ohash-1.1.4.tgz",
- "integrity": "sha512-FlDryZAahJmEF3VR3w1KogSEdWX3WhA5GPakFx4J81kEAiHyLMpdLLElS8n8dfNadMgAne/MywcvmogzscVt4g==",
+ "version": "2.0.11",
+ "resolved": "https://registry.npmjs.org/ohash/-/ohash-2.0.11.tgz",
+ "integrity": "sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==",
"license": "MIT"
},
- "node_modules/once": {
- "version": "1.4.0",
- "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
- "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
- "license": "ISC",
- "dependencies": {
- "wrappy": "1"
- }
+ "node_modules/oniguruma-parser": {
+ "version": "0.12.1",
+ "resolved": "https://registry.npmjs.org/oniguruma-parser/-/oniguruma-parser-0.12.1.tgz",
+ "integrity": "sha512-8Unqkvk1RYc6yq2WBYRj4hdnsAxVze8i7iPfQr8e4uSP3tRv0rpZcbGUDvxfQQcdwHt/e9PrMvGCsa8OqG9X3w==",
+ "license": "MIT"
},
"node_modules/oniguruma-to-es": {
- "version": "0.10.0",
- "resolved": "https://registry.npmjs.org/oniguruma-to-es/-/oniguruma-to-es-0.10.0.tgz",
- "integrity": "sha512-zapyOUOCJxt+xhiNRPPMtfJkHGsZ98HHB9qJEkdT8BGytO/+kpe4m1Ngf0MzbzTmhacn11w9yGeDP6tzDhnCdg==",
+ "version": "4.3.3",
+ "resolved": "https://registry.npmjs.org/oniguruma-to-es/-/oniguruma-to-es-4.3.3.tgz",
+ "integrity": "sha512-rPiZhzC3wXwE59YQMRDodUwwT9FZ9nNBwQQfsd1wfdtlKEyCdRV0avrTcSZ5xlIvGRVPd/cx6ZN45ECmS39xvg==",
"license": "MIT",
"dependencies": {
- "emoji-regex-xs": "^1.0.0",
- "regex": "^5.1.1",
- "regex-recursion": "^5.1.1"
+ "oniguruma-parser": "^0.12.1",
+ "regex": "^6.0.1",
+ "regex-recursion": "^6.0.2"
}
},
"node_modules/p-limit": {
@@ -5676,37 +5253,10 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/p-locate": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
- "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
- "license": "MIT",
- "dependencies": {
- "p-limit": "^2.2.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/p-locate/node_modules/p-limit": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
- "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
- "license": "MIT",
- "dependencies": {
- "p-try": "^2.0.0"
- },
- "engines": {
- "node": ">=6"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
"node_modules/p-queue": {
- "version": "8.0.1",
- "resolved": "https://registry.npmjs.org/p-queue/-/p-queue-8.0.1.tgz",
- "integrity": "sha512-NXzu9aQJTAzbBqOt2hwsR63ea7yvxJc0PwN/zobNAudYfb1B7R08SzB4TsLeSbUCuG467NhnoT0oO6w1qRO+BA==",
+ "version": "8.1.0",
+ "resolved": "https://registry.npmjs.org/p-queue/-/p-queue-8.1.0.tgz",
+ "integrity": "sha512-mxLDbbGIBEXTJL0zEx8JIylaj3xQ7Z/7eEVjcF9fJX4DBiH9oqe+oahYnlKKxm0Ci9TlWTyhSHgygxMxjIB2jw==",
"license": "MIT",
"dependencies": {
"eventemitter3": "^5.0.1",
@@ -5731,21 +5281,24 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/p-try": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
- "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
- "license": "MIT",
- "engines": {
- "node": ">=6"
- }
- },
"node_modules/package-json-from-dist": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz",
"integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==",
"license": "BlueOak-1.0.0"
},
+ "node_modules/package-manager-detector": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/package-manager-detector/-/package-manager-detector-1.3.0.tgz",
+ "integrity": "sha512-ZsEbbZORsyHuO00lY1kV3/t72yp6Ysay6Pd17ZAlNGuGwmWDLCJxFpRs0IzfXfj1o4icJOkUEioexFHzyPurSQ==",
+ "license": "MIT"
+ },
+ "node_modules/pako": {
+ "version": "0.2.9",
+ "resolved": "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz",
+ "integrity": "sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==",
+ "license": "MIT"
+ },
"node_modules/parse-entities": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-4.0.2.tgz",
@@ -5801,24 +5354,6 @@
"url": "https://github.com/inikulin/parse5?sponsor=1"
}
},
- "node_modules/path-exists": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
- "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/path-is-absolute": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
- "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==",
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
"node_modules/path-key": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
@@ -5828,12 +5363,6 @@
"node": ">=8"
}
},
- "node_modules/path-parse": {
- "version": "1.0.7",
- "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
- "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==",
- "license": "MIT"
- },
"node_modules/path-scurry": {
"version": "1.11.1",
"resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz",
@@ -5850,12 +5379,6 @@
"url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/pathe": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/pathe/-/pathe-1.1.2.tgz",
- "integrity": "sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==",
- "license": "MIT"
- },
"node_modules/picocolors": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
@@ -5863,9 +5386,9 @@
"license": "ISC"
},
"node_modules/picomatch": {
- "version": "4.0.2",
- "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz",
- "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==",
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz",
+ "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==",
"license": "MIT",
"engines": {
"node": ">=12"
@@ -5874,40 +5397,10 @@
"url": "https://github.com/sponsors/jonschlinkert"
}
},
- "node_modules/pify": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz",
- "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==",
- "license": "MIT",
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/pirates": {
- "version": "4.0.6",
- "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz",
- "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==",
- "license": "MIT",
- "engines": {
- "node": ">= 6"
- }
- },
- "node_modules/pkg-dir": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz",
- "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==",
- "license": "MIT",
- "dependencies": {
- "find-up": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/postcss": {
- "version": "8.4.49",
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.49.tgz",
- "integrity": "sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==",
+ "version": "8.5.3",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.3.tgz",
+ "integrity": "sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==",
"funding": [
{
"type": "opencollective",
@@ -5924,7 +5417,7 @@
],
"license": "MIT",
"dependencies": {
- "nanoid": "^3.3.7",
+ "nanoid": "^3.3.8",
"picocolors": "^1.1.1",
"source-map-js": "^1.2.1"
},
@@ -5932,106 +5425,11 @@
"node": "^10 || ^12 || >=14"
}
},
- "node_modules/postcss-import": {
- "version": "15.1.0",
- "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz",
- "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==",
- "license": "MIT",
- "dependencies": {
- "postcss-value-parser": "^4.0.0",
- "read-cache": "^1.0.0",
- "resolve": "^1.1.7"
- },
- "engines": {
- "node": ">=14.0.0"
- },
- "peerDependencies": {
- "postcss": "^8.0.0"
- }
- },
- "node_modules/postcss-js": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz",
- "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==",
- "license": "MIT",
- "dependencies": {
- "camelcase-css": "^2.0.1"
- },
- "engines": {
- "node": "^12 || ^14 || >= 16"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/postcss/"
- },
- "peerDependencies": {
- "postcss": "^8.4.21"
- }
- },
- "node_modules/postcss-load-config": {
- "version": "4.0.2",
- "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.2.tgz",
- "integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==",
- "funding": [
- {
- "type": "opencollective",
- "url": "https://opencollective.com/postcss/"
- },
- {
- "type": "github",
- "url": "https://github.com/sponsors/ai"
- }
- ],
- "license": "MIT",
- "dependencies": {
- "lilconfig": "^3.0.0",
- "yaml": "^2.3.4"
- },
- "engines": {
- "node": ">= 14"
- },
- "peerDependencies": {
- "postcss": ">=8.0.9",
- "ts-node": ">=9.0.0"
- },
- "peerDependenciesMeta": {
- "postcss": {
- "optional": true
- },
- "ts-node": {
- "optional": true
- }
- }
- },
- "node_modules/postcss-nested": {
- "version": "6.2.0",
- "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.2.0.tgz",
- "integrity": "sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==",
- "funding": [
- {
- "type": "opencollective",
- "url": "https://opencollective.com/postcss/"
- },
- {
- "type": "github",
- "url": "https://github.com/sponsors/ai"
- }
- ],
- "license": "MIT",
- "dependencies": {
- "postcss-selector-parser": "^6.1.1"
- },
- "engines": {
- "node": ">=12.0"
- },
- "peerDependencies": {
- "postcss": "^8.2.14"
- }
- },
"node_modules/postcss-selector-parser": {
- "version": "6.1.2",
- "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz",
- "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==",
+ "version": "6.0.10",
+ "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz",
+ "integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==",
+ "dev": true,
"license": "MIT",
"dependencies": {
"cssesc": "^3.0.0",
@@ -6041,31 +5439,10 @@
"node": ">=4"
}
},
- "node_modules/postcss-value-parser": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz",
- "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==",
- "license": "MIT"
- },
- "node_modules/preferred-pm": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/preferred-pm/-/preferred-pm-4.0.0.tgz",
- "integrity": "sha512-gYBeFTZLu055D8Vv3cSPox/0iTPtkzxpLroSYYA7WXgRi31WCJ51Uyl8ZiPeUUjyvs2MBzK+S8v9JVUgHU/Sqw==",
- "license": "MIT",
- "dependencies": {
- "find-up-simple": "^1.0.0",
- "find-yarn-workspace-root2": "1.2.16",
- "which-pm": "^3.0.0"
- },
- "engines": {
- "node": ">=18.12"
- }
- },
"node_modules/prismjs": {
- "version": "1.29.0",
- "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.29.0.tgz",
- "integrity": "sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==",
- "license": "MIT",
+ "version": "1.30.0",
+ "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.30.0.tgz",
+ "integrity": "sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw==",
"engines": {
"node": ">=6"
}
@@ -6093,92 +5470,43 @@
}
},
"node_modules/property-information": {
- "version": "6.5.0",
- "resolved": "https://registry.npmjs.org/property-information/-/property-information-6.5.0.tgz",
- "integrity": "sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==",
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/property-information/-/property-information-7.0.0.tgz",
+ "integrity": "sha512-7D/qOz/+Y4X/rzSB6jKxKUsQnphO046ei8qxG59mtM3RG3DHgTK81HrxrmoDVINJb8NKT5ZsRbwHvQ6B68Iyhg==",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/wooorm"
}
},
- "node_modules/queue-microtask": {
- "version": "1.2.3",
- "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
- "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ],
- "license": "MIT"
- },
"node_modules/radix3": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/radix3/-/radix3-1.1.2.tgz",
"integrity": "sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==",
"license": "MIT"
},
- "node_modules/read-cache": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz",
- "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==",
- "license": "MIT",
- "dependencies": {
- "pify": "^2.3.0"
- }
- },
- "node_modules/read-cache/node_modules/pify": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
- "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==",
+ "node_modules/readdirp": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz",
+ "integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==",
"license": "MIT",
"engines": {
- "node": ">=0.10.0"
+ "node": ">= 14.18.0"
+ },
+ "funding": {
+ "type": "individual",
+ "url": "https://paulmillr.com/funding/"
}
},
- "node_modules/readdirp": {
- "version": "3.6.0",
- "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
- "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
+ "node_modules/recma-build-jsx": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/recma-build-jsx/-/recma-build-jsx-1.0.0.tgz",
+ "integrity": "sha512-8GtdyqaBcDfva+GUKDr3nev3VpKAhup1+RvkMvUxURHpW7QyIvk9F5wz7Vzo06CEMSilw6uArgRqhpiUcWp8ew==",
"license": "MIT",
"dependencies": {
- "picomatch": "^2.2.1"
- },
- "engines": {
- "node": ">=8.10.0"
- }
- },
- "node_modules/readdirp/node_modules/picomatch": {
- "version": "2.3.1",
- "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
- "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
- "license": "MIT",
- "engines": {
- "node": ">=8.6"
- },
- "funding": {
- "url": "https://github.com/sponsors/jonschlinkert"
- }
- },
- "node_modules/recma-build-jsx": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/recma-build-jsx/-/recma-build-jsx-1.0.0.tgz",
- "integrity": "sha512-8GtdyqaBcDfva+GUKDr3nev3VpKAhup1+RvkMvUxURHpW7QyIvk9F5wz7Vzo06CEMSilw6uArgRqhpiUcWp8ew==",
- "license": "MIT",
- "dependencies": {
- "@types/estree": "^1.0.0",
- "estree-util-build-jsx": "^3.0.0",
- "vfile": "^6.0.0"
+ "@types/estree": "^1.0.0",
+ "estree-util-build-jsx": "^3.0.0",
+ "vfile": "^6.0.0"
},
"funding": {
"type": "opencollective",
@@ -6235,21 +5563,20 @@
}
},
"node_modules/regex": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/regex/-/regex-5.1.1.tgz",
- "integrity": "sha512-dN5I359AVGPnwzJm2jN1k0W9LPZ+ePvoOeVMMfqIMFz53sSwXkxaJoxr50ptnsC771lK95BnTrVSZxq0b9yCGw==",
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/regex/-/regex-6.0.1.tgz",
+ "integrity": "sha512-uorlqlzAKjKQZ5P+kTJr3eeJGSVroLKoHmquUj4zHWuR+hEyNqlXsSKlYYF5F4NI6nl7tWCs0apKJ0lmfsXAPA==",
"license": "MIT",
"dependencies": {
"regex-utilities": "^2.3.0"
}
},
"node_modules/regex-recursion": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/regex-recursion/-/regex-recursion-5.1.1.tgz",
- "integrity": "sha512-ae7SBCbzVNrIjgSbh7wMznPcQel1DNlDtzensnFxpiNpXt1U2ju/bHugH422r+4LAVS1FpW1YCwilmnNsjum9w==",
+ "version": "6.0.2",
+ "resolved": "https://registry.npmjs.org/regex-recursion/-/regex-recursion-6.0.2.tgz",
+ "integrity": "sha512-0YCaSCq2VRIebiaUviZNs0cBz1kg5kVS2UKUfNIx8YVs1cN3AV7NTctO5FOKBA+UT2BPJIWZauYHPqJODG50cg==",
"license": "MIT",
"dependencies": {
- "regex": "^5.1.1",
"regex-utilities": "^2.3.0"
}
},
@@ -6336,9 +5663,9 @@
}
},
"node_modules/remark-gfm": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/remark-gfm/-/remark-gfm-4.0.0.tgz",
- "integrity": "sha512-U92vJgBPkbw4Zfu/IiW2oTZLSL3Zpv+uI7My2eq8JxKgqraFdU8YUGicEJCEgSbeaG+QDFqIcwwfMTOEelPxuA==",
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/remark-gfm/-/remark-gfm-4.0.1.tgz",
+ "integrity": "sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==",
"license": "MIT",
"dependencies": {
"@types/mdast": "^4.0.0",
@@ -6384,9 +5711,9 @@
}
},
"node_modules/remark-rehype": {
- "version": "11.1.1",
- "resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-11.1.1.tgz",
- "integrity": "sha512-g/osARvjkBXb6Wo0XvAeXQohVta8i84ACbenPpoSsxTOQH/Ae0/RGP4WZgnMH5pMLpsj4FG7OHmcIcXxpza8eQ==",
+ "version": "11.1.2",
+ "resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-11.1.2.tgz",
+ "integrity": "sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==",
"license": "MIT",
"dependencies": {
"@types/hast": "^3.0.0",
@@ -6430,26 +5757,6 @@
"url": "https://opencollective.com/unified"
}
},
- "node_modules/resolve": {
- "version": "1.22.10",
- "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz",
- "integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==",
- "license": "MIT",
- "dependencies": {
- "is-core-module": "^2.16.0",
- "path-parse": "^1.0.7",
- "supports-preserve-symlinks-flag": "^1.0.0"
- },
- "bin": {
- "resolve": "bin/resolve"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
"node_modules/resolve-from": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
@@ -6459,6 +5766,12 @@
"node": ">=8"
}
},
+ "node_modules/restructure": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/restructure/-/restructure-3.0.2.tgz",
+ "integrity": "sha512-gSfoiOEA0VPE6Tukkrr7I0RBdE0s7H1eFCDBk05l1KIQT1UIKNc5JZy6jdyW6eYH3aR3g5b3PuL77rq0hvwtAw==",
+ "license": "MIT"
+ },
"node_modules/retext": {
"version": "9.0.0",
"resolved": "https://registry.npmjs.org/retext/-/retext-9.0.0.tgz",
@@ -6520,16 +5833,6 @@
"url": "https://opencollective.com/unified"
}
},
- "node_modules/reusify": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz",
- "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==",
- "license": "MIT",
- "engines": {
- "iojs": ">=1.0.0",
- "node": ">=0.10.0"
- }
- },
"node_modules/rimraf": {
"version": "5.0.10",
"resolved": "https://registry.npmjs.org/rimraf/-/rimraf-5.0.10.tgz",
@@ -6546,9 +5849,9 @@
}
},
"node_modules/rollup": {
- "version": "4.29.1",
- "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.29.1.tgz",
- "integrity": "sha512-RaJ45M/kmJUzSWDs1Nnd5DdV4eerC98idtUOVr6FfKcgxqvjwHmxc5upLF9qZU9EpsVzzhleFahrT3shLuJzIw==",
+ "version": "4.35.0",
+ "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.35.0.tgz",
+ "integrity": "sha512-kg6oI4g+vc41vePJyO6dHt/yl0Rz3Thv0kJeVQ3D1kS3E5XSuKbPc29G4IpT/Kv1KQwgHVcN+HtyS+HYLNSvQg==",
"license": "MIT",
"dependencies": {
"@types/estree": "1.0.6"
@@ -6561,51 +5864,28 @@
"npm": ">=8.0.0"
},
"optionalDependencies": {
- "@rollup/rollup-android-arm-eabi": "4.29.1",
- "@rollup/rollup-android-arm64": "4.29.1",
- "@rollup/rollup-darwin-arm64": "4.29.1",
- "@rollup/rollup-darwin-x64": "4.29.1",
- "@rollup/rollup-freebsd-arm64": "4.29.1",
- "@rollup/rollup-freebsd-x64": "4.29.1",
- "@rollup/rollup-linux-arm-gnueabihf": "4.29.1",
- "@rollup/rollup-linux-arm-musleabihf": "4.29.1",
- "@rollup/rollup-linux-arm64-gnu": "4.29.1",
- "@rollup/rollup-linux-arm64-musl": "4.29.1",
- "@rollup/rollup-linux-loongarch64-gnu": "4.29.1",
- "@rollup/rollup-linux-powerpc64le-gnu": "4.29.1",
- "@rollup/rollup-linux-riscv64-gnu": "4.29.1",
- "@rollup/rollup-linux-s390x-gnu": "4.29.1",
- "@rollup/rollup-linux-x64-gnu": "4.29.1",
- "@rollup/rollup-linux-x64-musl": "4.29.1",
- "@rollup/rollup-win32-arm64-msvc": "4.29.1",
- "@rollup/rollup-win32-ia32-msvc": "4.29.1",
- "@rollup/rollup-win32-x64-msvc": "4.29.1",
+ "@rollup/rollup-android-arm-eabi": "4.35.0",
+ "@rollup/rollup-android-arm64": "4.35.0",
+ "@rollup/rollup-darwin-arm64": "4.35.0",
+ "@rollup/rollup-darwin-x64": "4.35.0",
+ "@rollup/rollup-freebsd-arm64": "4.35.0",
+ "@rollup/rollup-freebsd-x64": "4.35.0",
+ "@rollup/rollup-linux-arm-gnueabihf": "4.35.0",
+ "@rollup/rollup-linux-arm-musleabihf": "4.35.0",
+ "@rollup/rollup-linux-arm64-gnu": "4.35.0",
+ "@rollup/rollup-linux-arm64-musl": "4.35.0",
+ "@rollup/rollup-linux-loongarch64-gnu": "4.35.0",
+ "@rollup/rollup-linux-powerpc64le-gnu": "4.35.0",
+ "@rollup/rollup-linux-riscv64-gnu": "4.35.0",
+ "@rollup/rollup-linux-s390x-gnu": "4.35.0",
+ "@rollup/rollup-linux-x64-gnu": "4.35.0",
+ "@rollup/rollup-linux-x64-musl": "4.35.0",
+ "@rollup/rollup-win32-arm64-msvc": "4.35.0",
+ "@rollup/rollup-win32-ia32-msvc": "4.35.0",
+ "@rollup/rollup-win32-x64-msvc": "4.35.0",
"fsevents": "~2.3.2"
}
},
- "node_modules/run-parallel": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
- "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ],
- "license": "MIT",
- "dependencies": {
- "queue-microtask": "^1.2.2"
- }
- },
"node_modules/sax": {
"version": "1.4.1",
"resolved": "https://registry.npmjs.org/sax/-/sax-1.4.1.tgz",
@@ -6613,9 +5893,9 @@
"license": "ISC"
},
"node_modules/semver": {
- "version": "7.6.3",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
- "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==",
+ "version": "7.7.2",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz",
+ "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==",
"license": "ISC",
"bin": {
"semver": "bin/semver.js"
@@ -6625,16 +5905,16 @@
}
},
"node_modules/sharp": {
- "version": "0.33.5",
- "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.33.5.tgz",
- "integrity": "sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==",
+ "version": "0.34.3",
+ "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.34.3.tgz",
+ "integrity": "sha512-eX2IQ6nFohW4DbvHIOLRB3MHFpYqaqvXd3Tp5e/T/dSH83fxaNJQRvDMhASmkNTsNTVF2/OOopzRCt7xokgPfg==",
"hasInstallScript": true,
"license": "Apache-2.0",
"optional": true,
"dependencies": {
"color": "^4.2.3",
- "detect-libc": "^2.0.3",
- "semver": "^7.6.3"
+ "detect-libc": "^2.0.4",
+ "semver": "^7.7.2"
},
"engines": {
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
@@ -6643,25 +5923,28 @@
"url": "https://opencollective.com/libvips"
},
"optionalDependencies": {
- "@img/sharp-darwin-arm64": "0.33.5",
- "@img/sharp-darwin-x64": "0.33.5",
- "@img/sharp-libvips-darwin-arm64": "1.0.4",
- "@img/sharp-libvips-darwin-x64": "1.0.4",
- "@img/sharp-libvips-linux-arm": "1.0.5",
- "@img/sharp-libvips-linux-arm64": "1.0.4",
- "@img/sharp-libvips-linux-s390x": "1.0.4",
- "@img/sharp-libvips-linux-x64": "1.0.4",
- "@img/sharp-libvips-linuxmusl-arm64": "1.0.4",
- "@img/sharp-libvips-linuxmusl-x64": "1.0.4",
- "@img/sharp-linux-arm": "0.33.5",
- "@img/sharp-linux-arm64": "0.33.5",
- "@img/sharp-linux-s390x": "0.33.5",
- "@img/sharp-linux-x64": "0.33.5",
- "@img/sharp-linuxmusl-arm64": "0.33.5",
- "@img/sharp-linuxmusl-x64": "0.33.5",
- "@img/sharp-wasm32": "0.33.5",
- "@img/sharp-win32-ia32": "0.33.5",
- "@img/sharp-win32-x64": "0.33.5"
+ "@img/sharp-darwin-arm64": "0.34.3",
+ "@img/sharp-darwin-x64": "0.34.3",
+ "@img/sharp-libvips-darwin-arm64": "1.2.0",
+ "@img/sharp-libvips-darwin-x64": "1.2.0",
+ "@img/sharp-libvips-linux-arm": "1.2.0",
+ "@img/sharp-libvips-linux-arm64": "1.2.0",
+ "@img/sharp-libvips-linux-ppc64": "1.2.0",
+ "@img/sharp-libvips-linux-s390x": "1.2.0",
+ "@img/sharp-libvips-linux-x64": "1.2.0",
+ "@img/sharp-libvips-linuxmusl-arm64": "1.2.0",
+ "@img/sharp-libvips-linuxmusl-x64": "1.2.0",
+ "@img/sharp-linux-arm": "0.34.3",
+ "@img/sharp-linux-arm64": "0.34.3",
+ "@img/sharp-linux-ppc64": "0.34.3",
+ "@img/sharp-linux-s390x": "0.34.3",
+ "@img/sharp-linux-x64": "0.34.3",
+ "@img/sharp-linuxmusl-arm64": "0.34.3",
+ "@img/sharp-linuxmusl-x64": "0.34.3",
+ "@img/sharp-wasm32": "0.34.3",
+ "@img/sharp-win32-arm64": "0.34.3",
+ "@img/sharp-win32-ia32": "0.34.3",
+ "@img/sharp-win32-x64": "0.34.3"
}
},
"node_modules/shebang-command": {
@@ -6686,18 +5969,18 @@
}
},
"node_modules/shiki": {
- "version": "1.26.1",
- "resolved": "https://registry.npmjs.org/shiki/-/shiki-1.26.1.tgz",
- "integrity": "sha512-Gqg6DSTk3wYqaZ5OaYtzjcdxcBvX5kCy24yvRJEgjT5U+WHlmqCThLuBUx0juyxQBi+6ug53IGeuQS07DWwpcw==",
- "license": "MIT",
- "dependencies": {
- "@shikijs/core": "1.26.1",
- "@shikijs/engine-javascript": "1.26.1",
- "@shikijs/engine-oniguruma": "1.26.1",
- "@shikijs/langs": "1.26.1",
- "@shikijs/themes": "1.26.1",
- "@shikijs/types": "1.26.1",
- "@shikijs/vscode-textmate": "^10.0.1",
+ "version": "3.12.2",
+ "resolved": "https://registry.npmjs.org/shiki/-/shiki-3.12.2.tgz",
+ "integrity": "sha512-uIrKI+f9IPz1zDT+GMz+0RjzKJiijVr6WDWm9Pe3NNY6QigKCfifCEv9v9R2mDASKKjzjQ2QpFLcxaR3iHSnMA==",
+ "license": "MIT",
+ "dependencies": {
+ "@shikijs/core": "3.12.2",
+ "@shikijs/engine-javascript": "3.12.2",
+ "@shikijs/engine-oniguruma": "3.12.2",
+ "@shikijs/langs": "3.12.2",
+ "@shikijs/themes": "3.12.2",
+ "@shikijs/types": "3.12.2",
+ "@shikijs/vscode-textmate": "^10.0.2",
"@types/hast": "^3.0.4"
}
},
@@ -6754,6 +6037,18 @@
"integrity": "sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==",
"license": "MIT"
},
+ "node_modules/smol-toml": {
+ "version": "1.4.2",
+ "resolved": "https://registry.npmjs.org/smol-toml/-/smol-toml-1.4.2.tgz",
+ "integrity": "sha512-rInDH6lCNiEyn3+hH8KVGFdbjc099j47+OSgbMrfDYX1CmXLfdKd7qi6IfcWj2wFxvSVkuI46M+wPGYfEOEj6g==",
+ "license": "BSD-3-Clause",
+ "engines": {
+ "node": ">= 18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/cyyynthia"
+ }
+ },
"node_modules/source-map": {
"version": "0.7.4",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz",
@@ -6782,12 +6077,6 @@
"url": "https://github.com/sponsors/wooorm"
}
},
- "node_modules/sprintf-js": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
- "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==",
- "license": "BSD-3-Clause"
- },
"node_modules/stream-replace-string": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/stream-replace-string/-/stream-replace-string-2.0.0.tgz",
@@ -6904,21 +6193,27 @@
"node": ">=8"
}
},
- "node_modules/strip-bom": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz",
- "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==",
- "license": "MIT",
- "engines": {
- "node": ">=4"
- }
- },
"node_modules/strnum": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/strnum/-/strnum-1.0.5.tgz",
- "integrity": "sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==",
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/strnum/-/strnum-1.1.2.tgz",
+ "integrity": "sha512-vrN+B7DBIoTTZjnPNewwhx6cBA/H+IS7rfW68n7XxC1y7uoiGQBxaKzqucGUgavX15dJgiGztLJ8vxuEzwqBdA==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/NaturalIntelligence"
+ }
+ ],
"license": "MIT"
},
+ "node_modules/style-to-js": {
+ "version": "1.1.16",
+ "resolved": "https://registry.npmjs.org/style-to-js/-/style-to-js-1.1.16.tgz",
+ "integrity": "sha512-/Q6ld50hKYPH3d/r6nr117TZkHR0w0kGGIVfpG9N6D8NymRPM9RqCUv4pRpJ62E5DqOYx2AFpbZMyCPnjQCnOw==",
+ "license": "MIT",
+ "dependencies": {
+ "style-to-object": "1.0.8"
+ }
+ },
"node_modules/style-to-object": {
"version": "1.0.8",
"resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-1.0.8.tgz",
@@ -6928,87 +6223,19 @@
"inline-style-parser": "0.2.4"
}
},
- "node_modules/sucrase": {
- "version": "3.35.0",
- "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz",
- "integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==",
- "license": "MIT",
- "dependencies": {
- "@jridgewell/gen-mapping": "^0.3.2",
- "commander": "^4.0.0",
- "glob": "^10.3.10",
- "lines-and-columns": "^1.1.6",
- "mz": "^2.7.0",
- "pirates": "^4.0.1",
- "ts-interface-checker": "^0.1.9"
- },
- "bin": {
- "sucrase": "bin/sucrase",
- "sucrase-node": "bin/sucrase-node"
- },
- "engines": {
- "node": ">=16 || 14 >=14.17"
- }
- },
- "node_modules/supports-preserve-symlinks-flag": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
- "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
"node_modules/tailwindcss": {
- "version": "3.4.17",
- "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.17.tgz",
- "integrity": "sha512-w33E2aCvSDP0tW9RZuNXadXlkHXqFzSkQew/aIa2i/Sj8fThxwovwlXHSPXTbAHwEIhBFXAedUhP2tueAKP8Og==",
- "license": "MIT",
- "dependencies": {
- "@alloc/quick-lru": "^5.2.0",
- "arg": "^5.0.2",
- "chokidar": "^3.6.0",
- "didyoumean": "^1.2.2",
- "dlv": "^1.1.3",
- "fast-glob": "^3.3.2",
- "glob-parent": "^6.0.2",
- "is-glob": "^4.0.3",
- "jiti": "^1.21.6",
- "lilconfig": "^3.1.3",
- "micromatch": "^4.0.8",
- "normalize-path": "^3.0.0",
- "object-hash": "^3.0.0",
- "picocolors": "^1.1.1",
- "postcss": "^8.4.47",
- "postcss-import": "^15.1.0",
- "postcss-js": "^4.0.1",
- "postcss-load-config": "^4.0.2",
- "postcss-nested": "^6.2.0",
- "postcss-selector-parser": "^6.1.2",
- "resolve": "^1.22.8",
- "sucrase": "^3.35.0"
- },
- "bin": {
- "tailwind": "lib/cli.js",
- "tailwindcss": "lib/cli.js"
- },
- "engines": {
- "node": ">=14.0.0"
- }
+ "version": "4.0.13",
+ "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.0.13.tgz",
+ "integrity": "sha512-gbvFrB0fOsTv/OugXWi2PtflJ4S6/ctu6Mmn3bCftmLY/6xRsQVEJPgIIpABwpZ52DpONkCA3bEj5b54MHxF2Q==",
+ "license": "MIT"
},
- "node_modules/tailwindcss/node_modules/glob-parent": {
- "version": "6.0.2",
- "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
- "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
- "license": "ISC",
- "dependencies": {
- "is-glob": "^4.0.3"
- },
+ "node_modules/tapable": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz",
+ "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==",
+ "license": "MIT",
"engines": {
- "node": ">=10.13.0"
+ "node": ">=6"
}
},
"node_modules/tar": {
@@ -7028,26 +6255,11 @@
"node": ">=18"
}
},
- "node_modules/thenify": {
- "version": "3.3.1",
- "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz",
- "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==",
- "license": "MIT",
- "dependencies": {
- "any-promise": "^1.0.0"
- }
- },
- "node_modules/thenify-all": {
- "version": "1.6.0",
- "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz",
- "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==",
- "license": "MIT",
- "dependencies": {
- "thenify": ">= 3.1.0 < 4"
- },
- "engines": {
- "node": ">=0.8"
- }
+ "node_modules/tiny-inflate": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/tiny-inflate/-/tiny-inflate-1.0.3.tgz",
+ "integrity": "sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==",
+ "license": "MIT"
},
"node_modules/tinyexec": {
"version": "0.3.2",
@@ -7055,16 +6267,20 @@
"integrity": "sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==",
"license": "MIT"
},
- "node_modules/to-regex-range": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
- "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
+ "node_modules/tinyglobby": {
+ "version": "0.2.15",
+ "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz",
+ "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==",
"license": "MIT",
"dependencies": {
- "is-number": "^7.0.0"
+ "fdir": "^6.5.0",
+ "picomatch": "^4.0.3"
},
"engines": {
- "node": ">=8.0"
+ "node": ">=12.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/SuperchupuDev"
}
},
"node_modules/tr46": {
@@ -7093,16 +6309,10 @@
"url": "https://github.com/sponsors/wooorm"
}
},
- "node_modules/ts-interface-checker": {
- "version": "0.1.13",
- "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz",
- "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==",
- "license": "Apache-2.0"
- },
"node_modules/tsconfck": {
- "version": "3.1.4",
- "resolved": "https://registry.npmjs.org/tsconfck/-/tsconfck-3.1.4.tgz",
- "integrity": "sha512-kdqWFGVJqe+KGYvlSO9NIaWn9jT1Ny4oKVzAJsKii5eoE9snzTJzL4+MMVOMn+fikWGFmKEylcXL710V/kIPJQ==",
+ "version": "3.1.6",
+ "resolved": "https://registry.npmjs.org/tsconfck/-/tsconfck-3.1.6.tgz",
+ "integrity": "sha512-ks6Vjr/jEw0P1gmOVwutM3B7fWxoWBL2KRDb1JfqGVawBmO5UsvmWOQFGHBPl5yxYz4eERr19E6L7NMv+Fej4w==",
"license": "MIT",
"bin": {
"tsconfck": "bin/tsconfck.js"
@@ -7123,13 +6333,12 @@
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
- "license": "0BSD",
- "optional": true
+ "license": "0BSD"
},
"node_modules/type-fest": {
- "version": "4.31.0",
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.31.0.tgz",
- "integrity": "sha512-yCxltHW07Nkhv/1F6wWBr8kz+5BGMfP+RbRSYFnegVb0qV/UMT0G0ElBloPVerqn4M2ZV80Ir1FtCcYv1cT6vQ==",
+ "version": "4.37.0",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.37.0.tgz",
+ "integrity": "sha512-S/5/0kFftkq27FPNye0XM1e2NsnoD/3FS+pBmbjmmtLT6I+i344KoOf7pvXreaFsDamWeaJX55nczA1m5PsBDg==",
"license": "(MIT OR CC0-1.0)",
"engines": {
"node": ">=16"
@@ -7139,9 +6348,9 @@
}
},
"node_modules/typescript": {
- "version": "5.7.2",
- "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.7.2.tgz",
- "integrity": "sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==",
+ "version": "5.8.2",
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.2.tgz",
+ "integrity": "sha512-aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ==",
"license": "Apache-2.0",
"peer": true,
"bin": {
@@ -7153,15 +6362,15 @@
}
},
"node_modules/ufo": {
- "version": "1.5.4",
- "resolved": "https://registry.npmjs.org/ufo/-/ufo-1.5.4.tgz",
- "integrity": "sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==",
+ "version": "1.6.1",
+ "resolved": "https://registry.npmjs.org/ufo/-/ufo-1.6.1.tgz",
+ "integrity": "sha512-9a4/uxlTWJ4+a5i0ooc1rU7C7YOw3wT+UGqdeNNHWnOF9qcMBgLRS+4IYUqbczewFx4mLEig6gawh7X6mFlEkA==",
"license": "MIT"
},
"node_modules/ultrahtml": {
- "version": "1.5.3",
- "resolved": "https://registry.npmjs.org/ultrahtml/-/ultrahtml-1.5.3.tgz",
- "integrity": "sha512-GykOvZwgDWZlTQMtp5jrD4BVL+gNn2NVlVafjcFUJ7taY20tqYdwdoWBFy6GBJsNTZe1GkGPkSl5knQAjtgceg==",
+ "version": "1.6.0",
+ "resolved": "https://registry.npmjs.org/ultrahtml/-/ultrahtml-1.6.0.tgz",
+ "integrity": "sha512-R9fBn90VTJrqqLDwyMph+HGne8eqY1iPfYhPzZrvKpIfwkWZbcYlfpsb8B9dTvBfpy1/hqAD7Wi8EKfP9e8zdw==",
"license": "MIT"
},
"node_modules/uncrypto": {
@@ -7176,17 +6385,24 @@
"integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==",
"license": "MIT"
},
- "node_modules/unenv": {
- "version": "1.10.0",
- "resolved": "https://registry.npmjs.org/unenv/-/unenv-1.10.0.tgz",
- "integrity": "sha512-wY5bskBQFL9n3Eca5XnhH6KbUo/tfvkwm9OpcdCvLaeA7piBNbavbOKJySEwQ1V0RH6HvNlSAFRTpvTqgKRQXQ==",
+ "node_modules/unicode-properties": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/unicode-properties/-/unicode-properties-1.4.1.tgz",
+ "integrity": "sha512-CLjCCLQ6UuMxWnbIylkisbRj31qxHPAurvena/0iwSVbQ2G1VY5/HjV0IRabOEbDHlzZlRdCrD4NhB0JtU40Pg==",
"license": "MIT",
"dependencies": {
- "consola": "^3.2.3",
- "defu": "^6.1.4",
- "mime": "^3.0.0",
- "node-fetch-native": "^1.6.4",
- "pathe": "^1.1.2"
+ "base64-js": "^1.3.0",
+ "unicode-trie": "^2.0.0"
+ }
+ },
+ "node_modules/unicode-trie": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/unicode-trie/-/unicode-trie-2.0.0.tgz",
+ "integrity": "sha512-x7bc76x0bm4prf1VLg79uhAzKw8DVboClSN5VxJuQ+LKDOVEW9CdH+VY7SP+vX7xCYQqzzgQpFqz15zeLvAtZQ==",
+ "license": "MIT",
+ "dependencies": {
+ "pako": "^0.2.5",
+ "tiny-inflate": "^1.0.0"
}
},
"node_modules/unified": {
@@ -7208,11 +6424,21 @@
"url": "https://opencollective.com/unified"
}
},
+ "node_modules/unifont": {
+ "version": "0.5.2",
+ "resolved": "https://registry.npmjs.org/unifont/-/unifont-0.5.2.tgz",
+ "integrity": "sha512-LzR4WUqzH9ILFvjLAUU7dK3Lnou/qd5kD+IakBtBK4S15/+x2y9VX+DcWQv6s551R6W+vzwgVS6tFg3XggGBgg==",
+ "license": "MIT",
+ "dependencies": {
+ "css-tree": "^3.0.0",
+ "ofetch": "^1.4.1",
+ "ohash": "^2.0.0"
+ }
+ },
"node_modules/unist-util-find-after": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/unist-util-find-after/-/unist-util-find-after-5.0.0.tgz",
"integrity": "sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ==",
- "license": "MIT",
"dependencies": {
"@types/unist": "^3.0.0",
"unist-util-is": "^6.0.0"
@@ -7279,7 +6505,6 @@
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-5.0.0.tgz",
"integrity": "sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==",
- "license": "MIT",
"dependencies": {
"@types/unist": "^3.0.0",
"unist-util-visit": "^5.0.0"
@@ -7325,691 +6550,256 @@
"dependencies": {
"@types/unist": "^3.0.0"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/unist-util-visit-parents": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.1.tgz",
- "integrity": "sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==",
- "license": "MIT",
- "dependencies": {
- "@types/unist": "^3.0.0",
- "unist-util-is": "^6.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/unstorage": {
- "version": "1.14.4",
- "resolved": "https://registry.npmjs.org/unstorage/-/unstorage-1.14.4.tgz",
- "integrity": "sha512-1SYeamwuYeQJtJ/USE1x4l17LkmQBzg7deBJ+U9qOBoHo15d1cDxG4jM31zKRgF7pG0kirZy4wVMX6WL6Zoscg==",
- "license": "MIT",
- "dependencies": {
- "anymatch": "^3.1.3",
- "chokidar": "^3.6.0",
- "destr": "^2.0.3",
- "h3": "^1.13.0",
- "lru-cache": "^10.4.3",
- "node-fetch-native": "^1.6.4",
- "ofetch": "^1.4.1",
- "ufo": "^1.5.4"
- },
- "peerDependencies": {
- "@azure/app-configuration": "^1.8.0",
- "@azure/cosmos": "^4.2.0",
- "@azure/data-tables": "^13.3.0",
- "@azure/identity": "^4.5.0",
- "@azure/keyvault-secrets": "^4.9.0",
- "@azure/storage-blob": "^12.26.0",
- "@capacitor/preferences": "^6.0.3",
- "@deno/kv": ">=0.8.4",
- "@netlify/blobs": "^6.5.0 || ^7.0.0 || ^8.1.0",
- "@planetscale/database": "^1.19.0",
- "@upstash/redis": "^1.34.3",
- "@vercel/blob": ">=0.27.0",
- "@vercel/kv": "^1.0.1",
- "aws4fetch": "^1.0.20",
- "db0": ">=0.2.1",
- "idb-keyval": "^6.2.1",
- "ioredis": "^5.4.2",
- "uploadthing": "^7.4.1"
- },
- "peerDependenciesMeta": {
- "@azure/app-configuration": {
- "optional": true
- },
- "@azure/cosmos": {
- "optional": true
- },
- "@azure/data-tables": {
- "optional": true
- },
- "@azure/identity": {
- "optional": true
- },
- "@azure/keyvault-secrets": {
- "optional": true
- },
- "@azure/storage-blob": {
- "optional": true
- },
- "@capacitor/preferences": {
- "optional": true
- },
- "@deno/kv": {
- "optional": true
- },
- "@netlify/blobs": {
- "optional": true
- },
- "@planetscale/database": {
- "optional": true
- },
- "@upstash/redis": {
- "optional": true
- },
- "@vercel/blob": {
- "optional": true
- },
- "@vercel/kv": {
- "optional": true
- },
- "aws4fetch": {
- "optional": true
- },
- "db0": {
- "optional": true
- },
- "idb-keyval": {
- "optional": true
- },
- "ioredis": {
- "optional": true
- },
- "uploadthing": {
- "optional": true
- }
- }
- },
- "node_modules/update-browserslist-db": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz",
- "integrity": "sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==",
- "funding": [
- {
- "type": "opencollective",
- "url": "https://opencollective.com/browserslist"
- },
- {
- "type": "tidelift",
- "url": "https://tidelift.com/funding/github/npm/browserslist"
- },
- {
- "type": "github",
- "url": "https://github.com/sponsors/ai"
- }
- ],
- "license": "MIT",
- "dependencies": {
- "escalade": "^3.2.0",
- "picocolors": "^1.1.0"
- },
- "bin": {
- "update-browserslist-db": "cli.js"
- },
- "peerDependencies": {
- "browserslist": ">= 4.21.0"
- }
- },
- "node_modules/urlpattern-polyfill": {
- "version": "8.0.2",
- "resolved": "https://registry.npmjs.org/urlpattern-polyfill/-/urlpattern-polyfill-8.0.2.tgz",
- "integrity": "sha512-Qp95D4TPJl1kC9SKigDcqgyM2VDVO4RiJc2d4qe5GrYm+zbIQCWWKAFaJNQ4BhdFeDGwBmAxqJBwWSJDb9T3BQ==",
- "license": "MIT"
- },
- "node_modules/util-deprecate": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
- "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
- "license": "MIT"
- },
- "node_modules/vfile": {
- "version": "6.0.3",
- "resolved": "https://registry.npmjs.org/vfile/-/vfile-6.0.3.tgz",
- "integrity": "sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==",
- "license": "MIT",
- "dependencies": {
- "@types/unist": "^3.0.0",
- "vfile-message": "^4.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/vfile-location": {
- "version": "5.0.3",
- "resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-5.0.3.tgz",
- "integrity": "sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==",
- "license": "MIT",
- "dependencies": {
- "@types/unist": "^3.0.0",
- "vfile": "^6.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/vfile-message": {
- "version": "4.0.2",
- "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.2.tgz",
- "integrity": "sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==",
- "license": "MIT",
- "dependencies": {
- "@types/unist": "^3.0.0",
- "unist-util-stringify-position": "^4.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/vite": {
- "version": "6.0.7",
- "resolved": "https://registry.npmjs.org/vite/-/vite-6.0.7.tgz",
- "integrity": "sha512-RDt8r/7qx9940f8FcOIAH9PTViRrghKaK2K1jY3RaAURrEUbm9Du1mJ72G+jlhtG3WwodnfzY8ORQZbBavZEAQ==",
- "license": "MIT",
- "dependencies": {
- "esbuild": "^0.24.2",
- "postcss": "^8.4.49",
- "rollup": "^4.23.0"
- },
- "bin": {
- "vite": "bin/vite.js"
- },
- "engines": {
- "node": "^18.0.0 || ^20.0.0 || >=22.0.0"
- },
- "funding": {
- "url": "https://github.com/vitejs/vite?sponsor=1"
- },
- "optionalDependencies": {
- "fsevents": "~2.3.3"
- },
- "peerDependencies": {
- "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0",
- "jiti": ">=1.21.0",
- "less": "*",
- "lightningcss": "^1.21.0",
- "sass": "*",
- "sass-embedded": "*",
- "stylus": "*",
- "sugarss": "*",
- "terser": "^5.16.0",
- "tsx": "^4.8.1",
- "yaml": "^2.4.2"
- },
- "peerDependenciesMeta": {
- "@types/node": {
- "optional": true
- },
- "jiti": {
- "optional": true
- },
- "less": {
- "optional": true
- },
- "lightningcss": {
- "optional": true
- },
- "sass": {
- "optional": true
- },
- "sass-embedded": {
- "optional": true
- },
- "stylus": {
- "optional": true
- },
- "sugarss": {
- "optional": true
- },
- "terser": {
- "optional": true
- },
- "tsx": {
- "optional": true
- },
- "yaml": {
- "optional": true
- }
- }
- },
- "node_modules/vite/node_modules/@esbuild/aix-ppc64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.24.2.tgz",
- "integrity": "sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==",
- "cpu": [
- "ppc64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "aix"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/vite/node_modules/@esbuild/android-arm": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.24.2.tgz",
- "integrity": "sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==",
- "cpu": [
- "arm"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "android"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/vite/node_modules/@esbuild/android-arm64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.24.2.tgz",
- "integrity": "sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==",
- "cpu": [
- "arm64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "android"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/vite/node_modules/@esbuild/android-x64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.24.2.tgz",
- "integrity": "sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==",
- "cpu": [
- "x64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "android"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/vite/node_modules/@esbuild/darwin-arm64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.24.2.tgz",
- "integrity": "sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==",
- "cpu": [
- "arm64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/vite/node_modules/@esbuild/darwin-x64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.24.2.tgz",
- "integrity": "sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==",
- "cpu": [
- "x64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/vite/node_modules/@esbuild/freebsd-arm64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.24.2.tgz",
- "integrity": "sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==",
- "cpu": [
- "arm64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "freebsd"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/vite/node_modules/@esbuild/freebsd-x64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.24.2.tgz",
- "integrity": "sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==",
- "cpu": [
- "x64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "freebsd"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/vite/node_modules/@esbuild/linux-arm": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.24.2.tgz",
- "integrity": "sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==",
- "cpu": [
- "arm"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/vite/node_modules/@esbuild/linux-arm64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.24.2.tgz",
- "integrity": "sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==",
- "cpu": [
- "arm64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/vite/node_modules/@esbuild/linux-ia32": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.24.2.tgz",
- "integrity": "sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==",
- "cpu": [
- "ia32"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/vite/node_modules/@esbuild/linux-loong64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.24.2.tgz",
- "integrity": "sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==",
- "cpu": [
- "loong64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/vite/node_modules/@esbuild/linux-mips64el": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.24.2.tgz",
- "integrity": "sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==",
- "cpu": [
- "mips64el"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/vite/node_modules/@esbuild/linux-ppc64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.24.2.tgz",
- "integrity": "sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==",
- "cpu": [
- "ppc64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/vite/node_modules/@esbuild/linux-riscv64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.24.2.tgz",
- "integrity": "sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==",
- "cpu": [
- "riscv64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/vite/node_modules/@esbuild/linux-s390x": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.24.2.tgz",
- "integrity": "sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==",
- "cpu": [
- "s390x"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/vite/node_modules/@esbuild/linux-x64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.24.2.tgz",
- "integrity": "sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==",
- "cpu": [
- "x64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/vite/node_modules/@esbuild/netbsd-x64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.24.2.tgz",
- "integrity": "sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==",
- "cpu": [
- "x64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "netbsd"
- ],
- "engines": {
- "node": ">=18"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/vite/node_modules/@esbuild/openbsd-x64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.24.2.tgz",
- "integrity": "sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==",
- "cpu": [
- "x64"
- ],
+ "node_modules/unist-util-visit-parents": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.1.tgz",
+ "integrity": "sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==",
"license": "MIT",
- "optional": true,
- "os": [
- "openbsd"
- ],
- "engines": {
- "node": ">=18"
+ "dependencies": {
+ "@types/unist": "^3.0.0",
+ "unist-util-is": "^6.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/vite/node_modules/@esbuild/sunos-x64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.24.2.tgz",
- "integrity": "sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==",
- "cpu": [
- "x64"
- ],
+ "node_modules/unstorage": {
+ "version": "1.17.1",
+ "resolved": "https://registry.npmjs.org/unstorage/-/unstorage-1.17.1.tgz",
+ "integrity": "sha512-KKGwRTT0iVBCErKemkJCLs7JdxNVfqTPc/85ae1XES0+bsHbc/sFBfVi5kJp156cc51BHinIH2l3k0EZ24vOBQ==",
"license": "MIT",
- "optional": true,
- "os": [
- "sunos"
- ],
- "engines": {
- "node": ">=18"
+ "dependencies": {
+ "anymatch": "^3.1.3",
+ "chokidar": "^4.0.3",
+ "destr": "^2.0.5",
+ "h3": "^1.15.4",
+ "lru-cache": "^10.4.3",
+ "node-fetch-native": "^1.6.7",
+ "ofetch": "^1.4.1",
+ "ufo": "^1.6.1"
+ },
+ "peerDependencies": {
+ "@azure/app-configuration": "^1.8.0",
+ "@azure/cosmos": "^4.2.0",
+ "@azure/data-tables": "^13.3.0",
+ "@azure/identity": "^4.6.0",
+ "@azure/keyvault-secrets": "^4.9.0",
+ "@azure/storage-blob": "^12.26.0",
+ "@capacitor/preferences": "^6.0.3 || ^7.0.0",
+ "@deno/kv": ">=0.9.0",
+ "@netlify/blobs": "^6.5.0 || ^7.0.0 || ^8.1.0 || ^9.0.0 || ^10.0.0",
+ "@planetscale/database": "^1.19.0",
+ "@upstash/redis": "^1.34.3",
+ "@vercel/blob": ">=0.27.1",
+ "@vercel/functions": "^2.2.12 || ^3.0.0",
+ "@vercel/kv": "^1.0.1",
+ "aws4fetch": "^1.0.20",
+ "db0": ">=0.2.1",
+ "idb-keyval": "^6.2.1",
+ "ioredis": "^5.4.2",
+ "uploadthing": "^7.4.4"
+ },
+ "peerDependenciesMeta": {
+ "@azure/app-configuration": {
+ "optional": true
+ },
+ "@azure/cosmos": {
+ "optional": true
+ },
+ "@azure/data-tables": {
+ "optional": true
+ },
+ "@azure/identity": {
+ "optional": true
+ },
+ "@azure/keyvault-secrets": {
+ "optional": true
+ },
+ "@azure/storage-blob": {
+ "optional": true
+ },
+ "@capacitor/preferences": {
+ "optional": true
+ },
+ "@deno/kv": {
+ "optional": true
+ },
+ "@netlify/blobs": {
+ "optional": true
+ },
+ "@planetscale/database": {
+ "optional": true
+ },
+ "@upstash/redis": {
+ "optional": true
+ },
+ "@vercel/blob": {
+ "optional": true
+ },
+ "@vercel/functions": {
+ "optional": true
+ },
+ "@vercel/kv": {
+ "optional": true
+ },
+ "aws4fetch": {
+ "optional": true
+ },
+ "db0": {
+ "optional": true
+ },
+ "idb-keyval": {
+ "optional": true
+ },
+ "ioredis": {
+ "optional": true
+ },
+ "uploadthing": {
+ "optional": true
+ }
}
},
- "node_modules/vite/node_modules/@esbuild/win32-arm64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.24.2.tgz",
- "integrity": "sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==",
- "cpu": [
- "arm64"
- ],
+ "node_modules/util-deprecate": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
+ "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/vfile": {
+ "version": "6.0.3",
+ "resolved": "https://registry.npmjs.org/vfile/-/vfile-6.0.3.tgz",
+ "integrity": "sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==",
"license": "MIT",
- "optional": true,
- "os": [
- "win32"
- ],
- "engines": {
- "node": ">=18"
+ "dependencies": {
+ "@types/unist": "^3.0.0",
+ "vfile-message": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/vite/node_modules/@esbuild/win32-ia32": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.24.2.tgz",
- "integrity": "sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==",
- "cpu": [
- "ia32"
- ],
+ "node_modules/vfile-location": {
+ "version": "5.0.3",
+ "resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-5.0.3.tgz",
+ "integrity": "sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==",
"license": "MIT",
- "optional": true,
- "os": [
- "win32"
- ],
- "engines": {
- "node": ">=18"
+ "dependencies": {
+ "@types/unist": "^3.0.0",
+ "vfile": "^6.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/vite/node_modules/@esbuild/win32-x64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.24.2.tgz",
- "integrity": "sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==",
- "cpu": [
- "x64"
- ],
+ "node_modules/vfile-message": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.2.tgz",
+ "integrity": "sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==",
"license": "MIT",
- "optional": true,
- "os": [
- "win32"
- ],
- "engines": {
- "node": ">=18"
+ "dependencies": {
+ "@types/unist": "^3.0.0",
+ "unist-util-stringify-position": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/vite/node_modules/esbuild": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.24.2.tgz",
- "integrity": "sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==",
- "hasInstallScript": true,
+ "node_modules/vite": {
+ "version": "6.3.6",
+ "resolved": "https://registry.npmjs.org/vite/-/vite-6.3.6.tgz",
+ "integrity": "sha512-0msEVHJEScQbhkbVTb/4iHZdJ6SXp/AvxL2sjwYQFfBqleHtnCqv1J3sa9zbWz/6kW1m9Tfzn92vW+kZ1WV6QA==",
"license": "MIT",
+ "dependencies": {
+ "esbuild": "^0.25.0",
+ "fdir": "^6.4.4",
+ "picomatch": "^4.0.2",
+ "postcss": "^8.5.3",
+ "rollup": "^4.34.9",
+ "tinyglobby": "^0.2.13"
+ },
"bin": {
- "esbuild": "bin/esbuild"
+ "vite": "bin/vite.js"
},
"engines": {
- "node": ">=18"
+ "node": "^18.0.0 || ^20.0.0 || >=22.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/vitejs/vite?sponsor=1"
},
"optionalDependencies": {
- "@esbuild/aix-ppc64": "0.24.2",
- "@esbuild/android-arm": "0.24.2",
- "@esbuild/android-arm64": "0.24.2",
- "@esbuild/android-x64": "0.24.2",
- "@esbuild/darwin-arm64": "0.24.2",
- "@esbuild/darwin-x64": "0.24.2",
- "@esbuild/freebsd-arm64": "0.24.2",
- "@esbuild/freebsd-x64": "0.24.2",
- "@esbuild/linux-arm": "0.24.2",
- "@esbuild/linux-arm64": "0.24.2",
- "@esbuild/linux-ia32": "0.24.2",
- "@esbuild/linux-loong64": "0.24.2",
- "@esbuild/linux-mips64el": "0.24.2",
- "@esbuild/linux-ppc64": "0.24.2",
- "@esbuild/linux-riscv64": "0.24.2",
- "@esbuild/linux-s390x": "0.24.2",
- "@esbuild/linux-x64": "0.24.2",
- "@esbuild/netbsd-arm64": "0.24.2",
- "@esbuild/netbsd-x64": "0.24.2",
- "@esbuild/openbsd-arm64": "0.24.2",
- "@esbuild/openbsd-x64": "0.24.2",
- "@esbuild/sunos-x64": "0.24.2",
- "@esbuild/win32-arm64": "0.24.2",
- "@esbuild/win32-ia32": "0.24.2",
- "@esbuild/win32-x64": "0.24.2"
+ "fsevents": "~2.3.3"
+ },
+ "peerDependencies": {
+ "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0",
+ "jiti": ">=1.21.0",
+ "less": "*",
+ "lightningcss": "^1.21.0",
+ "sass": "*",
+ "sass-embedded": "*",
+ "stylus": "*",
+ "sugarss": "*",
+ "terser": "^5.16.0",
+ "tsx": "^4.8.1",
+ "yaml": "^2.4.2"
+ },
+ "peerDependenciesMeta": {
+ "@types/node": {
+ "optional": true
+ },
+ "jiti": {
+ "optional": true
+ },
+ "less": {
+ "optional": true
+ },
+ "lightningcss": {
+ "optional": true
+ },
+ "sass": {
+ "optional": true
+ },
+ "sass-embedded": {
+ "optional": true
+ },
+ "stylus": {
+ "optional": true
+ },
+ "sugarss": {
+ "optional": true
+ },
+ "terser": {
+ "optional": true
+ },
+ "tsx": {
+ "optional": true
+ },
+ "yaml": {
+ "optional": true
+ }
}
},
"node_modules/vitefu": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/vitefu/-/vitefu-1.0.5.tgz",
- "integrity": "sha512-h4Vflt9gxODPFNGPwp4zAMZRpZR7eslzwH2c5hn5kNZ5rhnKyRJ50U+yGCdc2IRaBs8O4haIgLNGrV5CrpMsCA==",
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/vitefu/-/vitefu-1.1.1.tgz",
+ "integrity": "sha512-B/Fegf3i8zh0yFbpzZ21amWzHmuNlLlmJT6n7bu5e+pCHUKQIfXSYokrqOBGEMMe9UG2sostKQF9mml/vYaWJQ==",
"license": "MIT",
"workspaces": [
"tests/deps/*",
- "tests/projects/*"
+ "tests/projects/*",
+ "tests/projects/workspace/packages/*"
],
"peerDependencies": {
- "vite": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0"
+ "vite": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0-beta.0"
},
"peerDependenciesMeta": {
"vite": {
@@ -8058,18 +6848,6 @@
"node": ">= 8"
}
},
- "node_modules/which-pm": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/which-pm/-/which-pm-3.0.0.tgz",
- "integrity": "sha512-ysVYmw6+ZBhx3+ZkcPwRuJi38ZOTLJJ33PSHaitLxSKUMsh0LkKd0nC69zZCwt5D+AYUcMK2hhw4yWny20vSGg==",
- "license": "MIT",
- "dependencies": {
- "load-yaml-file": "^0.2.0"
- },
- "engines": {
- "node": ">=18.12"
- }
- },
"node_modules/which-pm-runs": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/which-pm-runs/-/which-pm-runs-1.1.0.tgz",
@@ -8185,12 +6963,6 @@
"node": ">=8"
}
},
- "node_modules/wrappy": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
- "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
- "license": "ISC"
- },
"node_modules/xxhash-wasm": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/xxhash-wasm/-/xxhash-wasm-1.1.0.tgz",
@@ -8210,6 +6982,9 @@
"version": "2.7.0",
"resolved": "https://registry.npmjs.org/yaml/-/yaml-2.7.0.tgz",
"integrity": "sha512-+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA==",
+ "license": "ISC",
+ "optional": true,
+ "peer": true,
"bin": {
"yaml": "bin.mjs"
},
@@ -8227,9 +7002,9 @@
}
},
"node_modules/yocto-queue": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.1.1.tgz",
- "integrity": "sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==",
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.2.0.tgz",
+ "integrity": "sha512-KHBC7z61OJeaMGnF3wqNZj+GGNXOyypZviiKpQeiHirG5Ib1ImwcLBH70rbMSkKfSmUNBsdf2PwaEJtKvgmkNw==",
"license": "MIT",
"engines": {
"node": ">=12.20"
@@ -8239,9 +7014,9 @@
}
},
"node_modules/yocto-spinner": {
- "version": "0.1.2",
- "resolved": "https://registry.npmjs.org/yocto-spinner/-/yocto-spinner-0.1.2.tgz",
- "integrity": "sha512-VfmLIh/ZSZOJnVRQZc/dvpPP90lWL4G0bmxQMP0+U/2vKBA8GSpcBuWv17y7F+CZItRuO97HN1wdbb4p10uhOg==",
+ "version": "0.2.3",
+ "resolved": "https://registry.npmjs.org/yocto-spinner/-/yocto-spinner-0.2.3.tgz",
+ "integrity": "sha512-sqBChb33loEnkoXte1bLg45bEBsOP9N1kzQh5JZNKj/0rik4zAPTNSAVPj3uQAdc6slYJ0Ksc403G2XgxsJQFQ==",
"license": "MIT",
"dependencies": {
"yoctocolors": "^2.1.1"
@@ -8254,9 +7029,9 @@
}
},
"node_modules/yoctocolors": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/yoctocolors/-/yoctocolors-2.1.1.tgz",
- "integrity": "sha512-GQHQqAopRhwU8Kt1DDM8NjibDXHC8eoh1erhGAJPEyveY9qqVeXvVikNKrDz69sHowPMorbPUrH/mx8c50eiBQ==",
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/yoctocolors/-/yoctocolors-2.1.2.tgz",
+ "integrity": "sha512-CzhO+pFNo8ajLM2d2IW/R93ipy99LWjtwblvC1RsoSUMZgyLbYFr221TnSNT7GjGdYui6P459mw9JH/g/zW2ug==",
"license": "MIT",
"engines": {
"node": ">=18"
@@ -8266,18 +7041,18 @@
}
},
"node_modules/zod": {
- "version": "3.24.1",
- "resolved": "https://registry.npmjs.org/zod/-/zod-3.24.1.tgz",
- "integrity": "sha512-muH7gBL9sI1nciMZV67X5fTKKBLtwpZ5VBp1vsOQzj1MhrBZ4wlVCm3gedKZWLp0Oyel8sIGfeiz54Su+OVT+A==",
+ "version": "3.25.76",
+ "resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
+ "integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
"license": "MIT",
"funding": {
"url": "https://github.com/sponsors/colinhacks"
}
},
"node_modules/zod-to-json-schema": {
- "version": "3.24.1",
- "resolved": "https://registry.npmjs.org/zod-to-json-schema/-/zod-to-json-schema-3.24.1.tgz",
- "integrity": "sha512-3h08nf3Vw3Wl3PK+q3ow/lIil81IT2Oa7YpQyUUDsEWbXveMesdfK1xBd2RhCkynwZndAxixji/7SYJJowr62w==",
+ "version": "3.24.6",
+ "resolved": "https://registry.npmjs.org/zod-to-json-schema/-/zod-to-json-schema-3.24.6.tgz",
+ "integrity": "sha512-h/z3PKvcTcTetyjl1fkj79MHNEjm+HpD6NXheWjzOekY7kV+lwDYnHw+ivHkijnCSMz1yJaWBD9vu/Fcmk+vEg==",
"license": "ISC",
"peerDependencies": {
"zod": "^3.24.1"
diff --git a/package.json b/package.json
index 07449fd..bb1e002 100644
--- a/package.json
+++ b/package.json
@@ -9,16 +9,16 @@
"astro": "astro"
},
"dependencies": {
- "@astrojs/mdx": "^4.0.3",
- "@astrojs/netlify": "^6.0.1",
+ "@astrojs/mdx": "^4.2.2",
+ "@astrojs/netlify": "^6.2.4",
"@astrojs/rss": "^4.0.11",
- "@astrojs/sitemap": "^3.2.1",
- "@astrojs/tailwind": "^5.1.4",
- "astro": "^5.1.2",
- "tailwindcss": "^3.4.17"
+ "@astrojs/sitemap": "^3.3.0",
+ "@tailwindcss/vite": "^4.0.13",
+ "astro": "^5.5.5",
+ "tailwindcss": "^4.0.13"
},
"devDependencies": {
- "@tailwindcss/typography": "^0.5.15",
- "daisyui": "^4.12.23"
+ "@tailwindcss/typography": "^0.5.16",
+ "daisyui": "^5.0.2"
}
}
diff --git a/_headers b/public/_headers
similarity index 100%
rename from _headers
rename to public/_headers
diff --git a/public/_redirects b/public/_redirects
new file mode 100644
index 0000000..2a1e19e
--- /dev/null
+++ b/public/_redirects
@@ -0,0 +1,5 @@
+# See: https://docs.netlify.com/routing/redirects/
+# https://docs.netlify.com/routing/redirects/redirect-options/
+/schemas/previous/* /schemas/0.9/:splat 200
+/schemas/latest/* /schemas/1.0.0/:splat 200
+/schemas/snapshot/* /schemas/1.0.0/:splat 200
diff --git a/public/img/logos/cncf-color-bg.svg b/public/img/logos/cncf-color-bg.svg
new file mode 100644
index 0000000..c8d667f
--- /dev/null
+++ b/public/img/logos/cncf-color-bg.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/public/img/logos/cncf-white-logo.svg b/public/img/logos/cncf-white-logo.svg
new file mode 100644
index 0000000..bef1f96
--- /dev/null
+++ b/public/img/logos/cncf-white-logo.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/public/img/logos/foxflow.svg b/public/img/logos/foxflow.svg
new file mode 100644
index 0000000..85b4789
--- /dev/null
+++ b/public/img/logos/foxflow.svg
@@ -0,0 +1,12 @@
+
diff --git a/public/img/logos/huawei.png b/public/img/logos/huawei.png
index bcdae63..a31877b 100644
Binary files a/public/img/logos/huawei.png and b/public/img/logos/huawei.png differ
diff --git a/public/img/logos/huawei.svg b/public/img/logos/huawei.svg
new file mode 100644
index 0000000..7e108e1
--- /dev/null
+++ b/public/img/logos/huawei.svg
@@ -0,0 +1,22 @@
+
\ No newline at end of file
diff --git a/public/img/logos/lemlinelogo.png b/public/img/logos/lemlinelogo.png
new file mode 100644
index 0000000..4062c37
Binary files /dev/null and b/public/img/logos/lemlinelogo.png differ
diff --git a/public/img/logos/lf-stacked-color.svg b/public/img/logos/lf-stacked-color.svg
new file mode 100644
index 0000000..e8df47f
--- /dev/null
+++ b/public/img/logos/lf-stacked-color.svg
@@ -0,0 +1,49 @@
+
+
+
diff --git a/public/img/logos/lf-stacked-white.svg b/public/img/logos/lf-stacked-white.svg
new file mode 100644
index 0000000..fd7114c
--- /dev/null
+++ b/public/img/logos/lf-stacked-white.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/public/img/logos/neuroglia.png b/public/img/logos/neuroglia.png
index c89a44b..0f5dfad 100644
Binary files a/public/img/logos/neuroglia.png and b/public/img/logos/neuroglia.png differ
diff --git a/public/schemas/1.0.0/workflow.json b/public/schemas/1.0.0/workflow.json
new file mode 100644
index 0000000..8fc3565
--- /dev/null
+++ b/public/schemas/1.0.0/workflow.json
@@ -0,0 +1,2694 @@
+{
+ "$id": "https://serverlessworkflow.io/schemas/1.0.0/workflow.json",
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "description": "Serverless Workflow DSL - Workflow Schema.",
+ "type": "object",
+ "required": [
+ "document",
+ "do"
+ ],
+ "properties": {
+ "document": {
+ "type": "object",
+ "title": "Document",
+ "description": "Documents the workflow.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "dsl": {
+ "type": "string",
+ "pattern": "^(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$",
+ "title": "WorkflowDSL",
+ "description": "The version of the DSL used by the workflow."
+ },
+ "namespace": {
+ "type": "string",
+ "pattern": "^[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?$",
+ "title": "WorkflowNamespace",
+ "description": "The workflow's namespace."
+ },
+ "name": {
+ "type": "string",
+ "pattern": "^[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?$",
+ "title": "WorkflowName",
+ "description": "The workflow's name."
+ },
+ "version": {
+ "type": "string",
+ "pattern": "^(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$",
+ "title": "WorkflowVersion",
+ "description": "The workflow's semantic version."
+ },
+ "title": {
+ "type": "string",
+ "title": "WorkflowTitle",
+ "description": "The workflow's title."
+ },
+ "summary": {
+ "type": "string",
+ "title": "WorkflowSummary",
+ "description": "The workflow's Markdown summary."
+ },
+ "tags": {
+ "type": "object",
+ "title": "WorkflowTags",
+ "description": "A key/value mapping of the workflow's tags, if any.",
+ "additionalProperties": true
+ },
+ "metadata": {
+ "type": "object",
+ "title": "WorkflowMetadata",
+ "description": "Holds additional information about the workflow.",
+ "additionalProperties": true
+ }
+ },
+ "required": [
+ "dsl",
+ "namespace",
+ "name",
+ "version"
+ ]
+ },
+ "input": {
+ "$ref": "#/$defs/input",
+ "title": "Input",
+ "description": "Configures the workflow's input."
+ },
+ "use": {
+ "type": "object",
+ "title": "Use",
+ "description": "Defines the workflow's reusable components.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "authentications": {
+ "type": "object",
+ "title": "UseAuthentications",
+ "description": "The workflow's reusable authentication policies.",
+ "additionalProperties": {
+ "$ref": "#/$defs/authenticationPolicy"
+ }
+ },
+ "errors": {
+ "type": "object",
+ "title": "UseErrors",
+ "description": "The workflow's reusable errors.",
+ "additionalProperties": {
+ "$ref": "#/$defs/error"
+ }
+ },
+ "extensions": {
+ "type": "array",
+ "title": "UseExtensions",
+ "description": "The workflow's extensions.",
+ "items": {
+ "type": "object",
+ "title": "ExtensionItem",
+ "minProperties": 1,
+ "maxProperties": 1,
+ "additionalProperties": {
+ "$ref": "#/$defs/extension"
+ }
+ }
+ },
+ "functions": {
+ "type": "object",
+ "title": "UseFunctions",
+ "description": "The workflow's reusable functions.",
+ "additionalProperties": {
+ "$ref": "#/$defs/task"
+ }
+ },
+ "retries": {
+ "type": "object",
+ "title": "UseRetries",
+ "description": "The workflow's reusable retry policies.",
+ "additionalProperties": {
+ "$ref": "#/$defs/retryPolicy"
+ }
+ },
+ "secrets": {
+ "type": "array",
+ "title": "UseSecrets",
+ "description": "The workflow's reusable secrets.",
+ "items": {
+ "type": "string",
+ "description": "The workflow's secrets."
+ }
+ },
+ "timeouts": {
+ "type": "object",
+ "title": "UseTimeouts",
+ "description": "The workflow's reusable timeouts.",
+ "additionalProperties": {
+ "$ref": "#/$defs/timeout"
+ }
+ },
+ "catalogs": {
+ "type": "object",
+ "title": "UseCatalogs",
+ "description": "The workflow's reusable catalogs.",
+ "additionalProperties": {
+ "$ref": "#/$defs/catalog"
+ }
+ }
+ }
+ },
+ "do": {
+ "$ref": "#/$defs/taskList",
+ "title": "Do",
+ "description": "Defines the task(s) the workflow must perform."
+ },
+ "timeout": {
+ "title": "DoTimeout",
+ "oneOf": [
+ {
+ "$ref": "#/$defs/timeout",
+ "title": "TimeoutDefinition",
+ "description": "The workflow's timeout configuration, if any."
+ },
+ {
+ "type": "string",
+ "title": "TimeoutReference",
+ "description": "The name of the workflow's timeout, if any."
+ }
+ ]
+ },
+ "output": {
+ "$ref": "#/$defs/output",
+ "title": "Output",
+ "description": "Configures the workflow's output."
+ },
+ "schedule": {
+ "type": "object",
+ "title": "Schedule",
+ "description": "Schedules the workflow.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "every": {
+ "$ref": "#/$defs/duration",
+ "title": "ScheduleEvery",
+ "description": "Specifies the duration of the interval at which the workflow should be executed."
+ },
+ "cron": {
+ "type": "string",
+ "title": "ScheduleCron",
+ "description": "Specifies the schedule using a cron expression, e.g., '0 0 * * *' for daily at midnight."
+ },
+ "after": {
+ "$ref": "#/$defs/duration",
+ "title": "ScheduleAfter",
+ "description": "Specifies a delay duration that the workflow must wait before starting again after it completes."
+ },
+ "on": {
+ "$ref": "#/$defs/eventConsumptionStrategy",
+ "title": "ScheduleOn",
+ "description": "Specifies the events that trigger the workflow execution."
+ }
+ }
+ }
+ },
+ "$defs": {
+ "taskList": {
+ "title": "TaskList",
+ "description": "List of named tasks to perform.",
+ "type": "array",
+ "items": {
+ "type": "object",
+ "title": "TaskItem",
+ "minProperties": 1,
+ "maxProperties": 1,
+ "additionalProperties": {
+ "$ref": "#/$defs/task"
+ }
+ }
+ },
+ "taskBase": {
+ "type": "object",
+ "title": "TaskBase",
+ "description": "An object inherited by all tasks.",
+ "properties": {
+ "if": {
+ "type": "string",
+ "title": "TaskBaseIf",
+ "description": "A runtime expression, if any, used to determine whether or not the task should be run."
+ },
+ "input": {
+ "$ref": "#/$defs/input",
+ "title": "TaskBaseInput",
+ "description": "Configure the task's input."
+ },
+ "output": {
+ "$ref": "#/$defs/output",
+ "title": "TaskBaseOutput",
+ "description": "Configure the task's output."
+ },
+ "export": {
+ "$ref": "#/$defs/export",
+ "title": "TaskBaseExport",
+ "description": "Export task output to context."
+ },
+ "timeout": {
+ "title": "TaskTimeout",
+ "oneOf": [
+ {
+ "$ref": "#/$defs/timeout",
+ "title": "TaskTimeoutDefinition",
+ "description": "The task's timeout configuration, if any."
+ },
+ {
+ "type": "string",
+ "title": "TaskTimeoutReference",
+ "description": "The name of the task's timeout, if any."
+ }
+ ]
+ },
+ "then": {
+ "$ref": "#/$defs/flowDirective",
+ "title": "TaskBaseThen",
+ "description": "The flow directive to be performed upon completion of the task."
+ },
+ "metadata": {
+ "type": "object",
+ "title": "TaskMetadata",
+ "description": "Holds additional information about the task.",
+ "additionalProperties": true
+ }
+ }
+ },
+ "task": {
+ "title": "Task",
+ "description": "A discrete unit of work that contributes to achieving the overall objectives defined by the workflow.",
+ "unevaluatedProperties": false,
+ "oneOf": [
+ {
+ "$ref": "#/$defs/callTask"
+ },
+ {
+ "$ref": "#/$defs/doTask"
+ },
+ {
+ "$ref": "#/$defs/forkTask"
+ },
+ {
+ "$ref": "#/$defs/emitTask"
+ },
+ {
+ "$ref": "#/$defs/forTask"
+ },
+ {
+ "$ref": "#/$defs/listenTask"
+ },
+ {
+ "$ref": "#/$defs/raiseTask"
+ },
+ {
+ "$ref": "#/$defs/runTask"
+ },
+ {
+ "$ref": "#/$defs/setTask"
+ },
+ {
+ "$ref": "#/$defs/switchTask"
+ },
+ {
+ "$ref": "#/$defs/tryTask"
+ },
+ {
+ "$ref": "#/$defs/waitTask"
+ }
+ ]
+ },
+ "callTask": {
+ "title": "CallTask",
+ "description": "Defines the call to perform.",
+ "oneOf": [
+ {
+ "title": "CallAsyncAPI",
+ "description": "Defines the AsyncAPI call to perform.",
+ "$ref": "#/$defs/taskBase",
+ "type": "object",
+ "required": [
+ "call",
+ "with"
+ ],
+ "unevaluatedProperties": false,
+ "properties": {
+ "call": {
+ "type": "string",
+ "const": "asyncapi"
+ },
+ "with": {
+ "type": "object",
+ "title": "AsyncApiArguments",
+ "description": "The Async API call arguments.",
+ "properties": {
+ "document": {
+ "$ref": "#/$defs/externalResource",
+ "title": "AsyncAPIDocument",
+ "description": "The document that defines the AsyncAPI operation to call."
+ },
+ "channel": {
+ "type": "string",
+ "title": "With",
+ "description": "The name of the channel on which to perform the operation. Used only in case the referenced document uses AsyncAPI v2.6.0."
+ },
+ "operation": {
+ "type": "string",
+ "title": "AsyncAPIOperation",
+ "description": "A reference to the AsyncAPI operation to call."
+ },
+ "server": {
+ "$ref": "#/$defs/asyncApiServer",
+ "title": "AsyncAPIServer",
+ "description": "An object used to configure to the server to call the specified AsyncAPI operation on."
+ },
+ "protocol": {
+ "type": "string",
+ "title": "AsyncApiProtocol",
+ "description": "The protocol to use to select the target server.",
+ "enum": [
+ "amqp",
+ "amqp1",
+ "anypointmq",
+ "googlepubsub",
+ "http",
+ "ibmmq",
+ "jms",
+ "kafka",
+ "mercure",
+ "mqtt",
+ "mqtt5",
+ "nats",
+ "pulsar",
+ "redis",
+ "sns",
+ "solace",
+ "sqs",
+ "stomp",
+ "ws"
+ ]
+ },
+ "message": {
+ "$ref": "#/$defs/asyncApiOutboundMessage",
+ "title": "AsyncApiMessage",
+ "description": "An object used to configure the message to publish using the target operation."
+ },
+ "subscription": {
+ "$ref": "#/$defs/asyncApiSubscription",
+ "title": "AsyncApiSubscription",
+ "description": "An object used to configure the subscription to messages consumed using the target operation."
+ },
+ "authentication": {
+ "$ref": "#/$defs/referenceableAuthenticationPolicy",
+ "title": "AsyncAPIAuthentication",
+ "description": "The authentication policy, if any, to use when calling the AsyncAPI operation."
+ }
+ },
+ "oneOf": [
+ {
+ "required": [
+ "document",
+ "operation",
+ "message"
+ ]
+ },
+ {
+ "required": [
+ "document",
+ "operation",
+ "subscription"
+ ]
+ },
+ {
+ "required": [
+ "document",
+ "channel",
+ "message"
+ ]
+ },
+ {
+ "required": [
+ "document",
+ "channel",
+ "subscription"
+ ]
+ }
+ ],
+ "unevaluatedProperties": false
+ }
+ }
+ },
+ {
+ "title": "CallGRPC",
+ "description": "Defines the GRPC call to perform.",
+ "$ref": "#/$defs/taskBase",
+ "type": "object",
+ "unevaluatedProperties": false,
+ "required": [
+ "call",
+ "with"
+ ],
+ "properties": {
+ "call": {
+ "type": "string",
+ "const": "grpc"
+ },
+ "with": {
+ "type": "object",
+ "title": "GRPCArguments",
+ "description": "The GRPC call arguments.",
+ "properties": {
+ "proto": {
+ "$ref": "#/$defs/externalResource",
+ "title": "WithGRPCProto",
+ "description": "The proto resource that describes the GRPC service to call."
+ },
+ "service": {
+ "type": "object",
+ "title": "WithGRPCService",
+ "unevaluatedProperties": false,
+ "properties": {
+ "name": {
+ "type": "string",
+ "title": "WithGRPCServiceName",
+ "description": "The name of the GRPC service to call."
+ },
+ "host": {
+ "type": "string",
+ "title": "WithGRPCServiceHost",
+ "description": "The hostname of the GRPC service to call.",
+ "pattern": "^[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?$"
+ },
+ "port": {
+ "type": "integer",
+ "title": "WithGRPCServicePost",
+ "description": "The port number of the GRPC service to call.",
+ "minimum": 0,
+ "maximum": 65535
+ },
+ "authentication": {
+ "$ref": "#/$defs/referenceableAuthenticationPolicy",
+ "title": "WithGRPCServiceAuthentication",
+ "description": "The endpoint's authentication policy, if any."
+ }
+ },
+ "required": [
+ "name",
+ "host"
+ ]
+ },
+ "method": {
+ "type": "string",
+ "title": "WithGRPCMethod",
+ "description": "The name of the method to call on the defined GRPC service."
+ },
+ "arguments": {
+ "type": "object",
+ "title": "WithGRPCArguments",
+ "description": "The arguments, if any, to call the method with.",
+ "additionalProperties": true
+ }
+ },
+ "required": [
+ "proto",
+ "service",
+ "method"
+ ],
+ "unevaluatedProperties": false
+ }
+ }
+ },
+ {
+ "title": "CallHTTP",
+ "description": "Defines the HTTP call to perform.",
+ "$ref": "#/$defs/taskBase",
+ "type": "object",
+ "unevaluatedProperties": false,
+ "required": [
+ "call",
+ "with"
+ ],
+ "properties": {
+ "call": {
+ "type": "string",
+ "const": "http"
+ },
+ "with": {
+ "type": "object",
+ "title": "HTTPArguments",
+ "description": "The HTTP call arguments.",
+ "properties": {
+ "method": {
+ "type": "string",
+ "title": "HTTPMethod",
+ "description": "The HTTP method of the HTTP request to perform."
+ },
+ "endpoint": {
+ "title": "HTTPEndpoint",
+ "description": "The HTTP endpoint to send the request to.",
+ "$ref": "#/$defs/endpoint"
+ },
+ "headers": {
+ "type": "object",
+ "title": "HTTPHeaders",
+ "description": "A name/value mapping of the headers, if any, of the HTTP request to perform."
+ },
+ "body": {
+ "title": "HTTPBody",
+ "description": "The body, if any, of the HTTP request to perform."
+ },
+ "query": {
+ "type": "object",
+ "title": "HTTPQuery",
+ "description": "A name/value mapping of the query parameters, if any, of the HTTP request to perform.",
+ "additionalProperties": true
+ },
+ "output": {
+ "type": "string",
+ "title": "HTTPOutput",
+ "description": "The http call output format. Defaults to 'content'.",
+ "enum": [
+ "raw",
+ "content",
+ "response"
+ ]
+ },
+ "redirect": {
+ "type": "boolean",
+ "title": "HttpRedirect",
+ "description": "Specifies whether redirection status codes (`300–399`) should be treated as errors."
+ }
+ },
+ "required": [
+ "method",
+ "endpoint"
+ ],
+ "unevaluatedProperties": false
+ }
+ }
+ },
+ {
+ "title": "CallOpenAPI",
+ "description": "Defines the OpenAPI call to perform.",
+ "$ref": "#/$defs/taskBase",
+ "type": "object",
+ "unevaluatedProperties": false,
+ "required": [
+ "call",
+ "with"
+ ],
+ "properties": {
+ "call": {
+ "type": "string",
+ "const": "openapi"
+ },
+ "with": {
+ "type": "object",
+ "title": "OpenAPIArguments",
+ "description": "The OpenAPI call arguments.",
+ "properties": {
+ "document": {
+ "$ref": "#/$defs/externalResource",
+ "title": "WithOpenAPIDocument",
+ "description": "The document that defines the OpenAPI operation to call."
+ },
+ "operationId": {
+ "type": "string",
+ "title": "WithOpenAPIOperation",
+ "description": "The id of the OpenAPI operation to call."
+ },
+ "parameters": {
+ "type": "object",
+ "title": "WithOpenAPIParameters",
+ "description": "A name/value mapping of the parameters of the OpenAPI operation to call.",
+ "additionalProperties": true
+ },
+ "authentication": {
+ "$ref": "#/$defs/referenceableAuthenticationPolicy",
+ "title": "WithOpenAPIAuthentication",
+ "description": "The authentication policy, if any, to use when calling the OpenAPI operation."
+ },
+ "output": {
+ "type": "string",
+ "enum": [
+ "raw",
+ "content",
+ "response"
+ ],
+ "title": "WithOpenAPIOutput",
+ "description": "The http call output format. Defaults to 'content'."
+ },
+ "redirect": {
+ "type": "boolean",
+ "title": "HttpRedirect",
+ "description": "Specifies whether redirection status codes (`300–399`) should be treated as errors."
+ }
+ },
+ "required": [
+ "document",
+ "operationId"
+ ],
+ "unevaluatedProperties": false
+ }
+ }
+ },
+ {
+ "title": "CallFunction",
+ "description": "Defines the function call to perform.",
+ "$ref": "#/$defs/taskBase",
+ "type": "object",
+ "unevaluatedProperties": false,
+ "required": [
+ "call"
+ ],
+ "properties": {
+ "call": {
+ "type": "string",
+ "not": {
+ "enum": [
+ "asyncapi",
+ "grpc",
+ "http",
+ "openapi"
+ ]
+ },
+ "description": "The name of the function to call."
+ },
+ "with": {
+ "type": "object",
+ "title": "FunctionArguments",
+ "description": "A name/value mapping of the parameters, if any, to call the function with.",
+ "additionalProperties": true
+ }
+ }
+ }
+ ]
+ },
+ "forkTask": {
+ "type": "object",
+ "$ref": "#/$defs/taskBase",
+ "title": "ForkTask",
+ "description": "Allows workflows to execute multiple tasks concurrently and optionally race them against each other, with a single possible winner, which sets the task's output.",
+ "unevaluatedProperties": false,
+ "required": [
+ "fork"
+ ],
+ "properties": {
+ "fork": {
+ "type": "object",
+ "title": "ForkTaskConfiguration",
+ "description": "The configuration of the branches to perform concurrently.",
+ "unevaluatedProperties": false,
+ "required": [
+ "branches"
+ ],
+ "properties": {
+ "branches": {
+ "$ref": "#/$defs/taskList",
+ "title": "ForkBranches"
+ },
+ "compete": {
+ "type": "boolean",
+ "title": "ForkCompete",
+ "description": "Indicates whether or not the concurrent tasks are racing against each other, with a single possible winner, which sets the composite task's output.",
+ "default": false
+ }
+ }
+ }
+ }
+ },
+ "doTask": {
+ "type": "object",
+ "$ref": "#/$defs/taskBase",
+ "title": "DoTask",
+ "description": "Allows to execute a list of tasks in sequence.",
+ "unevaluatedProperties": false,
+ "required": [
+ "do"
+ ],
+ "properties": {
+ "do": {
+ "$ref": "#/$defs/taskList",
+ "title": "DoTaskConfiguration",
+ "description": "The configuration of the tasks to perform sequentially."
+ }
+ }
+ },
+ "emitTask": {
+ "type": "object",
+ "$ref": "#/$defs/taskBase",
+ "title": "EmitTask",
+ "description": "Allows workflows to publish events to event brokers or messaging systems, facilitating communication and coordination between different components and services.",
+ "required": [
+ "emit"
+ ],
+ "unevaluatedProperties": false,
+ "properties": {
+ "emit": {
+ "type": "object",
+ "title": "EmitTaskConfiguration",
+ "description": "The configuration of an event's emission.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "event": {
+ "type": "object",
+ "title": "EmitEventDefinition",
+ "description": "The definition of the event to emit.",
+ "properties": {
+ "with": {
+ "$ref": "#/$defs/eventProperties",
+ "title": "EmitEventWith",
+ "description": "Defines the properties of event to emit.",
+ "required": [
+ "source",
+ "type"
+ ]
+ }
+ },
+ "additionalProperties": true
+ }
+ },
+ "required": [
+ "event"
+ ]
+ }
+ }
+ },
+ "forTask": {
+ "type": "object",
+ "$ref": "#/$defs/taskBase",
+ "title": "ForTask",
+ "description": "Allows workflows to iterate over a collection of items, executing a defined set of subtasks for each item in the collection. This task type is instrumental in handling scenarios such as batch processing, data transformation, and repetitive operations across datasets.",
+ "required": [
+ "for",
+ "do"
+ ],
+ "unevaluatedProperties": false,
+ "properties": {
+ "for": {
+ "type": "object",
+ "title": "ForTaskConfiguration",
+ "description": "The definition of the loop that iterates over a range of values.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "each": {
+ "type": "string",
+ "title": "ForEach",
+ "description": "The name of the variable used to store the current item being enumerated.",
+ "default": "item"
+ },
+ "in": {
+ "type": "string",
+ "title": "ForIn",
+ "description": "A runtime expression used to get the collection to enumerate."
+ },
+ "at": {
+ "type": "string",
+ "title": "ForAt",
+ "description": "The name of the variable used to store the index of the current item being enumerated.",
+ "default": "index"
+ }
+ },
+ "required": [
+ "in"
+ ]
+ },
+ "while": {
+ "type": "string",
+ "title": "While",
+ "description": "A runtime expression that represents the condition, if any, that must be met for the iteration to continue."
+ },
+ "do": {
+ "$ref": "#/$defs/taskList",
+ "title": "ForTaskDo"
+ }
+ }
+ },
+ "listenTask": {
+ "type": "object",
+ "$ref": "#/$defs/taskBase",
+ "title": "ListenTask",
+ "description": "Provides a mechanism for workflows to await and react to external events, enabling event-driven behavior within workflow systems.",
+ "required": [
+ "listen"
+ ],
+ "unevaluatedProperties": false,
+ "properties": {
+ "listen": {
+ "type": "object",
+ "title": "ListenTaskConfiguration",
+ "description": "The configuration of the listener to use.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "to": {
+ "$ref": "#/$defs/eventConsumptionStrategy",
+ "title": "ListenTo",
+ "description": "Defines the event(s) to listen to."
+ },
+ "read": {
+ "type": "string",
+ "enum": [
+ "data",
+ "envelope",
+ "raw"
+ ],
+ "default": "data",
+ "title": "ListenAndReadAs",
+ "description": "Specifies how events are read during the listen operation."
+ }
+ },
+ "required": [
+ "to"
+ ]
+ },
+ "foreach": {
+ "$ref": "#/$defs/subscriptionIterator",
+ "title": "ListenIterator",
+ "description": "Configures the iterator, if any, for processing consumed event(s)."
+ }
+ }
+ },
+ "raiseTask": {
+ "type": "object",
+ "$ref": "#/$defs/taskBase",
+ "title": "RaiseTask",
+ "description": "Intentionally triggers and propagates errors.",
+ "required": [
+ "raise"
+ ],
+ "unevaluatedProperties": false,
+ "properties": {
+ "raise": {
+ "type": "object",
+ "title": "RaiseTaskConfiguration",
+ "description": "The definition of the error to raise.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "error": {
+ "title": "RaiseTaskError",
+ "oneOf": [
+ {
+ "$ref": "#/$defs/error",
+ "title": "RaiseErrorDefinition",
+ "description": "Defines the error to raise."
+ },
+ {
+ "type": "string",
+ "title": "RaiseErrorReference",
+ "description": "The name of the error to raise"
+ }
+ ]
+ }
+ },
+ "required": [
+ "error"
+ ]
+ }
+ }
+ },
+ "runTask": {
+ "type": "object",
+ "$ref": "#/$defs/taskBase",
+ "title": "RunTask",
+ "description": "Provides the capability to execute external containers, shell commands, scripts, or workflows.",
+ "required": [
+ "run"
+ ],
+ "unevaluatedProperties": false,
+ "properties": {
+ "run": {
+ "type": "object",
+ "title": "RunTaskConfiguration",
+ "description": "The configuration of the process to execute.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "await": {
+ "type": "boolean",
+ "default": true,
+ "title": "AwaitProcessCompletion",
+ "description": "Whether to await the process completion before continuing."
+ },
+ "return": {
+ "type": "string",
+ "title": "ProcessReturnType",
+ "description": "Configures the output of the process.",
+ "enum": [
+ "stdout",
+ "stderr",
+ "code",
+ "all",
+ "none"
+ ],
+ "default": "stdout"
+ }
+ },
+ "oneOf": [
+ {
+ "title": "RunContainer",
+ "description": "Enables the execution of external processes encapsulated within a containerized environment.",
+ "properties": {
+ "container": {
+ "type": "object",
+ "title": "Container",
+ "description": "The configuration of the container to run.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "image": {
+ "type": "string",
+ "title": "ContainerImage",
+ "description": "The name of the container image to run."
+ },
+ "name": {
+ "type": "string",
+ "title": "ContainerName",
+ "description": "A runtime expression, if any, used to give specific name to the container."
+ },
+ "command": {
+ "type": "string",
+ "title": "ContainerCommand",
+ "description": "The command, if any, to execute on the container."
+ },
+ "ports": {
+ "type": "object",
+ "title": "ContainerPorts",
+ "description": "The container's port mappings, if any."
+ },
+ "volumes": {
+ "type": "object",
+ "title": "ContainerVolumes",
+ "description": "The container's volume mappings, if any."
+ },
+ "environment": {
+ "type": "object",
+ "title": "ContainerEnvironment",
+ "description": "A key/value mapping of the environment variables, if any, to use when running the configured process."
+ },
+ "lifetime": {
+ "$ref": "#/$defs/containerLifetime",
+ "title": "ContainerLifetime",
+ "description": "An object, if any, used to configure the container's lifetime"
+ }
+ },
+ "required": [
+ "image"
+ ]
+ }
+ },
+ "required": [
+ "container"
+ ]
+ },
+ {
+ "title": "RunScript",
+ "description": "Enables the execution of custom scripts or code within a workflow, empowering workflows to perform specialized logic, data processing, or integration tasks by executing user-defined scripts written in various programming languages.",
+ "properties": {
+ "script": {
+ "type": "object",
+ "title": "Script",
+ "description": "The configuration of the script to run.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "language": {
+ "type": "string",
+ "title": "ScriptLanguage",
+ "description": "The language of the script to run."
+ },
+ "arguments": {
+ "type": "object",
+ "title": "ScriptArguments",
+ "description": "A key/value mapping of the arguments, if any, to use when running the configured script.",
+ "additionalProperties": true
+ },
+ "environment": {
+ "type": "object",
+ "title": "ScriptEnvironment",
+ "description": "A key/value mapping of the environment variables, if any, to use when running the configured script process.",
+ "additionalProperties": true
+ }
+ },
+ "oneOf": [
+ {
+ "title": "InlineScript",
+ "type": "object",
+ "description": "The script's code.",
+ "properties": {
+ "code": {
+ "type": "string",
+ "title": "InlineScriptCode"
+ }
+ },
+ "required": [
+ "code"
+ ]
+ },
+ {
+ "title": "ExternalScript",
+ "type": "object",
+ "description": "The script's resource.",
+ "properties": {
+ "source": {
+ "$ref": "#/$defs/externalResource",
+ "title": "ExternalScriptResource"
+ }
+ },
+ "required": [
+ "source"
+ ]
+ }
+ ],
+ "required": [
+ "language"
+ ]
+ }
+ },
+ "required": [
+ "script"
+ ]
+ },
+ {
+ "title": "RunShell",
+ "description": "Enables the execution of shell commands within a workflow, enabling workflows to interact with the underlying operating system and perform system-level operations, such as file manipulation, environment configuration, or system administration tasks.",
+ "properties": {
+ "shell": {
+ "type": "object",
+ "title": "Shell",
+ "description": "The configuration of the shell command to run.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "command": {
+ "type": "string",
+ "title": "ShellCommand",
+ "description": "The shell command to run."
+ },
+ "arguments": {
+ "type": "object",
+ "title": "ShellArguments",
+ "description": "A list of the arguments of the shell command to run.",
+ "additionalProperties": true
+ },
+ "environment": {
+ "type": "object",
+ "title": "ShellEnvironment",
+ "description": "A key/value mapping of the environment variables, if any, to use when running the configured process.",
+ "additionalProperties": true
+ }
+ },
+ "required": [
+ "command"
+ ]
+ }
+ },
+ "required": [
+ "shell"
+ ]
+ },
+ {
+ "title": "RunWorkflow",
+ "description": "Enables the invocation and execution of nested workflows within a parent workflow, facilitating modularization, reusability, and abstraction of complex logic or business processes by encapsulating them into standalone workflow units.",
+ "properties": {
+ "workflow": {
+ "type": "object",
+ "title": "SubflowConfiguration",
+ "description": "The configuration of the workflow to run.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "namespace": {
+ "type": "string",
+ "title": "SubflowNamespace",
+ "description": "The namespace the workflow to run belongs to."
+ },
+ "name": {
+ "type": "string",
+ "title": "SubflowName",
+ "description": "The name of the workflow to run."
+ },
+ "version": {
+ "type": "string",
+ "default": "latest",
+ "title": "SubflowVersion",
+ "description": "The version of the workflow to run. Defaults to latest."
+ },
+ "input": {
+ "type": "object",
+ "title": "SubflowInput",
+ "description": "The data, if any, to pass as input to the workflow to execute. The value should be validated against the target workflow's input schema, if specified.",
+ "additionalProperties": true
+ }
+ },
+ "required": [
+ "namespace",
+ "name",
+ "version"
+ ]
+ }
+ },
+ "required": [
+ "workflow"
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "setTask": {
+ "type": "object",
+ "$ref": "#/$defs/taskBase",
+ "title": "SetTask",
+ "description": "A task used to set data.",
+ "required": [
+ "set"
+ ],
+ "unevaluatedProperties": false,
+ "properties": {
+ "set": {
+ "type": "object",
+ "title": "SetTaskConfiguration",
+ "description": "The data to set.",
+ "minProperties": 1,
+ "additionalProperties": true
+ }
+ }
+ },
+ "switchTask": {
+ "type": "object",
+ "$ref": "#/$defs/taskBase",
+ "title": "SwitchTask",
+ "description": "Enables conditional branching within workflows, allowing them to dynamically select different paths based on specified conditions or criteria.",
+ "required": [
+ "switch"
+ ],
+ "unevaluatedProperties": false,
+ "properties": {
+ "switch": {
+ "type": "array",
+ "title": "SwitchTaskConfiguration",
+ "description": "The definition of the switch to use.",
+ "minItems": 1,
+ "items": {
+ "type": "object",
+ "title": "SwitchItem",
+ "minProperties": 1,
+ "maxProperties": 1,
+ "additionalProperties": {
+ "type": "object",
+ "title": "SwitchCase",
+ "description": "The definition of a case within a switch task, defining a condition and corresponding tasks to execute if the condition is met.",
+ "unevaluatedProperties": false,
+ "required": [
+ "then"
+ ],
+ "properties": {
+ "when": {
+ "type": "string",
+ "title": "SwitchCaseCondition",
+ "description": "A runtime expression used to determine whether or not the case matches."
+ },
+ "then": {
+ "$ref": "#/$defs/flowDirective",
+ "title": "SwitchCaseOutcome",
+ "description": "The flow directive to execute when the case matches."
+ }
+ }
+ }
+ }
+ }
+ }
+ },
+ "tryTask": {
+ "type": "object",
+ "$ref": "#/$defs/taskBase",
+ "title": "TryTask",
+ "description": "Serves as a mechanism within workflows to handle errors gracefully, potentially retrying failed tasks before proceeding with alternate ones.",
+ "required": [
+ "try",
+ "catch"
+ ],
+ "unevaluatedProperties": false,
+ "properties": {
+ "try": {
+ "$ref": "#/$defs/taskList",
+ "title": "TryTaskConfiguration",
+ "description": "The task(s) to perform."
+ },
+ "catch": {
+ "type": "object",
+ "title": "TryTaskCatch",
+ "description": "The object used to define the errors to catch.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "errors": {
+ "type": "object",
+ "title": "CatchErrors",
+ "properties": {
+ "with": {
+ "$ref": "#/$defs/errorFilter"
+ }
+ },
+ "description": "static error filter"
+ },
+ "as": {
+ "type": "string",
+ "title": "CatchAs",
+ "description": "The name of the runtime expression variable to save the error as. Defaults to 'error'."
+ },
+ "when": {
+ "type": "string",
+ "title": "CatchWhen",
+ "description": "A runtime expression used to determine whether to catch the filtered error."
+ },
+ "exceptWhen": {
+ "type": "string",
+ "title": "CatchExceptWhen",
+ "description": "A runtime expression used to determine whether not to catch the filtered error."
+ },
+ "retry": {
+ "oneOf": [
+ {
+ "$ref": "#/$defs/retryPolicy",
+ "title": "RetryPolicyDefinition",
+ "description": "The retry policy to use, if any, when catching errors."
+ },
+ {
+ "type": "string",
+ "title": "RetryPolicyReference",
+ "description": "The name of the retry policy to use, if any, when catching errors."
+ }
+ ]
+ },
+ "do": {
+ "$ref": "#/$defs/taskList",
+ "title": "TryTaskCatchDo",
+ "description": "The definition of the task(s) to run when catching an error."
+ }
+ }
+ }
+ }
+ },
+ "waitTask": {
+ "type": "object",
+ "$ref": "#/$defs/taskBase",
+ "title": "WaitTask",
+ "description": "Allows workflows to pause or delay their execution for a specified period of time.",
+ "required": [
+ "wait"
+ ],
+ "unevaluatedProperties": false,
+ "properties": {
+ "wait": {
+ "$ref": "#/$defs/duration",
+ "title": "WaitTaskConfiguration",
+ "description": "The amount of time to wait."
+ }
+ }
+ },
+ "flowDirective": {
+ "title": "FlowDirective",
+ "description": "Represents different transition options for a workflow.",
+ "anyOf": [
+ {
+ "title": "FlowDirectiveEnum",
+ "type": "string",
+ "enum": [
+ "continue",
+ "exit",
+ "end"
+ ],
+ "default": "continue"
+ },
+ {
+ "type": "string"
+ }
+ ]
+ },
+ "referenceableAuthenticationPolicy": {
+ "type": "object",
+ "title": "ReferenceableAuthenticationPolicy",
+ "description": "Represents a referenceable authentication policy.",
+ "unevaluatedProperties": false,
+ "oneOf": [
+ {
+ "title": "AuthenticationPolicyReference",
+ "description": "The reference of the authentication policy to use.",
+ "properties": {
+ "use": {
+ "type": "string",
+ "minLength": 1,
+ "title": "ReferenceableAuthenticationPolicyName",
+ "description": "The name of the authentication policy to use."
+ }
+ },
+ "required": [
+ "use"
+ ]
+ },
+ {
+ "$ref": "#/$defs/authenticationPolicy"
+ }
+ ]
+ },
+ "secretBasedAuthenticationPolicy": {
+ "type": "object",
+ "title": "SecretBasedAuthenticationPolicy",
+ "description": "Represents an authentication policy based on secrets.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "use": {
+ "type": "string",
+ "minLength": 1,
+ "title": "SecretBasedAuthenticationPolicyName",
+ "description": "The name of the authentication policy to use."
+ }
+ },
+ "required": [
+ "use"
+ ]
+ },
+ "authenticationPolicy": {
+ "type": "object",
+ "title": "AuthenticationPolicy",
+ "description": "Defines an authentication policy.",
+ "oneOf": [
+ {
+ "title": "BasicAuthenticationPolicy",
+ "description": "Use basic authentication.",
+ "properties": {
+ "basic": {
+ "type": "object",
+ "title": "BasicAuthenticationPolicyConfiguration",
+ "description": "The configuration of the basic authentication policy.",
+ "unevaluatedProperties": false,
+ "oneOf": [
+ {
+ "title": "BasicAuthenticationProperties",
+ "description": "Inline configuration of the basic authentication policy.",
+ "properties": {
+ "username": {
+ "type": "string",
+ "description": "The username to use."
+ },
+ "password": {
+ "type": "string",
+ "description": "The password to use."
+ }
+ },
+ "required": [
+ "username",
+ "password"
+ ]
+ },
+ {
+ "$ref": "#/$defs/secretBasedAuthenticationPolicy",
+ "title": "BasicAuthenticationPolicySecret",
+ "description": "Secret based configuration of the basic authentication policy."
+ }
+ ]
+ }
+ },
+ "required": [
+ "basic"
+ ]
+ },
+ {
+ "title": "BearerAuthenticationPolicy",
+ "description": "Use bearer authentication.",
+ "properties": {
+ "bearer": {
+ "type": "object",
+ "title": "BearerAuthenticationPolicyConfiguration",
+ "description": "The configuration of the bearer authentication policy.",
+ "unevaluatedProperties": false,
+ "oneOf": [
+ {
+ "title": "BearerAuthenticationProperties",
+ "description": "Inline configuration of the bearer authentication policy.",
+ "properties": {
+ "token": {
+ "type": "string",
+ "description": "The bearer token to use."
+ }
+ },
+ "required": [
+ "token"
+ ]
+ },
+ {
+ "$ref": "#/$defs/secretBasedAuthenticationPolicy",
+ "title": "BearerAuthenticationPolicySecret",
+ "description": "Secret based configuration of the bearer authentication policy."
+ }
+ ]
+ }
+ },
+ "required": [
+ "bearer"
+ ]
+ },
+ {
+ "title": "DigestAuthenticationPolicy",
+ "description": "Use digest authentication.",
+ "properties": {
+ "digest": {
+ "type": "object",
+ "title": "DigestAuthenticationPolicyConfiguration",
+ "description": "The configuration of the digest authentication policy.",
+ "unevaluatedProperties": false,
+ "oneOf": [
+ {
+ "title": "DigestAuthenticationProperties",
+ "description": "Inline configuration of the digest authentication policy.",
+ "properties": {
+ "username": {
+ "type": "string",
+ "description": "The username to use."
+ },
+ "password": {
+ "type": "string",
+ "description": "The password to use."
+ }
+ },
+ "required": [
+ "username",
+ "password"
+ ]
+ },
+ {
+ "$ref": "#/$defs/secretBasedAuthenticationPolicy",
+ "title": "DigestAuthenticationPolicySecret",
+ "description": "Secret based configuration of the digest authentication policy."
+ }
+ ]
+ }
+ },
+ "required": [
+ "digest"
+ ]
+ },
+ {
+ "title": "OAuth2AuthenticationPolicy",
+ "description": "Use OAuth2 authentication.",
+ "properties": {
+ "oauth2": {
+ "type": "object",
+ "title": "OAuth2AuthenticationPolicyConfiguration",
+ "description": "The configuration of the OAuth2 authentication policy.",
+ "unevaluatedProperties": false,
+ "oneOf": [
+ {
+ "type": "object",
+ "title": "OAuth2ConnectAuthenticationProperties",
+ "description": "The inline configuration of the OAuth2 authentication policy.",
+ "unevaluatedProperties": false,
+ "allOf": [
+ {
+ "$ref": "#/$defs/oauth2AuthenticationProperties"
+ },
+ {
+ "type": "object",
+ "properties": {
+ "endpoints": {
+ "type": "object",
+ "title": "OAuth2AuthenticationPropertiesEndpoints",
+ "description": "The endpoint configurations for OAuth2.",
+ "properties": {
+ "token": {
+ "type": "string",
+ "format": "uri-template",
+ "default": "/oauth2/token",
+ "title": "OAuth2TokenEndpoint",
+ "description": "The relative path to the token endpoint. Defaults to `/oauth2/token`."
+ },
+ "revocation": {
+ "type": "string",
+ "format": "uri-template",
+ "default": "/oauth2/revoke",
+ "title": "OAuth2RevocationEndpoint",
+ "description": "The relative path to the revocation endpoint. Defaults to `/oauth2/revoke`."
+ },
+ "introspection": {
+ "type": "string",
+ "format": "uri-template",
+ "default": "/oauth2/introspect",
+ "title": "OAuth2IntrospectionEndpoint",
+ "description": "The relative path to the introspection endpoint. Defaults to `/oauth2/introspect`."
+ }
+ }
+ }
+ }
+ }
+ ]
+ },
+ {
+ "$ref": "#/$defs/secretBasedAuthenticationPolicy",
+ "title": "OAuth2AuthenticationPolicySecret",
+ "description": "Secret based configuration of the OAuth2 authentication policy."
+ }
+ ]
+ }
+ },
+ "required": [
+ "oauth2"
+ ]
+ },
+ {
+ "title": "OpenIdConnectAuthenticationPolicy",
+ "description": "Use OpenIdConnect authentication.",
+ "properties": {
+ "oidc": {
+ "type": "object",
+ "title": "OpenIdConnectAuthenticationPolicyConfiguration",
+ "description": "The configuration of the OpenIdConnect authentication policy.",
+ "unevaluatedProperties": false,
+ "oneOf": [
+ {
+ "$ref": "#/$defs/oauth2AuthenticationProperties",
+ "title": "OpenIdConnectAuthenticationProperties",
+ "description": "The inline configuration of the OpenIdConnect authentication policy.",
+ "unevaluatedProperties": false
+ },
+ {
+ "$ref": "#/$defs/secretBasedAuthenticationPolicy",
+ "title": "OpenIdConnectAuthenticationPolicySecret",
+ "description": "Secret based configuration of the OpenIdConnect authentication policy."
+ }
+ ]
+ }
+ },
+ "required": [
+ "oidc"
+ ]
+ }
+ ]
+ },
+ "oauth2AuthenticationProperties": {
+ "type": "object",
+ "title": "OAuth2AutenthicationData",
+ "description": "Inline configuration of the OAuth2 authentication policy.",
+ "properties": {
+ "authority": {
+ "$ref": "#/$defs/uriTemplate",
+ "title": "OAuth2AutenthicationDataAuthority",
+ "description": "The URI that references the OAuth2 authority to use."
+ },
+ "grant": {
+ "type": "string",
+ "enum": [
+ "authorization_code",
+ "client_credentials",
+ "password",
+ "refresh_token",
+ "urn:ietf:params:oauth:grant-type:token-exchange"
+ ],
+ "title": "OAuth2AutenthicationDataGrant",
+ "description": "The grant type to use."
+ },
+ "client": {
+ "type": "object",
+ "title": "OAuth2AutenthicationDataClient",
+ "description": "The definition of an OAuth2 client.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "id": {
+ "type": "string",
+ "title": "ClientId",
+ "description": "The client id to use."
+ },
+ "secret": {
+ "type": "string",
+ "title": "ClientSecret",
+ "description": "The client secret to use, if any."
+ },
+ "assertion": {
+ "type": "string",
+ "title": "ClientAssertion",
+ "description": "A JWT containing a signed assertion with your application credentials."
+ },
+ "authentication": {
+ "type": "string",
+ "enum": [
+ "client_secret_basic",
+ "client_secret_post",
+ "client_secret_jwt",
+ "private_key_jwt",
+ "none"
+ ],
+ "default": "client_secret_post",
+ "title": "ClientAuthentication",
+ "description": "The authentication method to use to authenticate the client."
+ }
+ }
+ },
+ "request": {
+ "type": "object",
+ "title": "OAuth2TokenRequest",
+ "description": "The configuration of an OAuth2 token request",
+ "properties": {
+ "encoding": {
+ "type": "string",
+ "enum": [
+ "application/x-www-form-urlencoded",
+ "application/json"
+ ],
+ "default": "application/x-www-form-urlencoded",
+ "title": "Oauth2TokenRequestEncoding"
+ }
+ }
+ },
+ "issuers": {
+ "type": "array",
+ "title": "OAuth2Issuers",
+ "description": "A list that contains that contains valid issuers that will be used to check against the issuer of generated tokens.",
+ "items": {
+ "type": "string"
+ }
+ },
+ "scopes": {
+ "type": "array",
+ "title": "OAuth2AutenthicationDataScopes",
+ "description": "The scopes, if any, to request the token for.",
+ "items": {
+ "type": "string"
+ }
+ },
+ "audiences": {
+ "type": "array",
+ "title": "OAuth2AutenthicationDataAudiences",
+ "description": "The audiences, if any, to request the token for.",
+ "items": {
+ "type": "string"
+ }
+ },
+ "username": {
+ "type": "string",
+ "title": "OAuth2AutenthicationDataUsername",
+ "description": "The username to use. Used only if the grant type is Password."
+ },
+ "password": {
+ "type": "string",
+ "title": "OAuth2AutenthicationDataPassword",
+ "description": "The password to use. Used only if the grant type is Password."
+ },
+ "subject": {
+ "$ref": "#/$defs/oauth2Token",
+ "title": "OAuth2AutenthicationDataSubject",
+ "description": "The security token that represents the identity of the party on behalf of whom the request is being made."
+ },
+ "actor": {
+ "$ref": "#/$defs/oauth2Token",
+ "title": "OAuth2AutenthicationDataActor",
+ "description": "The security token that represents the identity of the acting party."
+ }
+ }
+ },
+ "oauth2Token": {
+ "type": "object",
+ "title": "OAuth2TokenDefinition",
+ "description": "Represents an OAuth2 token.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "token": {
+ "type": "string",
+ "title": "OAuth2Token",
+ "description": "The security token to use."
+ },
+ "type": {
+ "type": "string",
+ "title": "OAuth2TokenType",
+ "description": "The type of the security token to use."
+ }
+ },
+ "required": [
+ "token",
+ "type"
+ ]
+ },
+ "duration": {
+ "oneOf": [
+ {
+ "type": "object",
+ "minProperties": 1,
+ "unevaluatedProperties": false,
+ "properties": {
+ "days": {
+ "type": "integer",
+ "title": "DurationDays",
+ "description": "Number of days, if any."
+ },
+ "hours": {
+ "type": "integer",
+ "title": "DurationHours",
+ "description": "Number of days, if any."
+ },
+ "minutes": {
+ "type": "integer",
+ "title": "DurationMinutes",
+ "description": "Number of minutes, if any."
+ },
+ "seconds": {
+ "type": "integer",
+ "title": "DurationSeconds",
+ "description": "Number of seconds, if any."
+ },
+ "milliseconds": {
+ "type": "integer",
+ "title": "DurationMilliseconds",
+ "description": "Number of milliseconds, if any."
+ }
+ },
+ "title": "DurationInline",
+ "description": "The inline definition of a duration."
+ },
+ {
+ "type": "string",
+ "pattern": "^P(?!$)(\\d+(?:\\.\\d+)?Y)?(\\d+(?:\\.\\d+)?M)?(\\d+(?:\\.\\d+)?W)?(\\d+(?:\\.\\d+)?D)?(T(?=\\d)(\\d+(?:\\.\\d+)?H)?(\\d+(?:\\.\\d+)?M)?(\\d+(?:\\.\\d+)?S)?)?$",
+ "title": "DurationExpression",
+ "description": "The ISO 8601 expression of a duration."
+ }
+ ]
+ },
+ "error": {
+ "type": "object",
+ "title": "Error",
+ "description": "Represents an error.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "type": {
+ "title": "ErrorType",
+ "description": "A URI reference that identifies the error type.",
+ "oneOf": [
+ {
+ "title": "LiteralErrorType",
+ "$ref": "#/$defs/uriTemplate",
+ "description": "The literal error type."
+ },
+ {
+ "title": "ExpressionErrorType",
+ "$ref": "#/$defs/runtimeExpression",
+ "description": "An expression based error type."
+ }
+ ]
+ },
+ "status": {
+ "type": "integer",
+ "title": "ErrorStatus",
+ "description": "The status code generated by the origin for this occurrence of the error."
+ },
+ "instance": {
+ "title": "ErrorInstance",
+ "description": "A JSON Pointer used to reference the component the error originates from.",
+ "oneOf": [
+ {
+ "title": "LiteralErrorInstance",
+ "description": "The literal error instance.",
+ "type": "string",
+ "format": "json-pointer"
+ },
+ {
+ "$ref": "#/$defs/runtimeExpression",
+ "title": "ExpressionErrorInstance",
+ "description": "An expression based error instance."
+ }
+ ]
+ },
+ "title": {
+ "type": "string",
+ "title": "ErrorTitle",
+ "description": "A short, human-readable summary of the error."
+ },
+ "detail": {
+ "type": "string",
+ "title": "ErrorDetails",
+ "description": "A human-readable explanation specific to this occurrence of the error."
+ }
+ },
+ "required": [
+ "type",
+ "status"
+ ]
+ },
+ "errorFilter": {
+ "type": "object",
+ "title": "ErrorFilter",
+ "description": "Error filtering base on static values. For error filtering on dynamic values, use catch.when property",
+ "minProperties": 1,
+ "properties": {
+ "type": {
+ "type": "string",
+ "description": "if present, means this value should be used for filtering"
+ },
+ "status": {
+ "type": "integer",
+ "description": "if present, means this value should be used for filtering"
+ },
+ "instance": {
+ "type": "string",
+ "description": "if present, means this value should be used for filtering"
+ },
+ "title": {
+ "type": "string",
+ "description": "if present, means this value should be used for filtering"
+ },
+ "details": {
+ "type": "string",
+ "description": "if present, means this value should be used for filtering"
+ }
+ }
+ },
+ "uriTemplate": {
+ "title": "UriTemplate",
+ "anyOf": [
+ {
+ "title": "LiteralUriTemplate",
+ "type": "string",
+ "format": "uri-template",
+ "pattern": "^[A-Za-z][A-Za-z0-9+\\-.]*://.*"
+ },
+ {
+ "title": "LiteralUri",
+ "type": "string",
+ "format": "uri",
+ "pattern": "^[A-Za-z][A-Za-z0-9+\\-.]*://.*"
+ }
+ ]
+ },
+ "endpoint": {
+ "title": "Endpoint",
+ "description": "Represents an endpoint.",
+ "oneOf": [
+ {
+ "$ref": "#/$defs/runtimeExpression"
+ },
+ {
+ "$ref": "#/$defs/uriTemplate"
+ },
+ {
+ "title": "EndpointConfiguration",
+ "type": "object",
+ "unevaluatedProperties": false,
+ "properties": {
+ "uri": {
+ "title": "EndpointUri",
+ "description": "The endpoint's URI.",
+ "oneOf": [
+ {
+ "title": "LiteralEndpointURI",
+ "description": "The literal endpoint's URI.",
+ "$ref": "#/$defs/uriTemplate"
+ },
+ {
+ "title": "ExpressionEndpointURI",
+ "$ref": "#/$defs/runtimeExpression",
+ "description": "An expression based endpoint's URI."
+ }
+ ]
+ },
+ "authentication": {
+ "$ref": "#/$defs/referenceableAuthenticationPolicy",
+ "title": "EndpointAuthentication",
+ "description": "The authentication policy to use."
+ }
+ },
+ "required": [
+ "uri"
+ ]
+ }
+ ]
+ },
+ "eventProperties": {
+ "type": "object",
+ "title": "EventProperties",
+ "description": "Describes the properties of an event.",
+ "properties": {
+ "id": {
+ "type": "string",
+ "title": "EventId",
+ "description": "The event's unique identifier."
+ },
+ "source": {
+ "title": "EventSource",
+ "description": "Identifies the context in which an event happened.",
+ "oneOf": [
+ {
+ "$ref": "#/$defs/uriTemplate"
+ },
+ {
+ "$ref": "#/$defs/runtimeExpression"
+ }
+ ]
+ },
+ "type": {
+ "type": "string",
+ "title": "EventType",
+ "description": "This attribute contains a value describing the type of event related to the originating occurrence."
+ },
+ "time": {
+ "title": "EventTime",
+ "description": "When the event occured.",
+ "oneOf": [
+ {
+ "title": "LiteralTime",
+ "type": "string",
+ "format": "date-time"
+ },
+ {
+ "$ref": "#/$defs/runtimeExpression"
+ }
+ ]
+ },
+ "subject": {
+ "type": "string",
+ "title": "EventSubject",
+ "description": "The subject of the event."
+ },
+ "datacontenttype": {
+ "type": "string",
+ "title": "EventDataContentType",
+ "description": "Content type of data value. This attribute enables data to carry any type of content, whereby format and encoding might differ from that of the chosen event format."
+ },
+ "dataschema": {
+ "title": "EventDataschema",
+ "description": "The schema describing the event format.",
+ "oneOf": [
+ {
+ "title": "LiteralDataSchema",
+ "$ref": "#/$defs/uriTemplate",
+ "description": "The literal event data schema."
+ },
+ {
+ "title": "ExpressionDataSchema",
+ "$ref": "#/$defs/runtimeExpression",
+ "description": "An expression based event data schema."
+ }
+ ]
+ },
+ "data": {
+ "title": "EventData",
+ "description": "The event's payload data",
+ "anyOf": [
+ {
+ "$ref": "#/$defs/runtimeExpression"
+ },
+ {}
+ ]
+ }
+ },
+ "additionalProperties": true
+ },
+ "eventConsumptionStrategy": {
+ "type": "object",
+ "title": "EventConsumptionStrategy",
+ "description": "Describe the event consumption strategy to adopt.",
+ "unevaluatedProperties": false,
+ "oneOf": [
+ {
+ "title": "AllEventConsumptionStrategy",
+ "properties": {
+ "all": {
+ "type": "array",
+ "title": "AllEventConsumptionStrategyConfiguration",
+ "description": "A list containing all the events that must be consumed.",
+ "items": {
+ "$ref": "#/$defs/eventFilter"
+ }
+ }
+ },
+ "required": [
+ "all"
+ ]
+ },
+ {
+ "title": "AnyEventConsumptionStrategy",
+ "properties": {
+ "any": {
+ "type": "array",
+ "title": "AnyEventConsumptionStrategyConfiguration",
+ "description": "A list containing any of the events to consume.",
+ "items": {
+ "$ref": "#/$defs/eventFilter"
+ }
+ },
+ "until": {
+ "oneOf": [
+ {
+ "type": "string",
+ "title": "AnyEventUntilCondition",
+ "description": "A runtime expression condition evaluated after consuming an event and which determines whether or not to continue listening."
+ },
+ {
+ "allOf": [
+ {
+ "$ref": "#/$defs/eventConsumptionStrategy",
+ "description": "The strategy that defines the event(s) to consume to stop listening."
+ },
+ {
+ "properties": {
+ "until": false
+ }
+ }
+ ],
+ "title": "AnyEventUntilConsumed"
+ }
+ ]
+ }
+ },
+ "required": [
+ "any"
+ ]
+ },
+ {
+ "title": "OneEventConsumptionStrategy",
+ "properties": {
+ "one": {
+ "$ref": "#/$defs/eventFilter",
+ "title": "OneEventConsumptionStrategyConfiguration",
+ "description": "The single event to consume."
+ }
+ },
+ "required": [
+ "one"
+ ]
+ }
+ ]
+ },
+ "eventFilter": {
+ "type": "object",
+ "title": "EventFilter",
+ "description": "An event filter is a mechanism used to selectively process or handle events based on predefined criteria, such as event type, source, or specific attributes.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "with": {
+ "$ref": "#/$defs/eventProperties",
+ "minProperties": 1,
+ "title": "WithEvent",
+ "description": "An event filter is a mechanism used to selectively process or handle events based on predefined criteria, such as event type, source, or specific attributes."
+ },
+ "correlate": {
+ "type": "object",
+ "title": "EventFilterCorrelate",
+ "description": "A correlation is a link between events and data, established by mapping event attributes to specific data attributes, allowing for coordinated processing or handling based on event characteristics.",
+ "additionalProperties": {
+ "type": "object",
+ "properties": {
+ "from": {
+ "type": "string",
+ "title": "CorrelateFrom",
+ "description": "A runtime expression used to extract the correlation value from the filtered event."
+ },
+ "expect": {
+ "type": "string",
+ "title": "CorrelateExpect",
+ "description": "A constant or a runtime expression, if any, used to determine whether or not the extracted correlation value matches expectations. If not set, the first extracted value will be used as the correlation's expectation."
+ }
+ },
+ "required": [
+ "from"
+ ]
+ }
+ }
+ },
+ "required": [
+ "with"
+ ]
+ },
+ "extension": {
+ "type": "object",
+ "title": "Extension",
+ "description": "The definition of an extension.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "extend": {
+ "type": "string",
+ "enum": [
+ "call",
+ "composite",
+ "emit",
+ "for",
+ "listen",
+ "raise",
+ "run",
+ "set",
+ "switch",
+ "try",
+ "wait",
+ "all"
+ ],
+ "title": "ExtensionTarget",
+ "description": "The type of task to extend."
+ },
+ "when": {
+ "type": "string",
+ "title": "ExtensionCondition",
+ "description": "A runtime expression, if any, used to determine whether or not the extension should apply in the specified context."
+ },
+ "before": {
+ "$ref": "#/$defs/taskList",
+ "title": "ExtensionDoBefore",
+ "description": "The task(s) to execute before the extended task, if any."
+ },
+ "after": {
+ "$ref": "#/$defs/taskList",
+ "title": "ExtensionDoAfter",
+ "description": "The task(s) to execute after the extended task, if any."
+ }
+ },
+ "required": [
+ "extend"
+ ]
+ },
+ "externalResource": {
+ "type": "object",
+ "title": "ExternalResource",
+ "description": "Represents an external resource.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "name": {
+ "type": "string",
+ "title": "ExternalResourceName",
+ "description": "The name of the external resource, if any."
+ },
+ "endpoint": {
+ "$ref": "#/$defs/endpoint",
+ "title": "ExternalResourceEndpoint",
+ "description": "The endpoint of the external resource."
+ }
+ },
+ "required": [
+ "endpoint"
+ ]
+ },
+ "input": {
+ "type": "object",
+ "title": "Input",
+ "description": "Configures the input of a workflow or task.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "schema": {
+ "$ref": "#/$defs/schema",
+ "title": "InputSchema",
+ "description": "The schema used to describe and validate the input of the workflow or task."
+ },
+ "from": {
+ "title": "InputFrom",
+ "description": "A runtime expression, if any, used to mutate and/or filter the input of the workflow or task.",
+ "oneOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "object"
+ }
+ ]
+ }
+ }
+ },
+ "output": {
+ "type": "object",
+ "title": "Output",
+ "description": "Configures the output of a workflow or task.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "schema": {
+ "$ref": "#/$defs/schema",
+ "title": "OutputSchema",
+ "description": "The schema used to describe and validate the output of the workflow or task."
+ },
+ "as": {
+ "title": "OutputAs",
+ "description": "A runtime expression, if any, used to mutate and/or filter the output of the workflow or task.",
+ "oneOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "object"
+ }
+ ]
+ }
+ }
+ },
+ "export": {
+ "type": "object",
+ "title": "Export",
+ "description": "Set the content of the context. .",
+ "unevaluatedProperties": false,
+ "properties": {
+ "schema": {
+ "$ref": "#/$defs/schema",
+ "title": "ExportSchema",
+ "description": "The schema used to describe and validate the workflow context."
+ },
+ "as": {
+ "title": "ExportAs",
+ "description": "A runtime expression, if any, used to export the output data to the context.",
+ "oneOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "object"
+ }
+ ]
+ }
+ }
+ },
+ "retryPolicy": {
+ "type": "object",
+ "title": "RetryPolicy",
+ "description": "Defines a retry policy.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "when": {
+ "type": "string",
+ "title": "RetryWhen",
+ "description": "A runtime expression, if any, used to determine whether or not to retry running the task, in a given context."
+ },
+ "exceptWhen": {
+ "type": "string",
+ "title": "RetryExcepWhen",
+ "description": "A runtime expression used to determine whether or not to retry running the task, in a given context."
+ },
+ "delay": {
+ "$ref": "#/$defs/duration",
+ "title": "RetryDelay",
+ "description": "The duration to wait between retry attempts."
+ },
+ "backoff": {
+ "type": "object",
+ "title": "RetryBackoff",
+ "description": "The retry duration backoff.",
+ "unevaluatedProperties": false,
+ "oneOf": [
+ {
+ "title": "ConstantBackoff",
+ "properties": {
+ "constant": {
+ "type": "object",
+ "description": "The definition of the constant backoff to use, if any."
+ }
+ },
+ "required": [
+ "constant"
+ ]
+ },
+ {
+ "title": "ExponentialBackOff",
+ "properties": {
+ "exponential": {
+ "type": "object",
+ "description": "The definition of the exponential backoff to use, if any."
+ }
+ },
+ "required": [
+ "exponential"
+ ]
+ },
+ {
+ "title": "LinearBackoff",
+ "properties": {
+ "linear": {
+ "type": "object",
+ "description": "The definition of the linear backoff to use, if any."
+ }
+ },
+ "required": [
+ "linear"
+ ]
+ }
+ ]
+ },
+ "limit": {
+ "type": "object",
+ "title": "RetryLimit",
+ "unevaluatedProperties": false,
+ "properties": {
+ "attempt": {
+ "type": "object",
+ "title": "RetryLimitAttempt",
+ "unevaluatedProperties": false,
+ "properties": {
+ "count": {
+ "type": "integer",
+ "title": "RetryLimitAttemptCount",
+ "description": "The maximum amount of retry attempts, if any."
+ },
+ "duration": {
+ "$ref": "#/$defs/duration",
+ "title": "RetryLimitAttemptDuration",
+ "description": "The maximum duration for each retry attempt."
+ }
+ }
+ },
+ "duration": {
+ "$ref": "#/$defs/duration",
+ "title": "RetryLimitDuration",
+ "description": "The duration limit, if any, for all retry attempts."
+ }
+ },
+ "description": "The retry limit, if any."
+ },
+ "jitter": {
+ "type": "object",
+ "title": "RetryPolicyJitter",
+ "description": "The parameters, if any, that control the randomness or variability of the delay between retry attempts.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "from": {
+ "$ref": "#/$defs/duration",
+ "title": "RetryPolicyJitterFrom",
+ "description": "The minimum duration of the jitter range."
+ },
+ "to": {
+ "$ref": "#/$defs/duration",
+ "title": "RetryPolicyJitterTo",
+ "description": "The maximum duration of the jitter range."
+ }
+ },
+ "required": [
+ "from",
+ "to"
+ ]
+ }
+ }
+ },
+ "schema": {
+ "type": "object",
+ "title": "Schema",
+ "description": "Represents the definition of a schema.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "format": {
+ "type": "string",
+ "default": "json",
+ "title": "SchemaFormat",
+ "description": "The schema's format. Defaults to 'json'. The (optional) version of the format can be set using `{format}:{version}`."
+ }
+ },
+ "oneOf": [
+ {
+ "title": "SchemaInline",
+ "properties": {
+ "document": {
+ "description": "The schema's inline definition."
+ }
+ },
+ "required": [
+ "document"
+ ]
+ },
+ {
+ "title": "SchemaExternal",
+ "properties": {
+ "resource": {
+ "$ref": "#/$defs/externalResource",
+ "title": "SchemaExternalResource",
+ "description": "The schema's external resource."
+ }
+ },
+ "required": [
+ "resource"
+ ]
+ }
+ ]
+ },
+ "timeout": {
+ "type": "object",
+ "title": "Timeout",
+ "description": "The definition of a timeout.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "after": {
+ "$ref": "#/$defs/duration",
+ "title": "TimeoutAfter",
+ "description": "The duration after which to timeout."
+ }
+ },
+ "required": [
+ "after"
+ ]
+ },
+ "catalog": {
+ "type": "object",
+ "title": "Catalog",
+ "description": "The definition of a resource catalog.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "endpoint": {
+ "$ref": "#/$defs/endpoint",
+ "title": "CatalogEndpoint",
+ "description": "The root URL where the catalog is hosted."
+ }
+ },
+ "required": [
+ "endpoint"
+ ]
+ },
+ "runtimeExpression": {
+ "type": "string",
+ "title": "RuntimeExpression",
+ "description": "A runtime expression.",
+ "pattern": "^\\s*\\$\\{.+\\}\\s*$"
+ },
+ "containerLifetime": {
+ "type": "object",
+ "title": "ContainerLifetime",
+ "description": "The configuration of a container's lifetime",
+ "unevaluatedProperties": false,
+ "properties": {
+ "cleanup": {
+ "type": "string",
+ "title": "ContainerCleanupPolicy",
+ "description": "The container cleanup policy to use",
+ "enum": [
+ "always",
+ "never",
+ "eventually"
+ ],
+ "default": "never"
+ },
+ "after": {
+ "$ref": "#/$defs/duration",
+ "title": "ContainerLifetimeDuration",
+ "description": "The duration after which to cleanup the container, in case the cleanup policy has been set to 'eventually'"
+ }
+ },
+ "required": [
+ "cleanup"
+ ],
+ "if": {
+ "properties": {
+ "cleanup": {
+ "const": "eventually"
+ }
+ }
+ },
+ "then": {
+ "required": [
+ "after"
+ ]
+ },
+ "else": {
+ "not": {
+ "required": [
+ "after"
+ ]
+ }
+ }
+ },
+ "processResult": {
+ "type": "object",
+ "title": "ProcessResult",
+ "description": "The object returned by a run task when its return type has been set 'all'.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "code": {
+ "type": "integer",
+ "title": "ProcessExitCode",
+ "description": "The process's exit code."
+ },
+ "stdout": {
+ "type": "string",
+ "title": "ProcessStandardOutput",
+ "description": "The content of the process's STDOUT."
+ },
+ "stderr": {
+ "type": "string",
+ "title": "ProcessStandardError",
+ "description": "The content of the process's STDERR."
+ }
+ },
+ "required": [
+ "code",
+ "stdout",
+ "stderr"
+ ]
+ },
+ "asyncApiServer": {
+ "type": "object",
+ "title": "AsyncApiServer",
+ "description": "Configures the target server of an AsyncAPI operation.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "name": {
+ "type": "string",
+ "title": "AsyncApiServerName",
+ "description": "The target server's name."
+ },
+ "variables": {
+ "type": "object",
+ "title": "AsyncApiServerVariables",
+ "description": "The target server's variables, if any."
+ }
+ },
+ "required": [
+ "name"
+ ]
+ },
+ "asyncApiOutboundMessage": {
+ "type": "object",
+ "title": "AsyncApiOutboundMessage",
+ "description": "An object used to configure the message to publish using the target operation.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "payload": {
+ "type": "object",
+ "title": "AsyncApiMessagePayload",
+ "description": "The message's payload, if any.",
+ "additionalProperties": true
+ },
+ "headers": {
+ "type": "object",
+ "title": "AsyncApiMessageHeaders",
+ "description": "The message's headers, if any.",
+ "additionalProperties": true
+ }
+ }
+ },
+ "asyncApiInboundMessage": {
+ "type": "object",
+ "title": "AsyncApiInboundMessage",
+ "description": "Represents a message counsumed by an AsyncAPI subscription.",
+ "allOf": [
+ {
+ "$ref": "#/$defs/asyncApiOutboundMessage"
+ }
+ ],
+ "properties": {
+ "correlationId": {
+ "type": "string",
+ "title": "AsyncApiMessageCorrelationId",
+ "description": "The message's correlation id, if any."
+ }
+ }
+ },
+ "asyncApiSubscription": {
+ "type": "object",
+ "title": "AsyncApiSubscription",
+ "description": "An object used to configure the subscription to messages consumed using the target operation.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "filter": {
+ "$ref": "#/$defs/runtimeExpression",
+ "title": "AsyncApiSubscriptionCorrelation",
+ "description": "A runtime expression, if any, used to filter consumed messages."
+ },
+ "consume": {
+ "$ref": "#/$defs/asyncApiMessageConsumptionPolicy",
+ "title": "AsyncApiMessageConsumptionPolicy",
+ "description": "An object used to configure the subscription's message consumption policy."
+ },
+ "foreach": {
+ "$ref": "#/$defs/subscriptionIterator",
+ "title": "AsyncApiSubscriptionIterator",
+ "description": "Configures the iterator, if any, for processing consumed messages(s)."
+ }
+ },
+ "required": [
+ "consume"
+ ]
+ },
+ "asyncApiMessageConsumptionPolicy": {
+ "type": "object",
+ "title": "AsyncApiMessageConsumptionPolicy",
+ "description": "An object used to configure a subscription's message consumption policy.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "for": {
+ "$ref": "#/$defs/duration",
+ "title": "AsyncApiMessageConsumptionPolicyFor",
+ "description": "Specifies the time period over which messages will be consumed."
+ }
+ },
+ "oneOf": [
+ {
+ "properties": {
+ "amount": {
+ "type": "integer",
+ "description": "The amount of (filtered) messages to consume before disposing of the subscription."
+ }
+ },
+ "title": "AsyncApiMessageConsumptionPolicyAmount",
+ "required": [
+ "amount"
+ ]
+ },
+ {
+ "properties": {
+ "while": {
+ "$ref": "#/$defs/runtimeExpression",
+ "description": "A runtime expression evaluated after each consumed (filtered) message to decide if message consumption should continue."
+ }
+ },
+ "title": "AsyncApiMessageConsumptionPolicyWhile",
+ "required": [
+ "while"
+ ]
+ },
+ {
+ "properties": {
+ "until": {
+ "$ref": "#/$defs/runtimeExpression",
+ "description": "A runtime expression evaluated before each consumed (filtered) message to decide if message consumption should continue."
+ }
+ },
+ "title": "AsyncApiMessageConsumptionPolicyUntil",
+ "required": [
+ "until"
+ ]
+ }
+ ]
+ },
+ "subscriptionIterator": {
+ "type": "object",
+ "title": "SubscriptionIterator",
+ "description": "Configures the iteration over each item (event or message) consumed by a subscription.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "item": {
+ "type": "string",
+ "title": "SubscriptionIteratorItem",
+ "description": "The name of the variable used to store the current item being enumerated.",
+ "default": "item"
+ },
+ "at": {
+ "type": "string",
+ "title": "SubscriptionIteratorIndex",
+ "description": "The name of the variable used to store the index of the current item being enumerated.",
+ "default": "index"
+ },
+ "do": {
+ "$ref": "#/$defs/taskList",
+ "title": "SubscriptionIteratorTasks",
+ "description": "The tasks to perform for each consumed item."
+ },
+ "output": {
+ "$ref": "#/$defs/output",
+ "title": "SubscriptionIteratorOutput",
+ "description": "An object, if any, used to customize the item's output and to document its schema."
+ },
+ "export": {
+ "$ref": "#/$defs/export",
+ "title": "SubscriptionIteratorExport",
+ "description": "An object, if any, used to customize the content of the workflow context."
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/public/schemas/1.0.0/workflow.yaml b/public/schemas/1.0.0/workflow.yaml
new file mode 100644
index 0000000..e1cd758
--- /dev/null
+++ b/public/schemas/1.0.0/workflow.yaml
@@ -0,0 +1,1758 @@
+$id: https://serverlessworkflow.io/schemas/1.0.0/workflow.yaml
+$schema: https://json-schema.org/draft/2020-12/schema
+description: Serverless Workflow DSL - Workflow Schema.
+type: object
+required: [ document, do ]
+properties:
+ document:
+ type: object
+ title: Document
+ description: Documents the workflow.
+ unevaluatedProperties: false
+ properties:
+ dsl:
+ type: string
+ pattern: ^(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(?:-((?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?$
+ title: WorkflowDSL
+ description: The version of the DSL used by the workflow.
+ namespace:
+ type: string
+ pattern: ^[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?$
+ title: WorkflowNamespace
+ description: The workflow's namespace.
+ name:
+ type: string
+ pattern: ^[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?$
+ title: WorkflowName
+ description: The workflow's name.
+ version:
+ type: string
+ pattern: ^(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(?:-((?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?$
+ title: WorkflowVersion
+ description: The workflow's semantic version.
+ title:
+ type: string
+ title: WorkflowTitle
+ description: The workflow's title.
+ summary:
+ type: string
+ title: WorkflowSummary
+ description: The workflow's Markdown summary.
+ tags:
+ type: object
+ title: WorkflowTags
+ description: A key/value mapping of the workflow's tags, if any.
+ additionalProperties: true
+ metadata:
+ type: object
+ title: WorkflowMetadata
+ description: Holds additional information about the workflow.
+ additionalProperties: true
+ required: [ dsl, namespace, name, version ]
+ input:
+ $ref: '#/$defs/input'
+ title: Input
+ description: Configures the workflow's input.
+ use:
+ type: object
+ title: Use
+ description: Defines the workflow's reusable components.
+ unevaluatedProperties: false
+ properties:
+ authentications:
+ type: object
+ title: UseAuthentications
+ description: The workflow's reusable authentication policies.
+ additionalProperties:
+ $ref: '#/$defs/authenticationPolicy'
+ errors:
+ type: object
+ title: UseErrors
+ description: The workflow's reusable errors.
+ additionalProperties:
+ $ref: '#/$defs/error'
+ extensions:
+ type: array
+ title: UseExtensions
+ description: The workflow's extensions.
+ items:
+ type: object
+ title: ExtensionItem
+ minProperties: 1
+ maxProperties: 1
+ additionalProperties:
+ $ref: '#/$defs/extension'
+ functions:
+ type: object
+ title: UseFunctions
+ description: The workflow's reusable functions.
+ additionalProperties:
+ $ref: '#/$defs/task'
+ retries:
+ type: object
+ title: UseRetries
+ description: The workflow's reusable retry policies.
+ additionalProperties:
+ $ref: '#/$defs/retryPolicy'
+ secrets:
+ type: array
+ title: UseSecrets
+ description: The workflow's reusable secrets.
+ items:
+ type: string
+ description: The workflow's secrets.
+ timeouts:
+ type: object
+ title: UseTimeouts
+ description: The workflow's reusable timeouts.
+ additionalProperties:
+ $ref: '#/$defs/timeout'
+ catalogs:
+ type: object
+ title: UseCatalogs
+ description: The workflow's reusable catalogs.
+ additionalProperties:
+ $ref: '#/$defs/catalog'
+ do:
+ $ref: '#/$defs/taskList'
+ title: Do
+ description: Defines the task(s) the workflow must perform.
+ timeout:
+ title: DoTimeout
+ oneOf:
+ - $ref: '#/$defs/timeout'
+ title: TimeoutDefinition
+ description: The workflow's timeout configuration, if any.
+ - type: string
+ title: TimeoutReference
+ description: The name of the workflow's timeout, if any.
+ output:
+ $ref: '#/$defs/output'
+ title: Output
+ description: Configures the workflow's output.
+ schedule:
+ type: object
+ title: Schedule
+ description: Schedules the workflow.
+ unevaluatedProperties: false
+ properties:
+ every:
+ $ref: '#/$defs/duration'
+ title: ScheduleEvery
+ description: Specifies the duration of the interval at which the workflow should be executed.
+ cron:
+ type: string
+ title: ScheduleCron
+ description: Specifies the schedule using a cron expression, e.g., '0 0 * * *' for daily at midnight.
+ after:
+ $ref: '#/$defs/duration'
+ title: ScheduleAfter
+ description: Specifies a delay duration that the workflow must wait before starting again after it completes.
+ on:
+ $ref: '#/$defs/eventConsumptionStrategy'
+ title: ScheduleOn
+ description: Specifies the events that trigger the workflow execution.
+$defs:
+ taskList:
+ title: TaskList
+ description: List of named tasks to perform.
+ type: array
+ items:
+ type: object
+ title: TaskItem
+ minProperties: 1
+ maxProperties: 1
+ additionalProperties:
+ $ref: '#/$defs/task'
+ taskBase:
+ type: object
+ title: TaskBase
+ description: An object inherited by all tasks.
+ properties:
+ if:
+ type: string
+ title: TaskBaseIf
+ description: A runtime expression, if any, used to determine whether or not the task should be run.
+ input:
+ $ref: '#/$defs/input'
+ title: TaskBaseInput
+ description: Configure the task's input.
+ output:
+ $ref: '#/$defs/output'
+ title: TaskBaseOutput
+ description: Configure the task's output.
+ export:
+ $ref: '#/$defs/export'
+ title: TaskBaseExport
+ description: Export task output to context.
+ timeout:
+ title: TaskTimeout
+ oneOf:
+ - $ref: '#/$defs/timeout'
+ title: TaskTimeoutDefinition
+ description: The task's timeout configuration, if any.
+ - type: string
+ title: TaskTimeoutReference
+ description: The name of the task's timeout, if any.
+ then:
+ $ref: '#/$defs/flowDirective'
+ title: TaskBaseThen
+ description: The flow directive to be performed upon completion of the task.
+ metadata:
+ type: object
+ title: TaskMetadata
+ description: Holds additional information about the task.
+ additionalProperties: true
+ task:
+ title: Task
+ description: A discrete unit of work that contributes to achieving the overall objectives defined by the workflow.
+ unevaluatedProperties: false
+ oneOf:
+ - $ref: '#/$defs/callTask'
+ - $ref: '#/$defs/doTask'
+ - $ref: '#/$defs/forkTask'
+ - $ref: '#/$defs/emitTask'
+ - $ref: '#/$defs/forTask'
+ - $ref: '#/$defs/listenTask'
+ - $ref: '#/$defs/raiseTask'
+ - $ref: '#/$defs/runTask'
+ - $ref: '#/$defs/setTask'
+ - $ref: '#/$defs/switchTask'
+ - $ref: '#/$defs/tryTask'
+ - $ref: '#/$defs/waitTask'
+ callTask:
+ title: CallTask
+ description: Defines the call to perform.
+ oneOf:
+ - title: CallAsyncAPI
+ description: Defines the AsyncAPI call to perform.
+ $ref: '#/$defs/taskBase'
+ type: object
+ required: [ call, with ]
+ unevaluatedProperties: false
+ properties:
+ call:
+ type: string
+ const: asyncapi
+ with:
+ type: object
+ title: AsyncApiArguments
+ description: The Async API call arguments.
+ properties:
+ document:
+ $ref: '#/$defs/externalResource'
+ title: AsyncAPIDocument
+ description: The document that defines the AsyncAPI operation to call.
+ channel:
+ type: string
+ title: With
+ description: The name of the channel on which to perform the operation. Used only in case the referenced document uses AsyncAPI v2.6.0.
+ operation:
+ type: string
+ title: AsyncAPIOperation
+ description: A reference to the AsyncAPI operation to call.
+ server:
+ $ref: '#/$defs/asyncApiServer'
+ title: AsyncAPIServer
+ description: An object used to configure to the server to call the specified AsyncAPI operation on.
+ protocol:
+ type: string
+ title: AsyncApiProtocol
+ description: The protocol to use to select the target server.
+ enum: [ amqp, amqp1, anypointmq, googlepubsub, http, ibmmq, jms, kafka, mercure, mqtt, mqtt5, nats, pulsar, redis, sns, solace, sqs, stomp, ws ]
+ message:
+ $ref: '#/$defs/asyncApiOutboundMessage'
+ title: AsyncApiMessage
+ description: An object used to configure the message to publish using the target operation.
+ subscription:
+ $ref: '#/$defs/asyncApiSubscription'
+ title: AsyncApiSubscription
+ description: An object used to configure the subscription to messages consumed using the target operation.
+ authentication:
+ $ref: '#/$defs/referenceableAuthenticationPolicy'
+ title: AsyncAPIAuthentication
+ description: The authentication policy, if any, to use when calling the AsyncAPI operation.
+ oneOf:
+ - required: [ document, operation, message ]
+ - required: [ document, operation, subscription ]
+ - required: [ document, channel, message ]
+ - required: [ document, channel, subscription ]
+ unevaluatedProperties: false
+ - title: CallGRPC
+ description: Defines the GRPC call to perform.
+ $ref: '#/$defs/taskBase'
+ type: object
+ unevaluatedProperties: false
+ required: [ call, with ]
+ properties:
+ call:
+ type: string
+ const: grpc
+ with:
+ type: object
+ title: GRPCArguments
+ description: The GRPC call arguments.
+ properties:
+ proto:
+ $ref: '#/$defs/externalResource'
+ title: WithGRPCProto
+ description: The proto resource that describes the GRPC service to call.
+ service:
+ type: object
+ title: WithGRPCService
+ unevaluatedProperties: false
+ properties:
+ name:
+ type: string
+ title: WithGRPCServiceName
+ description: The name of the GRPC service to call.
+ host:
+ type: string
+ title: WithGRPCServiceHost
+ description: The hostname of the GRPC service to call.
+ pattern: ^[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?$
+ port:
+ type: integer
+ title: WithGRPCServicePost
+ description: The port number of the GRPC service to call.
+ minimum: 0
+ maximum: 65535
+ authentication:
+ $ref: '#/$defs/referenceableAuthenticationPolicy'
+ title: WithGRPCServiceAuthentication
+ description: The endpoint's authentication policy, if any.
+ required: [ name, host ]
+ method:
+ type: string
+ title: WithGRPCMethod
+ description: The name of the method to call on the defined GRPC service.
+ arguments:
+ type: object
+ title: WithGRPCArguments
+ description: The arguments, if any, to call the method with.
+ additionalProperties: true
+ required: [ proto, service, method ]
+ unevaluatedProperties: false
+ - title: CallHTTP
+ description: Defines the HTTP call to perform.
+ $ref: '#/$defs/taskBase'
+ type: object
+ unevaluatedProperties: false
+ required: [ call, with ]
+ properties:
+ call:
+ type: string
+ const: http
+ with:
+ type: object
+ title: HTTPArguments
+ description: The HTTP call arguments.
+ properties:
+ method:
+ type: string
+ title: HTTPMethod
+ description: The HTTP method of the HTTP request to perform.
+ endpoint:
+ title: HTTPEndpoint
+ description: The HTTP endpoint to send the request to.
+ $ref: '#/$defs/endpoint'
+ headers:
+ type: object
+ title: HTTPHeaders
+ description: A name/value mapping of the headers, if any, of the HTTP request to perform.
+ body:
+ title: HTTPBody
+ description: The body, if any, of the HTTP request to perform.
+ query:
+ type: object
+ title: HTTPQuery
+ description: A name/value mapping of the query parameters, if any, of the HTTP request to perform.
+ additionalProperties: true
+ output:
+ type: string
+ title: HTTPOutput
+ description: The http call output format. Defaults to 'content'.
+ enum: [ raw, content, response ]
+ redirect:
+ type: boolean
+ title: HttpRedirect
+ description: Specifies whether redirection status codes (`300–399`) should be treated as errors.
+ required: [ method, endpoint ]
+ unevaluatedProperties: false
+ - title: CallOpenAPI
+ description: Defines the OpenAPI call to perform.
+ $ref: '#/$defs/taskBase'
+ type: object
+ unevaluatedProperties: false
+ required: [ call, with ]
+ properties:
+ call:
+ type: string
+ const: openapi
+ with:
+ type: object
+ title: OpenAPIArguments
+ description: The OpenAPI call arguments.
+ properties:
+ document:
+ $ref: '#/$defs/externalResource'
+ title: WithOpenAPIDocument
+ description: The document that defines the OpenAPI operation to call.
+ operationId:
+ type: string
+ title: WithOpenAPIOperation
+ description: The id of the OpenAPI operation to call.
+ parameters:
+ type: object
+ title: WithOpenAPIParameters
+ description: A name/value mapping of the parameters of the OpenAPI operation to call.
+ additionalProperties: true
+ authentication:
+ $ref: '#/$defs/referenceableAuthenticationPolicy'
+ title: WithOpenAPIAuthentication
+ description: The authentication policy, if any, to use when calling the OpenAPI operation.
+ output:
+ type: string
+ enum: [ raw, content, response ]
+ title: WithOpenAPIOutput
+ description: The http call output format. Defaults to 'content'.
+ redirect:
+ type: boolean
+ title: HttpRedirect
+ description: Specifies whether redirection status codes (`300–399`) should be treated as errors.
+ required: [ document, operationId ]
+ unevaluatedProperties: false
+ - title: CallFunction
+ description: Defines the function call to perform.
+ $ref: '#/$defs/taskBase'
+ type: object
+ unevaluatedProperties: false
+ required: [ call ]
+ properties:
+ call:
+ type: string
+ not:
+ enum: ["asyncapi", "grpc", "http", "openapi"]
+ description: The name of the function to call.
+ with:
+ type: object
+ title: FunctionArguments
+ description: A name/value mapping of the parameters, if any, to call the function with.
+ additionalProperties: true
+ forkTask:
+ type: object
+ $ref: '#/$defs/taskBase'
+ title: ForkTask
+ description: Allows workflows to execute multiple tasks concurrently and optionally race them against each other, with a single possible winner, which sets the task's output.
+ unevaluatedProperties: false
+ required: [ fork ]
+ properties:
+ fork:
+ type: object
+ title: ForkTaskConfiguration
+ description: The configuration of the branches to perform concurrently.
+ unevaluatedProperties: false
+ required: [ branches ]
+ properties:
+ branches:
+ $ref: '#/$defs/taskList'
+ title: ForkBranches
+ compete:
+ type: boolean
+ title: ForkCompete
+ description: Indicates whether or not the concurrent tasks are racing against each other, with a single possible winner, which sets the composite task's output.
+ default: false
+ doTask:
+ type: object
+ $ref: '#/$defs/taskBase'
+ title: DoTask
+ description: Allows to execute a list of tasks in sequence.
+ unevaluatedProperties: false
+ required: [ do ]
+ properties:
+ do:
+ $ref: '#/$defs/taskList'
+ title: DoTaskConfiguration
+ description: The configuration of the tasks to perform sequentially.
+ emitTask:
+ type: object
+ $ref: '#/$defs/taskBase'
+ title: EmitTask
+ description: Allows workflows to publish events to event brokers or messaging systems, facilitating communication and coordination between different components and services.
+ required: [ emit ]
+ unevaluatedProperties: false
+ properties:
+ emit:
+ type: object
+ title: EmitTaskConfiguration
+ description: The configuration of an event's emission.
+ unevaluatedProperties: false
+ properties:
+ event:
+ type: object
+ title: EmitEventDefinition
+ description: The definition of the event to emit.
+ properties:
+ with:
+ $ref: '#/$defs/eventProperties'
+ title: EmitEventWith
+ description: Defines the properties of event to emit.
+ required: [ source, type ]
+ additionalProperties: true
+ required: [ event ]
+ forTask:
+ type: object
+ $ref: '#/$defs/taskBase'
+ title: ForTask
+ description: Allows workflows to iterate over a collection of items, executing a defined set of subtasks for each item in the collection. This task type is instrumental in handling scenarios such as batch processing, data transformation, and repetitive operations across datasets.
+ required: [ for, do ]
+ unevaluatedProperties: false
+ properties:
+ for:
+ type: object
+ title: ForTaskConfiguration
+ description: The definition of the loop that iterates over a range of values.
+ unevaluatedProperties: false
+ properties:
+ each:
+ type: string
+ title: ForEach
+ description: The name of the variable used to store the current item being enumerated.
+ default: item
+ in:
+ type: string
+ title: ForIn
+ description: A runtime expression used to get the collection to enumerate.
+ at:
+ type: string
+ title: ForAt
+ description: The name of the variable used to store the index of the current item being enumerated.
+ default: index
+ required: [ in ]
+ while:
+ type: string
+ title: While
+ description: A runtime expression that represents the condition, if any, that must be met for the iteration to continue.
+ do:
+ $ref: '#/$defs/taskList'
+ title: ForTaskDo
+ listenTask:
+ type: object
+ $ref: '#/$defs/taskBase'
+ title: ListenTask
+ description: Provides a mechanism for workflows to await and react to external events, enabling event-driven behavior within workflow systems.
+ required: [ listen ]
+ unevaluatedProperties: false
+ properties:
+ listen:
+ type: object
+ title: ListenTaskConfiguration
+ description: The configuration of the listener to use.
+ unevaluatedProperties: false
+ properties:
+ to:
+ $ref: '#/$defs/eventConsumptionStrategy'
+ title: ListenTo
+ description: Defines the event(s) to listen to.
+ read:
+ type: string
+ enum: [ data, envelope, raw ]
+ default: data
+ title: ListenAndReadAs
+ description: Specifies how events are read during the listen operation.
+ required: [ to ]
+ foreach:
+ $ref: '#/$defs/subscriptionIterator'
+ title: ListenIterator
+ description: Configures the iterator, if any, for processing consumed event(s).
+ raiseTask:
+ type: object
+ $ref: '#/$defs/taskBase'
+ title: RaiseTask
+ description: Intentionally triggers and propagates errors.
+ required: [ raise ]
+ unevaluatedProperties: false
+ properties:
+ raise:
+ type: object
+ title: RaiseTaskConfiguration
+ description: The definition of the error to raise.
+ unevaluatedProperties: false
+ properties:
+ error:
+ title: RaiseTaskError
+ oneOf:
+ - $ref: '#/$defs/error'
+ title: RaiseErrorDefinition
+ description: Defines the error to raise.
+ - type: string
+ title: RaiseErrorReference
+ description: The name of the error to raise
+ required: [ error ]
+ runTask:
+ type: object
+ $ref: '#/$defs/taskBase'
+ title: RunTask
+ description: Provides the capability to execute external containers, shell commands, scripts, or workflows.
+ required: [ run ]
+ unevaluatedProperties: false
+ properties:
+ run:
+ type: object
+ title: RunTaskConfiguration
+ description: The configuration of the process to execute.
+ unevaluatedProperties: false
+ properties:
+ await:
+ type: boolean
+ default: true
+ title: AwaitProcessCompletion
+ description: Whether to await the process completion before continuing.
+ return:
+ type: string
+ title: ProcessReturnType
+ description: Configures the output of the process.
+ enum: [ stdout, stderr, code, all, none ]
+ default: stdout
+ oneOf:
+ - title: RunContainer
+ description: Enables the execution of external processes encapsulated within a containerized environment.
+ properties:
+ container:
+ type: object
+ title: Container
+ description: The configuration of the container to run.
+ unevaluatedProperties: false
+ properties:
+ image:
+ type: string
+ title: ContainerImage
+ description: The name of the container image to run.
+ name:
+ type: string
+ title: ContainerName
+ description: A runtime expression, if any, used to give specific name to the container.
+ command:
+ type: string
+ title: ContainerCommand
+ description: The command, if any, to execute on the container.
+ ports:
+ type: object
+ title: ContainerPorts
+ description: The container's port mappings, if any.
+ volumes:
+ type: object
+ title: ContainerVolumes
+ description: The container's volume mappings, if any.
+ environment:
+ type: object
+ title: ContainerEnvironment
+ description: A key/value mapping of the environment variables, if any, to use when running the configured process.
+ lifetime:
+ $ref: '#/$defs/containerLifetime'
+ title: ContainerLifetime
+ description: An object, if any, used to configure the container's lifetime
+ required: [ image ]
+ required: [ container ]
+ - title: RunScript
+ description: Enables the execution of custom scripts or code within a workflow, empowering workflows to perform specialized logic, data processing, or integration tasks by executing user-defined scripts written in various programming languages.
+ properties:
+ script:
+ type: object
+ title: Script
+ description: The configuration of the script to run.
+ unevaluatedProperties: false
+ properties:
+ language:
+ type: string
+ title: ScriptLanguage
+ description: The language of the script to run.
+ arguments:
+ type: object
+ title: ScriptArguments
+ description: A key/value mapping of the arguments, if any, to use when running the configured script.
+ additionalProperties: true
+ environment:
+ type: object
+ title: ScriptEnvironment
+ description: A key/value mapping of the environment variables, if any, to use when running the configured script process.
+ additionalProperties: true
+ oneOf:
+ - title: InlineScript
+ type: object
+ description: The script's code.
+ properties:
+ code:
+ type: string
+ title: InlineScriptCode
+ required: [ code ]
+ - title: ExternalScript
+ type: object
+ description: The script's resource.
+ properties:
+ source:
+ $ref: '#/$defs/externalResource'
+ title: ExternalScriptResource
+ required: [ source ]
+ required: [ language ]
+ required: [ script ]
+ - title: RunShell
+ description: Enables the execution of shell commands within a workflow, enabling workflows to interact with the underlying operating system and perform system-level operations, such as file manipulation, environment configuration, or system administration tasks.
+ properties:
+ shell:
+ type: object
+ title: Shell
+ description: The configuration of the shell command to run.
+ unevaluatedProperties: false
+ properties:
+ command:
+ type: string
+ title: ShellCommand
+ description: The shell command to run.
+ arguments:
+ type: object
+ title: ShellArguments
+ description: A list of the arguments of the shell command to run.
+ additionalProperties: true
+ environment:
+ type: object
+ title: ShellEnvironment
+ description: A key/value mapping of the environment variables, if any, to use when running the configured process.
+ additionalProperties: true
+ required: [ command ]
+ required: [ shell ]
+ - title: RunWorkflow
+ description: Enables the invocation and execution of nested workflows within a parent workflow, facilitating modularization, reusability, and abstraction of complex logic or business processes by encapsulating them into standalone workflow units.
+ properties:
+ workflow:
+ type: object
+ title: SubflowConfiguration
+ description: The configuration of the workflow to run.
+ unevaluatedProperties: false
+ properties:
+ namespace:
+ type: string
+ title: SubflowNamespace
+ description: The namespace the workflow to run belongs to.
+ name:
+ type: string
+ title: SubflowName
+ description: The name of the workflow to run.
+ version:
+ type: string
+ default: latest
+ title: SubflowVersion
+ description: The version of the workflow to run. Defaults to latest.
+ input:
+ type: object
+ title: SubflowInput
+ description: The data, if any, to pass as input to the workflow to execute. The value should be validated against the target workflow's input schema, if specified.
+ additionalProperties: true
+ required: [ namespace, name, version ]
+ required: [ workflow ]
+ setTask:
+ type: object
+ $ref: '#/$defs/taskBase'
+ title: SetTask
+ description: A task used to set data.
+ required: [ set ]
+ unevaluatedProperties: false
+ properties:
+ set:
+ type: object
+ title: SetTaskConfiguration
+ description: The data to set.
+ minProperties: 1
+ additionalProperties: true
+ switchTask:
+ type: object
+ $ref: '#/$defs/taskBase'
+ title: SwitchTask
+ description: Enables conditional branching within workflows, allowing them to dynamically select different paths based on specified conditions or criteria.
+ required: [ switch ]
+ unevaluatedProperties: false
+ properties:
+ switch:
+ type: array
+ title: SwitchTaskConfiguration
+ description: The definition of the switch to use.
+ minItems: 1
+ items:
+ type: object
+ title: SwitchItem
+ minProperties: 1
+ maxProperties: 1
+ additionalProperties:
+ type: object
+ title: SwitchCase
+ description: The definition of a case within a switch task, defining a condition and corresponding tasks to execute if the condition is met.
+ unevaluatedProperties: false
+ required: [ then ]
+ properties:
+ when:
+ type: string
+ title: SwitchCaseCondition
+ description: A runtime expression used to determine whether or not the case matches.
+ then:
+ $ref: '#/$defs/flowDirective'
+ title: SwitchCaseOutcome
+ description: The flow directive to execute when the case matches.
+ tryTask:
+ type: object
+ $ref: '#/$defs/taskBase'
+ title: TryTask
+ description: Serves as a mechanism within workflows to handle errors gracefully, potentially retrying failed tasks before proceeding with alternate ones.
+ required: [ try, catch ]
+ unevaluatedProperties: false
+ properties:
+ try:
+ $ref: '#/$defs/taskList'
+ title: TryTaskConfiguration
+ description: The task(s) to perform.
+ catch:
+ type: object
+ title: TryTaskCatch
+ description: The object used to define the errors to catch.
+ unevaluatedProperties: false
+ properties:
+ errors:
+ type: object
+ title: CatchErrors
+ properties:
+ with:
+ $ref: '#/$defs/errorFilter'
+ description: static error filter
+ as:
+ type: string
+ title: CatchAs
+ description: The name of the runtime expression variable to save the error as. Defaults to 'error'.
+ when:
+ type: string
+ title: CatchWhen
+ description: A runtime expression used to determine whether to catch the filtered error.
+ exceptWhen:
+ type: string
+ title: CatchExceptWhen
+ description: A runtime expression used to determine whether not to catch the filtered error.
+ retry:
+ oneOf:
+ - $ref: '#/$defs/retryPolicy'
+ title: RetryPolicyDefinition
+ description: The retry policy to use, if any, when catching errors.
+ - type: string
+ title: RetryPolicyReference
+ description: The name of the retry policy to use, if any, when catching errors.
+ do:
+ $ref: '#/$defs/taskList'
+ title: TryTaskCatchDo
+ description: The definition of the task(s) to run when catching an error.
+ waitTask:
+ type: object
+ $ref: '#/$defs/taskBase'
+ title: WaitTask
+ description: Allows workflows to pause or delay their execution for a specified period of time.
+ required: [ wait ]
+ unevaluatedProperties: false
+ properties:
+ wait:
+ $ref: '#/$defs/duration'
+ title: WaitTaskConfiguration
+ description: The amount of time to wait.
+ flowDirective:
+ title: FlowDirective
+ description: Represents different transition options for a workflow.
+ anyOf:
+ - title: FlowDirectiveEnum
+ type: string
+ enum: [ continue, exit, end ]
+ default: continue
+ - type: string
+ referenceableAuthenticationPolicy:
+ type: object
+ title: ReferenceableAuthenticationPolicy
+ description: Represents a referenceable authentication policy.
+ unevaluatedProperties: false
+ oneOf:
+ - title: AuthenticationPolicyReference
+ description: The reference of the authentication policy to use.
+ properties:
+ use:
+ type: string
+ minLength: 1
+ title: ReferenceableAuthenticationPolicyName
+ description: The name of the authentication policy to use.
+ required: [use]
+ - $ref: '#/$defs/authenticationPolicy'
+ secretBasedAuthenticationPolicy:
+ type: object
+ title: SecretBasedAuthenticationPolicy
+ description: Represents an authentication policy based on secrets.
+ unevaluatedProperties: false
+ properties:
+ use:
+ type: string
+ minLength: 1
+ title: SecretBasedAuthenticationPolicyName
+ description: The name of the authentication policy to use.
+ required: [use]
+ authenticationPolicy:
+ type: object
+ title: AuthenticationPolicy
+ description: Defines an authentication policy.
+ oneOf:
+ - title: BasicAuthenticationPolicy
+ description: Use basic authentication.
+ properties:
+ basic:
+ type: object
+ title: BasicAuthenticationPolicyConfiguration
+ description: The configuration of the basic authentication policy.
+ unevaluatedProperties: false
+ oneOf:
+ - title: BasicAuthenticationProperties
+ description: Inline configuration of the basic authentication policy.
+ properties:
+ username:
+ type: string
+ description: The username to use.
+ password:
+ type: string
+ description: The password to use.
+ required: [ username, password ]
+ - $ref: '#/$defs/secretBasedAuthenticationPolicy'
+ title: BasicAuthenticationPolicySecret
+ description: Secret based configuration of the basic authentication policy.
+ required: [ basic ]
+ - title: BearerAuthenticationPolicy
+ description: Use bearer authentication.
+ properties:
+ bearer:
+ type: object
+ title: BearerAuthenticationPolicyConfiguration
+ description: The configuration of the bearer authentication policy.
+ unevaluatedProperties: false
+ oneOf:
+ - title: BearerAuthenticationProperties
+ description: Inline configuration of the bearer authentication policy.
+ properties:
+ token:
+ type: string
+ description: The bearer token to use.
+ required: [ token ]
+ - $ref: '#/$defs/secretBasedAuthenticationPolicy'
+ title: BearerAuthenticationPolicySecret
+ description: Secret based configuration of the bearer authentication policy.
+ required: [ bearer ]
+ - title: DigestAuthenticationPolicy
+ description: Use digest authentication.
+ properties:
+ digest:
+ type: object
+ title: DigestAuthenticationPolicyConfiguration
+ description: The configuration of the digest authentication policy.
+ unevaluatedProperties: false
+ oneOf:
+ - title: DigestAuthenticationProperties
+ description: Inline configuration of the digest authentication policy.
+ properties:
+ username:
+ type: string
+ description: The username to use.
+ password:
+ type: string
+ description: The password to use.
+ required: [ username, password ]
+ - $ref: '#/$defs/secretBasedAuthenticationPolicy'
+ title: DigestAuthenticationPolicySecret
+ description: Secret based configuration of the digest authentication policy.
+ required: [ digest ]
+ - title: OAuth2AuthenticationPolicy
+ description: Use OAuth2 authentication.
+ properties:
+ oauth2:
+ type: object
+ title: OAuth2AuthenticationPolicyConfiguration
+ description: The configuration of the OAuth2 authentication policy.
+ unevaluatedProperties: false
+ oneOf:
+ - type: object
+ title: OAuth2ConnectAuthenticationProperties
+ description: The inline configuration of the OAuth2 authentication policy.
+ unevaluatedProperties: false
+ allOf:
+ - $ref: '#/$defs/oauth2AuthenticationProperties'
+ - type: object
+ properties:
+ endpoints:
+ type: object
+ title: OAuth2AuthenticationPropertiesEndpoints
+ description: The endpoint configurations for OAuth2.
+ properties:
+ token:
+ type: string
+ format: uri-template
+ default: /oauth2/token
+ title: OAuth2TokenEndpoint
+ description: The relative path to the token endpoint. Defaults to `/oauth2/token`.
+ revocation:
+ type: string
+ format: uri-template
+ default: /oauth2/revoke
+ title: OAuth2RevocationEndpoint
+ description: The relative path to the revocation endpoint. Defaults to `/oauth2/revoke`.
+ introspection:
+ type: string
+ format: uri-template
+ default: /oauth2/introspect
+ title: OAuth2IntrospectionEndpoint
+ description: The relative path to the introspection endpoint. Defaults to `/oauth2/introspect`.
+ - $ref: '#/$defs/secretBasedAuthenticationPolicy'
+ title: OAuth2AuthenticationPolicySecret
+ description: Secret based configuration of the OAuth2 authentication policy.
+ required: [ oauth2 ]
+ - title: OpenIdConnectAuthenticationPolicy
+ description: Use OpenIdConnect authentication.
+ properties:
+ oidc:
+ type: object
+ title: OpenIdConnectAuthenticationPolicyConfiguration
+ description: The configuration of the OpenIdConnect authentication policy.
+ unevaluatedProperties: false
+ oneOf:
+ - $ref: '#/$defs/oauth2AuthenticationProperties'
+ title: OpenIdConnectAuthenticationProperties
+ description: The inline configuration of the OpenIdConnect authentication policy.
+ unevaluatedProperties: false
+ - $ref: '#/$defs/secretBasedAuthenticationPolicy'
+ title: OpenIdConnectAuthenticationPolicySecret
+ description: Secret based configuration of the OpenIdConnect authentication policy.
+ required: [ oidc ]
+ oauth2AuthenticationProperties:
+ type: object
+ title: OAuth2AutenthicationData
+ description: Inline configuration of the OAuth2 authentication policy.
+ properties:
+ authority:
+ $ref: '#/$defs/uriTemplate'
+ title: OAuth2AutenthicationDataAuthority
+ description: The URI that references the OAuth2 authority to use.
+ grant:
+ type: string
+ enum: [ authorization_code, client_credentials, password, refresh_token, 'urn:ietf:params:oauth:grant-type:token-exchange']
+ title: OAuth2AutenthicationDataGrant
+ description: The grant type to use.
+ client:
+ type: object
+ title: OAuth2AutenthicationDataClient
+ description: The definition of an OAuth2 client.
+ unevaluatedProperties: false
+ properties:
+ id:
+ type: string
+ title: ClientId
+ description: The client id to use.
+ secret:
+ type: string
+ title: ClientSecret
+ description: The client secret to use, if any.
+ assertion:
+ type: string
+ title: ClientAssertion
+ description: A JWT containing a signed assertion with your application credentials.
+ authentication:
+ type: string
+ enum: [ client_secret_basic, client_secret_post, client_secret_jwt, private_key_jwt, none ]
+ default: client_secret_post
+ title: ClientAuthentication
+ description: The authentication method to use to authenticate the client.
+ request:
+ type: object
+ title: OAuth2TokenRequest
+ description: The configuration of an OAuth2 token request
+ properties:
+ encoding:
+ type: string
+ enum: [ 'application/x-www-form-urlencoded', 'application/json' ]
+ default: 'application/x-www-form-urlencoded'
+ title: Oauth2TokenRequestEncoding
+ issuers:
+ type: array
+ title: OAuth2Issuers
+ description: A list that contains that contains valid issuers that will be used to check against the issuer of generated tokens.
+ items:
+ type: string
+ scopes:
+ type: array
+ title: OAuth2AutenthicationDataScopes
+ description: The scopes, if any, to request the token for.
+ items:
+ type: string
+ audiences:
+ type: array
+ title: OAuth2AutenthicationDataAudiences
+ description: The audiences, if any, to request the token for.
+ items:
+ type: string
+ username:
+ type: string
+ title: OAuth2AutenthicationDataUsername
+ description: The username to use. Used only if the grant type is Password.
+ password:
+ type: string
+ title: OAuth2AutenthicationDataPassword
+ description: The password to use. Used only if the grant type is Password.
+ subject:
+ $ref: '#/$defs/oauth2Token'
+ title: OAuth2AutenthicationDataSubject
+ description: The security token that represents the identity of the party on behalf of whom the request is being made.
+ actor:
+ $ref: '#/$defs/oauth2Token'
+ title: OAuth2AutenthicationDataActor
+ description: The security token that represents the identity of the acting party.
+ oauth2Token:
+ type: object
+ title: OAuth2TokenDefinition
+ description: Represents an OAuth2 token.
+ unevaluatedProperties: false
+ properties:
+ token:
+ type: string
+ title: OAuth2Token
+ description: The security token to use.
+ type:
+ type: string
+ title: OAuth2TokenType
+ description: The type of the security token to use.
+ required: [ token, type ]
+ duration:
+ oneOf:
+ - type: object
+ minProperties: 1
+ unevaluatedProperties: false
+ properties:
+ days:
+ type: integer
+ title: DurationDays
+ description: Number of days, if any.
+ hours:
+ type: integer
+ title: DurationHours
+ description: Number of days, if any.
+ minutes:
+ type: integer
+ title: DurationMinutes
+ description: Number of minutes, if any.
+ seconds:
+ type: integer
+ title: DurationSeconds
+ description: Number of seconds, if any.
+ milliseconds:
+ type: integer
+ title: DurationMilliseconds
+ description: Number of milliseconds, if any.
+ title: DurationInline
+ description: The inline definition of a duration.
+ - type: string
+ pattern: '^P(?!$)(\d+(?:\.\d+)?Y)?(\d+(?:\.\d+)?M)?(\d+(?:\.\d+)?W)?(\d+(?:\.\d+)?D)?(T(?=\d)(\d+(?:\.\d+)?H)?(\d+(?:\.\d+)?M)?(\d+(?:\.\d+)?S)?)?$'
+ title: DurationExpression
+ description: The ISO 8601 expression of a duration.
+ error:
+ type: object
+ title: Error
+ description: Represents an error.
+ unevaluatedProperties: false
+ properties:
+ type:
+ title: ErrorType
+ description: A URI reference that identifies the error type.
+ oneOf:
+ - title: LiteralErrorType
+ $ref: '#/$defs/uriTemplate'
+ description: The literal error type.
+ - title: ExpressionErrorType
+ $ref: '#/$defs/runtimeExpression'
+ description: An expression based error type.
+ status:
+ type: integer
+ title: ErrorStatus
+ description: The status code generated by the origin for this occurrence of the error.
+ instance:
+ title: ErrorInstance
+ description: A JSON Pointer used to reference the component the error originates from.
+ oneOf:
+ - title: LiteralErrorInstance
+ description: The literal error instance.
+ type: string
+ format: json-pointer
+ - $ref: '#/$defs/runtimeExpression'
+ title: ExpressionErrorInstance
+ description: An expression based error instance.
+ title:
+ type: string
+ title: ErrorTitle
+ description: A short, human-readable summary of the error.
+ detail:
+ type: string
+ title: ErrorDetails
+ description: A human-readable explanation specific to this occurrence of the error.
+ required: [ type, status ]
+ errorFilter:
+ type: object
+ title: ErrorFilter
+ description: Error filtering base on static values. For error filtering on dynamic values, use catch.when property
+ minProperties: 1
+ properties:
+ type:
+ type: string
+ description: if present, means this value should be used for filtering
+ status:
+ type: integer
+ description: if present, means this value should be used for filtering
+ instance:
+ type: string
+ description: if present, means this value should be used for filtering
+ title:
+ type: string
+ description: if present, means this value should be used for filtering
+ details:
+ type: string
+ description: if present, means this value should be used for filtering
+ uriTemplate:
+ title: UriTemplate
+ anyOf:
+ - title: LiteralUriTemplate
+ type: string
+ format: uri-template
+ pattern: "^[A-Za-z][A-Za-z0-9+\\-.]*://.*"
+ - title: LiteralUri
+ type: string
+ format: uri
+ pattern: "^[A-Za-z][A-Za-z0-9+\\-.]*://.*"
+ endpoint:
+ title: Endpoint
+ description: Represents an endpoint.
+ oneOf:
+ - $ref: '#/$defs/runtimeExpression'
+ - $ref: '#/$defs/uriTemplate'
+ - title: EndpointConfiguration
+ type: object
+ unevaluatedProperties: false
+ properties:
+ uri:
+ title: EndpointUri
+ description: The endpoint's URI.
+ oneOf:
+ - title: LiteralEndpointURI
+ description: The literal endpoint's URI.
+ $ref: '#/$defs/uriTemplate'
+ - title: ExpressionEndpointURI
+ $ref: '#/$defs/runtimeExpression'
+ description: An expression based endpoint's URI.
+ authentication:
+ $ref: '#/$defs/referenceableAuthenticationPolicy'
+ title: EndpointAuthentication
+ description: The authentication policy to use.
+ required: [ uri ]
+ eventProperties:
+ type: object
+ title: EventProperties
+ description: Describes the properties of an event.
+ properties:
+ id:
+ type: string
+ title: EventId
+ description: The event's unique identifier.
+ source:
+ title: EventSource
+ description: Identifies the context in which an event happened.
+ oneOf:
+ - $ref: '#/$defs/uriTemplate'
+ - $ref: '#/$defs/runtimeExpression'
+ type:
+ type: string
+ title: EventType
+ description: This attribute contains a value describing the type of event related to the originating occurrence.
+ time:
+ title: EventTime
+ description: When the event occured.
+ oneOf:
+ - title: LiteralTime
+ type: string
+ format: date-time
+ - $ref: '#/$defs/runtimeExpression'
+ subject:
+ type: string
+ title: EventSubject
+ description: The subject of the event.
+ datacontenttype:
+ type: string
+ title: EventDataContentType
+ description: Content type of data value. This attribute enables data to carry any type of content, whereby format and encoding might differ from that of the chosen event format.
+ dataschema:
+ title: EventDataschema
+ description: The schema describing the event format.
+ oneOf:
+ - title: LiteralDataSchema
+ $ref: '#/$defs/uriTemplate'
+ description: The literal event data schema.
+ - title: ExpressionDataSchema
+ $ref: '#/$defs/runtimeExpression'
+ description: An expression based event data schema.
+ data:
+ title: EventData
+ description: The event's payload data
+ anyOf:
+ - $ref: '#/$defs/runtimeExpression'
+ - {}
+ additionalProperties: true
+ eventConsumptionStrategy:
+ type: object
+ title: EventConsumptionStrategy
+ description: Describe the event consumption strategy to adopt.
+ unevaluatedProperties: false
+ oneOf:
+ - title: AllEventConsumptionStrategy
+ properties:
+ all:
+ type: array
+ title: AllEventConsumptionStrategyConfiguration
+ description: A list containing all the events that must be consumed.
+ items:
+ $ref: '#/$defs/eventFilter'
+ required: [ all ]
+ - title: AnyEventConsumptionStrategy
+ properties:
+ any:
+ type: array
+ title: AnyEventConsumptionStrategyConfiguration
+ description: A list containing any of the events to consume.
+ items:
+ $ref: '#/$defs/eventFilter'
+ until:
+ oneOf:
+ - type: string
+ title: AnyEventUntilCondition
+ description: A runtime expression condition evaluated after consuming an event and which determines whether or not to continue listening.
+ - allOf:
+ - $ref: '#/$defs/eventConsumptionStrategy'
+ description: The strategy that defines the event(s) to consume to stop listening.
+ - properties:
+ until: false
+ title: AnyEventUntilConsumed
+ required: [ any ]
+ - title: OneEventConsumptionStrategy
+ properties:
+ one:
+ $ref: '#/$defs/eventFilter'
+ title: OneEventConsumptionStrategyConfiguration
+ description: The single event to consume.
+ required: [ one ]
+ eventFilter:
+ type: object
+ title: EventFilter
+ description: An event filter is a mechanism used to selectively process or handle events based on predefined criteria, such as event type, source, or specific attributes.
+ unevaluatedProperties: false
+ properties:
+ with:
+ $ref: '#/$defs/eventProperties'
+ minProperties: 1
+ title: WithEvent
+ description: An event filter is a mechanism used to selectively process or handle events based on predefined criteria, such as event type, source, or specific attributes.
+ correlate:
+ type: object
+ title: EventFilterCorrelate
+ description: A correlation is a link between events and data, established by mapping event attributes to specific data attributes, allowing for coordinated processing or handling based on event characteristics.
+ additionalProperties:
+ type: object
+ properties:
+ from:
+ type: string
+ title: CorrelateFrom
+ description: A runtime expression used to extract the correlation value from the filtered event.
+ expect:
+ type: string
+ title: CorrelateExpect
+ description: A constant or a runtime expression, if any, used to determine whether or not the extracted correlation value matches expectations. If not set, the first extracted value will be used as the correlation's expectation.
+ required: [ from ]
+ required: [ with ]
+ extension:
+ type: object
+ title: Extension
+ description: The definition of an extension.
+ unevaluatedProperties: false
+ properties:
+ extend:
+ type: string
+ enum: [ call, composite, emit, for, listen, raise, run, set, switch, try, wait, all ]
+ title: ExtensionTarget
+ description: The type of task to extend.
+ when:
+ type: string
+ title: ExtensionCondition
+ description: A runtime expression, if any, used to determine whether or not the extension should apply in the specified context.
+ before:
+ $ref: '#/$defs/taskList'
+ title: ExtensionDoBefore
+ description: The task(s) to execute before the extended task, if any.
+ after:
+ $ref: '#/$defs/taskList'
+ title: ExtensionDoAfter
+ description: The task(s) to execute after the extended task, if any.
+ required: [ extend ]
+ externalResource:
+ type: object
+ title: ExternalResource
+ description: Represents an external resource.
+ unevaluatedProperties: false
+ properties:
+ name:
+ type: string
+ title: ExternalResourceName
+ description: The name of the external resource, if any.
+ endpoint:
+ $ref: '#/$defs/endpoint'
+ title: ExternalResourceEndpoint
+ description: The endpoint of the external resource.
+ required: [ endpoint ]
+ input:
+ type: object
+ title: Input
+ description: Configures the input of a workflow or task.
+ unevaluatedProperties: false
+ properties:
+ schema:
+ $ref: '#/$defs/schema'
+ title: InputSchema
+ description: The schema used to describe and validate the input of the workflow or task.
+ from:
+ title: InputFrom
+ description: A runtime expression, if any, used to mutate and/or filter the input of the workflow or task.
+ oneOf:
+ - type: string
+ - type: object
+ output:
+ type: object
+ title: Output
+ description: Configures the output of a workflow or task.
+ unevaluatedProperties: false
+ properties:
+ schema:
+ $ref: '#/$defs/schema'
+ title: OutputSchema
+ description: The schema used to describe and validate the output of the workflow or task.
+ as:
+ title: OutputAs
+ description: A runtime expression, if any, used to mutate and/or filter the output of the workflow or task.
+ oneOf:
+ - type: string
+ - type: object
+ export:
+ type: object
+ title: Export
+ description: Set the content of the context. .
+ unevaluatedProperties: false
+ properties:
+ schema:
+ $ref: '#/$defs/schema'
+ title: ExportSchema
+ description: The schema used to describe and validate the workflow context.
+ as:
+ title: ExportAs
+ description: A runtime expression, if any, used to export the output data to the context.
+ oneOf:
+ - type: string
+ - type: object
+ retryPolicy:
+ type: object
+ title: RetryPolicy
+ description: Defines a retry policy.
+ unevaluatedProperties: false
+ properties:
+ when:
+ type: string
+ title: RetryWhen
+ description: A runtime expression, if any, used to determine whether or not to retry running the task, in a given context.
+ exceptWhen:
+ type: string
+ title: RetryExcepWhen
+ description: A runtime expression used to determine whether or not to retry running the task, in a given context.
+ delay:
+ $ref: '#/$defs/duration'
+ title: RetryDelay
+ description: The duration to wait between retry attempts.
+ backoff:
+ type: object
+ title: RetryBackoff
+ description: The retry duration backoff.
+ unevaluatedProperties: false
+ oneOf:
+ - title: ConstantBackoff
+ properties:
+ constant:
+ type: object
+ description: The definition of the constant backoff to use, if any.
+ required: [ constant ]
+ - title: ExponentialBackOff
+ properties:
+ exponential:
+ type: object
+ description: The definition of the exponential backoff to use, if any.
+ required: [ exponential ]
+ - title: LinearBackoff
+ properties:
+ linear:
+ type: object
+ description: The definition of the linear backoff to use, if any.
+ required: [ linear ]
+ limit:
+ type: object
+ title: RetryLimit
+ unevaluatedProperties: false
+ properties:
+ attempt:
+ type: object
+ title: RetryLimitAttempt
+ unevaluatedProperties: false
+ properties:
+ count:
+ type: integer
+ title: RetryLimitAttemptCount
+ description: The maximum amount of retry attempts, if any.
+ duration:
+ $ref: '#/$defs/duration'
+ title: RetryLimitAttemptDuration
+ description: The maximum duration for each retry attempt.
+ duration:
+ $ref: '#/$defs/duration'
+ title: RetryLimitDuration
+ description: The duration limit, if any, for all retry attempts.
+ description: The retry limit, if any.
+ jitter:
+ type: object
+ title: RetryPolicyJitter
+ description: The parameters, if any, that control the randomness or variability of the delay between retry attempts.
+ unevaluatedProperties: false
+ properties:
+ from:
+ $ref: '#/$defs/duration'
+ title: RetryPolicyJitterFrom
+ description: The minimum duration of the jitter range.
+ to:
+ $ref: '#/$defs/duration'
+ title: RetryPolicyJitterTo
+ description: The maximum duration of the jitter range.
+ required: [ from, to ]
+ schema:
+ type: object
+ title: Schema
+ description: Represents the definition of a schema.
+ unevaluatedProperties: false
+ properties:
+ format:
+ type: string
+ default: json
+ title: SchemaFormat
+ description: The schema's format. Defaults to 'json'. The (optional) version of the format can be set using `{format}:{version}`.
+ oneOf:
+ - title: SchemaInline
+ properties:
+ document:
+ description: The schema's inline definition.
+ required: [ document ]
+ - title: SchemaExternal
+ properties:
+ resource:
+ $ref: '#/$defs/externalResource'
+ title: SchemaExternalResource
+ description: The schema's external resource.
+ required: [ resource ]
+ timeout:
+ type: object
+ title: Timeout
+ description: The definition of a timeout.
+ unevaluatedProperties: false
+ properties:
+ after:
+ $ref: '#/$defs/duration'
+ title: TimeoutAfter
+ description: The duration after which to timeout.
+ required: [ after ]
+ catalog:
+ type: object
+ title: Catalog
+ description: The definition of a resource catalog.
+ unevaluatedProperties: false
+ properties:
+ endpoint:
+ $ref: '#/$defs/endpoint'
+ title: CatalogEndpoint
+ description: The root URL where the catalog is hosted.
+ required: [ endpoint ]
+ runtimeExpression:
+ type: string
+ title: RuntimeExpression
+ description: A runtime expression.
+ pattern: "^\\s*\\$\\{.+\\}\\s*$"
+ containerLifetime:
+ type: object
+ title: ContainerLifetime
+ description: The configuration of a container's lifetime
+ unevaluatedProperties: false
+ properties:
+ cleanup:
+ type: string
+ title: ContainerCleanupPolicy
+ description: The container cleanup policy to use
+ enum: [ always, never, eventually ]
+ default: never
+ after:
+ $ref: '#/$defs/duration'
+ title: ContainerLifetimeDuration
+ description: The duration after which to cleanup the container, in case the cleanup policy has been set to 'eventually'
+ required: [ cleanup ]
+ if:
+ properties:
+ cleanup:
+ const: eventually
+ then:
+ required: [ after ]
+ else:
+ not:
+ required: [ after ]
+ processResult:
+ type: object
+ title: ProcessResult
+ description: The object returned by a run task when its return type has been set 'all'.
+ unevaluatedProperties: false
+ properties:
+ code:
+ type: integer
+ title: ProcessExitCode
+ description: The process's exit code.
+ stdout:
+ type: string
+ title: ProcessStandardOutput
+ description: The content of the process's STDOUT.
+ stderr:
+ type: string
+ title: ProcessStandardError
+ description: The content of the process's STDERR.
+ required: [ code, stdout, stderr ]
+ asyncApiServer:
+ type: object
+ title: AsyncApiServer
+ description: Configures the target server of an AsyncAPI operation.
+ unevaluatedProperties: false
+ properties:
+ name:
+ type: string
+ title: AsyncApiServerName
+ description: The target server's name.
+ variables:
+ type: object
+ title: AsyncApiServerVariables
+ description: The target server's variables, if any.
+ required: [ name ]
+ asyncApiOutboundMessage:
+ type: object
+ title: AsyncApiOutboundMessage
+ description: An object used to configure the message to publish using the target operation.
+ unevaluatedProperties: false
+ properties:
+ payload:
+ type: object
+ title: AsyncApiMessagePayload
+ description: The message's payload, if any.
+ additionalProperties: true
+ headers:
+ type: object
+ title: AsyncApiMessageHeaders
+ description: The message's headers, if any.
+ additionalProperties: true
+ asyncApiInboundMessage:
+ type: object
+ title: AsyncApiInboundMessage
+ description: Represents a message counsumed by an AsyncAPI subscription.
+ allOf:
+ - $ref: '#/$defs/asyncApiOutboundMessage'
+ properties:
+ correlationId:
+ type: string
+ title: AsyncApiMessageCorrelationId
+ description: The message's correlation id, if any.
+ asyncApiSubscription:
+ type: object
+ title: AsyncApiSubscription
+ description: An object used to configure the subscription to messages consumed using the target operation.
+ unevaluatedProperties: false
+ properties:
+ filter:
+ $ref: '#/$defs/runtimeExpression'
+ title: AsyncApiSubscriptionCorrelation
+ description: A runtime expression, if any, used to filter consumed messages.
+ consume:
+ $ref: '#/$defs/asyncApiMessageConsumptionPolicy'
+ title: AsyncApiMessageConsumptionPolicy
+ description: An object used to configure the subscription's message consumption policy.
+ foreach:
+ $ref: '#/$defs/subscriptionIterator'
+ title: AsyncApiSubscriptionIterator
+ description: Configures the iterator, if any, for processing consumed messages(s).
+ required: [ consume ]
+ asyncApiMessageConsumptionPolicy:
+ type: object
+ title: AsyncApiMessageConsumptionPolicy
+ description: An object used to configure a subscription's message consumption policy.
+ unevaluatedProperties: false
+ properties:
+ for:
+ $ref: '#/$defs/duration'
+ title: AsyncApiMessageConsumptionPolicyFor
+ description: Specifies the time period over which messages will be consumed.
+ oneOf:
+ - properties:
+ amount:
+ type: integer
+ description: The amount of (filtered) messages to consume before disposing of the subscription.
+ title: AsyncApiMessageConsumptionPolicyAmount
+ required: [ amount ]
+ - properties:
+ while:
+ $ref: '#/$defs/runtimeExpression'
+ description: A runtime expression evaluated after each consumed (filtered) message to decide if message consumption should continue.
+ title: AsyncApiMessageConsumptionPolicyWhile
+ required: [ while ]
+ - properties:
+ until:
+ $ref: '#/$defs/runtimeExpression'
+ description: A runtime expression evaluated before each consumed (filtered) message to decide if message consumption should continue.
+ title: AsyncApiMessageConsumptionPolicyUntil
+ required: [ until ]
+ subscriptionIterator:
+ type: object
+ title: SubscriptionIterator
+ description: Configures the iteration over each item (event or message) consumed by a subscription.
+ unevaluatedProperties: false
+ properties:
+ item:
+ type: string
+ title: SubscriptionIteratorItem
+ description: The name of the variable used to store the current item being enumerated.
+ default: item
+ at:
+ type: string
+ title: SubscriptionIteratorIndex
+ description: The name of the variable used to store the index of the current item being enumerated.
+ default: index
+ do:
+ $ref: '#/$defs/taskList'
+ title: SubscriptionIteratorTasks
+ description: The tasks to perform for each consumed item.
+ output:
+ $ref: '#/$defs/output'
+ title: SubscriptionIteratorOutput
+ description: An object, if any, used to customize the item's output and to document its schema.
+ export:
+ $ref: '#/$defs/export'
+ title: SubscriptionIteratorExport
+ description: An object, if any, used to customize the content of the workflow context.
\ No newline at end of file
diff --git a/public/schemas/1.0.1/workflow.json b/public/schemas/1.0.1/workflow.json
new file mode 100644
index 0000000..7f964cf
--- /dev/null
+++ b/public/schemas/1.0.1/workflow.json
@@ -0,0 +1,2904 @@
+{
+ "$id": "https://serverlessworkflow.io/schemas/1.0.1/workflow.yaml",
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "description": "Serverless Workflow DSL - Workflow Schema.",
+ "type": "object",
+ "required": [
+ "document",
+ "do"
+ ],
+ "properties": {
+ "document": {
+ "type": "object",
+ "title": "Document",
+ "description": "Documents the workflow.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "dsl": {
+ "type": "string",
+ "pattern": "^(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$",
+ "title": "WorkflowDSL",
+ "description": "The version of the DSL used by the workflow."
+ },
+ "namespace": {
+ "type": "string",
+ "pattern": "^[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?$",
+ "title": "WorkflowNamespace",
+ "description": "The workflow's namespace."
+ },
+ "name": {
+ "type": "string",
+ "pattern": "^[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?$",
+ "title": "WorkflowName",
+ "description": "The workflow's name."
+ },
+ "version": {
+ "type": "string",
+ "pattern": "^(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$",
+ "title": "WorkflowVersion",
+ "description": "The workflow's semantic version."
+ },
+ "title": {
+ "type": "string",
+ "title": "WorkflowTitle",
+ "description": "The workflow's title."
+ },
+ "summary": {
+ "type": "string",
+ "title": "WorkflowSummary",
+ "description": "The workflow's Markdown summary."
+ },
+ "tags": {
+ "type": "object",
+ "title": "WorkflowTags",
+ "description": "A key/value mapping of the workflow's tags, if any.",
+ "additionalProperties": true
+ },
+ "metadata": {
+ "type": "object",
+ "title": "WorkflowMetadata",
+ "description": "Holds additional information about the workflow.",
+ "additionalProperties": true
+ }
+ },
+ "required": [
+ "dsl",
+ "namespace",
+ "name",
+ "version"
+ ]
+ },
+ "input": {
+ "$ref": "#/$defs/input",
+ "title": "Input",
+ "description": "Configures the workflow's input."
+ },
+ "use": {
+ "type": "object",
+ "title": "Use",
+ "description": "Defines the workflow's reusable components.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "authentications": {
+ "type": "object",
+ "title": "UseAuthentications",
+ "description": "The workflow's reusable authentication policies.",
+ "additionalProperties": {
+ "$ref": "#/$defs/authenticationPolicy"
+ }
+ },
+ "errors": {
+ "type": "object",
+ "title": "UseErrors",
+ "description": "The workflow's reusable errors.",
+ "additionalProperties": {
+ "$ref": "#/$defs/error"
+ }
+ },
+ "extensions": {
+ "type": "array",
+ "title": "UseExtensions",
+ "description": "The workflow's extensions.",
+ "items": {
+ "type": "object",
+ "title": "ExtensionItem",
+ "minProperties": 1,
+ "maxProperties": 1,
+ "additionalProperties": {
+ "$ref": "#/$defs/extension"
+ }
+ }
+ },
+ "functions": {
+ "type": "object",
+ "title": "UseFunctions",
+ "description": "The workflow's reusable functions.",
+ "additionalProperties": {
+ "$ref": "#/$defs/task"
+ }
+ },
+ "retries": {
+ "type": "object",
+ "title": "UseRetries",
+ "description": "The workflow's reusable retry policies.",
+ "additionalProperties": {
+ "$ref": "#/$defs/retryPolicy"
+ }
+ },
+ "secrets": {
+ "type": "array",
+ "title": "UseSecrets",
+ "description": "The workflow's reusable secrets.",
+ "items": {
+ "type": "string",
+ "description": "The workflow's secrets."
+ }
+ },
+ "timeouts": {
+ "type": "object",
+ "title": "UseTimeouts",
+ "description": "The workflow's reusable timeouts.",
+ "additionalProperties": {
+ "$ref": "#/$defs/timeout"
+ }
+ },
+ "catalogs": {
+ "type": "object",
+ "title": "UseCatalogs",
+ "description": "The workflow's reusable catalogs.",
+ "additionalProperties": {
+ "$ref": "#/$defs/catalog"
+ }
+ }
+ }
+ },
+ "do": {
+ "$ref": "#/$defs/taskList",
+ "title": "Do",
+ "description": "Defines the task(s) the workflow must perform."
+ },
+ "timeout": {
+ "title": "DoTimeout",
+ "oneOf": [
+ {
+ "$ref": "#/$defs/timeout",
+ "title": "TimeoutDefinition",
+ "description": "The workflow's timeout configuration, if any."
+ },
+ {
+ "type": "string",
+ "title": "TimeoutReference",
+ "description": "The name of the workflow's timeout, if any."
+ }
+ ]
+ },
+ "output": {
+ "$ref": "#/$defs/output",
+ "title": "Output",
+ "description": "Configures the workflow's output."
+ },
+ "schedule": {
+ "type": "object",
+ "title": "Schedule",
+ "description": "Schedules the workflow.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "every": {
+ "$ref": "#/$defs/duration",
+ "title": "ScheduleEvery",
+ "description": "Specifies the duration of the interval at which the workflow should be executed."
+ },
+ "cron": {
+ "type": "string",
+ "title": "ScheduleCron",
+ "description": "Specifies the schedule using a cron expression, e.g., '0 0 * * *' for daily at midnight."
+ },
+ "after": {
+ "$ref": "#/$defs/duration",
+ "title": "ScheduleAfter",
+ "description": "Specifies a delay duration that the workflow must wait before starting again after it completes."
+ },
+ "on": {
+ "$ref": "#/$defs/eventConsumptionStrategy",
+ "title": "ScheduleOn",
+ "description": "Specifies the events that trigger the workflow execution."
+ }
+ }
+ }
+ },
+ "$defs": {
+ "taskList": {
+ "title": "TaskList",
+ "description": "List of named tasks to perform.",
+ "type": "array",
+ "items": {
+ "type": "object",
+ "title": "TaskItem",
+ "minProperties": 1,
+ "maxProperties": 1,
+ "additionalProperties": {
+ "$ref": "#/$defs/task"
+ }
+ }
+ },
+ "taskBase": {
+ "type": "object",
+ "title": "TaskBase",
+ "description": "An object inherited by all tasks.",
+ "properties": {
+ "if": {
+ "type": "string",
+ "title": "TaskBaseIf",
+ "description": "A runtime expression, if any, used to determine whether or not the task should be run."
+ },
+ "input": {
+ "$ref": "#/$defs/input",
+ "title": "TaskBaseInput",
+ "description": "Configure the task's input."
+ },
+ "output": {
+ "$ref": "#/$defs/output",
+ "title": "TaskBaseOutput",
+ "description": "Configure the task's output."
+ },
+ "export": {
+ "$ref": "#/$defs/export",
+ "title": "TaskBaseExport",
+ "description": "Export task output to context."
+ },
+ "timeout": {
+ "title": "TaskTimeout",
+ "oneOf": [
+ {
+ "$ref": "#/$defs/timeout",
+ "title": "TaskTimeoutDefinition",
+ "description": "The task's timeout configuration, if any."
+ },
+ {
+ "type": "string",
+ "title": "TaskTimeoutReference",
+ "description": "The name of the task's timeout, if any."
+ }
+ ]
+ },
+ "then": {
+ "$ref": "#/$defs/flowDirective",
+ "title": "TaskBaseThen",
+ "description": "The flow directive to be performed upon completion of the task."
+ },
+ "metadata": {
+ "type": "object",
+ "title": "TaskMetadata",
+ "description": "Holds additional information about the task.",
+ "additionalProperties": true
+ }
+ }
+ },
+ "task": {
+ "title": "Task",
+ "description": "A discrete unit of work that contributes to achieving the overall objectives defined by the workflow.",
+ "unevaluatedProperties": false,
+ "oneOf": [
+ {
+ "$ref": "#/$defs/callTask"
+ },
+ {
+ "$ref": "#/$defs/doTask"
+ },
+ {
+ "$ref": "#/$defs/forkTask"
+ },
+ {
+ "$ref": "#/$defs/emitTask"
+ },
+ {
+ "$ref": "#/$defs/forTask"
+ },
+ {
+ "$ref": "#/$defs/listenTask"
+ },
+ {
+ "$ref": "#/$defs/raiseTask"
+ },
+ {
+ "$ref": "#/$defs/runTask"
+ },
+ {
+ "$ref": "#/$defs/setTask"
+ },
+ {
+ "$ref": "#/$defs/switchTask"
+ },
+ {
+ "$ref": "#/$defs/tryTask"
+ },
+ {
+ "$ref": "#/$defs/waitTask"
+ }
+ ]
+ },
+ "callTask": {
+ "title": "CallTask",
+ "description": "Defines the call to perform.",
+ "oneOf": [
+ {
+ "title": "CallAsyncAPI",
+ "description": "Defines the AsyncAPI call to perform.",
+ "type": "object",
+ "required": [
+ "call",
+ "with"
+ ],
+ "unevaluatedProperties": false,
+ "allOf": [
+ {
+ "$ref": "#/$defs/taskBase"
+ },
+ {
+ "properties": {
+ "call": {
+ "type": "string",
+ "const": "asyncapi"
+ },
+ "with": {
+ "type": "object",
+ "title": "AsyncApiArguments",
+ "description": "The Async API call arguments.",
+ "properties": {
+ "document": {
+ "$ref": "#/$defs/externalResource",
+ "title": "AsyncAPIDocument",
+ "description": "The document that defines the AsyncAPI operation to call."
+ },
+ "channel": {
+ "type": "string",
+ "title": "With",
+ "description": "The name of the channel on which to perform the operation. Used only in case the referenced document uses AsyncAPI v2.6.0."
+ },
+ "operation": {
+ "type": "string",
+ "title": "AsyncAPIOperation",
+ "description": "A reference to the AsyncAPI operation to call."
+ },
+ "server": {
+ "$ref": "#/$defs/asyncApiServer",
+ "title": "AsyncAPIServer",
+ "description": "An object used to configure to the server to call the specified AsyncAPI operation on."
+ },
+ "protocol": {
+ "type": "string",
+ "title": "AsyncApiProtocol",
+ "description": "The protocol to use to select the target server.",
+ "enum": [
+ "amqp",
+ "amqp1",
+ "anypointmq",
+ "googlepubsub",
+ "http",
+ "ibmmq",
+ "jms",
+ "kafka",
+ "mercure",
+ "mqtt",
+ "mqtt5",
+ "nats",
+ "pulsar",
+ "redis",
+ "sns",
+ "solace",
+ "sqs",
+ "stomp",
+ "ws"
+ ]
+ },
+ "message": {
+ "$ref": "#/$defs/asyncApiOutboundMessage",
+ "title": "AsyncApiMessage",
+ "description": "An object used to configure the message to publish using the target operation."
+ },
+ "subscription": {
+ "$ref": "#/$defs/asyncApiSubscription",
+ "title": "AsyncApiSubscription",
+ "description": "An object used to configure the subscription to messages consumed using the target operation."
+ },
+ "authentication": {
+ "$ref": "#/$defs/referenceableAuthenticationPolicy",
+ "title": "AsyncAPIAuthentication",
+ "description": "The authentication policy, if any, to use when calling the AsyncAPI operation."
+ }
+ },
+ "oneOf": [
+ {
+ "required": [
+ "document",
+ "operation",
+ "message"
+ ]
+ },
+ {
+ "required": [
+ "document",
+ "operation",
+ "subscription"
+ ]
+ },
+ {
+ "required": [
+ "document",
+ "channel",
+ "message"
+ ]
+ },
+ {
+ "required": [
+ "document",
+ "channel",
+ "subscription"
+ ]
+ }
+ ],
+ "unevaluatedProperties": false
+ }
+ }
+ }
+ ]
+ },
+ {
+ "title": "CallGRPC",
+ "description": "Defines the GRPC call to perform.",
+ "type": "object",
+ "unevaluatedProperties": false,
+ "required": [
+ "call",
+ "with"
+ ],
+ "allOf": [
+ {
+ "$ref": "#/$defs/taskBase"
+ },
+ {
+ "properties": {
+ "call": {
+ "type": "string",
+ "const": "grpc"
+ },
+ "with": {
+ "type": "object",
+ "title": "GRPCArguments",
+ "description": "The GRPC call arguments.",
+ "properties": {
+ "proto": {
+ "$ref": "#/$defs/externalResource",
+ "title": "WithGRPCProto",
+ "description": "The proto resource that describes the GRPC service to call."
+ },
+ "service": {
+ "type": "object",
+ "title": "WithGRPCService",
+ "unevaluatedProperties": false,
+ "properties": {
+ "name": {
+ "type": "string",
+ "title": "WithGRPCServiceName",
+ "description": "The name of the GRPC service to call."
+ },
+ "host": {
+ "type": "string",
+ "title": "WithGRPCServiceHost",
+ "description": "The hostname of the GRPC service to call.",
+ "pattern": "^[a-zA-Z0-9](?:[a-zA-Z0-9-.]{0,61}[a-zA-Z0-9])?$"
+ },
+ "port": {
+ "type": "integer",
+ "title": "WithGRPCServicePort",
+ "description": "The port number of the GRPC service to call.",
+ "minimum": 0,
+ "maximum": 65535
+ },
+ "authentication": {
+ "$ref": "#/$defs/referenceableAuthenticationPolicy",
+ "title": "WithGRPCServiceAuthentication",
+ "description": "The endpoint's authentication policy, if any."
+ }
+ },
+ "required": [
+ "name",
+ "host"
+ ]
+ },
+ "method": {
+ "type": "string",
+ "title": "WithGRPCMethod",
+ "description": "The name of the method to call on the defined GRPC service."
+ },
+ "arguments": {
+ "type": "object",
+ "title": "WithGRPCArguments",
+ "description": "The arguments, if any, to call the method with.",
+ "additionalProperties": true
+ }
+ },
+ "required": [
+ "proto",
+ "service",
+ "method"
+ ],
+ "unevaluatedProperties": false
+ }
+ }
+ }
+ ]
+ },
+ {
+ "title": "CallHTTP",
+ "description": "Defines the HTTP call to perform.",
+ "type": "object",
+ "unevaluatedProperties": false,
+ "required": [
+ "call",
+ "with"
+ ],
+ "allOf": [
+ {
+ "$ref": "#/$defs/taskBase"
+ },
+ {
+ "properties": {
+ "call": {
+ "type": "string",
+ "const": "http"
+ },
+ "with": {
+ "type": "object",
+ "title": "HTTPArguments",
+ "description": "The HTTP call arguments.",
+ "properties": {
+ "method": {
+ "type": "string",
+ "title": "HTTPMethod",
+ "description": "The HTTP method of the HTTP request to perform."
+ },
+ "endpoint": {
+ "title": "HTTPEndpoint",
+ "description": "The HTTP endpoint to send the request to.",
+ "$ref": "#/$defs/endpoint"
+ },
+ "headers": {
+ "oneOf": [
+ {
+ "type": "object",
+ "additionalProperties": {
+ "type": "string"
+ }
+ },
+ {
+ "$ref": "#/$defs/runtimeExpression"
+ }
+ ],
+ "title": "HTTPHeaders",
+ "description": "A name/value mapping of the headers, if any, of the HTTP request to perform."
+ },
+ "body": {
+ "title": "HTTPBody",
+ "description": "The body, if any, of the HTTP request to perform."
+ },
+ "query": {
+ "oneOf": [
+ {
+ "type": "object",
+ "additionalProperties": {
+ "type": "string"
+ }
+ },
+ {
+ "$ref": "#/$defs/runtimeExpression"
+ }
+ ],
+ "title": "HTTPQuery",
+ "description": "A name/value mapping of the query parameters, if any, of the HTTP request to perform.",
+ "additionalProperties": true
+ },
+ "output": {
+ "type": "string",
+ "title": "HTTPOutput",
+ "description": "The http call output format. Defaults to 'content'.",
+ "enum": [
+ "raw",
+ "content",
+ "response"
+ ]
+ },
+ "redirect": {
+ "type": "boolean",
+ "title": "HttpRedirect",
+ "description": "Specifies whether redirection status codes (`300–399`) should be treated as errors."
+ }
+ },
+ "required": [
+ "method",
+ "endpoint"
+ ],
+ "unevaluatedProperties": false
+ }
+ }
+ }
+ ]
+ },
+ {
+ "title": "CallOpenAPI",
+ "description": "Defines the OpenAPI call to perform.",
+ "type": "object",
+ "unevaluatedProperties": false,
+ "required": [
+ "call",
+ "with"
+ ],
+ "allOf": [
+ {
+ "$ref": "#/$defs/taskBase"
+ },
+ {
+ "properties": {
+ "call": {
+ "type": "string",
+ "const": "openapi"
+ },
+ "with": {
+ "type": "object",
+ "title": "OpenAPIArguments",
+ "description": "The OpenAPI call arguments.",
+ "properties": {
+ "document": {
+ "$ref": "#/$defs/externalResource",
+ "title": "WithOpenAPIDocument",
+ "description": "The document that defines the OpenAPI operation to call."
+ },
+ "operationId": {
+ "type": "string",
+ "title": "WithOpenAPIOperation",
+ "description": "The id of the OpenAPI operation to call."
+ },
+ "parameters": {
+ "type": "object",
+ "title": "WithOpenAPIParameters",
+ "description": "A name/value mapping of the parameters of the OpenAPI operation to call.",
+ "additionalProperties": true
+ },
+ "authentication": {
+ "$ref": "#/$defs/referenceableAuthenticationPolicy",
+ "title": "WithOpenAPIAuthentication",
+ "description": "The authentication policy, if any, to use when calling the OpenAPI operation."
+ },
+ "output": {
+ "type": "string",
+ "enum": [
+ "raw",
+ "content",
+ "response"
+ ],
+ "title": "WithOpenAPIOutput",
+ "description": "The http call output format. Defaults to 'content'."
+ },
+ "redirect": {
+ "type": "boolean",
+ "title": "HttpRedirect",
+ "description": "Specifies whether redirection status codes (`300–399`) should be treated as errors."
+ }
+ },
+ "required": [
+ "document",
+ "operationId"
+ ],
+ "unevaluatedProperties": false
+ }
+ }
+ }
+ ]
+ },
+ {
+ "title": "CallA2A",
+ "description": "Defines the A2A call to perform.",
+ "type": "object",
+ "unevaluatedProperties": false,
+ "required": [
+ "call",
+ "with"
+ ],
+ "allOf": [
+ {
+ "$ref": "#/$defs/taskBase"
+ },
+ {
+ "properties": {
+ "call": {
+ "type": "string",
+ "const": "a2a"
+ },
+ "with": {
+ "type": "object",
+ "title": "A2AArguments",
+ "description": "The A2A call arguments.",
+ "properties": {
+ "agentCard": {
+ "$ref": "#/$defs/externalResource",
+ "title": "WithA2AAgentCard",
+ "description": "The Agent Card that defines the agent to call."
+ },
+ "server": {
+ "title": "A2AServer",
+ "description": "The server endpoint to send the request to.",
+ "$ref": "#/$defs/endpoint"
+ },
+ "method": {
+ "type": "string",
+ "title": "WithA2AMethod",
+ "description": "The A2A method to send.",
+ "enum": [
+ "message/send",
+ "message/stream",
+ "tasks/get",
+ "tasks/list",
+ "tasks/cancel",
+ "tasks/resubscribe",
+ "tasks/pushNotificationConfig/set",
+ "tasks/pushNotificationConfig/get",
+ "tasks/pushNotificationConfig/list",
+ "tasks/pushNotificationConfig/delete",
+ "agent/getAuthenticatedExtendedCard"
+ ]
+ },
+ "parameters": {
+ "oneOf": [
+ {
+ "type": "object",
+ "minProperties": 1,
+ "additionalProperties": true
+ },
+ {
+ "type": "string"
+ }
+ ],
+ "title": "WithA2AParameters",
+ "description": "The parameters object to send with the A2A method."
+ }
+ },
+ "required": [
+ "method"
+ ],
+ "unevaluatedProperties": false
+ }
+ }
+ }
+ ]
+ },
+ {
+ "title": "CallFunction",
+ "description": "Defines the function call to perform.",
+ "type": "object",
+ "unevaluatedProperties": false,
+ "required": [
+ "call"
+ ],
+ "allOf": [
+ {
+ "$ref": "#/$defs/taskBase"
+ },
+ {
+ "properties": {
+ "call": {
+ "type": "string",
+ "not": {
+ "enum": [
+ "asyncapi",
+ "grpc",
+ "http",
+ "openapi",
+ "a2a"
+ ]
+ },
+ "description": "The name of the function to call."
+ },
+ "with": {
+ "type": "object",
+ "title": "FunctionArguments",
+ "description": "A name/value mapping of the parameters, if any, to call the function with.",
+ "additionalProperties": true
+ }
+ }
+ }
+ ]
+ }
+ ]
+ },
+ "forkTask": {
+ "type": "object",
+ "title": "ForkTask",
+ "description": "Allows workflows to execute multiple tasks concurrently and optionally race them against each other, with a single possible winner, which sets the task's output.",
+ "unevaluatedProperties": false,
+ "required": [
+ "fork"
+ ],
+ "allOf": [
+ {
+ "$ref": "#/$defs/taskBase"
+ },
+ {
+ "properties": {
+ "fork": {
+ "type": "object",
+ "title": "ForkTaskConfiguration",
+ "description": "The configuration of the branches to perform concurrently.",
+ "unevaluatedProperties": false,
+ "required": [
+ "branches"
+ ],
+ "properties": {
+ "branches": {
+ "$ref": "#/$defs/taskList",
+ "title": "ForkBranches"
+ },
+ "compete": {
+ "type": "boolean",
+ "title": "ForkCompete",
+ "description": "Indicates whether or not the concurrent tasks are racing against each other, with a single possible winner, which sets the composite task's output.",
+ "default": false
+ }
+ }
+ }
+ }
+ }
+ ]
+ },
+ "doTask": {
+ "type": "object",
+ "title": "DoTask",
+ "description": "Allows to execute a list of tasks in sequence.",
+ "unevaluatedProperties": false,
+ "required": [
+ "do"
+ ],
+ "allOf": [
+ {
+ "$ref": "#/$defs/taskBase"
+ },
+ {
+ "properties": {
+ "do": {
+ "$ref": "#/$defs/taskList",
+ "title": "DoTaskConfiguration",
+ "description": "The configuration of the tasks to perform sequentially."
+ }
+ }
+ }
+ ]
+ },
+ "emitTask": {
+ "type": "object",
+ "title": "EmitTask",
+ "description": "Allows workflows to publish events to event brokers or messaging systems, facilitating communication and coordination between different components and services.",
+ "required": [
+ "emit"
+ ],
+ "unevaluatedProperties": false,
+ "allOf": [
+ {
+ "$ref": "#/$defs/taskBase"
+ },
+ {
+ "properties": {
+ "emit": {
+ "type": "object",
+ "title": "EmitTaskConfiguration",
+ "description": "The configuration of an event's emission.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "event": {
+ "type": "object",
+ "title": "EmitEventDefinition",
+ "description": "The definition of the event to emit.",
+ "properties": {
+ "with": {
+ "$ref": "#/$defs/eventProperties",
+ "title": "EmitEventWith",
+ "description": "Defines the properties of event to emit.",
+ "required": [
+ "source",
+ "type"
+ ]
+ }
+ },
+ "additionalProperties": true
+ }
+ },
+ "required": [
+ "event"
+ ]
+ }
+ }
+ }
+ ]
+ },
+ "forTask": {
+ "type": "object",
+ "title": "ForTask",
+ "description": "Allows workflows to iterate over a collection of items, executing a defined set of subtasks for each item in the collection. This task type is instrumental in handling scenarios such as batch processing, data transformation, and repetitive operations across datasets.",
+ "required": [
+ "for",
+ "do"
+ ],
+ "unevaluatedProperties": false,
+ "allOf": [
+ {
+ "$ref": "#/$defs/taskBase"
+ },
+ {
+ "properties": {
+ "for": {
+ "type": "object",
+ "title": "ForTaskConfiguration",
+ "description": "The definition of the loop that iterates over a range of values.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "each": {
+ "type": "string",
+ "title": "ForEach",
+ "description": "The name of the variable used to store the current item being enumerated.",
+ "default": "item"
+ },
+ "in": {
+ "type": "string",
+ "title": "ForIn",
+ "description": "A runtime expression used to get the collection to enumerate."
+ },
+ "at": {
+ "type": "string",
+ "title": "ForAt",
+ "description": "The name of the variable used to store the index of the current item being enumerated.",
+ "default": "index"
+ }
+ },
+ "required": [
+ "in"
+ ]
+ },
+ "while": {
+ "type": "string",
+ "title": "While",
+ "description": "A runtime expression that represents the condition, if any, that must be met for the iteration to continue."
+ },
+ "do": {
+ "$ref": "#/$defs/taskList",
+ "title": "ForTaskDo"
+ }
+ }
+ }
+ ]
+ },
+ "listenTask": {
+ "type": "object",
+ "title": "ListenTask",
+ "description": "Provides a mechanism for workflows to await and react to external events, enabling event-driven behavior within workflow systems.",
+ "required": [
+ "listen"
+ ],
+ "unevaluatedProperties": false,
+ "allOf": [
+ {
+ "$ref": "#/$defs/taskBase"
+ },
+ {
+ "properties": {
+ "listen": {
+ "type": "object",
+ "title": "ListenTaskConfiguration",
+ "description": "The configuration of the listener to use.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "to": {
+ "$ref": "#/$defs/eventConsumptionStrategy",
+ "title": "ListenTo",
+ "description": "Defines the event(s) to listen to."
+ },
+ "read": {
+ "type": "string",
+ "enum": [
+ "data",
+ "envelope",
+ "raw"
+ ],
+ "default": "data",
+ "title": "ListenAndReadAs",
+ "description": "Specifies how events are read during the listen operation."
+ }
+ },
+ "required": [
+ "to"
+ ]
+ },
+ "foreach": {
+ "$ref": "#/$defs/subscriptionIterator",
+ "title": "ListenIterator",
+ "description": "Configures the iterator, if any, for processing consumed event(s)."
+ }
+ }
+ }
+ ]
+ },
+ "raiseTask": {
+ "type": "object",
+ "title": "RaiseTask",
+ "description": "Intentionally triggers and propagates errors.",
+ "required": [
+ "raise"
+ ],
+ "unevaluatedProperties": false,
+ "allOf": [
+ {
+ "$ref": "#/$defs/taskBase"
+ },
+ {
+ "properties": {
+ "raise": {
+ "type": "object",
+ "title": "RaiseTaskConfiguration",
+ "description": "The definition of the error to raise.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "error": {
+ "title": "RaiseTaskError",
+ "oneOf": [
+ {
+ "$ref": "#/$defs/error",
+ "title": "RaiseErrorDefinition",
+ "description": "Defines the error to raise."
+ },
+ {
+ "type": "string",
+ "title": "RaiseErrorReference",
+ "description": "The name of the error to raise"
+ }
+ ]
+ }
+ },
+ "required": [
+ "error"
+ ]
+ }
+ }
+ }
+ ]
+ },
+ "runTask": {
+ "type": "object",
+ "title": "RunTask",
+ "description": "Provides the capability to execute external containers, shell commands, scripts, or workflows.",
+ "required": [
+ "run"
+ ],
+ "unevaluatedProperties": false,
+ "allOf": [
+ {
+ "$ref": "#/$defs/taskBase"
+ },
+ {
+ "properties": {
+ "run": {
+ "type": "object",
+ "title": "RunTaskConfiguration",
+ "description": "The configuration of the process to execute.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "await": {
+ "type": "boolean",
+ "default": true,
+ "title": "AwaitProcessCompletion",
+ "description": "Whether to await the process completion before continuing."
+ },
+ "return": {
+ "type": "string",
+ "title": "ProcessReturnType",
+ "description": "Configures the output of the process.",
+ "enum": [
+ "stdout",
+ "stderr",
+ "code",
+ "all",
+ "none"
+ ],
+ "default": "stdout"
+ }
+ },
+ "oneOf": [
+ {
+ "title": "RunContainer",
+ "description": "Enables the execution of external processes encapsulated within a containerized environment.",
+ "properties": {
+ "container": {
+ "type": "object",
+ "title": "Container",
+ "description": "The configuration of the container to run.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "image": {
+ "type": "string",
+ "title": "ContainerImage",
+ "description": "The name of the container image to run."
+ },
+ "name": {
+ "type": "string",
+ "title": "ContainerName",
+ "description": "A runtime expression, if any, used to give specific name to the container."
+ },
+ "command": {
+ "type": "string",
+ "title": "ContainerCommand",
+ "description": "The command, if any, to execute on the container."
+ },
+ "ports": {
+ "type": "object",
+ "title": "ContainerPorts",
+ "description": "The container's port mappings, if any."
+ },
+ "volumes": {
+ "type": "object",
+ "title": "ContainerVolumes",
+ "description": "The container's volume mappings, if any."
+ },
+ "environment": {
+ "type": "object",
+ "title": "ContainerEnvironment",
+ "description": "A key/value mapping of the environment variables, if any, to use when running the configured process."
+ },
+ "lifetime": {
+ "$ref": "#/$defs/containerLifetime",
+ "title": "ContainerLifetime",
+ "description": "An object, if any, used to configure the container's lifetime"
+ }
+ },
+ "required": [
+ "image"
+ ]
+ }
+ },
+ "required": [
+ "container"
+ ]
+ },
+ {
+ "title": "RunScript",
+ "description": "Enables the execution of custom scripts or code within a workflow, empowering workflows to perform specialized logic, data processing, or integration tasks by executing user-defined scripts written in various programming languages.",
+ "properties": {
+ "script": {
+ "type": "object",
+ "title": "Script",
+ "description": "The configuration of the script to run.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "language": {
+ "type": "string",
+ "title": "ScriptLanguage",
+ "description": "The language of the script to run."
+ },
+ "arguments": {
+ "type": "object",
+ "title": "ScriptArguments",
+ "description": "A key/value mapping of the arguments, if any, to use when running the configured script.",
+ "additionalProperties": true
+ },
+ "environment": {
+ "type": "object",
+ "title": "ScriptEnvironment",
+ "description": "A key/value mapping of the environment variables, if any, to use when running the configured script process.",
+ "additionalProperties": true
+ }
+ },
+ "oneOf": [
+ {
+ "title": "InlineScript",
+ "type": "object",
+ "description": "The script's code.",
+ "properties": {
+ "code": {
+ "type": "string",
+ "title": "InlineScriptCode"
+ }
+ },
+ "required": [
+ "code"
+ ]
+ },
+ {
+ "title": "ExternalScript",
+ "type": "object",
+ "description": "The script's resource.",
+ "properties": {
+ "source": {
+ "$ref": "#/$defs/externalResource",
+ "title": "ExternalScriptResource"
+ }
+ },
+ "required": [
+ "source"
+ ]
+ }
+ ],
+ "required": [
+ "language"
+ ]
+ }
+ },
+ "required": [
+ "script"
+ ]
+ },
+ {
+ "title": "RunShell",
+ "description": "Enables the execution of shell commands within a workflow, enabling workflows to interact with the underlying operating system and perform system-level operations, such as file manipulation, environment configuration, or system administration tasks.",
+ "properties": {
+ "shell": {
+ "type": "object",
+ "title": "Shell",
+ "description": "The configuration of the shell command to run.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "command": {
+ "type": "string",
+ "title": "ShellCommand",
+ "description": "The shell command to run."
+ },
+ "arguments": {
+ "type": "object",
+ "title": "ShellArguments",
+ "description": "A list of the arguments of the shell command to run.",
+ "additionalProperties": true
+ },
+ "environment": {
+ "type": "object",
+ "title": "ShellEnvironment",
+ "description": "A key/value mapping of the environment variables, if any, to use when running the configured process.",
+ "additionalProperties": true
+ }
+ },
+ "required": [
+ "command"
+ ]
+ }
+ },
+ "required": [
+ "shell"
+ ]
+ },
+ {
+ "title": "RunWorkflow",
+ "description": "Enables the invocation and execution of nested workflows within a parent workflow, facilitating modularization, reusability, and abstraction of complex logic or business processes by encapsulating them into standalone workflow units.",
+ "properties": {
+ "workflow": {
+ "type": "object",
+ "title": "SubflowConfiguration",
+ "description": "The configuration of the workflow to run.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "namespace": {
+ "type": "string",
+ "title": "SubflowNamespace",
+ "description": "The namespace the workflow to run belongs to."
+ },
+ "name": {
+ "type": "string",
+ "title": "SubflowName",
+ "description": "The name of the workflow to run."
+ },
+ "version": {
+ "type": "string",
+ "default": "latest",
+ "title": "SubflowVersion",
+ "description": "The version of the workflow to run. Defaults to latest."
+ },
+ "input": {
+ "type": "object",
+ "title": "SubflowInput",
+ "description": "The data, if any, to pass as input to the workflow to execute. The value should be validated against the target workflow's input schema, if specified.",
+ "additionalProperties": true
+ }
+ },
+ "required": [
+ "namespace",
+ "name",
+ "version"
+ ]
+ }
+ },
+ "required": [
+ "workflow"
+ ]
+ }
+ ]
+ }
+ }
+ }
+ ]
+ },
+ "setTask": {
+ "type": "object",
+ "title": "SetTask",
+ "description": "A task used to set data.",
+ "required": [
+ "set"
+ ],
+ "unevaluatedProperties": false,
+ "allOf": [
+ {
+ "$ref": "#/$defs/taskBase"
+ },
+ {
+ "properties": {
+ "set": {
+ "oneOf": [
+ {
+ "type": "object",
+ "minProperties": 1,
+ "additionalProperties": true
+ },
+ {
+ "type": "string"
+ }
+ ],
+ "title": "SetTaskConfiguration",
+ "description": "The data to set."
+ }
+ }
+ }
+ ]
+ },
+ "switchTask": {
+ "type": "object",
+ "title": "SwitchTask",
+ "description": "Enables conditional branching within workflows, allowing them to dynamically select different paths based on specified conditions or criteria.",
+ "required": [
+ "switch"
+ ],
+ "unevaluatedProperties": false,
+ "allOf": [
+ {
+ "$ref": "#/$defs/taskBase"
+ },
+ {
+ "properties": {
+ "switch": {
+ "type": "array",
+ "title": "SwitchTaskConfiguration",
+ "description": "The definition of the switch to use.",
+ "minItems": 1,
+ "items": {
+ "type": "object",
+ "title": "SwitchItem",
+ "minProperties": 1,
+ "maxProperties": 1,
+ "additionalProperties": {
+ "type": "object",
+ "title": "SwitchCase",
+ "description": "The definition of a case within a switch task, defining a condition and corresponding tasks to execute if the condition is met.",
+ "unevaluatedProperties": false,
+ "required": [
+ "then"
+ ],
+ "properties": {
+ "when": {
+ "type": "string",
+ "title": "SwitchCaseCondition",
+ "description": "A runtime expression used to determine whether or not the case matches."
+ },
+ "then": {
+ "$ref": "#/$defs/flowDirective",
+ "title": "SwitchCaseOutcome",
+ "description": "The flow directive to execute when the case matches."
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ ]
+ },
+ "tryTask": {
+ "type": "object",
+ "title": "TryTask",
+ "description": "Serves as a mechanism within workflows to handle errors gracefully, potentially retrying failed tasks before proceeding with alternate ones.",
+ "required": [
+ "try",
+ "catch"
+ ],
+ "unevaluatedProperties": false,
+ "allOf": [
+ {
+ "$ref": "#/$defs/taskBase"
+ },
+ {
+ "properties": {
+ "try": {
+ "$ref": "#/$defs/taskList",
+ "title": "TryTaskConfiguration",
+ "description": "The task(s) to perform."
+ },
+ "catch": {
+ "type": "object",
+ "title": "TryTaskCatch",
+ "description": "The object used to define the errors to catch.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "errors": {
+ "type": "object",
+ "title": "CatchErrors",
+ "properties": {
+ "with": {
+ "$ref": "#/$defs/errorFilter"
+ }
+ },
+ "description": "static error filter"
+ },
+ "as": {
+ "type": "string",
+ "title": "CatchAs",
+ "description": "The name of the runtime expression variable to save the error as. Defaults to 'error'."
+ },
+ "when": {
+ "type": "string",
+ "title": "CatchWhen",
+ "description": "A runtime expression used to determine whether to catch the filtered error."
+ },
+ "exceptWhen": {
+ "type": "string",
+ "title": "CatchExceptWhen",
+ "description": "A runtime expression used to determine whether not to catch the filtered error."
+ },
+ "retry": {
+ "oneOf": [
+ {
+ "$ref": "#/$defs/retryPolicy",
+ "title": "RetryPolicyDefinition",
+ "description": "The retry policy to use, if any, when catching errors."
+ },
+ {
+ "type": "string",
+ "title": "RetryPolicyReference",
+ "description": "The name of the retry policy to use, if any, when catching errors."
+ }
+ ]
+ },
+ "do": {
+ "$ref": "#/$defs/taskList",
+ "title": "TryTaskCatchDo",
+ "description": "The definition of the task(s) to run when catching an error."
+ }
+ }
+ }
+ }
+ }
+ ]
+ },
+ "waitTask": {
+ "type": "object",
+ "title": "WaitTask",
+ "description": "Allows workflows to pause or delay their execution for a specified period of time.",
+ "required": [
+ "wait"
+ ],
+ "unevaluatedProperties": false,
+ "allOf": [
+ {
+ "$ref": "#/$defs/taskBase"
+ },
+ {
+ "properties": {
+ "wait": {
+ "$ref": "#/$defs/duration",
+ "title": "WaitTaskConfiguration",
+ "description": "The amount of time to wait."
+ }
+ }
+ }
+ ]
+ },
+ "flowDirective": {
+ "title": "FlowDirective",
+ "description": "Represents different transition options for a workflow.",
+ "anyOf": [
+ {
+ "title": "FlowDirectiveEnum",
+ "type": "string",
+ "enum": [
+ "continue",
+ "exit",
+ "end"
+ ],
+ "default": "continue"
+ },
+ {
+ "type": "string"
+ }
+ ]
+ },
+ "referenceableAuthenticationPolicy": {
+ "type": "object",
+ "title": "ReferenceableAuthenticationPolicy",
+ "description": "Represents a referenceable authentication policy.",
+ "unevaluatedProperties": false,
+ "oneOf": [
+ {
+ "title": "AuthenticationPolicyReference",
+ "description": "The reference of the authentication policy to use.",
+ "properties": {
+ "use": {
+ "type": "string",
+ "minLength": 1,
+ "title": "ReferenceableAuthenticationPolicyName",
+ "description": "The name of the authentication policy to use."
+ }
+ },
+ "required": [
+ "use"
+ ]
+ },
+ {
+ "$ref": "#/$defs/authenticationPolicy"
+ }
+ ]
+ },
+ "secretBasedAuthenticationPolicy": {
+ "type": "object",
+ "title": "SecretBasedAuthenticationPolicy",
+ "description": "Represents an authentication policy based on secrets.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "use": {
+ "type": "string",
+ "minLength": 1,
+ "title": "SecretBasedAuthenticationPolicyName",
+ "description": "The name of the authentication policy to use."
+ }
+ },
+ "required": [
+ "use"
+ ]
+ },
+ "authenticationPolicy": {
+ "type": "object",
+ "title": "AuthenticationPolicy",
+ "description": "Defines an authentication policy.",
+ "oneOf": [
+ {
+ "title": "BasicAuthenticationPolicy",
+ "description": "Use basic authentication.",
+ "properties": {
+ "basic": {
+ "type": "object",
+ "title": "BasicAuthenticationPolicyConfiguration",
+ "description": "The configuration of the basic authentication policy.",
+ "unevaluatedProperties": false,
+ "oneOf": [
+ {
+ "title": "BasicAuthenticationProperties",
+ "description": "Inline configuration of the basic authentication policy.",
+ "properties": {
+ "username": {
+ "type": "string",
+ "description": "The username to use."
+ },
+ "password": {
+ "type": "string",
+ "description": "The password to use."
+ }
+ },
+ "required": [
+ "username",
+ "password"
+ ]
+ },
+ {
+ "$ref": "#/$defs/secretBasedAuthenticationPolicy",
+ "title": "BasicAuthenticationPolicySecret",
+ "description": "Secret based configuration of the basic authentication policy."
+ }
+ ]
+ }
+ },
+ "required": [
+ "basic"
+ ]
+ },
+ {
+ "title": "BearerAuthenticationPolicy",
+ "description": "Use bearer authentication.",
+ "properties": {
+ "bearer": {
+ "type": "object",
+ "title": "BearerAuthenticationPolicyConfiguration",
+ "description": "The configuration of the bearer authentication policy.",
+ "unevaluatedProperties": false,
+ "oneOf": [
+ {
+ "title": "BearerAuthenticationProperties",
+ "description": "Inline configuration of the bearer authentication policy.",
+ "properties": {
+ "token": {
+ "type": "string",
+ "description": "The bearer token to use."
+ }
+ },
+ "required": [
+ "token"
+ ]
+ },
+ {
+ "$ref": "#/$defs/secretBasedAuthenticationPolicy",
+ "title": "BearerAuthenticationPolicySecret",
+ "description": "Secret based configuration of the bearer authentication policy."
+ }
+ ]
+ }
+ },
+ "required": [
+ "bearer"
+ ]
+ },
+ {
+ "title": "DigestAuthenticationPolicy",
+ "description": "Use digest authentication.",
+ "properties": {
+ "digest": {
+ "type": "object",
+ "title": "DigestAuthenticationPolicyConfiguration",
+ "description": "The configuration of the digest authentication policy.",
+ "unevaluatedProperties": false,
+ "oneOf": [
+ {
+ "title": "DigestAuthenticationProperties",
+ "description": "Inline configuration of the digest authentication policy.",
+ "properties": {
+ "username": {
+ "type": "string",
+ "description": "The username to use."
+ },
+ "password": {
+ "type": "string",
+ "description": "The password to use."
+ }
+ },
+ "required": [
+ "username",
+ "password"
+ ]
+ },
+ {
+ "$ref": "#/$defs/secretBasedAuthenticationPolicy",
+ "title": "DigestAuthenticationPolicySecret",
+ "description": "Secret based configuration of the digest authentication policy."
+ }
+ ]
+ }
+ },
+ "required": [
+ "digest"
+ ]
+ },
+ {
+ "title": "OAuth2AuthenticationPolicy",
+ "description": "Use OAuth2 authentication.",
+ "properties": {
+ "oauth2": {
+ "type": "object",
+ "title": "OAuth2AuthenticationPolicyConfiguration",
+ "description": "The configuration of the OAuth2 authentication policy.",
+ "unevaluatedProperties": false,
+ "oneOf": [
+ {
+ "$ref": "#/$defs/oauth2AuthenticationProperties",
+ "type": "object",
+ "title": "OAuth2ConnectAuthenticationProperties",
+ "description": "The inline configuration of the OAuth2 authentication policy.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "endpoints": {
+ "type": "object",
+ "title": "OAuth2AuthenticationPropertiesEndpoints",
+ "description": "The endpoint configurations for OAuth2.",
+ "properties": {
+ "token": {
+ "type": "string",
+ "format": "uri-template",
+ "default": "/oauth2/token",
+ "title": "OAuth2TokenEndpoint",
+ "description": "The relative path to the token endpoint. Defaults to `/oauth2/token`."
+ },
+ "revocation": {
+ "type": "string",
+ "format": "uri-template",
+ "default": "/oauth2/revoke",
+ "title": "OAuth2RevocationEndpoint",
+ "description": "The relative path to the revocation endpoint. Defaults to `/oauth2/revoke`."
+ },
+ "introspection": {
+ "type": "string",
+ "format": "uri-template",
+ "default": "/oauth2/introspect",
+ "title": "OAuth2IntrospectionEndpoint",
+ "description": "The relative path to the introspection endpoint. Defaults to `/oauth2/introspect`."
+ }
+ }
+ }
+ }
+ },
+ {
+ "$ref": "#/$defs/secretBasedAuthenticationPolicy",
+ "title": "OAuth2AuthenticationPolicySecret",
+ "description": "Secret based configuration of the OAuth2 authentication policy."
+ }
+ ]
+ }
+ },
+ "required": [
+ "oauth2"
+ ]
+ },
+ {
+ "title": "OpenIdConnectAuthenticationPolicy",
+ "description": "Use OpenIdConnect authentication.",
+ "properties": {
+ "oidc": {
+ "type": "object",
+ "title": "OpenIdConnectAuthenticationPolicyConfiguration",
+ "description": "The configuration of the OpenIdConnect authentication policy.",
+ "unevaluatedProperties": false,
+ "oneOf": [
+ {
+ "$ref": "#/$defs/oauth2AuthenticationProperties",
+ "title": "OpenIdConnectAuthenticationProperties",
+ "description": "The inline configuration of the OpenIdConnect authentication policy.",
+ "unevaluatedProperties": false
+ },
+ {
+ "$ref": "#/$defs/secretBasedAuthenticationPolicy",
+ "title": "OpenIdConnectAuthenticationPolicySecret",
+ "description": "Secret based configuration of the OpenIdConnect authentication policy."
+ }
+ ]
+ }
+ },
+ "required": [
+ "oidc"
+ ]
+ }
+ ]
+ },
+ "oauth2AuthenticationProperties": {
+ "type": "object",
+ "title": "OAuth2AuthenticationData",
+ "description": "Inline configuration of the OAuth2 authentication policy.",
+ "properties": {
+ "authority": {
+ "$ref": "#/$defs/uriTemplate",
+ "title": "OAuth2AuthenticationDataAuthority",
+ "description": "The URI that references the OAuth2 authority to use."
+ },
+ "grant": {
+ "type": "string",
+ "enum": [
+ "authorization_code",
+ "client_credentials",
+ "password",
+ "refresh_token",
+ "urn:ietf:params:oauth:grant-type:token-exchange"
+ ],
+ "title": "OAuth2AuthenticationDataGrant",
+ "description": "The grant type to use."
+ },
+ "client": {
+ "type": "object",
+ "title": "OAuth2AuthenticationDataClient",
+ "description": "The definition of an OAuth2 client.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "id": {
+ "type": "string",
+ "title": "ClientId",
+ "description": "The client id to use."
+ },
+ "secret": {
+ "type": "string",
+ "title": "ClientSecret",
+ "description": "The client secret to use, if any."
+ },
+ "assertion": {
+ "type": "string",
+ "title": "ClientAssertion",
+ "description": "A JWT containing a signed assertion with your application credentials."
+ },
+ "authentication": {
+ "type": "string",
+ "enum": [
+ "client_secret_basic",
+ "client_secret_post",
+ "client_secret_jwt",
+ "private_key_jwt",
+ "none"
+ ],
+ "default": "client_secret_post",
+ "title": "ClientAuthentication",
+ "description": "The authentication method to use to authenticate the client."
+ }
+ }
+ },
+ "request": {
+ "type": "object",
+ "title": "OAuth2TokenRequest",
+ "description": "The configuration of an OAuth2 token request",
+ "properties": {
+ "encoding": {
+ "type": "string",
+ "enum": [
+ "application/x-www-form-urlencoded",
+ "application/json"
+ ],
+ "default": "application/x-www-form-urlencoded",
+ "title": "Oauth2TokenRequestEncoding"
+ }
+ }
+ },
+ "issuers": {
+ "type": "array",
+ "title": "OAuth2Issuers",
+ "description": "A list that contains that contains valid issuers that will be used to check against the issuer of generated tokens.",
+ "items": {
+ "type": "string"
+ }
+ },
+ "scopes": {
+ "type": "array",
+ "title": "OAuth2AuthenticationDataScopes",
+ "description": "The scopes, if any, to request the token for.",
+ "items": {
+ "type": "string"
+ }
+ },
+ "audiences": {
+ "type": "array",
+ "title": "OAuth2AuthenticationDataAudiences",
+ "description": "The audiences, if any, to request the token for.",
+ "items": {
+ "type": "string"
+ }
+ },
+ "username": {
+ "type": "string",
+ "title": "OAuth2AuthenticationDataUsername",
+ "description": "The username to use. Used only if the grant type is Password."
+ },
+ "password": {
+ "type": "string",
+ "title": "OAuth2AuthenticationDataPassword",
+ "description": "The password to use. Used only if the grant type is Password."
+ },
+ "subject": {
+ "$ref": "#/$defs/oauth2Token",
+ "title": "OAuth2AuthenticationDataSubject",
+ "description": "The security token that represents the identity of the party on behalf of whom the request is being made."
+ },
+ "actor": {
+ "$ref": "#/$defs/oauth2Token",
+ "title": "OAuth2AuthenticationDataActor",
+ "description": "The security token that represents the identity of the acting party."
+ }
+ }
+ },
+ "oauth2Token": {
+ "type": "object",
+ "title": "OAuth2TokenDefinition",
+ "description": "Represents an OAuth2 token.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "token": {
+ "type": "string",
+ "title": "OAuth2Token",
+ "description": "The security token to use."
+ },
+ "type": {
+ "type": "string",
+ "title": "OAuth2TokenType",
+ "description": "The type of the security token to use."
+ }
+ },
+ "required": [
+ "token",
+ "type"
+ ]
+ },
+ "duration": {
+ "oneOf": [
+ {
+ "type": "object",
+ "minProperties": 1,
+ "unevaluatedProperties": false,
+ "properties": {
+ "days": {
+ "type": "integer",
+ "title": "DurationDays",
+ "description": "Number of days, if any."
+ },
+ "hours": {
+ "type": "integer",
+ "title": "DurationHours",
+ "description": "Number of days, if any."
+ },
+ "minutes": {
+ "type": "integer",
+ "title": "DurationMinutes",
+ "description": "Number of minutes, if any."
+ },
+ "seconds": {
+ "type": "integer",
+ "title": "DurationSeconds",
+ "description": "Number of seconds, if any."
+ },
+ "milliseconds": {
+ "type": "integer",
+ "title": "DurationMilliseconds",
+ "description": "Number of milliseconds, if any."
+ }
+ },
+ "title": "DurationInline",
+ "description": "The inline definition of a duration."
+ },
+ {
+ "type": "string",
+ "pattern": "^P(?!$)(\\d+(?:\\.\\d+)?Y)?(\\d+(?:\\.\\d+)?M)?(\\d+(?:\\.\\d+)?W)?(\\d+(?:\\.\\d+)?D)?(T(?=\\d)(\\d+(?:\\.\\d+)?H)?(\\d+(?:\\.\\d+)?M)?(\\d+(?:\\.\\d+)?S)?)?$",
+ "title": "DurationExpression",
+ "description": "The ISO 8601 expression of a duration."
+ }
+ ]
+ },
+ "error": {
+ "type": "object",
+ "title": "Error",
+ "description": "Represents an error.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "type": {
+ "title": "ErrorType",
+ "description": "A URI reference that identifies the error type.",
+ "oneOf": [
+ {
+ "title": "LiteralErrorType",
+ "$ref": "#/$defs/uriTemplate",
+ "description": "The literal error type."
+ },
+ {
+ "title": "ExpressionErrorType",
+ "$ref": "#/$defs/runtimeExpression",
+ "description": "An expression based error type."
+ }
+ ]
+ },
+ "status": {
+ "type": "integer",
+ "title": "ErrorStatus",
+ "description": "The status code generated by the origin for this occurrence of the error."
+ },
+ "instance": {
+ "title": "ErrorInstance",
+ "description": "A JSON Pointer used to reference the component the error originates from.",
+ "oneOf": [
+ {
+ "title": "LiteralErrorInstance",
+ "description": "The literal error instance.",
+ "type": "string",
+ "format": "json-pointer"
+ },
+ {
+ "$ref": "#/$defs/runtimeExpression",
+ "title": "ExpressionErrorInstance",
+ "description": "An expression based error instance."
+ }
+ ]
+ },
+ "title": {
+ "description": "A short, human-readable summary of the error.",
+ "title": "ErrorTitle",
+ "anyOf": [
+ {
+ "$ref": "#/$defs/runtimeExpression",
+ "title": "ExpressionErrorTitle"
+ },
+ {
+ "type": "string",
+ "title": "LiteralErrorTitle"
+ }
+ ]
+ },
+ "detail": {
+ "title": "ErrorDetails",
+ "description": "A human-readable explanation specific to this occurrence of the error.",
+ "anyOf": [
+ {
+ "$ref": "#/$defs/runtimeExpression",
+ "title": "ExpressionErrorDetails"
+ },
+ {
+ "type": "string",
+ "title": "LiteralErrorDetails"
+ }
+ ]
+ }
+ },
+ "required": [
+ "type",
+ "status"
+ ]
+ },
+ "errorFilter": {
+ "type": "object",
+ "title": "ErrorFilter",
+ "description": "Error filtering base on static values. For error filtering on dynamic values, use catch.when property",
+ "minProperties": 1,
+ "properties": {
+ "type": {
+ "type": "string",
+ "description": "if present, means this value should be used for filtering"
+ },
+ "status": {
+ "type": "integer",
+ "description": "if present, means this value should be used for filtering"
+ },
+ "instance": {
+ "type": "string",
+ "description": "if present, means this value should be used for filtering"
+ },
+ "title": {
+ "type": "string",
+ "description": "if present, means this value should be used for filtering"
+ },
+ "details": {
+ "type": "string",
+ "description": "if present, means this value should be used for filtering"
+ }
+ }
+ },
+ "uriTemplate": {
+ "title": "UriTemplate",
+ "anyOf": [
+ {
+ "title": "LiteralUriTemplate",
+ "type": "string",
+ "format": "uri-template",
+ "pattern": "^[A-Za-z][A-Za-z0-9+\\-.]*://.*"
+ },
+ {
+ "title": "LiteralUri",
+ "type": "string",
+ "format": "uri",
+ "pattern": "^[A-Za-z][A-Za-z0-9+\\-.]*://.*"
+ }
+ ]
+ },
+ "endpoint": {
+ "title": "Endpoint",
+ "description": "Represents an endpoint.",
+ "oneOf": [
+ {
+ "$ref": "#/$defs/runtimeExpression"
+ },
+ {
+ "$ref": "#/$defs/uriTemplate"
+ },
+ {
+ "title": "EndpointConfiguration",
+ "type": "object",
+ "unevaluatedProperties": false,
+ "properties": {
+ "uri": {
+ "title": "EndpointUri",
+ "description": "The endpoint's URI.",
+ "oneOf": [
+ {
+ "title": "LiteralEndpointURI",
+ "description": "The literal endpoint's URI.",
+ "$ref": "#/$defs/uriTemplate"
+ },
+ {
+ "title": "ExpressionEndpointURI",
+ "$ref": "#/$defs/runtimeExpression",
+ "description": "An expression based endpoint's URI."
+ }
+ ]
+ },
+ "authentication": {
+ "$ref": "#/$defs/referenceableAuthenticationPolicy",
+ "title": "EndpointAuthentication",
+ "description": "The authentication policy to use."
+ }
+ },
+ "required": [
+ "uri"
+ ]
+ }
+ ]
+ },
+ "eventProperties": {
+ "type": "object",
+ "title": "EventProperties",
+ "description": "Describes the properties of an event.",
+ "properties": {
+ "id": {
+ "type": "string",
+ "title": "EventId",
+ "description": "The event's unique identifier."
+ },
+ "source": {
+ "title": "EventSource",
+ "description": "Identifies the context in which an event happened.",
+ "oneOf": [
+ {
+ "$ref": "#/$defs/uriTemplate"
+ },
+ {
+ "$ref": "#/$defs/runtimeExpression"
+ }
+ ]
+ },
+ "type": {
+ "type": "string",
+ "title": "EventType",
+ "description": "This attribute contains a value describing the type of event related to the originating occurrence."
+ },
+ "time": {
+ "title": "EventTime",
+ "description": "When the event occured.",
+ "oneOf": [
+ {
+ "title": "LiteralTime",
+ "type": "string",
+ "format": "date-time"
+ },
+ {
+ "$ref": "#/$defs/runtimeExpression"
+ }
+ ]
+ },
+ "subject": {
+ "type": "string",
+ "title": "EventSubject",
+ "description": "The subject of the event."
+ },
+ "datacontenttype": {
+ "type": "string",
+ "title": "EventDataContentType",
+ "description": "Content type of data value. This attribute enables data to carry any type of content, whereby format and encoding might differ from that of the chosen event format."
+ },
+ "dataschema": {
+ "title": "EventDataschema",
+ "description": "The schema describing the event format.",
+ "oneOf": [
+ {
+ "title": "LiteralDataSchema",
+ "$ref": "#/$defs/uriTemplate",
+ "description": "The literal event data schema."
+ },
+ {
+ "title": "ExpressionDataSchema",
+ "$ref": "#/$defs/runtimeExpression",
+ "description": "An expression based event data schema."
+ }
+ ]
+ },
+ "data": {
+ "title": "EventData",
+ "description": "The event's payload data",
+ "anyOf": [
+ {
+ "$ref": "#/$defs/runtimeExpression"
+ },
+ {}
+ ]
+ }
+ },
+ "additionalProperties": true
+ },
+ "eventConsumptionStrategy": {
+ "type": "object",
+ "title": "EventConsumptionStrategy",
+ "description": "Describe the event consumption strategy to adopt.",
+ "unevaluatedProperties": false,
+ "oneOf": [
+ {
+ "title": "AllEventConsumptionStrategy",
+ "properties": {
+ "all": {
+ "type": "array",
+ "title": "AllEventConsumptionStrategyConfiguration",
+ "description": "A list containing all the events that must be consumed.",
+ "items": {
+ "$ref": "#/$defs/eventFilter"
+ }
+ }
+ },
+ "required": [
+ "all"
+ ]
+ },
+ {
+ "title": "AnyEventConsumptionStrategy",
+ "properties": {
+ "any": {
+ "type": "array",
+ "title": "AnyEventConsumptionStrategyConfiguration",
+ "description": "A list containing any of the events to consume.",
+ "items": {
+ "$ref": "#/$defs/eventFilter"
+ }
+ },
+ "until": {
+ "oneOf": [
+ {
+ "type": "string",
+ "title": "AnyEventUntilCondition",
+ "description": "A runtime expression condition evaluated after consuming an event and which determines whether or not to continue listening."
+ },
+ {
+ "allOf": [
+ {
+ "$ref": "#/$defs/eventConsumptionStrategy",
+ "description": "The strategy that defines the event(s) to consume to stop listening."
+ },
+ {
+ "properties": {
+ "until": false
+ }
+ }
+ ],
+ "title": "AnyEventUntilConsumed"
+ }
+ ]
+ }
+ },
+ "required": [
+ "any"
+ ]
+ },
+ {
+ "title": "OneEventConsumptionStrategy",
+ "properties": {
+ "one": {
+ "$ref": "#/$defs/eventFilter",
+ "title": "OneEventConsumptionStrategyConfiguration",
+ "description": "The single event to consume."
+ }
+ },
+ "required": [
+ "one"
+ ]
+ }
+ ]
+ },
+ "eventFilter": {
+ "type": "object",
+ "title": "EventFilter",
+ "description": "An event filter is a mechanism used to selectively process or handle events based on predefined criteria, such as event type, source, or specific attributes.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "with": {
+ "$ref": "#/$defs/eventProperties",
+ "minProperties": 1,
+ "title": "WithEvent",
+ "description": "An event filter is a mechanism used to selectively process or handle events based on predefined criteria, such as event type, source, or specific attributes."
+ },
+ "correlate": {
+ "type": "object",
+ "title": "EventFilterCorrelate",
+ "description": "A correlation is a link between events and data, established by mapping event attributes to specific data attributes, allowing for coordinated processing or handling based on event characteristics.",
+ "additionalProperties": {
+ "type": "object",
+ "properties": {
+ "from": {
+ "type": "string",
+ "title": "CorrelateFrom",
+ "description": "A runtime expression used to extract the correlation value from the filtered event."
+ },
+ "expect": {
+ "type": "string",
+ "title": "CorrelateExpect",
+ "description": "A constant or a runtime expression, if any, used to determine whether or not the extracted correlation value matches expectations. If not set, the first extracted value will be used as the correlation's expectation."
+ }
+ },
+ "required": [
+ "from"
+ ]
+ }
+ }
+ },
+ "required": [
+ "with"
+ ]
+ },
+ "extension": {
+ "type": "object",
+ "title": "Extension",
+ "description": "The definition of an extension.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "extend": {
+ "type": "string",
+ "enum": [
+ "call",
+ "composite",
+ "emit",
+ "for",
+ "listen",
+ "raise",
+ "run",
+ "set",
+ "switch",
+ "try",
+ "wait",
+ "all"
+ ],
+ "title": "ExtensionTarget",
+ "description": "The type of task to extend."
+ },
+ "when": {
+ "type": "string",
+ "title": "ExtensionCondition",
+ "description": "A runtime expression, if any, used to determine whether or not the extension should apply in the specified context."
+ },
+ "before": {
+ "$ref": "#/$defs/taskList",
+ "title": "ExtensionDoBefore",
+ "description": "The task(s) to execute before the extended task, if any."
+ },
+ "after": {
+ "$ref": "#/$defs/taskList",
+ "title": "ExtensionDoAfter",
+ "description": "The task(s) to execute after the extended task, if any."
+ }
+ },
+ "required": [
+ "extend"
+ ]
+ },
+ "externalResource": {
+ "type": "object",
+ "title": "ExternalResource",
+ "description": "Represents an external resource.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "name": {
+ "type": "string",
+ "title": "ExternalResourceName",
+ "description": "The name of the external resource, if any."
+ },
+ "endpoint": {
+ "$ref": "#/$defs/endpoint",
+ "title": "ExternalResourceEndpoint",
+ "description": "The endpoint of the external resource."
+ }
+ },
+ "required": [
+ "endpoint"
+ ]
+ },
+ "input": {
+ "type": "object",
+ "title": "Input",
+ "description": "Configures the input of a workflow or task.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "schema": {
+ "$ref": "#/$defs/schema",
+ "title": "InputSchema",
+ "description": "The schema used to describe and validate the input of the workflow or task."
+ },
+ "from": {
+ "title": "InputFrom",
+ "description": "A runtime expression, if any, used to mutate and/or filter the input of the workflow or task.",
+ "oneOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "object"
+ }
+ ]
+ }
+ }
+ },
+ "output": {
+ "type": "object",
+ "title": "Output",
+ "description": "Configures the output of a workflow or task.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "schema": {
+ "$ref": "#/$defs/schema",
+ "title": "OutputSchema",
+ "description": "The schema used to describe and validate the output of the workflow or task."
+ },
+ "as": {
+ "title": "OutputAs",
+ "description": "A runtime expression, if any, used to mutate and/or filter the output of the workflow or task.",
+ "oneOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "object"
+ }
+ ]
+ }
+ }
+ },
+ "export": {
+ "type": "object",
+ "title": "Export",
+ "description": "Set the content of the context. .",
+ "unevaluatedProperties": false,
+ "properties": {
+ "schema": {
+ "$ref": "#/$defs/schema",
+ "title": "ExportSchema",
+ "description": "The schema used to describe and validate the workflow context."
+ },
+ "as": {
+ "title": "ExportAs",
+ "description": "A runtime expression, if any, used to export the output data to the context.",
+ "oneOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "object"
+ }
+ ]
+ }
+ }
+ },
+ "retryPolicy": {
+ "type": "object",
+ "title": "RetryPolicy",
+ "description": "Defines a retry policy.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "when": {
+ "type": "string",
+ "title": "RetryWhen",
+ "description": "A runtime expression, if any, used to determine whether or not to retry running the task, in a given context."
+ },
+ "exceptWhen": {
+ "type": "string",
+ "title": "RetryExcepWhen",
+ "description": "A runtime expression used to determine whether or not to retry running the task, in a given context."
+ },
+ "delay": {
+ "$ref": "#/$defs/duration",
+ "title": "RetryDelay",
+ "description": "The duration to wait between retry attempts."
+ },
+ "backoff": {
+ "type": "object",
+ "title": "RetryBackoff",
+ "description": "The retry duration backoff.",
+ "unevaluatedProperties": false,
+ "oneOf": [
+ {
+ "title": "ConstantBackoff",
+ "properties": {
+ "constant": {
+ "type": "object",
+ "description": "The definition of the constant backoff to use, if any."
+ }
+ },
+ "required": [
+ "constant"
+ ]
+ },
+ {
+ "title": "ExponentialBackOff",
+ "properties": {
+ "exponential": {
+ "type": "object",
+ "description": "The definition of the exponential backoff to use, if any."
+ }
+ },
+ "required": [
+ "exponential"
+ ]
+ },
+ {
+ "title": "LinearBackoff",
+ "properties": {
+ "linear": {
+ "type": "object",
+ "description": "The definition of the linear backoff to use, if any."
+ }
+ },
+ "required": [
+ "linear"
+ ]
+ }
+ ]
+ },
+ "limit": {
+ "type": "object",
+ "title": "RetryLimit",
+ "unevaluatedProperties": false,
+ "properties": {
+ "attempt": {
+ "type": "object",
+ "title": "RetryLimitAttempt",
+ "unevaluatedProperties": false,
+ "properties": {
+ "count": {
+ "type": "integer",
+ "title": "RetryLimitAttemptCount",
+ "description": "The maximum amount of retry attempts, if any."
+ },
+ "duration": {
+ "$ref": "#/$defs/duration",
+ "title": "RetryLimitAttemptDuration",
+ "description": "The maximum duration for each retry attempt."
+ }
+ }
+ },
+ "duration": {
+ "$ref": "#/$defs/duration",
+ "title": "RetryLimitDuration",
+ "description": "The duration limit, if any, for all retry attempts."
+ }
+ },
+ "description": "The retry limit, if any."
+ },
+ "jitter": {
+ "type": "object",
+ "title": "RetryPolicyJitter",
+ "description": "The parameters, if any, that control the randomness or variability of the delay between retry attempts.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "from": {
+ "$ref": "#/$defs/duration",
+ "title": "RetryPolicyJitterFrom",
+ "description": "The minimum duration of the jitter range."
+ },
+ "to": {
+ "$ref": "#/$defs/duration",
+ "title": "RetryPolicyJitterTo",
+ "description": "The maximum duration of the jitter range."
+ }
+ },
+ "required": [
+ "from",
+ "to"
+ ]
+ }
+ }
+ },
+ "schema": {
+ "type": "object",
+ "title": "Schema",
+ "description": "Represents the definition of a schema.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "format": {
+ "type": "string",
+ "default": "json",
+ "title": "SchemaFormat",
+ "description": "The schema's format. Defaults to 'json'. The (optional) version of the format can be set using `{format}:{version}`."
+ }
+ },
+ "oneOf": [
+ {
+ "title": "SchemaInline",
+ "properties": {
+ "document": {
+ "description": "The schema's inline definition."
+ }
+ },
+ "required": [
+ "document"
+ ]
+ },
+ {
+ "title": "SchemaExternal",
+ "properties": {
+ "resource": {
+ "$ref": "#/$defs/externalResource",
+ "title": "SchemaExternalResource",
+ "description": "The schema's external resource."
+ }
+ },
+ "required": [
+ "resource"
+ ]
+ }
+ ]
+ },
+ "timeout": {
+ "type": "object",
+ "title": "Timeout",
+ "description": "The definition of a timeout.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "after": {
+ "$ref": "#/$defs/duration",
+ "title": "TimeoutAfter",
+ "description": "The duration after which to timeout."
+ }
+ },
+ "required": [
+ "after"
+ ]
+ },
+ "catalog": {
+ "type": "object",
+ "title": "Catalog",
+ "description": "The definition of a resource catalog.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "endpoint": {
+ "$ref": "#/$defs/endpoint",
+ "title": "CatalogEndpoint",
+ "description": "The root URL where the catalog is hosted."
+ }
+ },
+ "required": [
+ "endpoint"
+ ]
+ },
+ "runtimeExpression": {
+ "type": "string",
+ "title": "RuntimeExpression",
+ "description": "A runtime expression.",
+ "pattern": "^\\s*\\$\\{.+\\}\\s*$"
+ },
+ "containerLifetime": {
+ "type": "object",
+ "title": "ContainerLifetime",
+ "description": "The configuration of a container's lifetime",
+ "unevaluatedProperties": false,
+ "properties": {
+ "cleanup": {
+ "type": "string",
+ "title": "ContainerCleanupPolicy",
+ "description": "The container cleanup policy to use",
+ "enum": [
+ "always",
+ "never",
+ "eventually"
+ ],
+ "default": "never"
+ },
+ "after": {
+ "$ref": "#/$defs/duration",
+ "title": "ContainerLifetimeDuration",
+ "description": "The duration after which to cleanup the container, in case the cleanup policy has been set to 'eventually'"
+ }
+ },
+ "required": [
+ "cleanup"
+ ],
+ "if": {
+ "properties": {
+ "cleanup": {
+ "const": "eventually"
+ }
+ }
+ },
+ "then": {
+ "required": [
+ "after"
+ ]
+ },
+ "else": {
+ "not": {
+ "required": [
+ "after"
+ ]
+ }
+ }
+ },
+ "processResult": {
+ "type": "object",
+ "title": "ProcessResult",
+ "description": "The object returned by a run task when its return type has been set 'all'.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "code": {
+ "type": "integer",
+ "title": "ProcessExitCode",
+ "description": "The process's exit code."
+ },
+ "stdout": {
+ "type": "string",
+ "title": "ProcessStandardOutput",
+ "description": "The content of the process's STDOUT."
+ },
+ "stderr": {
+ "type": "string",
+ "title": "ProcessStandardError",
+ "description": "The content of the process's STDERR."
+ }
+ },
+ "required": [
+ "code",
+ "stdout",
+ "stderr"
+ ]
+ },
+ "asyncApiServer": {
+ "type": "object",
+ "title": "AsyncApiServer",
+ "description": "Configures the target server of an AsyncAPI operation.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "name": {
+ "type": "string",
+ "title": "AsyncApiServerName",
+ "description": "The target server's name."
+ },
+ "variables": {
+ "type": "object",
+ "title": "AsyncApiServerVariables",
+ "description": "The target server's variables, if any."
+ }
+ },
+ "required": [
+ "name"
+ ]
+ },
+ "asyncApiOutboundMessage": {
+ "type": "object",
+ "title": "AsyncApiOutboundMessage",
+ "description": "An object used to configure the message to publish using the target operation.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "payload": {
+ "type": "object",
+ "title": "AsyncApiMessagePayload",
+ "description": "The message's payload, if any."
+ },
+ "headers": {
+ "type": "object",
+ "title": "AsyncApiMessageHeaders",
+ "description": "The message's headers, if any."
+ }
+ }
+ },
+ "asyncApiInboundMessage": {
+ "title": "AsyncApiInboundMessage",
+ "description": "Represents a message counsumed by an AsyncAPI subscription.",
+ "allOf": [
+ {
+ "$ref": "#/$defs/asyncApiOutboundMessage"
+ },
+ {
+ "properties": {
+ "correlationId": {
+ "type": "string",
+ "title": "AsyncApiMessageCorrelationId",
+ "description": "The message's correlation id, if any."
+ }
+ }
+ }
+ ]
+ },
+ "asyncApiSubscription": {
+ "type": "object",
+ "title": "AsyncApiSubscription",
+ "description": "An object used to configure the subscription to messages consumed using the target operation.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "filter": {
+ "$ref": "#/$defs/runtimeExpression",
+ "title": "AsyncApiSubscriptionCorrelation",
+ "description": "A runtime expression, if any, used to filter consumed messages."
+ },
+ "consume": {
+ "$ref": "#/$defs/asyncApiMessageConsumptionPolicy",
+ "title": "AsyncApiMessageConsumptionPolicy",
+ "description": "An object used to configure the subscription's message consumption policy."
+ },
+ "foreach": {
+ "$ref": "#/$defs/subscriptionIterator",
+ "title": "AsyncApiSubscriptionIterator",
+ "description": "Configures the iterator, if any, for processing consumed messages(s)."
+ }
+ },
+ "required": [
+ "consume"
+ ]
+ },
+ "asyncApiMessageConsumptionPolicy": {
+ "type": "object",
+ "title": "AsyncApiMessageConsumptionPolicy",
+ "description": "An object used to configure a subscription's message consumption policy.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "for": {
+ "$ref": "#/$defs/duration",
+ "title": "AsyncApiMessageConsumptionPolicyFor",
+ "description": "Specifies the time period over which messages will be consumed."
+ }
+ },
+ "oneOf": [
+ {
+ "properties": {
+ "amount": {
+ "type": "integer",
+ "description": "The amount of (filtered) messages to consume before disposing of the subscription."
+ }
+ },
+ "title": "AsyncApiMessageConsumptionPolicyAmount",
+ "required": [
+ "amount"
+ ]
+ },
+ {
+ "properties": {
+ "while": {
+ "$ref": "#/$defs/runtimeExpression",
+ "description": "A runtime expression evaluated after each consumed (filtered) message to decide if message consumption should continue."
+ }
+ },
+ "title": "AsyncApiMessageConsumptionPolicyWhile",
+ "required": [
+ "while"
+ ]
+ },
+ {
+ "properties": {
+ "until": {
+ "$ref": "#/$defs/runtimeExpression",
+ "description": "A runtime expression evaluated before each consumed (filtered) message to decide if message consumption should continue."
+ }
+ },
+ "title": "AsyncApiMessageConsumptionPolicyUntil",
+ "required": [
+ "until"
+ ]
+ }
+ ]
+ },
+ "subscriptionIterator": {
+ "type": "object",
+ "title": "SubscriptionIterator",
+ "description": "Configures the iteration over each item (event or message) consumed by a subscription.",
+ "unevaluatedProperties": false,
+ "properties": {
+ "item": {
+ "type": "string",
+ "title": "SubscriptionIteratorItem",
+ "description": "The name of the variable used to store the current item being enumerated.",
+ "default": "item"
+ },
+ "at": {
+ "type": "string",
+ "title": "SubscriptionIteratorIndex",
+ "description": "The name of the variable used to store the index of the current item being enumerated.",
+ "default": "index"
+ },
+ "do": {
+ "$ref": "#/$defs/taskList",
+ "title": "SubscriptionIteratorTasks",
+ "description": "The tasks to perform for each consumed item."
+ },
+ "output": {
+ "$ref": "#/$defs/output",
+ "title": "SubscriptionIteratorOutput",
+ "description": "An object, if any, used to customize the item's output and to document its schema."
+ },
+ "export": {
+ "$ref": "#/$defs/export",
+ "title": "SubscriptionIteratorExport",
+ "description": "An object, if any, used to customize the content of the workflow context."
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/public/schemas/1.0.1/workflow.yaml b/public/schemas/1.0.1/workflow.yaml
new file mode 100644
index 0000000..1d3933b
--- /dev/null
+++ b/public/schemas/1.0.1/workflow.yaml
@@ -0,0 +1,1826 @@
+$id: https://serverlessworkflow.io/schemas/1.0.1/workflow.yaml
+$schema: https://json-schema.org/draft/2020-12/schema
+description: Serverless Workflow DSL - Workflow Schema.
+type: object
+required: [ document, do ]
+properties:
+ document:
+ type: object
+ title: Document
+ description: Documents the workflow.
+ unevaluatedProperties: false
+ properties:
+ dsl:
+ type: string
+ pattern: ^(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(?:-((?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?$
+ title: WorkflowDSL
+ description: The version of the DSL used by the workflow.
+ namespace:
+ type: string
+ pattern: ^[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?$
+ title: WorkflowNamespace
+ description: The workflow's namespace.
+ name:
+ type: string
+ pattern: ^[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?$
+ title: WorkflowName
+ description: The workflow's name.
+ version:
+ type: string
+ pattern: ^(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(?:-((?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?$
+ title: WorkflowVersion
+ description: The workflow's semantic version.
+ title:
+ type: string
+ title: WorkflowTitle
+ description: The workflow's title.
+ summary:
+ type: string
+ title: WorkflowSummary
+ description: The workflow's Markdown summary.
+ tags:
+ type: object
+ title: WorkflowTags
+ description: A key/value mapping of the workflow's tags, if any.
+ additionalProperties: true
+ metadata:
+ type: object
+ title: WorkflowMetadata
+ description: Holds additional information about the workflow.
+ additionalProperties: true
+ required: [ dsl, namespace, name, version ]
+ input:
+ $ref: '#/$defs/input'
+ title: Input
+ description: Configures the workflow's input.
+ use:
+ type: object
+ title: Use
+ description: Defines the workflow's reusable components.
+ unevaluatedProperties: false
+ properties:
+ authentications:
+ type: object
+ title: UseAuthentications
+ description: The workflow's reusable authentication policies.
+ additionalProperties:
+ $ref: '#/$defs/authenticationPolicy'
+ errors:
+ type: object
+ title: UseErrors
+ description: The workflow's reusable errors.
+ additionalProperties:
+ $ref: '#/$defs/error'
+ extensions:
+ type: array
+ title: UseExtensions
+ description: The workflow's extensions.
+ items:
+ type: object
+ title: ExtensionItem
+ minProperties: 1
+ maxProperties: 1
+ additionalProperties:
+ $ref: '#/$defs/extension'
+ functions:
+ type: object
+ title: UseFunctions
+ description: The workflow's reusable functions.
+ additionalProperties:
+ $ref: '#/$defs/task'
+ retries:
+ type: object
+ title: UseRetries
+ description: The workflow's reusable retry policies.
+ additionalProperties:
+ $ref: '#/$defs/retryPolicy'
+ secrets:
+ type: array
+ title: UseSecrets
+ description: The workflow's reusable secrets.
+ items:
+ type: string
+ description: The workflow's secrets.
+ timeouts:
+ type: object
+ title: UseTimeouts
+ description: The workflow's reusable timeouts.
+ additionalProperties:
+ $ref: '#/$defs/timeout'
+ catalogs:
+ type: object
+ title: UseCatalogs
+ description: The workflow's reusable catalogs.
+ additionalProperties:
+ $ref: '#/$defs/catalog'
+ do:
+ $ref: '#/$defs/taskList'
+ title: Do
+ description: Defines the task(s) the workflow must perform.
+ timeout:
+ title: DoTimeout
+ oneOf:
+ - $ref: '#/$defs/timeout'
+ title: TimeoutDefinition
+ description: The workflow's timeout configuration, if any.
+ - type: string
+ title: TimeoutReference
+ description: The name of the workflow's timeout, if any.
+ output:
+ $ref: '#/$defs/output'
+ title: Output
+ description: Configures the workflow's output.
+ schedule:
+ type: object
+ title: Schedule
+ description: Schedules the workflow.
+ unevaluatedProperties: false
+ properties:
+ every:
+ $ref: '#/$defs/duration'
+ title: ScheduleEvery
+ description: Specifies the duration of the interval at which the workflow should be executed.
+ cron:
+ type: string
+ title: ScheduleCron
+ description: Specifies the schedule using a cron expression, e.g., '0 0 * * *' for daily at midnight.
+ after:
+ $ref: '#/$defs/duration'
+ title: ScheduleAfter
+ description: Specifies a delay duration that the workflow must wait before starting again after it completes.
+ on:
+ $ref: '#/$defs/eventConsumptionStrategy'
+ title: ScheduleOn
+ description: Specifies the events that trigger the workflow execution.
+$defs:
+ taskList:
+ title: TaskList
+ description: List of named tasks to perform.
+ type: array
+ items:
+ type: object
+ title: TaskItem
+ minProperties: 1
+ maxProperties: 1
+ additionalProperties:
+ $ref: '#/$defs/task'
+ taskBase:
+ type: object
+ title: TaskBase
+ description: An object inherited by all tasks.
+ properties:
+ if:
+ type: string
+ title: TaskBaseIf
+ description: A runtime expression, if any, used to determine whether or not the task should be run.
+ input:
+ $ref: '#/$defs/input'
+ title: TaskBaseInput
+ description: Configure the task's input.
+ output:
+ $ref: '#/$defs/output'
+ title: TaskBaseOutput
+ description: Configure the task's output.
+ export:
+ $ref: '#/$defs/export'
+ title: TaskBaseExport
+ description: Export task output to context.
+ timeout:
+ title: TaskTimeout
+ oneOf:
+ - $ref: '#/$defs/timeout'
+ title: TaskTimeoutDefinition
+ description: The task's timeout configuration, if any.
+ - type: string
+ title: TaskTimeoutReference
+ description: The name of the task's timeout, if any.
+ then:
+ $ref: '#/$defs/flowDirective'
+ title: TaskBaseThen
+ description: The flow directive to be performed upon completion of the task.
+ metadata:
+ type: object
+ title: TaskMetadata
+ description: Holds additional information about the task.
+ additionalProperties: true
+ task:
+ title: Task
+ description: A discrete unit of work that contributes to achieving the overall objectives defined by the workflow.
+ unevaluatedProperties: false
+ oneOf:
+ - $ref: '#/$defs/callTask'
+ - $ref: '#/$defs/doTask'
+ - $ref: '#/$defs/forkTask'
+ - $ref: '#/$defs/emitTask'
+ - $ref: '#/$defs/forTask'
+ - $ref: '#/$defs/listenTask'
+ - $ref: '#/$defs/raiseTask'
+ - $ref: '#/$defs/runTask'
+ - $ref: '#/$defs/setTask'
+ - $ref: '#/$defs/switchTask'
+ - $ref: '#/$defs/tryTask'
+ - $ref: '#/$defs/waitTask'
+ callTask:
+ title: CallTask
+ description: Defines the call to perform.
+ oneOf:
+ - title: CallAsyncAPI
+ description: Defines the AsyncAPI call to perform.
+ type: object
+ required: [ call, with ]
+ unevaluatedProperties: false
+ allOf:
+ - $ref: '#/$defs/taskBase'
+ - properties:
+ call:
+ type: string
+ const: asyncapi
+ with:
+ type: object
+ title: AsyncApiArguments
+ description: The Async API call arguments.
+ properties:
+ document:
+ $ref: '#/$defs/externalResource'
+ title: AsyncAPIDocument
+ description: The document that defines the AsyncAPI operation to call.
+ channel:
+ type: string
+ title: With
+ description: The name of the channel on which to perform the operation. Used only in case the referenced document uses AsyncAPI v2.6.0.
+ operation:
+ type: string
+ title: AsyncAPIOperation
+ description: A reference to the AsyncAPI operation to call.
+ server:
+ $ref: '#/$defs/asyncApiServer'
+ title: AsyncAPIServer
+ description: An object used to configure to the server to call the specified AsyncAPI operation on.
+ protocol:
+ type: string
+ title: AsyncApiProtocol
+ description: The protocol to use to select the target server.
+ enum: [ amqp, amqp1, anypointmq, googlepubsub, http, ibmmq, jms, kafka, mercure, mqtt, mqtt5, nats, pulsar, redis, sns, solace, sqs, stomp, ws ]
+ message:
+ $ref: '#/$defs/asyncApiOutboundMessage'
+ title: AsyncApiMessage
+ description: An object used to configure the message to publish using the target operation.
+ subscription:
+ $ref: '#/$defs/asyncApiSubscription'
+ title: AsyncApiSubscription
+ description: An object used to configure the subscription to messages consumed using the target operation.
+ authentication:
+ $ref: '#/$defs/referenceableAuthenticationPolicy'
+ title: AsyncAPIAuthentication
+ description: The authentication policy, if any, to use when calling the AsyncAPI operation.
+ oneOf:
+ - required: [ document, operation, message ]
+ - required: [ document, operation, subscription ]
+ - required: [ document, channel, message ]
+ - required: [ document, channel, subscription ]
+ unevaluatedProperties: false
+ - title: CallGRPC
+ description: Defines the GRPC call to perform.
+ type: object
+ unevaluatedProperties: false
+ required: [ call, with ]
+ allOf:
+ - $ref: '#/$defs/taskBase'
+ - properties:
+ call:
+ type: string
+ const: grpc
+ with:
+ type: object
+ title: GRPCArguments
+ description: The GRPC call arguments.
+ properties:
+ proto:
+ $ref: '#/$defs/externalResource'
+ title: WithGRPCProto
+ description: The proto resource that describes the GRPC service to call.
+ service:
+ type: object
+ title: WithGRPCService
+ unevaluatedProperties: false
+ properties:
+ name:
+ type: string
+ title: WithGRPCServiceName
+ description: The name of the GRPC service to call.
+ host:
+ type: string
+ title: WithGRPCServiceHost
+ description: The hostname of the GRPC service to call.
+ pattern: ^[a-zA-Z0-9](?:[a-zA-Z0-9-.]{0,61}[a-zA-Z0-9])?$
+ port:
+ type: integer
+ title: WithGRPCServicePort
+ description: The port number of the GRPC service to call.
+ minimum: 0
+ maximum: 65535
+ authentication:
+ $ref: '#/$defs/referenceableAuthenticationPolicy'
+ title: WithGRPCServiceAuthentication
+ description: The endpoint's authentication policy, if any.
+ required: [ name, host ]
+ method:
+ type: string
+ title: WithGRPCMethod
+ description: The name of the method to call on the defined GRPC service.
+ arguments:
+ type: object
+ title: WithGRPCArguments
+ description: The arguments, if any, to call the method with.
+ additionalProperties: true
+ required: [ proto, service, method ]
+ unevaluatedProperties: false
+ - title: CallHTTP
+ description: Defines the HTTP call to perform.
+ type: object
+ unevaluatedProperties: false
+ required: [ call, with ]
+ allOf:
+ - $ref: '#/$defs/taskBase'
+ - properties:
+ call:
+ type: string
+ const: http
+ with:
+ type: object
+ title: HTTPArguments
+ description: The HTTP call arguments.
+ properties:
+ method:
+ type: string
+ title: HTTPMethod
+ description: The HTTP method of the HTTP request to perform.
+ endpoint:
+ title: HTTPEndpoint
+ description: The HTTP endpoint to send the request to.
+ $ref: '#/$defs/endpoint'
+ headers:
+ oneOf:
+ - type: object
+ additionalProperties:
+ type: string
+ - $ref: '#/$defs/runtimeExpression'
+ title: HTTPHeaders
+ description: A name/value mapping of the headers, if any, of the HTTP request to perform.
+ body:
+ title: HTTPBody
+ description: The body, if any, of the HTTP request to perform.
+ query:
+ oneOf:
+ - type: object
+ additionalProperties:
+ type: string
+ - $ref: '#/$defs/runtimeExpression'
+ title: HTTPQuery
+ description: A name/value mapping of the query parameters, if any, of the HTTP request to perform.
+ additionalProperties: true
+ output:
+ type: string
+ title: HTTPOutput
+ description: The http call output format. Defaults to 'content'.
+ enum: [ raw, content, response ]
+ redirect:
+ type: boolean
+ title: HttpRedirect
+ description: Specifies whether redirection status codes (`300–399`) should be treated as errors.
+ required: [ method, endpoint ]
+ unevaluatedProperties: false
+ - title: CallOpenAPI
+ description: Defines the OpenAPI call to perform.
+ type: object
+ unevaluatedProperties: false
+ required: [ call, with ]
+ allOf:
+ - $ref: '#/$defs/taskBase'
+ - properties:
+ call:
+ type: string
+ const: openapi
+ with:
+ type: object
+ title: OpenAPIArguments
+ description: The OpenAPI call arguments.
+ properties:
+ document:
+ $ref: '#/$defs/externalResource'
+ title: WithOpenAPIDocument
+ description: The document that defines the OpenAPI operation to call.
+ operationId:
+ type: string
+ title: WithOpenAPIOperation
+ description: The id of the OpenAPI operation to call.
+ parameters:
+ type: object
+ title: WithOpenAPIParameters
+ description: A name/value mapping of the parameters of the OpenAPI operation to call.
+ additionalProperties: true
+ authentication:
+ $ref: '#/$defs/referenceableAuthenticationPolicy'
+ title: WithOpenAPIAuthentication
+ description: The authentication policy, if any, to use when calling the OpenAPI operation.
+ output:
+ type: string
+ enum: [ raw, content, response ]
+ title: WithOpenAPIOutput
+ description: The http call output format. Defaults to 'content'.
+ redirect:
+ type: boolean
+ title: HttpRedirect
+ description: Specifies whether redirection status codes (`300–399`) should be treated as errors.
+ required: [ document, operationId ]
+ unevaluatedProperties: false
+ - title: CallA2A
+ description: Defines the A2A call to perform.
+ type: object
+ unevaluatedProperties: false
+ required: [ call, with ]
+ allOf:
+ - $ref: '#/$defs/taskBase'
+ - properties:
+ call:
+ type: string
+ const: a2a
+ with:
+ type: object
+ title: A2AArguments
+ description: The A2A call arguments.
+ properties:
+ agentCard:
+ $ref: '#/$defs/externalResource'
+ title: WithA2AAgentCard
+ description: The Agent Card that defines the agent to call.
+ server:
+ title: A2AServer
+ description: The server endpoint to send the request to.
+ $ref: '#/$defs/endpoint'
+ method:
+ type: string
+ title: WithA2AMethod
+ description: The A2A method to send.
+ enum: [ 'message/send', 'message/stream', 'tasks/get', 'tasks/list', 'tasks/cancel', 'tasks/resubscribe', 'tasks/pushNotificationConfig/set', 'tasks/pushNotificationConfig/get', 'tasks/pushNotificationConfig/list', 'tasks/pushNotificationConfig/delete', 'agent/getAuthenticatedExtendedCard' ]
+ parameters:
+ oneOf:
+ - type: object
+ minProperties: 1
+ additionalProperties: true
+ - type: string
+ title: WithA2AParameters
+ description: The parameters object to send with the A2A method.
+ required: [ method ]
+ unevaluatedProperties: false
+ - title: CallFunction
+ description: Defines the function call to perform.
+ type: object
+ unevaluatedProperties: false
+ required: [ call ]
+ allOf:
+ - $ref: '#/$defs/taskBase'
+ - properties:
+ call:
+ type: string
+ not:
+ enum: ["asyncapi", "grpc", "http", "openapi", "a2a"]
+ description: The name of the function to call.
+ with:
+ type: object
+ title: FunctionArguments
+ description: A name/value mapping of the parameters, if any, to call the function with.
+ additionalProperties: true
+ forkTask:
+ type: object
+ title: ForkTask
+ description: Allows workflows to execute multiple tasks concurrently and optionally race them against each other, with a single possible winner, which sets the task's output.
+ unevaluatedProperties: false
+ required: [ fork ]
+ allOf:
+ - $ref: '#/$defs/taskBase'
+ - properties:
+ fork:
+ type: object
+ title: ForkTaskConfiguration
+ description: The configuration of the branches to perform concurrently.
+ unevaluatedProperties: false
+ required: [ branches ]
+ properties:
+ branches:
+ $ref: '#/$defs/taskList'
+ title: ForkBranches
+ compete:
+ type: boolean
+ title: ForkCompete
+ description: Indicates whether or not the concurrent tasks are racing against each other, with a single possible winner, which sets the composite task's output.
+ default: false
+ doTask:
+ type: object
+ title: DoTask
+ description: Allows to execute a list of tasks in sequence.
+ unevaluatedProperties: false
+ required: [ do ]
+ allOf:
+ - $ref: '#/$defs/taskBase'
+ - properties:
+ do:
+ $ref: '#/$defs/taskList'
+ title: DoTaskConfiguration
+ description: The configuration of the tasks to perform sequentially.
+ emitTask:
+ type: object
+ title: EmitTask
+ description: Allows workflows to publish events to event brokers or messaging systems, facilitating communication and coordination between different components and services.
+ required: [ emit ]
+ unevaluatedProperties: false
+ allOf:
+ - $ref: '#/$defs/taskBase'
+ - properties:
+ emit:
+ type: object
+ title: EmitTaskConfiguration
+ description: The configuration of an event's emission.
+ unevaluatedProperties: false
+ properties:
+ event:
+ type: object
+ title: EmitEventDefinition
+ description: The definition of the event to emit.
+ properties:
+ with:
+ $ref: '#/$defs/eventProperties'
+ title: EmitEventWith
+ description: Defines the properties of event to emit.
+ required: [ source, type ]
+ additionalProperties: true
+ required: [ event ]
+ forTask:
+ type: object
+ title: ForTask
+ description: Allows workflows to iterate over a collection of items, executing a defined set of subtasks for each item in the collection. This task type is instrumental in handling scenarios such as batch processing, data transformation, and repetitive operations across datasets.
+ required: [ for, do ]
+ unevaluatedProperties: false
+ allOf:
+ - $ref: '#/$defs/taskBase'
+ - properties:
+ for:
+ type: object
+ title: ForTaskConfiguration
+ description: The definition of the loop that iterates over a range of values.
+ unevaluatedProperties: false
+ properties:
+ each:
+ type: string
+ title: ForEach
+ description: The name of the variable used to store the current item being enumerated.
+ default: item
+ in:
+ type: string
+ title: ForIn
+ description: A runtime expression used to get the collection to enumerate.
+ at:
+ type: string
+ title: ForAt
+ description: The name of the variable used to store the index of the current item being enumerated.
+ default: index
+ required: [ in ]
+ while:
+ type: string
+ title: While
+ description: A runtime expression that represents the condition, if any, that must be met for the iteration to continue.
+ do:
+ $ref: '#/$defs/taskList'
+ title: ForTaskDo
+ listenTask:
+ type: object
+ title: ListenTask
+ description: Provides a mechanism for workflows to await and react to external events, enabling event-driven behavior within workflow systems.
+ required: [ listen ]
+ unevaluatedProperties: false
+ allOf:
+ - $ref: '#/$defs/taskBase'
+ - properties:
+ listen:
+ type: object
+ title: ListenTaskConfiguration
+ description: The configuration of the listener to use.
+ unevaluatedProperties: false
+ properties:
+ to:
+ $ref: '#/$defs/eventConsumptionStrategy'
+ title: ListenTo
+ description: Defines the event(s) to listen to.
+ read:
+ type: string
+ enum: [ data, envelope, raw ]
+ default: data
+ title: ListenAndReadAs
+ description: Specifies how events are read during the listen operation.
+ required: [ to ]
+ foreach:
+ $ref: '#/$defs/subscriptionIterator'
+ title: ListenIterator
+ description: Configures the iterator, if any, for processing consumed event(s).
+ raiseTask:
+ type: object
+ title: RaiseTask
+ description: Intentionally triggers and propagates errors.
+ required: [ raise ]
+ unevaluatedProperties: false
+ allOf:
+ - $ref: '#/$defs/taskBase'
+ - properties:
+ raise:
+ type: object
+ title: RaiseTaskConfiguration
+ description: The definition of the error to raise.
+ unevaluatedProperties: false
+ properties:
+ error:
+ title: RaiseTaskError
+ oneOf:
+ - $ref: '#/$defs/error'
+ title: RaiseErrorDefinition
+ description: Defines the error to raise.
+ - type: string
+ title: RaiseErrorReference
+ description: The name of the error to raise
+ required: [ error ]
+ runTask:
+ type: object
+ title: RunTask
+ description: Provides the capability to execute external containers, shell commands, scripts, or workflows.
+ required: [ run ]
+ unevaluatedProperties: false
+ allOf:
+ - $ref: '#/$defs/taskBase'
+ - properties:
+ run:
+ type: object
+ title: RunTaskConfiguration
+ description: The configuration of the process to execute.
+ unevaluatedProperties: false
+ properties:
+ await:
+ type: boolean
+ default: true
+ title: AwaitProcessCompletion
+ description: Whether to await the process completion before continuing.
+ return:
+ type: string
+ title: ProcessReturnType
+ description: Configures the output of the process.
+ enum: [ stdout, stderr, code, all, none ]
+ default: stdout
+ oneOf:
+ - title: RunContainer
+ description: Enables the execution of external processes encapsulated within a containerized environment.
+ properties:
+ container:
+ type: object
+ title: Container
+ description: The configuration of the container to run.
+ unevaluatedProperties: false
+ properties:
+ image:
+ type: string
+ title: ContainerImage
+ description: The name of the container image to run.
+ name:
+ type: string
+ title: ContainerName
+ description: A runtime expression, if any, used to give specific name to the container.
+ command:
+ type: string
+ title: ContainerCommand
+ description: The command, if any, to execute on the container.
+ ports:
+ type: object
+ title: ContainerPorts
+ description: The container's port mappings, if any.
+ volumes:
+ type: object
+ title: ContainerVolumes
+ description: The container's volume mappings, if any.
+ environment:
+ type: object
+ title: ContainerEnvironment
+ description: A key/value mapping of the environment variables, if any, to use when running the configured process.
+ lifetime:
+ $ref: '#/$defs/containerLifetime'
+ title: ContainerLifetime
+ description: An object, if any, used to configure the container's lifetime
+ required: [ image ]
+ required: [ container ]
+ - title: RunScript
+ description: Enables the execution of custom scripts or code within a workflow, empowering workflows to perform specialized logic, data processing, or integration tasks by executing user-defined scripts written in various programming languages.
+ properties:
+ script:
+ type: object
+ title: Script
+ description: The configuration of the script to run.
+ unevaluatedProperties: false
+ properties:
+ language:
+ type: string
+ title: ScriptLanguage
+ description: The language of the script to run.
+ arguments:
+ type: object
+ title: ScriptArguments
+ description: A key/value mapping of the arguments, if any, to use when running the configured script.
+ additionalProperties: true
+ environment:
+ type: object
+ title: ScriptEnvironment
+ description: A key/value mapping of the environment variables, if any, to use when running the configured script process.
+ additionalProperties: true
+ oneOf:
+ - title: InlineScript
+ type: object
+ description: The script's code.
+ properties:
+ code:
+ type: string
+ title: InlineScriptCode
+ required: [ code ]
+ - title: ExternalScript
+ type: object
+ description: The script's resource.
+ properties:
+ source:
+ $ref: '#/$defs/externalResource'
+ title: ExternalScriptResource
+ required: [ source ]
+ required: [ language ]
+ required: [ script ]
+ - title: RunShell
+ description: Enables the execution of shell commands within a workflow, enabling workflows to interact with the underlying operating system and perform system-level operations, such as file manipulation, environment configuration, or system administration tasks.
+ properties:
+ shell:
+ type: object
+ title: Shell
+ description: The configuration of the shell command to run.
+ unevaluatedProperties: false
+ properties:
+ command:
+ type: string
+ title: ShellCommand
+ description: The shell command to run.
+ arguments:
+ type: object
+ title: ShellArguments
+ description: A list of the arguments of the shell command to run.
+ additionalProperties: true
+ environment:
+ type: object
+ title: ShellEnvironment
+ description: A key/value mapping of the environment variables, if any, to use when running the configured process.
+ additionalProperties: true
+ required: [ command ]
+ required: [ shell ]
+ - title: RunWorkflow
+ description: Enables the invocation and execution of nested workflows within a parent workflow, facilitating modularization, reusability, and abstraction of complex logic or business processes by encapsulating them into standalone workflow units.
+ properties:
+ workflow:
+ type: object
+ title: SubflowConfiguration
+ description: The configuration of the workflow to run.
+ unevaluatedProperties: false
+ properties:
+ namespace:
+ type: string
+ title: SubflowNamespace
+ description: The namespace the workflow to run belongs to.
+ name:
+ type: string
+ title: SubflowName
+ description: The name of the workflow to run.
+ version:
+ type: string
+ default: latest
+ title: SubflowVersion
+ description: The version of the workflow to run. Defaults to latest.
+ input:
+ type: object
+ title: SubflowInput
+ description: The data, if any, to pass as input to the workflow to execute. The value should be validated against the target workflow's input schema, if specified.
+ additionalProperties: true
+ required: [ namespace, name, version ]
+ required: [ workflow ]
+ setTask:
+ type: object
+ title: SetTask
+ description: A task used to set data.
+ required: [ set ]
+ unevaluatedProperties: false
+ allOf:
+ - $ref: '#/$defs/taskBase'
+ - properties:
+ set:
+ oneOf:
+ - type: object
+ minProperties: 1
+ additionalProperties: true
+ - type: string
+ title: SetTaskConfiguration
+ description: The data to set.
+ switchTask:
+ type: object
+ title: SwitchTask
+ description: Enables conditional branching within workflows, allowing them to dynamically select different paths based on specified conditions or criteria.
+ required: [ switch ]
+ unevaluatedProperties: false
+ allOf:
+ - $ref: '#/$defs/taskBase'
+ - properties:
+ switch:
+ type: array
+ title: SwitchTaskConfiguration
+ description: The definition of the switch to use.
+ minItems: 1
+ items:
+ type: object
+ title: SwitchItem
+ minProperties: 1
+ maxProperties: 1
+ additionalProperties:
+ type: object
+ title: SwitchCase
+ description: The definition of a case within a switch task, defining a condition and corresponding tasks to execute if the condition is met.
+ unevaluatedProperties: false
+ required: [ then ]
+ properties:
+ when:
+ type: string
+ title: SwitchCaseCondition
+ description: A runtime expression used to determine whether or not the case matches.
+ then:
+ $ref: '#/$defs/flowDirective'
+ title: SwitchCaseOutcome
+ description: The flow directive to execute when the case matches.
+ tryTask:
+ type: object
+ title: TryTask
+ description: Serves as a mechanism within workflows to handle errors gracefully, potentially retrying failed tasks before proceeding with alternate ones.
+ required: [ try, catch ]
+ unevaluatedProperties: false
+ allOf:
+ - $ref: '#/$defs/taskBase'
+ - properties:
+ try:
+ $ref: '#/$defs/taskList'
+ title: TryTaskConfiguration
+ description: The task(s) to perform.
+ catch:
+ type: object
+ title: TryTaskCatch
+ description: The object used to define the errors to catch.
+ unevaluatedProperties: false
+ properties:
+ errors:
+ type: object
+ title: CatchErrors
+ properties:
+ with:
+ $ref: '#/$defs/errorFilter'
+ description: static error filter
+ as:
+ type: string
+ title: CatchAs
+ description: The name of the runtime expression variable to save the error as. Defaults to 'error'.
+ when:
+ type: string
+ title: CatchWhen
+ description: A runtime expression used to determine whether to catch the filtered error.
+ exceptWhen:
+ type: string
+ title: CatchExceptWhen
+ description: A runtime expression used to determine whether not to catch the filtered error.
+ retry:
+ oneOf:
+ - $ref: '#/$defs/retryPolicy'
+ title: RetryPolicyDefinition
+ description: The retry policy to use, if any, when catching errors.
+ - type: string
+ title: RetryPolicyReference
+ description: The name of the retry policy to use, if any, when catching errors.
+ do:
+ $ref: '#/$defs/taskList'
+ title: TryTaskCatchDo
+ description: The definition of the task(s) to run when catching an error.
+ waitTask:
+ type: object
+ title: WaitTask
+ description: Allows workflows to pause or delay their execution for a specified period of time.
+ required: [ wait ]
+ unevaluatedProperties: false
+ allOf:
+ - $ref: '#/$defs/taskBase'
+ - properties:
+ wait:
+ $ref: '#/$defs/duration'
+ title: WaitTaskConfiguration
+ description: The amount of time to wait.
+ flowDirective:
+ title: FlowDirective
+ description: Represents different transition options for a workflow.
+ anyOf:
+ - title: FlowDirectiveEnum
+ type: string
+ enum: [ continue, exit, end ]
+ default: continue
+ - type: string
+ referenceableAuthenticationPolicy:
+ type: object
+ title: ReferenceableAuthenticationPolicy
+ description: Represents a referenceable authentication policy.
+ unevaluatedProperties: false
+ oneOf:
+ - title: AuthenticationPolicyReference
+ description: The reference of the authentication policy to use.
+ properties:
+ use:
+ type: string
+ minLength: 1
+ title: ReferenceableAuthenticationPolicyName
+ description: The name of the authentication policy to use.
+ required: [use]
+ - $ref: '#/$defs/authenticationPolicy'
+ secretBasedAuthenticationPolicy:
+ type: object
+ title: SecretBasedAuthenticationPolicy
+ description: Represents an authentication policy based on secrets.
+ unevaluatedProperties: false
+ properties:
+ use:
+ type: string
+ minLength: 1
+ title: SecretBasedAuthenticationPolicyName
+ description: The name of the authentication policy to use.
+ required: [use]
+ authenticationPolicy:
+ type: object
+ title: AuthenticationPolicy
+ description: Defines an authentication policy.
+ oneOf:
+ - title: BasicAuthenticationPolicy
+ description: Use basic authentication.
+ properties:
+ basic:
+ type: object
+ title: BasicAuthenticationPolicyConfiguration
+ description: The configuration of the basic authentication policy.
+ unevaluatedProperties: false
+ oneOf:
+ - title: BasicAuthenticationProperties
+ description: Inline configuration of the basic authentication policy.
+ properties:
+ username:
+ type: string
+ description: The username to use.
+ password:
+ type: string
+ description: The password to use.
+ required: [ username, password ]
+ - $ref: '#/$defs/secretBasedAuthenticationPolicy'
+ title: BasicAuthenticationPolicySecret
+ description: Secret based configuration of the basic authentication policy.
+ required: [ basic ]
+ - title: BearerAuthenticationPolicy
+ description: Use bearer authentication.
+ properties:
+ bearer:
+ type: object
+ title: BearerAuthenticationPolicyConfiguration
+ description: The configuration of the bearer authentication policy.
+ unevaluatedProperties: false
+ oneOf:
+ - title: BearerAuthenticationProperties
+ description: Inline configuration of the bearer authentication policy.
+ properties:
+ token:
+ type: string
+ description: The bearer token to use.
+ required: [ token ]
+ - $ref: '#/$defs/secretBasedAuthenticationPolicy'
+ title: BearerAuthenticationPolicySecret
+ description: Secret based configuration of the bearer authentication policy.
+ required: [ bearer ]
+ - title: DigestAuthenticationPolicy
+ description: Use digest authentication.
+ properties:
+ digest:
+ type: object
+ title: DigestAuthenticationPolicyConfiguration
+ description: The configuration of the digest authentication policy.
+ unevaluatedProperties: false
+ oneOf:
+ - title: DigestAuthenticationProperties
+ description: Inline configuration of the digest authentication policy.
+ properties:
+ username:
+ type: string
+ description: The username to use.
+ password:
+ type: string
+ description: The password to use.
+ required: [ username, password ]
+ - $ref: '#/$defs/secretBasedAuthenticationPolicy'
+ title: DigestAuthenticationPolicySecret
+ description: Secret based configuration of the digest authentication policy.
+ required: [ digest ]
+ - title: OAuth2AuthenticationPolicy
+ description: Use OAuth2 authentication.
+ properties:
+ oauth2:
+ type: object
+ title: OAuth2AuthenticationPolicyConfiguration
+ description: The configuration of the OAuth2 authentication policy.
+ unevaluatedProperties: false
+ oneOf:
+ - $ref: '#/$defs/oauth2AuthenticationProperties'
+ type: object
+ title: OAuth2ConnectAuthenticationProperties
+ description: The inline configuration of the OAuth2 authentication policy.
+ unevaluatedProperties: false
+ properties:
+ endpoints:
+ type: object
+ title: OAuth2AuthenticationPropertiesEndpoints
+ description: The endpoint configurations for OAuth2.
+ properties:
+ token:
+ type: string
+ format: uri-template
+ default: /oauth2/token
+ title: OAuth2TokenEndpoint
+ description: The relative path to the token endpoint. Defaults to `/oauth2/token`.
+ revocation:
+ type: string
+ format: uri-template
+ default: /oauth2/revoke
+ title: OAuth2RevocationEndpoint
+ description: The relative path to the revocation endpoint. Defaults to `/oauth2/revoke`.
+ introspection:
+ type: string
+ format: uri-template
+ default: /oauth2/introspect
+ title: OAuth2IntrospectionEndpoint
+ description: The relative path to the introspection endpoint. Defaults to `/oauth2/introspect`.
+ - $ref: '#/$defs/secretBasedAuthenticationPolicy'
+ title: OAuth2AuthenticationPolicySecret
+ description: Secret based configuration of the OAuth2 authentication policy.
+ required: [ oauth2 ]
+ - title: OpenIdConnectAuthenticationPolicy
+ description: Use OpenIdConnect authentication.
+ properties:
+ oidc:
+ type: object
+ title: OpenIdConnectAuthenticationPolicyConfiguration
+ description: The configuration of the OpenIdConnect authentication policy.
+ unevaluatedProperties: false
+ oneOf:
+ - $ref: '#/$defs/oauth2AuthenticationProperties'
+ title: OpenIdConnectAuthenticationProperties
+ description: The inline configuration of the OpenIdConnect authentication policy.
+ unevaluatedProperties: false
+ - $ref: '#/$defs/secretBasedAuthenticationPolicy'
+ title: OpenIdConnectAuthenticationPolicySecret
+ description: Secret based configuration of the OpenIdConnect authentication policy.
+ required: [ oidc ]
+ oauth2AuthenticationProperties:
+ type: object
+ title: OAuth2AuthenticationData
+ description: Inline configuration of the OAuth2 authentication policy.
+ properties:
+ authority:
+ $ref: '#/$defs/uriTemplate'
+ title: OAuth2AuthenticationDataAuthority
+ description: The URI that references the OAuth2 authority to use.
+ grant:
+ type: string
+ enum: [ authorization_code, client_credentials, password, refresh_token, 'urn:ietf:params:oauth:grant-type:token-exchange']
+ title: OAuth2AuthenticationDataGrant
+ description: The grant type to use.
+ client:
+ type: object
+ title: OAuth2AuthenticationDataClient
+ description: The definition of an OAuth2 client.
+ unevaluatedProperties: false
+ properties:
+ id:
+ type: string
+ title: ClientId
+ description: The client id to use.
+ secret:
+ type: string
+ title: ClientSecret
+ description: The client secret to use, if any.
+ assertion:
+ type: string
+ title: ClientAssertion
+ description: A JWT containing a signed assertion with your application credentials.
+ authentication:
+ type: string
+ enum: [ client_secret_basic, client_secret_post, client_secret_jwt, private_key_jwt, none ]
+ default: client_secret_post
+ title: ClientAuthentication
+ description: The authentication method to use to authenticate the client.
+ request:
+ type: object
+ title: OAuth2TokenRequest
+ description: The configuration of an OAuth2 token request
+ properties:
+ encoding:
+ type: string
+ enum: [ 'application/x-www-form-urlencoded', 'application/json' ]
+ default: 'application/x-www-form-urlencoded'
+ title: Oauth2TokenRequestEncoding
+ issuers:
+ type: array
+ title: OAuth2Issuers
+ description: A list that contains that contains valid issuers that will be used to check against the issuer of generated tokens.
+ items:
+ type: string
+ scopes:
+ type: array
+ title: OAuth2AuthenticationDataScopes
+ description: The scopes, if any, to request the token for.
+ items:
+ type: string
+ audiences:
+ type: array
+ title: OAuth2AuthenticationDataAudiences
+ description: The audiences, if any, to request the token for.
+ items:
+ type: string
+ username:
+ type: string
+ title: OAuth2AuthenticationDataUsername
+ description: The username to use. Used only if the grant type is Password.
+ password:
+ type: string
+ title: OAuth2AuthenticationDataPassword
+ description: The password to use. Used only if the grant type is Password.
+ subject:
+ $ref: '#/$defs/oauth2Token'
+ title: OAuth2AuthenticationDataSubject
+ description: The security token that represents the identity of the party on behalf of whom the request is being made.
+ actor:
+ $ref: '#/$defs/oauth2Token'
+ title: OAuth2AuthenticationDataActor
+ description: The security token that represents the identity of the acting party.
+ oauth2Token:
+ type: object
+ title: OAuth2TokenDefinition
+ description: Represents an OAuth2 token.
+ unevaluatedProperties: false
+ properties:
+ token:
+ type: string
+ title: OAuth2Token
+ description: The security token to use.
+ type:
+ type: string
+ title: OAuth2TokenType
+ description: The type of the security token to use.
+ required: [ token, type ]
+ duration:
+ oneOf:
+ - type: object
+ minProperties: 1
+ unevaluatedProperties: false
+ properties:
+ days:
+ type: integer
+ title: DurationDays
+ description: Number of days, if any.
+ hours:
+ type: integer
+ title: DurationHours
+ description: Number of days, if any.
+ minutes:
+ type: integer
+ title: DurationMinutes
+ description: Number of minutes, if any.
+ seconds:
+ type: integer
+ title: DurationSeconds
+ description: Number of seconds, if any.
+ milliseconds:
+ type: integer
+ title: DurationMilliseconds
+ description: Number of milliseconds, if any.
+ title: DurationInline
+ description: The inline definition of a duration.
+ - type: string
+ pattern: '^P(?!$)(\d+(?:\.\d+)?Y)?(\d+(?:\.\d+)?M)?(\d+(?:\.\d+)?W)?(\d+(?:\.\d+)?D)?(T(?=\d)(\d+(?:\.\d+)?H)?(\d+(?:\.\d+)?M)?(\d+(?:\.\d+)?S)?)?$'
+ title: DurationExpression
+ description: The ISO 8601 expression of a duration.
+ error:
+ type: object
+ title: Error
+ description: Represents an error.
+ unevaluatedProperties: false
+ properties:
+ type:
+ title: ErrorType
+ description: A URI reference that identifies the error type.
+ oneOf:
+ - title: LiteralErrorType
+ $ref: '#/$defs/uriTemplate'
+ description: The literal error type.
+ - title: ExpressionErrorType
+ $ref: '#/$defs/runtimeExpression'
+ description: An expression based error type.
+ status:
+ type: integer
+ title: ErrorStatus
+ description: The status code generated by the origin for this occurrence of the error.
+ instance:
+ title: ErrorInstance
+ description: A JSON Pointer used to reference the component the error originates from.
+ oneOf:
+ - title: LiteralErrorInstance
+ description: The literal error instance.
+ type: string
+ format: json-pointer
+ - $ref: '#/$defs/runtimeExpression'
+ title: ExpressionErrorInstance
+ description: An expression based error instance.
+ title:
+ description: A short, human-readable summary of the error.
+ title: ErrorTitle
+ anyOf:
+ - $ref: '#/$defs/runtimeExpression'
+ title: ExpressionErrorTitle
+ - type: string
+ title: LiteralErrorTitle
+ detail:
+ title: ErrorDetails
+ description: A human-readable explanation specific to this occurrence of the error.
+ anyOf:
+ - $ref: '#/$defs/runtimeExpression'
+ title: ExpressionErrorDetails
+ - type: string
+ title: LiteralErrorDetails
+ required: [ type, status ]
+ errorFilter:
+ type: object
+ title: ErrorFilter
+ description: Error filtering base on static values. For error filtering on dynamic values, use catch.when property
+ minProperties: 1
+ properties:
+ type:
+ type: string
+ description: if present, means this value should be used for filtering
+ status:
+ type: integer
+ description: if present, means this value should be used for filtering
+ instance:
+ type: string
+ description: if present, means this value should be used for filtering
+ title:
+ type: string
+ description: if present, means this value should be used for filtering
+ details:
+ type: string
+ description: if present, means this value should be used for filtering
+ uriTemplate:
+ title: UriTemplate
+ anyOf:
+ - title: LiteralUriTemplate
+ type: string
+ format: uri-template
+ pattern: "^[A-Za-z][A-Za-z0-9+\\-.]*://.*"
+ - title: LiteralUri
+ type: string
+ format: uri
+ pattern: "^[A-Za-z][A-Za-z0-9+\\-.]*://.*"
+ endpoint:
+ title: Endpoint
+ description: Represents an endpoint.
+ oneOf:
+ - $ref: '#/$defs/runtimeExpression'
+ - $ref: '#/$defs/uriTemplate'
+ - title: EndpointConfiguration
+ type: object
+ unevaluatedProperties: false
+ properties:
+ uri:
+ title: EndpointUri
+ description: The endpoint's URI.
+ oneOf:
+ - title: LiteralEndpointURI
+ description: The literal endpoint's URI.
+ $ref: '#/$defs/uriTemplate'
+ - title: ExpressionEndpointURI
+ $ref: '#/$defs/runtimeExpression'
+ description: An expression based endpoint's URI.
+ authentication:
+ $ref: '#/$defs/referenceableAuthenticationPolicy'
+ title: EndpointAuthentication
+ description: The authentication policy to use.
+ required: [ uri ]
+ eventProperties:
+ type: object
+ title: EventProperties
+ description: Describes the properties of an event.
+ properties:
+ id:
+ type: string
+ title: EventId
+ description: The event's unique identifier.
+ source:
+ title: EventSource
+ description: Identifies the context in which an event happened.
+ oneOf:
+ - $ref: '#/$defs/uriTemplate'
+ - $ref: '#/$defs/runtimeExpression'
+ type:
+ type: string
+ title: EventType
+ description: This attribute contains a value describing the type of event related to the originating occurrence.
+ time:
+ title: EventTime
+ description: When the event occured.
+ oneOf:
+ - title: LiteralTime
+ type: string
+ format: date-time
+ - $ref: '#/$defs/runtimeExpression'
+ subject:
+ type: string
+ title: EventSubject
+ description: The subject of the event.
+ datacontenttype:
+ type: string
+ title: EventDataContentType
+ description: Content type of data value. This attribute enables data to carry any type of content, whereby format and encoding might differ from that of the chosen event format.
+ dataschema:
+ title: EventDataschema
+ description: The schema describing the event format.
+ oneOf:
+ - title: LiteralDataSchema
+ $ref: '#/$defs/uriTemplate'
+ description: The literal event data schema.
+ - title: ExpressionDataSchema
+ $ref: '#/$defs/runtimeExpression'
+ description: An expression based event data schema.
+ data:
+ title: EventData
+ description: The event's payload data
+ anyOf:
+ - $ref: '#/$defs/runtimeExpression'
+ - {}
+ additionalProperties: true
+ eventConsumptionStrategy:
+ type: object
+ title: EventConsumptionStrategy
+ description: Describe the event consumption strategy to adopt.
+ unevaluatedProperties: false
+ oneOf:
+ - title: AllEventConsumptionStrategy
+ properties:
+ all:
+ type: array
+ title: AllEventConsumptionStrategyConfiguration
+ description: A list containing all the events that must be consumed.
+ items:
+ $ref: '#/$defs/eventFilter'
+ required: [ all ]
+ - title: AnyEventConsumptionStrategy
+ properties:
+ any:
+ type: array
+ title: AnyEventConsumptionStrategyConfiguration
+ description: A list containing any of the events to consume.
+ items:
+ $ref: '#/$defs/eventFilter'
+ until:
+ oneOf:
+ - type: string
+ title: AnyEventUntilCondition
+ description: A runtime expression condition evaluated after consuming an event and which determines whether or not to continue listening.
+ - allOf:
+ - $ref: '#/$defs/eventConsumptionStrategy'
+ description: The strategy that defines the event(s) to consume to stop listening.
+ - properties:
+ until: false
+ title: AnyEventUntilConsumed
+ required: [ any ]
+ - title: OneEventConsumptionStrategy
+ properties:
+ one:
+ $ref: '#/$defs/eventFilter'
+ title: OneEventConsumptionStrategyConfiguration
+ description: The single event to consume.
+ required: [ one ]
+ eventFilter:
+ type: object
+ title: EventFilter
+ description: An event filter is a mechanism used to selectively process or handle events based on predefined criteria, such as event type, source, or specific attributes.
+ unevaluatedProperties: false
+ properties:
+ with:
+ $ref: '#/$defs/eventProperties'
+ minProperties: 1
+ title: WithEvent
+ description: An event filter is a mechanism used to selectively process or handle events based on predefined criteria, such as event type, source, or specific attributes.
+ correlate:
+ type: object
+ title: EventFilterCorrelate
+ description: A correlation is a link between events and data, established by mapping event attributes to specific data attributes, allowing for coordinated processing or handling based on event characteristics.
+ additionalProperties:
+ type: object
+ properties:
+ from:
+ type: string
+ title: CorrelateFrom
+ description: A runtime expression used to extract the correlation value from the filtered event.
+ expect:
+ type: string
+ title: CorrelateExpect
+ description: A constant or a runtime expression, if any, used to determine whether or not the extracted correlation value matches expectations. If not set, the first extracted value will be used as the correlation's expectation.
+ required: [ from ]
+ required: [ with ]
+ extension:
+ type: object
+ title: Extension
+ description: The definition of an extension.
+ unevaluatedProperties: false
+ properties:
+ extend:
+ type: string
+ enum: [ call, composite, emit, for, listen, raise, run, set, switch, try, wait, all ]
+ title: ExtensionTarget
+ description: The type of task to extend.
+ when:
+ type: string
+ title: ExtensionCondition
+ description: A runtime expression, if any, used to determine whether or not the extension should apply in the specified context.
+ before:
+ $ref: '#/$defs/taskList'
+ title: ExtensionDoBefore
+ description: The task(s) to execute before the extended task, if any.
+ after:
+ $ref: '#/$defs/taskList'
+ title: ExtensionDoAfter
+ description: The task(s) to execute after the extended task, if any.
+ required: [ extend ]
+ externalResource:
+ type: object
+ title: ExternalResource
+ description: Represents an external resource.
+ unevaluatedProperties: false
+ properties:
+ name:
+ type: string
+ title: ExternalResourceName
+ description: The name of the external resource, if any.
+ endpoint:
+ $ref: '#/$defs/endpoint'
+ title: ExternalResourceEndpoint
+ description: The endpoint of the external resource.
+ required: [ endpoint ]
+ input:
+ type: object
+ title: Input
+ description: Configures the input of a workflow or task.
+ unevaluatedProperties: false
+ properties:
+ schema:
+ $ref: '#/$defs/schema'
+ title: InputSchema
+ description: The schema used to describe and validate the input of the workflow or task.
+ from:
+ title: InputFrom
+ description: A runtime expression, if any, used to mutate and/or filter the input of the workflow or task.
+ oneOf:
+ - type: string
+ - type: object
+ output:
+ type: object
+ title: Output
+ description: Configures the output of a workflow or task.
+ unevaluatedProperties: false
+ properties:
+ schema:
+ $ref: '#/$defs/schema'
+ title: OutputSchema
+ description: The schema used to describe and validate the output of the workflow or task.
+ as:
+ title: OutputAs
+ description: A runtime expression, if any, used to mutate and/or filter the output of the workflow or task.
+ oneOf:
+ - type: string
+ - type: object
+ export:
+ type: object
+ title: Export
+ description: Set the content of the context. .
+ unevaluatedProperties: false
+ properties:
+ schema:
+ $ref: '#/$defs/schema'
+ title: ExportSchema
+ description: The schema used to describe and validate the workflow context.
+ as:
+ title: ExportAs
+ description: A runtime expression, if any, used to export the output data to the context.
+ oneOf:
+ - type: string
+ - type: object
+ retryPolicy:
+ type: object
+ title: RetryPolicy
+ description: Defines a retry policy.
+ unevaluatedProperties: false
+ properties:
+ when:
+ type: string
+ title: RetryWhen
+ description: A runtime expression, if any, used to determine whether or not to retry running the task, in a given context.
+ exceptWhen:
+ type: string
+ title: RetryExcepWhen
+ description: A runtime expression used to determine whether or not to retry running the task, in a given context.
+ delay:
+ $ref: '#/$defs/duration'
+ title: RetryDelay
+ description: The duration to wait between retry attempts.
+ backoff:
+ type: object
+ title: RetryBackoff
+ description: The retry duration backoff.
+ unevaluatedProperties: false
+ oneOf:
+ - title: ConstantBackoff
+ properties:
+ constant:
+ type: object
+ description: The definition of the constant backoff to use, if any.
+ required: [ constant ]
+ - title: ExponentialBackOff
+ properties:
+ exponential:
+ type: object
+ description: The definition of the exponential backoff to use, if any.
+ required: [ exponential ]
+ - title: LinearBackoff
+ properties:
+ linear:
+ type: object
+ description: The definition of the linear backoff to use, if any.
+ required: [ linear ]
+ limit:
+ type: object
+ title: RetryLimit
+ unevaluatedProperties: false
+ properties:
+ attempt:
+ type: object
+ title: RetryLimitAttempt
+ unevaluatedProperties: false
+ properties:
+ count:
+ type: integer
+ title: RetryLimitAttemptCount
+ description: The maximum amount of retry attempts, if any.
+ duration:
+ $ref: '#/$defs/duration'
+ title: RetryLimitAttemptDuration
+ description: The maximum duration for each retry attempt.
+ duration:
+ $ref: '#/$defs/duration'
+ title: RetryLimitDuration
+ description: The duration limit, if any, for all retry attempts.
+ description: The retry limit, if any.
+ jitter:
+ type: object
+ title: RetryPolicyJitter
+ description: The parameters, if any, that control the randomness or variability of the delay between retry attempts.
+ unevaluatedProperties: false
+ properties:
+ from:
+ $ref: '#/$defs/duration'
+ title: RetryPolicyJitterFrom
+ description: The minimum duration of the jitter range.
+ to:
+ $ref: '#/$defs/duration'
+ title: RetryPolicyJitterTo
+ description: The maximum duration of the jitter range.
+ required: [ from, to ]
+ schema:
+ type: object
+ title: Schema
+ description: Represents the definition of a schema.
+ unevaluatedProperties: false
+ properties:
+ format:
+ type: string
+ default: json
+ title: SchemaFormat
+ description: The schema's format. Defaults to 'json'. The (optional) version of the format can be set using `{format}:{version}`.
+ oneOf:
+ - title: SchemaInline
+ properties:
+ document:
+ description: The schema's inline definition.
+ required: [ document ]
+ - title: SchemaExternal
+ properties:
+ resource:
+ $ref: '#/$defs/externalResource'
+ title: SchemaExternalResource
+ description: The schema's external resource.
+ required: [ resource ]
+ timeout:
+ type: object
+ title: Timeout
+ description: The definition of a timeout.
+ unevaluatedProperties: false
+ properties:
+ after:
+ $ref: '#/$defs/duration'
+ title: TimeoutAfter
+ description: The duration after which to timeout.
+ required: [ after ]
+ catalog:
+ type: object
+ title: Catalog
+ description: The definition of a resource catalog.
+ unevaluatedProperties: false
+ properties:
+ endpoint:
+ $ref: '#/$defs/endpoint'
+ title: CatalogEndpoint
+ description: The root URL where the catalog is hosted.
+ required: [ endpoint ]
+ runtimeExpression:
+ type: string
+ title: RuntimeExpression
+ description: A runtime expression.
+ pattern: "^\\s*\\$\\{.+\\}\\s*$"
+ containerLifetime:
+ type: object
+ title: ContainerLifetime
+ description: The configuration of a container's lifetime
+ unevaluatedProperties: false
+ properties:
+ cleanup:
+ type: string
+ title: ContainerCleanupPolicy
+ description: The container cleanup policy to use
+ enum: [ always, never, eventually ]
+ default: never
+ after:
+ $ref: '#/$defs/duration'
+ title: ContainerLifetimeDuration
+ description: The duration after which to cleanup the container, in case the cleanup policy has been set to 'eventually'
+ required: [ cleanup ]
+ if:
+ properties:
+ cleanup:
+ const: eventually
+ then:
+ required: [ after ]
+ else:
+ not:
+ required: [ after ]
+ processResult:
+ type: object
+ title: ProcessResult
+ description: The object returned by a run task when its return type has been set 'all'.
+ unevaluatedProperties: false
+ properties:
+ code:
+ type: integer
+ title: ProcessExitCode
+ description: The process's exit code.
+ stdout:
+ type: string
+ title: ProcessStandardOutput
+ description: The content of the process's STDOUT.
+ stderr:
+ type: string
+ title: ProcessStandardError
+ description: The content of the process's STDERR.
+ required: [ code, stdout, stderr ]
+ asyncApiServer:
+ type: object
+ title: AsyncApiServer
+ description: Configures the target server of an AsyncAPI operation.
+ unevaluatedProperties: false
+ properties:
+ name:
+ type: string
+ title: AsyncApiServerName
+ description: The target server's name.
+ variables:
+ type: object
+ title: AsyncApiServerVariables
+ description: The target server's variables, if any.
+ required: [ name ]
+ asyncApiOutboundMessage:
+ type: object
+ title: AsyncApiOutboundMessage
+ description: An object used to configure the message to publish using the target operation.
+ unevaluatedProperties: false
+ properties:
+ payload:
+ type: object
+ title: AsyncApiMessagePayload
+ description: The message's payload, if any.
+ headers:
+ type: object
+ title: AsyncApiMessageHeaders
+ description: The message's headers, if any.
+ asyncApiInboundMessage:
+ title: AsyncApiInboundMessage
+ description: Represents a message counsumed by an AsyncAPI subscription.
+ allOf:
+ - $ref: '#/$defs/asyncApiOutboundMessage'
+ - properties:
+ correlationId:
+ type: string
+ title: AsyncApiMessageCorrelationId
+ description: The message's correlation id, if any.
+ asyncApiSubscription:
+ type: object
+ title: AsyncApiSubscription
+ description: An object used to configure the subscription to messages consumed using the target operation.
+ unevaluatedProperties: false
+ properties:
+ filter:
+ $ref: '#/$defs/runtimeExpression'
+ title: AsyncApiSubscriptionCorrelation
+ description: A runtime expression, if any, used to filter consumed messages.
+ consume:
+ $ref: '#/$defs/asyncApiMessageConsumptionPolicy'
+ title: AsyncApiMessageConsumptionPolicy
+ description: An object used to configure the subscription's message consumption policy.
+ foreach:
+ $ref: '#/$defs/subscriptionIterator'
+ title: AsyncApiSubscriptionIterator
+ description: Configures the iterator, if any, for processing consumed messages(s).
+ required: [ consume ]
+ asyncApiMessageConsumptionPolicy:
+ type: object
+ title: AsyncApiMessageConsumptionPolicy
+ description: An object used to configure a subscription's message consumption policy.
+ unevaluatedProperties: false
+ properties:
+ for:
+ $ref: '#/$defs/duration'
+ title: AsyncApiMessageConsumptionPolicyFor
+ description: Specifies the time period over which messages will be consumed.
+ oneOf:
+ - properties:
+ amount:
+ type: integer
+ description: The amount of (filtered) messages to consume before disposing of the subscription.
+ title: AsyncApiMessageConsumptionPolicyAmount
+ required: [ amount ]
+ - properties:
+ while:
+ $ref: '#/$defs/runtimeExpression'
+ description: A runtime expression evaluated after each consumed (filtered) message to decide if message consumption should continue.
+ title: AsyncApiMessageConsumptionPolicyWhile
+ required: [ while ]
+ - properties:
+ until:
+ $ref: '#/$defs/runtimeExpression'
+ description: A runtime expression evaluated before each consumed (filtered) message to decide if message consumption should continue.
+ title: AsyncApiMessageConsumptionPolicyUntil
+ required: [ until ]
+ subscriptionIterator:
+ type: object
+ title: SubscriptionIterator
+ description: Configures the iteration over each item (event or message) consumed by a subscription.
+ unevaluatedProperties: false
+ properties:
+ item:
+ type: string
+ title: SubscriptionIteratorItem
+ description: The name of the variable used to store the current item being enumerated.
+ default: item
+ at:
+ type: string
+ title: SubscriptionIteratorIndex
+ description: The name of the variable used to store the index of the current item being enumerated.
+ default: index
+ do:
+ $ref: '#/$defs/taskList'
+ title: SubscriptionIteratorTasks
+ description: The tasks to perform for each consumed item.
+ output:
+ $ref: '#/$defs/output'
+ title: SubscriptionIteratorOutput
+ description: An object, if any, used to customize the item's output and to document its schema.
+ export:
+ $ref: '#/$defs/export'
+ title: SubscriptionIteratorExport
+ description: An object, if any, used to customize the content of the workflow context.
\ No newline at end of file
diff --git a/src/components/Card.astro b/src/components/Card.astro
index fceee37..14d9dfe 100644
--- a/src/components/Card.astro
+++ b/src/components/Card.astro
@@ -1,6 +1,6 @@
---
interface Props {
- title: string;
+ title?: string;
alignment?: 'center' | 'start' | 'end';
icon?: string;
image?: string;
@@ -50,7 +50,7 @@ const {
`justify-center`
),
]}>
- { title }
+ { title && title }