mobbdev 1.1.35 → 1.1.37
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.
|
@@ -54,18 +54,26 @@ declare const PromptItemZ: z.ZodObject<{
|
|
|
54
54
|
name: string;
|
|
55
55
|
parameters: string;
|
|
56
56
|
result: string;
|
|
57
|
-
rawArguments?: string | undefined;
|
|
58
57
|
accepted?: boolean | undefined;
|
|
58
|
+
rawArguments?: string | undefined;
|
|
59
59
|
}, {
|
|
60
60
|
name: string;
|
|
61
61
|
parameters: string;
|
|
62
62
|
result: string;
|
|
63
|
-
rawArguments?: string | undefined;
|
|
64
63
|
accepted?: boolean | undefined;
|
|
64
|
+
rawArguments?: string | undefined;
|
|
65
65
|
}>>;
|
|
66
66
|
}, "strip", z.ZodTypeAny, {
|
|
67
67
|
type: "USER_PROMPT" | "AI_RESPONSE" | "TOOL_EXECUTION" | "AI_THINKING";
|
|
68
|
+
tool?: {
|
|
69
|
+
name: string;
|
|
70
|
+
parameters: string;
|
|
71
|
+
result: string;
|
|
72
|
+
accepted?: boolean | undefined;
|
|
73
|
+
rawArguments?: string | undefined;
|
|
74
|
+
} | undefined;
|
|
68
75
|
date?: Date | undefined;
|
|
76
|
+
text?: string | undefined;
|
|
69
77
|
attachedFiles?: {
|
|
70
78
|
relativePath: string;
|
|
71
79
|
startLine?: number | undefined;
|
|
@@ -74,17 +82,17 @@ declare const PromptItemZ: z.ZodObject<{
|
|
|
74
82
|
inputCount: number;
|
|
75
83
|
outputCount: number;
|
|
76
84
|
} | undefined;
|
|
77
|
-
|
|
85
|
+
}, {
|
|
86
|
+
type: "USER_PROMPT" | "AI_RESPONSE" | "TOOL_EXECUTION" | "AI_THINKING";
|
|
78
87
|
tool?: {
|
|
79
88
|
name: string;
|
|
80
89
|
parameters: string;
|
|
81
90
|
result: string;
|
|
82
|
-
rawArguments?: string | undefined;
|
|
83
91
|
accepted?: boolean | undefined;
|
|
92
|
+
rawArguments?: string | undefined;
|
|
84
93
|
} | undefined;
|
|
85
|
-
}, {
|
|
86
|
-
type: "USER_PROMPT" | "AI_RESPONSE" | "TOOL_EXECUTION" | "AI_THINKING";
|
|
87
94
|
date?: Date | undefined;
|
|
95
|
+
text?: string | undefined;
|
|
88
96
|
attachedFiles?: {
|
|
89
97
|
relativePath: string;
|
|
90
98
|
startLine?: number | undefined;
|
|
@@ -93,14 +101,6 @@ declare const PromptItemZ: z.ZodObject<{
|
|
|
93
101
|
inputCount: number;
|
|
94
102
|
outputCount: number;
|
|
95
103
|
} | undefined;
|
|
96
|
-
text?: string | undefined;
|
|
97
|
-
tool?: {
|
|
98
|
-
name: string;
|
|
99
|
-
parameters: string;
|
|
100
|
-
result: string;
|
|
101
|
-
rawArguments?: string | undefined;
|
|
102
|
-
accepted?: boolean | undefined;
|
|
103
|
-
} | undefined;
|
|
104
104
|
}>;
|
|
105
105
|
type PromptItem = z.infer<typeof PromptItemZ>;
|
|
106
106
|
declare const PromptItemArrayZ: z.ZodArray<z.ZodObject<{
|
|
@@ -137,18 +137,26 @@ declare const PromptItemArrayZ: z.ZodArray<z.ZodObject<{
|
|
|
137
137
|
name: string;
|
|
138
138
|
parameters: string;
|
|
139
139
|
result: string;
|
|
140
|
-
rawArguments?: string | undefined;
|
|
141
140
|
accepted?: boolean | undefined;
|
|
141
|
+
rawArguments?: string | undefined;
|
|
142
142
|
}, {
|
|
143
143
|
name: string;
|
|
144
144
|
parameters: string;
|
|
145
145
|
result: string;
|
|
146
|
-
rawArguments?: string | undefined;
|
|
147
146
|
accepted?: boolean | undefined;
|
|
147
|
+
rawArguments?: string | undefined;
|
|
148
148
|
}>>;
|
|
149
149
|
}, "strip", z.ZodTypeAny, {
|
|
150
150
|
type: "USER_PROMPT" | "AI_RESPONSE" | "TOOL_EXECUTION" | "AI_THINKING";
|
|
151
|
+
tool?: {
|
|
152
|
+
name: string;
|
|
153
|
+
parameters: string;
|
|
154
|
+
result: string;
|
|
155
|
+
accepted?: boolean | undefined;
|
|
156
|
+
rawArguments?: string | undefined;
|
|
157
|
+
} | undefined;
|
|
151
158
|
date?: Date | undefined;
|
|
159
|
+
text?: string | undefined;
|
|
152
160
|
attachedFiles?: {
|
|
153
161
|
relativePath: string;
|
|
154
162
|
startLine?: number | undefined;
|
|
@@ -157,17 +165,17 @@ declare const PromptItemArrayZ: z.ZodArray<z.ZodObject<{
|
|
|
157
165
|
inputCount: number;
|
|
158
166
|
outputCount: number;
|
|
159
167
|
} | undefined;
|
|
160
|
-
|
|
168
|
+
}, {
|
|
169
|
+
type: "USER_PROMPT" | "AI_RESPONSE" | "TOOL_EXECUTION" | "AI_THINKING";
|
|
161
170
|
tool?: {
|
|
162
171
|
name: string;
|
|
163
172
|
parameters: string;
|
|
164
173
|
result: string;
|
|
165
|
-
rawArguments?: string | undefined;
|
|
166
174
|
accepted?: boolean | undefined;
|
|
175
|
+
rawArguments?: string | undefined;
|
|
167
176
|
} | undefined;
|
|
168
|
-
}, {
|
|
169
|
-
type: "USER_PROMPT" | "AI_RESPONSE" | "TOOL_EXECUTION" | "AI_THINKING";
|
|
170
177
|
date?: Date | undefined;
|
|
178
|
+
text?: string | undefined;
|
|
171
179
|
attachedFiles?: {
|
|
172
180
|
relativePath: string;
|
|
173
181
|
startLine?: number | undefined;
|
|
@@ -176,14 +184,6 @@ declare const PromptItemArrayZ: z.ZodArray<z.ZodObject<{
|
|
|
176
184
|
inputCount: number;
|
|
177
185
|
outputCount: number;
|
|
178
186
|
} | undefined;
|
|
179
|
-
text?: string | undefined;
|
|
180
|
-
tool?: {
|
|
181
|
-
name: string;
|
|
182
|
-
parameters: string;
|
|
183
|
-
result: string;
|
|
184
|
-
rawArguments?: string | undefined;
|
|
185
|
-
accepted?: boolean | undefined;
|
|
186
|
-
} | undefined;
|
|
187
187
|
}>, "many">;
|
|
188
188
|
type PromptItemArray = z.infer<typeof PromptItemArrayZ>;
|
|
189
189
|
type UploadAiBlameOptions = {
|