@renai-labs/sdk 0.1.27 → 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.
@@ -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<4>;
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<4>;
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;
@@ -4228,11 +4351,7 @@ export declare const zInferenceSeatHealth: z.ZodEnum<{
4228
4351
  refresh_uncertain: "refresh_uncertain";
4229
4352
  disabled: "disabled";
4230
4353
  }>;
4231
- export declare const zInferenceProvider: z.ZodEnum<{
4232
- anthropic: "anthropic";
4233
- openai: "openai";
4234
- }>;
4235
- export declare const zInferenceSubscriptionSeat: z.ZodObject<{
4354
+ export declare const zInferenceSubscription: z.ZodObject<{
4236
4355
  id: z.ZodString;
4237
4356
  provider: z.ZodEnum<{
4238
4357
  anthropic: "anthropic";
@@ -4302,42 +4421,147 @@ export declare const zInferenceSubscriptionSeat: z.ZodObject<{
4302
4421
  lastSelectedAt: z.ZodNullable<z.ZodString>;
4303
4422
  connectedAt: z.ZodString;
4304
4423
  }, z.core.$strip>;
4305
- export declare const zInferenceCodexDeviceStatus: z.ZodObject<{
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;
4306
4441
  status: z.ZodEnum<{
4307
4442
  pending: "pending";
4308
4443
  failed: "failed";
4309
4444
  expired: "expired";
4310
4445
  completed: "completed";
4311
4446
  }>;
4312
- seat: z.ZodNullable<z.ZodObject<{
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<{
4313
4549
  id: z.ZodString;
4314
- provider: z.ZodEnum<{
4315
- anthropic: "anthropic";
4316
- openai: "openai";
4317
- }>;
4318
- label: z.ZodString;
4319
- health: z.ZodEnum<{
4320
- 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<{
4321
4555
  exhausted: "exhausted";
4322
- transient: "transient";
4323
- needs_reauth: "needs_reauth";
4324
4556
  blocked: "blocked";
4325
- refresh_uncertain: "refresh_uncertain";
4326
4557
  disabled: "disabled";
4558
+ available: "available";
4559
+ temporarily_unavailable: "temporarily_unavailable";
4327
4560
  }>;
4328
- cooldownUntil: z.ZodNullable<z.ZodString>;
4329
- subscriptionType: z.ZodNullable<z.ZodString>;
4330
- rateLimitTier: z.ZodNullable<z.ZodString>;
4331
- credentialKind: z.ZodString;
4332
- workspaceId: z.ZodNullable<z.ZodString>;
4333
- planType: z.ZodNullable<z.ZodString>;
4561
+ availabilityReason: z.ZodNullable<z.ZodString>;
4562
+ unavailableUntil: z.ZodNullable<z.ZodString>;
4334
4563
  supportedModels: z.ZodNullable<z.ZodArray<z.ZodString>>;
4335
- healthReason: z.ZodNullable<z.ZodString>;
4336
- credentialExpiresAt: z.ZodNullable<z.ZodString>;
4337
- contributor: z.ZodNullable<z.ZodObject<{
4338
- id: z.ZodString;
4339
- name: z.ZodString;
4340
- }, z.core.$strip>>;
4564
+ supportedEfforts: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString>>>;
4341
4565
  usage: z.ZodNullable<z.ZodObject<{
4342
4566
  windows: z.ZodArray<z.ZodObject<{
4343
4567
  key: z.ZodString;
@@ -4377,97 +4601,25 @@ export declare const zInferenceCodexDeviceStatus: z.ZodObject<{
4377
4601
  observedAt: z.ZodString;
4378
4602
  }, z.core.$strip>>;
4379
4603
  lastSelectedAt: z.ZodNullable<z.ZodString>;
4380
- connectedAt: z.ZodString;
4381
4604
  }, z.core.$strip>>;
4382
- reason: z.ZodNullable<z.ZodString>;
4383
- }, z.core.$strip>;
4384
- export declare const zInferenceCodexDeviceStartInput: z.ZodObject<{
4385
- label: z.ZodOptional<z.ZodString>;
4386
- }, z.core.$strip>;
4387
- export declare const zInferenceCodexDeviceStart: z.ZodObject<{
4388
- sessionId: z.ZodString;
4389
- verificationUrl: z.ZodURL;
4390
- userCode: z.ZodString;
4391
- intervalMs: z.ZodNumber;
4392
- expiresAt: z.ZodString;
4393
- }, z.core.$strip>;
4394
- export declare const zInferenceOauthCompleteInput: z.ZodObject<{
4395
- sessionId: z.ZodString;
4396
- code: z.ZodString;
4397
- }, z.core.$strip>;
4398
- export declare const zInferenceOauthStartInput: z.ZodObject<{
4399
- label: z.ZodOptional<z.ZodString>;
4400
- }, z.core.$strip>;
4401
- export declare const zInferenceOauthStart: z.ZodObject<{
4402
- sessionId: z.ZodString;
4403
- authorizeUrl: z.ZodURL;
4404
- expiresAt: z.ZodString;
4605
+ connectedAt: z.ZodString;
4405
4606
  }, z.core.$strip>;
4406
- export declare const zInferenceUsageBudgetEstimate: z.ZodObject<{
4407
- unit: z.ZodLiteral<"normalized_provider_budget">;
4408
- granularityMinutes: z.ZodInt;
4409
- reliableUntil: z.ZodString;
4410
- points: z.ZodArray<z.ZodObject<{
4411
- capacity: z.ZodNumber;
4412
- knownCapacity: z.ZodNumber;
4413
- remaining: z.ZodNumber;
4414
- remainingRatio: z.ZodNullable<z.ZodNumber>;
4415
- unknownPlans: z.ZodInt;
4416
- at: z.ZodString;
4417
- byProvider: z.ZodObject<{
4418
- anthropic: z.ZodObject<{
4419
- capacity: z.ZodNumber;
4420
- knownCapacity: z.ZodNumber;
4421
- remaining: z.ZodNumber;
4422
- remainingRatio: z.ZodNullable<z.ZodNumber>;
4423
- unknownPlans: z.ZodInt;
4424
- byClass: z.ZodObject<{
4425
- "5h": z.ZodObject<{
4426
- capacity: z.ZodNumber;
4427
- knownCapacity: z.ZodNumber;
4428
- remaining: z.ZodNumber;
4429
- remainingRatio: z.ZodNullable<z.ZodNumber>;
4430
- unknownPlans: z.ZodInt;
4431
- unlimitedCapacity: z.ZodNumber;
4432
- }, z.core.$strip>;
4433
- "7d": z.ZodObject<{
4434
- capacity: z.ZodNumber;
4435
- knownCapacity: z.ZodNumber;
4436
- remaining: z.ZodNumber;
4437
- remainingRatio: z.ZodNullable<z.ZodNumber>;
4438
- unknownPlans: z.ZodInt;
4439
- unlimitedCapacity: z.ZodNumber;
4440
- }, z.core.$strip>;
4441
- }, z.core.$strip>;
4442
- elasticPlans: z.ZodInt;
4443
- }, z.core.$strip>;
4444
- openai: z.ZodObject<{
4445
- capacity: z.ZodNumber;
4446
- knownCapacity: z.ZodNumber;
4447
- remaining: z.ZodNumber;
4448
- remainingRatio: z.ZodNullable<z.ZodNumber>;
4449
- unknownPlans: z.ZodInt;
4450
- byClass: z.ZodObject<{
4451
- "5h": z.ZodObject<{
4452
- capacity: z.ZodNumber;
4453
- knownCapacity: z.ZodNumber;
4454
- remaining: z.ZodNumber;
4455
- remainingRatio: z.ZodNullable<z.ZodNumber>;
4456
- unknownPlans: z.ZodInt;
4457
- unlimitedCapacity: z.ZodNumber;
4458
- }, z.core.$strip>;
4459
- "7d": z.ZodObject<{
4460
- capacity: z.ZodNumber;
4461
- knownCapacity: z.ZodNumber;
4462
- remaining: z.ZodNumber;
4463
- remainingRatio: z.ZodNullable<z.ZodNumber>;
4464
- unknownPlans: z.ZodInt;
4465
- unlimitedCapacity: z.ZodNumber;
4466
- }, z.core.$strip>;
4467
- }, z.core.$strip>;
4468
- elasticPlans: z.ZodInt;
4469
- }, z.core.$strip>;
4470
- }, z.core.$strip>;
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;
4471
4623
  }, z.core.$strip>>;
4472
4624
  }, z.core.$strip>;
4473
4625
  export declare const zGoogleWorkspaceOAuthStartResult: z.ZodObject<{
@@ -4881,10 +5033,13 @@ export declare const zBlueprintAddReport: z.ZodObject<{
4881
5033
  mcps: z.ZodArray<z.ZodString>;
4882
5034
  skipped: z.ZodArray<z.ZodObject<{
4883
5035
  kind: z.ZodEnum<{
5036
+ task: "task";
4884
5037
  skill: "skill";
4885
5038
  mcp: "mcp";
4886
5039
  trigger: "trigger";
4887
5040
  environment: "environment";
5041
+ database: "database";
5042
+ artifact: "artifact";
4888
5043
  }>;
4889
5044
  sourceId: z.ZodString;
4890
5045
  reason: z.ZodString;
@@ -4898,6 +5053,22 @@ export declare const zBlueprintAddReport: z.ZodObject<{
4898
5053
  project: z.ZodOptional<z.ZodString>;
4899
5054
  credential: z.ZodOptional<z.ZodString>;
4900
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>>;
4901
5072
  podMappings: z.ZodArray<z.ZodObject<{
4902
5073
  blueprintPodSlug: z.ZodString;
4903
5074
  podId: z.ZodString;
@@ -4934,7 +5105,7 @@ export declare const zBlueprint: z.ZodObject<{
4934
5105
  userId: z.ZodNullable<z.ZodString>;
4935
5106
  publisherId: z.ZodNullable<z.ZodString>;
4936
5107
  template: z.ZodObject<{
4937
- schemaVersion: z.ZodLiteral<4>;
5108
+ schemaVersion: z.ZodLiteral<5>;
4938
5109
  meta: z.ZodObject<{
4939
5110
  name: z.ZodString;
4940
5111
  description: z.ZodOptional<z.ZodString>;
@@ -4959,8 +5130,8 @@ export declare const zBlueprint: z.ZodObject<{
4959
5130
  environment: z.ZodOptional<z.ZodObject<{
4960
5131
  preset: z.ZodOptional<z.ZodEnum<{
4961
5132
  small: "small";
4962
- xs: "xs";
4963
5133
  medium: "medium";
5134
+ xs: "xs";
4964
5135
  large: "large";
4965
5136
  xl: "xl";
4966
5137
  }>>;
@@ -5175,6 +5346,32 @@ export declare const zBlueprint: z.ZodObject<{
5175
5346
  }, z.core.$strip>>;
5176
5347
  enabled: z.ZodOptional<z.ZodBoolean>;
5177
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>>;
5178
5375
  channels: z.ZodOptional<z.ZodArray<z.ZodObject<{
5179
5376
  slug: z.ZodString;
5180
5377
  kind: z.ZodEnum<{
@@ -5696,6 +5893,16 @@ export declare const zActivation: z.ZodObject<{
5696
5893
  "cron_trigger.created": "cron_trigger.created";
5697
5894
  "artifact.created": "artifact.created";
5698
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>;
5699
5906
  complete: z.ZodBoolean;
5700
5907
  dismissed: z.ZodBoolean;
5701
5908
  }, z.core.$strip>;
@@ -5710,6 +5917,16 @@ export declare const zActivationGetResponse: z.ZodObject<{
5710
5917
  "cron_trigger.created": "cron_trigger.created";
5711
5918
  "artifact.created": "artifact.created";
5712
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>;
5713
5930
  complete: z.ZodBoolean;
5714
5931
  dismissed: z.ZodBoolean;
5715
5932
  }, z.core.$strip>;
@@ -5724,6 +5941,16 @@ export declare const zActivationDismissResponse: z.ZodObject<{
5724
5941
  "cron_trigger.created": "cron_trigger.created";
5725
5942
  "artifact.created": "artifact.created";
5726
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>;
5727
5954
  complete: z.ZodBoolean;
5728
5955
  dismissed: z.ZodBoolean;
5729
5956
  }, z.core.$strip>;
@@ -7454,7 +7681,7 @@ export declare const zBlueprintListResponse: z.ZodArray<z.ZodObject<{
7454
7681
  userId: z.ZodNullable<z.ZodString>;
7455
7682
  publisherId: z.ZodNullable<z.ZodString>;
7456
7683
  template: z.ZodObject<{
7457
- schemaVersion: z.ZodLiteral<4>;
7684
+ schemaVersion: z.ZodLiteral<5>;
7458
7685
  meta: z.ZodObject<{
7459
7686
  name: z.ZodString;
7460
7687
  description: z.ZodOptional<z.ZodString>;
@@ -7479,8 +7706,8 @@ export declare const zBlueprintListResponse: z.ZodArray<z.ZodObject<{
7479
7706
  environment: z.ZodOptional<z.ZodObject<{
7480
7707
  preset: z.ZodOptional<z.ZodEnum<{
7481
7708
  small: "small";
7482
- xs: "xs";
7483
7709
  medium: "medium";
7710
+ xs: "xs";
7484
7711
  large: "large";
7485
7712
  xl: "xl";
7486
7713
  }>>;
@@ -7695,6 +7922,32 @@ export declare const zBlueprintListResponse: z.ZodArray<z.ZodObject<{
7695
7922
  }, z.core.$strip>>;
7696
7923
  enabled: z.ZodOptional<z.ZodBoolean>;
7697
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>>;
7698
7951
  channels: z.ZodOptional<z.ZodArray<z.ZodObject<{
7699
7952
  slug: z.ZodString;
7700
7953
  kind: z.ZodEnum<{
@@ -7772,7 +8025,7 @@ export declare const zBlueprintCreateBody: z.ZodObject<{
7772
8025
  }, z.core.$strip>>>>;
7773
8026
  replays: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
7774
8027
  spec: z.ZodObject<{
7775
- schemaVersion: z.ZodLiteral<4>;
8028
+ schemaVersion: z.ZodLiteral<5>;
7776
8029
  meta: z.ZodObject<{
7777
8030
  name: z.ZodString;
7778
8031
  description: z.ZodOptional<z.ZodString>;
@@ -7797,8 +8050,8 @@ export declare const zBlueprintCreateBody: z.ZodObject<{
7797
8050
  environment: z.ZodOptional<z.ZodObject<{
7798
8051
  preset: z.ZodOptional<z.ZodEnum<{
7799
8052
  small: "small";
7800
- xs: "xs";
7801
8053
  medium: "medium";
8054
+ xs: "xs";
7802
8055
  large: "large";
7803
8056
  xl: "xl";
7804
8057
  }>>;
@@ -8013,6 +8266,32 @@ export declare const zBlueprintCreateBody: z.ZodObject<{
8013
8266
  }, z.core.$strip>>;
8014
8267
  enabled: z.ZodOptional<z.ZodBoolean>;
8015
8268
  }, z.core.$strip>>;
8269
+ databases: z.ZodArray<z.ZodObject<{
8270
+ slug: z.ZodString;
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>>;
8016
8295
  channels: z.ZodOptional<z.ZodArray<z.ZodObject<{
8017
8296
  slug: z.ZodString;
8018
8297
  kind: z.ZodEnum<{
@@ -8060,7 +8339,7 @@ export declare const zBlueprintCreateResponse: z.ZodObject<{
8060
8339
  userId: z.ZodNullable<z.ZodString>;
8061
8340
  publisherId: z.ZodNullable<z.ZodString>;
8062
8341
  template: z.ZodObject<{
8063
- schemaVersion: z.ZodLiteral<4>;
8342
+ schemaVersion: z.ZodLiteral<5>;
8064
8343
  meta: z.ZodObject<{
8065
8344
  name: z.ZodString;
8066
8345
  description: z.ZodOptional<z.ZodString>;
@@ -8085,8 +8364,8 @@ export declare const zBlueprintCreateResponse: z.ZodObject<{
8085
8364
  environment: z.ZodOptional<z.ZodObject<{
8086
8365
  preset: z.ZodOptional<z.ZodEnum<{
8087
8366
  small: "small";
8088
- xs: "xs";
8089
8367
  medium: "medium";
8368
+ xs: "xs";
8090
8369
  large: "large";
8091
8370
  xl: "xl";
8092
8371
  }>>;
@@ -8301,6 +8580,32 @@ export declare const zBlueprintCreateResponse: z.ZodObject<{
8301
8580
  }, z.core.$strip>>;
8302
8581
  enabled: z.ZodOptional<z.ZodBoolean>;
8303
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>>;
8304
8609
  channels: z.ZodOptional<z.ZodArray<z.ZodObject<{
8305
8610
  slug: z.ZodString;
8306
8611
  kind: z.ZodEnum<{
@@ -8378,7 +8683,7 @@ export declare const zBlueprintPushBody: z.ZodObject<{
8378
8683
  privacyPolicyUrl: z.ZodOptional<z.ZodURL>;
8379
8684
  }, z.core.$strip>>>;
8380
8685
  spec: z.ZodObject<{
8381
- schemaVersion: z.ZodLiteral<4>;
8686
+ schemaVersion: z.ZodLiteral<5>;
8382
8687
  meta: z.ZodObject<{
8383
8688
  name: z.ZodString;
8384
8689
  description: z.ZodOptional<z.ZodString>;
@@ -8403,8 +8708,8 @@ export declare const zBlueprintPushBody: z.ZodObject<{
8403
8708
  environment: z.ZodOptional<z.ZodObject<{
8404
8709
  preset: z.ZodOptional<z.ZodEnum<{
8405
8710
  small: "small";
8406
- xs: "xs";
8407
8711
  medium: "medium";
8712
+ xs: "xs";
8408
8713
  large: "large";
8409
8714
  xl: "xl";
8410
8715
  }>>;
@@ -8619,6 +8924,32 @@ export declare const zBlueprintPushBody: z.ZodObject<{
8619
8924
  }, z.core.$strip>>;
8620
8925
  enabled: z.ZodOptional<z.ZodBoolean>;
8621
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>>;
8622
8953
  channels: z.ZodOptional<z.ZodArray<z.ZodObject<{
8623
8954
  slug: z.ZodString;
8624
8955
  kind: z.ZodEnum<{
@@ -8662,7 +8993,7 @@ export declare const zBlueprintPushResponse: z.ZodObject<{
8662
8993
  userId: z.ZodNullable<z.ZodString>;
8663
8994
  publisherId: z.ZodNullable<z.ZodString>;
8664
8995
  template: z.ZodObject<{
8665
- schemaVersion: z.ZodLiteral<4>;
8996
+ schemaVersion: z.ZodLiteral<5>;
8666
8997
  meta: z.ZodObject<{
8667
8998
  name: z.ZodString;
8668
8999
  description: z.ZodOptional<z.ZodString>;
@@ -8687,8 +9018,8 @@ export declare const zBlueprintPushResponse: z.ZodObject<{
8687
9018
  environment: z.ZodOptional<z.ZodObject<{
8688
9019
  preset: z.ZodOptional<z.ZodEnum<{
8689
9020
  small: "small";
8690
- xs: "xs";
8691
9021
  medium: "medium";
9022
+ xs: "xs";
8692
9023
  large: "large";
8693
9024
  xl: "xl";
8694
9025
  }>>;
@@ -8903,6 +9234,32 @@ export declare const zBlueprintPushResponse: z.ZodObject<{
8903
9234
  }, z.core.$strip>>;
8904
9235
  enabled: z.ZodOptional<z.ZodBoolean>;
8905
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>>;
8906
9263
  channels: z.ZodOptional<z.ZodArray<z.ZodObject<{
8907
9264
  slug: z.ZodString;
8908
9265
  kind: z.ZodEnum<{
@@ -8981,10 +9338,13 @@ export declare const zBlueprintAddResponse: z.ZodObject<{
8981
9338
  mcps: z.ZodArray<z.ZodString>;
8982
9339
  skipped: z.ZodArray<z.ZodObject<{
8983
9340
  kind: z.ZodEnum<{
9341
+ task: "task";
8984
9342
  skill: "skill";
8985
9343
  mcp: "mcp";
8986
9344
  trigger: "trigger";
8987
9345
  environment: "environment";
9346
+ database: "database";
9347
+ artifact: "artifact";
8988
9348
  }>;
8989
9349
  sourceId: z.ZodString;
8990
9350
  reason: z.ZodString;
@@ -8998,6 +9358,22 @@ export declare const zBlueprintAddResponse: z.ZodObject<{
8998
9358
  project: z.ZodOptional<z.ZodString>;
8999
9359
  credential: z.ZodOptional<z.ZodString>;
9000
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>>;
9001
9377
  podMappings: z.ZodArray<z.ZodObject<{
9002
9378
  blueprintPodSlug: z.ZodString;
9003
9379
  podId: z.ZodString;
@@ -9040,7 +9416,7 @@ export declare const zBlueprintGetResponse: z.ZodObject<{
9040
9416
  userId: z.ZodNullable<z.ZodString>;
9041
9417
  publisherId: z.ZodNullable<z.ZodString>;
9042
9418
  template: z.ZodObject<{
9043
- schemaVersion: z.ZodLiteral<4>;
9419
+ schemaVersion: z.ZodLiteral<5>;
9044
9420
  meta: z.ZodObject<{
9045
9421
  name: z.ZodString;
9046
9422
  description: z.ZodOptional<z.ZodString>;
@@ -9065,8 +9441,8 @@ export declare const zBlueprintGetResponse: z.ZodObject<{
9065
9441
  environment: z.ZodOptional<z.ZodObject<{
9066
9442
  preset: z.ZodOptional<z.ZodEnum<{
9067
9443
  small: "small";
9068
- xs: "xs";
9069
9444
  medium: "medium";
9445
+ xs: "xs";
9070
9446
  large: "large";
9071
9447
  xl: "xl";
9072
9448
  }>>;
@@ -9281,6 +9657,32 @@ export declare const zBlueprintGetResponse: z.ZodObject<{
9281
9657
  }, z.core.$strip>>;
9282
9658
  enabled: z.ZodOptional<z.ZodBoolean>;
9283
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>>;
9284
9686
  channels: z.ZodOptional<z.ZodArray<z.ZodObject<{
9285
9687
  slug: z.ZodString;
9286
9688
  kind: z.ZodEnum<{
@@ -9357,7 +9759,7 @@ export declare const zBlueprintUpdateBody: z.ZodObject<{
9357
9759
  }, z.core.$strip>>>;
9358
9760
  replays: z.ZodOptional<z.ZodArray<z.ZodString>>;
9359
9761
  spec: z.ZodOptional<z.ZodObject<{
9360
- schemaVersion: z.ZodLiteral<4>;
9762
+ schemaVersion: z.ZodLiteral<5>;
9361
9763
  meta: z.ZodObject<{
9362
9764
  name: z.ZodString;
9363
9765
  description: z.ZodOptional<z.ZodString>;
@@ -9382,8 +9784,8 @@ export declare const zBlueprintUpdateBody: z.ZodObject<{
9382
9784
  environment: z.ZodOptional<z.ZodObject<{
9383
9785
  preset: z.ZodOptional<z.ZodEnum<{
9384
9786
  small: "small";
9385
- xs: "xs";
9386
9787
  medium: "medium";
9788
+ xs: "xs";
9387
9789
  large: "large";
9388
9790
  xl: "xl";
9389
9791
  }>>;
@@ -9598,6 +10000,32 @@ export declare const zBlueprintUpdateBody: z.ZodObject<{
9598
10000
  }, z.core.$strip>>;
9599
10001
  enabled: z.ZodOptional<z.ZodBoolean>;
9600
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>>;
9601
10029
  channels: z.ZodOptional<z.ZodArray<z.ZodObject<{
9602
10030
  slug: z.ZodString;
9603
10031
  kind: z.ZodEnum<{
@@ -9644,7 +10072,7 @@ export declare const zBlueprintUpdateResponse: z.ZodObject<{
9644
10072
  userId: z.ZodNullable<z.ZodString>;
9645
10073
  publisherId: z.ZodNullable<z.ZodString>;
9646
10074
  template: z.ZodObject<{
9647
- schemaVersion: z.ZodLiteral<4>;
10075
+ schemaVersion: z.ZodLiteral<5>;
9648
10076
  meta: z.ZodObject<{
9649
10077
  name: z.ZodString;
9650
10078
  description: z.ZodOptional<z.ZodString>;
@@ -9669,8 +10097,8 @@ export declare const zBlueprintUpdateResponse: z.ZodObject<{
9669
10097
  environment: z.ZodOptional<z.ZodObject<{
9670
10098
  preset: z.ZodOptional<z.ZodEnum<{
9671
10099
  small: "small";
9672
- xs: "xs";
9673
10100
  medium: "medium";
10101
+ xs: "xs";
9674
10102
  large: "large";
9675
10103
  xl: "xl";
9676
10104
  }>>;
@@ -9885,6 +10313,32 @@ export declare const zBlueprintUpdateResponse: z.ZodObject<{
9885
10313
  }, z.core.$strip>>;
9886
10314
  enabled: z.ZodOptional<z.ZodBoolean>;
9887
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>>;
9888
10342
  channels: z.ZodOptional<z.ZodArray<z.ZodObject<{
9889
10343
  slug: z.ZodString;
9890
10344
  kind: z.ZodEnum<{
@@ -9961,7 +10415,7 @@ export declare const zBlueprintPublishResponse: z.ZodObject<{
9961
10415
  userId: z.ZodNullable<z.ZodString>;
9962
10416
  publisherId: z.ZodNullable<z.ZodString>;
9963
10417
  template: z.ZodObject<{
9964
- schemaVersion: z.ZodLiteral<4>;
10418
+ schemaVersion: z.ZodLiteral<5>;
9965
10419
  meta: z.ZodObject<{
9966
10420
  name: z.ZodString;
9967
10421
  description: z.ZodOptional<z.ZodString>;
@@ -9986,8 +10440,8 @@ export declare const zBlueprintPublishResponse: z.ZodObject<{
9986
10440
  environment: z.ZodOptional<z.ZodObject<{
9987
10441
  preset: z.ZodOptional<z.ZodEnum<{
9988
10442
  small: "small";
9989
- xs: "xs";
9990
10443
  medium: "medium";
10444
+ xs: "xs";
9991
10445
  large: "large";
9992
10446
  xl: "xl";
9993
10447
  }>>;
@@ -10202,6 +10656,32 @@ export declare const zBlueprintPublishResponse: z.ZodObject<{
10202
10656
  }, z.core.$strip>>;
10203
10657
  enabled: z.ZodOptional<z.ZodBoolean>;
10204
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>>;
10205
10685
  channels: z.ZodOptional<z.ZodArray<z.ZodObject<{
10206
10686
  slug: z.ZodString;
10207
10687
  kind: z.ZodEnum<{
@@ -10281,7 +10761,7 @@ export declare const zBlueprintDeprecateResponse: z.ZodObject<{
10281
10761
  userId: z.ZodNullable<z.ZodString>;
10282
10762
  publisherId: z.ZodNullable<z.ZodString>;
10283
10763
  template: z.ZodObject<{
10284
- schemaVersion: z.ZodLiteral<4>;
10764
+ schemaVersion: z.ZodLiteral<5>;
10285
10765
  meta: z.ZodObject<{
10286
10766
  name: z.ZodString;
10287
10767
  description: z.ZodOptional<z.ZodString>;
@@ -10306,8 +10786,8 @@ export declare const zBlueprintDeprecateResponse: z.ZodObject<{
10306
10786
  environment: z.ZodOptional<z.ZodObject<{
10307
10787
  preset: z.ZodOptional<z.ZodEnum<{
10308
10788
  small: "small";
10309
- xs: "xs";
10310
10789
  medium: "medium";
10790
+ xs: "xs";
10311
10791
  large: "large";
10312
10792
  xl: "xl";
10313
10793
  }>>;
@@ -10522,6 +11002,32 @@ export declare const zBlueprintDeprecateResponse: z.ZodObject<{
10522
11002
  }, z.core.$strip>>;
10523
11003
  enabled: z.ZodOptional<z.ZodBoolean>;
10524
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>>;
10525
11031
  channels: z.ZodOptional<z.ZodArray<z.ZodObject<{
10526
11032
  slug: z.ZodString;
10527
11033
  kind: z.ZodEnum<{
@@ -10598,7 +11104,7 @@ export declare const zBlueprintUndeprecateResponse: z.ZodObject<{
10598
11104
  userId: z.ZodNullable<z.ZodString>;
10599
11105
  publisherId: z.ZodNullable<z.ZodString>;
10600
11106
  template: z.ZodObject<{
10601
- schemaVersion: z.ZodLiteral<4>;
11107
+ schemaVersion: z.ZodLiteral<5>;
10602
11108
  meta: z.ZodObject<{
10603
11109
  name: z.ZodString;
10604
11110
  description: z.ZodOptional<z.ZodString>;
@@ -10623,8 +11129,8 @@ export declare const zBlueprintUndeprecateResponse: z.ZodObject<{
10623
11129
  environment: z.ZodOptional<z.ZodObject<{
10624
11130
  preset: z.ZodOptional<z.ZodEnum<{
10625
11131
  small: "small";
10626
- xs: "xs";
10627
11132
  medium: "medium";
11133
+ xs: "xs";
10628
11134
  large: "large";
10629
11135
  xl: "xl";
10630
11136
  }>>;
@@ -10839,6 +11345,32 @@ export declare const zBlueprintUndeprecateResponse: z.ZodObject<{
10839
11345
  }, z.core.$strip>>;
10840
11346
  enabled: z.ZodOptional<z.ZodBoolean>;
10841
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>>;
10842
11374
  channels: z.ZodOptional<z.ZodArray<z.ZodObject<{
10843
11375
  slug: z.ZodString;
10844
11376
  kind: z.ZodEnum<{
@@ -10915,7 +11447,7 @@ export declare const zBlueprintArchiveResponse: z.ZodObject<{
10915
11447
  userId: z.ZodNullable<z.ZodString>;
10916
11448
  publisherId: z.ZodNullable<z.ZodString>;
10917
11449
  template: z.ZodObject<{
10918
- schemaVersion: z.ZodLiteral<4>;
11450
+ schemaVersion: z.ZodLiteral<5>;
10919
11451
  meta: z.ZodObject<{
10920
11452
  name: z.ZodString;
10921
11453
  description: z.ZodOptional<z.ZodString>;
@@ -10940,8 +11472,8 @@ export declare const zBlueprintArchiveResponse: z.ZodObject<{
10940
11472
  environment: z.ZodOptional<z.ZodObject<{
10941
11473
  preset: z.ZodOptional<z.ZodEnum<{
10942
11474
  small: "small";
10943
- xs: "xs";
10944
11475
  medium: "medium";
11476
+ xs: "xs";
10945
11477
  large: "large";
10946
11478
  xl: "xl";
10947
11479
  }>>;
@@ -11156,6 +11688,32 @@ export declare const zBlueprintArchiveResponse: z.ZodObject<{
11156
11688
  }, z.core.$strip>>;
11157
11689
  enabled: z.ZodOptional<z.ZodBoolean>;
11158
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>>;
11159
11717
  channels: z.ZodOptional<z.ZodArray<z.ZodObject<{
11160
11718
  slug: z.ZodString;
11161
11719
  kind: z.ZodEnum<{
@@ -11212,7 +11770,6 @@ export declare const zBillingGetResponse: z.ZodObject<{
11212
11770
  consumedCredits: z.ZodString;
11213
11771
  consumedAmountCents: z.ZodNumber;
11214
11772
  grantedCredits: z.ZodString;
11215
- freeGrantCredits: z.ZodString;
11216
11773
  plan: z.ZodEnum<{
11217
11774
  free: "free";
11218
11775
  plan_50: "plan_50";
@@ -12250,297 +12807,143 @@ export declare const zGoogleConnectResponse: z.ZodObject<{
12250
12807
  url: z.ZodURL;
12251
12808
  }, z.core.$strip>;
12252
12809
  /**
12253
- * Seat health and provider usage
12810
+ * Services Ren can invoke and the authentication methods each accepts
12254
12811
  */
12255
- export declare const zInferenceSubscriptionsListResponse: z.ZodArray<z.ZodObject<{
12812
+ export declare const zInferenceProvidersListResponse: z.ZodArray<z.ZodObject<{
12256
12813
  id: z.ZodString;
12257
- provider: z.ZodEnum<{
12814
+ providerId: z.ZodEnum<{
12258
12815
  anthropic: "anthropic";
12259
12816
  openai: "openai";
12260
12817
  }>;
12261
- label: z.ZodString;
12262
- health: z.ZodEnum<{
12263
- connected: "connected";
12264
- exhausted: "exhausted";
12265
- transient: "transient";
12266
- needs_reauth: "needs_reauth";
12267
- blocked: "blocked";
12268
- refresh_uncertain: "refresh_uncertain";
12269
- disabled: "disabled";
12270
- }>;
12271
- cooldownUntil: z.ZodNullable<z.ZodString>;
12272
- subscriptionType: z.ZodNullable<z.ZodString>;
12273
- rateLimitTier: z.ZodNullable<z.ZodString>;
12274
- credentialKind: z.ZodString;
12275
- workspaceId: z.ZodNullable<z.ZodString>;
12276
- planType: z.ZodNullable<z.ZodString>;
12277
- supportedModels: z.ZodNullable<z.ZodArray<z.ZodString>>;
12278
- healthReason: z.ZodNullable<z.ZodString>;
12279
- credentialExpiresAt: z.ZodNullable<z.ZodString>;
12280
- contributor: z.ZodNullable<z.ZodObject<{
12818
+ authenticationMethods: z.ZodArray<z.ZodObject<{
12281
12819
  id: z.ZodString;
12282
- name: z.ZodString;
12283
- }, z.core.$strip>>;
12284
- usage: z.ZodNullable<z.ZodObject<{
12285
- windows: z.ZodArray<z.ZodObject<{
12286
- key: z.ZodString;
12287
- kind: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
12288
- quota: "quota";
12289
- entitlement: "entitlement";
12290
- }>>>;
12291
- windowMinutes: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodInt>>>;
12292
- utilization: z.ZodNullable<z.ZodNumber>;
12293
- status: z.ZodNullable<z.ZodString>;
12294
- resetsAt: z.ZodNullable<z.ZodString>;
12295
- models: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
12296
- family: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodEnum<{
12297
- opus: "opus";
12298
- sonnet: "sonnet";
12299
- fable: "fable";
12300
- haiku: "haiku";
12301
- }>>>>;
12302
- label: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
12303
- source: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
12304
- oauth_endpoint: "oauth_endpoint";
12305
- response_header: "response_header";
12306
- }>>>;
12307
- observedAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
12308
- }, z.core.$strip>>;
12309
- status: z.ZodNullable<z.ZodString>;
12310
- resetsAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
12311
- representativeWindow: z.ZodNullable<z.ZodString>;
12312
- overageDisabledReason: z.ZodNullable<z.ZodString>;
12313
- fallbackPercentage: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
12314
- activeLimit: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
12315
- planType: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
12316
- creditsAvailable: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
12317
- creditsUnlimited: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
12318
- safetyBufferingFasterModel: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
12319
- polledAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
12320
- observedAt: 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;
12321
12828
  }, z.core.$strip>>;
12322
- lastSelectedAt: z.ZodNullable<z.ZodString>;
12323
- connectedAt: z.ZodString;
12324
12829
  }, z.core.$strip>>;
12325
- export declare const zInferenceSubscriptionsBudgetQuery: z.ZodObject<{
12326
- horizon: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
12327
- "7d": "7d";
12328
- "5h": "5h";
12329
- }>>>;
12330
- }, z.core.$strip>;
12331
12830
  /**
12332
- * Remaining capacity through the requested horizon or last known reset
12831
+ * Credential state with nested service subscriptions
12333
12832
  */
12334
- export declare const zInferenceSubscriptionsBudgetResponse: z.ZodObject<{
12335
- unit: z.ZodLiteral<"normalized_provider_budget">;
12336
- granularityMinutes: z.ZodInt;
12337
- reliableUntil: z.ZodString;
12338
- points: z.ZodArray<z.ZodObject<{
12339
- capacity: z.ZodNumber;
12340
- knownCapacity: z.ZodNumber;
12341
- remaining: z.ZodNumber;
12342
- remainingRatio: z.ZodNullable<z.ZodNumber>;
12343
- unknownPlans: z.ZodInt;
12344
- at: z.ZodString;
12345
- byProvider: z.ZodObject<{
12346
- anthropic: z.ZodObject<{
12347
- capacity: z.ZodNumber;
12348
- knownCapacity: z.ZodNumber;
12349
- remaining: z.ZodNumber;
12350
- remainingRatio: z.ZodNullable<z.ZodNumber>;
12351
- unknownPlans: z.ZodInt;
12352
- byClass: z.ZodObject<{
12353
- "5h": z.ZodObject<{
12354
- capacity: z.ZodNumber;
12355
- knownCapacity: z.ZodNumber;
12356
- remaining: z.ZodNumber;
12357
- remainingRatio: z.ZodNullable<z.ZodNumber>;
12358
- unknownPlans: z.ZodInt;
12359
- unlimitedCapacity: z.ZodNumber;
12360
- }, z.core.$strip>;
12361
- "7d": z.ZodObject<{
12362
- capacity: z.ZodNumber;
12363
- knownCapacity: z.ZodNumber;
12364
- remaining: z.ZodNumber;
12365
- remainingRatio: z.ZodNullable<z.ZodNumber>;
12366
- unknownPlans: z.ZodInt;
12367
- unlimitedCapacity: z.ZodNumber;
12368
- }, z.core.$strip>;
12369
- }, z.core.$strip>;
12370
- elasticPlans: z.ZodInt;
12371
- }, z.core.$strip>;
12372
- openai: z.ZodObject<{
12373
- capacity: z.ZodNumber;
12374
- knownCapacity: z.ZodNumber;
12375
- remaining: z.ZodNumber;
12376
- remainingRatio: z.ZodNullable<z.ZodNumber>;
12377
- unknownPlans: z.ZodInt;
12378
- byClass: z.ZodObject<{
12379
- "5h": z.ZodObject<{
12380
- capacity: z.ZodNumber;
12381
- knownCapacity: z.ZodNumber;
12382
- remaining: z.ZodNumber;
12383
- remainingRatio: z.ZodNullable<z.ZodNumber>;
12384
- unknownPlans: z.ZodInt;
12385
- unlimitedCapacity: z.ZodNumber;
12386
- }, z.core.$strip>;
12387
- "7d": z.ZodObject<{
12388
- capacity: z.ZodNumber;
12389
- knownCapacity: z.ZodNumber;
12390
- remaining: z.ZodNumber;
12391
- remainingRatio: z.ZodNullable<z.ZodNumber>;
12392
- unknownPlans: z.ZodInt;
12393
- unlimitedCapacity: z.ZodNumber;
12394
- }, z.core.$strip>;
12395
- }, z.core.$strip>;
12396
- elasticPlans: z.ZodInt;
12397
- }, z.core.$strip>;
12398
- }, z.core.$strip>;
12399
- }, z.core.$strip>>;
12400
- }, z.core.$strip>;
12401
- export declare const zInferenceSubscriptionsOauthStartBody: z.ZodObject<{
12402
- label: z.ZodOptional<z.ZodString>;
12403
- }, z.core.$strip>;
12404
- /**
12405
- * Where to authorize, and when this attempt stops being valid
12406
- */
12407
- export declare const zInferenceSubscriptionsOauthStartResponse: z.ZodObject<{
12408
- sessionId: z.ZodString;
12409
- authorizeUrl: z.ZodURL;
12410
- expiresAt: z.ZodString;
12411
- }, z.core.$strip>;
12412
- export declare const zInferenceSubscriptionsOauthCompleteBody: z.ZodObject<{
12413
- sessionId: z.ZodString;
12414
- code: z.ZodString;
12415
- }, z.core.$strip>;
12416
- /**
12417
- * The connected seat
12418
- */
12419
- export declare const zInferenceSubscriptionsOauthCompleteResponse: z.ZodObject<{
12833
+ export declare const zInferenceConnectionsListResponse: z.ZodArray<z.ZodObject<{
12420
12834
  id: z.ZodString;
12421
- provider: z.ZodEnum<{
12835
+ providerId: z.ZodEnum<{
12422
12836
  anthropic: "anthropic";
12423
12837
  openai: "openai";
12424
12838
  }>;
12425
- label: z.ZodString;
12426
- health: z.ZodEnum<{
12427
- connected: "connected";
12428
- exhausted: "exhausted";
12429
- transient: "transient";
12839
+ authenticationMethodId: z.ZodString;
12840
+ label: z.ZodString;
12841
+ credentialStatus: z.ZodEnum<{
12430
12842
  needs_reauth: "needs_reauth";
12431
- blocked: "blocked";
12432
12843
  refresh_uncertain: "refresh_uncertain";
12433
12844
  disabled: "disabled";
12845
+ valid: "valid";
12434
12846
  }>;
12435
- cooldownUntil: z.ZodNullable<z.ZodString>;
12436
- subscriptionType: z.ZodNullable<z.ZodString>;
12437
- rateLimitTier: z.ZodNullable<z.ZodString>;
12438
- credentialKind: z.ZodString;
12439
- workspaceId: z.ZodNullable<z.ZodString>;
12440
- planType: z.ZodNullable<z.ZodString>;
12441
- supportedModels: z.ZodNullable<z.ZodArray<z.ZodString>>;
12442
- healthReason: z.ZodNullable<z.ZodString>;
12847
+ credentialStatusReason: z.ZodNullable<z.ZodString>;
12443
12848
  credentialExpiresAt: z.ZodNullable<z.ZodString>;
12444
- contributor: z.ZodNullable<z.ZodObject<{
12849
+ subscriptions: z.ZodArray<z.ZodObject<{
12445
12850
  id: z.ZodString;
12446
- name: z.ZodString;
12447
- }, z.core.$strip>>;
12448
- usage: z.ZodNullable<z.ZodObject<{
12449
- windows: z.ZodArray<z.ZodObject<{
12450
- key: z.ZodString;
12451
- kind: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
12452
- quota: "quota";
12453
- entitlement: "entitlement";
12454
- }>>>;
12455
- windowMinutes: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodInt>>>;
12456
- utilization: z.ZodNullable<z.ZodNumber>;
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>>;
12457
12891
  status: z.ZodNullable<z.ZodString>;
12458
- resetsAt: z.ZodNullable<z.ZodString>;
12459
- models: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
12460
- family: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodEnum<{
12461
- opus: "opus";
12462
- sonnet: "sonnet";
12463
- fable: "fable";
12464
- haiku: "haiku";
12465
- }>>>>;
12466
- label: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
12467
- source: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
12468
- oauth_endpoint: "oauth_endpoint";
12469
- response_header: "response_header";
12470
- }>>>;
12471
- 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;
12472
12903
  }, z.core.$strip>>;
12473
- status: z.ZodNullable<z.ZodString>;
12474
- resetsAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
12475
- representativeWindow: z.ZodNullable<z.ZodString>;
12476
- overageDisabledReason: z.ZodNullable<z.ZodString>;
12477
- fallbackPercentage: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
12478
- activeLimit: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
12479
- planType: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
12480
- creditsAvailable: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
12481
- creditsUnlimited: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
12482
- safetyBufferingFasterModel: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
12483
- polledAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
12484
- observedAt: z.ZodString;
12904
+ lastSelectedAt: z.ZodNullable<z.ZodString>;
12485
12905
  }, z.core.$strip>>;
12486
- lastSelectedAt: z.ZodNullable<z.ZodString>;
12487
12906
  connectedAt: z.ZodString;
12488
- }, z.core.$strip>;
12489
- export declare const zInferenceSubscriptionsCodexDeviceStartBody: z.ZodObject<{
12490
- label: z.ZodOptional<z.ZodString>;
12491
- }, z.core.$strip>;
12492
- /**
12493
- * The code to enter, and where to enter it
12494
- */
12495
- export declare const zInferenceSubscriptionsCodexDeviceStartResponse: z.ZodObject<{
12496
- sessionId: z.ZodString;
12497
- verificationUrl: z.ZodURL;
12498
- userCode: z.ZodString;
12499
- intervalMs: z.ZodNumber;
12500
- expiresAt: z.ZodString;
12501
- }, z.core.$strip>;
12502
- export declare const zInferenceSubscriptionsCodexDevicePollPath: z.ZodObject<{
12907
+ }, z.core.$strip>>;
12908
+ export declare const zInferenceConnectionsGetPath: z.ZodObject<{
12503
12909
  id: z.ZodString;
12504
12910
  }, z.core.$strip>;
12505
12911
  /**
12506
- * Whether the device code has been approved yet
12912
+ * Credential state with nested service subscriptions
12507
12913
  */
12508
- export declare const zInferenceSubscriptionsCodexDevicePollResponse: z.ZodObject<{
12509
- status: z.ZodEnum<{
12510
- pending: "pending";
12511
- failed: "failed";
12512
- expired: "expired";
12513
- completed: "completed";
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";
12514
12927
  }>;
12515
- seat: z.ZodNullable<z.ZodObject<{
12928
+ credentialStatusReason: z.ZodNullable<z.ZodString>;
12929
+ credentialExpiresAt: z.ZodNullable<z.ZodString>;
12930
+ subscriptions: z.ZodArray<z.ZodObject<{
12516
12931
  id: z.ZodString;
12517
- provider: z.ZodEnum<{
12518
- anthropic: "anthropic";
12519
- openai: "openai";
12520
- }>;
12521
- label: z.ZodString;
12522
- health: z.ZodEnum<{
12523
- 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<{
12524
12937
  exhausted: "exhausted";
12525
- transient: "transient";
12526
- needs_reauth: "needs_reauth";
12527
12938
  blocked: "blocked";
12528
- refresh_uncertain: "refresh_uncertain";
12529
12939
  disabled: "disabled";
12940
+ available: "available";
12941
+ temporarily_unavailable: "temporarily_unavailable";
12530
12942
  }>;
12531
- cooldownUntil: z.ZodNullable<z.ZodString>;
12532
- subscriptionType: z.ZodNullable<z.ZodString>;
12533
- rateLimitTier: z.ZodNullable<z.ZodString>;
12534
- credentialKind: z.ZodString;
12535
- workspaceId: z.ZodNullable<z.ZodString>;
12536
- planType: z.ZodNullable<z.ZodString>;
12943
+ availabilityReason: z.ZodNullable<z.ZodString>;
12944
+ unavailableUntil: z.ZodNullable<z.ZodString>;
12537
12945
  supportedModels: z.ZodNullable<z.ZodArray<z.ZodString>>;
12538
- healthReason: z.ZodNullable<z.ZodString>;
12539
- credentialExpiresAt: z.ZodNullable<z.ZodString>;
12540
- contributor: z.ZodNullable<z.ZodObject<{
12541
- id: z.ZodString;
12542
- name: z.ZodString;
12543
- }, z.core.$strip>>;
12946
+ supportedEfforts: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString>>>;
12544
12947
  usage: z.ZodNullable<z.ZodObject<{
12545
12948
  windows: z.ZodArray<z.ZodObject<{
12546
12949
  key: z.ZodString;
@@ -12580,31 +12983,124 @@ export declare const zInferenceSubscriptionsCodexDevicePollResponse: z.ZodObject
12580
12983
  observedAt: z.ZodString;
12581
12984
  }, z.core.$strip>>;
12582
12985
  lastSelectedAt: z.ZodNullable<z.ZodString>;
12583
- connectedAt: z.ZodString;
12584
12986
  }, z.core.$strip>>;
12585
- reason: z.ZodNullable<z.ZodString>;
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>;
12586
12994
  }, z.core.$strip>;
12587
12995
  /**
12588
- * The published Codex models
12996
+ * What the person connecting has to do next, or the finished connection
12589
12997
  */
12590
- export declare const zInferenceHarnessesCodexCatalogResponse: z.ZodObject<{
12591
- models: z.ZodArray<z.ZodObject<{
12592
- slug: z.ZodString;
12593
- defaultEffort: z.ZodString;
12594
- efforts: z.ZodArray<z.ZodString>;
12595
- contextWindow: z.ZodInt;
12596
- maxContextWindow: z.ZodInt;
12597
- }, z.core.$strip>>;
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>;
12598
13026
  }, z.core.$strip>;
12599
- export declare const zInferenceSubscriptionsConnectCodexBody: z.ZodObject<{
12600
- artifact: z.ZodLiteral<"access_token">;
12601
- token: z.ZodString;
12602
- label: z.ZodOptional<z.ZodString>;
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>;
12603
13099
  }, z.core.$strip>;
12604
13100
  /**
12605
- * The connected seat
13101
+ * Subscription health and provider usage
12606
13102
  */
12607
- export declare const zInferenceSubscriptionsConnectCodexResponse: z.ZodObject<{
13103
+ export declare const zInferenceSubscriptionsListResponse: z.ZodArray<z.ZodObject<{
12608
13104
  id: z.ZodString;
12609
13105
  provider: z.ZodEnum<{
12610
13106
  anthropic: "anthropic";
@@ -12673,6 +13169,66 @@ export declare const zInferenceSubscriptionsConnectCodexResponse: z.ZodObject<{
12673
13169
  }, z.core.$strip>>;
12674
13170
  lastSelectedAt: z.ZodNullable<z.ZodString>;
12675
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>>;
12676
13232
  }, z.core.$strip>;
12677
13233
  export declare const zInferenceSubscriptionsRemovePath: z.ZodObject<{
12678
13234
  id: z.ZodString;
@@ -12688,7 +13244,7 @@ export declare const zInferenceSubscriptionsRenamePath: z.ZodObject<{
12688
13244
  id: z.ZodString;
12689
13245
  }, z.core.$strip>;
12690
13246
  /**
12691
- * The renamed seat
13247
+ * The renamed subscription
12692
13248
  */
12693
13249
  export declare const zInferenceSubscriptionsRenameResponse: z.ZodObject<{
12694
13250
  id: z.ZodString;
@@ -15388,6 +15944,13 @@ export declare const zModelListResponse: z.ZodObject<{
15388
15944
  }, z.core.$strip>>;
15389
15945
  }, z.core.$strip>>;
15390
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>;
15391
15954
  export declare const zOnboardingStartBody: z.ZodObject<{
15392
15955
  prompt: z.ZodString;
15393
15956
  skillIds: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
@@ -15562,8 +16125,8 @@ export declare const zPodListResponse: z.ZodArray<z.ZodObject<{
15562
16125
  environmentId: z.ZodNullable<z.ZodString>;
15563
16126
  presetTemplate: z.ZodEnum<{
15564
16127
  small: "small";
15565
- xs: "xs";
15566
16128
  medium: "medium";
16129
+ xs: "xs";
15567
16130
  large: "large";
15568
16131
  xl: "xl";
15569
16132
  }>;
@@ -15584,8 +16147,8 @@ export declare const zPodCreateBody: z.ZodObject<{
15584
16147
  isDefault: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
15585
16148
  presetTemplate: z.ZodOptional<z.ZodEnum<{
15586
16149
  small: "small";
15587
- xs: "xs";
15588
16150
  medium: "medium";
16151
+ xs: "xs";
15589
16152
  large: "large";
15590
16153
  xl: "xl";
15591
16154
  }>>;
@@ -15615,8 +16178,8 @@ export declare const zPodCreateResponse: z.ZodObject<{
15615
16178
  environmentId: z.ZodNullable<z.ZodString>;
15616
16179
  presetTemplate: z.ZodEnum<{
15617
16180
  small: "small";
15618
- xs: "xs";
15619
16181
  medium: "medium";
16182
+ xs: "xs";
15620
16183
  large: "large";
15621
16184
  xl: "xl";
15622
16185
  }>;
@@ -15664,8 +16227,8 @@ export declare const zPodGetResponse: z.ZodObject<{
15664
16227
  environmentId: z.ZodNullable<z.ZodString>;
15665
16228
  presetTemplate: z.ZodEnum<{
15666
16229
  small: "small";
15667
- xs: "xs";
15668
16230
  medium: "medium";
16231
+ xs: "xs";
15669
16232
  large: "large";
15670
16233
  xl: "xl";
15671
16234
  }>;
@@ -15689,8 +16252,8 @@ export declare const zPodUpdateBody: z.ZodObject<{
15689
16252
  instructions: z.ZodOptional<z.ZodString>;
15690
16253
  presetTemplate: z.ZodOptional<z.ZodEnum<{
15691
16254
  small: "small";
15692
- xs: "xs";
15693
16255
  medium: "medium";
16256
+ xs: "xs";
15694
16257
  large: "large";
15695
16258
  xl: "xl";
15696
16259
  }>>;
@@ -15717,8 +16280,8 @@ export declare const zPodUpdateResponse: z.ZodObject<{
15717
16280
  environmentId: z.ZodNullable<z.ZodString>;
15718
16281
  presetTemplate: z.ZodEnum<{
15719
16282
  small: "small";
15720
- xs: "xs";
15721
16283
  medium: "medium";
16284
+ xs: "xs";
15722
16285
  large: "large";
15723
16286
  xl: "xl";
15724
16287
  }>;
@@ -15821,8 +16384,8 @@ export declare const zPodArchiveResponse: z.ZodObject<{
15821
16384
  environmentId: z.ZodNullable<z.ZodString>;
15822
16385
  presetTemplate: z.ZodEnum<{
15823
16386
  small: "small";
15824
- xs: "xs";
15825
16387
  medium: "medium";
16388
+ xs: "xs";
15826
16389
  large: "large";
15827
16390
  xl: "xl";
15828
16391
  }>;
@@ -16260,6 +16823,7 @@ export declare const zPodDatabaseListResponse: z.ZodArray<z.ZodObject<{
16260
16823
  slug: z.ZodString;
16261
16824
  name: z.ZodString;
16262
16825
  description: z.ZodString;
16826
+ seedSql: z.ZodNullable<z.ZodString>;
16263
16827
  createdAt: z.ZodISODateTime;
16264
16828
  updatedAt: z.ZodISODateTime;
16265
16829
  archivedAt: z.ZodNullable<z.ZodISODateTime>;
@@ -16283,6 +16847,7 @@ export declare const zPodDatabaseCreateResponse: z.ZodObject<{
16283
16847
  slug: z.ZodString;
16284
16848
  name: z.ZodString;
16285
16849
  description: z.ZodString;
16850
+ seedSql: z.ZodNullable<z.ZodString>;
16286
16851
  createdAt: z.ZodISODateTime;
16287
16852
  updatedAt: z.ZodISODateTime;
16288
16853
  archivedAt: z.ZodNullable<z.ZodISODateTime>;
@@ -16302,6 +16867,7 @@ export declare const zPodDatabaseGetResponse: z.ZodObject<{
16302
16867
  slug: z.ZodString;
16303
16868
  name: z.ZodString;
16304
16869
  description: z.ZodString;
16870
+ seedSql: z.ZodNullable<z.ZodString>;
16305
16871
  createdAt: z.ZodISODateTime;
16306
16872
  updatedAt: z.ZodISODateTime;
16307
16873
  archivedAt: z.ZodNullable<z.ZodISODateTime>;
@@ -16325,6 +16891,7 @@ export declare const zPodDatabaseUpdateResponse: z.ZodObject<{
16325
16891
  slug: z.ZodString;
16326
16892
  name: z.ZodString;
16327
16893
  description: z.ZodString;
16894
+ seedSql: z.ZodNullable<z.ZodString>;
16328
16895
  createdAt: z.ZodISODateTime;
16329
16896
  updatedAt: z.ZodISODateTime;
16330
16897
  archivedAt: z.ZodNullable<z.ZodISODateTime>;
@@ -16344,6 +16911,7 @@ export declare const zPodDatabaseArchiveResponse: z.ZodObject<{
16344
16911
  slug: z.ZodString;
16345
16912
  name: z.ZodString;
16346
16913
  description: z.ZodString;
16914
+ seedSql: z.ZodNullable<z.ZodString>;
16347
16915
  createdAt: z.ZodISODateTime;
16348
16916
  updatedAt: z.ZodISODateTime;
16349
16917
  archivedAt: z.ZodNullable<z.ZodISODateTime>;
@@ -16367,6 +16935,7 @@ export declare const zArtifactListResponse: z.ZodArray<z.ZodObject<{
16367
16935
  slug: z.ZodString;
16368
16936
  title: z.ZodString;
16369
16937
  description: z.ZodString;
16938
+ seedUrl: z.ZodNullable<z.ZodString>;
16370
16939
  shareToken: z.ZodString;
16371
16940
  createdAt: z.ZodISODateTime;
16372
16941
  updatedAt: z.ZodISODateTime;
@@ -16393,6 +16962,7 @@ export declare const zArtifactCreateResponse: z.ZodObject<{
16393
16962
  slug: z.ZodString;
16394
16963
  title: z.ZodString;
16395
16964
  description: z.ZodString;
16965
+ seedUrl: z.ZodNullable<z.ZodString>;
16396
16966
  shareToken: z.ZodString;
16397
16967
  createdAt: z.ZodISODateTime;
16398
16968
  updatedAt: z.ZodISODateTime;
@@ -16414,6 +16984,7 @@ export declare const zArtifactGetResponse: z.ZodObject<{
16414
16984
  slug: z.ZodString;
16415
16985
  title: z.ZodString;
16416
16986
  description: z.ZodString;
16987
+ seedUrl: z.ZodNullable<z.ZodString>;
16417
16988
  shareToken: z.ZodString;
16418
16989
  createdAt: z.ZodISODateTime;
16419
16990
  updatedAt: z.ZodISODateTime;
@@ -16439,6 +17010,7 @@ export declare const zArtifactUpdateResponse: z.ZodObject<{
16439
17010
  slug: z.ZodString;
16440
17011
  title: z.ZodString;
16441
17012
  description: z.ZodString;
17013
+ seedUrl: z.ZodNullable<z.ZodString>;
16442
17014
  shareToken: z.ZodString;
16443
17015
  createdAt: z.ZodISODateTime;
16444
17016
  updatedAt: z.ZodISODateTime;
@@ -16460,6 +17032,7 @@ export declare const zArtifactArchiveResponse: z.ZodObject<{
16460
17032
  slug: z.ZodString;
16461
17033
  title: z.ZodString;
16462
17034
  description: z.ZodString;
17035
+ seedUrl: z.ZodNullable<z.ZodString>;
16463
17036
  shareToken: z.ZodString;
16464
17037
  createdAt: z.ZodISODateTime;
16465
17038
  updatedAt: z.ZodISODateTime;
@@ -20549,6 +21122,7 @@ export declare const zTopologyGetResponse: z.ZodObject<{
20549
21122
  name: z.ZodString;
20550
21123
  pod: z.ZodString;
20551
21124
  agents: z.ZodOptional<z.ZodArray<z.ZodObject<{
21125
+ projectAgentId: z.ZodString;
20552
21126
  slug: z.ZodString;
20553
21127
  mode: z.ZodEnum<{
20554
21128
  subagent: "subagent";
@@ -22709,7 +23283,7 @@ export declare const zRegistryBlueprintGetResponse: z.ZodObject<{
22709
23283
  }, z.core.$strip>>;
22710
23284
  }, z.core.$strip>>>>;
22711
23285
  template: z.ZodObject<{
22712
- schemaVersion: z.ZodLiteral<4>;
23286
+ schemaVersion: z.ZodLiteral<5>;
22713
23287
  meta: z.ZodObject<{
22714
23288
  name: z.ZodString;
22715
23289
  description: z.ZodOptional<z.ZodString>;
@@ -22734,8 +23308,8 @@ export declare const zRegistryBlueprintGetResponse: z.ZodObject<{
22734
23308
  environment: z.ZodOptional<z.ZodObject<{
22735
23309
  preset: z.ZodOptional<z.ZodEnum<{
22736
23310
  small: "small";
22737
- xs: "xs";
22738
23311
  medium: "medium";
23312
+ xs: "xs";
22739
23313
  large: "large";
22740
23314
  xl: "xl";
22741
23315
  }>>;
@@ -22950,6 +23524,32 @@ export declare const zRegistryBlueprintGetResponse: z.ZodObject<{
22950
23524
  }, z.core.$strip>>;
22951
23525
  enabled: z.ZodOptional<z.ZodBoolean>;
22952
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>>;
22953
23553
  channels: z.ZodOptional<z.ZodArray<z.ZodObject<{
22954
23554
  slug: z.ZodString;
22955
23555
  kind: z.ZodEnum<{
@@ -23554,6 +24154,7 @@ export declare const zRegistryTopologyShareGetResponse: z.ZodObject<{
23554
24154
  name: z.ZodString;
23555
24155
  pod: z.ZodString;
23556
24156
  agents: z.ZodOptional<z.ZodArray<z.ZodObject<{
24157
+ projectAgentId: z.ZodString;
23557
24158
  slug: z.ZodString;
23558
24159
  mode: z.ZodEnum<{
23559
24160
  subagent: "subagent";