@renai-labs/sdk 0.1.26 → 0.1.28
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 +185 -81
- package/dist/generated/@tanstack/react-query.gen.js +98 -50
- package/dist/generated/internal/types.gen.d.ts +249 -125
- package/dist/generated/sdk.gen.d.ts +41 -29
- package/dist/generated/sdk.gen.js +65 -58
- package/dist/generated/types.gen.d.ts +1277 -1004
- package/dist/generated/zod.gen.d.ts +1078 -318
- package/dist/generated/zod.gen.js +225 -51
- package/package.json +1 -1
|
@@ -181,6 +181,32 @@ export declare const zSpecInitialPrompt: z.ZodObject<{
|
|
|
181
181
|
prompt: z.ZodString;
|
|
182
182
|
project: z.ZodOptional<z.ZodString>;
|
|
183
183
|
}, z.core.$strip>;
|
|
184
|
+
export declare const zSpecTaskEntry: z.ZodObject<{
|
|
185
|
+
slug: z.ZodString;
|
|
186
|
+
project: z.ZodOptional<z.ZodString>;
|
|
187
|
+
title: z.ZodString;
|
|
188
|
+
description: z.ZodOptional<z.ZodString>;
|
|
189
|
+
priority: z.ZodOptional<z.ZodEnum<{
|
|
190
|
+
high: "high";
|
|
191
|
+
low: "low";
|
|
192
|
+
medium: "medium";
|
|
193
|
+
}>>;
|
|
194
|
+
labels: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
195
|
+
}, z.core.$strip>;
|
|
196
|
+
export declare const zSpecArtifactEntry: z.ZodObject<{
|
|
197
|
+
slug: z.ZodString;
|
|
198
|
+
pod: z.ZodOptional<z.ZodString>;
|
|
199
|
+
title: z.ZodString;
|
|
200
|
+
description: z.ZodOptional<z.ZodString>;
|
|
201
|
+
seed: z.ZodURL;
|
|
202
|
+
}, z.core.$strip>;
|
|
203
|
+
export declare const zSpecDatabaseEntry: z.ZodObject<{
|
|
204
|
+
slug: z.ZodString;
|
|
205
|
+
pod: z.ZodOptional<z.ZodString>;
|
|
206
|
+
name: z.ZodString;
|
|
207
|
+
description: z.ZodOptional<z.ZodString>;
|
|
208
|
+
seedSql: z.ZodOptional<z.ZodString>;
|
|
209
|
+
}, z.core.$strip>;
|
|
184
210
|
/**
|
|
185
211
|
* Model this trigger's fires run on; absent inherits the agent/project default.
|
|
186
212
|
*/
|
|
@@ -599,16 +625,16 @@ export declare const zSpecEnvironmentDef: z.ZodObject<{
|
|
|
599
625
|
}, z.core.$strip>;
|
|
600
626
|
export declare const zPresetTemplate: z.ZodEnum<{
|
|
601
627
|
small: "small";
|
|
602
|
-
xs: "xs";
|
|
603
628
|
medium: "medium";
|
|
629
|
+
xs: "xs";
|
|
604
630
|
large: "large";
|
|
605
631
|
xl: "xl";
|
|
606
632
|
}>;
|
|
607
633
|
export declare const zSpecEnvironmentEntry: z.ZodObject<{
|
|
608
634
|
preset: z.ZodOptional<z.ZodEnum<{
|
|
609
635
|
small: "small";
|
|
610
|
-
xs: "xs";
|
|
611
636
|
medium: "medium";
|
|
637
|
+
xs: "xs";
|
|
612
638
|
large: "large";
|
|
613
639
|
xl: "xl";
|
|
614
640
|
}>>;
|
|
@@ -645,8 +671,8 @@ export declare const zSpecPodEntry: z.ZodObject<{
|
|
|
645
671
|
environment: z.ZodOptional<z.ZodObject<{
|
|
646
672
|
preset: z.ZodOptional<z.ZodEnum<{
|
|
647
673
|
small: "small";
|
|
648
|
-
xs: "xs";
|
|
649
674
|
medium: "medium";
|
|
675
|
+
xs: "xs";
|
|
650
676
|
large: "large";
|
|
651
677
|
xl: "xl";
|
|
652
678
|
}>>;
|
|
@@ -683,7 +709,7 @@ export declare const zSpecMeta: z.ZodObject<{
|
|
|
683
709
|
description: z.ZodOptional<z.ZodString>;
|
|
684
710
|
}, z.core.$strip>;
|
|
685
711
|
export declare const zSpec: z.ZodObject<{
|
|
686
|
-
schemaVersion: z.ZodLiteral<
|
|
712
|
+
schemaVersion: z.ZodLiteral<5>;
|
|
687
713
|
meta: z.ZodObject<{
|
|
688
714
|
name: z.ZodString;
|
|
689
715
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -708,8 +734,8 @@ export declare const zSpec: z.ZodObject<{
|
|
|
708
734
|
environment: z.ZodOptional<z.ZodObject<{
|
|
709
735
|
preset: z.ZodOptional<z.ZodEnum<{
|
|
710
736
|
small: "small";
|
|
711
|
-
xs: "xs";
|
|
712
737
|
medium: "medium";
|
|
738
|
+
xs: "xs";
|
|
713
739
|
large: "large";
|
|
714
740
|
xl: "xl";
|
|
715
741
|
}>>;
|
|
@@ -924,6 +950,32 @@ export declare const zSpec: z.ZodObject<{
|
|
|
924
950
|
}, z.core.$strip>>;
|
|
925
951
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
926
952
|
}, z.core.$strip>>;
|
|
953
|
+
databases: z.ZodArray<z.ZodObject<{
|
|
954
|
+
slug: z.ZodString;
|
|
955
|
+
pod: z.ZodOptional<z.ZodString>;
|
|
956
|
+
name: z.ZodString;
|
|
957
|
+
description: z.ZodOptional<z.ZodString>;
|
|
958
|
+
seedSql: z.ZodOptional<z.ZodString>;
|
|
959
|
+
}, z.core.$strip>>;
|
|
960
|
+
artifacts: z.ZodArray<z.ZodObject<{
|
|
961
|
+
slug: z.ZodString;
|
|
962
|
+
pod: z.ZodOptional<z.ZodString>;
|
|
963
|
+
title: z.ZodString;
|
|
964
|
+
description: z.ZodOptional<z.ZodString>;
|
|
965
|
+
seed: z.ZodURL;
|
|
966
|
+
}, z.core.$strip>>;
|
|
967
|
+
tasks: z.ZodArray<z.ZodObject<{
|
|
968
|
+
slug: z.ZodString;
|
|
969
|
+
project: z.ZodOptional<z.ZodString>;
|
|
970
|
+
title: z.ZodString;
|
|
971
|
+
description: z.ZodOptional<z.ZodString>;
|
|
972
|
+
priority: z.ZodOptional<z.ZodEnum<{
|
|
973
|
+
high: "high";
|
|
974
|
+
low: "low";
|
|
975
|
+
medium: "medium";
|
|
976
|
+
}>>;
|
|
977
|
+
labels: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
978
|
+
}, z.core.$strip>>;
|
|
927
979
|
channels: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
928
980
|
slug: z.ZodString;
|
|
929
981
|
kind: z.ZodEnum<{
|
|
@@ -1012,7 +1064,7 @@ export declare const zBlueprintPublicView: z.ZodObject<{
|
|
|
1012
1064
|
}, z.core.$strip>>;
|
|
1013
1065
|
}, z.core.$strip>>>>;
|
|
1014
1066
|
template: z.ZodObject<{
|
|
1015
|
-
schemaVersion: z.ZodLiteral<
|
|
1067
|
+
schemaVersion: z.ZodLiteral<5>;
|
|
1016
1068
|
meta: z.ZodObject<{
|
|
1017
1069
|
name: z.ZodString;
|
|
1018
1070
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -1037,8 +1089,8 @@ export declare const zBlueprintPublicView: z.ZodObject<{
|
|
|
1037
1089
|
environment: z.ZodOptional<z.ZodObject<{
|
|
1038
1090
|
preset: z.ZodOptional<z.ZodEnum<{
|
|
1039
1091
|
small: "small";
|
|
1040
|
-
xs: "xs";
|
|
1041
1092
|
medium: "medium";
|
|
1093
|
+
xs: "xs";
|
|
1042
1094
|
large: "large";
|
|
1043
1095
|
xl: "xl";
|
|
1044
1096
|
}>>;
|
|
@@ -1253,6 +1305,32 @@ export declare const zBlueprintPublicView: z.ZodObject<{
|
|
|
1253
1305
|
}, z.core.$strip>>;
|
|
1254
1306
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1255
1307
|
}, z.core.$strip>>;
|
|
1308
|
+
databases: z.ZodArray<z.ZodObject<{
|
|
1309
|
+
slug: z.ZodString;
|
|
1310
|
+
pod: z.ZodOptional<z.ZodString>;
|
|
1311
|
+
name: z.ZodString;
|
|
1312
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1313
|
+
seedSql: z.ZodOptional<z.ZodString>;
|
|
1314
|
+
}, z.core.$strip>>;
|
|
1315
|
+
artifacts: z.ZodArray<z.ZodObject<{
|
|
1316
|
+
slug: z.ZodString;
|
|
1317
|
+
pod: z.ZodOptional<z.ZodString>;
|
|
1318
|
+
title: z.ZodString;
|
|
1319
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1320
|
+
seed: z.ZodURL;
|
|
1321
|
+
}, z.core.$strip>>;
|
|
1322
|
+
tasks: z.ZodArray<z.ZodObject<{
|
|
1323
|
+
slug: z.ZodString;
|
|
1324
|
+
project: z.ZodOptional<z.ZodString>;
|
|
1325
|
+
title: z.ZodString;
|
|
1326
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1327
|
+
priority: z.ZodOptional<z.ZodEnum<{
|
|
1328
|
+
high: "high";
|
|
1329
|
+
low: "low";
|
|
1330
|
+
medium: "medium";
|
|
1331
|
+
}>>;
|
|
1332
|
+
labels: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1333
|
+
}, z.core.$strip>>;
|
|
1256
1334
|
channels: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1257
1335
|
slug: z.ZodString;
|
|
1258
1336
|
kind: z.ZodEnum<{
|
|
@@ -2176,6 +2254,7 @@ export declare const zTopology: z.ZodObject<{
|
|
|
2176
2254
|
name: z.ZodString;
|
|
2177
2255
|
pod: z.ZodString;
|
|
2178
2256
|
agents: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2257
|
+
projectAgentId: z.ZodString;
|
|
2179
2258
|
slug: z.ZodString;
|
|
2180
2259
|
mode: z.ZodEnum<{
|
|
2181
2260
|
subagent: "subagent";
|
|
@@ -2917,6 +2996,7 @@ export declare const zArtifact: z.ZodObject<{
|
|
|
2917
2996
|
slug: z.ZodString;
|
|
2918
2997
|
title: z.ZodString;
|
|
2919
2998
|
description: z.ZodString;
|
|
2999
|
+
seedUrl: z.ZodNullable<z.ZodString>;
|
|
2920
3000
|
shareToken: z.ZodString;
|
|
2921
3001
|
createdAt: z.ZodISODateTime;
|
|
2922
3002
|
updatedAt: z.ZodISODateTime;
|
|
@@ -2931,6 +3011,7 @@ export declare const zPodDatabase: z.ZodObject<{
|
|
|
2931
3011
|
slug: z.ZodString;
|
|
2932
3012
|
name: z.ZodString;
|
|
2933
3013
|
description: z.ZodString;
|
|
3014
|
+
seedSql: z.ZodNullable<z.ZodString>;
|
|
2934
3015
|
createdAt: z.ZodISODateTime;
|
|
2935
3016
|
updatedAt: z.ZodISODateTime;
|
|
2936
3017
|
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
@@ -3611,8 +3692,8 @@ export declare const zPod: z.ZodObject<{
|
|
|
3611
3692
|
environmentId: z.ZodNullable<z.ZodString>;
|
|
3612
3693
|
presetTemplate: z.ZodEnum<{
|
|
3613
3694
|
small: "small";
|
|
3614
|
-
xs: "xs";
|
|
3615
3695
|
medium: "medium";
|
|
3696
|
+
xs: "xs";
|
|
3616
3697
|
large: "large";
|
|
3617
3698
|
xl: "xl";
|
|
3618
3699
|
}>;
|
|
@@ -3640,8 +3721,8 @@ export declare const zPodWithSandbox: z.ZodObject<{
|
|
|
3640
3721
|
environmentId: z.ZodNullable<z.ZodString>;
|
|
3641
3722
|
presetTemplate: z.ZodEnum<{
|
|
3642
3723
|
small: "small";
|
|
3643
|
-
xs: "xs";
|
|
3644
3724
|
medium: "medium";
|
|
3725
|
+
xs: "xs";
|
|
3645
3726
|
large: "large";
|
|
3646
3727
|
xl: "xl";
|
|
3647
3728
|
}>;
|
|
@@ -3708,6 +3789,10 @@ export declare const zOnboardingStart: z.ZodObject<{
|
|
|
3708
3789
|
jobId: z.ZodString;
|
|
3709
3790
|
initialPrompt: z.ZodString;
|
|
3710
3791
|
}, z.core.$strip>;
|
|
3792
|
+
export declare const zOnboardingReward: z.ZodObject<{
|
|
3793
|
+
granted: z.ZodBoolean;
|
|
3794
|
+
amount: z.ZodNumber;
|
|
3795
|
+
}, z.core.$strip>;
|
|
3711
3796
|
export declare const zModelPricing: z.ZodObject<{
|
|
3712
3797
|
input_usd_per_million_tokens: z.ZodNumber;
|
|
3713
3798
|
output_usd_per_million_tokens: z.ZodNumber;
|
|
@@ -4160,11 +4245,6 @@ export declare const zInferenceKey: z.ZodObject<{
|
|
|
4160
4245
|
export declare const zInferenceSubscriptionRenameInput: z.ZodObject<{
|
|
4161
4246
|
label: z.ZodString;
|
|
4162
4247
|
}, z.core.$strip>;
|
|
4163
|
-
export declare const zInferenceConnectCodexInput: z.ZodObject<{
|
|
4164
|
-
artifact: z.ZodLiteral<"access_token">;
|
|
4165
|
-
token: z.ZodString;
|
|
4166
|
-
label: z.ZodOptional<z.ZodString>;
|
|
4167
|
-
}, z.core.$strip>;
|
|
4168
4248
|
export declare const zInferenceCodexModel: z.ZodObject<{
|
|
4169
4249
|
slug: z.ZodString;
|
|
4170
4250
|
defaultEffort: z.ZodString;
|
|
@@ -4181,6 +4261,49 @@ export declare const zInferenceCodexCatalog: z.ZodObject<{
|
|
|
4181
4261
|
maxContextWindow: z.ZodInt;
|
|
4182
4262
|
}, z.core.$strip>>;
|
|
4183
4263
|
}, z.core.$strip>;
|
|
4264
|
+
export declare const zInferenceProvider: z.ZodEnum<{
|
|
4265
|
+
anthropic: "anthropic";
|
|
4266
|
+
openai: "openai";
|
|
4267
|
+
}>;
|
|
4268
|
+
export declare const zInferenceUsageBudgetEstimate: z.ZodObject<{
|
|
4269
|
+
unit: z.ZodLiteral<"normalized_provider_budget">;
|
|
4270
|
+
granularityMinutes: z.ZodInt;
|
|
4271
|
+
reliableUntil: z.ZodString;
|
|
4272
|
+
points: z.ZodArray<z.ZodObject<{
|
|
4273
|
+
capacity: z.ZodNumber;
|
|
4274
|
+
knownCapacity: z.ZodNumber;
|
|
4275
|
+
remaining: z.ZodNumber;
|
|
4276
|
+
remainingRatio: z.ZodNullable<z.ZodNumber>;
|
|
4277
|
+
unknownPlans: z.ZodInt;
|
|
4278
|
+
at: z.ZodString;
|
|
4279
|
+
byProvider: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
4280
|
+
capacity: z.ZodNumber;
|
|
4281
|
+
knownCapacity: z.ZodNumber;
|
|
4282
|
+
remaining: z.ZodNumber;
|
|
4283
|
+
remainingRatio: z.ZodNullable<z.ZodNumber>;
|
|
4284
|
+
unknownPlans: z.ZodInt;
|
|
4285
|
+
byClass: z.ZodObject<{
|
|
4286
|
+
"5h": z.ZodObject<{
|
|
4287
|
+
capacity: z.ZodNumber;
|
|
4288
|
+
knownCapacity: z.ZodNumber;
|
|
4289
|
+
remaining: z.ZodNumber;
|
|
4290
|
+
remainingRatio: z.ZodNullable<z.ZodNumber>;
|
|
4291
|
+
unknownPlans: z.ZodInt;
|
|
4292
|
+
unlimitedCapacity: z.ZodNumber;
|
|
4293
|
+
}, z.core.$strip>;
|
|
4294
|
+
"7d": z.ZodObject<{
|
|
4295
|
+
capacity: z.ZodNumber;
|
|
4296
|
+
knownCapacity: z.ZodNumber;
|
|
4297
|
+
remaining: z.ZodNumber;
|
|
4298
|
+
remainingRatio: z.ZodNullable<z.ZodNumber>;
|
|
4299
|
+
unknownPlans: z.ZodInt;
|
|
4300
|
+
unlimitedCapacity: z.ZodNumber;
|
|
4301
|
+
}, z.core.$strip>;
|
|
4302
|
+
}, z.core.$strip>;
|
|
4303
|
+
elasticPlans: z.ZodInt;
|
|
4304
|
+
}, z.core.$strip>>;
|
|
4305
|
+
}, z.core.$strip>>;
|
|
4306
|
+
}, z.core.$strip>;
|
|
4184
4307
|
export declare const zInferenceProviderUsage: z.ZodObject<{
|
|
4185
4308
|
windows: z.ZodArray<z.ZodObject<{
|
|
4186
4309
|
key: z.ZodString;
|
|
@@ -4199,6 +4322,7 @@ export declare const zInferenceProviderUsage: z.ZodObject<{
|
|
|
4199
4322
|
fable: "fable";
|
|
4200
4323
|
haiku: "haiku";
|
|
4201
4324
|
}>>>>;
|
|
4325
|
+
label: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4202
4326
|
source: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
4203
4327
|
oauth_endpoint: "oauth_endpoint";
|
|
4204
4328
|
response_header: "response_header";
|
|
@@ -4215,6 +4339,7 @@ export declare const zInferenceProviderUsage: z.ZodObject<{
|
|
|
4215
4339
|
creditsAvailable: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
|
|
4216
4340
|
creditsUnlimited: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
|
|
4217
4341
|
safetyBufferingFasterModel: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4342
|
+
polledAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4218
4343
|
observedAt: z.ZodString;
|
|
4219
4344
|
}, z.core.$strip>;
|
|
4220
4345
|
export declare const zInferenceSeatHealth: z.ZodEnum<{
|
|
@@ -4226,11 +4351,7 @@ export declare const zInferenceSeatHealth: z.ZodEnum<{
|
|
|
4226
4351
|
refresh_uncertain: "refresh_uncertain";
|
|
4227
4352
|
disabled: "disabled";
|
|
4228
4353
|
}>;
|
|
4229
|
-
export declare const
|
|
4230
|
-
anthropic: "anthropic";
|
|
4231
|
-
openai: "openai";
|
|
4232
|
-
}>;
|
|
4233
|
-
export declare const zInferenceSubscriptionSeat: z.ZodObject<{
|
|
4354
|
+
export declare const zInferenceSubscription: z.ZodObject<{
|
|
4234
4355
|
id: z.ZodString;
|
|
4235
4356
|
provider: z.ZodEnum<{
|
|
4236
4357
|
anthropic: "anthropic";
|
|
@@ -4277,6 +4398,7 @@ export declare const zInferenceSubscriptionSeat: z.ZodObject<{
|
|
|
4277
4398
|
fable: "fable";
|
|
4278
4399
|
haiku: "haiku";
|
|
4279
4400
|
}>>>>;
|
|
4401
|
+
label: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4280
4402
|
source: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
4281
4403
|
oauth_endpoint: "oauth_endpoint";
|
|
4282
4404
|
response_header: "response_header";
|
|
@@ -4293,47 +4415,153 @@ export declare const zInferenceSubscriptionSeat: z.ZodObject<{
|
|
|
4293
4415
|
creditsAvailable: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
|
|
4294
4416
|
creditsUnlimited: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
|
|
4295
4417
|
safetyBufferingFasterModel: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4418
|
+
polledAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4296
4419
|
observedAt: z.ZodString;
|
|
4297
4420
|
}, z.core.$strip>>;
|
|
4298
4421
|
lastSelectedAt: z.ZodNullable<z.ZodString>;
|
|
4299
4422
|
connectedAt: z.ZodString;
|
|
4300
4423
|
}, z.core.$strip>;
|
|
4301
|
-
export declare const
|
|
4424
|
+
export declare const zInferenceCompleteAuthorizationInput: z.ZodObject<{
|
|
4425
|
+
code: z.ZodString;
|
|
4426
|
+
}, z.core.$strip>;
|
|
4427
|
+
export declare const zInferenceBeginAuthorizationInput: z.ZodObject<{
|
|
4428
|
+
serviceId: z.ZodString;
|
|
4429
|
+
authenticationMethodId: z.ZodString;
|
|
4430
|
+
label: z.ZodOptional<z.ZodString>;
|
|
4431
|
+
accessToken: z.ZodOptional<z.ZodString>;
|
|
4432
|
+
}, z.core.$strip>;
|
|
4433
|
+
export declare const zInferenceAuthorization: z.ZodObject<{
|
|
4434
|
+
id: z.ZodNullable<z.ZodString>;
|
|
4435
|
+
serviceId: z.ZodString;
|
|
4436
|
+
providerId: z.ZodEnum<{
|
|
4437
|
+
anthropic: "anthropic";
|
|
4438
|
+
openai: "openai";
|
|
4439
|
+
}>;
|
|
4440
|
+
authenticationMethodId: z.ZodString;
|
|
4302
4441
|
status: z.ZodEnum<{
|
|
4303
4442
|
pending: "pending";
|
|
4304
4443
|
failed: "failed";
|
|
4305
4444
|
expired: "expired";
|
|
4306
4445
|
completed: "completed";
|
|
4307
4446
|
}>;
|
|
4308
|
-
|
|
4447
|
+
step: z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
|
|
4448
|
+
kind: z.ZodLiteral<"open-url-and-paste-code">;
|
|
4449
|
+
authorizeUrl: z.ZodURL;
|
|
4450
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4451
|
+
kind: z.ZodLiteral<"enter-user-code">;
|
|
4452
|
+
verificationUrl: z.ZodURL;
|
|
4453
|
+
userCode: z.ZodString;
|
|
4454
|
+
pollIntervalMs: z.ZodInt;
|
|
4455
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4456
|
+
kind: z.ZodLiteral<"submit-access-token">;
|
|
4457
|
+
}, z.core.$strip>]>>;
|
|
4458
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
4459
|
+
connectionId: z.ZodNullable<z.ZodString>;
|
|
4460
|
+
failureReason: z.ZodNullable<z.ZodString>;
|
|
4461
|
+
}, z.core.$strip>;
|
|
4462
|
+
export declare const zInferenceSubscriptionAvailabilityStatus: z.ZodEnum<{
|
|
4463
|
+
exhausted: "exhausted";
|
|
4464
|
+
blocked: "blocked";
|
|
4465
|
+
disabled: "disabled";
|
|
4466
|
+
available: "available";
|
|
4467
|
+
temporarily_unavailable: "temporarily_unavailable";
|
|
4468
|
+
}>;
|
|
4469
|
+
export declare const zInferenceConnectionSubscription: z.ZodObject<{
|
|
4470
|
+
id: z.ZodString;
|
|
4471
|
+
serviceId: z.ZodString;
|
|
4472
|
+
providerSubscriptionTier: z.ZodNullable<z.ZodString>;
|
|
4473
|
+
providerSubscriptionStatus: z.ZodNullable<z.ZodString>;
|
|
4474
|
+
providerRateLimitTier: z.ZodNullable<z.ZodString>;
|
|
4475
|
+
availabilityStatus: z.ZodEnum<{
|
|
4476
|
+
exhausted: "exhausted";
|
|
4477
|
+
blocked: "blocked";
|
|
4478
|
+
disabled: "disabled";
|
|
4479
|
+
available: "available";
|
|
4480
|
+
temporarily_unavailable: "temporarily_unavailable";
|
|
4481
|
+
}>;
|
|
4482
|
+
availabilityReason: z.ZodNullable<z.ZodString>;
|
|
4483
|
+
unavailableUntil: z.ZodNullable<z.ZodString>;
|
|
4484
|
+
supportedModels: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
4485
|
+
supportedEfforts: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString>>>;
|
|
4486
|
+
usage: z.ZodNullable<z.ZodObject<{
|
|
4487
|
+
windows: z.ZodArray<z.ZodObject<{
|
|
4488
|
+
key: z.ZodString;
|
|
4489
|
+
kind: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
4490
|
+
quota: "quota";
|
|
4491
|
+
entitlement: "entitlement";
|
|
4492
|
+
}>>>;
|
|
4493
|
+
windowMinutes: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodInt>>>;
|
|
4494
|
+
utilization: z.ZodNullable<z.ZodNumber>;
|
|
4495
|
+
status: z.ZodNullable<z.ZodString>;
|
|
4496
|
+
resetsAt: z.ZodNullable<z.ZodString>;
|
|
4497
|
+
models: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
4498
|
+
family: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
4499
|
+
opus: "opus";
|
|
4500
|
+
sonnet: "sonnet";
|
|
4501
|
+
fable: "fable";
|
|
4502
|
+
haiku: "haiku";
|
|
4503
|
+
}>>>>;
|
|
4504
|
+
label: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4505
|
+
source: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
4506
|
+
oauth_endpoint: "oauth_endpoint";
|
|
4507
|
+
response_header: "response_header";
|
|
4508
|
+
}>>>;
|
|
4509
|
+
observedAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4510
|
+
}, z.core.$strip>>;
|
|
4511
|
+
status: z.ZodNullable<z.ZodString>;
|
|
4512
|
+
resetsAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4513
|
+
representativeWindow: z.ZodNullable<z.ZodString>;
|
|
4514
|
+
overageDisabledReason: z.ZodNullable<z.ZodString>;
|
|
4515
|
+
fallbackPercentage: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
4516
|
+
activeLimit: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4517
|
+
planType: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4518
|
+
creditsAvailable: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
|
|
4519
|
+
creditsUnlimited: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
|
|
4520
|
+
safetyBufferingFasterModel: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4521
|
+
polledAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4522
|
+
observedAt: z.ZodString;
|
|
4523
|
+
}, z.core.$strip>>;
|
|
4524
|
+
lastSelectedAt: z.ZodNullable<z.ZodString>;
|
|
4525
|
+
}, z.core.$strip>;
|
|
4526
|
+
export declare const zInferenceConnectionCredentialStatus: z.ZodEnum<{
|
|
4527
|
+
needs_reauth: "needs_reauth";
|
|
4528
|
+
refresh_uncertain: "refresh_uncertain";
|
|
4529
|
+
disabled: "disabled";
|
|
4530
|
+
valid: "valid";
|
|
4531
|
+
}>;
|
|
4532
|
+
export declare const zInferenceConnection: z.ZodObject<{
|
|
4533
|
+
id: z.ZodString;
|
|
4534
|
+
providerId: z.ZodEnum<{
|
|
4535
|
+
anthropic: "anthropic";
|
|
4536
|
+
openai: "openai";
|
|
4537
|
+
}>;
|
|
4538
|
+
authenticationMethodId: z.ZodString;
|
|
4539
|
+
label: z.ZodString;
|
|
4540
|
+
credentialStatus: z.ZodEnum<{
|
|
4541
|
+
needs_reauth: "needs_reauth";
|
|
4542
|
+
refresh_uncertain: "refresh_uncertain";
|
|
4543
|
+
disabled: "disabled";
|
|
4544
|
+
valid: "valid";
|
|
4545
|
+
}>;
|
|
4546
|
+
credentialStatusReason: z.ZodNullable<z.ZodString>;
|
|
4547
|
+
credentialExpiresAt: z.ZodNullable<z.ZodString>;
|
|
4548
|
+
subscriptions: z.ZodArray<z.ZodObject<{
|
|
4309
4549
|
id: z.ZodString;
|
|
4310
|
-
|
|
4311
|
-
|
|
4312
|
-
|
|
4313
|
-
|
|
4314
|
-
|
|
4315
|
-
health: z.ZodEnum<{
|
|
4316
|
-
connected: "connected";
|
|
4550
|
+
serviceId: z.ZodString;
|
|
4551
|
+
providerSubscriptionTier: z.ZodNullable<z.ZodString>;
|
|
4552
|
+
providerSubscriptionStatus: z.ZodNullable<z.ZodString>;
|
|
4553
|
+
providerRateLimitTier: z.ZodNullable<z.ZodString>;
|
|
4554
|
+
availabilityStatus: z.ZodEnum<{
|
|
4317
4555
|
exhausted: "exhausted";
|
|
4318
|
-
transient: "transient";
|
|
4319
|
-
needs_reauth: "needs_reauth";
|
|
4320
4556
|
blocked: "blocked";
|
|
4321
|
-
refresh_uncertain: "refresh_uncertain";
|
|
4322
4557
|
disabled: "disabled";
|
|
4558
|
+
available: "available";
|
|
4559
|
+
temporarily_unavailable: "temporarily_unavailable";
|
|
4323
4560
|
}>;
|
|
4324
|
-
|
|
4325
|
-
|
|
4326
|
-
rateLimitTier: z.ZodNullable<z.ZodString>;
|
|
4327
|
-
credentialKind: z.ZodString;
|
|
4328
|
-
workspaceId: z.ZodNullable<z.ZodString>;
|
|
4329
|
-
planType: z.ZodNullable<z.ZodString>;
|
|
4561
|
+
availabilityReason: z.ZodNullable<z.ZodString>;
|
|
4562
|
+
unavailableUntil: z.ZodNullable<z.ZodString>;
|
|
4330
4563
|
supportedModels: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
4331
|
-
|
|
4332
|
-
credentialExpiresAt: z.ZodNullable<z.ZodString>;
|
|
4333
|
-
contributor: z.ZodNullable<z.ZodObject<{
|
|
4334
|
-
id: z.ZodString;
|
|
4335
|
-
name: z.ZodString;
|
|
4336
|
-
}, z.core.$strip>>;
|
|
4564
|
+
supportedEfforts: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString>>>;
|
|
4337
4565
|
usage: z.ZodNullable<z.ZodObject<{
|
|
4338
4566
|
windows: z.ZodArray<z.ZodObject<{
|
|
4339
4567
|
key: z.ZodString;
|
|
@@ -4352,6 +4580,7 @@ export declare const zInferenceCodexDeviceStatus: z.ZodObject<{
|
|
|
4352
4580
|
fable: "fable";
|
|
4353
4581
|
haiku: "haiku";
|
|
4354
4582
|
}>>>>;
|
|
4583
|
+
label: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4355
4584
|
source: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
4356
4585
|
oauth_endpoint: "oauth_endpoint";
|
|
4357
4586
|
response_header: "response_header";
|
|
@@ -4368,34 +4597,30 @@ export declare const zInferenceCodexDeviceStatus: z.ZodObject<{
|
|
|
4368
4597
|
creditsAvailable: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
|
|
4369
4598
|
creditsUnlimited: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
|
|
4370
4599
|
safetyBufferingFasterModel: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4600
|
+
polledAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4371
4601
|
observedAt: z.ZodString;
|
|
4372
4602
|
}, z.core.$strip>>;
|
|
4373
4603
|
lastSelectedAt: z.ZodNullable<z.ZodString>;
|
|
4374
|
-
connectedAt: z.ZodString;
|
|
4375
4604
|
}, z.core.$strip>>;
|
|
4376
|
-
|
|
4377
|
-
}, z.core.$strip>;
|
|
4378
|
-
export declare const zInferenceCodexDeviceStartInput: z.ZodObject<{
|
|
4379
|
-
label: z.ZodOptional<z.ZodString>;
|
|
4380
|
-
}, z.core.$strip>;
|
|
4381
|
-
export declare const zInferenceCodexDeviceStart: z.ZodObject<{
|
|
4382
|
-
sessionId: z.ZodString;
|
|
4383
|
-
verificationUrl: z.ZodURL;
|
|
4384
|
-
userCode: z.ZodString;
|
|
4385
|
-
intervalMs: z.ZodNumber;
|
|
4386
|
-
expiresAt: z.ZodString;
|
|
4387
|
-
}, z.core.$strip>;
|
|
4388
|
-
export declare const zInferenceOauthCompleteInput: z.ZodObject<{
|
|
4389
|
-
sessionId: z.ZodString;
|
|
4390
|
-
code: z.ZodString;
|
|
4391
|
-
}, z.core.$strip>;
|
|
4392
|
-
export declare const zInferenceOauthStartInput: z.ZodObject<{
|
|
4393
|
-
label: z.ZodOptional<z.ZodString>;
|
|
4605
|
+
connectedAt: z.ZodString;
|
|
4394
4606
|
}, z.core.$strip>;
|
|
4395
|
-
export declare const
|
|
4396
|
-
|
|
4397
|
-
|
|
4398
|
-
|
|
4607
|
+
export declare const zAvailableInferenceService: z.ZodObject<{
|
|
4608
|
+
id: z.ZodString;
|
|
4609
|
+
providerId: z.ZodEnum<{
|
|
4610
|
+
anthropic: "anthropic";
|
|
4611
|
+
openai: "openai";
|
|
4612
|
+
}>;
|
|
4613
|
+
authenticationMethods: z.ZodArray<z.ZodObject<{
|
|
4614
|
+
id: z.ZodString;
|
|
4615
|
+
authorizationFlow: z.ZodEnum<{
|
|
4616
|
+
"redirect-code": "redirect-code";
|
|
4617
|
+
"device-code": "device-code";
|
|
4618
|
+
"access-token": "access-token";
|
|
4619
|
+
}>;
|
|
4620
|
+
refreshable: z.ZodBoolean;
|
|
4621
|
+
acceptsNewConnections: z.ZodBoolean;
|
|
4622
|
+
label: z.ZodString;
|
|
4623
|
+
}, z.core.$strip>>;
|
|
4399
4624
|
}, z.core.$strip>;
|
|
4400
4625
|
export declare const zGoogleWorkspaceOAuthStartResult: z.ZodObject<{
|
|
4401
4626
|
url: z.ZodURL;
|
|
@@ -4808,10 +5033,13 @@ export declare const zBlueprintAddReport: z.ZodObject<{
|
|
|
4808
5033
|
mcps: z.ZodArray<z.ZodString>;
|
|
4809
5034
|
skipped: z.ZodArray<z.ZodObject<{
|
|
4810
5035
|
kind: z.ZodEnum<{
|
|
5036
|
+
task: "task";
|
|
4811
5037
|
skill: "skill";
|
|
4812
5038
|
mcp: "mcp";
|
|
4813
5039
|
trigger: "trigger";
|
|
4814
5040
|
environment: "environment";
|
|
5041
|
+
database: "database";
|
|
5042
|
+
artifact: "artifact";
|
|
4815
5043
|
}>;
|
|
4816
5044
|
sourceId: z.ZodString;
|
|
4817
5045
|
reason: z.ZodString;
|
|
@@ -4825,6 +5053,22 @@ export declare const zBlueprintAddReport: z.ZodObject<{
|
|
|
4825
5053
|
project: z.ZodOptional<z.ZodString>;
|
|
4826
5054
|
credential: z.ZodOptional<z.ZodString>;
|
|
4827
5055
|
}, z.core.$strip>>;
|
|
5056
|
+
databases: z.ZodArray<z.ZodObject<{
|
|
5057
|
+
slug: z.ZodString;
|
|
5058
|
+
id: z.ZodString;
|
|
5059
|
+
podId: z.ZodString;
|
|
5060
|
+
}, z.core.$strip>>;
|
|
5061
|
+
artifacts: z.ZodArray<z.ZodObject<{
|
|
5062
|
+
slug: z.ZodString;
|
|
5063
|
+
id: z.ZodString;
|
|
5064
|
+
podId: z.ZodString;
|
|
5065
|
+
url: z.ZodURL;
|
|
5066
|
+
}, z.core.$strip>>;
|
|
5067
|
+
tasks: z.ZodArray<z.ZodObject<{
|
|
5068
|
+
slug: z.ZodString;
|
|
5069
|
+
id: z.ZodString;
|
|
5070
|
+
projectId: z.ZodString;
|
|
5071
|
+
}, z.core.$strip>>;
|
|
4828
5072
|
podMappings: z.ZodArray<z.ZodObject<{
|
|
4829
5073
|
blueprintPodSlug: z.ZodString;
|
|
4830
5074
|
podId: z.ZodString;
|
|
@@ -4861,7 +5105,7 @@ export declare const zBlueprint: z.ZodObject<{
|
|
|
4861
5105
|
userId: z.ZodNullable<z.ZodString>;
|
|
4862
5106
|
publisherId: z.ZodNullable<z.ZodString>;
|
|
4863
5107
|
template: z.ZodObject<{
|
|
4864
|
-
schemaVersion: z.ZodLiteral<
|
|
5108
|
+
schemaVersion: z.ZodLiteral<5>;
|
|
4865
5109
|
meta: z.ZodObject<{
|
|
4866
5110
|
name: z.ZodString;
|
|
4867
5111
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -4886,8 +5130,8 @@ export declare const zBlueprint: z.ZodObject<{
|
|
|
4886
5130
|
environment: z.ZodOptional<z.ZodObject<{
|
|
4887
5131
|
preset: z.ZodOptional<z.ZodEnum<{
|
|
4888
5132
|
small: "small";
|
|
4889
|
-
xs: "xs";
|
|
4890
5133
|
medium: "medium";
|
|
5134
|
+
xs: "xs";
|
|
4891
5135
|
large: "large";
|
|
4892
5136
|
xl: "xl";
|
|
4893
5137
|
}>>;
|
|
@@ -5102,6 +5346,32 @@ export declare const zBlueprint: z.ZodObject<{
|
|
|
5102
5346
|
}, z.core.$strip>>;
|
|
5103
5347
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
5104
5348
|
}, z.core.$strip>>;
|
|
5349
|
+
databases: z.ZodArray<z.ZodObject<{
|
|
5350
|
+
slug: z.ZodString;
|
|
5351
|
+
pod: z.ZodOptional<z.ZodString>;
|
|
5352
|
+
name: z.ZodString;
|
|
5353
|
+
description: z.ZodOptional<z.ZodString>;
|
|
5354
|
+
seedSql: z.ZodOptional<z.ZodString>;
|
|
5355
|
+
}, z.core.$strip>>;
|
|
5356
|
+
artifacts: z.ZodArray<z.ZodObject<{
|
|
5357
|
+
slug: z.ZodString;
|
|
5358
|
+
pod: z.ZodOptional<z.ZodString>;
|
|
5359
|
+
title: z.ZodString;
|
|
5360
|
+
description: z.ZodOptional<z.ZodString>;
|
|
5361
|
+
seed: z.ZodURL;
|
|
5362
|
+
}, z.core.$strip>>;
|
|
5363
|
+
tasks: z.ZodArray<z.ZodObject<{
|
|
5364
|
+
slug: z.ZodString;
|
|
5365
|
+
project: z.ZodOptional<z.ZodString>;
|
|
5366
|
+
title: z.ZodString;
|
|
5367
|
+
description: z.ZodOptional<z.ZodString>;
|
|
5368
|
+
priority: z.ZodOptional<z.ZodEnum<{
|
|
5369
|
+
high: "high";
|
|
5370
|
+
low: "low";
|
|
5371
|
+
medium: "medium";
|
|
5372
|
+
}>>;
|
|
5373
|
+
labels: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
5374
|
+
}, z.core.$strip>>;
|
|
5105
5375
|
channels: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5106
5376
|
slug: z.ZodString;
|
|
5107
5377
|
kind: z.ZodEnum<{
|
|
@@ -5623,6 +5893,16 @@ export declare const zActivation: z.ZodObject<{
|
|
|
5623
5893
|
"cron_trigger.created": "cron_trigger.created";
|
|
5624
5894
|
"artifact.created": "artifact.created";
|
|
5625
5895
|
}>>;
|
|
5896
|
+
rewards: z.ZodArray<z.ZodEnum<{
|
|
5897
|
+
app: "app";
|
|
5898
|
+
channel: "channel";
|
|
5899
|
+
composer: "composer";
|
|
5900
|
+
"activation.member.invited": "activation.member.invited";
|
|
5901
|
+
"activation.client.used": "activation.client.used";
|
|
5902
|
+
"activation.cron_trigger.created": "activation.cron_trigger.created";
|
|
5903
|
+
"activation.artifact.created": "activation.artifact.created";
|
|
5904
|
+
}>>;
|
|
5905
|
+
rewardAmounts: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
5626
5906
|
complete: z.ZodBoolean;
|
|
5627
5907
|
dismissed: z.ZodBoolean;
|
|
5628
5908
|
}, z.core.$strip>;
|
|
@@ -5637,6 +5917,16 @@ export declare const zActivationGetResponse: z.ZodObject<{
|
|
|
5637
5917
|
"cron_trigger.created": "cron_trigger.created";
|
|
5638
5918
|
"artifact.created": "artifact.created";
|
|
5639
5919
|
}>>;
|
|
5920
|
+
rewards: z.ZodArray<z.ZodEnum<{
|
|
5921
|
+
app: "app";
|
|
5922
|
+
channel: "channel";
|
|
5923
|
+
composer: "composer";
|
|
5924
|
+
"activation.member.invited": "activation.member.invited";
|
|
5925
|
+
"activation.client.used": "activation.client.used";
|
|
5926
|
+
"activation.cron_trigger.created": "activation.cron_trigger.created";
|
|
5927
|
+
"activation.artifact.created": "activation.artifact.created";
|
|
5928
|
+
}>>;
|
|
5929
|
+
rewardAmounts: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
5640
5930
|
complete: z.ZodBoolean;
|
|
5641
5931
|
dismissed: z.ZodBoolean;
|
|
5642
5932
|
}, z.core.$strip>;
|
|
@@ -5651,6 +5941,16 @@ export declare const zActivationDismissResponse: z.ZodObject<{
|
|
|
5651
5941
|
"cron_trigger.created": "cron_trigger.created";
|
|
5652
5942
|
"artifact.created": "artifact.created";
|
|
5653
5943
|
}>>;
|
|
5944
|
+
rewards: z.ZodArray<z.ZodEnum<{
|
|
5945
|
+
app: "app";
|
|
5946
|
+
channel: "channel";
|
|
5947
|
+
composer: "composer";
|
|
5948
|
+
"activation.member.invited": "activation.member.invited";
|
|
5949
|
+
"activation.client.used": "activation.client.used";
|
|
5950
|
+
"activation.cron_trigger.created": "activation.cron_trigger.created";
|
|
5951
|
+
"activation.artifact.created": "activation.artifact.created";
|
|
5952
|
+
}>>;
|
|
5953
|
+
rewardAmounts: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
5654
5954
|
complete: z.ZodBoolean;
|
|
5655
5955
|
dismissed: z.ZodBoolean;
|
|
5656
5956
|
}, z.core.$strip>;
|
|
@@ -7381,7 +7681,7 @@ export declare const zBlueprintListResponse: z.ZodArray<z.ZodObject<{
|
|
|
7381
7681
|
userId: z.ZodNullable<z.ZodString>;
|
|
7382
7682
|
publisherId: z.ZodNullable<z.ZodString>;
|
|
7383
7683
|
template: z.ZodObject<{
|
|
7384
|
-
schemaVersion: z.ZodLiteral<
|
|
7684
|
+
schemaVersion: z.ZodLiteral<5>;
|
|
7385
7685
|
meta: z.ZodObject<{
|
|
7386
7686
|
name: z.ZodString;
|
|
7387
7687
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -7406,8 +7706,8 @@ export declare const zBlueprintListResponse: z.ZodArray<z.ZodObject<{
|
|
|
7406
7706
|
environment: z.ZodOptional<z.ZodObject<{
|
|
7407
7707
|
preset: z.ZodOptional<z.ZodEnum<{
|
|
7408
7708
|
small: "small";
|
|
7409
|
-
xs: "xs";
|
|
7410
7709
|
medium: "medium";
|
|
7710
|
+
xs: "xs";
|
|
7411
7711
|
large: "large";
|
|
7412
7712
|
xl: "xl";
|
|
7413
7713
|
}>>;
|
|
@@ -7622,6 +7922,32 @@ export declare const zBlueprintListResponse: z.ZodArray<z.ZodObject<{
|
|
|
7622
7922
|
}, z.core.$strip>>;
|
|
7623
7923
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
7624
7924
|
}, z.core.$strip>>;
|
|
7925
|
+
databases: z.ZodArray<z.ZodObject<{
|
|
7926
|
+
slug: z.ZodString;
|
|
7927
|
+
pod: z.ZodOptional<z.ZodString>;
|
|
7928
|
+
name: z.ZodString;
|
|
7929
|
+
description: z.ZodOptional<z.ZodString>;
|
|
7930
|
+
seedSql: z.ZodOptional<z.ZodString>;
|
|
7931
|
+
}, z.core.$strip>>;
|
|
7932
|
+
artifacts: z.ZodArray<z.ZodObject<{
|
|
7933
|
+
slug: z.ZodString;
|
|
7934
|
+
pod: z.ZodOptional<z.ZodString>;
|
|
7935
|
+
title: z.ZodString;
|
|
7936
|
+
description: z.ZodOptional<z.ZodString>;
|
|
7937
|
+
seed: z.ZodURL;
|
|
7938
|
+
}, z.core.$strip>>;
|
|
7939
|
+
tasks: z.ZodArray<z.ZodObject<{
|
|
7940
|
+
slug: z.ZodString;
|
|
7941
|
+
project: z.ZodOptional<z.ZodString>;
|
|
7942
|
+
title: z.ZodString;
|
|
7943
|
+
description: z.ZodOptional<z.ZodString>;
|
|
7944
|
+
priority: z.ZodOptional<z.ZodEnum<{
|
|
7945
|
+
high: "high";
|
|
7946
|
+
low: "low";
|
|
7947
|
+
medium: "medium";
|
|
7948
|
+
}>>;
|
|
7949
|
+
labels: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7950
|
+
}, z.core.$strip>>;
|
|
7625
7951
|
channels: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7626
7952
|
slug: z.ZodString;
|
|
7627
7953
|
kind: z.ZodEnum<{
|
|
@@ -7699,7 +8025,7 @@ export declare const zBlueprintCreateBody: z.ZodObject<{
|
|
|
7699
8025
|
}, z.core.$strip>>>>;
|
|
7700
8026
|
replays: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
7701
8027
|
spec: z.ZodObject<{
|
|
7702
|
-
schemaVersion: z.ZodLiteral<
|
|
8028
|
+
schemaVersion: z.ZodLiteral<5>;
|
|
7703
8029
|
meta: z.ZodObject<{
|
|
7704
8030
|
name: z.ZodString;
|
|
7705
8031
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -7724,8 +8050,8 @@ export declare const zBlueprintCreateBody: z.ZodObject<{
|
|
|
7724
8050
|
environment: z.ZodOptional<z.ZodObject<{
|
|
7725
8051
|
preset: z.ZodOptional<z.ZodEnum<{
|
|
7726
8052
|
small: "small";
|
|
7727
|
-
xs: "xs";
|
|
7728
8053
|
medium: "medium";
|
|
8054
|
+
xs: "xs";
|
|
7729
8055
|
large: "large";
|
|
7730
8056
|
xl: "xl";
|
|
7731
8057
|
}>>;
|
|
@@ -7940,21 +8266,47 @@ export declare const zBlueprintCreateBody: z.ZodObject<{
|
|
|
7940
8266
|
}, z.core.$strip>>;
|
|
7941
8267
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
7942
8268
|
}, z.core.$strip>>;
|
|
7943
|
-
|
|
8269
|
+
databases: z.ZodArray<z.ZodObject<{
|
|
7944
8270
|
slug: z.ZodString;
|
|
7945
|
-
|
|
7946
|
-
|
|
7947
|
-
|
|
7948
|
-
|
|
7949
|
-
|
|
7950
|
-
|
|
7951
|
-
|
|
7952
|
-
|
|
7953
|
-
|
|
7954
|
-
|
|
7955
|
-
|
|
7956
|
-
|
|
7957
|
-
|
|
8271
|
+
pod: z.ZodOptional<z.ZodString>;
|
|
8272
|
+
name: z.ZodString;
|
|
8273
|
+
description: z.ZodOptional<z.ZodString>;
|
|
8274
|
+
seedSql: z.ZodOptional<z.ZodString>;
|
|
8275
|
+
}, z.core.$strip>>;
|
|
8276
|
+
artifacts: z.ZodArray<z.ZodObject<{
|
|
8277
|
+
slug: z.ZodString;
|
|
8278
|
+
pod: z.ZodOptional<z.ZodString>;
|
|
8279
|
+
title: z.ZodString;
|
|
8280
|
+
description: z.ZodOptional<z.ZodString>;
|
|
8281
|
+
seed: z.ZodURL;
|
|
8282
|
+
}, z.core.$strip>>;
|
|
8283
|
+
tasks: z.ZodArray<z.ZodObject<{
|
|
8284
|
+
slug: z.ZodString;
|
|
8285
|
+
project: z.ZodOptional<z.ZodString>;
|
|
8286
|
+
title: z.ZodString;
|
|
8287
|
+
description: z.ZodOptional<z.ZodString>;
|
|
8288
|
+
priority: z.ZodOptional<z.ZodEnum<{
|
|
8289
|
+
high: "high";
|
|
8290
|
+
low: "low";
|
|
8291
|
+
medium: "medium";
|
|
8292
|
+
}>>;
|
|
8293
|
+
labels: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8294
|
+
}, z.core.$strip>>;
|
|
8295
|
+
channels: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8296
|
+
slug: z.ZodString;
|
|
8297
|
+
kind: z.ZodEnum<{
|
|
8298
|
+
slack: "slack";
|
|
8299
|
+
linear: "linear";
|
|
8300
|
+
github: "github";
|
|
8301
|
+
telegram: "telegram";
|
|
8302
|
+
email: "email";
|
|
8303
|
+
}>;
|
|
8304
|
+
purpose: z.ZodString;
|
|
8305
|
+
}, z.core.$strip>>>;
|
|
8306
|
+
initialPrompt: z.ZodOptional<z.ZodObject<{
|
|
8307
|
+
prompt: z.ZodString;
|
|
8308
|
+
project: z.ZodOptional<z.ZodString>;
|
|
8309
|
+
}, z.core.$strip>>;
|
|
7958
8310
|
}, z.core.$strip>;
|
|
7959
8311
|
visibility: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
7960
8312
|
org: "org";
|
|
@@ -7987,7 +8339,7 @@ export declare const zBlueprintCreateResponse: z.ZodObject<{
|
|
|
7987
8339
|
userId: z.ZodNullable<z.ZodString>;
|
|
7988
8340
|
publisherId: z.ZodNullable<z.ZodString>;
|
|
7989
8341
|
template: z.ZodObject<{
|
|
7990
|
-
schemaVersion: z.ZodLiteral<
|
|
8342
|
+
schemaVersion: z.ZodLiteral<5>;
|
|
7991
8343
|
meta: z.ZodObject<{
|
|
7992
8344
|
name: z.ZodString;
|
|
7993
8345
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -8012,8 +8364,8 @@ export declare const zBlueprintCreateResponse: z.ZodObject<{
|
|
|
8012
8364
|
environment: z.ZodOptional<z.ZodObject<{
|
|
8013
8365
|
preset: z.ZodOptional<z.ZodEnum<{
|
|
8014
8366
|
small: "small";
|
|
8015
|
-
xs: "xs";
|
|
8016
8367
|
medium: "medium";
|
|
8368
|
+
xs: "xs";
|
|
8017
8369
|
large: "large";
|
|
8018
8370
|
xl: "xl";
|
|
8019
8371
|
}>>;
|
|
@@ -8228,6 +8580,32 @@ export declare const zBlueprintCreateResponse: z.ZodObject<{
|
|
|
8228
8580
|
}, z.core.$strip>>;
|
|
8229
8581
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
8230
8582
|
}, z.core.$strip>>;
|
|
8583
|
+
databases: z.ZodArray<z.ZodObject<{
|
|
8584
|
+
slug: z.ZodString;
|
|
8585
|
+
pod: z.ZodOptional<z.ZodString>;
|
|
8586
|
+
name: z.ZodString;
|
|
8587
|
+
description: z.ZodOptional<z.ZodString>;
|
|
8588
|
+
seedSql: z.ZodOptional<z.ZodString>;
|
|
8589
|
+
}, z.core.$strip>>;
|
|
8590
|
+
artifacts: z.ZodArray<z.ZodObject<{
|
|
8591
|
+
slug: z.ZodString;
|
|
8592
|
+
pod: z.ZodOptional<z.ZodString>;
|
|
8593
|
+
title: z.ZodString;
|
|
8594
|
+
description: z.ZodOptional<z.ZodString>;
|
|
8595
|
+
seed: z.ZodURL;
|
|
8596
|
+
}, z.core.$strip>>;
|
|
8597
|
+
tasks: z.ZodArray<z.ZodObject<{
|
|
8598
|
+
slug: z.ZodString;
|
|
8599
|
+
project: z.ZodOptional<z.ZodString>;
|
|
8600
|
+
title: z.ZodString;
|
|
8601
|
+
description: z.ZodOptional<z.ZodString>;
|
|
8602
|
+
priority: z.ZodOptional<z.ZodEnum<{
|
|
8603
|
+
high: "high";
|
|
8604
|
+
low: "low";
|
|
8605
|
+
medium: "medium";
|
|
8606
|
+
}>>;
|
|
8607
|
+
labels: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8608
|
+
}, z.core.$strip>>;
|
|
8231
8609
|
channels: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8232
8610
|
slug: z.ZodString;
|
|
8233
8611
|
kind: z.ZodEnum<{
|
|
@@ -8305,7 +8683,7 @@ export declare const zBlueprintPushBody: z.ZodObject<{
|
|
|
8305
8683
|
privacyPolicyUrl: z.ZodOptional<z.ZodURL>;
|
|
8306
8684
|
}, z.core.$strip>>>;
|
|
8307
8685
|
spec: z.ZodObject<{
|
|
8308
|
-
schemaVersion: z.ZodLiteral<
|
|
8686
|
+
schemaVersion: z.ZodLiteral<5>;
|
|
8309
8687
|
meta: z.ZodObject<{
|
|
8310
8688
|
name: z.ZodString;
|
|
8311
8689
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -8330,8 +8708,8 @@ export declare const zBlueprintPushBody: z.ZodObject<{
|
|
|
8330
8708
|
environment: z.ZodOptional<z.ZodObject<{
|
|
8331
8709
|
preset: z.ZodOptional<z.ZodEnum<{
|
|
8332
8710
|
small: "small";
|
|
8333
|
-
xs: "xs";
|
|
8334
8711
|
medium: "medium";
|
|
8712
|
+
xs: "xs";
|
|
8335
8713
|
large: "large";
|
|
8336
8714
|
xl: "xl";
|
|
8337
8715
|
}>>;
|
|
@@ -8546,6 +8924,32 @@ export declare const zBlueprintPushBody: z.ZodObject<{
|
|
|
8546
8924
|
}, z.core.$strip>>;
|
|
8547
8925
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
8548
8926
|
}, z.core.$strip>>;
|
|
8927
|
+
databases: z.ZodArray<z.ZodObject<{
|
|
8928
|
+
slug: z.ZodString;
|
|
8929
|
+
pod: z.ZodOptional<z.ZodString>;
|
|
8930
|
+
name: z.ZodString;
|
|
8931
|
+
description: z.ZodOptional<z.ZodString>;
|
|
8932
|
+
seedSql: z.ZodOptional<z.ZodString>;
|
|
8933
|
+
}, z.core.$strip>>;
|
|
8934
|
+
artifacts: z.ZodArray<z.ZodObject<{
|
|
8935
|
+
slug: z.ZodString;
|
|
8936
|
+
pod: z.ZodOptional<z.ZodString>;
|
|
8937
|
+
title: z.ZodString;
|
|
8938
|
+
description: z.ZodOptional<z.ZodString>;
|
|
8939
|
+
seed: z.ZodURL;
|
|
8940
|
+
}, z.core.$strip>>;
|
|
8941
|
+
tasks: z.ZodArray<z.ZodObject<{
|
|
8942
|
+
slug: z.ZodString;
|
|
8943
|
+
project: z.ZodOptional<z.ZodString>;
|
|
8944
|
+
title: z.ZodString;
|
|
8945
|
+
description: z.ZodOptional<z.ZodString>;
|
|
8946
|
+
priority: z.ZodOptional<z.ZodEnum<{
|
|
8947
|
+
high: "high";
|
|
8948
|
+
low: "low";
|
|
8949
|
+
medium: "medium";
|
|
8950
|
+
}>>;
|
|
8951
|
+
labels: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8952
|
+
}, z.core.$strip>>;
|
|
8549
8953
|
channels: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8550
8954
|
slug: z.ZodString;
|
|
8551
8955
|
kind: z.ZodEnum<{
|
|
@@ -8589,7 +8993,7 @@ export declare const zBlueprintPushResponse: z.ZodObject<{
|
|
|
8589
8993
|
userId: z.ZodNullable<z.ZodString>;
|
|
8590
8994
|
publisherId: z.ZodNullable<z.ZodString>;
|
|
8591
8995
|
template: z.ZodObject<{
|
|
8592
|
-
schemaVersion: z.ZodLiteral<
|
|
8996
|
+
schemaVersion: z.ZodLiteral<5>;
|
|
8593
8997
|
meta: z.ZodObject<{
|
|
8594
8998
|
name: z.ZodString;
|
|
8595
8999
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -8614,8 +9018,8 @@ export declare const zBlueprintPushResponse: z.ZodObject<{
|
|
|
8614
9018
|
environment: z.ZodOptional<z.ZodObject<{
|
|
8615
9019
|
preset: z.ZodOptional<z.ZodEnum<{
|
|
8616
9020
|
small: "small";
|
|
8617
|
-
xs: "xs";
|
|
8618
9021
|
medium: "medium";
|
|
9022
|
+
xs: "xs";
|
|
8619
9023
|
large: "large";
|
|
8620
9024
|
xl: "xl";
|
|
8621
9025
|
}>>;
|
|
@@ -8830,6 +9234,32 @@ export declare const zBlueprintPushResponse: z.ZodObject<{
|
|
|
8830
9234
|
}, z.core.$strip>>;
|
|
8831
9235
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
8832
9236
|
}, z.core.$strip>>;
|
|
9237
|
+
databases: z.ZodArray<z.ZodObject<{
|
|
9238
|
+
slug: z.ZodString;
|
|
9239
|
+
pod: z.ZodOptional<z.ZodString>;
|
|
9240
|
+
name: z.ZodString;
|
|
9241
|
+
description: z.ZodOptional<z.ZodString>;
|
|
9242
|
+
seedSql: z.ZodOptional<z.ZodString>;
|
|
9243
|
+
}, z.core.$strip>>;
|
|
9244
|
+
artifacts: z.ZodArray<z.ZodObject<{
|
|
9245
|
+
slug: z.ZodString;
|
|
9246
|
+
pod: z.ZodOptional<z.ZodString>;
|
|
9247
|
+
title: z.ZodString;
|
|
9248
|
+
description: z.ZodOptional<z.ZodString>;
|
|
9249
|
+
seed: z.ZodURL;
|
|
9250
|
+
}, z.core.$strip>>;
|
|
9251
|
+
tasks: z.ZodArray<z.ZodObject<{
|
|
9252
|
+
slug: z.ZodString;
|
|
9253
|
+
project: z.ZodOptional<z.ZodString>;
|
|
9254
|
+
title: z.ZodString;
|
|
9255
|
+
description: z.ZodOptional<z.ZodString>;
|
|
9256
|
+
priority: z.ZodOptional<z.ZodEnum<{
|
|
9257
|
+
high: "high";
|
|
9258
|
+
low: "low";
|
|
9259
|
+
medium: "medium";
|
|
9260
|
+
}>>;
|
|
9261
|
+
labels: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9262
|
+
}, z.core.$strip>>;
|
|
8833
9263
|
channels: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8834
9264
|
slug: z.ZodString;
|
|
8835
9265
|
kind: z.ZodEnum<{
|
|
@@ -8908,10 +9338,13 @@ export declare const zBlueprintAddResponse: z.ZodObject<{
|
|
|
8908
9338
|
mcps: z.ZodArray<z.ZodString>;
|
|
8909
9339
|
skipped: z.ZodArray<z.ZodObject<{
|
|
8910
9340
|
kind: z.ZodEnum<{
|
|
9341
|
+
task: "task";
|
|
8911
9342
|
skill: "skill";
|
|
8912
9343
|
mcp: "mcp";
|
|
8913
9344
|
trigger: "trigger";
|
|
8914
9345
|
environment: "environment";
|
|
9346
|
+
database: "database";
|
|
9347
|
+
artifact: "artifact";
|
|
8915
9348
|
}>;
|
|
8916
9349
|
sourceId: z.ZodString;
|
|
8917
9350
|
reason: z.ZodString;
|
|
@@ -8925,6 +9358,22 @@ export declare const zBlueprintAddResponse: z.ZodObject<{
|
|
|
8925
9358
|
project: z.ZodOptional<z.ZodString>;
|
|
8926
9359
|
credential: z.ZodOptional<z.ZodString>;
|
|
8927
9360
|
}, z.core.$strip>>;
|
|
9361
|
+
databases: z.ZodArray<z.ZodObject<{
|
|
9362
|
+
slug: z.ZodString;
|
|
9363
|
+
id: z.ZodString;
|
|
9364
|
+
podId: z.ZodString;
|
|
9365
|
+
}, z.core.$strip>>;
|
|
9366
|
+
artifacts: z.ZodArray<z.ZodObject<{
|
|
9367
|
+
slug: z.ZodString;
|
|
9368
|
+
id: z.ZodString;
|
|
9369
|
+
podId: z.ZodString;
|
|
9370
|
+
url: z.ZodURL;
|
|
9371
|
+
}, z.core.$strip>>;
|
|
9372
|
+
tasks: z.ZodArray<z.ZodObject<{
|
|
9373
|
+
slug: z.ZodString;
|
|
9374
|
+
id: z.ZodString;
|
|
9375
|
+
projectId: z.ZodString;
|
|
9376
|
+
}, z.core.$strip>>;
|
|
8928
9377
|
podMappings: z.ZodArray<z.ZodObject<{
|
|
8929
9378
|
blueprintPodSlug: z.ZodString;
|
|
8930
9379
|
podId: z.ZodString;
|
|
@@ -8967,7 +9416,7 @@ export declare const zBlueprintGetResponse: z.ZodObject<{
|
|
|
8967
9416
|
userId: z.ZodNullable<z.ZodString>;
|
|
8968
9417
|
publisherId: z.ZodNullable<z.ZodString>;
|
|
8969
9418
|
template: z.ZodObject<{
|
|
8970
|
-
schemaVersion: z.ZodLiteral<
|
|
9419
|
+
schemaVersion: z.ZodLiteral<5>;
|
|
8971
9420
|
meta: z.ZodObject<{
|
|
8972
9421
|
name: z.ZodString;
|
|
8973
9422
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -8992,8 +9441,8 @@ export declare const zBlueprintGetResponse: z.ZodObject<{
|
|
|
8992
9441
|
environment: z.ZodOptional<z.ZodObject<{
|
|
8993
9442
|
preset: z.ZodOptional<z.ZodEnum<{
|
|
8994
9443
|
small: "small";
|
|
8995
|
-
xs: "xs";
|
|
8996
9444
|
medium: "medium";
|
|
9445
|
+
xs: "xs";
|
|
8997
9446
|
large: "large";
|
|
8998
9447
|
xl: "xl";
|
|
8999
9448
|
}>>;
|
|
@@ -9208,6 +9657,32 @@ export declare const zBlueprintGetResponse: z.ZodObject<{
|
|
|
9208
9657
|
}, z.core.$strip>>;
|
|
9209
9658
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
9210
9659
|
}, z.core.$strip>>;
|
|
9660
|
+
databases: z.ZodArray<z.ZodObject<{
|
|
9661
|
+
slug: z.ZodString;
|
|
9662
|
+
pod: z.ZodOptional<z.ZodString>;
|
|
9663
|
+
name: z.ZodString;
|
|
9664
|
+
description: z.ZodOptional<z.ZodString>;
|
|
9665
|
+
seedSql: z.ZodOptional<z.ZodString>;
|
|
9666
|
+
}, z.core.$strip>>;
|
|
9667
|
+
artifacts: z.ZodArray<z.ZodObject<{
|
|
9668
|
+
slug: z.ZodString;
|
|
9669
|
+
pod: z.ZodOptional<z.ZodString>;
|
|
9670
|
+
title: z.ZodString;
|
|
9671
|
+
description: z.ZodOptional<z.ZodString>;
|
|
9672
|
+
seed: z.ZodURL;
|
|
9673
|
+
}, z.core.$strip>>;
|
|
9674
|
+
tasks: z.ZodArray<z.ZodObject<{
|
|
9675
|
+
slug: z.ZodString;
|
|
9676
|
+
project: z.ZodOptional<z.ZodString>;
|
|
9677
|
+
title: z.ZodString;
|
|
9678
|
+
description: z.ZodOptional<z.ZodString>;
|
|
9679
|
+
priority: z.ZodOptional<z.ZodEnum<{
|
|
9680
|
+
high: "high";
|
|
9681
|
+
low: "low";
|
|
9682
|
+
medium: "medium";
|
|
9683
|
+
}>>;
|
|
9684
|
+
labels: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9685
|
+
}, z.core.$strip>>;
|
|
9211
9686
|
channels: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9212
9687
|
slug: z.ZodString;
|
|
9213
9688
|
kind: z.ZodEnum<{
|
|
@@ -9284,7 +9759,7 @@ export declare const zBlueprintUpdateBody: z.ZodObject<{
|
|
|
9284
9759
|
}, z.core.$strip>>>;
|
|
9285
9760
|
replays: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9286
9761
|
spec: z.ZodOptional<z.ZodObject<{
|
|
9287
|
-
schemaVersion: z.ZodLiteral<
|
|
9762
|
+
schemaVersion: z.ZodLiteral<5>;
|
|
9288
9763
|
meta: z.ZodObject<{
|
|
9289
9764
|
name: z.ZodString;
|
|
9290
9765
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -9309,8 +9784,8 @@ export declare const zBlueprintUpdateBody: z.ZodObject<{
|
|
|
9309
9784
|
environment: z.ZodOptional<z.ZodObject<{
|
|
9310
9785
|
preset: z.ZodOptional<z.ZodEnum<{
|
|
9311
9786
|
small: "small";
|
|
9312
|
-
xs: "xs";
|
|
9313
9787
|
medium: "medium";
|
|
9788
|
+
xs: "xs";
|
|
9314
9789
|
large: "large";
|
|
9315
9790
|
xl: "xl";
|
|
9316
9791
|
}>>;
|
|
@@ -9525,6 +10000,32 @@ export declare const zBlueprintUpdateBody: z.ZodObject<{
|
|
|
9525
10000
|
}, z.core.$strip>>;
|
|
9526
10001
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
9527
10002
|
}, z.core.$strip>>;
|
|
10003
|
+
databases: z.ZodArray<z.ZodObject<{
|
|
10004
|
+
slug: z.ZodString;
|
|
10005
|
+
pod: z.ZodOptional<z.ZodString>;
|
|
10006
|
+
name: z.ZodString;
|
|
10007
|
+
description: z.ZodOptional<z.ZodString>;
|
|
10008
|
+
seedSql: z.ZodOptional<z.ZodString>;
|
|
10009
|
+
}, z.core.$strip>>;
|
|
10010
|
+
artifacts: z.ZodArray<z.ZodObject<{
|
|
10011
|
+
slug: z.ZodString;
|
|
10012
|
+
pod: z.ZodOptional<z.ZodString>;
|
|
10013
|
+
title: z.ZodString;
|
|
10014
|
+
description: z.ZodOptional<z.ZodString>;
|
|
10015
|
+
seed: z.ZodURL;
|
|
10016
|
+
}, z.core.$strip>>;
|
|
10017
|
+
tasks: z.ZodArray<z.ZodObject<{
|
|
10018
|
+
slug: z.ZodString;
|
|
10019
|
+
project: z.ZodOptional<z.ZodString>;
|
|
10020
|
+
title: z.ZodString;
|
|
10021
|
+
description: z.ZodOptional<z.ZodString>;
|
|
10022
|
+
priority: z.ZodOptional<z.ZodEnum<{
|
|
10023
|
+
high: "high";
|
|
10024
|
+
low: "low";
|
|
10025
|
+
medium: "medium";
|
|
10026
|
+
}>>;
|
|
10027
|
+
labels: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
10028
|
+
}, z.core.$strip>>;
|
|
9528
10029
|
channels: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9529
10030
|
slug: z.ZodString;
|
|
9530
10031
|
kind: z.ZodEnum<{
|
|
@@ -9571,7 +10072,7 @@ export declare const zBlueprintUpdateResponse: z.ZodObject<{
|
|
|
9571
10072
|
userId: z.ZodNullable<z.ZodString>;
|
|
9572
10073
|
publisherId: z.ZodNullable<z.ZodString>;
|
|
9573
10074
|
template: z.ZodObject<{
|
|
9574
|
-
schemaVersion: z.ZodLiteral<
|
|
10075
|
+
schemaVersion: z.ZodLiteral<5>;
|
|
9575
10076
|
meta: z.ZodObject<{
|
|
9576
10077
|
name: z.ZodString;
|
|
9577
10078
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -9596,8 +10097,8 @@ export declare const zBlueprintUpdateResponse: z.ZodObject<{
|
|
|
9596
10097
|
environment: z.ZodOptional<z.ZodObject<{
|
|
9597
10098
|
preset: z.ZodOptional<z.ZodEnum<{
|
|
9598
10099
|
small: "small";
|
|
9599
|
-
xs: "xs";
|
|
9600
10100
|
medium: "medium";
|
|
10101
|
+
xs: "xs";
|
|
9601
10102
|
large: "large";
|
|
9602
10103
|
xl: "xl";
|
|
9603
10104
|
}>>;
|
|
@@ -9812,6 +10313,32 @@ export declare const zBlueprintUpdateResponse: z.ZodObject<{
|
|
|
9812
10313
|
}, z.core.$strip>>;
|
|
9813
10314
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
9814
10315
|
}, z.core.$strip>>;
|
|
10316
|
+
databases: z.ZodArray<z.ZodObject<{
|
|
10317
|
+
slug: z.ZodString;
|
|
10318
|
+
pod: z.ZodOptional<z.ZodString>;
|
|
10319
|
+
name: z.ZodString;
|
|
10320
|
+
description: z.ZodOptional<z.ZodString>;
|
|
10321
|
+
seedSql: z.ZodOptional<z.ZodString>;
|
|
10322
|
+
}, z.core.$strip>>;
|
|
10323
|
+
artifacts: z.ZodArray<z.ZodObject<{
|
|
10324
|
+
slug: z.ZodString;
|
|
10325
|
+
pod: z.ZodOptional<z.ZodString>;
|
|
10326
|
+
title: z.ZodString;
|
|
10327
|
+
description: z.ZodOptional<z.ZodString>;
|
|
10328
|
+
seed: z.ZodURL;
|
|
10329
|
+
}, z.core.$strip>>;
|
|
10330
|
+
tasks: z.ZodArray<z.ZodObject<{
|
|
10331
|
+
slug: z.ZodString;
|
|
10332
|
+
project: z.ZodOptional<z.ZodString>;
|
|
10333
|
+
title: z.ZodString;
|
|
10334
|
+
description: z.ZodOptional<z.ZodString>;
|
|
10335
|
+
priority: z.ZodOptional<z.ZodEnum<{
|
|
10336
|
+
high: "high";
|
|
10337
|
+
low: "low";
|
|
10338
|
+
medium: "medium";
|
|
10339
|
+
}>>;
|
|
10340
|
+
labels: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
10341
|
+
}, z.core.$strip>>;
|
|
9815
10342
|
channels: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9816
10343
|
slug: z.ZodString;
|
|
9817
10344
|
kind: z.ZodEnum<{
|
|
@@ -9888,7 +10415,7 @@ export declare const zBlueprintPublishResponse: z.ZodObject<{
|
|
|
9888
10415
|
userId: z.ZodNullable<z.ZodString>;
|
|
9889
10416
|
publisherId: z.ZodNullable<z.ZodString>;
|
|
9890
10417
|
template: z.ZodObject<{
|
|
9891
|
-
schemaVersion: z.ZodLiteral<
|
|
10418
|
+
schemaVersion: z.ZodLiteral<5>;
|
|
9892
10419
|
meta: z.ZodObject<{
|
|
9893
10420
|
name: z.ZodString;
|
|
9894
10421
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -9913,8 +10440,8 @@ export declare const zBlueprintPublishResponse: z.ZodObject<{
|
|
|
9913
10440
|
environment: z.ZodOptional<z.ZodObject<{
|
|
9914
10441
|
preset: z.ZodOptional<z.ZodEnum<{
|
|
9915
10442
|
small: "small";
|
|
9916
|
-
xs: "xs";
|
|
9917
10443
|
medium: "medium";
|
|
10444
|
+
xs: "xs";
|
|
9918
10445
|
large: "large";
|
|
9919
10446
|
xl: "xl";
|
|
9920
10447
|
}>>;
|
|
@@ -10129,6 +10656,32 @@ export declare const zBlueprintPublishResponse: z.ZodObject<{
|
|
|
10129
10656
|
}, z.core.$strip>>;
|
|
10130
10657
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
10131
10658
|
}, z.core.$strip>>;
|
|
10659
|
+
databases: z.ZodArray<z.ZodObject<{
|
|
10660
|
+
slug: z.ZodString;
|
|
10661
|
+
pod: z.ZodOptional<z.ZodString>;
|
|
10662
|
+
name: z.ZodString;
|
|
10663
|
+
description: z.ZodOptional<z.ZodString>;
|
|
10664
|
+
seedSql: z.ZodOptional<z.ZodString>;
|
|
10665
|
+
}, z.core.$strip>>;
|
|
10666
|
+
artifacts: z.ZodArray<z.ZodObject<{
|
|
10667
|
+
slug: z.ZodString;
|
|
10668
|
+
pod: z.ZodOptional<z.ZodString>;
|
|
10669
|
+
title: z.ZodString;
|
|
10670
|
+
description: z.ZodOptional<z.ZodString>;
|
|
10671
|
+
seed: z.ZodURL;
|
|
10672
|
+
}, z.core.$strip>>;
|
|
10673
|
+
tasks: z.ZodArray<z.ZodObject<{
|
|
10674
|
+
slug: z.ZodString;
|
|
10675
|
+
project: z.ZodOptional<z.ZodString>;
|
|
10676
|
+
title: z.ZodString;
|
|
10677
|
+
description: z.ZodOptional<z.ZodString>;
|
|
10678
|
+
priority: z.ZodOptional<z.ZodEnum<{
|
|
10679
|
+
high: "high";
|
|
10680
|
+
low: "low";
|
|
10681
|
+
medium: "medium";
|
|
10682
|
+
}>>;
|
|
10683
|
+
labels: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
10684
|
+
}, z.core.$strip>>;
|
|
10132
10685
|
channels: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10133
10686
|
slug: z.ZodString;
|
|
10134
10687
|
kind: z.ZodEnum<{
|
|
@@ -10208,7 +10761,7 @@ export declare const zBlueprintDeprecateResponse: z.ZodObject<{
|
|
|
10208
10761
|
userId: z.ZodNullable<z.ZodString>;
|
|
10209
10762
|
publisherId: z.ZodNullable<z.ZodString>;
|
|
10210
10763
|
template: z.ZodObject<{
|
|
10211
|
-
schemaVersion: z.ZodLiteral<
|
|
10764
|
+
schemaVersion: z.ZodLiteral<5>;
|
|
10212
10765
|
meta: z.ZodObject<{
|
|
10213
10766
|
name: z.ZodString;
|
|
10214
10767
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -10233,8 +10786,8 @@ export declare const zBlueprintDeprecateResponse: z.ZodObject<{
|
|
|
10233
10786
|
environment: z.ZodOptional<z.ZodObject<{
|
|
10234
10787
|
preset: z.ZodOptional<z.ZodEnum<{
|
|
10235
10788
|
small: "small";
|
|
10236
|
-
xs: "xs";
|
|
10237
10789
|
medium: "medium";
|
|
10790
|
+
xs: "xs";
|
|
10238
10791
|
large: "large";
|
|
10239
10792
|
xl: "xl";
|
|
10240
10793
|
}>>;
|
|
@@ -10449,6 +11002,32 @@ export declare const zBlueprintDeprecateResponse: z.ZodObject<{
|
|
|
10449
11002
|
}, z.core.$strip>>;
|
|
10450
11003
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
10451
11004
|
}, z.core.$strip>>;
|
|
11005
|
+
databases: z.ZodArray<z.ZodObject<{
|
|
11006
|
+
slug: z.ZodString;
|
|
11007
|
+
pod: z.ZodOptional<z.ZodString>;
|
|
11008
|
+
name: z.ZodString;
|
|
11009
|
+
description: z.ZodOptional<z.ZodString>;
|
|
11010
|
+
seedSql: z.ZodOptional<z.ZodString>;
|
|
11011
|
+
}, z.core.$strip>>;
|
|
11012
|
+
artifacts: z.ZodArray<z.ZodObject<{
|
|
11013
|
+
slug: z.ZodString;
|
|
11014
|
+
pod: z.ZodOptional<z.ZodString>;
|
|
11015
|
+
title: z.ZodString;
|
|
11016
|
+
description: z.ZodOptional<z.ZodString>;
|
|
11017
|
+
seed: z.ZodURL;
|
|
11018
|
+
}, z.core.$strip>>;
|
|
11019
|
+
tasks: z.ZodArray<z.ZodObject<{
|
|
11020
|
+
slug: z.ZodString;
|
|
11021
|
+
project: z.ZodOptional<z.ZodString>;
|
|
11022
|
+
title: z.ZodString;
|
|
11023
|
+
description: z.ZodOptional<z.ZodString>;
|
|
11024
|
+
priority: z.ZodOptional<z.ZodEnum<{
|
|
11025
|
+
high: "high";
|
|
11026
|
+
low: "low";
|
|
11027
|
+
medium: "medium";
|
|
11028
|
+
}>>;
|
|
11029
|
+
labels: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
11030
|
+
}, z.core.$strip>>;
|
|
10452
11031
|
channels: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10453
11032
|
slug: z.ZodString;
|
|
10454
11033
|
kind: z.ZodEnum<{
|
|
@@ -10525,7 +11104,7 @@ export declare const zBlueprintUndeprecateResponse: z.ZodObject<{
|
|
|
10525
11104
|
userId: z.ZodNullable<z.ZodString>;
|
|
10526
11105
|
publisherId: z.ZodNullable<z.ZodString>;
|
|
10527
11106
|
template: z.ZodObject<{
|
|
10528
|
-
schemaVersion: z.ZodLiteral<
|
|
11107
|
+
schemaVersion: z.ZodLiteral<5>;
|
|
10529
11108
|
meta: z.ZodObject<{
|
|
10530
11109
|
name: z.ZodString;
|
|
10531
11110
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -10550,8 +11129,8 @@ export declare const zBlueprintUndeprecateResponse: z.ZodObject<{
|
|
|
10550
11129
|
environment: z.ZodOptional<z.ZodObject<{
|
|
10551
11130
|
preset: z.ZodOptional<z.ZodEnum<{
|
|
10552
11131
|
small: "small";
|
|
10553
|
-
xs: "xs";
|
|
10554
11132
|
medium: "medium";
|
|
11133
|
+
xs: "xs";
|
|
10555
11134
|
large: "large";
|
|
10556
11135
|
xl: "xl";
|
|
10557
11136
|
}>>;
|
|
@@ -10766,6 +11345,32 @@ export declare const zBlueprintUndeprecateResponse: z.ZodObject<{
|
|
|
10766
11345
|
}, z.core.$strip>>;
|
|
10767
11346
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
10768
11347
|
}, z.core.$strip>>;
|
|
11348
|
+
databases: z.ZodArray<z.ZodObject<{
|
|
11349
|
+
slug: z.ZodString;
|
|
11350
|
+
pod: z.ZodOptional<z.ZodString>;
|
|
11351
|
+
name: z.ZodString;
|
|
11352
|
+
description: z.ZodOptional<z.ZodString>;
|
|
11353
|
+
seedSql: z.ZodOptional<z.ZodString>;
|
|
11354
|
+
}, z.core.$strip>>;
|
|
11355
|
+
artifacts: z.ZodArray<z.ZodObject<{
|
|
11356
|
+
slug: z.ZodString;
|
|
11357
|
+
pod: z.ZodOptional<z.ZodString>;
|
|
11358
|
+
title: z.ZodString;
|
|
11359
|
+
description: z.ZodOptional<z.ZodString>;
|
|
11360
|
+
seed: z.ZodURL;
|
|
11361
|
+
}, z.core.$strip>>;
|
|
11362
|
+
tasks: z.ZodArray<z.ZodObject<{
|
|
11363
|
+
slug: z.ZodString;
|
|
11364
|
+
project: z.ZodOptional<z.ZodString>;
|
|
11365
|
+
title: z.ZodString;
|
|
11366
|
+
description: z.ZodOptional<z.ZodString>;
|
|
11367
|
+
priority: z.ZodOptional<z.ZodEnum<{
|
|
11368
|
+
high: "high";
|
|
11369
|
+
low: "low";
|
|
11370
|
+
medium: "medium";
|
|
11371
|
+
}>>;
|
|
11372
|
+
labels: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
11373
|
+
}, z.core.$strip>>;
|
|
10769
11374
|
channels: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10770
11375
|
slug: z.ZodString;
|
|
10771
11376
|
kind: z.ZodEnum<{
|
|
@@ -10842,7 +11447,7 @@ export declare const zBlueprintArchiveResponse: z.ZodObject<{
|
|
|
10842
11447
|
userId: z.ZodNullable<z.ZodString>;
|
|
10843
11448
|
publisherId: z.ZodNullable<z.ZodString>;
|
|
10844
11449
|
template: z.ZodObject<{
|
|
10845
|
-
schemaVersion: z.ZodLiteral<
|
|
11450
|
+
schemaVersion: z.ZodLiteral<5>;
|
|
10846
11451
|
meta: z.ZodObject<{
|
|
10847
11452
|
name: z.ZodString;
|
|
10848
11453
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -10867,8 +11472,8 @@ export declare const zBlueprintArchiveResponse: z.ZodObject<{
|
|
|
10867
11472
|
environment: z.ZodOptional<z.ZodObject<{
|
|
10868
11473
|
preset: z.ZodOptional<z.ZodEnum<{
|
|
10869
11474
|
small: "small";
|
|
10870
|
-
xs: "xs";
|
|
10871
11475
|
medium: "medium";
|
|
11476
|
+
xs: "xs";
|
|
10872
11477
|
large: "large";
|
|
10873
11478
|
xl: "xl";
|
|
10874
11479
|
}>>;
|
|
@@ -11083,6 +11688,32 @@ export declare const zBlueprintArchiveResponse: z.ZodObject<{
|
|
|
11083
11688
|
}, z.core.$strip>>;
|
|
11084
11689
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
11085
11690
|
}, z.core.$strip>>;
|
|
11691
|
+
databases: z.ZodArray<z.ZodObject<{
|
|
11692
|
+
slug: z.ZodString;
|
|
11693
|
+
pod: z.ZodOptional<z.ZodString>;
|
|
11694
|
+
name: z.ZodString;
|
|
11695
|
+
description: z.ZodOptional<z.ZodString>;
|
|
11696
|
+
seedSql: z.ZodOptional<z.ZodString>;
|
|
11697
|
+
}, z.core.$strip>>;
|
|
11698
|
+
artifacts: z.ZodArray<z.ZodObject<{
|
|
11699
|
+
slug: z.ZodString;
|
|
11700
|
+
pod: z.ZodOptional<z.ZodString>;
|
|
11701
|
+
title: z.ZodString;
|
|
11702
|
+
description: z.ZodOptional<z.ZodString>;
|
|
11703
|
+
seed: z.ZodURL;
|
|
11704
|
+
}, z.core.$strip>>;
|
|
11705
|
+
tasks: z.ZodArray<z.ZodObject<{
|
|
11706
|
+
slug: z.ZodString;
|
|
11707
|
+
project: z.ZodOptional<z.ZodString>;
|
|
11708
|
+
title: z.ZodString;
|
|
11709
|
+
description: z.ZodOptional<z.ZodString>;
|
|
11710
|
+
priority: z.ZodOptional<z.ZodEnum<{
|
|
11711
|
+
high: "high";
|
|
11712
|
+
low: "low";
|
|
11713
|
+
medium: "medium";
|
|
11714
|
+
}>>;
|
|
11715
|
+
labels: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
11716
|
+
}, z.core.$strip>>;
|
|
11086
11717
|
channels: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11087
11718
|
slug: z.ZodString;
|
|
11088
11719
|
kind: z.ZodEnum<{
|
|
@@ -11139,7 +11770,6 @@ export declare const zBillingGetResponse: z.ZodObject<{
|
|
|
11139
11770
|
consumedCredits: z.ZodString;
|
|
11140
11771
|
consumedAmountCents: z.ZodNumber;
|
|
11141
11772
|
grantedCredits: z.ZodString;
|
|
11142
|
-
freeGrantCredits: z.ZodString;
|
|
11143
11773
|
plan: z.ZodEnum<{
|
|
11144
11774
|
free: "free";
|
|
11145
11775
|
plan_50: "plan_50";
|
|
@@ -12173,221 +12803,147 @@ export declare const zGoogleConnectQuery: z.ZodObject<{
|
|
|
12173
12803
|
/**
|
|
12174
12804
|
* Authorization URL for the user to visit
|
|
12175
12805
|
*/
|
|
12176
|
-
export declare const zGoogleConnectResponse: z.ZodObject<{
|
|
12177
|
-
url: z.ZodURL;
|
|
12178
|
-
}, z.core.$strip>;
|
|
12179
|
-
/**
|
|
12180
|
-
* Seat health and provider usage
|
|
12181
|
-
*/
|
|
12182
|
-
export declare const zInferenceSubscriptionsListResponse: z.ZodArray<z.ZodObject<{
|
|
12183
|
-
id: z.ZodString;
|
|
12184
|
-
provider: z.ZodEnum<{
|
|
12185
|
-
anthropic: "anthropic";
|
|
12186
|
-
openai: "openai";
|
|
12187
|
-
}>;
|
|
12188
|
-
label: z.ZodString;
|
|
12189
|
-
health: z.ZodEnum<{
|
|
12190
|
-
connected: "connected";
|
|
12191
|
-
exhausted: "exhausted";
|
|
12192
|
-
transient: "transient";
|
|
12193
|
-
needs_reauth: "needs_reauth";
|
|
12194
|
-
blocked: "blocked";
|
|
12195
|
-
refresh_uncertain: "refresh_uncertain";
|
|
12196
|
-
disabled: "disabled";
|
|
12197
|
-
}>;
|
|
12198
|
-
cooldownUntil: z.ZodNullable<z.ZodString>;
|
|
12199
|
-
subscriptionType: z.ZodNullable<z.ZodString>;
|
|
12200
|
-
rateLimitTier: z.ZodNullable<z.ZodString>;
|
|
12201
|
-
credentialKind: z.ZodString;
|
|
12202
|
-
workspaceId: z.ZodNullable<z.ZodString>;
|
|
12203
|
-
planType: z.ZodNullable<z.ZodString>;
|
|
12204
|
-
supportedModels: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
12205
|
-
healthReason: z.ZodNullable<z.ZodString>;
|
|
12206
|
-
credentialExpiresAt: z.ZodNullable<z.ZodString>;
|
|
12207
|
-
contributor: z.ZodNullable<z.ZodObject<{
|
|
12208
|
-
id: z.ZodString;
|
|
12209
|
-
name: z.ZodString;
|
|
12210
|
-
}, z.core.$strip>>;
|
|
12211
|
-
usage: z.ZodNullable<z.ZodObject<{
|
|
12212
|
-
windows: z.ZodArray<z.ZodObject<{
|
|
12213
|
-
key: z.ZodString;
|
|
12214
|
-
kind: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
12215
|
-
quota: "quota";
|
|
12216
|
-
entitlement: "entitlement";
|
|
12217
|
-
}>>>;
|
|
12218
|
-
windowMinutes: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodInt>>>;
|
|
12219
|
-
utilization: z.ZodNullable<z.ZodNumber>;
|
|
12220
|
-
status: z.ZodNullable<z.ZodString>;
|
|
12221
|
-
resetsAt: z.ZodNullable<z.ZodString>;
|
|
12222
|
-
models: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
12223
|
-
family: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
12224
|
-
opus: "opus";
|
|
12225
|
-
sonnet: "sonnet";
|
|
12226
|
-
fable: "fable";
|
|
12227
|
-
haiku: "haiku";
|
|
12228
|
-
}>>>>;
|
|
12229
|
-
source: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
12230
|
-
oauth_endpoint: "oauth_endpoint";
|
|
12231
|
-
response_header: "response_header";
|
|
12232
|
-
}>>>;
|
|
12233
|
-
observedAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
12234
|
-
}, z.core.$strip>>;
|
|
12235
|
-
status: z.ZodNullable<z.ZodString>;
|
|
12236
|
-
resetsAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
12237
|
-
representativeWindow: z.ZodNullable<z.ZodString>;
|
|
12238
|
-
overageDisabledReason: z.ZodNullable<z.ZodString>;
|
|
12239
|
-
fallbackPercentage: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
12240
|
-
activeLimit: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
12241
|
-
planType: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
12242
|
-
creditsAvailable: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
|
|
12243
|
-
creditsUnlimited: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
|
|
12244
|
-
safetyBufferingFasterModel: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
12245
|
-
observedAt: z.ZodString;
|
|
12246
|
-
}, z.core.$strip>>;
|
|
12247
|
-
lastSelectedAt: z.ZodNullable<z.ZodString>;
|
|
12248
|
-
connectedAt: z.ZodString;
|
|
12249
|
-
}, z.core.$strip>>;
|
|
12250
|
-
export declare const zInferenceSubscriptionsOauthStartBody: z.ZodObject<{
|
|
12251
|
-
label: z.ZodOptional<z.ZodString>;
|
|
12806
|
+
export declare const zGoogleConnectResponse: z.ZodObject<{
|
|
12807
|
+
url: z.ZodURL;
|
|
12252
12808
|
}, z.core.$strip>;
|
|
12253
12809
|
/**
|
|
12254
|
-
*
|
|
12810
|
+
* Services Ren can invoke and the authentication methods each accepts
|
|
12255
12811
|
*/
|
|
12256
|
-
export declare const
|
|
12257
|
-
|
|
12258
|
-
|
|
12259
|
-
|
|
12260
|
-
|
|
12261
|
-
|
|
12262
|
-
|
|
12263
|
-
|
|
12264
|
-
|
|
12812
|
+
export declare const zInferenceProvidersListResponse: z.ZodArray<z.ZodObject<{
|
|
12813
|
+
id: z.ZodString;
|
|
12814
|
+
providerId: z.ZodEnum<{
|
|
12815
|
+
anthropic: "anthropic";
|
|
12816
|
+
openai: "openai";
|
|
12817
|
+
}>;
|
|
12818
|
+
authenticationMethods: z.ZodArray<z.ZodObject<{
|
|
12819
|
+
id: z.ZodString;
|
|
12820
|
+
authorizationFlow: z.ZodEnum<{
|
|
12821
|
+
"redirect-code": "redirect-code";
|
|
12822
|
+
"device-code": "device-code";
|
|
12823
|
+
"access-token": "access-token";
|
|
12824
|
+
}>;
|
|
12825
|
+
refreshable: z.ZodBoolean;
|
|
12826
|
+
acceptsNewConnections: z.ZodBoolean;
|
|
12827
|
+
label: z.ZodString;
|
|
12828
|
+
}, z.core.$strip>>;
|
|
12829
|
+
}, z.core.$strip>>;
|
|
12265
12830
|
/**
|
|
12266
|
-
*
|
|
12831
|
+
* Credential state with nested service subscriptions
|
|
12267
12832
|
*/
|
|
12268
|
-
export declare const
|
|
12833
|
+
export declare const zInferenceConnectionsListResponse: z.ZodArray<z.ZodObject<{
|
|
12269
12834
|
id: z.ZodString;
|
|
12270
|
-
|
|
12835
|
+
providerId: z.ZodEnum<{
|
|
12271
12836
|
anthropic: "anthropic";
|
|
12272
12837
|
openai: "openai";
|
|
12273
12838
|
}>;
|
|
12839
|
+
authenticationMethodId: z.ZodString;
|
|
12274
12840
|
label: z.ZodString;
|
|
12275
|
-
|
|
12276
|
-
connected: "connected";
|
|
12277
|
-
exhausted: "exhausted";
|
|
12278
|
-
transient: "transient";
|
|
12841
|
+
credentialStatus: z.ZodEnum<{
|
|
12279
12842
|
needs_reauth: "needs_reauth";
|
|
12280
|
-
blocked: "blocked";
|
|
12281
12843
|
refresh_uncertain: "refresh_uncertain";
|
|
12282
12844
|
disabled: "disabled";
|
|
12845
|
+
valid: "valid";
|
|
12283
12846
|
}>;
|
|
12284
|
-
|
|
12285
|
-
subscriptionType: z.ZodNullable<z.ZodString>;
|
|
12286
|
-
rateLimitTier: z.ZodNullable<z.ZodString>;
|
|
12287
|
-
credentialKind: z.ZodString;
|
|
12288
|
-
workspaceId: z.ZodNullable<z.ZodString>;
|
|
12289
|
-
planType: z.ZodNullable<z.ZodString>;
|
|
12290
|
-
supportedModels: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
12291
|
-
healthReason: z.ZodNullable<z.ZodString>;
|
|
12847
|
+
credentialStatusReason: z.ZodNullable<z.ZodString>;
|
|
12292
12848
|
credentialExpiresAt: z.ZodNullable<z.ZodString>;
|
|
12293
|
-
|
|
12849
|
+
subscriptions: z.ZodArray<z.ZodObject<{
|
|
12294
12850
|
id: z.ZodString;
|
|
12295
|
-
|
|
12296
|
-
|
|
12297
|
-
|
|
12298
|
-
|
|
12299
|
-
|
|
12300
|
-
|
|
12301
|
-
|
|
12302
|
-
|
|
12303
|
-
|
|
12304
|
-
|
|
12305
|
-
|
|
12851
|
+
serviceId: z.ZodString;
|
|
12852
|
+
providerSubscriptionTier: z.ZodNullable<z.ZodString>;
|
|
12853
|
+
providerSubscriptionStatus: z.ZodNullable<z.ZodString>;
|
|
12854
|
+
providerRateLimitTier: z.ZodNullable<z.ZodString>;
|
|
12855
|
+
availabilityStatus: z.ZodEnum<{
|
|
12856
|
+
exhausted: "exhausted";
|
|
12857
|
+
blocked: "blocked";
|
|
12858
|
+
disabled: "disabled";
|
|
12859
|
+
available: "available";
|
|
12860
|
+
temporarily_unavailable: "temporarily_unavailable";
|
|
12861
|
+
}>;
|
|
12862
|
+
availabilityReason: z.ZodNullable<z.ZodString>;
|
|
12863
|
+
unavailableUntil: z.ZodNullable<z.ZodString>;
|
|
12864
|
+
supportedModels: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
12865
|
+
supportedEfforts: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString>>>;
|
|
12866
|
+
usage: z.ZodNullable<z.ZodObject<{
|
|
12867
|
+
windows: z.ZodArray<z.ZodObject<{
|
|
12868
|
+
key: z.ZodString;
|
|
12869
|
+
kind: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
12870
|
+
quota: "quota";
|
|
12871
|
+
entitlement: "entitlement";
|
|
12872
|
+
}>>>;
|
|
12873
|
+
windowMinutes: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodInt>>>;
|
|
12874
|
+
utilization: z.ZodNullable<z.ZodNumber>;
|
|
12875
|
+
status: z.ZodNullable<z.ZodString>;
|
|
12876
|
+
resetsAt: z.ZodNullable<z.ZodString>;
|
|
12877
|
+
models: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
12878
|
+
family: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
12879
|
+
opus: "opus";
|
|
12880
|
+
sonnet: "sonnet";
|
|
12881
|
+
fable: "fable";
|
|
12882
|
+
haiku: "haiku";
|
|
12883
|
+
}>>>>;
|
|
12884
|
+
label: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
12885
|
+
source: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
12886
|
+
oauth_endpoint: "oauth_endpoint";
|
|
12887
|
+
response_header: "response_header";
|
|
12888
|
+
}>>>;
|
|
12889
|
+
observedAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
12890
|
+
}, z.core.$strip>>;
|
|
12306
12891
|
status: z.ZodNullable<z.ZodString>;
|
|
12307
|
-
resetsAt: z.ZodNullable<z.ZodString
|
|
12308
|
-
|
|
12309
|
-
|
|
12310
|
-
|
|
12311
|
-
|
|
12312
|
-
|
|
12313
|
-
|
|
12314
|
-
|
|
12315
|
-
|
|
12316
|
-
|
|
12317
|
-
|
|
12318
|
-
}>>>;
|
|
12319
|
-
observedAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
12892
|
+
resetsAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
12893
|
+
representativeWindow: z.ZodNullable<z.ZodString>;
|
|
12894
|
+
overageDisabledReason: z.ZodNullable<z.ZodString>;
|
|
12895
|
+
fallbackPercentage: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
12896
|
+
activeLimit: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
12897
|
+
planType: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
12898
|
+
creditsAvailable: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
|
|
12899
|
+
creditsUnlimited: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
|
|
12900
|
+
safetyBufferingFasterModel: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
12901
|
+
polledAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
12902
|
+
observedAt: z.ZodString;
|
|
12320
12903
|
}, z.core.$strip>>;
|
|
12321
|
-
|
|
12322
|
-
resetsAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
12323
|
-
representativeWindow: z.ZodNullable<z.ZodString>;
|
|
12324
|
-
overageDisabledReason: z.ZodNullable<z.ZodString>;
|
|
12325
|
-
fallbackPercentage: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
12326
|
-
activeLimit: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
12327
|
-
planType: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
12328
|
-
creditsAvailable: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
|
|
12329
|
-
creditsUnlimited: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
|
|
12330
|
-
safetyBufferingFasterModel: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
12331
|
-
observedAt: z.ZodString;
|
|
12904
|
+
lastSelectedAt: z.ZodNullable<z.ZodString>;
|
|
12332
12905
|
}, z.core.$strip>>;
|
|
12333
|
-
lastSelectedAt: z.ZodNullable<z.ZodString>;
|
|
12334
12906
|
connectedAt: z.ZodString;
|
|
12335
|
-
}, z.core.$strip
|
|
12336
|
-
export declare const
|
|
12337
|
-
label: z.ZodOptional<z.ZodString>;
|
|
12338
|
-
}, z.core.$strip>;
|
|
12339
|
-
/**
|
|
12340
|
-
* The code to enter, and where to enter it
|
|
12341
|
-
*/
|
|
12342
|
-
export declare const zInferenceSubscriptionsCodexDeviceStartResponse: z.ZodObject<{
|
|
12343
|
-
sessionId: z.ZodString;
|
|
12344
|
-
verificationUrl: z.ZodURL;
|
|
12345
|
-
userCode: z.ZodString;
|
|
12346
|
-
intervalMs: z.ZodNumber;
|
|
12347
|
-
expiresAt: z.ZodString;
|
|
12348
|
-
}, z.core.$strip>;
|
|
12349
|
-
export declare const zInferenceSubscriptionsCodexDevicePollPath: z.ZodObject<{
|
|
12907
|
+
}, z.core.$strip>>;
|
|
12908
|
+
export declare const zInferenceConnectionsGetPath: z.ZodObject<{
|
|
12350
12909
|
id: z.ZodString;
|
|
12351
12910
|
}, z.core.$strip>;
|
|
12352
12911
|
/**
|
|
12353
|
-
*
|
|
12912
|
+
* Credential state with nested service subscriptions
|
|
12354
12913
|
*/
|
|
12355
|
-
export declare const
|
|
12356
|
-
|
|
12357
|
-
|
|
12358
|
-
|
|
12359
|
-
|
|
12360
|
-
|
|
12914
|
+
export declare const zInferenceConnectionsGetResponse: z.ZodObject<{
|
|
12915
|
+
id: z.ZodString;
|
|
12916
|
+
providerId: z.ZodEnum<{
|
|
12917
|
+
anthropic: "anthropic";
|
|
12918
|
+
openai: "openai";
|
|
12919
|
+
}>;
|
|
12920
|
+
authenticationMethodId: z.ZodString;
|
|
12921
|
+
label: z.ZodString;
|
|
12922
|
+
credentialStatus: z.ZodEnum<{
|
|
12923
|
+
needs_reauth: "needs_reauth";
|
|
12924
|
+
refresh_uncertain: "refresh_uncertain";
|
|
12925
|
+
disabled: "disabled";
|
|
12926
|
+
valid: "valid";
|
|
12361
12927
|
}>;
|
|
12362
|
-
|
|
12928
|
+
credentialStatusReason: z.ZodNullable<z.ZodString>;
|
|
12929
|
+
credentialExpiresAt: z.ZodNullable<z.ZodString>;
|
|
12930
|
+
subscriptions: z.ZodArray<z.ZodObject<{
|
|
12363
12931
|
id: z.ZodString;
|
|
12364
|
-
|
|
12365
|
-
|
|
12366
|
-
|
|
12367
|
-
|
|
12368
|
-
|
|
12369
|
-
health: z.ZodEnum<{
|
|
12370
|
-
connected: "connected";
|
|
12932
|
+
serviceId: z.ZodString;
|
|
12933
|
+
providerSubscriptionTier: z.ZodNullable<z.ZodString>;
|
|
12934
|
+
providerSubscriptionStatus: z.ZodNullable<z.ZodString>;
|
|
12935
|
+
providerRateLimitTier: z.ZodNullable<z.ZodString>;
|
|
12936
|
+
availabilityStatus: z.ZodEnum<{
|
|
12371
12937
|
exhausted: "exhausted";
|
|
12372
|
-
transient: "transient";
|
|
12373
|
-
needs_reauth: "needs_reauth";
|
|
12374
12938
|
blocked: "blocked";
|
|
12375
|
-
refresh_uncertain: "refresh_uncertain";
|
|
12376
12939
|
disabled: "disabled";
|
|
12940
|
+
available: "available";
|
|
12941
|
+
temporarily_unavailable: "temporarily_unavailable";
|
|
12377
12942
|
}>;
|
|
12378
|
-
|
|
12379
|
-
|
|
12380
|
-
rateLimitTier: z.ZodNullable<z.ZodString>;
|
|
12381
|
-
credentialKind: z.ZodString;
|
|
12382
|
-
workspaceId: z.ZodNullable<z.ZodString>;
|
|
12383
|
-
planType: z.ZodNullable<z.ZodString>;
|
|
12943
|
+
availabilityReason: z.ZodNullable<z.ZodString>;
|
|
12944
|
+
unavailableUntil: z.ZodNullable<z.ZodString>;
|
|
12384
12945
|
supportedModels: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
12385
|
-
|
|
12386
|
-
credentialExpiresAt: z.ZodNullable<z.ZodString>;
|
|
12387
|
-
contributor: z.ZodNullable<z.ZodObject<{
|
|
12388
|
-
id: z.ZodString;
|
|
12389
|
-
name: z.ZodString;
|
|
12390
|
-
}, z.core.$strip>>;
|
|
12946
|
+
supportedEfforts: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString>>>;
|
|
12391
12947
|
usage: z.ZodNullable<z.ZodObject<{
|
|
12392
12948
|
windows: z.ZodArray<z.ZodObject<{
|
|
12393
12949
|
key: z.ZodString;
|
|
@@ -12406,6 +12962,7 @@ export declare const zInferenceSubscriptionsCodexDevicePollResponse: z.ZodObject
|
|
|
12406
12962
|
fable: "fable";
|
|
12407
12963
|
haiku: "haiku";
|
|
12408
12964
|
}>>>>;
|
|
12965
|
+
label: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
12409
12966
|
source: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
12410
12967
|
oauth_endpoint: "oauth_endpoint";
|
|
12411
12968
|
response_header: "response_header";
|
|
@@ -12422,34 +12979,128 @@ export declare const zInferenceSubscriptionsCodexDevicePollResponse: z.ZodObject
|
|
|
12422
12979
|
creditsAvailable: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
|
|
12423
12980
|
creditsUnlimited: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
|
|
12424
12981
|
safetyBufferingFasterModel: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
12982
|
+
polledAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
12425
12983
|
observedAt: z.ZodString;
|
|
12426
12984
|
}, z.core.$strip>>;
|
|
12427
12985
|
lastSelectedAt: z.ZodNullable<z.ZodString>;
|
|
12428
|
-
connectedAt: z.ZodString;
|
|
12429
12986
|
}, z.core.$strip>>;
|
|
12430
|
-
|
|
12987
|
+
connectedAt: z.ZodString;
|
|
12988
|
+
}, z.core.$strip>;
|
|
12989
|
+
export declare const zInferenceAuthorizationsBeginBody: z.ZodObject<{
|
|
12990
|
+
serviceId: z.ZodString;
|
|
12991
|
+
authenticationMethodId: z.ZodString;
|
|
12992
|
+
label: z.ZodOptional<z.ZodString>;
|
|
12993
|
+
accessToken: z.ZodOptional<z.ZodString>;
|
|
12431
12994
|
}, z.core.$strip>;
|
|
12432
12995
|
/**
|
|
12433
|
-
*
|
|
12996
|
+
* What the person connecting has to do next, or the finished connection
|
|
12434
12997
|
*/
|
|
12435
|
-
export declare const
|
|
12436
|
-
|
|
12437
|
-
|
|
12438
|
-
|
|
12439
|
-
|
|
12440
|
-
|
|
12441
|
-
|
|
12442
|
-
|
|
12998
|
+
export declare const zInferenceAuthorizationsBeginResponse: z.ZodObject<{
|
|
12999
|
+
id: z.ZodNullable<z.ZodString>;
|
|
13000
|
+
serviceId: z.ZodString;
|
|
13001
|
+
providerId: z.ZodEnum<{
|
|
13002
|
+
anthropic: "anthropic";
|
|
13003
|
+
openai: "openai";
|
|
13004
|
+
}>;
|
|
13005
|
+
authenticationMethodId: z.ZodString;
|
|
13006
|
+
status: z.ZodEnum<{
|
|
13007
|
+
pending: "pending";
|
|
13008
|
+
failed: "failed";
|
|
13009
|
+
expired: "expired";
|
|
13010
|
+
completed: "completed";
|
|
13011
|
+
}>;
|
|
13012
|
+
step: z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
|
|
13013
|
+
kind: z.ZodLiteral<"open-url-and-paste-code">;
|
|
13014
|
+
authorizeUrl: z.ZodURL;
|
|
13015
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
13016
|
+
kind: z.ZodLiteral<"enter-user-code">;
|
|
13017
|
+
verificationUrl: z.ZodURL;
|
|
13018
|
+
userCode: z.ZodString;
|
|
13019
|
+
pollIntervalMs: z.ZodInt;
|
|
13020
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
13021
|
+
kind: z.ZodLiteral<"submit-access-token">;
|
|
13022
|
+
}, z.core.$strip>]>>;
|
|
13023
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
13024
|
+
connectionId: z.ZodNullable<z.ZodString>;
|
|
13025
|
+
failureReason: z.ZodNullable<z.ZodString>;
|
|
12443
13026
|
}, z.core.$strip>;
|
|
12444
|
-
export declare const
|
|
12445
|
-
|
|
12446
|
-
|
|
12447
|
-
|
|
13027
|
+
export declare const zInferenceAuthorizationsPollPath: z.ZodObject<{
|
|
13028
|
+
id: z.ZodString;
|
|
13029
|
+
}, z.core.$strip>;
|
|
13030
|
+
/**
|
|
13031
|
+
* Where the attempt has got to
|
|
13032
|
+
*/
|
|
13033
|
+
export declare const zInferenceAuthorizationsPollResponse: z.ZodObject<{
|
|
13034
|
+
id: z.ZodNullable<z.ZodString>;
|
|
13035
|
+
serviceId: z.ZodString;
|
|
13036
|
+
providerId: z.ZodEnum<{
|
|
13037
|
+
anthropic: "anthropic";
|
|
13038
|
+
openai: "openai";
|
|
13039
|
+
}>;
|
|
13040
|
+
authenticationMethodId: z.ZodString;
|
|
13041
|
+
status: z.ZodEnum<{
|
|
13042
|
+
pending: "pending";
|
|
13043
|
+
failed: "failed";
|
|
13044
|
+
expired: "expired";
|
|
13045
|
+
completed: "completed";
|
|
13046
|
+
}>;
|
|
13047
|
+
step: z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
|
|
13048
|
+
kind: z.ZodLiteral<"open-url-and-paste-code">;
|
|
13049
|
+
authorizeUrl: z.ZodURL;
|
|
13050
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
13051
|
+
kind: z.ZodLiteral<"enter-user-code">;
|
|
13052
|
+
verificationUrl: z.ZodURL;
|
|
13053
|
+
userCode: z.ZodString;
|
|
13054
|
+
pollIntervalMs: z.ZodInt;
|
|
13055
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
13056
|
+
kind: z.ZodLiteral<"submit-access-token">;
|
|
13057
|
+
}, z.core.$strip>]>>;
|
|
13058
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
13059
|
+
connectionId: z.ZodNullable<z.ZodString>;
|
|
13060
|
+
failureReason: z.ZodNullable<z.ZodString>;
|
|
13061
|
+
}, z.core.$strip>;
|
|
13062
|
+
export declare const zInferenceAuthorizationsCompleteBody: z.ZodObject<{
|
|
13063
|
+
code: z.ZodString;
|
|
13064
|
+
}, z.core.$strip>;
|
|
13065
|
+
export declare const zInferenceAuthorizationsCompletePath: z.ZodObject<{
|
|
13066
|
+
id: z.ZodString;
|
|
13067
|
+
}, z.core.$strip>;
|
|
13068
|
+
/**
|
|
13069
|
+
* The finished connection
|
|
13070
|
+
*/
|
|
13071
|
+
export declare const zInferenceAuthorizationsCompleteResponse: z.ZodObject<{
|
|
13072
|
+
id: z.ZodNullable<z.ZodString>;
|
|
13073
|
+
serviceId: z.ZodString;
|
|
13074
|
+
providerId: z.ZodEnum<{
|
|
13075
|
+
anthropic: "anthropic";
|
|
13076
|
+
openai: "openai";
|
|
13077
|
+
}>;
|
|
13078
|
+
authenticationMethodId: z.ZodString;
|
|
13079
|
+
status: z.ZodEnum<{
|
|
13080
|
+
pending: "pending";
|
|
13081
|
+
failed: "failed";
|
|
13082
|
+
expired: "expired";
|
|
13083
|
+
completed: "completed";
|
|
13084
|
+
}>;
|
|
13085
|
+
step: z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
|
|
13086
|
+
kind: z.ZodLiteral<"open-url-and-paste-code">;
|
|
13087
|
+
authorizeUrl: z.ZodURL;
|
|
13088
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
13089
|
+
kind: z.ZodLiteral<"enter-user-code">;
|
|
13090
|
+
verificationUrl: z.ZodURL;
|
|
13091
|
+
userCode: z.ZodString;
|
|
13092
|
+
pollIntervalMs: z.ZodInt;
|
|
13093
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
13094
|
+
kind: z.ZodLiteral<"submit-access-token">;
|
|
13095
|
+
}, z.core.$strip>]>>;
|
|
13096
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
13097
|
+
connectionId: z.ZodNullable<z.ZodString>;
|
|
13098
|
+
failureReason: z.ZodNullable<z.ZodString>;
|
|
12448
13099
|
}, z.core.$strip>;
|
|
12449
13100
|
/**
|
|
12450
|
-
*
|
|
13101
|
+
* Subscription health and provider usage
|
|
12451
13102
|
*/
|
|
12452
|
-
export declare const
|
|
13103
|
+
export declare const zInferenceSubscriptionsListResponse: z.ZodArray<z.ZodObject<{
|
|
12453
13104
|
id: z.ZodString;
|
|
12454
13105
|
provider: z.ZodEnum<{
|
|
12455
13106
|
anthropic: "anthropic";
|
|
@@ -12496,6 +13147,7 @@ export declare const zInferenceSubscriptionsConnectCodexResponse: z.ZodObject<{
|
|
|
12496
13147
|
fable: "fable";
|
|
12497
13148
|
haiku: "haiku";
|
|
12498
13149
|
}>>>>;
|
|
13150
|
+
label: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
12499
13151
|
source: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
12500
13152
|
oauth_endpoint: "oauth_endpoint";
|
|
12501
13153
|
response_header: "response_header";
|
|
@@ -12512,10 +13164,71 @@ export declare const zInferenceSubscriptionsConnectCodexResponse: z.ZodObject<{
|
|
|
12512
13164
|
creditsAvailable: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
|
|
12513
13165
|
creditsUnlimited: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
|
|
12514
13166
|
safetyBufferingFasterModel: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
13167
|
+
polledAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
12515
13168
|
observedAt: z.ZodString;
|
|
12516
13169
|
}, z.core.$strip>>;
|
|
12517
13170
|
lastSelectedAt: z.ZodNullable<z.ZodString>;
|
|
12518
13171
|
connectedAt: z.ZodString;
|
|
13172
|
+
}, z.core.$strip>>;
|
|
13173
|
+
export declare const zInferenceSubscriptionsBudgetQuery: z.ZodObject<{
|
|
13174
|
+
horizon: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
13175
|
+
"7d": "7d";
|
|
13176
|
+
"5h": "5h";
|
|
13177
|
+
}>>>;
|
|
13178
|
+
}, z.core.$strip>;
|
|
13179
|
+
/**
|
|
13180
|
+
* Remaining capacity through the requested horizon or last known reset
|
|
13181
|
+
*/
|
|
13182
|
+
export declare const zInferenceSubscriptionsBudgetResponse: z.ZodObject<{
|
|
13183
|
+
unit: z.ZodLiteral<"normalized_provider_budget">;
|
|
13184
|
+
granularityMinutes: z.ZodInt;
|
|
13185
|
+
reliableUntil: z.ZodString;
|
|
13186
|
+
points: z.ZodArray<z.ZodObject<{
|
|
13187
|
+
capacity: z.ZodNumber;
|
|
13188
|
+
knownCapacity: z.ZodNumber;
|
|
13189
|
+
remaining: z.ZodNumber;
|
|
13190
|
+
remainingRatio: z.ZodNullable<z.ZodNumber>;
|
|
13191
|
+
unknownPlans: z.ZodInt;
|
|
13192
|
+
at: z.ZodString;
|
|
13193
|
+
byProvider: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
13194
|
+
capacity: z.ZodNumber;
|
|
13195
|
+
knownCapacity: z.ZodNumber;
|
|
13196
|
+
remaining: z.ZodNumber;
|
|
13197
|
+
remainingRatio: z.ZodNullable<z.ZodNumber>;
|
|
13198
|
+
unknownPlans: z.ZodInt;
|
|
13199
|
+
byClass: z.ZodObject<{
|
|
13200
|
+
"5h": z.ZodObject<{
|
|
13201
|
+
capacity: z.ZodNumber;
|
|
13202
|
+
knownCapacity: z.ZodNumber;
|
|
13203
|
+
remaining: z.ZodNumber;
|
|
13204
|
+
remainingRatio: z.ZodNullable<z.ZodNumber>;
|
|
13205
|
+
unknownPlans: z.ZodInt;
|
|
13206
|
+
unlimitedCapacity: z.ZodNumber;
|
|
13207
|
+
}, z.core.$strip>;
|
|
13208
|
+
"7d": z.ZodObject<{
|
|
13209
|
+
capacity: z.ZodNumber;
|
|
13210
|
+
knownCapacity: z.ZodNumber;
|
|
13211
|
+
remaining: z.ZodNumber;
|
|
13212
|
+
remainingRatio: z.ZodNullable<z.ZodNumber>;
|
|
13213
|
+
unknownPlans: z.ZodInt;
|
|
13214
|
+
unlimitedCapacity: z.ZodNumber;
|
|
13215
|
+
}, z.core.$strip>;
|
|
13216
|
+
}, z.core.$strip>;
|
|
13217
|
+
elasticPlans: z.ZodInt;
|
|
13218
|
+
}, z.core.$strip>>;
|
|
13219
|
+
}, z.core.$strip>>;
|
|
13220
|
+
}, z.core.$strip>;
|
|
13221
|
+
/**
|
|
13222
|
+
* The published Codex models
|
|
13223
|
+
*/
|
|
13224
|
+
export declare const zInferenceHarnessesCodexCatalogResponse: z.ZodObject<{
|
|
13225
|
+
models: z.ZodArray<z.ZodObject<{
|
|
13226
|
+
slug: z.ZodString;
|
|
13227
|
+
defaultEffort: z.ZodString;
|
|
13228
|
+
efforts: z.ZodArray<z.ZodString>;
|
|
13229
|
+
contextWindow: z.ZodInt;
|
|
13230
|
+
maxContextWindow: z.ZodInt;
|
|
13231
|
+
}, z.core.$strip>>;
|
|
12519
13232
|
}, z.core.$strip>;
|
|
12520
13233
|
export declare const zInferenceSubscriptionsRemovePath: z.ZodObject<{
|
|
12521
13234
|
id: z.ZodString;
|
|
@@ -12531,7 +13244,7 @@ export declare const zInferenceSubscriptionsRenamePath: z.ZodObject<{
|
|
|
12531
13244
|
id: z.ZodString;
|
|
12532
13245
|
}, z.core.$strip>;
|
|
12533
13246
|
/**
|
|
12534
|
-
* The renamed
|
|
13247
|
+
* The renamed subscription
|
|
12535
13248
|
*/
|
|
12536
13249
|
export declare const zInferenceSubscriptionsRenameResponse: z.ZodObject<{
|
|
12537
13250
|
id: z.ZodString;
|
|
@@ -12580,6 +13293,7 @@ export declare const zInferenceSubscriptionsRenameResponse: z.ZodObject<{
|
|
|
12580
13293
|
fable: "fable";
|
|
12581
13294
|
haiku: "haiku";
|
|
12582
13295
|
}>>>>;
|
|
13296
|
+
label: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
12583
13297
|
source: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
12584
13298
|
oauth_endpoint: "oauth_endpoint";
|
|
12585
13299
|
response_header: "response_header";
|
|
@@ -12596,6 +13310,7 @@ export declare const zInferenceSubscriptionsRenameResponse: z.ZodObject<{
|
|
|
12596
13310
|
creditsAvailable: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
|
|
12597
13311
|
creditsUnlimited: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
|
|
12598
13312
|
safetyBufferingFasterModel: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
13313
|
+
polledAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
12599
13314
|
observedAt: z.ZodString;
|
|
12600
13315
|
}, z.core.$strip>>;
|
|
12601
13316
|
lastSelectedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -15229,6 +15944,13 @@ export declare const zModelListResponse: z.ZodObject<{
|
|
|
15229
15944
|
}, z.core.$strip>>;
|
|
15230
15945
|
}, z.core.$strip>>;
|
|
15231
15946
|
}, z.core.$strip>;
|
|
15947
|
+
/**
|
|
15948
|
+
* Whether the composer reward was granted
|
|
15949
|
+
*/
|
|
15950
|
+
export declare const zOnboardingRewardResponse: z.ZodObject<{
|
|
15951
|
+
granted: z.ZodBoolean;
|
|
15952
|
+
amount: z.ZodNumber;
|
|
15953
|
+
}, z.core.$strip>;
|
|
15232
15954
|
export declare const zOnboardingStartBody: z.ZodObject<{
|
|
15233
15955
|
prompt: z.ZodString;
|
|
15234
15956
|
skillIds: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
@@ -15403,8 +16125,8 @@ export declare const zPodListResponse: z.ZodArray<z.ZodObject<{
|
|
|
15403
16125
|
environmentId: z.ZodNullable<z.ZodString>;
|
|
15404
16126
|
presetTemplate: z.ZodEnum<{
|
|
15405
16127
|
small: "small";
|
|
15406
|
-
xs: "xs";
|
|
15407
16128
|
medium: "medium";
|
|
16129
|
+
xs: "xs";
|
|
15408
16130
|
large: "large";
|
|
15409
16131
|
xl: "xl";
|
|
15410
16132
|
}>;
|
|
@@ -15425,8 +16147,8 @@ export declare const zPodCreateBody: z.ZodObject<{
|
|
|
15425
16147
|
isDefault: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
15426
16148
|
presetTemplate: z.ZodOptional<z.ZodEnum<{
|
|
15427
16149
|
small: "small";
|
|
15428
|
-
xs: "xs";
|
|
15429
16150
|
medium: "medium";
|
|
16151
|
+
xs: "xs";
|
|
15430
16152
|
large: "large";
|
|
15431
16153
|
xl: "xl";
|
|
15432
16154
|
}>>;
|
|
@@ -15456,8 +16178,8 @@ export declare const zPodCreateResponse: z.ZodObject<{
|
|
|
15456
16178
|
environmentId: z.ZodNullable<z.ZodString>;
|
|
15457
16179
|
presetTemplate: z.ZodEnum<{
|
|
15458
16180
|
small: "small";
|
|
15459
|
-
xs: "xs";
|
|
15460
16181
|
medium: "medium";
|
|
16182
|
+
xs: "xs";
|
|
15461
16183
|
large: "large";
|
|
15462
16184
|
xl: "xl";
|
|
15463
16185
|
}>;
|
|
@@ -15505,8 +16227,8 @@ export declare const zPodGetResponse: z.ZodObject<{
|
|
|
15505
16227
|
environmentId: z.ZodNullable<z.ZodString>;
|
|
15506
16228
|
presetTemplate: z.ZodEnum<{
|
|
15507
16229
|
small: "small";
|
|
15508
|
-
xs: "xs";
|
|
15509
16230
|
medium: "medium";
|
|
16231
|
+
xs: "xs";
|
|
15510
16232
|
large: "large";
|
|
15511
16233
|
xl: "xl";
|
|
15512
16234
|
}>;
|
|
@@ -15530,8 +16252,8 @@ export declare const zPodUpdateBody: z.ZodObject<{
|
|
|
15530
16252
|
instructions: z.ZodOptional<z.ZodString>;
|
|
15531
16253
|
presetTemplate: z.ZodOptional<z.ZodEnum<{
|
|
15532
16254
|
small: "small";
|
|
15533
|
-
xs: "xs";
|
|
15534
16255
|
medium: "medium";
|
|
16256
|
+
xs: "xs";
|
|
15535
16257
|
large: "large";
|
|
15536
16258
|
xl: "xl";
|
|
15537
16259
|
}>>;
|
|
@@ -15558,8 +16280,8 @@ export declare const zPodUpdateResponse: z.ZodObject<{
|
|
|
15558
16280
|
environmentId: z.ZodNullable<z.ZodString>;
|
|
15559
16281
|
presetTemplate: z.ZodEnum<{
|
|
15560
16282
|
small: "small";
|
|
15561
|
-
xs: "xs";
|
|
15562
16283
|
medium: "medium";
|
|
16284
|
+
xs: "xs";
|
|
15563
16285
|
large: "large";
|
|
15564
16286
|
xl: "xl";
|
|
15565
16287
|
}>;
|
|
@@ -15662,8 +16384,8 @@ export declare const zPodArchiveResponse: z.ZodObject<{
|
|
|
15662
16384
|
environmentId: z.ZodNullable<z.ZodString>;
|
|
15663
16385
|
presetTemplate: z.ZodEnum<{
|
|
15664
16386
|
small: "small";
|
|
15665
|
-
xs: "xs";
|
|
15666
16387
|
medium: "medium";
|
|
16388
|
+
xs: "xs";
|
|
15667
16389
|
large: "large";
|
|
15668
16390
|
xl: "xl";
|
|
15669
16391
|
}>;
|
|
@@ -16101,6 +16823,7 @@ export declare const zPodDatabaseListResponse: z.ZodArray<z.ZodObject<{
|
|
|
16101
16823
|
slug: z.ZodString;
|
|
16102
16824
|
name: z.ZodString;
|
|
16103
16825
|
description: z.ZodString;
|
|
16826
|
+
seedSql: z.ZodNullable<z.ZodString>;
|
|
16104
16827
|
createdAt: z.ZodISODateTime;
|
|
16105
16828
|
updatedAt: z.ZodISODateTime;
|
|
16106
16829
|
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
@@ -16124,6 +16847,7 @@ export declare const zPodDatabaseCreateResponse: z.ZodObject<{
|
|
|
16124
16847
|
slug: z.ZodString;
|
|
16125
16848
|
name: z.ZodString;
|
|
16126
16849
|
description: z.ZodString;
|
|
16850
|
+
seedSql: z.ZodNullable<z.ZodString>;
|
|
16127
16851
|
createdAt: z.ZodISODateTime;
|
|
16128
16852
|
updatedAt: z.ZodISODateTime;
|
|
16129
16853
|
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
@@ -16143,6 +16867,7 @@ export declare const zPodDatabaseGetResponse: z.ZodObject<{
|
|
|
16143
16867
|
slug: z.ZodString;
|
|
16144
16868
|
name: z.ZodString;
|
|
16145
16869
|
description: z.ZodString;
|
|
16870
|
+
seedSql: z.ZodNullable<z.ZodString>;
|
|
16146
16871
|
createdAt: z.ZodISODateTime;
|
|
16147
16872
|
updatedAt: z.ZodISODateTime;
|
|
16148
16873
|
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
@@ -16166,6 +16891,7 @@ export declare const zPodDatabaseUpdateResponse: z.ZodObject<{
|
|
|
16166
16891
|
slug: z.ZodString;
|
|
16167
16892
|
name: z.ZodString;
|
|
16168
16893
|
description: z.ZodString;
|
|
16894
|
+
seedSql: z.ZodNullable<z.ZodString>;
|
|
16169
16895
|
createdAt: z.ZodISODateTime;
|
|
16170
16896
|
updatedAt: z.ZodISODateTime;
|
|
16171
16897
|
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
@@ -16185,6 +16911,7 @@ export declare const zPodDatabaseArchiveResponse: z.ZodObject<{
|
|
|
16185
16911
|
slug: z.ZodString;
|
|
16186
16912
|
name: z.ZodString;
|
|
16187
16913
|
description: z.ZodString;
|
|
16914
|
+
seedSql: z.ZodNullable<z.ZodString>;
|
|
16188
16915
|
createdAt: z.ZodISODateTime;
|
|
16189
16916
|
updatedAt: z.ZodISODateTime;
|
|
16190
16917
|
archivedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
@@ -16208,6 +16935,7 @@ export declare const zArtifactListResponse: z.ZodArray<z.ZodObject<{
|
|
|
16208
16935
|
slug: z.ZodString;
|
|
16209
16936
|
title: z.ZodString;
|
|
16210
16937
|
description: z.ZodString;
|
|
16938
|
+
seedUrl: z.ZodNullable<z.ZodString>;
|
|
16211
16939
|
shareToken: z.ZodString;
|
|
16212
16940
|
createdAt: z.ZodISODateTime;
|
|
16213
16941
|
updatedAt: z.ZodISODateTime;
|
|
@@ -16234,6 +16962,7 @@ export declare const zArtifactCreateResponse: z.ZodObject<{
|
|
|
16234
16962
|
slug: z.ZodString;
|
|
16235
16963
|
title: z.ZodString;
|
|
16236
16964
|
description: z.ZodString;
|
|
16965
|
+
seedUrl: z.ZodNullable<z.ZodString>;
|
|
16237
16966
|
shareToken: z.ZodString;
|
|
16238
16967
|
createdAt: z.ZodISODateTime;
|
|
16239
16968
|
updatedAt: z.ZodISODateTime;
|
|
@@ -16255,6 +16984,7 @@ export declare const zArtifactGetResponse: z.ZodObject<{
|
|
|
16255
16984
|
slug: z.ZodString;
|
|
16256
16985
|
title: z.ZodString;
|
|
16257
16986
|
description: z.ZodString;
|
|
16987
|
+
seedUrl: z.ZodNullable<z.ZodString>;
|
|
16258
16988
|
shareToken: z.ZodString;
|
|
16259
16989
|
createdAt: z.ZodISODateTime;
|
|
16260
16990
|
updatedAt: z.ZodISODateTime;
|
|
@@ -16280,6 +17010,7 @@ export declare const zArtifactUpdateResponse: z.ZodObject<{
|
|
|
16280
17010
|
slug: z.ZodString;
|
|
16281
17011
|
title: z.ZodString;
|
|
16282
17012
|
description: z.ZodString;
|
|
17013
|
+
seedUrl: z.ZodNullable<z.ZodString>;
|
|
16283
17014
|
shareToken: z.ZodString;
|
|
16284
17015
|
createdAt: z.ZodISODateTime;
|
|
16285
17016
|
updatedAt: z.ZodISODateTime;
|
|
@@ -16301,6 +17032,7 @@ export declare const zArtifactArchiveResponse: z.ZodObject<{
|
|
|
16301
17032
|
slug: z.ZodString;
|
|
16302
17033
|
title: z.ZodString;
|
|
16303
17034
|
description: z.ZodString;
|
|
17035
|
+
seedUrl: z.ZodNullable<z.ZodString>;
|
|
16304
17036
|
shareToken: z.ZodString;
|
|
16305
17037
|
createdAt: z.ZodISODateTime;
|
|
16306
17038
|
updatedAt: z.ZodISODateTime;
|
|
@@ -20390,6 +21122,7 @@ export declare const zTopologyGetResponse: z.ZodObject<{
|
|
|
20390
21122
|
name: z.ZodString;
|
|
20391
21123
|
pod: z.ZodString;
|
|
20392
21124
|
agents: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
21125
|
+
projectAgentId: z.ZodString;
|
|
20393
21126
|
slug: z.ZodString;
|
|
20394
21127
|
mode: z.ZodEnum<{
|
|
20395
21128
|
subagent: "subagent";
|
|
@@ -22550,7 +23283,7 @@ export declare const zRegistryBlueprintGetResponse: z.ZodObject<{
|
|
|
22550
23283
|
}, z.core.$strip>>;
|
|
22551
23284
|
}, z.core.$strip>>>>;
|
|
22552
23285
|
template: z.ZodObject<{
|
|
22553
|
-
schemaVersion: z.ZodLiteral<
|
|
23286
|
+
schemaVersion: z.ZodLiteral<5>;
|
|
22554
23287
|
meta: z.ZodObject<{
|
|
22555
23288
|
name: z.ZodString;
|
|
22556
23289
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -22575,8 +23308,8 @@ export declare const zRegistryBlueprintGetResponse: z.ZodObject<{
|
|
|
22575
23308
|
environment: z.ZodOptional<z.ZodObject<{
|
|
22576
23309
|
preset: z.ZodOptional<z.ZodEnum<{
|
|
22577
23310
|
small: "small";
|
|
22578
|
-
xs: "xs";
|
|
22579
23311
|
medium: "medium";
|
|
23312
|
+
xs: "xs";
|
|
22580
23313
|
large: "large";
|
|
22581
23314
|
xl: "xl";
|
|
22582
23315
|
}>>;
|
|
@@ -22791,6 +23524,32 @@ export declare const zRegistryBlueprintGetResponse: z.ZodObject<{
|
|
|
22791
23524
|
}, z.core.$strip>>;
|
|
22792
23525
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
22793
23526
|
}, z.core.$strip>>;
|
|
23527
|
+
databases: z.ZodArray<z.ZodObject<{
|
|
23528
|
+
slug: z.ZodString;
|
|
23529
|
+
pod: z.ZodOptional<z.ZodString>;
|
|
23530
|
+
name: z.ZodString;
|
|
23531
|
+
description: z.ZodOptional<z.ZodString>;
|
|
23532
|
+
seedSql: z.ZodOptional<z.ZodString>;
|
|
23533
|
+
}, z.core.$strip>>;
|
|
23534
|
+
artifacts: z.ZodArray<z.ZodObject<{
|
|
23535
|
+
slug: z.ZodString;
|
|
23536
|
+
pod: z.ZodOptional<z.ZodString>;
|
|
23537
|
+
title: z.ZodString;
|
|
23538
|
+
description: z.ZodOptional<z.ZodString>;
|
|
23539
|
+
seed: z.ZodURL;
|
|
23540
|
+
}, z.core.$strip>>;
|
|
23541
|
+
tasks: z.ZodArray<z.ZodObject<{
|
|
23542
|
+
slug: z.ZodString;
|
|
23543
|
+
project: z.ZodOptional<z.ZodString>;
|
|
23544
|
+
title: z.ZodString;
|
|
23545
|
+
description: z.ZodOptional<z.ZodString>;
|
|
23546
|
+
priority: z.ZodOptional<z.ZodEnum<{
|
|
23547
|
+
high: "high";
|
|
23548
|
+
low: "low";
|
|
23549
|
+
medium: "medium";
|
|
23550
|
+
}>>;
|
|
23551
|
+
labels: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
23552
|
+
}, z.core.$strip>>;
|
|
22794
23553
|
channels: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
22795
23554
|
slug: z.ZodString;
|
|
22796
23555
|
kind: z.ZodEnum<{
|
|
@@ -23395,6 +24154,7 @@ export declare const zRegistryTopologyShareGetResponse: z.ZodObject<{
|
|
|
23395
24154
|
name: z.ZodString;
|
|
23396
24155
|
pod: z.ZodString;
|
|
23397
24156
|
agents: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
24157
|
+
projectAgentId: z.ZodString;
|
|
23398
24158
|
slug: z.ZodString;
|
|
23399
24159
|
mode: z.ZodEnum<{
|
|
23400
24160
|
subagent: "subagent";
|