@renai-labs/sdk 0.1.3 → 0.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/generated/@tanstack/react-query.gen.d.ts +91 -27
- package/dist/generated/@tanstack/react-query.gen.js +81 -17
- package/dist/generated/internal/types.gen.d.ts +250 -2
- package/dist/generated/sdk.gen.d.ts +30 -10
- package/dist/generated/sdk.gen.js +53 -13
- package/dist/generated/types.gen.d.ts +283 -88
- package/dist/generated/zod.gen.d.ts +309 -145
- package/dist/generated/zod.gen.js +139 -75
- 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<{
|
|
@@ -775,6 +813,10 @@ export declare const zVault: z.ZodObject<{
|
|
|
775
813
|
updatedAt: z.ZodISODateTime;
|
|
776
814
|
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
777
815
|
}, z.core.$strip>;
|
|
816
|
+
export declare const zSlackChannel: z.ZodObject<{
|
|
817
|
+
id: z.ZodString;
|
|
818
|
+
name: z.ZodString;
|
|
819
|
+
}, z.core.$strip>;
|
|
778
820
|
export declare const zSlackInstallationResponse: z.ZodObject<{
|
|
779
821
|
id: z.ZodString;
|
|
780
822
|
orgId: z.ZodString;
|
|
@@ -783,6 +825,12 @@ export declare const zSlackInstallationResponse: z.ZodObject<{
|
|
|
783
825
|
teamName: z.ZodNullable<z.ZodString>;
|
|
784
826
|
botUserId: z.ZodString;
|
|
785
827
|
scope: z.ZodString;
|
|
828
|
+
channelMappings: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
829
|
+
channelName: z.ZodNullable<z.ZodString>;
|
|
830
|
+
projectId: z.ZodString;
|
|
831
|
+
defaultProjectAgentId: z.ZodNullable<z.ZodString>;
|
|
832
|
+
fallbackSenderUserId: z.ZodNullable<z.ZodString>;
|
|
833
|
+
}, z.core.$strip>>;
|
|
786
834
|
createdAt: z.ZodISODateTime;
|
|
787
835
|
updatedAt: z.ZodISODateTime;
|
|
788
836
|
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
@@ -797,6 +845,12 @@ export declare const zSlackStatus: z.ZodObject<{
|
|
|
797
845
|
teamName: z.ZodNullable<z.ZodString>;
|
|
798
846
|
botUserId: z.ZodString;
|
|
799
847
|
scope: z.ZodString;
|
|
848
|
+
channelMappings: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
849
|
+
channelName: z.ZodNullable<z.ZodString>;
|
|
850
|
+
projectId: z.ZodString;
|
|
851
|
+
defaultProjectAgentId: z.ZodNullable<z.ZodString>;
|
|
852
|
+
fallbackSenderUserId: z.ZodNullable<z.ZodString>;
|
|
853
|
+
}, z.core.$strip>>;
|
|
800
854
|
createdAt: z.ZodISODateTime;
|
|
801
855
|
updatedAt: z.ZodISODateTime;
|
|
802
856
|
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
@@ -808,7 +862,6 @@ export declare const zWebhookTrigger: z.ZodObject<{
|
|
|
808
862
|
projectAgentId: z.ZodString;
|
|
809
863
|
senderUserId: z.ZodString;
|
|
810
864
|
provider: z.ZodEnum<{
|
|
811
|
-
slack: "slack";
|
|
812
865
|
generic: "generic";
|
|
813
866
|
}>;
|
|
814
867
|
providerInstallId: z.ZodNullable<z.ZodString>;
|
|
@@ -828,7 +881,6 @@ export declare const zWebhookTriggerCreateResult: z.ZodObject<{
|
|
|
828
881
|
projectAgentId: z.ZodString;
|
|
829
882
|
senderUserId: z.ZodString;
|
|
830
883
|
provider: z.ZodEnum<{
|
|
831
|
-
slack: "slack";
|
|
832
884
|
generic: "generic";
|
|
833
885
|
}>;
|
|
834
886
|
providerInstallId: z.ZodNullable<z.ZodString>;
|
|
@@ -883,10 +935,6 @@ export declare const zSkillVersion: z.ZodObject<{
|
|
|
883
935
|
}, z.core.$strip>>;
|
|
884
936
|
releaseNotes: z.ZodNullable<z.ZodString>;
|
|
885
937
|
}, 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
938
|
export declare const zSkill: z.ZodObject<{
|
|
891
939
|
id: z.ZodString;
|
|
892
940
|
slug: z.ZodString;
|
|
@@ -938,7 +986,7 @@ export declare const zSessionFilesPresignUploadResponse: z.ZodObject<{
|
|
|
938
986
|
uploadUrl: z.ZodString;
|
|
939
987
|
sandboxPath: z.ZodString;
|
|
940
988
|
podVolume: z.ZodObject<{
|
|
941
|
-
|
|
989
|
+
projectSlug: z.ZodString;
|
|
942
990
|
sessionId: z.ZodString;
|
|
943
991
|
kind: z.ZodEnum<{
|
|
944
992
|
outputs: "outputs";
|
|
@@ -1062,6 +1110,9 @@ export declare const zSessionMessagesPage: z.ZodObject<{
|
|
|
1062
1110
|
pageSize: z.ZodInt;
|
|
1063
1111
|
total: z.ZodInt;
|
|
1064
1112
|
}, z.core.$strip>;
|
|
1113
|
+
export declare const zSessionUrlResponse: z.ZodObject<{
|
|
1114
|
+
url: z.ZodString;
|
|
1115
|
+
}, z.core.$strip>;
|
|
1065
1116
|
export declare const zOpencodeSession: z.ZodObject<{
|
|
1066
1117
|
id: z.ZodString;
|
|
1067
1118
|
createdById: z.ZodString;
|
|
@@ -2220,30 +2271,6 @@ export declare const zSearchResult: z.ZodObject<{
|
|
|
2220
2271
|
}>;
|
|
2221
2272
|
updatedAt: z.ZodISODateTime;
|
|
2222
2273
|
}, 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
2274
|
export declare const zAgent: z.ZodObject<{
|
|
2248
2275
|
id: z.ZodString;
|
|
2249
2276
|
slug: z.ZodString;
|
|
@@ -2268,10 +2295,12 @@ export declare const zAgent: z.ZodObject<{
|
|
|
2268
2295
|
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2269
2296
|
deprecatedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2270
2297
|
deprecationMessage: z.ZodNullable<z.ZodString>;
|
|
2298
|
+
tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
2271
2299
|
latestVersion: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2272
2300
|
id: z.ZodString;
|
|
2273
2301
|
agentId: z.ZodString;
|
|
2274
2302
|
version: z.ZodString;
|
|
2303
|
+
description: z.ZodNullable<z.ZodString>;
|
|
2275
2304
|
skills: z.ZodArray<z.ZodObject<{
|
|
2276
2305
|
skillId: z.ZodString;
|
|
2277
2306
|
skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -2333,10 +2362,12 @@ export declare const zAgentListResponse: z.ZodArray<z.ZodObject<{
|
|
|
2333
2362
|
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2334
2363
|
deprecatedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2335
2364
|
deprecationMessage: z.ZodNullable<z.ZodString>;
|
|
2365
|
+
tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
2336
2366
|
latestVersion: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2337
2367
|
id: z.ZodString;
|
|
2338
2368
|
agentId: z.ZodString;
|
|
2339
2369
|
version: z.ZodString;
|
|
2370
|
+
description: z.ZodNullable<z.ZodString>;
|
|
2340
2371
|
skills: z.ZodArray<z.ZodObject<{
|
|
2341
2372
|
skillId: z.ZodString;
|
|
2342
2373
|
skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -2538,10 +2569,12 @@ export declare const zAgentCreateResponse: z.ZodObject<{
|
|
|
2538
2569
|
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2539
2570
|
deprecatedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2540
2571
|
deprecationMessage: z.ZodNullable<z.ZodString>;
|
|
2572
|
+
tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
2541
2573
|
latestVersion: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2542
2574
|
id: z.ZodString;
|
|
2543
2575
|
agentId: z.ZodString;
|
|
2544
2576
|
version: z.ZodString;
|
|
2577
|
+
description: z.ZodNullable<z.ZodString>;
|
|
2545
2578
|
skills: z.ZodArray<z.ZodObject<{
|
|
2546
2579
|
skillId: z.ZodString;
|
|
2547
2580
|
skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -2628,10 +2661,12 @@ export declare const zAgentGetBySlugResponse: z.ZodObject<{
|
|
|
2628
2661
|
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2629
2662
|
deprecatedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2630
2663
|
deprecationMessage: z.ZodNullable<z.ZodString>;
|
|
2664
|
+
tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
2631
2665
|
latestVersion: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2632
2666
|
id: z.ZodString;
|
|
2633
2667
|
agentId: z.ZodString;
|
|
2634
2668
|
version: z.ZodString;
|
|
2669
|
+
description: z.ZodNullable<z.ZodString>;
|
|
2635
2670
|
skills: z.ZodArray<z.ZodObject<{
|
|
2636
2671
|
skillId: z.ZodString;
|
|
2637
2672
|
skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -2688,10 +2723,12 @@ export declare const zAgentGetResponse: z.ZodObject<{
|
|
|
2688
2723
|
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2689
2724
|
deprecatedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2690
2725
|
deprecationMessage: z.ZodNullable<z.ZodString>;
|
|
2726
|
+
tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
2691
2727
|
latestVersion: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2692
2728
|
id: z.ZodString;
|
|
2693
2729
|
agentId: z.ZodString;
|
|
2694
2730
|
version: z.ZodString;
|
|
2731
|
+
description: z.ZodNullable<z.ZodString>;
|
|
2695
2732
|
skills: z.ZodArray<z.ZodObject<{
|
|
2696
2733
|
skillId: z.ZodString;
|
|
2697
2734
|
skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -2762,10 +2799,12 @@ export declare const zAgentUpdateResponse: z.ZodObject<{
|
|
|
2762
2799
|
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2763
2800
|
deprecatedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2764
2801
|
deprecationMessage: z.ZodNullable<z.ZodString>;
|
|
2802
|
+
tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
2765
2803
|
latestVersion: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2766
2804
|
id: z.ZodString;
|
|
2767
2805
|
agentId: z.ZodString;
|
|
2768
2806
|
version: z.ZodString;
|
|
2807
|
+
description: z.ZodNullable<z.ZodString>;
|
|
2769
2808
|
skills: z.ZodArray<z.ZodObject<{
|
|
2770
2809
|
skillId: z.ZodString;
|
|
2771
2810
|
skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -2822,10 +2861,12 @@ export declare const zAgentArchiveResponse: z.ZodObject<{
|
|
|
2822
2861
|
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2823
2862
|
deprecatedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2824
2863
|
deprecationMessage: z.ZodNullable<z.ZodString>;
|
|
2864
|
+
tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
2825
2865
|
latestVersion: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2826
2866
|
id: z.ZodString;
|
|
2827
2867
|
agentId: z.ZodString;
|
|
2828
2868
|
version: z.ZodString;
|
|
2869
|
+
description: z.ZodNullable<z.ZodString>;
|
|
2829
2870
|
skills: z.ZodArray<z.ZodObject<{
|
|
2830
2871
|
skillId: z.ZodString;
|
|
2831
2872
|
skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -2882,10 +2923,12 @@ export declare const zAgentPublishResponse: z.ZodObject<{
|
|
|
2882
2923
|
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2883
2924
|
deprecatedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2884
2925
|
deprecationMessage: z.ZodNullable<z.ZodString>;
|
|
2926
|
+
tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
2885
2927
|
latestVersion: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2886
2928
|
id: z.ZodString;
|
|
2887
2929
|
agentId: z.ZodString;
|
|
2888
2930
|
version: z.ZodString;
|
|
2931
|
+
description: z.ZodNullable<z.ZodString>;
|
|
2889
2932
|
skills: z.ZodArray<z.ZodObject<{
|
|
2890
2933
|
skillId: z.ZodString;
|
|
2891
2934
|
skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -2945,10 +2988,12 @@ export declare const zAgentDeprecateResponse: z.ZodObject<{
|
|
|
2945
2988
|
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2946
2989
|
deprecatedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
2947
2990
|
deprecationMessage: z.ZodNullable<z.ZodString>;
|
|
2991
|
+
tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
2948
2992
|
latestVersion: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2949
2993
|
id: z.ZodString;
|
|
2950
2994
|
agentId: z.ZodString;
|
|
2951
2995
|
version: z.ZodString;
|
|
2996
|
+
description: z.ZodNullable<z.ZodString>;
|
|
2952
2997
|
skills: z.ZodArray<z.ZodObject<{
|
|
2953
2998
|
skillId: z.ZodString;
|
|
2954
2999
|
skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -3005,10 +3050,12 @@ export declare const zAgentUndeprecateResponse: z.ZodObject<{
|
|
|
3005
3050
|
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
3006
3051
|
deprecatedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
3007
3052
|
deprecationMessage: z.ZodNullable<z.ZodString>;
|
|
3053
|
+
tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
3008
3054
|
latestVersion: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
3009
3055
|
id: z.ZodString;
|
|
3010
3056
|
agentId: z.ZodString;
|
|
3011
3057
|
version: z.ZodString;
|
|
3058
|
+
description: z.ZodNullable<z.ZodString>;
|
|
3012
3059
|
skills: z.ZodArray<z.ZodObject<{
|
|
3013
3060
|
skillId: z.ZodString;
|
|
3014
3061
|
skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -9723,7 +9770,7 @@ export declare const zSessionUpdateBody: z.ZodObject<{
|
|
|
9723
9770
|
message: z.ZodString;
|
|
9724
9771
|
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
9725
9772
|
}, z.core.$strip>>>;
|
|
9726
|
-
|
|
9773
|
+
currentAgentSlug: z.ZodOptional<z.ZodString>;
|
|
9727
9774
|
}, z.core.$strip>;
|
|
9728
9775
|
export declare const zSessionUpdatePath: z.ZodObject<{
|
|
9729
9776
|
id: z.ZodString;
|
|
@@ -9780,6 +9827,20 @@ export declare const zSessionUpdateResponse: z.ZodObject<{
|
|
|
9780
9827
|
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
9781
9828
|
compactingAt: z.ZodNullable<z.ZodISODateTime>;
|
|
9782
9829
|
}, z.core.$strip>;
|
|
9830
|
+
export declare const zSessionUrlPath: z.ZodObject<{
|
|
9831
|
+
id: z.ZodString;
|
|
9832
|
+
}, z.core.$strip>;
|
|
9833
|
+
export declare const zSessionUrlQuery: z.ZodObject<{
|
|
9834
|
+
scope: z.ZodOptional<z.ZodEnum<{
|
|
9835
|
+
user: "user";
|
|
9836
|
+
}>>;
|
|
9837
|
+
}, z.core.$strip>;
|
|
9838
|
+
/**
|
|
9839
|
+
* OpenCode URL
|
|
9840
|
+
*/
|
|
9841
|
+
export declare const zSessionUrlResponse2: z.ZodObject<{
|
|
9842
|
+
url: z.ZodString;
|
|
9843
|
+
}, z.core.$strip>;
|
|
9783
9844
|
export declare const zSessionMessagesListPath: z.ZodObject<{
|
|
9784
9845
|
id: z.ZodString;
|
|
9785
9846
|
}, z.core.$strip>;
|
|
@@ -9932,7 +9993,7 @@ export declare const zSessionFilesPresignUploadResponse2: z.ZodObject<{
|
|
|
9932
9993
|
uploadUrl: z.ZodString;
|
|
9933
9994
|
sandboxPath: z.ZodString;
|
|
9934
9995
|
podVolume: z.ZodObject<{
|
|
9935
|
-
|
|
9996
|
+
projectSlug: z.ZodString;
|
|
9936
9997
|
sessionId: z.ZodString;
|
|
9937
9998
|
kind: z.ZodEnum<{
|
|
9938
9999
|
outputs: "outputs";
|
|
@@ -10835,7 +10896,6 @@ export declare const zWebhookTriggerListResponse: z.ZodArray<z.ZodObject<{
|
|
|
10835
10896
|
projectAgentId: z.ZodString;
|
|
10836
10897
|
senderUserId: z.ZodString;
|
|
10837
10898
|
provider: z.ZodEnum<{
|
|
10838
|
-
slack: "slack";
|
|
10839
10899
|
generic: "generic";
|
|
10840
10900
|
}>;
|
|
10841
10901
|
providerInstallId: z.ZodNullable<z.ZodString>;
|
|
@@ -10853,7 +10913,6 @@ export declare const zWebhookTriggerCreateBody: z.ZodObject<{
|
|
|
10853
10913
|
projectAgentId: z.ZodString;
|
|
10854
10914
|
senderUserId: z.ZodString;
|
|
10855
10915
|
provider: z.ZodEnum<{
|
|
10856
|
-
slack: "slack";
|
|
10857
10916
|
generic: "generic";
|
|
10858
10917
|
}>;
|
|
10859
10918
|
providerInstallId: z.ZodNullable<z.ZodString>;
|
|
@@ -10877,7 +10936,6 @@ export declare const zWebhookTriggerCreateResponse: z.ZodObject<{
|
|
|
10877
10936
|
projectAgentId: z.ZodString;
|
|
10878
10937
|
senderUserId: z.ZodString;
|
|
10879
10938
|
provider: z.ZodEnum<{
|
|
10880
|
-
slack: "slack";
|
|
10881
10939
|
generic: "generic";
|
|
10882
10940
|
}>;
|
|
10883
10941
|
providerInstallId: z.ZodNullable<z.ZodString>;
|
|
@@ -10910,7 +10968,6 @@ export declare const zWebhookTriggerGetResponse: z.ZodObject<{
|
|
|
10910
10968
|
projectAgentId: z.ZodString;
|
|
10911
10969
|
senderUserId: z.ZodString;
|
|
10912
10970
|
provider: z.ZodEnum<{
|
|
10913
|
-
slack: "slack";
|
|
10914
10971
|
generic: "generic";
|
|
10915
10972
|
}>;
|
|
10916
10973
|
providerInstallId: z.ZodNullable<z.ZodString>;
|
|
@@ -10949,7 +11006,6 @@ export declare const zWebhookTriggerUpdateResponse: z.ZodObject<{
|
|
|
10949
11006
|
projectAgentId: z.ZodString;
|
|
10950
11007
|
senderUserId: z.ZodString;
|
|
10951
11008
|
provider: z.ZodEnum<{
|
|
10952
|
-
slack: "slack";
|
|
10953
11009
|
generic: "generic";
|
|
10954
11010
|
}>;
|
|
10955
11011
|
providerInstallId: z.ZodNullable<z.ZodString>;
|
|
@@ -10982,7 +11038,6 @@ export declare const zWebhookTriggerArchiveResponse: z.ZodObject<{
|
|
|
10982
11038
|
projectAgentId: z.ZodString;
|
|
10983
11039
|
senderUserId: z.ZodString;
|
|
10984
11040
|
provider: z.ZodEnum<{
|
|
10985
|
-
slack: "slack";
|
|
10986
11041
|
generic: "generic";
|
|
10987
11042
|
}>;
|
|
10988
11043
|
providerInstallId: z.ZodNullable<z.ZodString>;
|
|
@@ -11013,6 +11068,12 @@ export declare const zSlackStatusResponse: z.ZodObject<{
|
|
|
11013
11068
|
teamName: z.ZodNullable<z.ZodString>;
|
|
11014
11069
|
botUserId: z.ZodString;
|
|
11015
11070
|
scope: z.ZodString;
|
|
11071
|
+
channelMappings: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
11072
|
+
channelName: z.ZodNullable<z.ZodString>;
|
|
11073
|
+
projectId: z.ZodString;
|
|
11074
|
+
defaultProjectAgentId: z.ZodNullable<z.ZodString>;
|
|
11075
|
+
fallbackSenderUserId: z.ZodNullable<z.ZodString>;
|
|
11076
|
+
}, z.core.$strip>>;
|
|
11016
11077
|
createdAt: z.ZodISODateTime;
|
|
11017
11078
|
updatedAt: z.ZodISODateTime;
|
|
11018
11079
|
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
@@ -11030,6 +11091,87 @@ export declare const zSlackInstallationRemoveQuery: z.ZodObject<{
|
|
|
11030
11091
|
* Removed
|
|
11031
11092
|
*/
|
|
11032
11093
|
export declare const zSlackInstallationRemoveResponse: z.ZodVoid;
|
|
11094
|
+
export declare const zSlackInstallationChannelListPath: z.ZodObject<{
|
|
11095
|
+
id: z.ZodString;
|
|
11096
|
+
}, z.core.$strip>;
|
|
11097
|
+
export declare const zSlackInstallationChannelListQuery: z.ZodObject<{
|
|
11098
|
+
scope: z.ZodOptional<z.ZodEnum<{
|
|
11099
|
+
user: "user";
|
|
11100
|
+
}>>;
|
|
11101
|
+
}, z.core.$strip>;
|
|
11102
|
+
/**
|
|
11103
|
+
* Channels visible to the Ren bot
|
|
11104
|
+
*/
|
|
11105
|
+
export declare const zSlackInstallationChannelListResponse: z.ZodArray<z.ZodObject<{
|
|
11106
|
+
id: z.ZodString;
|
|
11107
|
+
name: z.ZodString;
|
|
11108
|
+
}, z.core.$strip>>;
|
|
11109
|
+
export declare const zSlackInstallationChannelRemovePath: z.ZodObject<{
|
|
11110
|
+
id: z.ZodString;
|
|
11111
|
+
channelId: z.ZodString;
|
|
11112
|
+
}, z.core.$strip>;
|
|
11113
|
+
export declare const zSlackInstallationChannelRemoveQuery: z.ZodObject<{
|
|
11114
|
+
scope: z.ZodOptional<z.ZodEnum<{
|
|
11115
|
+
user: "user";
|
|
11116
|
+
}>>;
|
|
11117
|
+
}, z.core.$strip>;
|
|
11118
|
+
/**
|
|
11119
|
+
* Updated installation
|
|
11120
|
+
*/
|
|
11121
|
+
export declare const zSlackInstallationChannelRemoveResponse: z.ZodObject<{
|
|
11122
|
+
id: z.ZodString;
|
|
11123
|
+
orgId: z.ZodString;
|
|
11124
|
+
installedById: z.ZodString;
|
|
11125
|
+
teamId: z.ZodString;
|
|
11126
|
+
teamName: z.ZodNullable<z.ZodString>;
|
|
11127
|
+
botUserId: z.ZodString;
|
|
11128
|
+
scope: z.ZodString;
|
|
11129
|
+
channelMappings: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
11130
|
+
channelName: z.ZodNullable<z.ZodString>;
|
|
11131
|
+
projectId: z.ZodString;
|
|
11132
|
+
defaultProjectAgentId: z.ZodNullable<z.ZodString>;
|
|
11133
|
+
fallbackSenderUserId: z.ZodNullable<z.ZodString>;
|
|
11134
|
+
}, z.core.$strip>>;
|
|
11135
|
+
createdAt: z.ZodISODateTime;
|
|
11136
|
+
updatedAt: z.ZodISODateTime;
|
|
11137
|
+
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
11138
|
+
}, z.core.$strip>;
|
|
11139
|
+
export declare const zSlackInstallationChannelSetBody: z.ZodObject<{
|
|
11140
|
+
channelName: z.ZodNullable<z.ZodString>;
|
|
11141
|
+
projectId: z.ZodString;
|
|
11142
|
+
defaultProjectAgentId: z.ZodNullable<z.ZodString>;
|
|
11143
|
+
fallbackSenderUserId: z.ZodNullable<z.ZodString>;
|
|
11144
|
+
}, z.core.$strip>;
|
|
11145
|
+
export declare const zSlackInstallationChannelSetPath: z.ZodObject<{
|
|
11146
|
+
id: z.ZodString;
|
|
11147
|
+
channelId: z.ZodString;
|
|
11148
|
+
}, z.core.$strip>;
|
|
11149
|
+
export declare const zSlackInstallationChannelSetQuery: z.ZodObject<{
|
|
11150
|
+
scope: z.ZodOptional<z.ZodEnum<{
|
|
11151
|
+
user: "user";
|
|
11152
|
+
}>>;
|
|
11153
|
+
}, z.core.$strip>;
|
|
11154
|
+
/**
|
|
11155
|
+
* Updated installation
|
|
11156
|
+
*/
|
|
11157
|
+
export declare const zSlackInstallationChannelSetResponse: z.ZodObject<{
|
|
11158
|
+
id: z.ZodString;
|
|
11159
|
+
orgId: z.ZodString;
|
|
11160
|
+
installedById: z.ZodString;
|
|
11161
|
+
teamId: z.ZodString;
|
|
11162
|
+
teamName: z.ZodNullable<z.ZodString>;
|
|
11163
|
+
botUserId: z.ZodString;
|
|
11164
|
+
scope: z.ZodString;
|
|
11165
|
+
channelMappings: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
11166
|
+
channelName: z.ZodNullable<z.ZodString>;
|
|
11167
|
+
projectId: z.ZodString;
|
|
11168
|
+
defaultProjectAgentId: z.ZodNullable<z.ZodString>;
|
|
11169
|
+
fallbackSenderUserId: z.ZodNullable<z.ZodString>;
|
|
11170
|
+
}, z.core.$strip>>;
|
|
11171
|
+
createdAt: z.ZodISODateTime;
|
|
11172
|
+
updatedAt: z.ZodISODateTime;
|
|
11173
|
+
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
11174
|
+
}, z.core.$strip>;
|
|
11033
11175
|
export declare const zVaultListQuery: z.ZodObject<{
|
|
11034
11176
|
scope: z.ZodOptional<z.ZodEnum<{
|
|
11035
11177
|
user: "user";
|
|
@@ -11583,10 +11725,12 @@ export declare const zRegistryAgentListResponse: z.ZodArray<z.ZodObject<{
|
|
|
11583
11725
|
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
11584
11726
|
deprecatedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
11585
11727
|
deprecationMessage: z.ZodNullable<z.ZodString>;
|
|
11728
|
+
tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
11586
11729
|
latestVersion: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
11587
11730
|
id: z.ZodString;
|
|
11588
11731
|
agentId: z.ZodString;
|
|
11589
11732
|
version: z.ZodString;
|
|
11733
|
+
description: z.ZodNullable<z.ZodString>;
|
|
11590
11734
|
skills: z.ZodArray<z.ZodObject<{
|
|
11591
11735
|
skillId: z.ZodString;
|
|
11592
11736
|
skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -11638,10 +11782,12 @@ export declare const zRegistryAgentGetResponse: z.ZodObject<{
|
|
|
11638
11782
|
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
11639
11783
|
deprecatedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
11640
11784
|
deprecationMessage: z.ZodNullable<z.ZodString>;
|
|
11785
|
+
tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
11641
11786
|
latestVersion: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
11642
11787
|
id: z.ZodString;
|
|
11643
11788
|
agentId: z.ZodString;
|
|
11644
11789
|
version: z.ZodString;
|
|
11790
|
+
description: z.ZodNullable<z.ZodString>;
|
|
11645
11791
|
skills: z.ZodArray<z.ZodObject<{
|
|
11646
11792
|
skillId: z.ZodString;
|
|
11647
11793
|
skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -11921,80 +12067,6 @@ export declare const zRegistryMcpGetResponse: z.ZodObject<{
|
|
|
11921
12067
|
deprecationMessage: z.ZodNullable<z.ZodString>;
|
|
11922
12068
|
tags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
11923
12069
|
}, 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
12070
|
export declare const zRegistryBlueprintGetPath: z.ZodObject<{
|
|
11999
12071
|
slug: z.ZodString;
|
|
12000
12072
|
}, z.core.$strip>;
|
|
@@ -12181,3 +12253,95 @@ export declare const zRegistryBlueprintGetResponse: z.ZodObject<{
|
|
|
12181
12253
|
}, z.core.$strip>>;
|
|
12182
12254
|
}, z.core.$strip>;
|
|
12183
12255
|
}, z.core.$strip>;
|
|
12256
|
+
export declare const zRegistryReplayGetPath: z.ZodObject<{
|
|
12257
|
+
slug: z.ZodString;
|
|
12258
|
+
}, z.core.$strip>;
|
|
12259
|
+
/**
|
|
12260
|
+
* Public replay view
|
|
12261
|
+
*/
|
|
12262
|
+
export declare const zRegistryReplayGetResponse: z.ZodObject<{
|
|
12263
|
+
id: z.ZodString;
|
|
12264
|
+
slug: z.ZodString;
|
|
12265
|
+
createdAt: z.ZodISODateTime;
|
|
12266
|
+
websiteMetadata: z.ZodNullable<z.ZodObject<{
|
|
12267
|
+
title: z.ZodOptional<z.ZodString>;
|
|
12268
|
+
description: z.ZodOptional<z.ZodString>;
|
|
12269
|
+
longDescription: z.ZodOptional<z.ZodString>;
|
|
12270
|
+
image: z.ZodOptional<z.ZodURL>;
|
|
12271
|
+
favicon: z.ZodOptional<z.ZodURL>;
|
|
12272
|
+
supportUrl: z.ZodOptional<z.ZodURL>;
|
|
12273
|
+
privacyPolicyUrl: z.ZodOptional<z.ZodURL>;
|
|
12274
|
+
}, z.core.$strip>>;
|
|
12275
|
+
session: z.ZodObject<{
|
|
12276
|
+
id: z.ZodString;
|
|
12277
|
+
title: z.ZodString;
|
|
12278
|
+
createdAt: z.ZodISODateTime;
|
|
12279
|
+
}, z.core.$strip>;
|
|
12280
|
+
messages: z.ZodArray<z.ZodObject<{
|
|
12281
|
+
info: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
12282
|
+
parts: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
12283
|
+
}, z.core.$strip>>;
|
|
12284
|
+
}, z.core.$strip>;
|
|
12285
|
+
export declare const zRegistryReplayFilesPresignDownloadBody: z.ZodObject<{
|
|
12286
|
+
kind: z.ZodEnum<{
|
|
12287
|
+
outputs: "outputs";
|
|
12288
|
+
uploads: "uploads";
|
|
12289
|
+
}>;
|
|
12290
|
+
filename: z.ZodString;
|
|
12291
|
+
}, z.core.$strip>;
|
|
12292
|
+
export declare const zRegistryReplayFilesPresignDownloadPath: z.ZodObject<{
|
|
12293
|
+
slug: z.ZodString;
|
|
12294
|
+
}, z.core.$strip>;
|
|
12295
|
+
/**
|
|
12296
|
+
* Presigned download URL
|
|
12297
|
+
*/
|
|
12298
|
+
export declare const zRegistryReplayFilesPresignDownloadResponse: z.ZodObject<{
|
|
12299
|
+
url: z.ZodString;
|
|
12300
|
+
expiresAt: z.ZodISODateTime;
|
|
12301
|
+
}, z.core.$strip>;
|
|
12302
|
+
export declare const zRegistryReplaySharedGetPath: z.ZodObject<{
|
|
12303
|
+
token: z.ZodString;
|
|
12304
|
+
}, z.core.$strip>;
|
|
12305
|
+
/**
|
|
12306
|
+
* Public replay view
|
|
12307
|
+
*/
|
|
12308
|
+
export declare const zRegistryReplaySharedGetResponse: z.ZodObject<{
|
|
12309
|
+
id: z.ZodString;
|
|
12310
|
+
slug: z.ZodString;
|
|
12311
|
+
createdAt: z.ZodISODateTime;
|
|
12312
|
+
websiteMetadata: z.ZodNullable<z.ZodObject<{
|
|
12313
|
+
title: z.ZodOptional<z.ZodString>;
|
|
12314
|
+
description: z.ZodOptional<z.ZodString>;
|
|
12315
|
+
longDescription: z.ZodOptional<z.ZodString>;
|
|
12316
|
+
image: z.ZodOptional<z.ZodURL>;
|
|
12317
|
+
favicon: z.ZodOptional<z.ZodURL>;
|
|
12318
|
+
supportUrl: z.ZodOptional<z.ZodURL>;
|
|
12319
|
+
privacyPolicyUrl: z.ZodOptional<z.ZodURL>;
|
|
12320
|
+
}, z.core.$strip>>;
|
|
12321
|
+
session: z.ZodObject<{
|
|
12322
|
+
id: z.ZodString;
|
|
12323
|
+
title: z.ZodString;
|
|
12324
|
+
createdAt: z.ZodISODateTime;
|
|
12325
|
+
}, z.core.$strip>;
|
|
12326
|
+
messages: z.ZodArray<z.ZodObject<{
|
|
12327
|
+
info: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
12328
|
+
parts: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
12329
|
+
}, z.core.$strip>>;
|
|
12330
|
+
}, z.core.$strip>;
|
|
12331
|
+
export declare const zRegistryReplaySharedFilesPresignDownloadBody: z.ZodObject<{
|
|
12332
|
+
kind: z.ZodEnum<{
|
|
12333
|
+
outputs: "outputs";
|
|
12334
|
+
uploads: "uploads";
|
|
12335
|
+
}>;
|
|
12336
|
+
filename: z.ZodString;
|
|
12337
|
+
}, z.core.$strip>;
|
|
12338
|
+
export declare const zRegistryReplaySharedFilesPresignDownloadPath: z.ZodObject<{
|
|
12339
|
+
token: z.ZodString;
|
|
12340
|
+
}, z.core.$strip>;
|
|
12341
|
+
/**
|
|
12342
|
+
* Presigned download URL
|
|
12343
|
+
*/
|
|
12344
|
+
export declare const zRegistryReplaySharedFilesPresignDownloadResponse: z.ZodObject<{
|
|
12345
|
+
url: z.ZodString;
|
|
12346
|
+
expiresAt: z.ZodISODateTime;
|
|
12347
|
+
}, z.core.$strip>;
|