@inkeep/agents-core 0.73.3 → 0.73.5

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.
Files changed (35) hide show
  1. package/dist/auth/permissions.d.ts +9 -9
  2. package/dist/constants/models.d.ts +3 -0
  3. package/dist/constants/models.js +3 -0
  4. package/dist/data-access/manage/agents.d.ts +21 -21
  5. package/dist/data-access/manage/artifactComponents.d.ts +12 -12
  6. package/dist/data-access/manage/contextConfigs.d.ts +12 -12
  7. package/dist/data-access/manage/dataComponents.d.ts +6 -6
  8. package/dist/data-access/manage/functionTools.d.ts +18 -18
  9. package/dist/data-access/manage/skills.d.ts +15 -15
  10. package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +24 -24
  11. package/dist/data-access/manage/subAgentRelations.d.ts +30 -30
  12. package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +24 -24
  13. package/dist/data-access/manage/subAgents.d.ts +15 -15
  14. package/dist/data-access/manage/tools.d.ts +27 -27
  15. package/dist/data-access/manage/triggers.d.ts +5 -5
  16. package/dist/data-access/runtime/apiKeys.d.ts +12 -12
  17. package/dist/data-access/runtime/apps.d.ts +8 -8
  18. package/dist/data-access/runtime/conversations.d.ts +24 -24
  19. package/dist/data-access/runtime/events.d.ts +5 -5
  20. package/dist/data-access/runtime/feedback.d.ts +6 -6
  21. package/dist/data-access/runtime/messages.d.ts +15 -15
  22. package/dist/data-access/runtime/scheduledTriggerUsers.d.ts +1 -1
  23. package/dist/data-access/runtime/tasks.d.ts +6 -6
  24. package/dist/db/manage/manage-client.js +3 -0
  25. package/dist/db/manage/manage-schema.d.ts +4 -4
  26. package/dist/db/runtime/runtime-client.js +2 -0
  27. package/dist/db/runtime/runtime-schema.d.ts +2 -2
  28. package/dist/types/@vercel__functions/index.d.ts +3 -3
  29. package/dist/utils/database-pool.d.ts +8 -0
  30. package/dist/utils/database-pool.js +36 -0
  31. package/dist/utils/error.d.ts +51 -51
  32. package/dist/validation/drizzle-schema-helpers.d.ts +3 -3
  33. package/dist/validation/schemas/skills.d.ts +37 -37
  34. package/dist/validation/schemas.d.ts +516 -516
  35. package/package.json +2 -2
@@ -9,8 +9,8 @@ import { HTTPException } from "hono/http-exception";
9
9
  */
10
10
  declare function getDatabaseErrorLogContext(error: unknown): Record<string, unknown>;
