@digipair/skill-client-mcp 0.107.3 → 0.107.6
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.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 nextMatch = nextMatch1, tokens = tokens1, 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 nextMatch = nextMatch1, tokens = tokens1, 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 nextMatch = nextMatch1, tokens = tokens1, 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 nextMatch = nextMatch1, tokens = tokens1, i = i1, "continue";
|
|
23955
23955
|
}
|
|
23956
|
-
return
|
|
23956
|
+
return nextMatch = nextMatch1, tokens = tokens1, i = i1, {
|
|
23957
23957
|
v: nextMatch1
|
|
23958
23958
|
};
|
|
23959
23959
|
};
|
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@digipair/skill-client-mcp",
|
|
3
|
-
"version": "0.107.
|
|
3
|
+
"version": "0.107.6",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"digipair",
|
|
6
6
|
"service",
|
|
7
7
|
"tool"
|
|
8
8
|
],
|
|
9
9
|
"dependencies": {
|
|
10
|
+
"@digipair/engine": "0.107.6",
|
|
10
11
|
"@modelcontextprotocol/sdk": "^1.18.2"
|
|
11
12
|
},
|
|
12
13
|
"main": "./index.cjs.js",
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { PinsSettings } from './pins-settings.interface';
|
|
2
|
-
type CONFIG_KEY = 'BASE_URL' | 'LIBRARIES' | 'ALIAS' | 'LOGGER';
|
|
3
|
-
export declare const config: {
|
|
4
|
-
set: (key: CONFIG_KEY, value: any) => void;
|
|
5
|
-
log: (level: string, path: string, message: string, context: any, data?: any) => any;
|
|
6
|
-
};
|
|
7
|
-
export declare const applyTemplate: (value: any, context: any) => any;
|
|
8
|
-
export declare const executePinsList: (pinsSettingsList: PinsSettings[], context: any, path?: string) => Promise<any>;
|
|
9
|
-
export declare const generateElementFromPins: (pinsSettings: PinsSettings, parent: Element, context: any, document?: Document, options?: {
|
|
10
|
-
import: boolean;
|
|
11
|
-
}) => Promise<Element | void>;
|
|
12
|
-
export declare const preparePinsSettings: (settings: PinsSettings, context: any) => PinsSettings;
|
|
13
|
-
export {};
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
export interface PinsSettings {
|
|
2
|
-
library: string;
|
|
3
|
-
element: string;
|
|
4
|
-
properties?: {
|
|
5
|
-
[key: string]: any;
|
|
6
|
-
};
|
|
7
|
-
conditions?: {
|
|
8
|
-
if?: boolean;
|
|
9
|
-
each?: any[];
|
|
10
|
-
};
|
|
11
|
-
pins?: PinsSettings[];
|
|
12
|
-
events?: {
|
|
13
|
-
[key: string]: PinsSettings[];
|
|
14
|
-
};
|
|
15
|
-
}
|