@shenghuabi/workflow 1.1.5 → 1.1.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.d.ts +1 -0
- package/index.js +8 -6
- package/index.js.map +2 -2
- package/index.mjs +6 -5
- package/index.mjs.map +2 -2
- package/package.json +2 -2
- package/util/serialize-text-template.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shenghuabi/workflow",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.6",
|
|
4
4
|
"description": "模板",
|
|
5
5
|
"author": "wszgrcy",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"@cyia/external-call": "^1.5.2",
|
|
12
12
|
"@cyia/util": "^1.5.2",
|
|
13
13
|
"@cyia/vfs2": "^1.5.2",
|
|
14
|
-
"@shenghuabi/openai": "1.1.
|
|
14
|
+
"@shenghuabi/openai": "1.1.6",
|
|
15
15
|
"static-injector": "^6.1.2",
|
|
16
16
|
"@piying/view-angular-core": "^2.9.3",
|
|
17
17
|
"@piying/valibot-visit": "^1.3.11"
|
|
@@ -13,4 +13,4 @@ export interface SerializeContextOptions {
|
|
|
13
13
|
* @param options - 上下文选项
|
|
14
14
|
* @returns 序列化后的字符串
|
|
15
15
|
*/
|
|
16
|
-
export declare function
|
|
16
|
+
export declare function serializeLexicalTextarea(input: unknown, options: SerializeContextOptions): string;
|