11
11
  declare const ErrorCode: z.ZodEnum<{
12
- bad_request: "bad_request";
13
12
  unauthorized: "unauthorized";
13
+ bad_request: "bad_request";
14
14
  payment_required: "payment_required";
15
15
  forbidden: "forbidden";
16
16
  not_found: "not_found";
@@ -27,8 +27,8 @@ declare const problemDetailsSchema: z.ZodObject<{
27
27
  instance: z.ZodOptional<z.ZodString>;
28
28
  requestId: z.ZodOptional<z.ZodString>;
29
29
  code: z.ZodEnum<{
30
- bad_request: "bad_request";
31
30
  unauthorized: "unauthorized";
31
+ bad_request: "bad_request";
32
32
  payment_required: "payment_required";
33
33
  forbidden: "forbidden";
34
34
  not_found: "not_found";
@@ -43,8 +43,8 @@ type ErrorCodes = z.infer<typeof ErrorCode>;
43
43
  declare const errorResponseSchema: z.ZodObject<{
44
44
  error: z.ZodObject<{
45
45
  code: z.ZodEnum<{
46
- bad_request: "bad_request";
47
46
  unauthorized: "unauthorized";
47
+ bad_request: "bad_request";
48
48
  payment_required: "payment_required";
49
49
  forbidden: "forbidden";
50
50
  not_found: "not_found";
@@ -83,12 +83,12 @@ declare const errorSchemaFactory: (code: ErrorCodes, description: string) => {
83
83
  schema: z.ZodObject<{
84
84
  instance: z.ZodOptional<z.ZodString>;
85
85
  requestId: z.ZodOptional<z.ZodString>;
86
- code: z.ZodLiteral<"bad_request" | "unauthorized" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
86
+ code: z.ZodLiteral<"unauthorized" | "bad_request" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
87
87
  detail: z.ZodString;
88
88
  title: z.ZodString;
89
89
  status: z.ZodNumber;
90
90
  error: z.ZodObject<{
91
- code: z.ZodLiteral<"bad_request" | "unauthorized" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
91
+ code: z.ZodLiteral<"unauthorized" | "bad_request" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
92
92
  message: z.ZodString;
93
93
  }, z.core.$strip>;
94
94
  }, z.core.$strip>;
@@ -105,12 +105,12 @@ declare const commonCreateErrorResponses: {
105
105
  schema: z.ZodObject<{
106
106
  instance: z.ZodOptional<z.ZodString>;
107
107
  requestId: z.ZodOptional<z.ZodString>;
108
- code: z.ZodLiteral<"bad_request" | "unauthorized" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
108
+ code: z.ZodLiteral<"unauthorized" | "bad_request" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
109
109
  detail: z.ZodString;
110
110
  title: z.ZodString;
111
111
  status: z.ZodNumber;
112
112
  error: z.ZodObject<{
113
- code: z.ZodLiteral<"bad_request" | "unauthorized" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
113
+ code: z.ZodLiteral<"unauthorized" | "bad_request" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
114
114
  message: z.ZodString;
115
115
  }, z.core.$strip>;
116
116
  }, z.core.$strip>;
@@ -124,12 +124,12 @@ declare const commonCreateErrorResponses: {
124
124
  schema: z.ZodObject<{
125
125
  instance: z.ZodOptional<z.ZodString>;
126
126
  requestId: z.ZodOptional<z.ZodString>;
127
- code: z.ZodLiteral<"bad_request" | "unauthorized" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
127
+ code: z.ZodLiteral<"unauthorized" | "bad_request" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
128
128
  detail: z.ZodString;
129
129
  title: z.ZodString;
130
130
  status: z.ZodNumber;
131
131
  error: z.ZodObject<{
132
- code: z.ZodLiteral<"bad_request" | "unauthorized" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
132
+ code: z.ZodLiteral<"unauthorized" | "bad_request" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
133
133
  message: z.ZodString;
134
134
  }, z.core.$strip>;
135
135
  }, z.core.$strip>;
@@ -143,12 +143,12 @@ declare const commonCreateErrorResponses: {
143
143
  schema: z.ZodObject<{
144
144
  instance: z.ZodOptional<z.ZodString>;
145
145
  requestId: z.ZodOptional<z.ZodString>;
146
- code: z.ZodLiteral<"bad_request" | "unauthorized" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
146
+ code: z.ZodLiteral<"unauthorized" | "bad_request" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
147
147
  detail: z.ZodString;
148
148
  title: z.ZodString;
149
149
  status: z.ZodNumber;
150
150
  error: z.ZodObject<{
151
- code: z.ZodLiteral<"bad_request" | "unauthorized" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
151
+ code: z.ZodLiteral<"unauthorized" | "bad_request" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
152
152
  message: z.ZodString;
153
153
  }, z.core.$strip>;
154
154
  }, z.core.$strip>;
@@ -162,12 +162,12 @@ declare const commonCreateErrorResponses: {
162
162
  schema: z.ZodObject<{
163
163
  instance: z.ZodOptional<z.ZodString>;
164
164
  requestId: z.ZodOptional<z.ZodString>;
165
- code: z.ZodLiteral<"bad_request" | "unauthorized" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
165
+ code: z.ZodLiteral<"unauthorized" | "bad_request" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
166
166
  detail: z.ZodString;
167
167
  title: z.ZodString;
168
168
  status: z.ZodNumber;
169
169
  error: z.ZodObject<{
170
- code: z.ZodLiteral<"bad_request" | "unauthorized" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
170
+ code: z.ZodLiteral<"unauthorized" | "bad_request" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
171
171
  message: z.ZodString;
172
172
  }, z.core.$strip>;
173
173
  }, z.core.$strip>;
@@ -181,12 +181,12 @@ declare const commonCreateErrorResponses: {
181
181
  schema: z.ZodObject<{
182
182
  instance: z.ZodOptional<z.ZodString>;
183
183
  requestId: z.ZodOptional<z.ZodString>;
184
- code: z.ZodLiteral<"bad_request" | "unauthorized" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
184
+ code: z.ZodLiteral<"unauthorized" | "bad_request" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
185
185
  detail: z.ZodString;
186
186
  title: z.ZodString;
187
187
  status: z.ZodNumber;
188
188
  error: z.ZodObject<{
189
- code: z.ZodLiteral<"bad_request" | "unauthorized" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
189
+ code: z.ZodLiteral<"unauthorized" | "bad_request" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
190
190
  message: z.ZodString;
191
191
  }, z.core.$strip>;
192
192
  }, z.core.$strip>;
@@ -202,12 +202,12 @@ declare const commonUpdateErrorResponses: {
202
202
  schema: z.ZodObject<{
203
203
  instance: z.ZodOptional<z.ZodString>;
204
204
  requestId: z.ZodOptional<z.ZodString>;
205
- code: z.ZodLiteral<"bad_request" | "unauthorized" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
205
+ code: z.ZodLiteral<"unauthorized" | "bad_request" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
206
206
  detail: z.ZodString;
207
207
  title: z.ZodString;
208
208
  status: z.ZodNumber;
209
209
  error: z.ZodObject<{
210
- code: z.ZodLiteral<"bad_request" | "unauthorized" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
210
+ code: z.ZodLiteral<"unauthorized" | "bad_request" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
211
211
  message: z.ZodString;
212
212
  }, z.core.$strip>;
213
213
  }, z.core.$strip>;
@@ -221,12 +221,12 @@ declare const commonUpdateErrorResponses: {
221
221
  schema: z.ZodObject<{
222
222
  instance: z.ZodOptional<z.ZodString>;
223
223
  requestId: z.ZodOptional<z.ZodString>;
224
- code: z.ZodLiteral<"bad_request" | "unauthorized" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
224
+ code: z.ZodLiteral<"unauthorized" | "bad_request" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
225
225
  detail: z.ZodString;
226
226
  title: z.ZodString;
227
227
  status: z.ZodNumber;
228
228
  error: z.ZodObject<{
229
- code: z.ZodLiteral<"bad_request" | "unauthorized" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
229
+ code: z.ZodLiteral<"unauthorized" | "bad_request" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
230
230
  message: z.ZodString;
231
231
  }, z.core.$strip>;
232
232
  }, z.core.$strip>;
@@ -240,12 +240,12 @@ declare const commonUpdateErrorResponses: {
240
240
  schema: z.ZodObject<{
241
241
  instance: z.ZodOptional<z.ZodString>;
242
242
  requestId: z.ZodOptional<z.ZodString>;
243
- code: z.ZodLiteral<"bad_request" | "unauthorized" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
243
+ code: z.ZodLiteral<"unauthorized" | "bad_request" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
244
244
  detail: z.ZodString;
245
245
  title: z.ZodString;
246
246
  status: z.ZodNumber;
247
247
  error: z.ZodObject<{
248
- code: z.ZodLiteral<"bad_request" | "unauthorized" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
248
+ code: z.ZodLiteral<"unauthorized" | "bad_request" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
249
249
  message: z.ZodString;
250
250
  }, z.core.$strip>;
251
251
  }, z.core.$strip>;
@@ -259,12 +259,12 @@ declare const commonUpdateErrorResponses: {
259
259
  schema: z.ZodObject<{
260
260
  instance: z.ZodOptional<z.ZodString>;
261
261
  requestId: z.ZodOptional<z.ZodString>;
262
- code: z.ZodLiteral<"bad_request" | "unauthorized" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
262
+ code: z.ZodLiteral<"unauthorized" | "bad_request" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
263
263
  detail: z.ZodString;
264
264
  title: z.ZodString;
265
265
  status: z.ZodNumber;
266
266
  error: z.ZodObject<{
267
- code: z.ZodLiteral<"bad_request" | "unauthorized" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
267
+ code: z.ZodLiteral<"unauthorized" | "bad_request" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
268
268
  message: z.ZodString;
269
269
  }, z.core.$strip>;
270
270
  }, z.core.$strip>;
@@ -278,12 +278,12 @@ declare const commonUpdateErrorResponses: {
278
278
  schema: z.ZodObject<{
279
279
  instance: z.ZodOptional<z.ZodString>;
280
280
  requestId: z.ZodOptional<z.ZodString>;
281
- code: z.ZodLiteral<"bad_request" | "unauthorized" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
281
+ code: z.ZodLiteral<"unauthorized" | "bad_request" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
282
282
  detail: z.ZodString;
283
283
  title: z.ZodString;
284
284
  status: z.ZodNumber;
285
285
  error: z.ZodObject<{
286
- code: z.ZodLiteral<"bad_request" | "unauthorized" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
286
+ code: z.ZodLiteral<"unauthorized" | "bad_request" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
287
287
  message: z.ZodString;
288
288
  }, z.core.$strip>;
289
289
  }, z.core.$strip>;
@@ -297,12 +297,12 @@ declare const commonUpdateErrorResponses: {
297
297
  schema: z.ZodObject<{
298
298
  instance: z.ZodOptional<z.ZodString>;
299
299
  requestId: z.ZodOptional<z.ZodString>;
300
- code: z.ZodLiteral<"bad_request" | "unauthorized" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
300
+ code: z.ZodLiteral<"unauthorized" | "bad_request" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
301
301
  detail: z.ZodString;
302
302
  title: z.ZodString;
303
303
  status: z.ZodNumber;
304
304
  error: z.ZodObject<{
305
- code: z.ZodLiteral<"bad_request" | "unauthorized" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
305
+ code: z.ZodLiteral<"unauthorized" | "bad_request" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
306
306
  message: z.ZodString;
307
307
  }, z.core.$strip>;
308
308
  }, z.core.$strip>;
@@ -318,12 +318,12 @@ declare const commonGetErrorResponses: {
318
318
  schema: z.ZodObject<{
319
319
  instance: z.ZodOptional<z.ZodString>;
320
320
  requestId: z.ZodOptional<z.ZodString>;
321
- code: z.ZodLiteral<"bad_request" | "unauthorized" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
321
+ code: z.ZodLiteral<"unauthorized" | "bad_request" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
322
322
  detail: z.ZodString;
323
323
  title: z.ZodString;
324
324
  status: z.ZodNumber;
325
325
  error: z.ZodObject<{
326
- code: z.ZodLiteral<"bad_request" | "unauthorized" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
326
+ code: z.ZodLiteral<"unauthorized" | "bad_request" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
327
327
  message: z.ZodString;
328
328
  }, z.core.$strip>;
329
329
  }, z.core.$strip>;
@@ -337,12 +337,12 @@ declare const commonGetErrorResponses: {
337
337
  schema: z.ZodObject<{
338
338
  instance: z.ZodOptional<z.ZodString>;
339
339
  requestId: z.ZodOptional<z.ZodString>;
340
- code: z.ZodLiteral<"bad_request" | "unauthorized" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
340
+ code: z.ZodLiteral<"unauthorized" | "bad_request" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
341
341
  detail: z.ZodString;
342
342
  title: z.ZodString;
343
343
  status: z.ZodNumber;
344
344
  error: z.ZodObject<{
345
- code: z.ZodLiteral<"bad_request" | "unauthorized" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
345
+ code: z.ZodLiteral<"unauthorized" | "bad_request" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
346
346
  message: z.ZodString;
347
347
  }, z.core.$strip>;
348
348
  }, z.core.$strip>;
@@ -356,12 +356,12 @@ declare const commonGetErrorResponses: {
356
356
  schema: z.ZodObject<{
357
357
  instance: z.ZodOptional<z.ZodString>;
358
358
  requestId: z.ZodOptional<z.ZodString>;
359
- code: z.ZodLiteral<"bad_request" | "unauthorized" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
359
+ code: z.ZodLiteral<"unauthorized" | "bad_request" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
360
360
  detail: z.ZodString;
361
361
  title: z.ZodString;
362
362
  status: z.ZodNumber;
363
363
  error: z.ZodObject<{
364
- code: z.ZodLiteral<"bad_request" | "unauthorized" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
364
+ code: z.ZodLiteral<"unauthorized" | "bad_request" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
365
365
  message: z.ZodString;
366
366
  }, z.core.$strip>;
367
367
  }, z.core.$strip>;
@@ -375,12 +375,12 @@ declare const commonGetErrorResponses: {
375
375
  schema: z.ZodObject<{
376
376
  instance: z.ZodOptional<z.ZodString>;
377
377
  requestId: z.ZodOptional<z.ZodString>;
378
- code: z.ZodLiteral<"bad_request" | "unauthorized" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
378
+ code: z.ZodLiteral<"unauthorized" | "bad_request" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
379
379
  detail: z.ZodString;
380
380
  title: z.ZodString;
381
381
  status: z.ZodNumber;
382
382
  error: z.ZodObject<{
383
- code: z.ZodLiteral<"bad_request" | "unauthorized" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
383
+ code: z.ZodLiteral<"unauthorized" | "bad_request" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
384
384
  message: z.ZodString;
385
385
  }, z.core.$strip>;
386
386
  }, z.core.$strip>;
@@ -394,12 +394,12 @@ declare const commonGetErrorResponses: {
394
394
  schema: z.ZodObject<{
395
395
  instance: z.ZodOptional<z.ZodString>;
396
396
  requestId: z.ZodOptional<z.ZodString>;
397
- code: z.ZodLiteral<"bad_request" | "unauthorized" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
397
+ code: z.ZodLiteral<"unauthorized" | "bad_request" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
398
398
  detail: z.ZodString;
399
399
  title: z.ZodString;
400
400
  status: z.ZodNumber;
401
401
  error: z.ZodObject<{
402
- code: z.ZodLiteral<"bad_request" | "unauthorized" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
402
+ code: z.ZodLiteral<"unauthorized" | "bad_request" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
403
403
  message: z.ZodString;
404
404
  }, z.core.$strip>;
405
405
  }, z.core.$strip>;
@@ -413,12 +413,12 @@ declare const commonGetErrorResponses: {
413
413
  schema: z.ZodObject<{
414
414
  instance: z.ZodOptional<z.ZodString>;
415
415
  requestId: z.ZodOptional<z.ZodString>;
416
- code: z.ZodLiteral<"bad_request" | "unauthorized" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
416
+ code: z.ZodLiteral<"unauthorized" | "bad_request" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
417
417
  detail: z.ZodString;
418
418
  title: z.ZodString;
419
419
  status: z.ZodNumber;
420
420
  error: z.ZodObject<{
421
- code: z.ZodLiteral<"bad_request" | "unauthorized" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
421
+ code: z.ZodLiteral<"unauthorized" | "bad_request" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
422
422
  message: z.ZodString;
423
423
  }, z.core.$strip>;
424
424
  }, z.core.$strip>;
@@ -434,12 +434,12 @@ declare const commonDeleteErrorResponses: {
434
434
  schema: z.ZodObject<{
435
435
  instance: z.ZodOptional<z.ZodString>;
436
436
  requestId: z.ZodOptional<z.ZodString>;
437
- code: z.ZodLiteral<"bad_request" | "unauthorized" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
437
+ code: z.ZodLiteral<"unauthorized" | "bad_request" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
438
438
  detail: z.ZodString;
439
439
  title: z.ZodString;
440
440
  status: z.ZodNumber;
441
441
  error: z.ZodObject<{
442
- code: z.ZodLiteral<"bad_request" | "unauthorized" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
442
+ code: z.ZodLiteral<"unauthorized" | "bad_request" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
443
443
  message: z.ZodString;
444
444
  }, z.core.$strip>;
445
445
  }, z.core.$strip>;
@@ -453,12 +453,12 @@ declare const commonDeleteErrorResponses: {
453
453
  schema: z.ZodObject<{
454
454
  instance: z.ZodOptional<z.ZodString>;
455
455
  requestId: z.ZodOptional<z.ZodString>;
456
- code: z.ZodLiteral<"bad_request" | "unauthorized" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
456
+ code: z.ZodLiteral<"unauthorized" | "bad_request" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
457
457
  detail: z.ZodString;
458
458
  title: z.ZodString;
459
459
  status: z.ZodNumber;
460
460
  error: z.ZodObject<{
461
- code: z.ZodLiteral<"bad_request" | "unauthorized" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
461
+ code: z.ZodLiteral<"unauthorized" | "bad_request" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
462
462
  message: z.ZodString;
463
463
  }, z.core.$strip>;
464
464
  }, z.core.$strip>;
@@ -472,12 +472,12 @@ declare const commonDeleteErrorResponses: {
472
472
  schema: z.ZodObject<{
473
473
  instance: z.ZodOptional<z.ZodString>;
474
474
  requestId: z.ZodOptional<z.ZodString>;
475
- code: z.ZodLiteral<"bad_request" | "unauthorized" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
475
+ code: z.ZodLiteral<"unauthorized" | "bad_request" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
476
476
  detail: z.ZodString;
477
477
  title: z.ZodString;
478
478
  status: z.ZodNumber;
479
479
  error: z.ZodObject<{
480
- code: z.ZodLiteral<"bad_request" | "unauthorized" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
480
+ code: z.ZodLiteral<"unauthorized" | "bad_request" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
481
481
  message: z.ZodString;
482
482
  }, z.core.$strip>;
483
483
  }, z.core.$strip>;
@@ -491,12 +491,12 @@ declare const commonDeleteErrorResponses: {
491
491
  schema: z.ZodObject<{
492
492
  instance: z.ZodOptional<z.ZodString>;
493
493
  requestId: z.ZodOptional<z.ZodString>;
494
- code: z.ZodLiteral<"bad_request" | "unauthorized" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
494
+ code: z.ZodLiteral<"unauthorized" | "bad_request" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
495
495
  detail: z.ZodString;
496
496
  title: z.ZodString;
497
497
  status: z.ZodNumber;
498
498
  error: z.ZodObject<{
499
- code: z.ZodLiteral<"bad_request" | "unauthorized" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
499
+ code: z.ZodLiteral<"unauthorized" | "bad_request" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
500
500
  message: z.ZodString;
501
501
  }, z.core.$strip>;
502
502
  }, z.core.$strip>;
@@ -510,12 +510,12 @@ declare const commonDeleteErrorResponses: {
510
510
  schema: z.ZodObject<{
511
511
  instance: z.ZodOptional<z.ZodString>;
512
512
  requestId: z.ZodOptional<z.ZodString>;
513
- code: z.ZodLiteral<"bad_request" | "unauthorized" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
513
+ code: z.ZodLiteral<"unauthorized" | "bad_request" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
514
514
  detail: z.ZodString;
515
515
  title: z.ZodString;
516
516
  status: z.ZodNumber;
517
517
  error: z.ZodObject<{
518
- code: z.ZodLiteral<"bad_request" | "unauthorized" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
518
+ code: z.ZodLiteral<"unauthorized" | "bad_request" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
519
519
  message: z.ZodString;
520
520
  }, z.core.$strip>;
521
521
  }, z.core.$strip>;
@@ -529,12 +529,12 @@ declare const commonDeleteErrorResponses: {
529
529
  schema: z.ZodObject<{
530
530
  instance: z.ZodOptional<z.ZodString>;
531
531
  requestId: z.ZodOptional<z.ZodString>;
532
- code: z.ZodLiteral<"bad_request" | "unauthorized" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
532
+ code: z.ZodLiteral<"unauthorized" | "bad_request" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
533
533
  detail: z.ZodString;
534
534
  title: z.ZodString;
535
535
  status: z.ZodNumber;
536
536
  error: z.ZodObject<{
537
- code: z.ZodLiteral<"bad_request" | "unauthorized" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
537
+ code: z.ZodLiteral<"unauthorized" | "bad_request" | "payment_required" | "forbidden" | "not_found" | "conflict" | "too_many_requests" | "internal_server_error" | "unprocessable_entity">;
538
538
  message: z.ZodString;
539
539
  }, z.core.$strip>;
540
540
  }, z.core.$strip>;
@@ -1,10 +1,10 @@
1
1
  import { z } from "@hono/zod-openapi";
2
- import * as drizzle_zod403 from "drizzle-zod";
2
+ import * as drizzle_zod401 from "drizzle-zod";
3
3
  import { AnySQLiteTable } from "drizzle-orm/sqlite-core";
4
4
 
5
5
  //#region src/validation/drizzle-schema-helpers.d.ts
6
- declare function createSelectSchemaWithModifiers<T extends AnySQLiteTable>(table: T, overrides?: Partial<Record<keyof T['_']['columns'], (schema: z.ZodTypeAny) => z.ZodTypeAny>>): drizzle_zod403.BuildSchema<"select", T["_"]["columns"], drizzle_zod403.BuildRefine<T["_"]["columns"], undefined>, undefined>;
7
- declare function createInsertSchemaWithModifiers<T extends AnySQLiteTable>(table: T, overrides?: Partial<Record<keyof T['_']['columns'], (schema: z.ZodTypeAny) => z.ZodTypeAny>>): drizzle_zod403.BuildSchema<"insert", T["_"]["columns"], drizzle_zod403.BuildRefine<Pick<T["_"]["columns"], keyof T["$inferInsert"]>, undefined>, undefined>;
6
+ declare function createSelectSchemaWithModifiers<T extends AnySQLiteTable>(table: T, overrides?: Partial<Record<keyof T['_']['columns'], (schema: z.ZodTypeAny) => z.ZodTypeAny>>): drizzle_zod401.BuildSchema<"select", T["_"]["columns"], drizzle_zod401.BuildRefine<T["_"]["columns"], undefined>, undefined>;
7
+ declare function createInsertSchemaWithModifiers<T extends AnySQLiteTable>(table: T, overrides?: Partial<Record<keyof T['_']['columns'], (schema: z.ZodTypeAny) => z.ZodTypeAny>>): drizzle_zod401.BuildSchema<"insert", T["_"]["columns"], drizzle_zod401.BuildRefine<Pick<T["_"]["columns"], keyof T["$inferInsert"]>, undefined>, undefined>;
8
8
  declare const createSelectSchema: typeof createSelectSchemaWithModifiers;
9
9
  declare const createInsertSchema: typeof createInsertSchemaWithModifiers;
10
10
  /**
@@ -1,6 +1,6 @@
1
1
  import { z } from "@hono/zod-openapi";
2
2
  import * as drizzle_orm_pg_core2348 from "drizzle-orm/pg-core";
3
- import * as drizzle_zod401 from "drizzle-zod";
3
+ import * as drizzle_zod405 from "drizzle-zod";
4
4
 
5
5
  //#region src/validation/schemas/skills.d.ts
6
6
  declare const SkillIndexSchema: z.ZodInt;
@@ -27,7 +27,7 @@ declare const SkillFileContentInputSchema: z.ZodObject<{
27
27
  filePath: z.ZodString;
28
28
  content: z.ZodString;
29
29
  }, z.core.$strip>;
30
- declare const SkillFileSelectSchema: drizzle_zod401.BuildSchema<"select", {
30
+ declare const SkillFileSelectSchema: drizzle_zod405.BuildSchema<"select", {
31
31
  createdAt: drizzle_orm_pg_core2348.PgColumn<{
32
32
  name: "created_at";
33
33
  tableName: "skill_files";
@@ -174,7 +174,7 @@ declare const SkillFileSelectSchema: drizzle_zod401.BuildSchema<"select", {
174
174
  }, {}, {
175
175
  length: 256;
176
176
  }>;
177
- }, drizzle_zod401.BuildRefine<{
177
+ }, drizzle_zod405.BuildRefine<{
178
178
  createdAt: drizzle_orm_pg_core2348.PgColumn<{
179
179
  name: "created_at";
180
180
  tableName: "skill_files";
@@ -337,8 +337,8 @@ declare const SkillFileInsertSchema: z.ZodObject<{
337
337
  }>;
338
338
  declare const SkillInsertSchema: z.ZodObject<{
339
339
  name: z.ZodString;
340
- description: z.ZodString;
341
340
  metadata: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
341
+ description: z.ZodString;
342
342
  content: z.ZodString;
343
343
  }, {
344
344
  out: {};
@@ -353,11 +353,11 @@ declare const SkillUpdateSchema: z.ZodObject<{
353
353
  declare const SkillApiSelectSchema: z.ZodObject<{
354
354
  id: z.ZodString;
355
355
  name: z.ZodString;
356
- description: z.ZodString;
357
- metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
358
- content: z.ZodString;
359
356
  createdAt: z.ZodString;
360
357
  updatedAt: z.ZodString;
358
+ metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
359
+ description: z.ZodString;
360
+ content: z.ZodString;
361
361
  }, z.core.$strip>;
362
362
  declare const SkillApiInsertSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
363
363
  files: z.ZodArray<z.ZodObject<{
@@ -410,11 +410,11 @@ declare const SkillApiUpdateSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
410
410
  }, z.core.$strict>>;
411
411
  declare const SkillFileApiSelectSchema: z.ZodObject<{
412
412
  id: z.ZodString;
413
- content: z.ZodString;
414
413
  createdAt: z.ZodString;
415
414
  updatedAt: z.ZodString;
416
- skillId: z.ZodString;
415
+ content: z.ZodString;
417
416
  filePath: z.ZodString;
417
+ skillId: z.ZodString;
418
418
  }, z.core.$strip>;
419
419
  declare const SkillFileApiInsertSchema: z.ZodObject<{
420
420
  filePath: z.ZodString;
@@ -426,18 +426,18 @@ declare const SkillFileApiUpdateSchema: z.ZodObject<{
426
426
  declare const SkillWithFilesApiSelectSchema: z.ZodObject<{
427
427
  id: z.ZodString;
428
428
  name: z.ZodString;
429
- description: z.ZodString;
430
- metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
431
- content: z.ZodString;
432
429
  createdAt: z.ZodString;
433
430
  updatedAt: z.ZodString;
431
+ metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
432
+ description: z.ZodString;
433
+ content: z.ZodString;
434
434
  files: z.ZodArray<z.ZodObject<{
435
435
  id: z.ZodString;
436
- content: z.ZodString;
437
436
  createdAt: z.ZodString;
438
437
  updatedAt: z.ZodString;
439
- skillId: z.ZodString;
438
+ content: z.ZodString;
440
439
  filePath: z.ZodString;
440
+ skillId: z.ZodString;
441
441
  }, z.core.$strip>>;
442
442
  }, z.core.$strip>;
443
443
  declare const SubAgentSkillSelectSchema: z.ZodObject<{
@@ -487,40 +487,40 @@ declare const SubAgentSkillUpdateSchema: z.ZodObject<{
487
487
  }>;
488
488
  declare const SubAgentSkillApiSelectSchema: z.ZodObject<{
489
489
  id: z.ZodString;
490
- subAgentId: z.ZodString;
491
490
  createdAt: z.ZodString;
492
491
  updatedAt: z.ZodString;
493
- skillId: z.ZodString;
492
+ subAgentId: z.ZodString;
494
493
  index: z.ZodInt;
495
494
  alwaysLoaded: z.ZodBoolean;
495
+ skillId: z.ZodString;
496
496
  }, z.core.$strip>;
497
497
  declare const SubAgentSkillApiInsertSchema: z.ZodObject<{
498
498
  agentId: z.ZodString;
499
499
  subAgentId: z.ZodString;
500
- skillId: z.ZodString;
501
500
  index: z.ZodInt;
502
501
  alwaysLoaded: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
502
+ skillId: z.ZodString;
503
503
  }, {
504
504
  out: {};
505
505
  in: {};
506
506
  }>;
507
507
  declare const SubAgentSkillApiUpdateSchema: z.ZodObject<{
508
508
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
509
- subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
510
509
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
511
510
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
512
- skillId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
511
+ subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
513
512
  index: z.ZodOptional<z.ZodOptional<z.ZodInt>>;
514
513
  alwaysLoaded: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodBoolean>>>>;
514
+ skillId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
515
515
  }, z.core.$strip>;
516
516
  declare const SubAgentSkillWithIndexSchema: z.ZodObject<{
517
517
  id: z.ZodString;
518
518
  name: z.ZodString;
519
- description: z.ZodString;
520
- metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
521
- content: z.ZodString;
522
519
  createdAt: z.ZodString;
523
520
  updatedAt: z.ZodString;
521
+ metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
522
+ description: z.ZodString;
523
+ content: z.ZodString;
524
524
  subAgentSkillId: z.ZodString;
525
525
  subAgentId: z.ZodString;
526
526
  index: z.ZodInt;
@@ -529,29 +529,29 @@ declare const SubAgentSkillWithIndexSchema: z.ZodObject<{
529
529
  declare const SkillFileResponse: z.ZodObject<{
530
530
  data: z.ZodObject<{
531
531
  id: z.ZodString;
532
- content: z.ZodString;
533
532
  createdAt: z.ZodString;
534
533
  updatedAt: z.ZodString;
535
- skillId: z.ZodString;
534
+ content: z.ZodString;
536
535
  filePath: z.ZodString;
536
+ skillId: z.ZodString;
537
537
  }, z.core.$strip>;
538
538
  }, z.core.$strip>;
539
539
  declare const SkillWithFilesResponse: z.ZodObject<{
540
540
  data: z.ZodObject<{
541
541
  id: z.ZodString;
542
542
  name: z.ZodString;
543
- description: z.ZodString;
544
- metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
545
- content: z.ZodString;
546
543
  createdAt: z.ZodString;
547
544
  updatedAt: z.ZodString;
545
+ metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
546
+ description: z.ZodString;
547
+ content: z.ZodString;
548
548
  files: z.ZodArray<z.ZodObject<{
549
549
  id: z.ZodString;
550
- content: z.ZodString;
551
550
  createdAt: z.ZodString;
552
551
  updatedAt: z.ZodString;
553
- skillId: z.ZodString;
552
+ content: z.ZodString;
554
553
  filePath: z.ZodString;
554
+ skillId: z.ZodString;
555
555
  }, z.core.$strip>>;
556
556
  }, z.core.$strip>;
557
557
  }, z.core.$strip>;
@@ -559,11 +559,11 @@ declare const SkillListResponse: z.ZodObject<{
559
559
  data: z.ZodArray<z.ZodObject<{
560
560
  id: z.ZodString;
561
561
  name: z.ZodString;
562
- description: z.ZodString;
563
- metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
564
- content: z.ZodString;
565
562
  createdAt: z.ZodString;
566
563
  updatedAt: z.ZodString;
564
+ metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
565
+ description: z.ZodString;
566
+ content: z.ZodString;
567
567
  }, z.core.$strip>>;
568
568
  pagination: z.ZodObject<{
569
569
  page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
@@ -575,23 +575,23 @@ declare const SkillListResponse: z.ZodObject<{
575
575
  declare const SubAgentSkillResponse: z.ZodObject<{
576
576
  data: z.ZodObject<{
577
577
  id: z.ZodString;
578
- subAgentId: z.ZodString;
579
578
  createdAt: z.ZodString;
580
579
  updatedAt: z.ZodString;
581
- skillId: z.ZodString;
580
+ subAgentId: z.ZodString;
582
581
  index: z.ZodInt;
583
582
  alwaysLoaded: z.ZodBoolean;
583
+ skillId: z.ZodString;
584
584
  }, z.core.$strip>;
585
585
  }, z.core.$strip>;
586
586
  declare const SubAgentSkillWithIndexArrayResponse: z.ZodObject<{
587
587
  data: z.ZodArray<z.ZodObject<{
588
588
  id: z.ZodString;
589
589
  name: z.ZodString;
590
- description: z.ZodString;
591
- metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
592
- content: z.ZodString;
593
590
  createdAt: z.ZodString;
594
591
  updatedAt: z.ZodString;
592
+ metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
593
+ description: z.ZodString;
594
+ content: z.ZodString;
595
595
  subAgentSkillId: z.ZodString;
596
596
  subAgentId: z.ZodString;
597
597
  index: z.ZodInt;