@whispering233/ai-editor-shared 0.0.29 → 0.0.32
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/constants/backup.d.ts +1 -1
- package/dist/constants/backup.d.ts.map +1 -1
- package/dist/constants/backup.js +1 -1
- package/dist/constants/backup.js.map +1 -1
- package/dist/constants/entity.d.ts +4 -4
- package/dist/constants/entity.d.ts.map +1 -1
- package/dist/constants/entity.js +4 -4
- package/dist/constants/entity.js.map +1 -1
- package/dist/constants/hook.d.ts +3 -3
- package/dist/constants/hook.d.ts.map +1 -1
- package/dist/constants/hook.js +3 -3
- package/dist/constants/hook.js.map +1 -1
- package/dist/constants/outline.d.ts +1 -1
- package/dist/constants/outline.d.ts.map +1 -1
- package/dist/constants/outline.js +1 -1
- package/dist/constants/outline.js.map +1 -1
- package/dist/constants/tool.d.ts +1 -1
- package/dist/constants/tool.js +3 -3
- package/dist/constants/tool.js.map +1 -1
- package/dist/types/api.d.ts +60 -106
- package/dist/types/api.d.ts.map +1 -1
- package/dist/types/api.js +83 -112
- package/dist/types/api.js.map +1 -1
- package/dist/types/entity.d.ts +19 -19
- package/dist/types/entity.d.ts.map +1 -1
- package/dist/types/index.d.ts +0 -2
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/outline.d.ts +5 -5
- package/dist/types/outline.d.ts.map +1 -1
- package/dist/types/project.d.ts +3 -3
- package/dist/utils/backup.d.ts +2 -2
- package/dist/utils/backup.js +5 -5
- package/dist/utils/backup.js.map +1 -1
- package/dist/utils/format.d.ts +2 -7
- package/dist/utils/format.d.ts.map +1 -1
- package/dist/utils/format.js +2 -11
- package/dist/utils/format.js.map +1 -1
- package/dist/utils/id.d.ts +5 -6
- package/dist/utils/id.d.ts.map +1 -1
- package/dist/utils/id.js +4 -5
- package/dist/utils/id.js.map +1 -1
- package/dist/utils/mapping.d.ts +2 -2
- package/dist/utils/mapping.d.ts.map +1 -1
- package/dist/utils/mapping.js +6 -6
- package/dist/utils/mapping.js.map +1 -1
- package/dist/utils/reference-file.d.ts +1 -1
- package/dist/utils/reference-file.d.ts.map +1 -1
- package/dist/utils/reference-file.js +4 -4
- package/dist/utils/reference-file.js.map +1 -1
- package/package.json +1 -5
- package/dist/types/chat.d.ts +0 -42
- package/dist/types/chat.d.ts.map +0 -1
- package/dist/types/chat.js +0 -3
- package/dist/types/chat.js.map +0 -1
- package/dist/types/tool.d.ts +0 -356
- package/dist/types/tool.d.ts.map +0 -1
- package/dist/types/tool.js +0 -332
- package/dist/types/tool.js.map +0 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
//
|
|
1
|
+
// 参考资料文件工具纯函数
|
|
2
2
|
// 职责:md 文件(YAML frontmatter + markdown 正文)的解析/序列化 + 文件名 sanitize。
|
|
3
3
|
// 约束(shared 硬约束):纯 TS 无 Node 内置模块——仅字符串处理,client 可打包。
|
|
4
4
|
//
|
|
5
|
-
// frontmatter 格式(
|
|
5
|
+
// frontmatter 格式(Q1=方案 A):
|
|
6
6
|
// ---
|
|
7
7
|
// title: 五行相生相克 摘抄
|
|
8
8
|
// category: material
|
|
@@ -25,7 +25,7 @@ function splitFrontmatter(text) {
|
|
|
25
25
|
for (let i = 0; i < lines.length; i++) {
|
|
26
26
|
if (lines[i].trim() === FRONTMATTER_DELIMITER) {
|
|
27
27
|
const body = lines.slice(i + 1).join("\n");
|
|
28
|
-
// 去掉 body
|
|
28
|
+
// 去掉 body 开头单个换行(闭合行后紧跟空行是惯例,保留语义不吞内容)
|
|
29
29
|
// 与末尾恰一个换行(POSIX 文件末尾换行惯例;roundtrip 稳定:serialize 输出 \n → parse 去掉)
|
|
30
30
|
return { rawLines: lines.slice(0, i), body: body.replace(/^\n/, "").replace(/\n$/, "") };
|
|
31
31
|
}
|
|
@@ -89,7 +89,7 @@ export function parseReferenceFrontmatter(text) {
|
|
|
89
89
|
}
|
|
90
90
|
return { title, category, tags, extraLines: unknown, body: block.body };
|
|
91
91
|
}
|
|
92
|
-
/** 序列化参考文件全文(frontmatter +
|
|
92
|
+
/** 序列化参考文件全文(frontmatter + 正文;格式) */
|
|
93
93
|
export function serializeReferenceFile(input) {
|
|
94
94
|
const lines = [FRONTMATTER_DELIMITER];
|
|
95
95
|
lines.push(`title: ${input.title}`);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"reference-file.js","sourceRoot":"","sources":["../../src/utils/reference-file.ts"],"names":[],"mappings":"AAAA,
|
|
1
|
+
{"version":3,"file":"reference-file.js","sourceRoot":"","sources":["../../src/utils/reference-file.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@whispering233/ai-editor-shared",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.32",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "前后端共享层:纯类型 + 常量 + 纯函数(零 Node 依赖)",
|
|
6
6
|
"type": "module",
|
|
@@ -14,10 +14,6 @@
|
|
|
14
14
|
"./schemas": {
|
|
15
15
|
"types": "./dist/types/api.d.ts",
|
|
16
16
|
"import": "./dist/types/api.js"
|
|
17
|
-
},
|
|
18
|
-
"./schemas/tools": {
|
|
19
|
-
"types": "./dist/types/tool.d.ts",
|
|
20
|
-
"import": "./dist/types/tool.js"
|
|
21
17
|
}
|
|
22
18
|
},
|
|
23
19
|
"files": [
|
package/dist/types/chat.d.ts
DELETED
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
/** 对话角色(chat_messages 表 role 列,) */
|
|
2
|
-
export type ChatRole = "user" | "assistant" | "tool";
|
|
3
|
-
/**
|
|
4
|
-
* 对话消息( chat 消息条目 + chat_messages 表)
|
|
5
|
-
* 续聊重建规则:assistant.tool_calls[].id ↔ tool.tool_call_id 成对重组喂回模型
|
|
6
|
-
*/
|
|
7
|
-
export interface ChatMessage {
|
|
8
|
-
id: string;
|
|
9
|
-
sessionId: string;
|
|
10
|
-
/** 会话按项目隔离 */
|
|
11
|
-
projectId?: string;
|
|
12
|
-
role: ChatRole;
|
|
13
|
-
content?: string | null;
|
|
14
|
-
/** assistant 消息的工具调用数组 */
|
|
15
|
-
toolCalls?: unknown[];
|
|
16
|
-
/** tool 消息关联的 assistant 工具调用 id */
|
|
17
|
-
toolCallId?: string | null;
|
|
18
|
-
createdAt: string;
|
|
19
|
-
}
|
|
20
|
-
/** chat_messages 表行(存储形态 snake_case,) */
|
|
21
|
-
export interface ChatMessageRow {
|
|
22
|
-
id: string;
|
|
23
|
-
session_id: string;
|
|
24
|
-
project_id: string;
|
|
25
|
-
role: ChatRole;
|
|
26
|
-
content: string | null;
|
|
27
|
-
/** JSON 列解析后的数组 */
|
|
28
|
-
tool_calls: unknown[] | null;
|
|
29
|
-
tool_call_id: string | null;
|
|
30
|
-
created_at: string;
|
|
31
|
-
}
|
|
32
|
-
/** 会话列表项(GET /api/v1/chat/sessions,;按最后活动时间倒序) */
|
|
33
|
-
export interface ChatSessionSummary {
|
|
34
|
-
id: string;
|
|
35
|
-
/** 最后一条消息摘要(截断) */
|
|
36
|
-
lastMessage: string;
|
|
37
|
-
messageCount: number;
|
|
38
|
-
createdAt: string;
|
|
39
|
-
/** 最后活动时间 */
|
|
40
|
-
updatedAt: string;
|
|
41
|
-
}
|
|
42
|
-
//# sourceMappingURL=chat.d.ts.map
|
package/dist/types/chat.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"chat.d.ts","sourceRoot":"","sources":["../../src/types/chat.ts"],"names":[],"mappings":"AAEA,oCAAoC;AACpC,MAAM,MAAM,QAAQ,GAAG,MAAM,GAAG,WAAW,GAAG,MAAM,CAAC;AAErD;;;GAGG;AACH,MAAM,WAAW,WAAW;IAC1B,EAAE,EAAE,MAAM,CAAC;IACX,SAAS,EAAE,MAAM,CAAC;IACnB,cAAc;IACb,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,IAAI,EAAE,QAAQ,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB,0BAA0B;IACzB,SAAS,CAAC,EAAE,OAAO,EAAE,CAAC;IACvB,mCAAmC;IAClC,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,SAAS,EAAE,MAAM,CAAC;CACnB;AAED,yCAAyC;AACzC,MAAM,WAAW,cAAc;IAC7B,EAAE,EAAE,MAAM,CAAC;IACX,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,IAAI,EAAE,QAAQ,CAAC;IACf,OAAO,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB,mBAAmB;IAClB,UAAU,EAAE,OAAO,EAAE,GAAG,IAAI,CAAC;IAC7B,YAAY,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,kDAAkD;AAClD,MAAM,WAAW,kBAAkB;IACjC,EAAE,EAAE,MAAM,CAAC;IACZ,mBAAmB;IAClB,WAAW,EAAE,MAAM,CAAC;IACpB,YAAY,EAAE,MAAM,CAAC;IACrB,SAAS,EAAE,MAAM,CAAC;IACnB,aAAa;IACZ,SAAS,EAAE,MAAM,CAAC;CACnB"}
|
package/dist/types/chat.js
DELETED
package/dist/types/chat.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"chat.js","sourceRoot":"","sources":["../../src/types/chat.ts"],"names":[],"mappings":"AAAA,cAAc"}
|
package/dist/types/tool.d.ts
DELETED
|
@@ -1,356 +0,0 @@
|
|
|
1
|
-
import { z } from "zod";
|
|
2
|
-
/** get_entity 入参:type(实体类型)+ id;id 前缀体系全局唯一,type 用于回显与一致性校验 */
|
|
3
|
-
export declare const getEntityArgsSchema: z.ZodObject<{
|
|
4
|
-
type: z.ZodEnum<{
|
|
5
|
-
character: "character";
|
|
6
|
-
setting: "setting";
|
|
7
|
-
location: "location";
|
|
8
|
-
hook: "hook";
|
|
9
|
-
event: "event";
|
|
10
|
-
timepoint: "timepoint";
|
|
11
|
-
reference: "reference";
|
|
12
|
-
}>;
|
|
13
|
-
id: z.ZodString;
|
|
14
|
-
}, z.core.$strict>;
|
|
15
|
-
export type GetEntityArgs = z.infer<typeof getEntityArgsSchema>;
|
|
16
|
-
/**
|
|
17
|
-
* search_entities 入参:type + query(name 模糊匹配)+ filters(data 字段过滤)
|
|
18
|
-
* filters.status:data.status 字符串相等匹配;filters.tags:data.tags 数组须包含全部指定 tags(AND)
|
|
19
|
-
*/
|
|
20
|
-
export declare const searchEntitiesArgsSchema: z.ZodObject<{
|
|
21
|
-
type: z.ZodEnum<{
|
|
22
|
-
character: "character";
|
|
23
|
-
setting: "setting";
|
|
24
|
-
location: "location";
|
|
25
|
-
hook: "hook";
|
|
26
|
-
event: "event";
|
|
27
|
-
timepoint: "timepoint";
|
|
28
|
-
reference: "reference";
|
|
29
|
-
}>;
|
|
30
|
-
query: z.ZodString;
|
|
31
|
-
filters: z.ZodOptional<z.ZodObject<{
|
|
32
|
-
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
33
|
-
status: z.ZodOptional<z.ZodString>;
|
|
34
|
-
}, z.core.$strip>>;
|
|
35
|
-
}, z.core.$strict>;
|
|
36
|
-
export type SearchEntitiesArgs = z.infer<typeof searchEntitiesArgsSchema>;
|
|
37
|
-
/**
|
|
38
|
-
* query_relationships 入参:source_type/target_type 为自由字符串(实体类型或 outline_node);
|
|
39
|
-
* relation_type 用 z.enum(RELATION_TYPES) **白名单校验**( 预定义 16 种,
|
|
40
|
-
* 与 REST relationQuerySchema 的宽松 string 不同——工具参数由 LLM 生成,枚举提前拦非法值);
|
|
41
|
-
* depth 1=紧邻 / 2=k跳 / 3=全量(必填,与 API 层一致)
|
|
42
|
-
*/
|
|
43
|
-
export declare const queryRelationshipsArgsSchema: z.ZodObject<{
|
|
44
|
-
source_type: z.ZodOptional<z.ZodString>;
|
|
45
|
-
source_id: z.ZodOptional<z.ZodString>;
|
|
46
|
-
target_type: z.ZodOptional<z.ZodString>;
|
|
47
|
-
target_id: z.ZodOptional<z.ZodString>;
|
|
48
|
-
relation_type: z.ZodOptional<z.ZodEnum<{
|
|
49
|
-
belongs_to: "belongs_to";
|
|
50
|
-
owns: "owns";
|
|
51
|
-
masters: "masters";
|
|
52
|
-
ally: "ally";
|
|
53
|
-
rival: "rival";
|
|
54
|
-
mentor: "mentor";
|
|
55
|
-
family: "family";
|
|
56
|
-
kills: "kills";
|
|
57
|
-
appears_in: "appears_in";
|
|
58
|
-
occurs_at: "occurs_at";
|
|
59
|
-
plot_edge: "plot_edge";
|
|
60
|
-
plants: "plants";
|
|
61
|
-
advances: "advances";
|
|
62
|
-
resolves: "resolves";
|
|
63
|
-
depends_on: "depends_on";
|
|
64
|
-
involves: "involves";
|
|
65
|
-
occurs_in: "occurs_in";
|
|
66
|
-
}>>;
|
|
67
|
-
depth: z.ZodUnion<readonly [z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
|
68
|
-
}, z.core.$strict>;
|
|
69
|
-
export type QueryRelationshipsArgs = z.infer<typeof queryRelationshipsArgsSchema>;
|
|
70
|
-
/** get_outline 入参:无参;默认不含 metadata 统计(省 token,需统计走 API with_metadata) */
|
|
71
|
-
export declare const getOutlineArgsSchema: z.ZodObject<{}, z.core.$strict>;
|
|
72
|
-
export type GetOutlineArgs = z.infer<typeof getOutlineArgsSchema>;
|
|
73
|
-
/** get_outline_path 入参:node_id(根 → 该节点的路径 ID 列表,含 root) */
|
|
74
|
-
export declare const getOutlinePathArgsSchema: z.ZodObject<{
|
|
75
|
-
node_id: z.ZodString;
|
|
76
|
-
}, z.core.$strict>;
|
|
77
|
-
export type GetOutlinePathArgs = z.infer<typeof getOutlinePathArgsSchema>;
|
|
78
|
-
/**
|
|
79
|
-
* compute_state 入参(与 POST /api/v1/delta/compute 同构,api.ts deltaComputeReqSchema):
|
|
80
|
-
* 目标实体到达 at_node_id 时的累积状态(只沿大纲树父链累积已确认 Delta)
|
|
81
|
-
*/
|
|
82
|
-
export declare const computeStateArgsSchema: z.ZodObject<{
|
|
83
|
-
target_type: z.ZodString;
|
|
84
|
-
target_id: z.ZodString;
|
|
85
|
-
at_node_id: z.ZodString;
|
|
86
|
-
}, z.core.$strict>;
|
|
87
|
-
export type ComputeStateArgs = z.infer<typeof computeStateArgsSchema>;
|
|
88
|
-
/** get_delta_history 入参:target_type + target_id(该实体的全部属性变更记录,按时间/节点排序) */
|
|
89
|
-
export declare const getDeltaHistoryArgsSchema: z.ZodObject<{
|
|
90
|
-
target_type: z.ZodString;
|
|
91
|
-
target_id: z.ZodString;
|
|
92
|
-
}, z.core.$strict>;
|
|
93
|
-
export type GetDeltaHistoryArgs = z.infer<typeof getDeltaHistoryArgsSchema>;
|
|
94
|
-
/** get_entity_summary 入参:type(指定类型实体的统计数据:总数 + 类型专属分布) */
|
|
95
|
-
export declare const getEntitySummaryArgsSchema: z.ZodObject<{
|
|
96
|
-
type: z.ZodEnum<{
|
|
97
|
-
character: "character";
|
|
98
|
-
setting: "setting";
|
|
99
|
-
location: "location";
|
|
100
|
-
hook: "hook";
|
|
101
|
-
event: "event";
|
|
102
|
-
timepoint: "timepoint";
|
|
103
|
-
reference: "reference";
|
|
104
|
-
}>;
|
|
105
|
-
}, z.core.$strict>;
|
|
106
|
-
export type GetEntitySummaryArgs = z.infer<typeof getEntitySummaryArgsSchema>;
|
|
107
|
-
/** analyze_consistency 入参:entity_id(检查该实体档案内部的矛盾,如性格反义词对/状态冲突) */
|
|
108
|
-
export declare const analyzeConsistencyArgsSchema: z.ZodObject<{
|
|
109
|
-
entity_id: z.ZodString;
|
|
110
|
-
}, z.core.$strict>;
|
|
111
|
-
export type AnalyzeConsistencyArgs = z.infer<typeof analyzeConsistencyArgsSchema>;
|
|
112
|
-
/**
|
|
113
|
-
* detect_conflicts 入参:types 限定参与检测的实体类型(缺省全部);
|
|
114
|
-
* relation_filter 限定参与检测的关系类型(缺省用内置对称/互斥/互杀规则集)。
|
|
115
|
-
* 检测对象:对称关系单向缺失(ally/family)、互斥关系并存(ally+rival)、互杀(kills×2)。
|
|
116
|
-
*/
|
|
117
|
-
export declare const detectConflictsArgsSchema: z.ZodObject<{
|
|
118
|
-
types: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
119
|
-
character: "character";
|
|
120
|
-
setting: "setting";
|
|
121
|
-
location: "location";
|
|
122
|
-
hook: "hook";
|
|
123
|
-
event: "event";
|
|
124
|
-
timepoint: "timepoint";
|
|
125
|
-
reference: "reference";
|
|
126
|
-
}>>>;
|
|
127
|
-
relation_filter: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
128
|
-
belongs_to: "belongs_to";
|
|
129
|
-
owns: "owns";
|
|
130
|
-
masters: "masters";
|
|
131
|
-
ally: "ally";
|
|
132
|
-
rival: "rival";
|
|
133
|
-
mentor: "mentor";
|
|
134
|
-
family: "family";
|
|
135
|
-
kills: "kills";
|
|
136
|
-
appears_in: "appears_in";
|
|
137
|
-
occurs_at: "occurs_at";
|
|
138
|
-
plot_edge: "plot_edge";
|
|
139
|
-
plants: "plants";
|
|
140
|
-
advances: "advances";
|
|
141
|
-
resolves: "resolves";
|
|
142
|
-
depends_on: "depends_on";
|
|
143
|
-
involves: "involves";
|
|
144
|
-
occurs_in: "occurs_in";
|
|
145
|
-
}>>>;
|
|
146
|
-
}, z.core.$strict>;
|
|
147
|
-
export type DetectConflictsArgs = z.infer<typeof detectConflictsArgsSchema>;
|
|
148
|
-
/** trace_plot_paths 入参:from_node_id → to_node_id(大纲节点;输出树路径 + plot_edge 连线路径) */
|
|
149
|
-
export declare const tracePlotPathsArgsSchema: z.ZodObject<{
|
|
150
|
-
from_node_id: z.ZodString;
|
|
151
|
-
to_node_id: z.ZodString;
|
|
152
|
-
}, z.core.$strict>;
|
|
153
|
-
export type TracePlotPathsArgs = z.infer<typeof tracePlotPathsArgsSchema>;
|
|
154
|
-
/** find_orphan_elements 入参:无参(全项目扫描:闲置角色/未解决变更/悬空关系/跨存储软删不一致) */
|
|
155
|
-
export declare const findOrphanElementsArgsSchema: z.ZodObject<{}, z.core.$strict>;
|
|
156
|
-
export type FindOrphanElementsArgs = z.infer<typeof findOrphanElementsArgsSchema>;
|
|
157
|
-
/** suggest_connections 入参:entity_id(基于共享场景/共同邻居/同分类等信号建议潜在关联) */
|
|
158
|
-
export declare const suggestConnectionsArgsSchema: z.ZodObject<{
|
|
159
|
-
entity_id: z.ZodString;
|
|
160
|
-
}, z.core.$strict>;
|
|
161
|
-
export type SuggestConnectionsArgs = z.infer<typeof suggestConnectionsArgsSchema>;
|
|
162
|
-
/** analyze_hook_health 入参:无参(全项目活跃伏笔健康总览:stale/overdue/blocked/warnings) */
|
|
163
|
-
export declare const analyzeHookHealthArgsSchema: z.ZodObject<{}, z.core.$strict>;
|
|
164
|
-
export type AnalyzeHookHealthArgs = z.infer<typeof analyzeHookHealthArgsSchema>;
|
|
165
|
-
/** trace_hook_lifecycle 入参:hook_id(埋设/推进/回收节点 + 休眠章数 + 时间线图) */
|
|
166
|
-
export declare const traceHookLifecycleArgsSchema: z.ZodObject<{
|
|
167
|
-
hook_id: z.ZodString;
|
|
168
|
-
}, z.core.$strict>;
|
|
169
|
-
export type TraceHookLifecycleArgs = z.infer<typeof traceHookLifecycleArgsSchema>;
|
|
170
|
-
/** suggest_hook_payoff 入参:hook_id(基于埋设章节与半衰期推荐理想回收场景,top 3) */
|
|
171
|
-
export declare const suggestHookPayoffArgsSchema: z.ZodObject<{
|
|
172
|
-
hook_id: z.ZodString;
|
|
173
|
-
}, z.core.$strict>;
|
|
174
|
-
export type SuggestHookPayoffArgs = z.infer<typeof suggestHookPayoffArgsSchema>;
|
|
175
|
-
/** find_hook_opportunities 入参:outline_node_id(分析节点叙事特征,建议适合的伏笔类别) */
|
|
176
|
-
export declare const findHookOpportunitiesArgsSchema: z.ZodObject<{
|
|
177
|
-
outline_node_id: z.ZodString;
|
|
178
|
-
}, z.core.$strict>;
|
|
179
|
-
export type FindHookOpportunitiesArgs = z.infer<typeof findHookOpportunitiesArgsSchema>;
|
|
180
|
-
/** detect_hook_conflicts 入参:无参(依赖循环/依赖废弃/时间悖论检测) */
|
|
181
|
-
export declare const detectHookConflictsArgsSchema: z.ZodObject<{}, z.core.$strict>;
|
|
182
|
-
export type DetectHookConflictsArgs = z.infer<typeof detectHookConflictsArgsSchema>;
|
|
183
|
-
/** 入参:type(实体类型)+ name(必填)+ data(可选自定义字段) */
|
|
184
|
-
export declare const proposeCreateEntityArgsSchema: z.ZodObject<{
|
|
185
|
-
type: z.ZodEnum<{
|
|
186
|
-
character: "character";
|
|
187
|
-
setting: "setting";
|
|
188
|
-
location: "location";
|
|
189
|
-
hook: "hook";
|
|
190
|
-
event: "event";
|
|
191
|
-
timepoint: "timepoint";
|
|
192
|
-
reference: "reference";
|
|
193
|
-
}>;
|
|
194
|
-
name: z.ZodString;
|
|
195
|
-
data: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
196
|
-
}, z.core.$strict>;
|
|
197
|
-
export type ProposeCreateEntityArgs = z.infer<typeof proposeCreateEntityArgsSchema>;
|
|
198
|
-
/** 入参:entity_id + patches(data 部分字段,至少一项);快照校验基于实体自身 updated_at */
|
|
199
|
-
export declare const proposeUpdateEntityArgsSchema: z.ZodObject<{
|
|
200
|
-
entity_id: z.ZodString;
|
|
201
|
-
patches: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
202
|
-
}, z.core.$strict>;
|
|
203
|
-
export type ProposeUpdateEntityArgs = z.infer<typeof proposeUpdateEntityArgsSchema>;
|
|
204
|
-
/** 入参:entity_id(软删 + 级联,可回收站还原) */
|
|
205
|
-
export declare const proposeDeleteEntityArgsSchema: z.ZodObject<{
|
|
206
|
-
entity_id: z.ZodString;
|
|
207
|
-
}, z.core.$strict>;
|
|
208
|
-
export type ProposeDeleteEntityArgs = z.infer<typeof proposeDeleteEntityArgsSchema>;
|
|
209
|
-
/**
|
|
210
|
-
* 入参:source/target 为端点 id(实体 id 或大纲节点 id,类型生成时自动识别);
|
|
211
|
-
* type 白名单(RELATION_TYPES 16 种,含 plot_edge/plants/advances/resolves);metadata 可选
|
|
212
|
-
*/
|
|
213
|
-
export declare const proposeAddRelationArgsSchema: z.ZodObject<{
|
|
214
|
-
source: z.ZodString;
|
|
215
|
-
target: z.ZodString;
|
|
216
|
-
type: z.ZodEnum<{
|
|
217
|
-
belongs_to: "belongs_to";
|
|
218
|
-
owns: "owns";
|
|
219
|
-
masters: "masters";
|
|
220
|
-
ally: "ally";
|
|
221
|
-
rival: "rival";
|
|
222
|
-
mentor: "mentor";
|
|
223
|
-
family: "family";
|
|
224
|
-
kills: "kills";
|
|
225
|
-
appears_in: "appears_in";
|
|
226
|
-
occurs_at: "occurs_at";
|
|
227
|
-
plot_edge: "plot_edge";
|
|
228
|
-
plants: "plants";
|
|
229
|
-
advances: "advances";
|
|
230
|
-
resolves: "resolves";
|
|
231
|
-
depends_on: "depends_on";
|
|
232
|
-
involves: "involves";
|
|
233
|
-
occurs_in: "occurs_in";
|
|
234
|
-
}>;
|
|
235
|
-
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
236
|
-
}, z.core.$strict>;
|
|
237
|
-
export type ProposeAddRelationArgs = z.infer<typeof proposeAddRelationArgsSchema>;
|
|
238
|
-
/** 入参:relation_id(手动删关系 = 物理删,不进回收站) */
|
|
239
|
-
export declare const proposeRemoveRelationArgsSchema: z.ZodObject<{
|
|
240
|
-
relation_id: z.ZodString;
|
|
241
|
-
}, z.core.$strict>;
|
|
242
|
-
export type ProposeRemoveRelationArgs = z.infer<typeof proposeRemoveRelationArgsSchema>;
|
|
243
|
-
/** 入参:node_id(触发节点)+ target(变更目标 id,实体或大纲节点)+ changes(至少一项,复用 deltaChangeSchema) */
|
|
244
|
-
export declare const proposeAddDeltaArgsSchema: z.ZodObject<{
|
|
245
|
-
node_id: z.ZodString;
|
|
246
|
-
target: z.ZodString;
|
|
247
|
-
changes: z.ZodArray<z.ZodObject<{
|
|
248
|
-
field: z.ZodString;
|
|
249
|
-
op: z.ZodEnum<{
|
|
250
|
-
set: "set";
|
|
251
|
-
update: "update";
|
|
252
|
-
add: "add";
|
|
253
|
-
remove: "remove";
|
|
254
|
-
}>;
|
|
255
|
-
from: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
256
|
-
to: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
257
|
-
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
258
|
-
}, z.core.$strip>>;
|
|
259
|
-
}, z.core.$strict>;
|
|
260
|
-
export type ProposeAddDeltaArgs = z.infer<typeof proposeAddDeltaArgsSchema>;
|
|
261
|
-
/** 入参:type(volume|chapter|scene)+ title + parent_id(缺省挂根;scene 必须挂 chapter) */
|
|
262
|
-
export declare const proposeOutlineNodeArgsSchema: z.ZodObject<{
|
|
263
|
-
type: z.ZodEnum<{
|
|
264
|
-
volume: "volume";
|
|
265
|
-
chapter: "chapter";
|
|
266
|
-
scene: "scene";
|
|
267
|
-
}>;
|
|
268
|
-
title: z.ZodString;
|
|
269
|
-
parent_id: z.ZodOptional<z.ZodString>;
|
|
270
|
-
}, z.core.$strict>;
|
|
271
|
-
export type ProposeOutlineNodeArgs = z.infer<typeof proposeOutlineNodeArgsSchema>;
|
|
272
|
-
/**
|
|
273
|
-
* 入参:node_id + parent_id(目标父节点,**可为 "root"**—— 允许 volume/chapter 挂根,
|
|
274
|
-
* db moveOutlineNode 支持 parentId === "root")+ order(目标位置,0 起)。
|
|
275
|
-
* order 无范围上限:超出目标父 children 长度的行为(clamp 或抛错)由 S6.7/db 执行时定义,
|
|
276
|
-
* 生成时校验不做上限(提案只承载意图,合法性由执行层兜底)。
|
|
277
|
-
*/
|
|
278
|
-
export declare const proposeMoveNodeArgsSchema: z.ZodObject<{
|
|
279
|
-
node_id: z.ZodString;
|
|
280
|
-
parent_id: z.ZodString;
|
|
281
|
-
order: z.ZodNumber;
|
|
282
|
-
}, z.core.$strict>;
|
|
283
|
-
export type ProposeMoveNodeArgs = z.infer<typeof proposeMoveNodeArgsSchema>;
|
|
284
|
-
/** 入参:node_id(软删 + 递归子树,可回收站还原) */
|
|
285
|
-
export declare const proposeDeleteNodeArgsSchema: z.ZodObject<{
|
|
286
|
-
node_id: z.ZodString;
|
|
287
|
-
}, z.core.$strict>;
|
|
288
|
-
export type ProposeDeleteNodeArgs = z.infer<typeof proposeDeleteNodeArgsSchema>;
|
|
289
|
-
/** 入参:name + data(可选伏笔字段,如 payoff_timing/half_life/expected_resolve_node_id)+ plant_at_node_id(可选埋设节点) */
|
|
290
|
-
export declare const proposeCreateHookArgsSchema: z.ZodObject<{
|
|
291
|
-
name: z.ZodString;
|
|
292
|
-
data: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
293
|
-
plant_at_node_id: z.ZodOptional<z.ZodString>;
|
|
294
|
-
}, z.core.$strict>;
|
|
295
|
-
export type ProposeCreateHookArgs = z.infer<typeof proposeCreateHookArgsSchema>;
|
|
296
|
-
/** 入参:hook_id + patches(data 部分字段,至少一项);快照校验基于伏笔实体自身 updated_at */
|
|
297
|
-
export declare const proposeUpdateHookArgsSchema: z.ZodObject<{
|
|
298
|
-
hook_id: z.ZodString;
|
|
299
|
-
patches: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
300
|
-
}, z.core.$strict>;
|
|
301
|
-
export type ProposeUpdateHookArgs = z.infer<typeof proposeUpdateHookArgsSchema>;
|
|
302
|
-
/** 入参:hook_id + node_id(推进发生的节点)+ description(推进内容描述;确认后复合写 delta+relations,) */
|
|
303
|
-
export declare const proposeAdvanceHookArgsSchema: z.ZodObject<{
|
|
304
|
-
hook_id: z.ZodString;
|
|
305
|
-
node_id: z.ZodString;
|
|
306
|
-
description: z.ZodString;
|
|
307
|
-
}, z.core.$strict>;
|
|
308
|
-
export type ProposeAdvanceHookArgs = z.infer<typeof proposeAdvanceHookArgsSchema>;
|
|
309
|
-
/** 入参:hook_id + node_id(回收节点)+ description(回收内容描述;确认后复合写 delta+relations,) */
|
|
310
|
-
export declare const proposeResolveHookArgsSchema: z.ZodObject<{
|
|
311
|
-
hook_id: z.ZodString;
|
|
312
|
-
node_id: z.ZodString;
|
|
313
|
-
description: z.ZodString;
|
|
314
|
-
}, z.core.$strict>;
|
|
315
|
-
export type ProposeResolveHookArgs = z.infer<typeof proposeResolveHookArgsSchema>;
|
|
316
|
-
/** 入参:hook_id + description(废弃原因;确认后复合写 delta 记 status=abandoned,) */
|
|
317
|
-
export declare const proposeAbandonHookArgsSchema: z.ZodObject<{
|
|
318
|
-
hook_id: z.ZodString;
|
|
319
|
-
description: z.ZodString;
|
|
320
|
-
}, z.core.$strict>;
|
|
321
|
-
export type ProposeAbandonHookArgs = z.infer<typeof proposeAbandonHookArgsSchema>;
|
|
322
|
-
/**
|
|
323
|
-
* 入参:timepoint_ids——LLM 按时间点 name(时间标签文本)语义识别先后后产出的
|
|
324
|
-
* **有序时间点 id 全量序列**(顺序 = 建议新序,须覆盖当前全部未软删时间点,缺/多/重复
|
|
325
|
-
* 由生成时校验拒绝);200 = 时间点量上限,与列表 limit 对齐( )。
|
|
326
|
-
* G2 取代 F9 的 propose_reorder_events:事件不再带 time_label,语义序的载体变为时间点实体
|
|
327
|
-
*/
|
|
328
|
-
export declare const proposeReorderTimepointsArgsSchema: z.ZodObject<{
|
|
329
|
-
timepoint_ids: z.ZodArray<z.ZodString>;
|
|
330
|
-
}, z.core.$strict>;
|
|
331
|
-
export type ProposeReorderTimepointsArgs = z.infer<typeof proposeReorderTimepointsArgsSchema>;
|
|
332
|
-
/**
|
|
333
|
-
* search_references 入参:query 关键词(标题+tags 命中)+ 可选 type 分类过滤(自由文本,
|
|
334
|
-
* 原预置枚举已取消,建议沿用项目内已有分类)+ 可选 tags 过滤。
|
|
335
|
-
* 返回摘要列表(content 摘要截断 120 字由 db toSummary 承担——全文长文本不随列表返回,防 token 膨胀)
|
|
336
|
-
*/
|
|
337
|
-
export declare const searchReferencesArgsSchema: z.ZodObject<{
|
|
338
|
-
query: z.ZodString;
|
|
339
|
-
type: z.ZodOptional<z.ZodString>;
|
|
340
|
-
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
341
|
-
}, z.core.$strict>;
|
|
342
|
-
export type SearchReferencesArgs = z.infer<typeof searchReferencesArgsSchema>;
|
|
343
|
-
/**
|
|
344
|
-
* 入参:name 标题(必填)+ type 分类(自由文本,原枚举已取消,建议沿用项目内已有分类,
|
|
345
|
-
* 缺省 material 写入侧兜底)+ content 全文长文本 +
|
|
346
|
-
* source 来源(可选)+ tags 标签数组(可选)。无引用对象(新实体 id 由执行时生成)。
|
|
347
|
-
*/
|
|
348
|
-
export declare const proposeCreateReferenceArgsSchema: z.ZodObject<{
|
|
349
|
-
name: z.ZodString;
|
|
350
|
-
type: z.ZodOptional<z.ZodString>;
|
|
351
|
-
content: z.ZodOptional<z.ZodString>;
|
|
352
|
-
source: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
353
|
-
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
354
|
-
}, z.core.$strict>;
|
|
355
|
-
export type ProposeCreateReferenceArgs = z.infer<typeof proposeCreateReferenceArgsSchema>;
|
|
356
|
-
//# sourceMappingURL=tool.d.ts.map
|
package/dist/types/tool.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"tool.d.ts","sourceRoot":"","sources":["../../src/types/tool.ts"],"names":[],"mappings":"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"}
|