@digipair/skill-client-mcp 0.106.1 → 0.107.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/index.cjs.js +5 -5
- package/index.esm.js +5 -5
- package/package.json +1 -1
- package/schema.fr.json +8 -8
- package/schema.json +9 -9
package/index.cjs.js
CHANGED
|
@@ -23936,14 +23936,14 @@ function indent(str, spaces) {
|
|
|
23936
23936
|
var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
|
|
23937
23937
|
// match is required
|
|
23938
23938
|
if (!match) {
|
|
23939
|
-
return
|
|
23939
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, {
|
|
23940
23940
|
v: nextMatch1
|
|
23941
23941
|
};
|
|
23942
23942
|
}
|
|
23943
23943
|
var token = match.token, offset = match.offset;
|
|
23944
23944
|
i1 += offset;
|
|
23945
23945
|
if (token === " ") {
|
|
23946
|
-
return
|
|
23946
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
|
|
23947
23947
|
}
|
|
23948
23948
|
tokens1 = _to_consumable_array$3(tokens1).concat([
|
|
23949
23949
|
token
|
|
@@ -23962,7 +23962,7 @@ function indent(str, spaces) {
|
|
|
23962
23962
|
if (contextKeys.some(function(el) {
|
|
23963
23963
|
return el.startsWith(name);
|
|
23964
23964
|
})) {
|
|
23965
|
-
return
|
|
23965
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
|
|
23966
23966
|
}
|
|
23967
23967
|
if (dateTimeIdentifiers.some(function(el) {
|
|
23968
23968
|
return el === name;
|
|
@@ -23981,9 +23981,9 @@ function indent(str, spaces) {
|
|
|
23981
23981
|
if (dateTimeIdentifiers.some(function(el) {
|
|
23982
23982
|
return el.startsWith(name);
|
|
23983
23983
|
})) {
|
|
23984
|
-
return
|
|
23984
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
|
|
23985
23985
|
}
|
|
23986
|
-
return
|
|
23986
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, {
|
|
23987
23987
|
v: nextMatch1
|
|
23988
23988
|
};
|
|
23989
23989
|
};
|
package/index.esm.js
CHANGED
|
@@ -23906,14 +23906,14 @@ function indent(str, spaces) {
|
|
|
23906
23906
|
var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
|
|
23907
23907
|
// match is required
|
|
23908
23908
|
if (!match) {
|
|
23909
|
-
return
|
|
23909
|
+
return tokens = tokens1, nextMatch = nextMatch1, i = i1, {
|
|
23910
23910
|
v: nextMatch1
|
|
23911
23911
|
};
|
|
23912
23912
|
}
|
|
23913
23913
|
var token = match.token, offset = match.offset;
|
|
23914
23914
|
i1 += offset;
|
|
23915
23915
|
if (token === " ") {
|
|
23916
|
-
return
|
|
23916
|
+
return tokens = tokens1, nextMatch = nextMatch1, i = i1, "continue";
|
|
23917
23917
|
}
|
|
23918
23918
|
tokens1 = _to_consumable_array$3(tokens1).concat([
|
|
23919
23919
|
token
|
|
@@ -23932,7 +23932,7 @@ function indent(str, spaces) {
|
|
|
23932
23932
|
if (contextKeys.some(function(el) {
|
|
23933
23933
|
return el.startsWith(name);
|
|
23934
23934
|
})) {
|
|
23935
|
-
return
|
|
23935
|
+
return tokens = tokens1, nextMatch = nextMatch1, i = i1, "continue";
|
|
23936
23936
|
}
|
|
23937
23937
|
if (dateTimeIdentifiers.some(function(el) {
|
|
23938
23938
|
return el === name;
|
|
@@ -23951,9 +23951,9 @@ function indent(str, spaces) {
|
|
|
23951
23951
|
if (dateTimeIdentifiers.some(function(el) {
|
|
23952
23952
|
return el.startsWith(name);
|
|
23953
23953
|
})) {
|
|
23954
|
-
return
|
|
23954
|
+
return tokens = tokens1, nextMatch = nextMatch1, i = i1, "continue";
|
|
23955
23955
|
}
|
|
23956
|
-
return
|
|
23956
|
+
return tokens = tokens1, nextMatch = nextMatch1, i = i1, {
|
|
23957
23957
|
v: nextMatch1
|
|
23958
23958
|
};
|
|
23959
23959
|
};
|
package/package.json
CHANGED
package/schema.fr.json
CHANGED
|
@@ -129,7 +129,7 @@
|
|
|
129
129
|
{
|
|
130
130
|
"name": "client",
|
|
131
131
|
"summary": "Client MCP",
|
|
132
|
-
"required":
|
|
132
|
+
"required": false,
|
|
133
133
|
"description": "Instance du client MCP",
|
|
134
134
|
"schema": {
|
|
135
135
|
"type": "array",
|
|
@@ -172,7 +172,7 @@
|
|
|
172
172
|
{
|
|
173
173
|
"name": "client",
|
|
174
174
|
"summary": "Client MCP",
|
|
175
|
-
"required":
|
|
175
|
+
"required": false,
|
|
176
176
|
"description": "Instance du client MCP",
|
|
177
177
|
"schema": {
|
|
178
178
|
"type": "array",
|
|
@@ -224,7 +224,7 @@
|
|
|
224
224
|
{
|
|
225
225
|
"name": "client",
|
|
226
226
|
"summary": "Client MCP",
|
|
227
|
-
"required":
|
|
227
|
+
"required": false,
|
|
228
228
|
"description": "Instance du client MCP",
|
|
229
229
|
"schema": {
|
|
230
230
|
"type": "array",
|
|
@@ -267,7 +267,7 @@
|
|
|
267
267
|
{
|
|
268
268
|
"name": "client",
|
|
269
269
|
"summary": "Client MCP",
|
|
270
|
-
"required":
|
|
270
|
+
"required": false,
|
|
271
271
|
"description": "Instance du client MCP",
|
|
272
272
|
"schema": {
|
|
273
273
|
"type": "array",
|
|
@@ -328,7 +328,7 @@
|
|
|
328
328
|
{
|
|
329
329
|
"name": "client",
|
|
330
330
|
"summary": "Client MCP",
|
|
331
|
-
"required":
|
|
331
|
+
"required": false,
|
|
332
332
|
"description": "Instance du client MCP",
|
|
333
333
|
"schema": {
|
|
334
334
|
"type": "array",
|
|
@@ -371,7 +371,7 @@
|
|
|
371
371
|
{
|
|
372
372
|
"name": "client",
|
|
373
373
|
"summary": "Client MCP",
|
|
374
|
-
"required":
|
|
374
|
+
"required": false,
|
|
375
375
|
"description": "Instance du client MCP",
|
|
376
376
|
"schema": {
|
|
377
377
|
"type": "array",
|
|
@@ -435,7 +435,7 @@
|
|
|
435
435
|
{
|
|
436
436
|
"name": "client",
|
|
437
437
|
"summary": "Client MCP",
|
|
438
|
-
"required":
|
|
438
|
+
"required": false,
|
|
439
439
|
"description": "Instance du client MCP",
|
|
440
440
|
"schema": {
|
|
441
441
|
"type": "array",
|
|
@@ -470,7 +470,7 @@
|
|
|
470
470
|
{
|
|
471
471
|
"name": "client",
|
|
472
472
|
"summary": "Client MCP",
|
|
473
|
-
"required":
|
|
473
|
+
"required": false,
|
|
474
474
|
"description": "Instance du client MCP",
|
|
475
475
|
"schema": {
|
|
476
476
|
"type": "array",
|
package/schema.json
CHANGED
|
@@ -96,7 +96,7 @@
|
|
|
96
96
|
{
|
|
97
97
|
"name": "options",
|
|
98
98
|
"summary": "Transport Options",
|
|
99
|
-
"required":
|
|
99
|
+
"required": true,
|
|
100
100
|
"description": "Additional transport options",
|
|
101
101
|
"schema": {
|
|
102
102
|
"type": "object"
|
|
@@ -129,7 +129,7 @@
|
|
|
129
129
|
{
|
|
130
130
|
"name": "client",
|
|
131
131
|
"summary": "MCP Client",
|
|
132
|
-
"required":
|
|
132
|
+
"required": false,
|
|
133
133
|
"description": "Instance of the MCP client",
|
|
134
134
|
"schema": {
|
|
135
135
|
"type": "array",
|
|
@@ -172,7 +172,7 @@
|
|
|
172
172
|
{
|
|
173
173
|
"name": "client",
|
|
174
174
|
"summary": "MCP Client",
|
|
175
|
-
"required":
|
|
175
|
+
"required": false,
|
|
176
176
|
"description": "Instance of the MCP client",
|
|
177
177
|
"schema": {
|
|
178
178
|
"type": "array",
|
|
@@ -224,7 +224,7 @@
|
|
|
224
224
|
{
|
|
225
225
|
"name": "client",
|
|
226
226
|
"summary": "MCP Client",
|
|
227
|
-
"required":
|
|
227
|
+
"required": false,
|
|
228
228
|
"description": "Instance of the MCP client",
|
|
229
229
|
"schema": {
|
|
230
230
|
"type": "array",
|
|
@@ -267,7 +267,7 @@
|
|
|
267
267
|
{
|
|
268
268
|
"name": "client",
|
|
269
269
|
"summary": "MCP Client",
|
|
270
|
-
"required":
|
|
270
|
+
"required": false,
|
|
271
271
|
"description": "Instance of the MCP client",
|
|
272
272
|
"schema": {
|
|
273
273
|
"type": "array",
|
|
@@ -328,7 +328,7 @@
|
|
|
328
328
|
{
|
|
329
329
|
"name": "client",
|
|
330
330
|
"summary": "MCP Client",
|
|
331
|
-
"required":
|
|
331
|
+
"required": false,
|
|
332
332
|
"description": "Instance of the MCP client",
|
|
333
333
|
"schema": {
|
|
334
334
|
"type": "array",
|
|
@@ -371,7 +371,7 @@
|
|
|
371
371
|
{
|
|
372
372
|
"name": "client",
|
|
373
373
|
"summary": "MCP Client",
|
|
374
|
-
"required":
|
|
374
|
+
"required": false,
|
|
375
375
|
"description": "Instance of the MCP client",
|
|
376
376
|
"schema": {
|
|
377
377
|
"type": "array",
|
|
@@ -435,7 +435,7 @@
|
|
|
435
435
|
{
|
|
436
436
|
"name": "client",
|
|
437
437
|
"summary": "MCP Client",
|
|
438
|
-
"required":
|
|
438
|
+
"required": false,
|
|
439
439
|
"description": "Instance of the MCP client",
|
|
440
440
|
"schema": {
|
|
441
441
|
"type": "array",
|
|
@@ -470,7 +470,7 @@
|
|
|
470
470
|
{
|
|
471
471
|
"name": "client",
|
|
472
472
|
"summary": "MCP Client",
|
|
473
|
-
"required":
|
|
473
|
+
"required": false,
|
|
474
474
|
"description": "Instance of the MCP client",
|
|
475
475
|
"schema": {
|
|
476
476
|
"type": "array",
|