@renai-labs/sdk 0.1.2 → 0.1.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.
- package/dist/generated/@tanstack/react-query.gen.d.ts +73 -9
- package/dist/generated/@tanstack/react-query.gen.js +54 -6
- package/dist/generated/internal/types.gen.d.ts +252 -0
- package/dist/generated/sdk.gen.d.ts +30 -10
- package/dist/generated/sdk.gen.js +52 -12
- package/dist/generated/types.gen.d.ts +194 -69
- package/dist/generated/zod.gen.d.ts +357 -97
- package/dist/generated/zod.gen.js +126 -68
- package/package.json +1 -1
|
@@ -131,6 +131,51 @@ export declare const zPermissionConfig: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
131
131
|
deny: "deny";
|
|
132
132
|
ask: "ask";
|
|
133
133
|
}>]>;
|
|
134
|
+
export declare const zReplayPresignDownloadResponse: z.ZodObject<{
|
|
135
|
+
url: z.ZodString;
|
|
136
|
+
expiresAt: z.ZodISODateTime;
|
|
137
|
+
}, z.core.$strip>;
|
|
138
|
+
export declare const zReplayMessage: z.ZodObject<{
|
|
139
|
+
info: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
140
|
+
parts: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
141
|
+
}, z.core.$strip>;
|
|
142
|
+
export declare const zReplayPublicSession: z.ZodObject<{
|
|
143
|
+
id: z.ZodString;
|
|
144
|
+
title: z.ZodString;
|
|
145
|
+
createdAt: z.ZodISODateTime;
|
|
146
|
+
}, z.core.$strip>;
|
|
147
|
+
export declare const zWebsiteMetadata: z.ZodObject<{
|
|
148
|
+
title: z.ZodOptional<z.ZodString>;
|
|
149
|
+
description: z.ZodOptional<z.ZodString>;
|
|
150
|
+
longDescription: z.ZodOptional<z.ZodString>;
|
|
151
|
+
image: z.ZodOptional<z.ZodURL>;
|
|
152
|
+
favicon: z.ZodOptional<z.ZodURL>;
|
|
153
|
+
supportUrl: z.ZodOptional<z.ZodURL>;
|
|
154
|
+
privacyPolicyUrl: z.ZodOptional<z.ZodURL>;
|
|
155
|
+
}, z.core.$strip>;
|
|
156
|
+
export declare const zReplayPublicView: z.ZodObject<{
|
|
157
|
+
id: z.ZodString;
|
|
158
|
+
slug: z.ZodString;
|
|
159
|
+
createdAt: z.ZodISODateTime;
|
|
160
|
+
websiteMetadata: z.ZodNullable<z.ZodObject<{
|
|
161
|
+
title: z.ZodOptional<z.ZodString>;
|
|
162
|
+
description: z.ZodOptional<z.ZodString>;
|
|
163
|
+
longDescription: z.ZodOptional<z.ZodString>;
|
|
164
|
+
image: z.ZodOptional<z.ZodURL>;
|
|
165
|
+
favicon: z.ZodOptional<z.ZodURL>;
|
|
166
|
+
supportUrl: z.ZodOptional<z.ZodURL>;
|
|
167
|
+
privacyPolicyUrl: z.ZodOptional<z.ZodURL>;
|
|
168
|
+
}, z.core.$strip>>;
|
|
169
|
+
session: z.ZodObject<{
|
|
170
|
+
id: z.ZodString;
|
|
171
|
+
title: z.ZodString;
|
|
172
|
+
createdAt: z.ZodISODateTime;
|
|
173
|
+
}, z.core.$strip>;
|
|
174
|
+
messages: z.ZodArray<z.ZodObject<{
|
|
175
|
+
info: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
176
|
+
parts: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
177
|
+
}, z.core.$strip>>;
|
|
178
|
+
}, z.core.$strip>;
|
|
134
179
|
export declare const zBlueprintReplayRef: z.ZodObject<{
|
|
135
180
|
replayId: z.ZodString;
|
|
136
181
|
}, z.core.$strip>;
|
|
@@ -456,15 +501,6 @@ export declare const zBlueprintTemplate: z.ZodObject<{
|
|
|
456
501
|
replayId: z.ZodString;
|
|
457
502
|
}, z.core.$strip>>;
|
|
458
503
|
}, z.core.$strip>;
|
|
459
|
-
export declare const zWebsiteMetadata: z.ZodObject<{
|
|
460
|
-
title: z.ZodOptional<z.ZodString>;
|
|
461
|
-
description: z.ZodOptional<z.ZodString>;
|
|
462
|
-
longDescription: z.ZodOptional<z.ZodString>;
|
|
463
|
-
image: z.ZodOptional<z.ZodURL>;
|
|
464
|
-
favicon: z.ZodOptional<z.ZodURL>;
|
|
465
|
-
supportUrl: z.ZodOptional<z.ZodURL>;
|
|
466
|
-
privacyPolicyUrl: z.ZodOptional<z.ZodURL>;
|
|
467
|
-
}, z.core.$strip>;
|
|
468
504
|
export declare const zBlueprintPublicView: z.ZodObject<{
|
|
469
505
|
id: z.ZodString;
|
|
470
506
|
slug: z.ZodString;
|
|
@@ -645,31 +681,33 @@ export declare const zBlueprintPublicView: z.ZodObject<{
|
|
|
645
681
|
}, z.core.$strip>>;
|
|
646
682
|
}, z.core.$strip>;
|
|
647
683
|
}, z.core.$strip>;
|
|
648
|
-
export declare const
|
|
649
|
-
url: z.
|
|
650
|
-
|
|
651
|
-
}, z.core.$strip>;
|
|
652
|
-
export declare const zReplayMessage: z.ZodObject<{
|
|
653
|
-
info: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
654
|
-
parts: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
655
|
-
}, z.core.$strip>;
|
|
656
|
-
export declare const zReplayPublicSession: z.ZodObject<{
|
|
657
|
-
id: z.ZodString;
|
|
658
|
-
title: z.ZodString;
|
|
659
|
-
createdAt: z.ZodISODateTime;
|
|
684
|
+
export declare const zRepository: z.ZodObject<{
|
|
685
|
+
url: z.ZodOptional<z.ZodURL>;
|
|
686
|
+
source: z.ZodOptional<z.ZodString>;
|
|
660
687
|
}, z.core.$strip>;
|
|
661
|
-
export declare const
|
|
688
|
+
export declare const zAgentLatestVersion: z.ZodObject<{
|
|
662
689
|
id: z.ZodString;
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
690
|
+
agentId: z.ZodString;
|
|
691
|
+
version: z.ZodString;
|
|
692
|
+
description: z.ZodNullable<z.ZodString>;
|
|
693
|
+
skills: z.ZodArray<z.ZodObject<{
|
|
694
|
+
skillId: z.ZodString;
|
|
695
|
+
skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
696
|
+
skill: z.ZodObject<{
|
|
697
|
+
id: z.ZodString;
|
|
698
|
+
slug: z.ZodString;
|
|
699
|
+
name: z.ZodString;
|
|
700
|
+
icon: z.ZodNullable<z.ZodString>;
|
|
701
|
+
}, z.core.$strip>;
|
|
702
|
+
}, z.core.$strip>>;
|
|
703
|
+
mcps: z.ZodArray<z.ZodObject<{
|
|
704
|
+
mcpId: z.ZodString;
|
|
705
|
+
mcp: z.ZodObject<{
|
|
706
|
+
id: z.ZodString;
|
|
707
|
+
slug: z.ZodString;
|
|
708
|
+
name: z.ZodString;
|
|
709
|
+
icon: z.ZodNullable<z.ZodString>;
|
|
710
|
+
}, z.core.$strip>;
|
|
673
711
|
}, z.core.$strip>>;
|
|
674
712
|
}, z.core.$strip>;
|
|
675
713
|
export declare const zOAuthStartInput: z.ZodObject<{
|
|
@@ -883,10 +921,6 @@ export declare const zSkillVersion: z.ZodObject<{
|
|
|
883
921
|
}, z.core.$strip>>;
|
|
884
922
|
releaseNotes: z.ZodNullable<z.ZodString>;
|
|
885
923
|
}, z.core.$strip>;
|
|
886
|
-
export declare const zRepository: z.ZodObject<{
|
|
887
|
-
url: z.ZodOptional<z.ZodURL>;
|
|
888
|
-
source: z.ZodOptional<z.ZodString>;
|
|
889
|
-
}, z.core.$strip>;
|
|
890
924
|
export declare const zSkill: z.ZodObject<{
|
|
891
925
|
id: z.ZodString;
|
|
892
926
|
slug: z.ZodString;
|
|
@@ -1062,6 +1096,9 @@ export declare const zSessionMessagesPage: z.ZodObject<{
|
|
|
1062
1096
|
pageSize: z.ZodInt;
|
|
1063
1097
|
total: z.ZodInt;
|
|
1064
1098
|
}, z.core.$strip>;
|
|
1099
|
+
export declare const zSessionUrlResponse: z.ZodObject<{
|
|
1100
|
+
url: z.ZodString;
|
|
1101
|
+
}, z.core.$strip>;
|
|
1065
1102
|
export declare const zOpencodeSession: z.ZodObject<{
|
|
1066
1103
|
id: z.ZodString;
|
|
1067
1104
|
createdById: z.ZodString;
|
|
@@ -1113,6 +1150,7 @@ export declare const zReplay: z.ZodObject<{
|
|
|
1113
1150
|
sessionId: z.ZodString;
|
|
1114
1151
|
publisherId: z.ZodNullable<z.ZodString>;
|
|
1115
1152
|
slug: z.ZodString;
|
|
1153
|
+
shareToken: z.ZodNullable<z.ZodString>;
|
|
1116
1154
|
websiteMetadata: z.ZodNullable<z.ZodObject<{
|
|
1117
1155
|
title: z.ZodOptional<z.ZodString>;
|
|
1118
1156
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -2219,30 +2257,6 @@ export declare const zSearchResult: z.ZodObject<{
|
|
|
2219
2257
|
}>;
|
|
2220
2258
|
updatedAt: z.ZodISODateTime;
|
|
2221
2259
|
}, z.core.$strip>;
|
|
2222
|
-
export declare const zAgentLatestVersion: z.ZodObject<{
|
|
2223
|
-
id: z.ZodString;
|
|
2224
|
-
agentId: z.ZodString;
|
|
2225
|
-
version: z.ZodString;
|
|
2226
|
-
skills: z.ZodArray<z.ZodObject<{
|
|
2227
|
-
skillId: z.ZodString;
|
|
2228
|
-
skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
2229
|
-
skill: z.ZodObject<{
|
|
2230
|
-
id: z.ZodString;
|
|
2231
|
-
slug: z.ZodString;
|
|
2232
|
-
name: z.ZodString;
|
|
2233
|
-
icon: z.ZodNullable<z.ZodString>;
|
|
2234
|
-
}, z.core.$strip>;
|
|
2235
|
-
}, z.core.$strip>>;
|
|
2236
|
-
mcps: z.ZodArray<z.ZodObject<{
|
|
2237
|
-
mcpId: z.ZodString;
|
|
2238
|
-
mcp: z.ZodObject<{
|
|
2239
|
-
id: z.ZodString;
|
|
2240
|
-
slug: z.ZodString;
|
|
2241
|
-
name: z.ZodString;
|
|
2242
|
-
icon: z.ZodNullable<z.ZodString>;
|
|
2243
|
-
}, z.core.$strip>;
|
|
2244
|
-
}, z.core.$strip>>;
|
|
2245
|
-
}, z.core.$strip>;
|
|
2246
2260
|
export declare const zAgent: z.ZodObject<{
|
|
2247
2261
|
id: z.ZodString;
|
|
2248
2262
|
slug: z.ZodString;
|
|
@@ -2267,10 +2281,12 @@ export declare const zAgent: z.ZodObject<{
|
|
|
2267
2281
|
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2268
2282
|
deprecatedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2269
2283
|
deprecationMessage: z.ZodNullable<z.ZodString>;
|
|
2284
|
+
tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
2270
2285
|
latestVersion: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2271
2286
|
id: z.ZodString;
|
|
2272
2287
|
agentId: z.ZodString;
|
|
2273
2288
|
version: z.ZodString;
|
|
2289
|
+
description: z.ZodNullable<z.ZodString>;
|
|
2274
2290
|
skills: z.ZodArray<z.ZodObject<{
|
|
2275
2291
|
skillId: z.ZodString;
|
|
2276
2292
|
skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -2332,10 +2348,12 @@ export declare const zAgentListResponse: z.ZodArray<z.ZodObject<{
|
|
|
2332
2348
|
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2333
2349
|
deprecatedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2334
2350
|
deprecationMessage: z.ZodNullable<z.ZodString>;
|
|
2351
|
+
tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
2335
2352
|
latestVersion: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2336
2353
|
id: z.ZodString;
|
|
2337
2354
|
agentId: z.ZodString;
|
|
2338
2355
|
version: z.ZodString;
|
|
2356
|
+
description: z.ZodNullable<z.ZodString>;
|
|
2339
2357
|
skills: z.ZodArray<z.ZodObject<{
|
|
2340
2358
|
skillId: z.ZodString;
|
|
2341
2359
|
skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -2361,6 +2379,149 @@ export declare const zAgentCreateBody: z.ZodObject<{
|
|
|
2361
2379
|
name: z.ZodString;
|
|
2362
2380
|
icon: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
2363
2381
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2382
|
+
version: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodEnum<{
|
|
2383
|
+
patch: "patch";
|
|
2384
|
+
major: "major";
|
|
2385
|
+
minor: "minor";
|
|
2386
|
+
}>]>>>;
|
|
2387
|
+
description: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2388
|
+
prompt: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2389
|
+
model: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
2390
|
+
permission: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
2391
|
+
__originalKeys: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2392
|
+
read: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
2393
|
+
allow: "allow";
|
|
2394
|
+
deny: "deny";
|
|
2395
|
+
ask: "ask";
|
|
2396
|
+
}>, z.ZodRecord<z.ZodString, z.ZodEnum<{
|
|
2397
|
+
allow: "allow";
|
|
2398
|
+
deny: "deny";
|
|
2399
|
+
ask: "ask";
|
|
2400
|
+
}>>]>>;
|
|
2401
|
+
edit: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
2402
|
+
allow: "allow";
|
|
2403
|
+
deny: "deny";
|
|
2404
|
+
ask: "ask";
|
|
2405
|
+
}>, z.ZodRecord<z.ZodString, z.ZodEnum<{
|
|
2406
|
+
allow: "allow";
|
|
2407
|
+
deny: "deny";
|
|
2408
|
+
ask: "ask";
|
|
2409
|
+
}>>]>>;
|
|
2410
|
+
glob: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
2411
|
+
allow: "allow";
|
|
2412
|
+
deny: "deny";
|
|
2413
|
+
ask: "ask";
|
|
2414
|
+
}>, z.ZodRecord<z.ZodString, z.ZodEnum<{
|
|
2415
|
+
allow: "allow";
|
|
2416
|
+
deny: "deny";
|
|
2417
|
+
ask: "ask";
|
|
2418
|
+
}>>]>>;
|
|
2419
|
+
grep: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
2420
|
+
allow: "allow";
|
|
2421
|
+
deny: "deny";
|
|
2422
|
+
ask: "ask";
|
|
2423
|
+
}>, z.ZodRecord<z.ZodString, z.ZodEnum<{
|
|
2424
|
+
allow: "allow";
|
|
2425
|
+
deny: "deny";
|
|
2426
|
+
ask: "ask";
|
|
2427
|
+
}>>]>>;
|
|
2428
|
+
list: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
2429
|
+
allow: "allow";
|
|
2430
|
+
deny: "deny";
|
|
2431
|
+
ask: "ask";
|
|
2432
|
+
}>, z.ZodRecord<z.ZodString, z.ZodEnum<{
|
|
2433
|
+
allow: "allow";
|
|
2434
|
+
deny: "deny";
|
|
2435
|
+
ask: "ask";
|
|
2436
|
+
}>>]>>;
|
|
2437
|
+
bash: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
2438
|
+
allow: "allow";
|
|
2439
|
+
deny: "deny";
|
|
2440
|
+
ask: "ask";
|
|
2441
|
+
}>, z.ZodRecord<z.ZodString, z.ZodEnum<{
|
|
2442
|
+
allow: "allow";
|
|
2443
|
+
deny: "deny";
|
|
2444
|
+
ask: "ask";
|
|
2445
|
+
}>>]>>;
|
|
2446
|
+
task: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
2447
|
+
allow: "allow";
|
|
2448
|
+
deny: "deny";
|
|
2449
|
+
ask: "ask";
|
|
2450
|
+
}>, z.ZodRecord<z.ZodString, z.ZodEnum<{
|
|
2451
|
+
allow: "allow";
|
|
2452
|
+
deny: "deny";
|
|
2453
|
+
ask: "ask";
|
|
2454
|
+
}>>]>>;
|
|
2455
|
+
external_directory: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
2456
|
+
allow: "allow";
|
|
2457
|
+
deny: "deny";
|
|
2458
|
+
ask: "ask";
|
|
2459
|
+
}>, z.ZodRecord<z.ZodString, z.ZodEnum<{
|
|
2460
|
+
allow: "allow";
|
|
2461
|
+
deny: "deny";
|
|
2462
|
+
ask: "ask";
|
|
2463
|
+
}>>]>>;
|
|
2464
|
+
todowrite: z.ZodOptional<z.ZodEnum<{
|
|
2465
|
+
allow: "allow";
|
|
2466
|
+
deny: "deny";
|
|
2467
|
+
ask: "ask";
|
|
2468
|
+
}>>;
|
|
2469
|
+
question: z.ZodOptional<z.ZodEnum<{
|
|
2470
|
+
allow: "allow";
|
|
2471
|
+
deny: "deny";
|
|
2472
|
+
ask: "ask";
|
|
2473
|
+
}>>;
|
|
2474
|
+
webfetch: z.ZodOptional<z.ZodEnum<{
|
|
2475
|
+
allow: "allow";
|
|
2476
|
+
deny: "deny";
|
|
2477
|
+
ask: "ask";
|
|
2478
|
+
}>>;
|
|
2479
|
+
websearch: z.ZodOptional<z.ZodEnum<{
|
|
2480
|
+
allow: "allow";
|
|
2481
|
+
deny: "deny";
|
|
2482
|
+
ask: "ask";
|
|
2483
|
+
}>>;
|
|
2484
|
+
codesearch: z.ZodOptional<z.ZodEnum<{
|
|
2485
|
+
allow: "allow";
|
|
2486
|
+
deny: "deny";
|
|
2487
|
+
ask: "ask";
|
|
2488
|
+
}>>;
|
|
2489
|
+
lsp: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
2490
|
+
allow: "allow";
|
|
2491
|
+
deny: "deny";
|
|
2492
|
+
ask: "ask";
|
|
2493
|
+
}>, z.ZodRecord<z.ZodString, z.ZodEnum<{
|
|
2494
|
+
allow: "allow";
|
|
2495
|
+
deny: "deny";
|
|
2496
|
+
ask: "ask";
|
|
2497
|
+
}>>]>>;
|
|
2498
|
+
doom_loop: z.ZodOptional<z.ZodEnum<{
|
|
2499
|
+
allow: "allow";
|
|
2500
|
+
deny: "deny";
|
|
2501
|
+
ask: "ask";
|
|
2502
|
+
}>>;
|
|
2503
|
+
skill: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
2504
|
+
allow: "allow";
|
|
2505
|
+
deny: "deny";
|
|
2506
|
+
ask: "ask";
|
|
2507
|
+
}>, z.ZodRecord<z.ZodString, z.ZodEnum<{
|
|
2508
|
+
allow: "allow";
|
|
2509
|
+
deny: "deny";
|
|
2510
|
+
ask: "ask";
|
|
2511
|
+
}>>]>>;
|
|
2512
|
+
}, z.core.$strip>, z.ZodEnum<{
|
|
2513
|
+
allow: "allow";
|
|
2514
|
+
deny: "deny";
|
|
2515
|
+
ask: "ask";
|
|
2516
|
+
}>]>>;
|
|
2517
|
+
skills: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2518
|
+
skillId: z.ZodString;
|
|
2519
|
+
skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
2520
|
+
}, z.core.$strip>>>>;
|
|
2521
|
+
mcps: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2522
|
+
mcpId: z.ZodString;
|
|
2523
|
+
}, z.core.$strip>>>>;
|
|
2524
|
+
releaseNotes: z.ZodOptional<z.ZodString>;
|
|
2364
2525
|
}, z.core.$strip>;
|
|
2365
2526
|
export declare const zAgentCreateQuery: z.ZodObject<{
|
|
2366
2527
|
scope: z.ZodOptional<z.ZodEnum<{
|
|
@@ -2394,10 +2555,12 @@ export declare const zAgentCreateResponse: z.ZodObject<{
|
|
|
2394
2555
|
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2395
2556
|
deprecatedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2396
2557
|
deprecationMessage: z.ZodNullable<z.ZodString>;
|
|
2558
|
+
tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
2397
2559
|
latestVersion: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2398
2560
|
id: z.ZodString;
|
|
2399
2561
|
agentId: z.ZodString;
|
|
2400
2562
|
version: z.ZodString;
|
|
2563
|
+
description: z.ZodNullable<z.ZodString>;
|
|
2401
2564
|
skills: z.ZodArray<z.ZodObject<{
|
|
2402
2565
|
skillId: z.ZodString;
|
|
2403
2566
|
skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -2484,10 +2647,12 @@ export declare const zAgentGetBySlugResponse: z.ZodObject<{
|
|
|
2484
2647
|
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2485
2648
|
deprecatedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2486
2649
|
deprecationMessage: z.ZodNullable<z.ZodString>;
|
|
2650
|
+
tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
2487
2651
|
latestVersion: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2488
2652
|
id: z.ZodString;
|
|
2489
2653
|
agentId: z.ZodString;
|
|
2490
2654
|
version: z.ZodString;
|
|
2655
|
+
description: z.ZodNullable<z.ZodString>;
|
|
2491
2656
|
skills: z.ZodArray<z.ZodObject<{
|
|
2492
2657
|
skillId: z.ZodString;
|
|
2493
2658
|
skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -2544,10 +2709,12 @@ export declare const zAgentGetResponse: z.ZodObject<{
|
|
|
2544
2709
|
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2545
2710
|
deprecatedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2546
2711
|
deprecationMessage: z.ZodNullable<z.ZodString>;
|
|
2712
|
+
tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
2547
2713
|
latestVersion: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2548
2714
|
id: z.ZodString;
|
|
2549
2715
|
agentId: z.ZodString;
|
|
2550
2716
|
version: z.ZodString;
|
|
2717
|
+
description: z.ZodNullable<z.ZodString>;
|
|
2551
2718
|
skills: z.ZodArray<z.ZodObject<{
|
|
2552
2719
|
skillId: z.ZodString;
|
|
2553
2720
|
skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -2618,10 +2785,12 @@ export declare const zAgentUpdateResponse: z.ZodObject<{
|
|
|
2618
2785
|
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2619
2786
|
deprecatedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2620
2787
|
deprecationMessage: z.ZodNullable<z.ZodString>;
|
|
2788
|
+
tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
2621
2789
|
latestVersion: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2622
2790
|
id: z.ZodString;
|
|
2623
2791
|
agentId: z.ZodString;
|
|
2624
2792
|
version: z.ZodString;
|
|
2793
|
+
description: z.ZodNullable<z.ZodString>;
|
|
2625
2794
|
skills: z.ZodArray<z.ZodObject<{
|
|
2626
2795
|
skillId: z.ZodString;
|
|
2627
2796
|
skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -2678,10 +2847,12 @@ export declare const zAgentArchiveResponse: z.ZodObject<{
|
|
|
2678
2847
|
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2679
2848
|
deprecatedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2680
2849
|
deprecationMessage: z.ZodNullable<z.ZodString>;
|
|
2850
|
+
tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
2681
2851
|
latestVersion: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2682
2852
|
id: z.ZodString;
|
|
2683
2853
|
agentId: z.ZodString;
|
|
2684
2854
|
version: z.ZodString;
|
|
2855
|
+
description: z.ZodNullable<z.ZodString>;
|
|
2685
2856
|
skills: z.ZodArray<z.ZodObject<{
|
|
2686
2857
|
skillId: z.ZodString;
|
|
2687
2858
|
skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -2738,10 +2909,12 @@ export declare const zAgentPublishResponse: z.ZodObject<{
|
|
|
2738
2909
|
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2739
2910
|
deprecatedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2740
2911
|
deprecationMessage: z.ZodNullable<z.ZodString>;
|
|
2912
|
+
tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
2741
2913
|
latestVersion: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2742
2914
|
id: z.ZodString;
|
|
2743
2915
|
agentId: z.ZodString;
|
|
2744
2916
|
version: z.ZodString;
|
|
2917
|
+
description: z.ZodNullable<z.ZodString>;
|
|
2745
2918
|
skills: z.ZodArray<z.ZodObject<{
|
|
2746
2919
|
skillId: z.ZodString;
|
|
2747
2920
|
skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -2801,10 +2974,12 @@ export declare const zAgentDeprecateResponse: z.ZodObject<{
|
|
|
2801
2974
|
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2802
2975
|
deprecatedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2803
2976
|
deprecationMessage: z.ZodNullable<z.ZodString>;
|
|
2977
|
+
tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
2804
2978
|
latestVersion: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2805
2979
|
id: z.ZodString;
|
|
2806
2980
|
agentId: z.ZodString;
|
|
2807
2981
|
version: z.ZodString;
|
|
2982
|
+
description: z.ZodNullable<z.ZodString>;
|
|
2808
2983
|
skills: z.ZodArray<z.ZodObject<{
|
|
2809
2984
|
skillId: z.ZodString;
|
|
2810
2985
|
skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -2861,10 +3036,12 @@ export declare const zAgentUndeprecateResponse: z.ZodObject<{
|
|
|
2861
3036
|
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2862
3037
|
deprecatedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2863
3038
|
deprecationMessage: z.ZodNullable<z.ZodString>;
|
|
3039
|
+
tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
2864
3040
|
latestVersion: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2865
3041
|
id: z.ZodString;
|
|
2866
3042
|
agentId: z.ZodString;
|
|
2867
3043
|
version: z.ZodString;
|
|
3044
|
+
description: z.ZodNullable<z.ZodString>;
|
|
2868
3045
|
skills: z.ZodArray<z.ZodObject<{
|
|
2869
3046
|
skillId: z.ZodString;
|
|
2870
3047
|
skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -9071,6 +9248,7 @@ export declare const zReplayListResponse: z.ZodArray<z.ZodObject<{
|
|
|
9071
9248
|
sessionId: z.ZodString;
|
|
9072
9249
|
publisherId: z.ZodNullable<z.ZodString>;
|
|
9073
9250
|
slug: z.ZodString;
|
|
9251
|
+
shareToken: z.ZodNullable<z.ZodString>;
|
|
9074
9252
|
websiteMetadata: z.ZodNullable<z.ZodObject<{
|
|
9075
9253
|
title: z.ZodOptional<z.ZodString>;
|
|
9076
9254
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -9098,6 +9276,7 @@ export declare const zReplayCreateBody: z.ZodObject<{
|
|
|
9098
9276
|
supportUrl: z.ZodOptional<z.ZodURL>;
|
|
9099
9277
|
privacyPolicyUrl: z.ZodOptional<z.ZodURL>;
|
|
9100
9278
|
}, z.core.$strip>>>>;
|
|
9279
|
+
shareToken: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
9101
9280
|
}, z.core.$strip>;
|
|
9102
9281
|
export declare const zReplayCreateQuery: z.ZodObject<{
|
|
9103
9282
|
scope: z.ZodOptional<z.ZodEnum<{
|
|
@@ -9114,6 +9293,7 @@ export declare const zReplayCreateResponse: z.ZodObject<{
|
|
|
9114
9293
|
sessionId: z.ZodString;
|
|
9115
9294
|
publisherId: z.ZodNullable<z.ZodString>;
|
|
9116
9295
|
slug: z.ZodString;
|
|
9296
|
+
shareToken: z.ZodNullable<z.ZodString>;
|
|
9117
9297
|
websiteMetadata: z.ZodNullable<z.ZodObject<{
|
|
9118
9298
|
title: z.ZodOptional<z.ZodString>;
|
|
9119
9299
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -9147,6 +9327,7 @@ export declare const zReplayGetResponse: z.ZodObject<{
|
|
|
9147
9327
|
sessionId: z.ZodString;
|
|
9148
9328
|
publisherId: z.ZodNullable<z.ZodString>;
|
|
9149
9329
|
slug: z.ZodString;
|
|
9330
|
+
shareToken: z.ZodNullable<z.ZodString>;
|
|
9150
9331
|
websiteMetadata: z.ZodNullable<z.ZodObject<{
|
|
9151
9332
|
title: z.ZodOptional<z.ZodString>;
|
|
9152
9333
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -9191,6 +9372,7 @@ export declare const zReplayUpdateResponse: z.ZodObject<{
|
|
|
9191
9372
|
sessionId: z.ZodString;
|
|
9192
9373
|
publisherId: z.ZodNullable<z.ZodString>;
|
|
9193
9374
|
slug: z.ZodString;
|
|
9375
|
+
shareToken: z.ZodNullable<z.ZodString>;
|
|
9194
9376
|
websiteMetadata: z.ZodNullable<z.ZodObject<{
|
|
9195
9377
|
title: z.ZodOptional<z.ZodString>;
|
|
9196
9378
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -9224,6 +9406,7 @@ export declare const zReplayArchiveResponse: z.ZodObject<{
|
|
|
9224
9406
|
sessionId: z.ZodString;
|
|
9225
9407
|
publisherId: z.ZodNullable<z.ZodString>;
|
|
9226
9408
|
slug: z.ZodString;
|
|
9409
|
+
shareToken: z.ZodNullable<z.ZodString>;
|
|
9227
9410
|
websiteMetadata: z.ZodNullable<z.ZodObject<{
|
|
9228
9411
|
title: z.ZodOptional<z.ZodString>;
|
|
9229
9412
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -9257,6 +9440,7 @@ export declare const zReplayPublishResponse: z.ZodObject<{
|
|
|
9257
9440
|
sessionId: z.ZodString;
|
|
9258
9441
|
publisherId: z.ZodNullable<z.ZodString>;
|
|
9259
9442
|
slug: z.ZodString;
|
|
9443
|
+
shareToken: z.ZodNullable<z.ZodString>;
|
|
9260
9444
|
websiteMetadata: z.ZodNullable<z.ZodObject<{
|
|
9261
9445
|
title: z.ZodOptional<z.ZodString>;
|
|
9262
9446
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -9293,6 +9477,7 @@ export declare const zReplayDeprecateResponse: z.ZodObject<{
|
|
|
9293
9477
|
sessionId: z.ZodString;
|
|
9294
9478
|
publisherId: z.ZodNullable<z.ZodString>;
|
|
9295
9479
|
slug: z.ZodString;
|
|
9480
|
+
shareToken: z.ZodNullable<z.ZodString>;
|
|
9296
9481
|
websiteMetadata: z.ZodNullable<z.ZodObject<{
|
|
9297
9482
|
title: z.ZodOptional<z.ZodString>;
|
|
9298
9483
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -9326,6 +9511,7 @@ export declare const zReplayUndeprecateResponse: z.ZodObject<{
|
|
|
9326
9511
|
sessionId: z.ZodString;
|
|
9327
9512
|
publisherId: z.ZodNullable<z.ZodString>;
|
|
9328
9513
|
slug: z.ZodString;
|
|
9514
|
+
shareToken: z.ZodNullable<z.ZodString>;
|
|
9329
9515
|
websiteMetadata: z.ZodNullable<z.ZodObject<{
|
|
9330
9516
|
title: z.ZodOptional<z.ZodString>;
|
|
9331
9517
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -9368,6 +9554,7 @@ export declare const zReplayShareResponse: z.ZodObject<{
|
|
|
9368
9554
|
sessionId: z.ZodString;
|
|
9369
9555
|
publisherId: z.ZodNullable<z.ZodString>;
|
|
9370
9556
|
slug: z.ZodString;
|
|
9557
|
+
shareToken: z.ZodNullable<z.ZodString>;
|
|
9371
9558
|
websiteMetadata: z.ZodNullable<z.ZodObject<{
|
|
9372
9559
|
title: z.ZodOptional<z.ZodString>;
|
|
9373
9560
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -9626,6 +9813,20 @@ export declare const zSessionUpdateResponse: z.ZodObject<{
|
|
|
9626
9813
|
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
9627
9814
|
compactingAt: z.ZodNullable<z.ZodISODateTime>;
|
|
9628
9815
|
}, z.core.$strip>;
|
|
9816
|
+
export declare const zSessionUrlPath: z.ZodObject<{
|
|
9817
|
+
id: z.ZodString;
|
|
9818
|
+
}, z.core.$strip>;
|
|
9819
|
+
export declare const zSessionUrlQuery: z.ZodObject<{
|
|
9820
|
+
scope: z.ZodOptional<z.ZodEnum<{
|
|
9821
|
+
user: "user";
|
|
9822
|
+
}>>;
|
|
9823
|
+
}, z.core.$strip>;
|
|
9824
|
+
/**
|
|
9825
|
+
* OpenCode URL
|
|
9826
|
+
*/
|
|
9827
|
+
export declare const zSessionUrlResponse2: z.ZodObject<{
|
|
9828
|
+
url: z.ZodString;
|
|
9829
|
+
}, z.core.$strip>;
|
|
9629
9830
|
export declare const zSessionMessagesListPath: z.ZodObject<{
|
|
9630
9831
|
id: z.ZodString;
|
|
9631
9832
|
}, z.core.$strip>;
|
|
@@ -11429,10 +11630,12 @@ export declare const zRegistryAgentListResponse: z.ZodArray<z.ZodObject<{
|
|
|
11429
11630
|
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
11430
11631
|
deprecatedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
11431
11632
|
deprecationMessage: z.ZodNullable<z.ZodString>;
|
|
11633
|
+
tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
11432
11634
|
latestVersion: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
11433
11635
|
id: z.ZodString;
|
|
11434
11636
|
agentId: z.ZodString;
|
|
11435
11637
|
version: z.ZodString;
|
|
11638
|
+
description: z.ZodNullable<z.ZodString>;
|
|
11436
11639
|
skills: z.ZodArray<z.ZodObject<{
|
|
11437
11640
|
skillId: z.ZodString;
|
|
11438
11641
|
skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -11484,10 +11687,12 @@ export declare const zRegistryAgentGetResponse: z.ZodObject<{
|
|
|
11484
11687
|
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
11485
11688
|
deprecatedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
11486
11689
|
deprecationMessage: z.ZodNullable<z.ZodString>;
|
|
11690
|
+
tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
11487
11691
|
latestVersion: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
11488
11692
|
id: z.ZodString;
|
|
11489
11693
|
agentId: z.ZodString;
|
|
11490
11694
|
version: z.ZodString;
|
|
11695
|
+
description: z.ZodNullable<z.ZodString>;
|
|
11491
11696
|
skills: z.ZodArray<z.ZodObject<{
|
|
11492
11697
|
skillId: z.ZodString;
|
|
11493
11698
|
skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -11767,43 +11972,6 @@ export declare const zRegistryMcpGetResponse: z.ZodObject<{
|
|
|
11767
11972
|
deprecationMessage: z.ZodNullable<z.ZodString>;
|
|
11768
11973
|
tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
11769
11974
|
}, z.core.$strip>;
|
|
11770
|
-
export declare const zRegistryReplayGetPath: z.ZodObject<{
|
|
11771
|
-
slug: z.ZodString;
|
|
11772
|
-
}, z.core.$strip>;
|
|
11773
|
-
/**
|
|
11774
|
-
* Public replay view
|
|
11775
|
-
*/
|
|
11776
|
-
export declare const zRegistryReplayGetResponse: z.ZodObject<{
|
|
11777
|
-
id: z.ZodString;
|
|
11778
|
-
slug: z.ZodString;
|
|
11779
|
-
createdAt: z.ZodISODateTime;
|
|
11780
|
-
session: z.ZodObject<{
|
|
11781
|
-
id: z.ZodString;
|
|
11782
|
-
title: z.ZodString;
|
|
11783
|
-
createdAt: z.ZodISODateTime;
|
|
11784
|
-
}, z.core.$strip>;
|
|
11785
|
-
messages: z.ZodArray<z.ZodObject<{
|
|
11786
|
-
info: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
11787
|
-
parts: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
11788
|
-
}, z.core.$strip>>;
|
|
11789
|
-
}, z.core.$strip>;
|
|
11790
|
-
export declare const zRegistryReplayFilesPresignDownloadBody: z.ZodObject<{
|
|
11791
|
-
kind: z.ZodEnum<{
|
|
11792
|
-
outputs: "outputs";
|
|
11793
|
-
uploads: "uploads";
|
|
11794
|
-
}>;
|
|
11795
|
-
filename: z.ZodString;
|
|
11796
|
-
}, z.core.$strip>;
|
|
11797
|
-
export declare const zRegistryReplayFilesPresignDownloadPath: z.ZodObject<{
|
|
11798
|
-
slug: z.ZodString;
|
|
11799
|
-
}, z.core.$strip>;
|
|
11800
|
-
/**
|
|
11801
|
-
* Presigned download URL
|
|
11802
|
-
*/
|
|
11803
|
-
export declare const zRegistryReplayFilesPresignDownloadResponse: z.ZodObject<{
|
|
11804
|
-
url: z.ZodString;
|
|
11805
|
-
expiresAt: z.ZodISODateTime;
|
|
11806
|
-
}, z.core.$strip>;
|
|
11807
11975
|
export declare const zRegistryBlueprintGetPath: z.ZodObject<{
|
|
11808
11976
|
slug: z.ZodString;
|
|
11809
11977
|
}, z.core.$strip>;
|
|
@@ -11990,3 +12158,95 @@ export declare const zRegistryBlueprintGetResponse: z.ZodObject<{
|
|
|
11990
12158
|
}, z.core.$strip>>;
|
|
11991
12159
|
}, z.core.$strip>;
|
|
11992
12160
|
}, z.core.$strip>;
|
|
12161
|
+
export declare const zRegistryReplayGetPath: z.ZodObject<{
|
|
12162
|
+
slug: z.ZodString;
|
|
12163
|
+
}, z.core.$strip>;
|
|
12164
|
+
/**
|
|
12165
|
+
* Public replay view
|
|
12166
|
+
*/
|
|
12167
|
+
export declare const zRegistryReplayGetResponse: z.ZodObject<{
|
|
12168
|
+
id: z.ZodString;
|
|
12169
|
+
slug: z.ZodString;
|
|
12170
|
+
createdAt: z.ZodISODateTime;
|
|
12171
|
+
websiteMetadata: z.ZodNullable<z.ZodObject<{
|
|
12172
|
+
title: z.ZodOptional<z.ZodString>;
|
|
12173
|
+
description: z.ZodOptional<z.ZodString>;
|
|
12174
|
+
longDescription: z.ZodOptional<z.ZodString>;
|
|
12175
|
+
image: z.ZodOptional<z.ZodURL>;
|
|
12176
|
+
favicon: z.ZodOptional<z.ZodURL>;
|
|
12177
|
+
supportUrl: z.ZodOptional<z.ZodURL>;
|
|
12178
|
+
privacyPolicyUrl: z.ZodOptional<z.ZodURL>;
|
|
12179
|
+
}, z.core.$strip>>;
|
|
12180
|
+
session: z.ZodObject<{
|
|
12181
|
+
id: z.ZodString;
|
|
12182
|
+
title: z.ZodString;
|
|
12183
|
+
createdAt: z.ZodISODateTime;
|
|
12184
|
+
}, z.core.$strip>;
|
|
12185
|
+
messages: z.ZodArray<z.ZodObject<{
|
|
12186
|
+
info: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
12187
|
+
parts: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
12188
|
+
}, z.core.$strip>>;
|
|
12189
|
+
}, z.core.$strip>;
|
|
12190
|
+
export declare const zRegistryReplayFilesPresignDownloadBody: z.ZodObject<{
|
|
12191
|
+
kind: z.ZodEnum<{
|
|
12192
|
+
outputs: "outputs";
|
|
12193
|
+
uploads: "uploads";
|
|
12194
|
+
}>;
|
|
12195
|
+
filename: z.ZodString;
|
|
12196
|
+
}, z.core.$strip>;
|
|
12197
|
+
export declare const zRegistryReplayFilesPresignDownloadPath: z.ZodObject<{
|
|
12198
|
+
slug: z.ZodString;
|
|
12199
|
+
}, z.core.$strip>;
|
|
12200
|
+
/**
|
|
12201
|
+
* Presigned download URL
|
|
12202
|
+
*/
|
|
12203
|
+
export declare const zRegistryReplayFilesPresignDownloadResponse: z.ZodObject<{
|
|
12204
|
+
url: z.ZodString;
|
|
12205
|
+
expiresAt: z.ZodISODateTime;
|
|
12206
|
+
}, z.core.$strip>;
|
|
12207
|
+
export declare const zRegistryReplaySharedGetPath: z.ZodObject<{
|
|
12208
|
+
token: z.ZodString;
|
|
12209
|
+
}, z.core.$strip>;
|
|
12210
|
+
/**
|
|
12211
|
+
* Public replay view
|
|
12212
|
+
*/
|
|
12213
|
+
export declare const zRegistryReplaySharedGetResponse: z.ZodObject<{
|
|
12214
|
+
id: z.ZodString;
|
|
12215
|
+
slug: z.ZodString;
|
|
12216
|
+
createdAt: z.ZodISODateTime;
|
|
12217
|
+
websiteMetadata: z.ZodNullable<z.ZodObject<{
|
|
12218
|
+
title: z.ZodOptional<z.ZodString>;
|
|
12219
|
+
description: z.ZodOptional<z.ZodString>;
|
|
12220
|
+
longDescription: z.ZodOptional<z.ZodString>;
|
|
12221
|
+
image: z.ZodOptional<z.ZodURL>;
|
|
12222
|
+
favicon: z.ZodOptional<z.ZodURL>;
|
|
12223
|
+
supportUrl: z.ZodOptional<z.ZodURL>;
|
|
12224
|
+
privacyPolicyUrl: z.ZodOptional<z.ZodURL>;
|
|
12225
|
+
}, z.core.$strip>>;
|
|
12226
|
+
session: z.ZodObject<{
|
|
12227
|
+
id: z.ZodString;
|
|
12228
|
+
title: z.ZodString;
|
|
12229
|
+
createdAt: z.ZodISODateTime;
|
|
12230
|
+
}, z.core.$strip>;
|
|
12231
|
+
messages: z.ZodArray<z.ZodObject<{
|
|
12232
|
+
info: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
12233
|
+
parts: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
12234
|
+
}, z.core.$strip>>;
|
|
12235
|
+
}, z.core.$strip>;
|
|
12236
|
+
export declare const zRegistryReplaySharedFilesPresignDownloadBody: z.ZodObject<{
|
|
12237
|
+
kind: z.ZodEnum<{
|
|
12238
|
+
outputs: "outputs";
|
|
12239
|
+
uploads: "uploads";
|
|
12240
|
+
}>;
|
|
12241
|
+
filename: z.ZodString;
|
|
12242
|
+
}, z.core.$strip>;
|
|
12243
|
+
export declare const zRegistryReplaySharedFilesPresignDownloadPath: z.ZodObject<{
|
|
12244
|
+
token: z.ZodString;
|
|
12245
|
+
}, z.core.$strip>;
|
|
12246
|
+
/**
|
|
12247
|
+
* Presigned download URL
|
|
12248
|
+
*/
|
|
12249
|
+
export declare const zRegistryReplaySharedFilesPresignDownloadResponse: z.ZodObject<{
|
|
12250
|
+
url: z.ZodString;
|
|
12251
|
+
expiresAt: z.ZodISODateTime;
|
|
12252
|
+
}, z.core.$strip>;
|