@regle/mcp-server 1.19.0-beta.3 → 1.19.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/regle-mcp-server.js +2 -2
- package/package.json +4 -4
package/dist/regle-mcp-server.js
CHANGED
|
@@ -813,7 +813,7 @@ var docs_data_default = {
|
|
|
813
813
|
"optional": true
|
|
814
814
|
}
|
|
815
815
|
],
|
|
816
|
-
"returnType": "TRule extends InlineRuleDeclaration<infer TValue, infer TParams, infer TReturn>\n ? RegleRuleDefinition<\n 'applyIf',\n TValue,\n
|
|
816
|
+
"returnType": "TRule extends InlineRuleDeclaration<infer TValue, infer TParams, infer TReturn>\n ? RegleRuleDefinition<\n 'applyIf',\n TValue,\n ParamsToLooseParams<TParams, [condition: boolean]>,\n ...",
|
|
817
817
|
"example": "import { minLength, applyIf } from '@regle/rules';\n\nconst condition = ref(false);\n\nconst { r$ } = useRegle({ name: '' }, {\n name: {\n minLength: applyIf(condition, minLength(6))\n },\n});",
|
|
818
818
|
"tags": { "see": "://reglejs.dev/core-concepts/rules/rules-operators#applyif Documentation" }
|
|
819
819
|
},
|
|
@@ -1955,7 +1955,7 @@ function searchApi(query) {
|
|
|
1955
1955
|
return results;
|
|
1956
1956
|
}
|
|
1957
1957
|
|
|
1958
|
-
var version = "1.19.0
|
|
1958
|
+
var version = "1.19.0";
|
|
1959
1959
|
|
|
1960
1960
|
let posthogClient = null;
|
|
1961
1961
|
posthogClient = new PostHog("phc_kqgJoylCpKkGkkRGxb4MyN2mViehoQcUFEGwVkk4l8E", {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@regle/mcp-server",
|
|
3
|
-
"version": "1.19.0
|
|
3
|
+
"version": "1.19.0",
|
|
4
4
|
"description": "MCP Server for Regle",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -50,9 +50,9 @@
|
|
|
50
50
|
"zod": "4.3.6"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@types/node": "24.10.
|
|
54
|
-
"dotenv": "17.2.
|
|
55
|
-
"tsdown": "0.20.
|
|
53
|
+
"@types/node": "24.10.13",
|
|
54
|
+
"dotenv": "17.2.4",
|
|
55
|
+
"tsdown": "0.20.3",
|
|
56
56
|
"tsx": "4.21.0",
|
|
57
57
|
"typescript": "5.9.3"
|
|
58
58
|
},
|