@digipair/skill-llm 0.2.16 → 0.3.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 +2 -1
- package/index.d.ts +1 -1
- package/index.esm.js +2 -1
- package/{engine → libs/engine}/src/lib/pins-settings.interface.d.ts +1 -1
- package/libs/skill-llm/src/index.d.ts +1 -0
- package/package.json +1 -1
- package/{engine → libs/engine}/src/index.d.ts +0 -0
- package/{engine → libs/engine}/src/lib/engine.d.ts +4 -4
- /package/{lib → libs/skill-llm/src/lib}/skill-llm.d.ts +0 -0
package/index.cjs.js
CHANGED
@@ -12452,7 +12452,8 @@ const applyTemplate = (value, context)=>{
|
|
12452
12452
|
result = template(context);
|
12453
12453
|
if (result.startsWith('GET_VALUE:')) {
|
12454
12454
|
const path = result.replace('GET_VALUE:', '');
|
12455
|
-
|
12455
|
+
const jsonpath = new jsonpath_min.exports.JSONPath();
|
12456
|
+
result = jsonpath.value(context, path);
|
12456
12457
|
}
|
12457
12458
|
} else if (typeof value === 'object' && Array.isArray(value)) {
|
12458
12459
|
result = value;
|
package/index.d.ts
CHANGED
@@ -1 +1 @@
|
|
1
|
-
export * from './
|
1
|
+
export * from './libs/skill-llm/src/index';
|
package/index.esm.js
CHANGED
@@ -12430,7 +12430,8 @@ const applyTemplate = (value, context)=>{
|
|
12430
12430
|
result = template(context);
|
12431
12431
|
if (result.startsWith('GET_VALUE:')) {
|
12432
12432
|
const path = result.replace('GET_VALUE:', '');
|
12433
|
-
|
12433
|
+
const jsonpath = new jsonpath_min.exports.JSONPath();
|
12434
|
+
result = jsonpath.value(context, path);
|
12434
12435
|
}
|
12435
12436
|
} else if (typeof value === 'object' && Array.isArray(value)) {
|
12436
12437
|
result = value;
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from './lib/skill-llm';
|
package/package.json
CHANGED
File without changes
|
@@ -9,16 +9,16 @@ export declare const executePins: (settingsOrigin: PinsSettings, context?: any,
|
|
9
9
|
[key: string]: string;
|
10
10
|
};
|
11
11
|
}) => Promise<any>;
|
12
|
-
export declare const
|
12
|
+
export declare const executePinsList: (pinsSettingsList: PinsSettings[], context: any, options?: {
|
13
13
|
libraries: {
|
14
14
|
[key: string]: string;
|
15
15
|
};
|
16
|
-
}) => Promise<
|
17
|
-
export declare const
|
16
|
+
}) => Promise<any>;
|
17
|
+
export declare const generateElementFromPins: (pinsSettings: PinsSettings, context: any, options?: {
|
18
18
|
libraries: {
|
19
19
|
[key: string]: string;
|
20
20
|
};
|
21
|
-
}) => Promise<
|
21
|
+
}) => Promise<Element>;
|
22
22
|
export declare const preparePinsSettings: (settings: PinsSettings, context: any, options?: {
|
23
23
|
libraries: {
|
24
24
|
[key: string]: string;
|
File without changes
|