@digipair/skill-client-mcp 0.119.0 → 0.119.1
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/index.esm.js +5 -5
- package/package.json +3 -2
package/dist/index.esm.js
CHANGED
|
@@ -22845,14 +22845,14 @@ function indent(str, spaces) {
|
|
|
22845
22845
|
var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
|
|
22846
22846
|
// match is required
|
|
22847
22847
|
if (!match) {
|
|
22848
|
-
return
|
|
22848
|
+
return nextMatch = nextMatch1, i = i1, tokens = tokens1, {
|
|
22849
22849
|
v: nextMatch1
|
|
22850
22850
|
};
|
|
22851
22851
|
}
|
|
22852
22852
|
var token = match.token, offset = match.offset;
|
|
22853
22853
|
i1 += offset;
|
|
22854
22854
|
if (token === ' ') {
|
|
22855
|
-
return
|
|
22855
|
+
return nextMatch = nextMatch1, i = i1, tokens = tokens1, "continue";
|
|
22856
22856
|
}
|
|
22857
22857
|
tokens1 = _to_consumable_array$4(tokens1).concat([
|
|
22858
22858
|
token
|
|
@@ -22871,7 +22871,7 @@ function indent(str, spaces) {
|
|
|
22871
22871
|
if (contextKeys.some(function(el) {
|
|
22872
22872
|
return el.startsWith(name);
|
|
22873
22873
|
})) {
|
|
22874
|
-
return
|
|
22874
|
+
return nextMatch = nextMatch1, i = i1, tokens = tokens1, "continue";
|
|
22875
22875
|
}
|
|
22876
22876
|
if (dateTimeIdentifiers.some(function(el) {
|
|
22877
22877
|
return el === name;
|
|
@@ -22890,9 +22890,9 @@ function indent(str, spaces) {
|
|
|
22890
22890
|
if (dateTimeIdentifiers.some(function(el) {
|
|
22891
22891
|
return el.startsWith(name);
|
|
22892
22892
|
})) {
|
|
22893
|
-
return
|
|
22893
|
+
return nextMatch = nextMatch1, i = i1, tokens = tokens1, "continue";
|
|
22894
22894
|
}
|
|
22895
|
-
return
|
|
22895
|
+
return nextMatch = nextMatch1, i = i1, tokens = tokens1, {
|
|
22896
22896
|
v: nextMatch1
|
|
22897
22897
|
};
|
|
22898
22898
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@digipair/skill-client-mcp",
|
|
3
|
-
"version": "0.119.
|
|
3
|
+
"version": "0.119.1",
|
|
4
4
|
"main": "./index.cjs.js",
|
|
5
5
|
"module": "./index.esm.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -30,6 +30,7 @@
|
|
|
30
30
|
"name": "skill-client-mcp"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@modelcontextprotocol/sdk": "^1.18.2"
|
|
33
|
+
"@modelcontextprotocol/sdk": "^1.18.2",
|
|
34
|
+
"zod": "^3.23.8"
|
|
34
35
|
}
|
|
35
36
|
}
|