@agent-earth/shared 0.0.4

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 (43) hide show
  1. package/dist/index.d.ts +10 -0
  2. package/dist/index.js +1 -0
  3. package/dist/schemas/agent-system.schema.d.ts +11661 -0
  4. package/dist/schemas/agent-system.schema.js +1 -0
  5. package/dist/schemas/agent.schema.d.ts +901 -0
  6. package/dist/schemas/agent.schema.js +1 -0
  7. package/dist/schemas/cesium.schema.d.ts +517 -0
  8. package/dist/schemas/cesium.schema.js +1 -0
  9. package/dist/schemas/index.d.ts +10 -0
  10. package/dist/schemas/index.js +1 -0
  11. package/dist/schemas/mcp.schema.d.ts +1791 -0
  12. package/dist/schemas/mcp.schema.js +1 -0
  13. package/dist/schemas/service-config.schema.d.ts +1302 -0
  14. package/dist/schemas/service-config.schema.js +1 -0
  15. package/dist/schemas/skill.schema.d.ts +392 -0
  16. package/dist/schemas/skill.schema.js +1 -0
  17. package/dist/schemas/store.schema.d.ts +1242 -0
  18. package/dist/schemas/store.schema.js +1 -0
  19. package/dist/schemas/user.schema.d.ts +541 -0
  20. package/dist/schemas/user.schema.js +1 -0
  21. package/dist/schemas/websocket.schema.d.ts +1186 -0
  22. package/dist/schemas/websocket.schema.js +1 -0
  23. package/dist/schemas/wiki.schema.d.ts +865 -0
  24. package/dist/schemas/wiki.schema.js +1 -0
  25. package/dist/types/agent.d.ts +45 -0
  26. package/dist/types/agent.js +1 -0
  27. package/dist/types/at-file.d.ts +42 -0
  28. package/dist/types/at-file.js +1 -0
  29. package/dist/types/cesium.d.ts +116 -0
  30. package/dist/types/cesium.js +1 -0
  31. package/dist/types/hermes.d.ts +95 -0
  32. package/dist/types/hermes.js +1 -0
  33. package/dist/types/mcp.d.ts +202 -0
  34. package/dist/types/mcp.js +1 -0
  35. package/dist/types/skill.d.ts +29 -0
  36. package/dist/types/skill.js +1 -0
  37. package/dist/types/slash-command.d.ts +26 -0
  38. package/dist/types/slash-command.js +1 -0
  39. package/dist/types/websocket.d.ts +301 -0
  40. package/dist/types/websocket.js +1 -0
  41. package/dist/types/wiki.d.ts +66 -0
  42. package/dist/types/wiki.js +1 -0
  43. package/package.json +33 -0
