@renai-labs/sdk 0.1.3 → 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 +55 -27
- package/dist/generated/@tanstack/react-query.gen.js +33 -17
- package/dist/generated/internal/types.gen.d.ts +248 -0
- package/dist/generated/sdk.gen.d.ts +14 -10
- package/dist/generated/sdk.gen.js +22 -13
- package/dist/generated/types.gen.d.ts +131 -84
- package/dist/generated/zod.gen.d.ts +203 -134
- package/dist/generated/zod.gen.js +87 -71
- 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;
|
|
@@ -2220,30 +2257,6 @@ export declare const zSearchResult: z.ZodObject<{
|
|
|
2220
2257
|
}>;
|
|
2221
2258
|
updatedAt: z.ZodISODateTime;
|
|
2222
2259
|
}, z.core.$strip>;
|
|
2223
|
-
export declare const zAgentLatestVersion: z.ZodObject<{
|
|
2224
|
-
id: z.ZodString;
|
|
2225
|
-
agentId: z.ZodString;
|
|
2226
|
-
version: z.ZodString;
|
|
2227
|
-
skills: z.ZodArray<z.ZodObject<{
|
|
2228
|
-
skillId: z.ZodString;
|
|
2229
|
-
skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
2230
|
-
skill: z.ZodObject<{
|
|
2231
|
-
id: z.ZodString;
|
|
2232
|
-
slug: z.ZodString;
|
|
2233
|
-
name: z.ZodString;
|
|
2234
|
-
icon: z.ZodNullable<z.ZodString>;
|
|
2235
|
-
}, z.core.$strip>;
|
|
2236
|
-
}, z.core.$strip>>;
|
|
2237
|
-
mcps: z.ZodArray<z.ZodObject<{
|
|
2238
|
-
mcpId: z.ZodString;
|
|
2239
|
-
mcp: z.ZodObject<{
|
|
2240
|
-
id: z.ZodString;
|
|
2241
|
-
slug: z.ZodString;
|
|
2242
|
-
name: z.ZodString;
|
|
2243
|
-
icon: z.ZodNullable<z.ZodString>;
|
|
2244
|
-
}, z.core.$strip>;
|
|
2245
|
-
}, z.core.$strip>>;
|
|
2246
|
-
}, z.core.$strip>;
|
|
2247
2260
|
export declare const zAgent: z.ZodObject<{
|
|
2248
2261
|
id: z.ZodString;
|
|
2249
2262
|
slug: z.ZodString;
|
|
@@ -2268,10 +2281,12 @@ export declare const zAgent: z.ZodObject<{
|
|
|
2268
2281
|
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2269
2282
|
deprecatedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2270
2283
|
deprecationMessage: z.ZodNullable<z.ZodString>;
|
|
2284
|
+
tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
2271
2285
|
latestVersion: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2272
2286
|
id: z.ZodString;
|
|
2273
2287
|
agentId: z.ZodString;
|
|
2274
2288
|
version: z.ZodString;
|
|
2289
|
+
description: z.ZodNullable<z.ZodString>;
|
|
2275
2290
|
skills: z.ZodArray<z.ZodObject<{
|
|
2276
2291
|
skillId: z.ZodString;
|
|
2277
2292
|
skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -2333,10 +2348,12 @@ export declare const zAgentListResponse: z.ZodArray<z.ZodObject<{
|
|
|
2333
2348
|
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2334
2349
|
deprecatedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2335
2350
|
deprecationMessage: z.ZodNullable<z.ZodString>;
|
|
2351
|
+
tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
2336
2352
|
latestVersion: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2337
2353
|
id: z.ZodString;
|
|
2338
2354
|
agentId: z.ZodString;
|
|
2339
2355
|
version: z.ZodString;
|
|
2356
|
+
description: z.ZodNullable<z.ZodString>;
|
|
2340
2357
|
skills: z.ZodArray<z.ZodObject<{
|
|
2341
2358
|
skillId: z.ZodString;
|
|
2342
2359
|
skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -2538,10 +2555,12 @@ export declare const zAgentCreateResponse: z.ZodObject<{
|
|
|
2538
2555
|
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2539
2556
|
deprecatedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2540
2557
|
deprecationMessage: z.ZodNullable<z.ZodString>;
|
|
2558
|
+
tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
2541
2559
|
latestVersion: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2542
2560
|
id: z.ZodString;
|
|
2543
2561
|
agentId: z.ZodString;
|
|
2544
2562
|
version: z.ZodString;
|
|
2563
|
+
description: z.ZodNullable<z.ZodString>;
|
|
2545
2564
|
skills: z.ZodArray<z.ZodObject<{
|
|
2546
2565
|
skillId: z.ZodString;
|
|
2547
2566
|
skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -2628,10 +2647,12 @@ export declare const zAgentGetBySlugResponse: z.ZodObject<{
|
|
|
2628
2647
|
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2629
2648
|
deprecatedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2630
2649
|
deprecationMessage: z.ZodNullable<z.ZodString>;
|
|
2650
|
+
tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
2631
2651
|
latestVersion: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2632
2652
|
id: z.ZodString;
|
|
2633
2653
|
agentId: z.ZodString;
|
|
2634
2654
|
version: z.ZodString;
|
|
2655
|
+
description: z.ZodNullable<z.ZodString>;
|
|
2635
2656
|
skills: z.ZodArray<z.ZodObject<{
|
|
2636
2657
|
skillId: z.ZodString;
|
|
2637
2658
|
skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -2688,10 +2709,12 @@ export declare const zAgentGetResponse: z.ZodObject<{
|
|
|
2688
2709
|
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2689
2710
|
deprecatedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2690
2711
|
deprecationMessage: z.ZodNullable<z.ZodString>;
|
|
2712
|
+
tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
2691
2713
|
latestVersion: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2692
2714
|
id: z.ZodString;
|
|
2693
2715
|
agentId: z.ZodString;
|
|
2694
2716
|
version: z.ZodString;
|
|
2717
|
+
description: z.ZodNullable<z.ZodString>;
|
|
2695
2718
|
skills: z.ZodArray<z.ZodObject<{
|
|
2696
2719
|
skillId: z.ZodString;
|
|
2697
2720
|
skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -2762,10 +2785,12 @@ export declare const zAgentUpdateResponse: z.ZodObject<{
|
|
|
2762
2785
|
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2763
2786
|
deprecatedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2764
2787
|
deprecationMessage: z.ZodNullable<z.ZodString>;
|
|
2788
|
+
tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
2765
2789
|
latestVersion: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2766
2790
|
id: z.ZodString;
|
|
2767
2791
|
agentId: z.ZodString;
|
|
2768
2792
|
version: z.ZodString;
|
|
2793
|
+
description: z.ZodNullable<z.ZodString>;
|
|
2769
2794
|
skills: z.ZodArray<z.ZodObject<{
|
|
2770
2795
|
skillId: z.ZodString;
|
|
2771
2796
|
skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -2822,10 +2847,12 @@ export declare const zAgentArchiveResponse: z.ZodObject<{
|
|
|
2822
2847
|
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2823
2848
|
deprecatedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2824
2849
|
deprecationMessage: z.ZodNullable<z.ZodString>;
|
|
2850
|
+
tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
2825
2851
|
latestVersion: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2826
2852
|
id: z.ZodString;
|
|
2827
2853
|
agentId: z.ZodString;
|
|
2828
2854
|
version: z.ZodString;
|
|
2855
|
+
description: z.ZodNullable<z.ZodString>;
|
|
2829
2856
|
skills: z.ZodArray<z.ZodObject<{
|
|
2830
2857
|
skillId: z.ZodString;
|
|
2831
2858
|
skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -2882,10 +2909,12 @@ export declare const zAgentPublishResponse: z.ZodObject<{
|
|
|
2882
2909
|
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2883
2910
|
deprecatedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2884
2911
|
deprecationMessage: z.ZodNullable<z.ZodString>;
|
|
2912
|
+
tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
2885
2913
|
latestVersion: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2886
2914
|
id: z.ZodString;
|
|
2887
2915
|
agentId: z.ZodString;
|
|
2888
2916
|
version: z.ZodString;
|
|
2917
|
+
description: z.ZodNullable<z.ZodString>;
|
|
2889
2918
|
skills: z.ZodArray<z.ZodObject<{
|
|
2890
2919
|
skillId: z.ZodString;
|
|
2891
2920
|
skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -2945,10 +2974,12 @@ export declare const zAgentDeprecateResponse: z.ZodObject<{
|
|
|
2945
2974
|
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2946
2975
|
deprecatedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2947
2976
|
deprecationMessage: z.ZodNullable<z.ZodString>;
|
|
2977
|
+
tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
2948
2978
|
latestVersion: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2949
2979
|
id: z.ZodString;
|
|
2950
2980
|
agentId: z.ZodString;
|
|
2951
2981
|
version: z.ZodString;
|
|
2982
|
+
description: z.ZodNullable<z.ZodString>;
|
|
2952
2983
|
skills: z.ZodArray<z.ZodObject<{
|
|
2953
2984
|
skillId: z.ZodString;
|
|
2954
2985
|
skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -3005,10 +3036,12 @@ export declare const zAgentUndeprecateResponse: z.ZodObject<{
|
|
|
3005
3036
|
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
3006
3037
|
deprecatedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
3007
3038
|
deprecationMessage: z.ZodNullable<z.ZodString>;
|
|
3039
|
+
tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
3008
3040
|
latestVersion: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
3009
3041
|
id: z.ZodString;
|
|
3010
3042
|
agentId: z.ZodString;
|
|
3011
3043
|
version: z.ZodString;
|
|
3044
|
+
description: z.ZodNullable<z.ZodString>;
|
|
3012
3045
|
skills: z.ZodArray<z.ZodObject<{
|
|
3013
3046
|
skillId: z.ZodString;
|
|
3014
3047
|
skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -9780,6 +9813,20 @@ export declare const zSessionUpdateResponse: z.ZodObject<{
|
|
|
9780
9813
|
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
9781
9814
|
compactingAt: z.ZodNullable<z.ZodISODateTime>;
|
|
9782
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>;
|
|
9783
9830
|
export declare const zSessionMessagesListPath: z.ZodObject<{
|
|
9784
9831
|
id: z.ZodString;
|
|
9785
9832
|
}, z.core.$strip>;
|
|
@@ -11583,10 +11630,12 @@ export declare const zRegistryAgentListResponse: z.ZodArray<z.ZodObject<{
|
|
|
11583
11630
|
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
11584
11631
|
deprecatedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
11585
11632
|
deprecationMessage: z.ZodNullable<z.ZodString>;
|
|
11633
|
+
tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
11586
11634
|
latestVersion: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
11587
11635
|
id: z.ZodString;
|
|
11588
11636
|
agentId: z.ZodString;
|
|
11589
11637
|
version: z.ZodString;
|
|
11638
|
+
description: z.ZodNullable<z.ZodString>;
|
|
11590
11639
|
skills: z.ZodArray<z.ZodObject<{
|
|
11591
11640
|
skillId: z.ZodString;
|
|
11592
11641
|
skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -11638,10 +11687,12 @@ export declare const zRegistryAgentGetResponse: z.ZodObject<{
|
|
|
11638
11687
|
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
11639
11688
|
deprecatedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
11640
11689
|
deprecationMessage: z.ZodNullable<z.ZodString>;
|
|
11690
|
+
tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
11641
11691
|
latestVersion: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
11642
11692
|
id: z.ZodString;
|
|
11643
11693
|
agentId: z.ZodString;
|
|
11644
11694
|
version: z.ZodString;
|
|
11695
|
+
description: z.ZodNullable<z.ZodString>;
|
|
11645
11696
|
skills: z.ZodArray<z.ZodObject<{
|
|
11646
11697
|
skillId: z.ZodString;
|
|
11647
11698
|
skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -11921,80 +11972,6 @@ export declare const zRegistryMcpGetResponse: z.ZodObject<{
|
|
|
11921
11972
|
deprecationMessage: z.ZodNullable<z.ZodString>;
|
|
11922
11973
|
tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
11923
11974
|
}, z.core.$strip>;
|
|
11924
|
-
export declare const zRegistryReplayGetPath: z.ZodObject<{
|
|
11925
|
-
slug: z.ZodString;
|
|
11926
|
-
}, z.core.$strip>;
|
|
11927
|
-
/**
|
|
11928
|
-
* Public replay view
|
|
11929
|
-
*/
|
|
11930
|
-
export declare const zRegistryReplayGetResponse: z.ZodObject<{
|
|
11931
|
-
id: z.ZodString;
|
|
11932
|
-
slug: z.ZodString;
|
|
11933
|
-
createdAt: z.ZodISODateTime;
|
|
11934
|
-
session: z.ZodObject<{
|
|
11935
|
-
id: z.ZodString;
|
|
11936
|
-
title: z.ZodString;
|
|
11937
|
-
createdAt: z.ZodISODateTime;
|
|
11938
|
-
}, z.core.$strip>;
|
|
11939
|
-
messages: z.ZodArray<z.ZodObject<{
|
|
11940
|
-
info: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
11941
|
-
parts: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
11942
|
-
}, z.core.$strip>>;
|
|
11943
|
-
}, z.core.$strip>;
|
|
11944
|
-
export declare const zRegistryReplayFilesPresignDownloadBody: z.ZodObject<{
|
|
11945
|
-
kind: z.ZodEnum<{
|
|
11946
|
-
outputs: "outputs";
|
|
11947
|
-
uploads: "uploads";
|
|
11948
|
-
}>;
|
|
11949
|
-
filename: z.ZodString;
|
|
11950
|
-
}, z.core.$strip>;
|
|
11951
|
-
export declare const zRegistryReplayFilesPresignDownloadPath: z.ZodObject<{
|
|
11952
|
-
slug: z.ZodString;
|
|
11953
|
-
}, z.core.$strip>;
|
|
11954
|
-
/**
|
|
11955
|
-
* Presigned download URL
|
|
11956
|
-
*/
|
|
11957
|
-
export declare const zRegistryReplayFilesPresignDownloadResponse: z.ZodObject<{
|
|
11958
|
-
url: z.ZodString;
|
|
11959
|
-
expiresAt: z.ZodISODateTime;
|
|
11960
|
-
}, z.core.$strip>;
|
|
11961
|
-
export declare const zRegistryReplaySharedGetPath: z.ZodObject<{
|
|
11962
|
-
token: z.ZodString;
|
|
11963
|
-
}, z.core.$strip>;
|
|
11964
|
-
/**
|
|
11965
|
-
* Public replay view
|
|
11966
|
-
*/
|
|
11967
|
-
export declare const zRegistryReplaySharedGetResponse: z.ZodObject<{
|
|
11968
|
-
id: z.ZodString;
|
|
11969
|
-
slug: z.ZodString;
|
|
11970
|
-
createdAt: z.ZodISODateTime;
|
|
11971
|
-
session: z.ZodObject<{
|
|
11972
|
-
id: z.ZodString;
|
|
11973
|
-
title: z.ZodString;
|
|
11974
|
-
createdAt: z.ZodISODateTime;
|
|
11975
|
-
}, z.core.$strip>;
|
|
11976
|
-
messages: z.ZodArray<z.ZodObject<{
|
|
11977
|
-
info: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
11978
|
-
parts: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
11979
|
-
}, z.core.$strip>>;
|
|
11980
|
-
}, z.core.$strip>;
|
|
11981
|
-
export declare const zRegistryReplaySharedFilesPresignDownloadBody: z.ZodObject<{
|
|
11982
|
-
kind: z.ZodEnum<{
|
|
11983
|
-
outputs: "outputs";
|
|
11984
|
-
uploads: "uploads";
|
|
11985
|
-
}>;
|
|
11986
|
-
filename: z.ZodString;
|
|
11987
|
-
}, z.core.$strip>;
|
|
11988
|
-
export declare const zRegistryReplaySharedFilesPresignDownloadPath: z.ZodObject<{
|
|
11989
|
-
token: z.ZodString;
|
|
11990
|
-
}, z.core.$strip>;
|
|
11991
|
-
/**
|
|
11992
|
-
* Presigned download URL
|
|
11993
|
-
*/
|
|
11994
|
-
export declare const zRegistryReplaySharedFilesPresignDownloadResponse: z.ZodObject<{
|
|
11995
|
-
url: z.ZodString;
|
|
11996
|
-
expiresAt: z.ZodISODateTime;
|
|
11997
|
-
}, z.core.$strip>;
|
|
11998
11975
|
export declare const zRegistryBlueprintGetPath: z.ZodObject<{
|
|
11999
11976
|
slug: z.ZodString;
|
|
12000
11977
|
}, z.core.$strip>;
|
|
@@ -12181,3 +12158,95 @@ export declare const zRegistryBlueprintGetResponse: z.ZodObject<{
|
|
|
12181
12158
|
}, z.core.$strip>>;
|
|
12182
12159
|
}, z.core.$strip>;
|
|
12183
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>;
|