@@ -0,0 +1,1242 @@
1
+ import { z } from "zod";
2
+ export declare const StoreItemBaseSchema: z.ZodObject<{
3
+ id: z.ZodString;
4
+ name: z.ZodString;
5
+ description: z.ZodString;
6
+ author: z.ZodString;
7
+ version: z.ZodString;
8
+ tags: z.ZodArray<z.ZodString, "many">;
9
+ rating: z.ZodDefault<z.ZodNumber>;
10
+ downloads: z.ZodDefault<z.ZodNumber>;
11
+ createdAt: z.ZodString;
12
+ updatedAt: z.ZodString;
13
+ verified: z.ZodDefault<z.ZodBoolean>;
14
+ }, "strip", z.ZodTypeAny, {
15
+ id: string;
16
+ name: string;
17
+ description: string;
18
+ tags: string[];
19
+ author: string;
20
+ version: string;
21
+ createdAt: string;
22
+ updatedAt: string;
23
+ rating: number;
24
+ downloads: number;
25
+ verified: boolean;
26
+ }, {
27
+ id: string;
28
+ name: string;
29
+ description: string;
30
+ tags: string[];
31
+ author: string;
32
+ version: string;
33
+ createdAt: string;
34
+ updatedAt: string;
35
+ rating?: number | undefined;
36
+ downloads?: number | undefined;
37
+ verified?: boolean | undefined;
38
+ }>;
39
+ export declare const AgentStoreItemSchema: z.ZodObject<{
40
+ id: z.ZodString;
41
+ name: z.ZodString;
42
+ description: z.ZodString;
43
+ author: z.ZodString;
44
+ version: z.ZodString;
45
+ tags: z.ZodArray<z.ZodString, "many">;
46
+ rating: z.ZodDefault<z.ZodNumber>;
47
+ downloads: z.ZodDefault<z.ZodNumber>;
48
+ createdAt: z.ZodString;
49
+ updatedAt: z.ZodString;
50
+ verified: z.ZodDefault<z.ZodBoolean>;
51
+ } & {
52
+ type: z.ZodLiteral<"agent">;
53
+ category: z.ZodEnum<["industry", "domain", "general"]>;
54
+ agentConfig: z.ZodAny;
55
+ skillsIncluded: z.ZodArray<z.ZodString, "many">;
56
+ mcpsIncluded: z.ZodArray<z.ZodString, "many">;
57
+ wikiIncluded: z.ZodBoolean;
58
+ previewImage: z.ZodOptional<z.ZodString>;
59
+ demoUrl: z.ZodOptional<z.ZodString>;
60
+ }, "strip", z.ZodTypeAny, {
61
+ id: string;
62
+ type: "agent";
63
+ name: string;
64
+ description: string;
65
+ category: "industry" | "domain" | "general";
66
+ tags: string[];
67
+ author: string;
68
+ version: string;
69
+ createdAt: string;
70
+ updatedAt: string;
71
+ rating: number;
72
+ downloads: number;
73
+ verified: boolean;
74
+ skillsIncluded: string[];
75
+ mcpsIncluded: string[];
76
+ wikiIncluded: boolean;
77
+ agentConfig?: any;
78
+ previewImage?: string | undefined;
79
+ demoUrl?: string | undefined;
80
+ }, {
81
+ id: string;
82
+ type: "agent";
83
+ name: string;
84
+ description: string;
85
+ category: "industry" | "domain" | "general";
86
+ tags: string[];
87
+ author: string;
88
+ version: string;
89
+ createdAt: string;
90
+ updatedAt: string;
91
+ skillsIncluded: string[];
92
+ mcpsIncluded: string[];
93
+ wikiIncluded: boolean;
94
+ agentConfig?: any;
95
+ previewImage?: string | undefined;
96
+ rating?: number | undefined;
97
+ downloads?: number | undefined;
98
+ verified?: boolean | undefined;
99
+ demoUrl?: string | undefined;
100
+ }>;
101
+ export declare const SkillStoreItemSchema: z.ZodObject<{
102
+ id: z.ZodString;
103
+ name: z.ZodString;
104
+ description: z.ZodString;
105
+ author: z.ZodString;
106
+ version: z.ZodString;
107
+ tags: z.ZodArray<z.ZodString, "many">;
108
+ rating: z.ZodDefault<z.ZodNumber>;
109
+ downloads: z.ZodDefault<z.ZodNumber>;
110
+ createdAt: z.ZodString;
111
+ updatedAt: z.ZodString;
112
+ verified: z.ZodDefault<z.ZodBoolean>;
113
+ } & {
114
+ type: z.ZodLiteral<"skill">;
115
+ category: z.ZodEnum<["business", "control", "query", "utility"]>;
116
+ skillType: z.ZodEnum<["builtin", "custom", "generated"]>;
117
+ sourceUrl: z.ZodOptional<z.ZodString>;
118
+ skillConfig: z.ZodAny;
119
+ dependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
120
+ }, "strip", z.ZodTypeAny, {
121
+ id: string;
122
+ type: "skill";
123
+ name: string;
124
+ description: string;
125
+ category: "query" | "business" | "control" | "utility";
126
+ tags: string[];
127
+ author: string;
128
+ version: string;
129
+ createdAt: string;
130
+ updatedAt: string;
131
+ rating: number;
132
+ downloads: number;
133
+ verified: boolean;
134
+ skillType: "custom" | "builtin" | "generated";
135
+ sourceUrl?: string | undefined;
136
+ dependencies?: string[] | undefined;
137
+ skillConfig?: any;
138
+ }, {
139
+ id: string;
140
+ type: "skill";
141
+ name: string;
142
+ description: string;
143
+ category: "query" | "business" | "control" | "utility";
144
+ tags: string[];
145
+ author: string;
146
+ version: string;
147
+ createdAt: string;
148
+ updatedAt: string;
149
+ skillType: "custom" | "builtin" | "generated";
150
+ sourceUrl?: string | undefined;
151
+ dependencies?: string[] | undefined;
152
+ rating?: number | undefined;
153
+ downloads?: number | undefined;
154
+ verified?: boolean | undefined;
155
+ skillConfig?: any;
156
+ }>;
157
+ export declare const MCPStoreItemSchema: z.ZodObject<{
158
+ id: z.ZodString;
159
+ name: z.ZodString;
160
+ description: z.ZodString;
161
+ author: z.ZodString;
162
+ version: z.ZodString;
163
+ tags: z.ZodArray<z.ZodString, "many">;
164
+ rating: z.ZodDefault<z.ZodNumber>;
165
+ downloads: z.ZodDefault<z.ZodNumber>;
166
+ createdAt: z.ZodString;
167
+ updatedAt: z.ZodString;
168
+ verified: z.ZodDefault<z.ZodBoolean>;
169
+ } & {
170
+ type: z.ZodLiteral<"mcp">;
171
+ category: z.ZodEnum<["data_source", "external_service", "notification", "ai_service"]>;
172
+ protocol: z.ZodEnum<["stdio", "http", "streamable_http", "sse"]>;
173
+ templateConfig: z.ZodAny;
174
+ setupGuide: z.ZodOptional<z.ZodString>;
175
+ authRequired: z.ZodDefault<z.ZodBoolean>;
176
+ }, "strip", z.ZodTypeAny, {
177
+ id: string;
178
+ type: "mcp";
179
+ name: string;
180
+ description: string;
181
+ category: "data_source" | "external_service" | "notification" | "ai_service";
182
+ tags: string[];
183
+ author: string;
184
+ version: string;
185
+ createdAt: string;
186
+ updatedAt: string;
187
+ protocol: "stdio" | "http" | "streamable_http" | "sse";
188
+ authRequired: boolean;
189
+ rating: number;
190
+ downloads: number;
191
+ verified: boolean;
192
+ setupGuide?: string | undefined;
193
+ templateConfig?: any;
194
+ }, {
195
+ id: string;
196
+ type: "mcp";
197
+ name: string;
198
+ description: string;
199
+ category: "data_source" | "external_service" | "notification" | "ai_service";
200
+ tags: string[];
201
+ author: string;
202
+ version: string;
203
+ createdAt: string;
204
+ updatedAt: string;
205
+ protocol: "stdio" | "http" | "streamable_http" | "sse";
206
+ setupGuide?: string | undefined;
207
+ authRequired?: boolean | undefined;
208
+ rating?: number | undefined;
209
+ downloads?: number | undefined;
210
+ verified?: boolean | undefined;
211
+ templateConfig?: any;
212
+ }>;
213
+ export declare const WikiStoreItemSchema: z.ZodObject<{
214
+ id: z.ZodString;
215
+ name: z.ZodString;
216
+ description: z.ZodString;
217
+ author: z.ZodString;
218
+ version: z.ZodString;
219
+ tags: z.ZodArray<z.ZodString, "many">;
220
+ rating: z.ZodDefault<z.ZodNumber>;
221
+ downloads: z.ZodDefault<z.ZodNumber>;
222
+ createdAt: z.ZodString;
223
+ updatedAt: z.ZodString;
224
+ verified: z.ZodDefault<z.ZodBoolean>;
225
+ } & {
226
+ type: z.ZodLiteral<"wiki">;
227
+ category: z.ZodEnum<["industry", "domain", "project"]>;
228
+ wikiType: z.ZodEnum<["general", "air_traffic", "weather", "radar", "drone"]>;
229
+ pagesCount: z.ZodDefault<z.ZodNumber>;
230
+ entitiesCount: z.ZodDefault<z.ZodNumber>;
231
+ conceptsCount: z.ZodDefault<z.ZodNumber>;
232
+ samplePages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
233
+ }, "strip", z.ZodTypeAny, {
234
+ id: string;
235
+ type: "wiki";
236
+ name: string;
237
+ description: string;
238
+ category: "industry" | "domain" | "project";
239
+ tags: string[];
240
+ author: string;
241
+ version: string;
242
+ createdAt: string;
243
+ updatedAt: string;
244
+ wikiType: "general" | "radar" | "weather" | "drone" | "air_traffic";
245
+ pagesCount: number;
246
+ entitiesCount: number;
247
+ conceptsCount: number;
248
+ rating: number;
249
+ downloads: number;
250
+ verified: boolean;
251
+ samplePages?: string[] | undefined;
252
+ }, {
253
+ id: string;
254
+ type: "wiki";
255
+ name: string;
256
+ description: string;
257
+ category: "industry" | "domain" | "project";
258
+ tags: string[];
259
+ author: string;
260
+ version: string;
261
+ createdAt: string;
262
+ updatedAt: string;
263
+ wikiType: "general" | "radar" | "weather" | "drone" | "air_traffic";
264
+ pagesCount?: number | undefined;
265
+ entitiesCount?: number | undefined;
266
+ conceptsCount?: number | undefined;
267
+ rating?: number | undefined;
268
+ downloads?: number | undefined;
269
+ verified?: boolean | undefined;
270
+ samplePages?: string[] | undefined;
271
+ }>;
272
+ export declare const TemplateStoreItemSchema: z.ZodObject<{
273
+ id: z.ZodString;
274
+ name: z.ZodString;
275
+ description: z.ZodString;
276
+ author: z.ZodString;
277
+ version: z.ZodString;
278
+ tags: z.ZodArray<z.ZodString, "many">;
279
+ rating: z.ZodDefault<z.ZodNumber>;
280
+ downloads: z.ZodDefault<z.ZodNumber>;
281
+ createdAt: z.ZodString;
282
+ updatedAt: z.ZodString;
283
+ verified: z.ZodDefault<z.ZodBoolean>;
284
+ } & {
285
+ type: z.ZodLiteral<"template">;
286
+ category: z.ZodEnum<["full_solution", "starter", "demo"]>;
287
+ agentsIncluded: z.ZodArray<z.ZodString, "many">;
288
+ skillsIncluded: z.ZodArray<z.ZodString, "many">;
289
+ mcpsIncluded: z.ZodArray<z.ZodString, "many">;
290
+ wikiIncluded: z.ZodOptional<z.ZodString>;
291
+ instanceConfig: z.ZodAny;
292
+ deploymentGuide: z.ZodOptional<z.ZodString>;
293
+ }, "strip", z.ZodTypeAny, {
294
+ id: string;
295
+ type: "template";
296
+ name: string;
297
+ description: string;
298
+ category: "demo" | "starter" | "full_solution";
299
+ tags: string[];
300
+ author: string;
301
+ version: string;
302
+ createdAt: string;
303
+ updatedAt: string;
304
+ rating: number;
305
+ downloads: number;
306
+ verified: boolean;
307
+ skillsIncluded: string[];
308
+ mcpsIncluded: string[];
309
+ agentsIncluded: string[];
310
+ wikiIncluded?: string | undefined;
311
+ instanceConfig?: any;
312
+ deploymentGuide?: string | undefined;
313
+ }, {
314
+ id: string;
315
+ type: "template";
316
+ name: string;
317
+ description: string;
318
+ category: "demo" | "starter" | "full_solution";
319
+ tags: string[];
320
+ author: string;
321
+ version: string;
322
+ createdAt: string;
323
+ updatedAt: string;
324
+ skillsIncluded: string[];
325
+ mcpsIncluded: string[];
326
+ agentsIncluded: string[];
327
+ rating?: number | undefined;
328
+ downloads?: number | undefined;
329
+ verified?: boolean | undefined;
330
+ wikiIncluded?: string | undefined;
331
+ instanceConfig?: any;
332
+ deploymentGuide?: string | undefined;
333
+ }>;
334
+ export declare const StoreItemSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
335
+ id: z.ZodString;
336
+ name: z.ZodString;
337
+ description: z.ZodString;
338
+ author: z.ZodString;
339
+ version: z.ZodString;
340
+ tags: z.ZodArray<z.ZodString, "many">;
341
+ rating: z.ZodDefault<z.ZodNumber>;
342
+ downloads: z.ZodDefault<z.ZodNumber>;
343
+ createdAt: z.ZodString;
344
+ updatedAt: z.ZodString;
345
+ verified: z.ZodDefault<z.ZodBoolean>;
346
+ } & {
347
+ type: z.ZodLiteral<"agent">;
348
+ category: z.ZodEnum<["industry", "domain", "general"]>;
349
+ agentConfig: z.ZodAny;
350
+ skillsIncluded: z.ZodArray<z.ZodString, "many">;
351
+ mcpsIncluded: z.ZodArray<z.ZodString, "many">;
352
+ wikiIncluded: z.ZodBoolean;
353
+ previewImage: z.ZodOptional<z.ZodString>;
354
+ demoUrl: z.ZodOptional<z.ZodString>;
355
+ }, "strip", z.ZodTypeAny, {
356
+ id: string;
357
+ type: "agent";
358
+ name: string;
359
+ description: string;
360
+ category: "industry" | "domain" | "general";
361
+ tags: string[];
362
+ author: string;
363
+ version: string;
364
+ createdAt: string;
365
+ updatedAt: string;
366
+ rating: number;
367
+ downloads: number;
368
+ verified: boolean;
369
+ skillsIncluded: string[];
370
+ mcpsIncluded: string[];
371
+ wikiIncluded: boolean;
372
+ agentConfig?: any;
373
+ previewImage?: string | undefined;
374
+ demoUrl?: string | undefined;
375
+ }, {
376
+ id: string;
377
+ type: "agent";
378
+ name: string;
379
+ description: string;
380
+ category: "industry" | "domain" | "general";
381
+ tags: string[];
382
+ author: string;
383
+ version: string;
384
+ createdAt: string;
385
+ updatedAt: string;
386
+ skillsIncluded: string[];
387
+ mcpsIncluded: string[];
388
+ wikiIncluded: boolean;
389
+ agentConfig?: any;
390
+ previewImage?: string | undefined;
391
+ rating?: number | undefined;
392
+ downloads?: number | undefined;
393
+ verified?: boolean | undefined;
394
+ demoUrl?: string | undefined;
395
+ }>, z.ZodObject<{
396
+ id: z.ZodString;
397
+ name: z.ZodString;
398
+ description: z.ZodString;
399
+ author: z.ZodString;
400
+ version: z.ZodString;
401
+ tags: z.ZodArray<z.ZodString, "many">;
402
+ rating: z.ZodDefault<z.ZodNumber>;
403
+ downloads: z.ZodDefault<z.ZodNumber>;
404
+ createdAt: z.ZodString;
405
+ updatedAt: z.ZodString;
406
+ verified: z.ZodDefault<z.ZodBoolean>;
407
+ } & {
408
+ type: z.ZodLiteral<"skill">;
409
+ category: z.ZodEnum<["business", "control", "query", "utility"]>;
410
+ skillType: z.ZodEnum<["builtin", "custom", "generated"]>;
411
+ sourceUrl: z.ZodOptional<z.ZodString>;
412
+ skillConfig: z.ZodAny;
413
+ dependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
414
+ }, "strip", z.ZodTypeAny, {
415
+ id: string;
416
+ type: "skill";
417
+ name: string;
418
+ description: string;
419
+ category: "query" | "business" | "control" | "utility";
420
+ tags: string[];
421
+ author: string;
422
+ version: string;
423
+ createdAt: string;
424
+ updatedAt: string;
425
+ rating: number;
426
+ downloads: number;
427
+ verified: boolean;
428
+ skillType: "custom" | "builtin" | "generated";
429
+ sourceUrl?: string | undefined;
430
+ dependencies?: string[] | undefined;
431
+ skillConfig?: any;
432
+ }, {
433
+ id: string;
434
+ type: "skill";
435
+ name: string;
436
+ description: string;
437
+ category: "query" | "business" | "control" | "utility";
438
+ tags: string[];
439
+ author: string;
440
+ version: string;
441
+ createdAt: string;
442
+ updatedAt: string;
443
+ skillType: "custom" | "builtin" | "generated";
444
+ sourceUrl?: string | undefined;
445
+ dependencies?: string[] | undefined;
446
+ rating?: number | undefined;
447
+ downloads?: number | undefined;
448
+ verified?: boolean | undefined;
449
+ skillConfig?: any;
450
+ }>, z.ZodObject<{
451
+ id: z.ZodString;
452
+ name: z.ZodString;
453
+ description: z.ZodString;
454
+ author: z.ZodString;
455
+ version: z.ZodString;
456
+ tags: z.ZodArray<z.ZodString, "many">;
457
+ rating: z.ZodDefault<z.ZodNumber>;
458
+ downloads: z.ZodDefault<z.ZodNumber>;
459
+ createdAt: z.ZodString;
460
+ updatedAt: z.ZodString;
461
+ verified: z.ZodDefault<z.ZodBoolean>;
462
+ } & {
463
+ type: z.ZodLiteral<"mcp">;
464
+ category: z.ZodEnum<["data_source", "external_service", "notification", "ai_service"]>;
465
+ protocol: z.ZodEnum<["stdio", "http", "streamable_http", "sse"]>;
466
+ templateConfig: z.ZodAny;
467
+ setupGuide: z.ZodOptional<z.ZodString>;
468
+ authRequired: z.ZodDefault<z.ZodBoolean>;
469
+ }, "strip", z.ZodTypeAny, {
470
+ id: string;
471
+ type: "mcp";
472
+ name: string;
473
+ description: string;
474
+ category: "data_source" | "external_service" | "notification" | "ai_service";
475
+ tags: string[];
476
+ author: string;
477
+ version: string;
478
+ createdAt: string;
479
+ updatedAt: string;
480
+ protocol: "stdio" | "http" | "streamable_http" | "sse";
481
+ authRequired: boolean;
482
+ rating: number;
483
+ downloads: number;
484
+ verified: boolean;
485
+ setupGuide?: string | undefined;
486
+ templateConfig?: any;
487
+ }, {
488
+ id: string;
489
+ type: "mcp";
490
+ name: string;
491
+ description: string;
492
+ category: "data_source" | "external_service" | "notification" | "ai_service";
493
+ tags: string[];
494
+ author: string;
495
+ version: string;
496
+ createdAt: string;
497
+ updatedAt: string;
498
+ protocol: "stdio" | "http" | "streamable_http" | "sse";
499
+ setupGuide?: string | undefined;
500
+ authRequired?: boolean | undefined;
501
+ rating?: number | undefined;
502
+ downloads?: number | undefined;
503
+ verified?: boolean | undefined;
504
+ templateConfig?: any;
505
+ }>, z.ZodObject<{
506
+ id: z.ZodString;
507
+ name: z.ZodString;
508
+ description: z.ZodString;
509
+ author: z.ZodString;
510
+ version: z.ZodString;
511
+ tags: z.ZodArray<z.ZodString, "many">;
512
+ rating: z.ZodDefault<z.ZodNumber>;
513
+ downloads: z.ZodDefault<z.ZodNumber>;
514
+ createdAt: z.ZodString;
515
+ updatedAt: z.ZodString;
516
+ verified: z.ZodDefault<z.ZodBoolean>;
517
+ } & {
518
+ type: z.ZodLiteral<"wiki">;
519
+ category: z.ZodEnum<["industry", "domain", "project"]>;
520
+ wikiType: z.ZodEnum<["general", "air_traffic", "weather", "radar", "drone"]>;
521
+ pagesCount: z.ZodDefault<z.ZodNumber>;
522
+ entitiesCount: z.ZodDefault<z.ZodNumber>;
523
+ conceptsCount: z.ZodDefault<z.ZodNumber>;
524
+ samplePages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
525
+ }, "strip", z.ZodTypeAny, {
526
+ id: string;
527
+ type: "wiki";
528
+ name: string;
529
+ description: string;
530
+ category: "industry" | "domain" | "project";
531
+ tags: string[];
532
+ author: string;
533
+ version: string;
534
+ createdAt: string;
535
+ updatedAt: string;
536
+ wikiType: "general" | "radar" | "weather" | "drone" | "air_traffic";
537
+ pagesCount: number;
538
+ entitiesCount: number;
539
+ conceptsCount: number;
540
+ rating: number;
541
+ downloads: number;
542
+ verified: boolean;
543
+ samplePages?: string[] | undefined;
544
+ }, {
545
+ id: string;
546
+ type: "wiki";
547
+ name: string;
548
+ description: string;
549
+ category: "industry" | "domain" | "project";
550
+ tags: string[];
551
+ author: string;
552
+ version: string;
553
+ createdAt: string;
554
+ updatedAt: string;
555
+ wikiType: "general" | "radar" | "weather" | "drone" | "air_traffic";
556
+ pagesCount?: number | undefined;
557
+ entitiesCount?: number | undefined;
558
+ conceptsCount?: number | undefined;
559
+ rating?: number | undefined;
560
+ downloads?: number | undefined;
561
+ verified?: boolean | undefined;
562
+ samplePages?: string[] | undefined;
563
+ }>, z.ZodObject<{
564
+ id: z.ZodString;
565
+ name: z.ZodString;
566
+ description: z.ZodString;
567
+ author: z.ZodString;
568
+ version: z.ZodString;
569
+ tags: z.ZodArray<z.ZodString, "many">;
570
+ rating: z.ZodDefault<z.ZodNumber>;
571
+ downloads: z.ZodDefault<z.ZodNumber>;
572
+ createdAt: z.ZodString;
573
+ updatedAt: z.ZodString;
574
+ verified: z.ZodDefault<z.ZodBoolean>;
575
+ } & {
576
+ type: z.ZodLiteral<"template">;
577
+ category: z.ZodEnum<["full_solution", "starter", "demo"]>;
578
+ agentsIncluded: z.ZodArray<z.ZodString, "many">;
579
+ skillsIncluded: z.ZodArray<z.ZodString, "many">;
580
+ mcpsIncluded: z.ZodArray<z.ZodString, "many">;
581
+ wikiIncluded: z.ZodOptional<z.ZodString>;
582
+ instanceConfig: z.ZodAny;
583
+ deploymentGuide: z.ZodOptional<z.ZodString>;
584
+ }, "strip", z.ZodTypeAny, {
585
+ id: string;
586
+ type: "template";
587
+ name: string;
588
+ description: string;
589
+ category: "demo" | "starter" | "full_solution";
590
+ tags: string[];
591
+ author: string;
592
+ version: string;
593
+ createdAt: string;
594
+ updatedAt: string;
595
+ rating: number;
596
+ downloads: number;
597
+ verified: boolean;
598
+ skillsIncluded: string[];
599
+ mcpsIncluded: string[];
600
+ agentsIncluded: string[];
601
+ wikiIncluded?: string | undefined;
602
+ instanceConfig?: any;
603
+ deploymentGuide?: string | undefined;
604
+ }, {
605
+ id: string;
606
+ type: "template";
607
+ name: string;
608
+ description: string;
609
+ category: "demo" | "starter" | "full_solution";
610
+ tags: string[];
611
+ author: string;
612
+ version: string;
613
+ createdAt: string;
614
+ updatedAt: string;
615
+ skillsIncluded: string[];
616
+ mcpsIncluded: string[];
617
+ agentsIncluded: string[];
618
+ rating?: number | undefined;
619
+ downloads?: number | undefined;
620
+ verified?: boolean | undefined;
621
+ wikiIncluded?: string | undefined;
622
+ instanceConfig?: any;
623
+ deploymentGuide?: string | undefined;
624
+ }>]>;
625
+ export declare const StoreSearchParamsSchema: z.ZodObject<{
626
+ type: z.ZodOptional<z.ZodEnum<["agent", "skill", "mcp", "wiki", "template", "all"]>>;
627
+ category: z.ZodOptional<z.ZodString>;
628
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
629
+ query: z.ZodOptional<z.ZodString>;
630
+ sortBy: z.ZodOptional<z.ZodEnum<["downloads", "rating", "updated", "created"]>>;
631
+ sortOrder: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
632
+ limit: z.ZodDefault<z.ZodNumber>;
633
+ offset: z.ZodDefault<z.ZodNumber>;
634
+ }, "strip", z.ZodTypeAny, {
635
+ limit: number;
636
+ offset: number;
637
+ query?: string | undefined;
638
+ type?: "skill" | "mcp" | "wiki" | "agent" | "template" | "all" | undefined;
639
+ category?: string | undefined;
640
+ tags?: string[] | undefined;
641
+ sortBy?: "rating" | "downloads" | "updated" | "created" | undefined;
642
+ sortOrder?: "asc" | "desc" | undefined;
643
+ }, {
644
+ query?: string | undefined;
645
+ type?: "skill" | "mcp" | "wiki" | "agent" | "template" | "all" | undefined;
646
+ category?: string | undefined;
647
+ tags?: string[] | undefined;
648
+ limit?: number | undefined;
649
+ offset?: number | undefined;
650
+ sortBy?: "rating" | "downloads" | "updated" | "created" | undefined;
651
+ sortOrder?: "asc" | "desc" | undefined;
652
+ }>;
653
+ export declare const StoreSearchResultSchema: z.ZodObject<{
654
+ items: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
655
+ id: z.ZodString;
656
+ name: z.ZodString;
657
+ description: z.ZodString;
658
+ author: z.ZodString;
659
+ version: z.ZodString;
660
+ tags: z.ZodArray<z.ZodString, "many">;
661
+ rating: z.ZodDefault<z.ZodNumber>;
662
+ downloads: z.ZodDefault<z.ZodNumber>;
663
+ createdAt: z.ZodString;
664
+ updatedAt: z.ZodString;
665
+ verified: z.ZodDefault<z.ZodBoolean>;
666
+ } & {
667
+ type: z.ZodLiteral<"agent">;
668
+ category: z.ZodEnum<["industry", "domain", "general"]>;
669
+ agentConfig: z.ZodAny;
670
+ skillsIncluded: z.ZodArray<z.ZodString, "many">;
671
+ mcpsIncluded: z.ZodArray<z.ZodString, "many">;
672
+ wikiIncluded: z.ZodBoolean;
673
+ previewImage: z.ZodOptional<z.ZodString>;
674
+ demoUrl: z.ZodOptional<z.ZodString>;
675
+ }, "strip", z.ZodTypeAny, {
676
+ id: string;
677
+ type: "agent";
678
+ name: string;
679
+ description: string;
680
+ category: "industry" | "domain" | "general";
681
+ tags: string[];
682
+ author: string;
683
+ version: string;
684
+ createdAt: string;
685
+ updatedAt: string;
686
+ rating: number;
687
+ downloads: number;
688
+ verified: boolean;
689
+ skillsIncluded: string[];
690
+ mcpsIncluded: string[];
691
+ wikiIncluded: boolean;
692
+ agentConfig?: any;
693
+ previewImage?: string | undefined;
694
+ demoUrl?: string | undefined;
695
+ }, {
696
+ id: string;
697
+ type: "agent";
698
+ name: string;
699
+ description: string;
700
+ category: "industry" | "domain" | "general";
701
+ tags: string[];
702
+ author: string;
703
+ version: string;
704
+ createdAt: string;
705
+ updatedAt: string;
706
+ skillsIncluded: string[];
707
+ mcpsIncluded: string[];
708
+ wikiIncluded: boolean;
709
+ agentConfig?: any;
710
+ previewImage?: string | undefined;
711
+ rating?: number | undefined;
712
+ downloads?: number | undefined;
713
+ verified?: boolean | undefined;
714
+ demoUrl?: string | undefined;
715
+ }>, z.ZodObject<{
716
+ id: z.ZodString;
717
+ name: z.ZodString;
718
+ description: z.ZodString;
719
+ author: z.ZodString;
720
+ version: z.ZodString;
721
+ tags: z.ZodArray<z.ZodString, "many">;
722
+ rating: z.ZodDefault<z.ZodNumber>;
723
+ downloads: z.ZodDefault<z.ZodNumber>;
724
+ createdAt: z.ZodString;
725
+ updatedAt: z.ZodString;
726
+ verified: z.ZodDefault<z.ZodBoolean>;
727
+ } & {
728
+ type: z.ZodLiteral<"skill">;
729
+ category: z.ZodEnum<["business", "control", "query", "utility"]>;
730
+ skillType: z.ZodEnum<["builtin", "custom", "generated"]>;
731
+ sourceUrl: z.ZodOptional<z.ZodString>;
732
+ skillConfig: z.ZodAny;
733
+ dependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
734
+ }, "strip", z.ZodTypeAny, {
735
+ id: string;
736
+ type: "skill";
737
+ name: string;
738
+ description: string;
739
+ category: "query" | "business" | "control" | "utility";
740
+ tags: string[];
741
+ author: string;
742
+ version: string;
743
+ createdAt: string;
744
+ updatedAt: string;
745
+ rating: number;
746
+ downloads: number;
747
+ verified: boolean;
748
+ skillType: "custom" | "builtin" | "generated";
749
+ sourceUrl?: string | undefined;
750
+ dependencies?: string[] | undefined;
751
+ skillConfig?: any;
752
+ }, {
753
+ id: string;
754
+ type: "skill";
755
+ name: string;
756
+ description: string;
757
+ category: "query" | "business" | "control" | "utility";
758
+ tags: string[];
759
+ author: string;
760
+ version: string;
761
+ createdAt: string;
762
+ updatedAt: string;
763
+ skillType: "custom" | "builtin" | "generated";
764
+ sourceUrl?: string | undefined;
765
+ dependencies?: string[] | undefined;
766
+ rating?: number | undefined;
767
+ downloads?: number | undefined;
768
+ verified?: boolean | undefined;
769
+ skillConfig?: any;
770
+ }>, z.ZodObject<{
771
+ id: z.ZodString;
772
+ name: z.ZodString;
773
+ description: z.ZodString;
774
+ author: z.ZodString;
775
+ version: z.ZodString;
776
+ tags: z.ZodArray<z.ZodString, "many">;
777
+ rating: z.ZodDefault<z.ZodNumber>;
778
+ downloads: z.ZodDefault<z.ZodNumber>;
779
+ createdAt: z.ZodString;
780
+ updatedAt: z.ZodString;
781
+ verified: z.ZodDefault<z.ZodBoolean>;
782
+ } & {
783
+ type: z.ZodLiteral<"mcp">;
784
+ category: z.ZodEnum<["data_source", "external_service", "notification", "ai_service"]>;
785
+ protocol: z.ZodEnum<["stdio", "http", "streamable_http", "sse"]>;
786
+ templateConfig: z.ZodAny;
787
+ setupGuide: z.ZodOptional<z.ZodString>;
788
+ authRequired: z.ZodDefault<z.ZodBoolean>;
789
+ }, "strip", z.ZodTypeAny, {
790
+ id: string;
791
+ type: "mcp";
792
+ name: string;
793
+ description: string;
794
+ category: "data_source" | "external_service" | "notification" | "ai_service";
795
+ tags: string[];
796
+ author: string;
797
+ version: string;
798
+ createdAt: string;
799
+ updatedAt: string;
800
+ protocol: "stdio" | "http" | "streamable_http" | "sse";
801
+ authRequired: boolean;
802
+ rating: number;
803
+ downloads: number;
804
+ verified: boolean;
805
+ setupGuide?: string | undefined;
806
+ templateConfig?: any;
807
+ }, {
808
+ id: string;
809
+ type: "mcp";
810
+ name: string;
811
+ description: string;
812
+ category: "data_source" | "external_service" | "notification" | "ai_service";
813
+ tags: string[];
814
+ author: string;
815
+ version: string;
816
+ createdAt: string;
817
+ updatedAt: string;
818
+ protocol: "stdio" | "http" | "streamable_http" | "sse";
819
+ setupGuide?: string | undefined;
820
+ authRequired?: boolean | undefined;
821
+ rating?: number | undefined;
822
+ downloads?: number | undefined;
823
+ verified?: boolean | undefined;
824
+ templateConfig?: any;
825
+ }>, z.ZodObject<{
826
+ id: z.ZodString;
827
+ name: z.ZodString;
828
+ description: z.ZodString;
829
+ author: z.ZodString;
830
+ version: z.ZodString;
831
+ tags: z.ZodArray<z.ZodString, "many">;
832
+ rating: z.ZodDefault<z.ZodNumber>;
833
+ downloads: z.ZodDefault<z.ZodNumber>;
834
+ createdAt: z.ZodString;
835
+ updatedAt: z.ZodString;
836
+ verified: z.ZodDefault<z.ZodBoolean>;
837
+ } & {
838
+ type: z.ZodLiteral<"wiki">;
839
+ category: z.ZodEnum<["industry", "domain", "project"]>;
840
+ wikiType: z.ZodEnum<["general", "air_traffic", "weather", "radar", "drone"]>;
841
+ pagesCount: z.ZodDefault<z.ZodNumber>;
842
+ entitiesCount: z.ZodDefault<z.ZodNumber>;
843
+ conceptsCount: z.ZodDefault<z.ZodNumber>;
844
+ samplePages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
845
+ }, "strip", z.ZodTypeAny, {
846
+ id: string;
847
+ type: "wiki";
848
+ name: string;
849
+ description: string;
850
+ category: "industry" | "domain" | "project";
851
+ tags: string[];
852
+ author: string;
853
+ version: string;
854
+ createdAt: string;
855
+ updatedAt: string;
856
+ wikiType: "general" | "radar" | "weather" | "drone" | "air_traffic";
857
+ pagesCount: number;
858
+ entitiesCount: number;
859
+ conceptsCount: number;
860
+ rating: number;
861
+ downloads: number;
862
+ verified: boolean;
863
+ samplePages?: string[] | undefined;
864
+ }, {
865
+ id: string;
866
+ type: "wiki";
867
+ name: string;
868
+ description: string;
869
+ category: "industry" | "domain" | "project";
870
+ tags: string[];
871
+ author: string;
872
+ version: string;
873
+ createdAt: string;
874
+ updatedAt: string;
875
+ wikiType: "general" | "radar" | "weather" | "drone" | "air_traffic";
876
+ pagesCount?: number | undefined;
877
+ entitiesCount?: number | undefined;
878
+ conceptsCount?: number | undefined;
879
+ rating?: number | undefined;
880
+ downloads?: number | undefined;
881
+ verified?: boolean | undefined;
882
+ samplePages?: string[] | undefined;
883
+ }>, z.ZodObject<{
884
+ id: z.ZodString;
885
+ name: z.ZodString;
886
+ description: z.ZodString;
887
+ author: z.ZodString;
888
+ version: z.ZodString;
889
+ tags: z.ZodArray<z.ZodString, "many">;
890
+ rating: z.ZodDefault<z.ZodNumber>;
891
+ downloads: z.ZodDefault<z.ZodNumber>;
892
+ createdAt: z.ZodString;
893
+ updatedAt: z.ZodString;
894
+ verified: z.ZodDefault<z.ZodBoolean>;
895
+ } & {
896
+ type: z.ZodLiteral<"template">;
897
+ category: z.ZodEnum<["full_solution", "starter", "demo"]>;
898
+ agentsIncluded: z.ZodArray<z.ZodString, "many">;
899
+ skillsIncluded: z.ZodArray<z.ZodString, "many">;
900
+ mcpsIncluded: z.ZodArray<z.ZodString, "many">;
901
+ wikiIncluded: z.ZodOptional<z.ZodString>;
902
+ instanceConfig: z.ZodAny;
903
+ deploymentGuide: z.ZodOptional<z.ZodString>;
904
+ }, "strip", z.ZodTypeAny, {
905
+ id: string;
906
+ type: "template";
907
+ name: string;
908
+ description: string;
909
+ category: "demo" | "starter" | "full_solution";
910
+ tags: string[];
911
+ author: string;
912
+ version: string;
913
+ createdAt: string;
914
+ updatedAt: string;
915
+ rating: number;
916
+ downloads: number;
917
+ verified: boolean;
918
+ skillsIncluded: string[];
919
+ mcpsIncluded: string[];
920
+ agentsIncluded: string[];
921
+ wikiIncluded?: string | undefined;
922
+ instanceConfig?: any;
923
+ deploymentGuide?: string | undefined;
924
+ }, {
925
+ id: string;
926
+ type: "template";
927
+ name: string;
928
+ description: string;
929
+ category: "demo" | "starter" | "full_solution";
930
+ tags: string[];
931
+ author: string;
932
+ version: string;
933
+ createdAt: string;
934
+ updatedAt: string;
935
+ skillsIncluded: string[];
936
+ mcpsIncluded: string[];
937
+ agentsIncluded: string[];
938
+ rating?: number | undefined;
939
+ downloads?: number | undefined;
940
+ verified?: boolean | undefined;
941
+ wikiIncluded?: string | undefined;
942
+ instanceConfig?: any;
943
+ deploymentGuide?: string | undefined;
944
+ }>]>, "many">;
945
+ total: z.ZodNumber;
946
+ limit: z.ZodNumber;
947
+ offset: z.ZodNumber;
948
+ hasMore: z.ZodBoolean;
949
+ }, "strip", z.ZodTypeAny, {
950
+ items: ({
951
+ id: string;
952
+ type: "agent";
953
+ name: string;
954
+ description: string;
955
+ category: "industry" | "domain" | "general";
956
+ tags: string[];
957
+ author: string;
958
+ version: string;
959
+ createdAt: string;
960
+ updatedAt: string;
961
+ rating: number;
962
+ downloads: number;
963
+ verified: boolean;
964
+ skillsIncluded: string[];
965
+ mcpsIncluded: string[];
966
+ wikiIncluded: boolean;
967
+ agentConfig?: any;
968
+ previewImage?: string | undefined;
969
+ demoUrl?: string | undefined;
970
+ } | {
971
+ id: string;
972
+ type: "skill";
973
+ name: string;
974
+ description: string;
975
+ category: "query" | "business" | "control" | "utility";
976
+ tags: string[];
977
+ author: string;
978
+ version: string;
979
+ createdAt: string;
980
+ updatedAt: string;
981
+ rating: number;
982
+ downloads: number;
983
+ verified: boolean;
984
+ skillType: "custom" | "builtin" | "generated";
985
+ sourceUrl?: string | undefined;
986
+ dependencies?: string[] | undefined;
987
+ skillConfig?: any;
988
+ } | {
989
+ id: string;
990
+ type: "mcp";
991
+ name: string;
992
+ description: string;
993
+ category: "data_source" | "external_service" | "notification" | "ai_service";
994
+ tags: string[];
995
+ author: string;
996
+ version: string;
997
+ createdAt: string;
998
+ updatedAt: string;
999
+ protocol: "stdio" | "http" | "streamable_http" | "sse";
1000
+ authRequired: boolean;
1001
+ rating: number;
1002
+ downloads: number;
1003
+ verified: boolean;
1004
+ setupGuide?: string | undefined;
1005
+ templateConfig?: any;
1006
+ } | {
1007
+ id: string;
1008
+ type: "wiki";
1009
+ name: string;
1010
+ description: string;
1011
+ category: "industry" | "domain" | "project";
1012
+ tags: string[];
1013
+ author: string;
1014
+ version: string;
1015
+ createdAt: string;
1016
+ updatedAt: string;
1017
+ wikiType: "general" | "radar" | "weather" | "drone" | "air_traffic";
1018
+ pagesCount: number;
1019
+ entitiesCount: number;
1020
+ conceptsCount: number;
1021
+ rating: number;
1022
+ downloads: number;
1023
+ verified: boolean;
1024
+ samplePages?: string[] | undefined;
1025
+ } | {
1026
+ id: string;
1027
+ type: "template";
1028
+ name: string;
1029
+ description: string;
1030
+ category: "demo" | "starter" | "full_solution";
1031
+ tags: string[];
1032
+ author: string;
1033
+ version: string;
1034
+ createdAt: string;
1035
+ updatedAt: string;
1036
+ rating: number;
1037
+ downloads: number;
1038
+ verified: boolean;
1039
+ skillsIncluded: string[];
1040
+ mcpsIncluded: string[];
1041
+ agentsIncluded: string[];
1042
+ wikiIncluded?: string | undefined;
1043
+ instanceConfig?: any;
1044
+ deploymentGuide?: string | undefined;
1045
+ })[];
1046
+ limit: number;
1047
+ offset: number;
1048
+ total: number;
1049
+ hasMore: boolean;
1050
+ }, {
1051
+ items: ({
1052
+ id: string;
1053
+ type: "agent";
1054
+ name: string;
1055
+ description: string;
1056
+ category: "industry" | "domain" | "general";
1057
+ tags: string[];
1058
+ author: string;
1059
+ version: string;
1060
+ createdAt: string;
1061
+ updatedAt: string;
1062
+ skillsIncluded: string[];
1063
+ mcpsIncluded: string[];
1064
+ wikiIncluded: boolean;
1065
+ agentConfig?: any;
1066
+ previewImage?: string | undefined;
1067
+ rating?: number | undefined;
1068
+ downloads?: number | undefined;
1069
+ verified?: boolean | undefined;
1070
+ demoUrl?: string | undefined;
1071
+ } | {
1072
+ id: string;
1073
+ type: "skill";
1074
+ name: string;
1075
+ description: string;
1076
+ category: "query" | "business" | "control" | "utility";
1077
+ tags: string[];
1078
+ author: string;
1079
+ version: string;
1080
+ createdAt: string;
1081
+ updatedAt: string;
1082
+ skillType: "custom" | "builtin" | "generated";
1083
+ sourceUrl?: string | undefined;
1084
+ dependencies?: string[] | undefined;
1085
+ rating?: number | undefined;
1086
+ downloads?: number | undefined;
1087
+ verified?: boolean | undefined;
1088
+ skillConfig?: any;
1089
+ } | {
1090
+ id: string;
1091
+ type: "mcp";
1092
+ name: string;
1093
+ description: string;
1094
+ category: "data_source" | "external_service" | "notification" | "ai_service";
1095
+ tags: string[];
1096
+ author: string;
1097
+ version: string;
1098
+ createdAt: string;
1099
+ updatedAt: string;
1100
+ protocol: "stdio" | "http" | "streamable_http" | "sse";
1101
+ setupGuide?: string | undefined;
1102
+ authRequired?: boolean | undefined;
1103
+ rating?: number | undefined;
1104
+ downloads?: number | undefined;
1105
+ verified?: boolean | undefined;
1106
+ templateConfig?: any;
1107
+ } | {
1108
+ id: string;
1109
+ type: "wiki";
1110
+ name: string;
1111
+ description: string;
1112
+ category: "industry" | "domain" | "project";
1113
+ tags: string[];
1114
+ author: string;
1115
+ version: string;
1116
+ createdAt: string;
1117
+ updatedAt: string;
1118
+ wikiType: "general" | "radar" | "weather" | "drone" | "air_traffic";
1119
+ pagesCount?: number | undefined;
1120
+ entitiesCount?: number | undefined;
1121
+ conceptsCount?: number | undefined;
1122
+ rating?: number | undefined;
1123
+ downloads?: number | undefined;
1124
+ verified?: boolean | undefined;
1125
+ samplePages?: string[] | undefined;
1126
+ } | {
1127
+ id: string;
1128
+ type: "template";
1129
+ name: string;
1130
+ description: string;
1131
+ category: "demo" | "starter" | "full_solution";
1132
+ tags: string[];
1133
+ author: string;
1134
+ version: string;
1135
+ createdAt: string;
1136
+ updatedAt: string;
1137
+ skillsIncluded: string[];
1138
+ mcpsIncluded: string[];
1139
+ agentsIncluded: string[];
1140
+ rating?: number | undefined;
1141
+ downloads?: number | undefined;
1142
+ verified?: boolean | undefined;
1143
+ wikiIncluded?: string | undefined;
1144
+ instanceConfig?: any;
1145
+ deploymentGuide?: string | undefined;
1146
+ })[];
1147
+ limit: number;
1148
+ offset: number;
1149
+ total: number;
1150
+ hasMore: boolean;
1151
+ }>;
1152
+ export declare const UserAssetSchema: z.ZodObject<{
1153
+ id: z.ZodString;
1154
+ userId: z.ZodString;
1155
+ itemType: z.ZodEnum<["agent", "skill", "mcp", "wiki", "template"]>;
1156
+ itemId: z.ZodString;
1157
+ acquiredAt: z.ZodString;
1158
+ acquisitionType: z.ZodEnum<["download", "purchase", "create"]>;
1159
+ usageCount: z.ZodDefault<z.ZodNumber>;
1160
+ lastUsedAt: z.ZodOptional<z.ZodString>;
1161
+ notes: z.ZodOptional<z.ZodString>;
1162
+ }, "strip", z.ZodTypeAny, {
1163
+ id: string;
1164
+ userId: string;
1165
+ itemType: "skill" | "mcp" | "wiki" | "agent" | "template";
1166
+ itemId: string;
1167
+ acquiredAt: string;
1168
+ acquisitionType: "download" | "purchase" | "create";
1169
+ usageCount: number;
1170
+ lastUsedAt?: string | undefined;
1171
+ notes?: string | undefined;
1172
+ }, {
1173
+ id: string;
1174
+ userId: string;
1175
+ itemType: "skill" | "mcp" | "wiki" | "agent" | "template";
1176
+ itemId: string;
1177
+ acquiredAt: string;
1178
+ acquisitionType: "download" | "purchase" | "create";
1179
+ usageCount?: number | undefined;
1180
+ lastUsedAt?: string | undefined;
1181
+ notes?: string | undefined;
1182
+ }>;
1183
+ export declare const UserAssetsListSchema: z.ZodObject<{
1184
+ assets: z.ZodArray<z.ZodObject<{
1185
+ id: z.ZodString;
1186
+ userId: z.ZodString;
1187
+ itemType: z.ZodEnum<["agent", "skill", "mcp", "wiki", "template"]>;
1188
+ itemId: z.ZodString;
1189
+ acquiredAt: z.ZodString;
1190
+ acquisitionType: z.ZodEnum<["download", "purchase", "create"]>;
1191
+ usageCount: z.ZodDefault<z.ZodNumber>;
1192
+ lastUsedAt: z.ZodOptional<z.ZodString>;
1193
+ notes: z.ZodOptional<z.ZodString>;
1194
+ }, "strip", z.ZodTypeAny, {
1195
+ id: string;
1196
+ userId: string;
1197
+ itemType: "skill" | "mcp" | "wiki" | "agent" | "template";
1198
+ itemId: string;
1199
+ acquiredAt: string;
1200
+ acquisitionType: "download" | "purchase" | "create";
1201
+ usageCount: number;
1202
+ lastUsedAt?: string | undefined;
1203
+ notes?: string | undefined;
1204
+ }, {
1205
+ id: string;
1206
+ userId: string;
1207
+ itemType: "skill" | "mcp" | "wiki" | "agent" | "template";
1208
+ itemId: string;
1209
+ acquiredAt: string;
1210
+ acquisitionType: "download" | "purchase" | "create";
1211
+ usageCount?: number | undefined;
1212
+ lastUsedAt?: string | undefined;
1213
+ notes?: string | undefined;
1214
+ }>, "many">;
1215
+ total: z.ZodNumber;
1216
+ }, "strip", z.ZodTypeAny, {
1217
+ total: number;
1218
+ assets: {
1219
+ id: string;
1220
+ userId: string;
1221
+ itemType: "skill" | "mcp" | "wiki" | "agent" | "template";
1222
+ itemId: string;
1223
+ acquiredAt: string;
1224
+ acquisitionType: "download" | "purchase" | "create";
1225
+ usageCount: number;
1226
+ lastUsedAt?: string | undefined;
1227
+ notes?: string | undefined;
1228
+ }[];
1229
+ }, {
1230
+ total: number;
1231
+ assets: {
1232
+ id: string;
1233
+ userId: string;
1234
+ itemType: "skill" | "mcp" | "wiki" | "agent" | "template";
1235
+ itemId: string;
1236
+ acquiredAt: string;
1237
+ acquisitionType: "download" | "purchase" | "create";
1238
+ usageCount?: number | undefined;
1239
+ lastUsedAt?: string | undefined;
1240
+ notes?: string | undefined;
1241
+ }[];
1242
+ }>;