@sylphx/contract 0.6.0 → 0.7.0

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.
Files changed (56) hide show
  1. package/CHANGELOG.md +9 -1
  2. package/README.md +1 -1
  3. package/dist/compute.d.ts +33 -0
  4. package/dist/compute.d.ts.map +1 -0
  5. package/dist/compute.js +119 -0
  6. package/dist/endpoints/admin-config.d.ts +3 -0
  7. package/dist/endpoints/admin-config.d.ts.map +1 -1
  8. package/dist/endpoints/admin-config.js +9 -1
  9. package/dist/endpoints/ai-admin.d.ts +134 -5
  10. package/dist/endpoints/ai-admin.d.ts.map +1 -1
  11. package/dist/endpoints/analytics-admin.d.ts +141 -6
  12. package/dist/endpoints/analytics-admin.d.ts.map +1 -1
  13. package/dist/endpoints/analytics-admin.js +7 -7
  14. package/dist/endpoints/auth.d.ts +26 -8
  15. package/dist/endpoints/auth.d.ts.map +1 -1
  16. package/dist/endpoints/auth.js +5 -5
  17. package/dist/endpoints/domains.d.ts +7 -1
  18. package/dist/endpoints/domains.d.ts.map +1 -1
  19. package/dist/endpoints/email-admin.d.ts +1 -0
  20. package/dist/endpoints/email-admin.d.ts.map +1 -1
  21. package/dist/endpoints/flags-admin.d.ts +8 -0
  22. package/dist/endpoints/flags-admin.d.ts.map +1 -1
  23. package/dist/endpoints/notifications-admin.d.ts +4 -4
  24. package/dist/endpoints/project-manifest.d.ts +308 -306
  25. package/dist/endpoints/project-manifest.d.ts.map +1 -1
  26. package/dist/hono-app.d.ts +1 -1
  27. package/dist/index.d.ts +634 -330
  28. package/dist/index.d.ts.map +1 -1
  29. package/dist/index.js +3 -0
  30. package/dist/schemas/admin-config.d.ts +4 -0
  31. package/dist/schemas/admin-config.d.ts.map +1 -1
  32. package/dist/schemas/admin-config.js +3 -0
  33. package/dist/schemas/ai-admin.d.ts +137 -8
  34. package/dist/schemas/ai-admin.d.ts.map +1 -1
  35. package/dist/schemas/ai-admin.js +119 -13
  36. package/dist/schemas/analytics-admin.d.ts +164 -7
  37. package/dist/schemas/analytics-admin.d.ts.map +1 -1
  38. package/dist/schemas/analytics-admin.js +104 -3
  39. package/dist/schemas/auth.d.ts +2 -1
  40. package/dist/schemas/auth.d.ts.map +1 -1
  41. package/dist/schemas/auth.js +2 -1
  42. package/dist/schemas/domain.d.ts +3 -1
  43. package/dist/schemas/domain.d.ts.map +1 -1
  44. package/dist/schemas/domain.js +2 -1
  45. package/dist/schemas/email-admin.d.ts +1 -0
  46. package/dist/schemas/email-admin.d.ts.map +1 -1
  47. package/dist/schemas/email-admin.js +1 -0
  48. package/dist/schemas/flags-admin.d.ts +13 -0
  49. package/dist/schemas/flags-admin.d.ts.map +1 -1
  50. package/dist/schemas/flags-admin.js +6 -0
  51. package/dist/schemas/notifications-admin.d.ts +6 -6
  52. package/dist/schemas/notifications-admin.js +1 -1
  53. package/dist/schemas/project-manifest.d.ts +316 -306
  54. package/dist/schemas/project-manifest.d.ts.map +1 -1
  55. package/dist/schemas/project-manifest.js +5 -0
  56. package/package.json +5 -1
package/dist/index.d.ts CHANGED
@@ -13,6 +13,7 @@
13
13
  *
14
14
  * See ADR-084 for the full rationale.
15
15
  */
16
+ export * from './compute.js';
16
17
  export * from './endpoint.js';
17
18
  export { adminAiPlaygroundEndpoints } from './endpoints/admin-ai-playground.js';
18
19
  export { adminAnomaliesEndpoints } from './endpoints/admin-anomalies.js';
@@ -113,6 +114,7 @@ export * from './schemas/admin-audit.js';
113
114
  export * from './schemas/admin-billing.js';
114
115
  export * from './schemas/admin-branch-databases.js';
115
116
  export * from './schemas/admin-broadcasts.js';
117
+ export * from './schemas/admin-builds.js';
116
118
  export * from './schemas/admin-config.js';
117
119
  export * from './schemas/admin-consent.js';
118
120
  export * from './schemas/admin-env-services.js';
@@ -1780,6 +1782,9 @@ export declare const endpoints: {
1780
1782
  filename: typeof import("effect/Schema").String;
1781
1783
  count: typeof import("effect/Schema").Number;
1782
1784
  }>, undefined>;
1785
+ readonly getOAuthProviders: import("./endpoint.js").Endpoint<"GET", "/operator/config/oauth-providers", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
1786
+ enabledProviders: import("effect/Schema").Array$<typeof import("effect/Schema").String>;
1787
+ }>, undefined>;
1783
1788
  readonly notificationsOverview: import("./endpoint.js").Endpoint<"GET", "/operator/config/notifications/overview", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, typeof import("effect/Schema").Unknown, undefined>;
1784
1789
  readonly referralsOverview: import("./endpoint.js").Endpoint<"GET", "/operator/config/referrals/overview", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, typeof import("effect/Schema").Unknown, undefined>;
1785
1790
  readonly flagsOverview: import("./endpoint.js").Endpoint<"GET", "/operator/config/flags/overview", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, typeof import("effect/Schema").Unknown, undefined>;
@@ -3414,11 +3419,43 @@ export declare const endpoints: {
3414
3419
  offset: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3415
3420
  interval: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3416
3421
  event: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3422
+ events: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3423
+ groupBy: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3417
3424
  page: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3418
3425
  search: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3426
+ service: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3419
3427
  userId: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3428
+ userIds: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3420
3429
  status: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3421
- }>, import("effect/Schema").Schema.AnyNoContext | undefined, typeof import("effect/Schema").Unknown, undefined>;
3430
+ }>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
3431
+ app: import("effect/Schema").Struct<{
3432
+ id: typeof import("effect/Schema").String;
3433
+ name: typeof import("effect/Schema").String;
3434
+ slug: typeof import("effect/Schema").String;
3435
+ }>;
3436
+ period: import("effect/Schema").Literal<["day", "week", "month"]>;
3437
+ current: import("effect/Schema").Struct<{
3438
+ events: typeof import("effect/Schema").Number;
3439
+ users: typeof import("effect/Schema").Number;
3440
+ pageviews: typeof import("effect/Schema").Number;
3441
+ signups: typeof import("effect/Schema").Number;
3442
+ }>;
3443
+ growth: import("effect/Schema").Struct<{
3444
+ events: typeof import("effect/Schema").Number;
3445
+ users: typeof import("effect/Schema").Number;
3446
+ }>;
3447
+ topEvents: import("effect/Schema").Array$<import("effect/Schema").Struct<{
3448
+ event: typeof import("effect/Schema").String;
3449
+ count: typeof import("effect/Schema").Number;
3450
+ }>>;
3451
+ apiByService: import("effect/Schema").Array$<import("effect/Schema").Struct<{
3452
+ service: typeof import("effect/Schema").String;
3453
+ requests: typeof import("effect/Schema").Number;
3454
+ successful: typeof import("effect/Schema").Number;
3455
+ successRate: typeof import("effect/Schema").Number;
3456
+ avgLatencyMs: typeof import("effect/Schema").Number;
3457
+ }>>;
3458
+ }>, undefined>;
3422
3459
  readonly getEvents: import("./endpoint.js").Endpoint<"GET", "/analytics/projects/:id/events", import("effect/Schema").Struct<{
3423
3460
  id: typeof import("effect/Schema").String;
3424
3461
  }>, import("effect/Schema").Struct<{
@@ -3430,11 +3467,26 @@ export declare const endpoints: {
3430
3467
  offset: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3431
3468
  interval: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3432
3469
  event: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3470
+ events: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3471
+ groupBy: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3433
3472
  page: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3434
3473
  search: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3474
+ service: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3435
3475
  userId: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3476
+ userIds: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3436
3477
  status: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3437
- }>, import("effect/Schema").Schema.AnyNoContext | undefined, typeof import("effect/Schema").Unknown, undefined>;
3478
+ }>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
3479
+ events: import("effect/Schema").Array$<import("effect/Schema").Struct<{
3480
+ id: typeof import("effect/Schema").String;
3481
+ event: typeof import("effect/Schema").String;
3482
+ type: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
3483
+ properties: import("effect/Schema").NullOr<import("effect/Schema").Record$<typeof import("effect/Schema").String, typeof import("effect/Schema").Unknown>>;
3484
+ userId: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
3485
+ anonymousId: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
3486
+ timestamp: typeof import("effect/Schema").String;
3487
+ }>>;
3488
+ total: typeof import("effect/Schema").Number;
3489
+ }>, undefined>;
3438
3490
  readonly getApiUsage: import("./endpoint.js").Endpoint<"GET", "/analytics/projects/:id/api-usage", import("effect/Schema").Struct<{
3439
3491
  id: typeof import("effect/Schema").String;
3440
3492
  }>, import("effect/Schema").Struct<{
@@ -3446,11 +3498,29 @@ export declare const endpoints: {
3446
3498
  offset: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3447
3499
  interval: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3448
3500
  event: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3501
+ events: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3502
+ groupBy: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3449
3503
  page: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3450
3504
  search: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3505
+ service: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3451
3506
  userId: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3507
+ userIds: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3452
3508
  status: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3453
- }>, import("effect/Schema").Schema.AnyNoContext | undefined, typeof import("effect/Schema").Unknown, undefined>;
3509
+ }>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
3510
+ period: import("effect/Schema").Literal<["day", "week", "month"]>;
3511
+ groupBy: import("effect/Schema").Literal<["service", "endpoint"]>;
3512
+ data: import("effect/Schema").Array$<import("effect/Schema").Struct<{
3513
+ service: typeof import("effect/Schema").String;
3514
+ requests: typeof import("effect/Schema").Number;
3515
+ successful: typeof import("effect/Schema").Number;
3516
+ failed: typeof import("effect/Schema").Number;
3517
+ successRate: typeof import("effect/Schema").Number;
3518
+ latency: import("effect/Schema").Struct<{
3519
+ avgMs: typeof import("effect/Schema").Number;
3520
+ p95Ms: typeof import("effect/Schema").Number;
3521
+ }>;
3522
+ }>>;
3523
+ }>, undefined>;
3454
3524
  readonly getApiUsageHistory: import("./endpoint.js").Endpoint<"GET", "/analytics/projects/:id/api-usage/history", import("effect/Schema").Struct<{
3455
3525
  id: typeof import("effect/Schema").String;
3456
3526
  }>, import("effect/Schema").Struct<{
@@ -3462,11 +3532,27 @@ export declare const endpoints: {
3462
3532
  offset: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3463
3533
  interval: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3464
3534
  event: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3535
+ events: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3536
+ groupBy: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3465
3537
  page: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3466
3538
  search: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3539
+ service: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3467
3540
  userId: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3541
+ userIds: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3468
3542
  status: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3469
- }>, import("effect/Schema").Schema.AnyNoContext | undefined, typeof import("effect/Schema").Unknown, undefined>;
3543
+ }>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
3544
+ period: import("effect/Schema").Literal<["day", "week", "month"]>;
3545
+ interval: import("effect/Schema").Literal<["hour", "day"]>;
3546
+ service: typeof import("effect/Schema").String;
3547
+ data: import("effect/Schema").Array$<import("effect/Schema").Struct<{
3548
+ timestamp: typeof import("effect/Schema").String;
3549
+ requests: typeof import("effect/Schema").Number;
3550
+ successful: typeof import("effect/Schema").Number;
3551
+ failed: typeof import("effect/Schema").Number;
3552
+ successRate: typeof import("effect/Schema").Number;
3553
+ avgLatencyMs: typeof import("effect/Schema").Number;
3554
+ }>>;
3555
+ }>, undefined>;
3470
3556
  readonly getApiErrors: import("./endpoint.js").Endpoint<"GET", "/analytics/projects/:id/api-errors", import("effect/Schema").Struct<{
3471
3557
  id: typeof import("effect/Schema").String;
3472
3558
  }>, import("effect/Schema").Struct<{
@@ -3478,11 +3564,25 @@ export declare const endpoints: {
3478
3564
  offset: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3479
3565
  interval: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3480
3566
  event: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3567
+ events: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3568
+ groupBy: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3481
3569
  page: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3482
3570
  search: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3571
+ service: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3483
3572
  userId: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3573
+ userIds: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3484
3574
  status: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3485
- }>, import("effect/Schema").Schema.AnyNoContext | undefined, typeof import("effect/Schema").Unknown, undefined>;
3575
+ }>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Array$<import("effect/Schema").Struct<{
3576
+ id: typeof import("effect/Schema").String;
3577
+ service: typeof import("effect/Schema").String;
3578
+ endpoint: typeof import("effect/Schema").String;
3579
+ error: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
3580
+ statusCode: import("effect/Schema").NullOr<typeof import("effect/Schema").Number>;
3581
+ latencyMs: import("effect/Schema").NullOr<typeof import("effect/Schema").Number>;
3582
+ userAgent: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
3583
+ timestamp: typeof import("effect/Schema").String;
3584
+ metadata: import("effect/Schema").NullOr<import("effect/Schema").Record$<typeof import("effect/Schema").String, typeof import("effect/Schema").Unknown>>;
3585
+ }>>, undefined>;
3486
3586
  readonly getFunnel: import("./endpoint.js").Endpoint<"GET", "/analytics/projects/:id/funnel", import("effect/Schema").Struct<{
3487
3587
  id: typeof import("effect/Schema").String;
3488
3588
  }>, import("effect/Schema").Struct<{
@@ -3494,11 +3594,23 @@ export declare const endpoints: {
3494
3594
  offset: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3495
3595
  interval: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3496
3596
  event: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3597
+ events: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3598
+ groupBy: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3497
3599
  page: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3498
3600
  search: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3601
+ service: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3499
3602
  userId: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3603
+ userIds: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3500
3604
  status: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3501
- }>, import("effect/Schema").Schema.AnyNoContext | undefined, typeof import("effect/Schema").Unknown, undefined>;
3605
+ }>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
3606
+ steps: import("effect/Schema").Array$<import("effect/Schema").Struct<{
3607
+ count: typeof import("effect/Schema").Number;
3608
+ conversionRate: typeof import("effect/Schema").Number;
3609
+ overallRate: typeof import("effect/Schema").Number;
3610
+ dropoff: typeof import("effect/Schema").Number;
3611
+ }>>;
3612
+ overallConversion: typeof import("effect/Schema").Number;
3613
+ }>, undefined>;
3502
3614
  readonly exportJson: import("./endpoint.js").Endpoint<"GET", "/analytics/projects/:id/export/json", import("effect/Schema").Struct<{
3503
3615
  id: typeof import("effect/Schema").String;
3504
3616
  }>, import("effect/Schema").Struct<{
@@ -3510,9 +3622,13 @@ export declare const endpoints: {
3510
3622
  offset: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3511
3623
  interval: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3512
3624
  event: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3625
+ events: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3626
+ groupBy: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3513
3627
  page: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3514
3628
  search: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3629
+ service: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3515
3630
  userId: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3631
+ userIds: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3516
3632
  status: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3517
3633
  }>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
3518
3634
  exportedAt: typeof import("effect/Schema").String;
@@ -3542,9 +3658,13 @@ export declare const endpoints: {
3542
3658
  offset: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3543
3659
  interval: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3544
3660
  event: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3661
+ events: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3662
+ groupBy: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3545
3663
  page: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3546
3664
  search: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3665
+ service: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3547
3666
  userId: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3667
+ userIds: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3548
3668
  status: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3549
3669
  }>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
3550
3670
  csv: typeof import("effect/Schema").String;
@@ -3562,9 +3682,13 @@ export declare const endpoints: {
3562
3682
  offset: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3563
3683
  interval: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3564
3684
  event: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3685
+ events: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3686
+ groupBy: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3565
3687
  page: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3566
3688
  search: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3689
+ service: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3567
3690
  userId: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3691
+ userIds: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3568
3692
  status: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3569
3693
  }>, import("effect/Schema").Schema.AnyNoContext | undefined, typeof import("effect/Schema").Unknown, undefined>;
3570
3694
  readonly getVitalsStats: import("./endpoint.js").Endpoint<"GET", "/analytics/projects/:id/vitals-stats", import("effect/Schema").Struct<{
@@ -3578,9 +3702,13 @@ export declare const endpoints: {
3578
3702
  offset: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3579
3703
  interval: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3580
3704
  event: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3705
+ events: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3706
+ groupBy: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3581
3707
  page: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3582
3708
  search: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3709
+ service: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3583
3710
  userId: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3711
+ userIds: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3584
3712
  status: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3585
3713
  }>, import("effect/Schema").Schema.AnyNoContext | undefined, typeof import("effect/Schema").Unknown, undefined>;
3586
3714
  readonly listCohorts: import("./endpoint.js").Endpoint<"GET", "/analytics/projects/:projectId/cohorts", import("effect/Schema").Struct<{
@@ -3594,9 +3722,13 @@ export declare const endpoints: {
3594
3722
  offset: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3595
3723
  interval: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3596
3724
  event: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3725
+ events: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3726
+ groupBy: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3597
3727
  page: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3598
3728
  search: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3729
+ service: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3599
3730
  userId: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3731
+ userIds: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3600
3732
  status: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3601
3733
  }>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
3602
3734
  cohorts: import("effect/Schema").Array$<import("effect/Schema").Struct<{
@@ -3720,9 +3852,13 @@ export declare const endpoints: {
3720
3852
  offset: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3721
3853
  interval: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3722
3854
  event: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3855
+ events: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3856
+ groupBy: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3723
3857
  page: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3724
3858
  search: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3859
+ service: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3725
3860
  userId: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3861
+ userIds: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3726
3862
  status: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3727
3863
  }>, import("effect/Schema").Schema.AnyNoContext | undefined, typeof import("effect/Schema").Unknown, undefined>;
3728
3864
  readonly getDestinationStats: import("./endpoint.js").Endpoint<"GET", "/analytics/projects/:projectId/destinations/stats", import("effect/Schema").Struct<{
@@ -3736,9 +3872,13 @@ export declare const endpoints: {
3736
3872
  offset: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3737
3873
  interval: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3738
3874
  event: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3875
+ events: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3876
+ groupBy: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3739
3877
  page: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3740
3878
  search: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3879
+ service: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3741
3880
  userId: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3881
+ userIds: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3742
3882
  status: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3743
3883
  }>, import("effect/Schema").Schema.AnyNoContext | undefined, typeof import("effect/Schema").Unknown, undefined>;
3744
3884
  readonly retryDestinationLog: import("./endpoint.js").Endpoint<"POST", "/analytics/projects/:projectId/destinations/logs/:logId/retry", import("effect/Schema").Struct<{
@@ -3753,23 +3893,152 @@ export declare const endpoints: {
3753
3893
  readonly aiAdmin: {
3754
3894
  readonly getOverview: import("./endpoint.js").Endpoint<"GET", "/ai/overview", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
3755
3895
  period: import("effect/Schema").optional<import("effect/Schema").Literal<["day", "week", "month"]>>;
3756
- }>, import("effect/Schema").Schema.AnyNoContext | undefined, typeof import("effect/Schema").Unknown, undefined>;
3896
+ }>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
3897
+ period: import("effect/Schema").Literal<["day", "week", "month"]>;
3898
+ totals: import("effect/Schema").Struct<{
3899
+ requests: typeof import("effect/Schema").Number;
3900
+ tokens: typeof import("effect/Schema").Number;
3901
+ cost: import("effect/Schema").Struct<{
3902
+ microdollars: typeof import("effect/Schema").Number;
3903
+ formatted: typeof import("effect/Schema").String;
3904
+ }>;
3905
+ avgLatencyMs: typeof import("effect/Schema").Number;
3906
+ successRate: typeof import("effect/Schema").Number;
3907
+ }>;
3908
+ byProject: import("effect/Schema").Array$<import("effect/Schema").Struct<{
3909
+ projectId: typeof import("effect/Schema").String;
3910
+ projectName: typeof import("effect/Schema").String;
3911
+ requests: typeof import("effect/Schema").Number;
3912
+ inputTokens: typeof import("effect/Schema").Number;
3913
+ outputTokens: typeof import("effect/Schema").Number;
3914
+ cost: import("effect/Schema").Struct<{
3915
+ microdollars: typeof import("effect/Schema").Number;
3916
+ formatted: typeof import("effect/Schema").String;
3917
+ }>;
3918
+ successRate: typeof import("effect/Schema").Number;
3919
+ }>>;
3920
+ byModel: import("effect/Schema").Array$<import("effect/Schema").Struct<{
3921
+ model: typeof import("effect/Schema").String;
3922
+ requests: typeof import("effect/Schema").Number;
3923
+ tokens: typeof import("effect/Schema").Number;
3924
+ cost: import("effect/Schema").Struct<{
3925
+ microdollars: typeof import("effect/Schema").Number;
3926
+ formatted: typeof import("effect/Schema").String;
3927
+ }>;
3928
+ }>>;
3929
+ byProvider: import("effect/Schema").Array$<import("effect/Schema").Struct<{
3930
+ provider: typeof import("effect/Schema").String;
3931
+ requests: typeof import("effect/Schema").Number;
3932
+ tokens: typeof import("effect/Schema").Number;
3933
+ cost: import("effect/Schema").Struct<{
3934
+ microdollars: typeof import("effect/Schema").Number;
3935
+ formatted: typeof import("effect/Schema").String;
3936
+ }>;
3937
+ }>>;
3938
+ }>, undefined>;
3757
3939
  readonly getProjectUsage: import("./endpoint.js").Endpoint<"GET", "/ai/projects/:projectId/usage", import("effect/Schema").Struct<{
3758
3940
  projectId: typeof import("effect/Schema").String;
3759
3941
  }>, import("effect/Schema").Struct<{
3760
3942
  period: import("effect/Schema").optional<import("effect/Schema").Literal<["day", "week", "month"]>>;
3761
- }>, import("effect/Schema").Schema.AnyNoContext | undefined, typeof import("effect/Schema").Unknown, undefined>;
3943
+ }>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
3944
+ app: import("effect/Schema").Struct<{
3945
+ id: typeof import("effect/Schema").String;
3946
+ name: typeof import("effect/Schema").String;
3947
+ slug: typeof import("effect/Schema").String;
3948
+ }>;
3949
+ period: import("effect/Schema").Literal<["day", "week", "month"]>;
3950
+ stats: import("effect/Schema").Struct<{
3951
+ requests: typeof import("effect/Schema").Number;
3952
+ inputTokens: typeof import("effect/Schema").Number;
3953
+ outputTokens: typeof import("effect/Schema").Number;
3954
+ cost: import("effect/Schema").Struct<{
3955
+ microdollars: typeof import("effect/Schema").Number;
3956
+ formatted: typeof import("effect/Schema").String;
3957
+ }>;
3958
+ latency: import("effect/Schema").Struct<{
3959
+ avgMs: typeof import("effect/Schema").Number;
3960
+ p95Ms: typeof import("effect/Schema").Number;
3961
+ }>;
3962
+ successRate: typeof import("effect/Schema").Number;
3963
+ }>;
3964
+ byModel: import("effect/Schema").Array$<import("effect/Schema").Struct<{
3965
+ model: typeof import("effect/Schema").String;
3966
+ requests: typeof import("effect/Schema").Number;
3967
+ tokens: typeof import("effect/Schema").Number;
3968
+ cost: import("effect/Schema").Struct<{
3969
+ microdollars: typeof import("effect/Schema").Number;
3970
+ formatted: typeof import("effect/Schema").String;
3971
+ }>;
3972
+ }>>;
3973
+ byType: import("effect/Schema").Array$<import("effect/Schema").Struct<{
3974
+ type: typeof import("effect/Schema").String;
3975
+ requests: typeof import("effect/Schema").Number;
3976
+ tokens: typeof import("effect/Schema").Number;
3977
+ }>>;
3978
+ recentErrors: import("effect/Schema").Array$<import("effect/Schema").Struct<{
3979
+ id: typeof import("effect/Schema").String;
3980
+ model: typeof import("effect/Schema").String;
3981
+ type: typeof import("effect/Schema").String;
3982
+ error: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
3983
+ code: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
3984
+ timestamp: typeof import("effect/Schema").String;
3985
+ }>>;
3986
+ }>, undefined>;
3762
3987
  readonly getCostTrends: import("./endpoint.js").Endpoint<"GET", "/ai/trends", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
3763
3988
  period: import("effect/Schema").optional<import("effect/Schema").Literal<["day", "week", "month"]>>;
3764
3989
  interval: import("effect/Schema").optional<import("effect/Schema").Literal<["hour", "day"]>>;
3765
3990
  projectId: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3766
- }>, import("effect/Schema").Schema.AnyNoContext | undefined, typeof import("effect/Schema").Unknown, undefined>;
3991
+ }>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
3992
+ period: import("effect/Schema").Literal<["day", "week", "month"]>;
3993
+ interval: import("effect/Schema").Literal<["hour", "day"]>;
3994
+ data: import("effect/Schema").Array$<import("effect/Schema").Struct<{
3995
+ timestamp: typeof import("effect/Schema").String;
3996
+ requests: typeof import("effect/Schema").Number;
3997
+ tokens: typeof import("effect/Schema").Number;
3998
+ cost: import("effect/Schema").Struct<{
3999
+ microdollars: typeof import("effect/Schema").Number;
4000
+ formatted: typeof import("effect/Schema").String;
4001
+ }>;
4002
+ avgLatencyMs: typeof import("effect/Schema").Number;
4003
+ }>>;
4004
+ }>, undefined>;
3767
4005
  readonly getProjectConfig: import("./endpoint.js").Endpoint<"GET", "/ai/projects/:projectId/config", import("effect/Schema").Struct<{
3768
4006
  projectId: typeof import("effect/Schema").String;
3769
- }>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, typeof import("effect/Schema").Unknown, undefined>;
4007
+ }>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
4008
+ app: import("effect/Schema").Struct<{
4009
+ id: typeof import("effect/Schema").String;
4010
+ name: typeof import("effect/Schema").String;
4011
+ slug: typeof import("effect/Schema").String;
4012
+ }>;
4013
+ config: import("effect/Schema").Struct<{
4014
+ defaultMaxTokens: typeof import("effect/Schema").Number;
4015
+ defaultTemperature: typeof import("effect/Schema").Number;
4016
+ enableCaching: typeof import("effect/Schema").Boolean;
4017
+ allowedModels: import("effect/Schema").NullOr<import("effect/Schema").Array$<typeof import("effect/Schema").String>>;
4018
+ blockedModels: import("effect/Schema").NullOr<import("effect/Schema").Array$<typeof import("effect/Schema").String>>;
4019
+ }>;
4020
+ rateLimits: import("effect/Schema").Array$<import("effect/Schema").Struct<{
4021
+ id: typeof import("effect/Schema").String;
4022
+ modelPattern: typeof import("effect/Schema").String;
4023
+ requestsPerMinute: import("effect/Schema").NullOr<typeof import("effect/Schema").Number>;
4024
+ requestsPerDay: import("effect/Schema").NullOr<typeof import("effect/Schema").Number>;
4025
+ tokensPerMinute: import("effect/Schema").NullOr<typeof import("effect/Schema").Number>;
4026
+ tokensPerDay: import("effect/Schema").NullOr<typeof import("effect/Schema").Number>;
4027
+ costPerDayMicrodollars: import("effect/Schema").NullOr<typeof import("effect/Schema").Number>;
4028
+ isActive: typeof import("effect/Schema").Boolean;
4029
+ }>>;
4030
+ }>, undefined>;
3770
4031
  readonly updateProjectConfig: import("./endpoint.js").Endpoint<"PATCH", "/ai/projects/:projectId/config", import("effect/Schema").Struct<{
3771
4032
  projectId: typeof import("effect/Schema").String;
3772
- }>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Record$<typeof import("effect/Schema").String, typeof import("effect/Schema").Unknown>, typeof import("effect/Schema").Unknown, undefined>;
4033
+ }>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
4034
+ defaultMaxTokens: import("effect/Schema").optional<typeof import("effect/Schema").Number>;
4035
+ defaultTemperature: import("effect/Schema").optional<typeof import("effect/Schema").Number>;
4036
+ enableCaching: import("effect/Schema").optional<typeof import("effect/Schema").Boolean>;
4037
+ allowedModels: import("effect/Schema").optional<import("effect/Schema").NullOr<import("effect/Schema").Array$<typeof import("effect/Schema").String>>>;
4038
+ blockedModels: import("effect/Schema").optional<import("effect/Schema").NullOr<import("effect/Schema").Array$<typeof import("effect/Schema").String>>>;
4039
+ }>, import("effect/Schema").Struct<{
4040
+ success: typeof import("effect/Schema").Boolean;
4041
+ }>, undefined>;
3773
4042
  };
3774
4043
  readonly audit: {
3775
4044
  readonly query: import("./endpoint.js").Endpoint<"GET", "/audit/query", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
@@ -3842,22 +4111,40 @@ export declare const endpoints: {
3842
4111
  readonly signIn: import("./endpoint.js").Endpoint<"POST", "/auth/login", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
3843
4112
  email: typeof import("effect/Schema").String;
3844
4113
  password: typeof import("effect/Schema").String;
4114
+ }>, import("effect/Schema").Union<[import("effect/Schema").Struct<{
4115
+ requiresTwoFactor: import("effect/Schema").Literal<[true]>;
4116
+ userId: typeof import("effect/Schema").String;
4117
+ email: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3845
4118
  }>, import("effect/Schema").Struct<{
3846
- requiresTwoFactor: import("effect/Schema").optional<typeof import("effect/Schema").Boolean>;
3847
- userId: import("effect/Schema").optional<import("effect/Schema").brand<import("effect/Schema").filter<typeof import("effect/Schema").String>, "UserId">>;
3848
- accessToken: import("effect/Schema").optional<typeof import("effect/Schema").String>;
4119
+ requiresTwoFactor: import("effect/Schema").optional<import("effect/Schema").Literal<[false]>>;
4120
+ accessToken: typeof import("effect/Schema").String;
3849
4121
  refreshToken: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3850
- tokenType: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3851
4122
  expiresIn: import("effect/Schema").optional<typeof import("effect/Schema").Number>;
3852
- }>, undefined>;
4123
+ user: import("effect/Schema").optional<import("effect/Schema").Struct<{
4124
+ id: typeof import("effect/Schema").String;
4125
+ email: typeof import("effect/Schema").String;
4126
+ name: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
4127
+ image: import("effect/Schema").optional<import("effect/Schema").NullOr<typeof import("effect/Schema").String>>;
4128
+ emailVerified: import("effect/Schema").optional<typeof import("effect/Schema").Boolean>;
4129
+ role: import("effect/Schema").optional<typeof import("effect/Schema").String>;
4130
+ createdAt: import("effect/Schema").optional<typeof import("effect/Schema").String>;
4131
+ }>>;
4132
+ }>]>, undefined>;
3853
4133
  readonly signUp: import("./endpoint.js").Endpoint<"POST", "/auth/register", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
3854
4134
  email: typeof import("effect/Schema").String;
3855
4135
  password: typeof import("effect/Schema").String;
3856
4136
  name: import("effect/Schema").optional<typeof import("effect/Schema").String>;
4137
+ metadata: import("effect/Schema").optional<import("effect/Schema").Record$<typeof import("effect/Schema").String, typeof import("effect/Schema").Unknown>>;
4138
+ invitationToken: import("effect/Schema").optional<typeof import("effect/Schema").String>;
4139
+ captchaToken: import("effect/Schema").optional<typeof import("effect/Schema").String>;
3857
4140
  }>, import("effect/Schema").Struct<{
3858
- userId: import("effect/Schema").brand<import("effect/Schema").filter<typeof import("effect/Schema").String>, "UserId">;
3859
- email: typeof import("effect/Schema").String;
3860
- emailVerified: typeof import("effect/Schema").Boolean;
4141
+ requiresVerification: import("effect/Schema").optional<typeof import("effect/Schema").Boolean>;
4142
+ message: import("effect/Schema").optional<typeof import("effect/Schema").String>;
4143
+ user: import("effect/Schema").Struct<{
4144
+ id: typeof import("effect/Schema").String;
4145
+ email: typeof import("effect/Schema").String;
4146
+ name: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
4147
+ }>;
3861
4148
  }>, undefined>;
3862
4149
  readonly resendEmailVerification: import("./endpoint.js").Endpoint<"POST", "/auth/resend-verification", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
3863
4150
  email: import("effect/Schema").filter<typeof import("effect/Schema").String>;
@@ -5460,6 +5747,7 @@ export declare const endpoints: {
5460
5747
  hostnames: import("effect/Schema").Array$<import("effect/Schema").Struct<{
5461
5748
  id: import("effect/Schema").brand<import("effect/Schema").filter<typeof import("effect/Schema").String>, "HostnameId">;
5462
5749
  domainId: import("effect/Schema").brand<import("effect/Schema").filter<typeof import("effect/Schema").String>, "DomainId">;
5750
+ serviceId: typeof import("effect/Schema").String;
5463
5751
  hostname: typeof import("effect/Schema").String;
5464
5752
  isPrimary: typeof import("effect/Schema").Boolean;
5465
5753
  redirectTo: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
@@ -5510,6 +5798,7 @@ export declare const endpoints: {
5510
5798
  hostnames: import("effect/Schema").Array$<import("effect/Schema").Struct<{
5511
5799
  id: import("effect/Schema").brand<import("effect/Schema").filter<typeof import("effect/Schema").String>, "HostnameId">;
5512
5800
  domainId: import("effect/Schema").brand<import("effect/Schema").filter<typeof import("effect/Schema").String>, "DomainId">;
5801
+ serviceId: typeof import("effect/Schema").String;
5513
5802
  hostname: typeof import("effect/Schema").String;
5514
5803
  isPrimary: typeof import("effect/Schema").Boolean;
5515
5804
  redirectTo: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
@@ -5560,6 +5849,7 @@ export declare const endpoints: {
5560
5849
  hostnames: import("effect/Schema").Array$<import("effect/Schema").Struct<{
5561
5850
  id: import("effect/Schema").brand<import("effect/Schema").filter<typeof import("effect/Schema").String>, "HostnameId">;
5562
5851
  domainId: import("effect/Schema").brand<import("effect/Schema").filter<typeof import("effect/Schema").String>, "DomainId">;
5852
+ serviceId: typeof import("effect/Schema").String;
5563
5853
  hostname: typeof import("effect/Schema").String;
5564
5854
  isPrimary: typeof import("effect/Schema").Boolean;
5565
5855
  redirectTo: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
@@ -5613,12 +5903,13 @@ export declare const endpoints: {
5613
5903
  envType: import("effect/Schema").optional<typeof import("effect/Schema").String>;
5614
5904
  }>, import("effect/Schema").Struct<{
5615
5905
  hostname: typeof import("effect/Schema").String;
5616
- serviceId: import("effect/Schema").optional<typeof import("effect/Schema").String>;
5906
+ serviceId: import("effect/Schema").filter<typeof import("effect/Schema").String>;
5617
5907
  isPrimary: import("effect/Schema").optional<typeof import("effect/Schema").Boolean>;
5618
5908
  redirectTo: import("effect/Schema").optional<typeof import("effect/Schema").String>;
5619
5909
  }>, import("effect/Schema").Struct<{
5620
5910
  id: import("effect/Schema").brand<import("effect/Schema").filter<typeof import("effect/Schema").String>, "HostnameId">;
5621
5911
  domainId: import("effect/Schema").brand<import("effect/Schema").filter<typeof import("effect/Schema").String>, "DomainId">;
5912
+ serviceId: typeof import("effect/Schema").String;
5622
5913
  hostname: typeof import("effect/Schema").String;
5623
5914
  isPrimary: typeof import("effect/Schema").Boolean;
5624
5915
  redirectTo: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
@@ -5645,6 +5936,7 @@ export declare const endpoints: {
5645
5936
  }>, import("effect/Schema").Struct<{
5646
5937
  id: import("effect/Schema").brand<import("effect/Schema").filter<typeof import("effect/Schema").String>, "HostnameId">;
5647
5938
  domainId: import("effect/Schema").brand<import("effect/Schema").filter<typeof import("effect/Schema").String>, "DomainId">;
5939
+ serviceId: typeof import("effect/Schema").String;
5648
5940
  hostname: typeof import("effect/Schema").String;
5649
5941
  isPrimary: typeof import("effect/Schema").Boolean;
5650
5942
  redirectTo: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
@@ -5674,6 +5966,7 @@ export declare const endpoints: {
5674
5966
  }>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
5675
5967
  id: import("effect/Schema").brand<import("effect/Schema").filter<typeof import("effect/Schema").String>, "HostnameId">;
5676
5968
  domainId: import("effect/Schema").brand<import("effect/Schema").filter<typeof import("effect/Schema").String>, "DomainId">;
5969
+ serviceId: typeof import("effect/Schema").String;
5677
5970
  hostname: typeof import("effect/Schema").String;
5678
5971
  isPrimary: typeof import("effect/Schema").Boolean;
5679
5972
  redirectTo: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
@@ -6153,6 +6446,7 @@ export declare const endpoints: {
6153
6446
  id: typeof import("effect/Schema").String;
6154
6447
  }>, import("effect/Schema").Struct<{
6155
6448
  cursor: import("effect/Schema").optional<typeof import("effect/Schema").String>;
6449
+ email: import("effect/Schema").optional<typeof import("effect/Schema").String>;
6156
6450
  limit: import("effect/Schema").optional<typeof import("effect/Schema").String>;
6157
6451
  reason: import("effect/Schema").optional<import("effect/Schema").Literal<["hard_bounce", "complaint", "manual"]>>;
6158
6452
  }>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
@@ -7424,6 +7718,10 @@ export declare const endpoints: {
7424
7718
  }>, import("effect/Schema").Struct<{
7425
7719
  success: typeof import("effect/Schema").Boolean;
7426
7720
  updated: typeof import("effect/Schema").Number;
7721
+ errors: import("effect/Schema").optional<import("effect/Schema").Array$<import("effect/Schema").Struct<{
7722
+ id: typeof import("effect/Schema").String;
7723
+ error: typeof import("effect/Schema").String;
7724
+ }>>>;
7427
7725
  }>, undefined>;
7428
7726
  readonly bulkDelete: import("./endpoint.js").Endpoint<"POST", "/flags/bulk-delete", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
7429
7727
  projectId: typeof import("effect/Schema").String;
@@ -7431,6 +7729,10 @@ export declare const endpoints: {
7431
7729
  }>, import("effect/Schema").Struct<{
7432
7730
  success: typeof import("effect/Schema").Boolean;
7433
7731
  deleted: typeof import("effect/Schema").Number;
7732
+ errors: import("effect/Schema").optional<import("effect/Schema").Array$<import("effect/Schema").Struct<{
7733
+ id: typeof import("effect/Schema").String;
7734
+ error: typeof import("effect/Schema").String;
7735
+ }>>>;
7434
7736
  }>, undefined>;
7435
7737
  readonly getServiceData: import("./endpoint.js").Endpoint<"GET", "/flags/projects/:id", import("effect/Schema").Struct<{
7436
7738
  id: typeof import("effect/Schema").String;
@@ -8602,7 +8904,7 @@ export declare const endpoints: {
8602
8904
  }>, undefined>;
8603
8905
  readonly sendInApp: import("./endpoint.js").Endpoint<"POST", "/notifications/in-app/send", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
8604
8906
  type: import("effect/Schema").optional<import("effect/Schema").Literal<["info", "success", "warning", "error", "promotion"]>>;
8605
- priority: import("effect/Schema").optional<import("effect/Schema").Literal<["low", "medium", "high", "urgent"]>>;
8907
+ priority: import("effect/Schema").optional<import("effect/Schema").Literal<["low", "normal", "high", "urgent"]>>;
8606
8908
  title: typeof import("effect/Schema").String;
8607
8909
  body: typeof import("effect/Schema").String;
8608
8910
  icon: import("effect/Schema").optional<typeof import("effect/Schema").String>;
@@ -8623,7 +8925,7 @@ export declare const endpoints: {
8623
8925
  }>, undefined>;
8624
8926
  readonly sendInAppBatch: import("./endpoint.js").Endpoint<"POST", "/notifications/in-app/send-batch", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
8625
8927
  type: import("effect/Schema").optional<import("effect/Schema").Literal<["info", "success", "warning", "error", "promotion"]>>;
8626
- priority: import("effect/Schema").optional<import("effect/Schema").Literal<["low", "medium", "high", "urgent"]>>;
8928
+ priority: import("effect/Schema").optional<import("effect/Schema").Literal<["low", "normal", "high", "urgent"]>>;
8627
8929
  title: typeof import("effect/Schema").String;
8628
8930
  body: typeof import("effect/Schema").String;
8629
8931
  icon: import("effect/Schema").optional<typeof import("effect/Schema").String>;
@@ -8645,7 +8947,7 @@ export declare const endpoints: {
8645
8947
  readonly broadcastInApp: import("./endpoint.js").Endpoint<"POST", "/notifications/in-app/broadcast", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
8646
8948
  projectId: typeof import("effect/Schema").String;
8647
8949
  type: import("effect/Schema").optional<import("effect/Schema").Literal<["info", "success", "warning", "error", "promotion"]>>;
8648
- priority: import("effect/Schema").optional<import("effect/Schema").Literal<["low", "medium", "high", "urgent"]>>;
8950
+ priority: import("effect/Schema").optional<import("effect/Schema").Literal<["low", "normal", "high", "urgent"]>>;
8649
8951
  title: typeof import("effect/Schema").String;
8650
8952
  body: typeof import("effect/Schema").String;
8651
8953
  icon: import("effect/Schema").optional<typeof import("effect/Schema").String>;
@@ -8670,7 +8972,7 @@ export declare const endpoints: {
8670
8972
  messages: import("effect/Schema").Array$<import("effect/Schema").Struct<{
8671
8973
  id: typeof import("effect/Schema").String;
8672
8974
  type: import("effect/Schema").Literal<["info", "success", "warning", "error", "promotion"]>;
8673
- priority: import("effect/Schema").Literal<["low", "medium", "high", "urgent"]>;
8975
+ priority: import("effect/Schema").Literal<["low", "normal", "high", "urgent"]>;
8674
8976
  title: typeof import("effect/Schema").String;
8675
8977
  body: typeof import("effect/Schema").String;
8676
8978
  icon: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
@@ -9938,6 +10240,7 @@ export declare const endpoints: {
9938
10240
  command: import("effect/Schema").optional<typeof import("effect/Schema").String>;
9939
10241
  }>>;
9940
10242
  command: import("effect/Schema").optional<typeof import("effect/Schema").String>;
10243
+ release_command: import("effect/Schema").optional<typeof import("effect/Schema").String>;
9941
10244
  port: import("effect/Schema").optional<import("effect/Schema").filter<import("effect/Schema").filter<typeof import("effect/Schema").Number>>>;
9942
10245
  instances: import("effect/Schema").optional<import("effect/Schema").filter<import("effect/Schema").filter<typeof import("effect/Schema").Number>>>;
9943
10246
  instance_type: import("effect/Schema").optional<import("effect/Schema").Literal<["nano", "micro", "small", "standard", "large", "xlarge"]>>;
@@ -9977,31 +10280,7 @@ export declare const endpoints: {
9977
10280
  aliases: import("effect/Schema").optional<import("effect/Schema").Array$<typeof import("effect/Schema").String>>;
9978
10281
  }>>>;
9979
10282
  environments: import("effect/Schema").optional<import("effect/Schema").SchemaClass<{
9980
- readonly development?: {
9981
- readonly domains?: readonly {
9982
- readonly service: string;
9983
- readonly hostname: string;
9984
- readonly redirect_https?: boolean | undefined;
9985
- readonly www_redirect?: "none" | "apex" | "www" | undefined;
9986
- readonly aliases?: readonly string[] | undefined;
9987
- }[] | undefined;
9988
- readonly services?: readonly {
9989
- readonly name: string;
9990
- readonly type?: "function" | "cron" | "web" | "worker" | undefined;
9991
- readonly port?: number | undefined;
9992
- readonly env?: readonly string[] | undefined;
9993
- readonly resources?: readonly string[] | undefined;
9994
- readonly instances?: number | undefined;
9995
- readonly max_instances?: number | undefined;
9996
- readonly command?: string | undefined;
9997
- readonly instance_type?: "nano" | "micro" | "standard" | "large" | "xlarge" | "small" | undefined;
9998
- readonly cron_schedule?: string | undefined;
9999
- readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
10000
- readonly scale_to_zero?: boolean | undefined;
10001
- readonly idle_timeout_seconds?: number | undefined;
10002
- readonly min_instances?: number | undefined;
10003
- }[] | undefined;
10004
- readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
10283
+ readonly production?: {
10005
10284
  readonly env?: {
10006
10285
  readonly [x: string]: {
10007
10286
  readonly value: string;
@@ -10012,11 +10291,12 @@ export declare const endpoints: {
10012
10291
  readonly attr: string;
10013
10292
  };
10014
10293
  } | undefined;
10294
+ readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
10015
10295
  readonly build?: {
10016
- readonly context?: string | undefined;
10017
- readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
10018
10296
  readonly dockerfile?: string | undefined;
10019
- readonly buildpack?: "auto" | "static" | "ruby" | "node" | "python" | "dockerfile" | undefined;
10297
+ readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
10298
+ readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
10299
+ readonly context?: string | undefined;
10020
10300
  readonly docker_context?: string | undefined;
10021
10301
  readonly build_command?: string | undefined;
10022
10302
  readonly ignore?: readonly string[] | undefined;
@@ -10024,38 +10304,37 @@ export declare const endpoints: {
10024
10304
  readonly reproducible?: boolean | undefined;
10025
10305
  } | undefined;
10026
10306
  readonly deploy?: {
10027
- readonly strategy?: "immediate" | "rolling" | "blue-green" | undefined;
10307
+ readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
10028
10308
  readonly release_command?: string | undefined;
10029
10309
  readonly health_check_path?: string | undefined;
10030
10310
  readonly health_check_timeout?: number | undefined;
10031
10311
  readonly graceful_shutdown?: number | undefined;
10032
10312
  } | undefined;
10033
- };
10034
- readonly staging?: {
10035
- readonly domains?: readonly {
10036
- readonly service: string;
10037
- readonly hostname: string;
10038
- readonly redirect_https?: boolean | undefined;
10039
- readonly www_redirect?: "none" | "apex" | "www" | undefined;
10040
- readonly aliases?: readonly string[] | undefined;
10041
- }[] | undefined;
10042
10313
  readonly services?: readonly {
10043
- readonly name: string;
10044
- readonly type?: "function" | "cron" | "web" | "worker" | undefined;
10045
10314
  readonly port?: number | undefined;
10046
10315
  readonly env?: readonly string[] | undefined;
10316
+ readonly name: string;
10047
10317
  readonly resources?: readonly string[] | undefined;
10048
- readonly instances?: number | undefined;
10049
10318
  readonly max_instances?: number | undefined;
10050
10319
  readonly command?: string | undefined;
10051
- readonly instance_type?: "nano" | "micro" | "standard" | "large" | "xlarge" | "small" | undefined;
10320
+ readonly type?: "function" | "web" | "worker" | "cron" | undefined;
10321
+ readonly instances?: number | undefined;
10322
+ readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
10052
10323
  readonly cron_schedule?: string | undefined;
10053
10324
  readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
10054
10325
  readonly scale_to_zero?: boolean | undefined;
10055
10326
  readonly idle_timeout_seconds?: number | undefined;
10056
10327
  readonly min_instances?: number | undefined;
10057
10328
  }[] | undefined;
10058
- readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
10329
+ readonly domains?: readonly {
10330
+ readonly hostname: string;
10331
+ readonly service: string;
10332
+ readonly redirect_https?: boolean | undefined;
10333
+ readonly www_redirect?: "apex" | "www" | "none" | undefined;
10334
+ readonly aliases?: readonly string[] | undefined;
10335
+ }[] | undefined;
10336
+ };
10337
+ readonly staging?: {
10059
10338
  readonly env?: {
10060
10339
  readonly [x: string]: {
10061
10340
  readonly value: string;
@@ -10066,11 +10345,12 @@ export declare const endpoints: {
10066
10345
  readonly attr: string;
10067
10346
  };
10068
10347
  } | undefined;
10348
+ readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
10069
10349
  readonly build?: {
10070
- readonly context?: string | undefined;
10071
- readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
10072
10350
  readonly dockerfile?: string | undefined;
10073
- readonly buildpack?: "auto" | "static" | "ruby" | "node" | "python" | "dockerfile" | undefined;
10351
+ readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
10352
+ readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
10353
+ readonly context?: string | undefined;
10074
10354
  readonly docker_context?: string | undefined;
10075
10355
  readonly build_command?: string | undefined;
10076
10356
  readonly ignore?: readonly string[] | undefined;
@@ -10078,38 +10358,37 @@ export declare const endpoints: {
10078
10358
  readonly reproducible?: boolean | undefined;
10079
10359
  } | undefined;
10080
10360
  readonly deploy?: {
10081
- readonly strategy?: "immediate" | "rolling" | "blue-green" | undefined;
10361
+ readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
10082
10362
  readonly release_command?: string | undefined;
10083
10363
  readonly health_check_path?: string | undefined;
10084
10364
  readonly health_check_timeout?: number | undefined;
10085
10365
  readonly graceful_shutdown?: number | undefined;
10086
10366
  } | undefined;
10087
- };
10088
- readonly production?: {
10089
- readonly domains?: readonly {
10090
- readonly service: string;
10091
- readonly hostname: string;
10092
- readonly redirect_https?: boolean | undefined;
10093
- readonly www_redirect?: "none" | "apex" | "www" | undefined;
10094
- readonly aliases?: readonly string[] | undefined;
10095
- }[] | undefined;
10096
10367
  readonly services?: readonly {
10097
- readonly name: string;
10098
- readonly type?: "function" | "cron" | "web" | "worker" | undefined;
10099
10368
  readonly port?: number | undefined;
10100
10369
  readonly env?: readonly string[] | undefined;
10370
+ readonly name: string;
10101
10371
  readonly resources?: readonly string[] | undefined;
10102
- readonly instances?: number | undefined;
10103
10372
  readonly max_instances?: number | undefined;
10104
10373
  readonly command?: string | undefined;
10105
- readonly instance_type?: "nano" | "micro" | "standard" | "large" | "xlarge" | "small" | undefined;
10374
+ readonly type?: "function" | "web" | "worker" | "cron" | undefined;
10375
+ readonly instances?: number | undefined;
10376
+ readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
10106
10377
  readonly cron_schedule?: string | undefined;
10107
10378
  readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
10108
10379
  readonly scale_to_zero?: boolean | undefined;
10109
10380
  readonly idle_timeout_seconds?: number | undefined;
10110
10381
  readonly min_instances?: number | undefined;
10111
10382
  }[] | undefined;
10112
- readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
10383
+ readonly domains?: readonly {
10384
+ readonly hostname: string;
10385
+ readonly service: string;
10386
+ readonly redirect_https?: boolean | undefined;
10387
+ readonly www_redirect?: "apex" | "www" | "none" | undefined;
10388
+ readonly aliases?: readonly string[] | undefined;
10389
+ }[] | undefined;
10390
+ };
10391
+ readonly preview?: {
10113
10392
  readonly env?: {
10114
10393
  readonly [x: string]: {
10115
10394
  readonly value: string;
@@ -10120,11 +10399,12 @@ export declare const endpoints: {
10120
10399
  readonly attr: string;
10121
10400
  };
10122
10401
  } | undefined;
10402
+ readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
10123
10403
  readonly build?: {
10124
- readonly context?: string | undefined;
10125
- readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
10126
10404
  readonly dockerfile?: string | undefined;
10127
- readonly buildpack?: "auto" | "static" | "ruby" | "node" | "python" | "dockerfile" | undefined;
10405
+ readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
10406
+ readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
10407
+ readonly context?: string | undefined;
10128
10408
  readonly docker_context?: string | undefined;
10129
10409
  readonly build_command?: string | undefined;
10130
10410
  readonly ignore?: readonly string[] | undefined;
@@ -10132,38 +10412,37 @@ export declare const endpoints: {
10132
10412
  readonly reproducible?: boolean | undefined;
10133
10413
  } | undefined;
10134
10414
  readonly deploy?: {
10135
- readonly strategy?: "immediate" | "rolling" | "blue-green" | undefined;
10415
+ readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
10136
10416
  readonly release_command?: string | undefined;
10137
10417
  readonly health_check_path?: string | undefined;
10138
10418
  readonly health_check_timeout?: number | undefined;
10139
10419
  readonly graceful_shutdown?: number | undefined;
10140
10420
  } | undefined;
10141
- };
10142
- readonly preview?: {
10143
- readonly domains?: readonly {
10144
- readonly service: string;
10145
- readonly hostname: string;
10146
- readonly redirect_https?: boolean | undefined;
10147
- readonly www_redirect?: "none" | "apex" | "www" | undefined;
10148
- readonly aliases?: readonly string[] | undefined;
10149
- }[] | undefined;
10150
10421
  readonly services?: readonly {
10151
- readonly name: string;
10152
- readonly type?: "function" | "cron" | "web" | "worker" | undefined;
10153
10422
  readonly port?: number | undefined;
10154
10423
  readonly env?: readonly string[] | undefined;
10424
+ readonly name: string;
10155
10425
  readonly resources?: readonly string[] | undefined;
10156
- readonly instances?: number | undefined;
10157
10426
  readonly max_instances?: number | undefined;
10158
10427
  readonly command?: string | undefined;
10159
- readonly instance_type?: "nano" | "micro" | "standard" | "large" | "xlarge" | "small" | undefined;
10428
+ readonly type?: "function" | "web" | "worker" | "cron" | undefined;
10429
+ readonly instances?: number | undefined;
10430
+ readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
10160
10431
  readonly cron_schedule?: string | undefined;
10161
10432
  readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
10162
10433
  readonly scale_to_zero?: boolean | undefined;
10163
10434
  readonly idle_timeout_seconds?: number | undefined;
10164
10435
  readonly min_instances?: number | undefined;
10165
10436
  }[] | undefined;
10166
- readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
10437
+ readonly domains?: readonly {
10438
+ readonly hostname: string;
10439
+ readonly service: string;
10440
+ readonly redirect_https?: boolean | undefined;
10441
+ readonly www_redirect?: "apex" | "www" | "none" | undefined;
10442
+ readonly aliases?: readonly string[] | undefined;
10443
+ }[] | undefined;
10444
+ };
10445
+ readonly development?: {
10167
10446
  readonly env?: {
10168
10447
  readonly [x: string]: {
10169
10448
  readonly value: string;
@@ -10174,11 +10453,12 @@ export declare const endpoints: {
10174
10453
  readonly attr: string;
10175
10454
  };
10176
10455
  } | undefined;
10456
+ readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
10177
10457
  readonly build?: {
10178
- readonly context?: string | undefined;
10179
- readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
10180
10458
  readonly dockerfile?: string | undefined;
10181
- readonly buildpack?: "auto" | "static" | "ruby" | "node" | "python" | "dockerfile" | undefined;
10459
+ readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
10460
+ readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
10461
+ readonly context?: string | undefined;
10182
10462
  readonly docker_context?: string | undefined;
10183
10463
  readonly build_command?: string | undefined;
10184
10464
  readonly ignore?: readonly string[] | undefined;
@@ -10186,39 +10466,38 @@ export declare const endpoints: {
10186
10466
  readonly reproducible?: boolean | undefined;
10187
10467
  } | undefined;
10188
10468
  readonly deploy?: {
10189
- readonly strategy?: "immediate" | "rolling" | "blue-green" | undefined;
10469
+ readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
10190
10470
  readonly release_command?: string | undefined;
10191
10471
  readonly health_check_path?: string | undefined;
10192
10472
  readonly health_check_timeout?: number | undefined;
10193
10473
  readonly graceful_shutdown?: number | undefined;
10194
10474
  } | undefined;
10195
- };
10196
- }, {
10197
- readonly development?: {
10198
- readonly domains?: readonly {
10199
- readonly service: string;
10200
- readonly hostname: string;
10201
- readonly redirect_https?: boolean | undefined;
10202
- readonly www_redirect?: "none" | "apex" | "www" | undefined;
10203
- readonly aliases?: readonly string[] | undefined;
10204
- }[] | undefined;
10205
10475
  readonly services?: readonly {
10206
- readonly name: string;
10207
- readonly type?: "function" | "cron" | "web" | "worker" | undefined;
10208
10476
  readonly port?: number | undefined;
10209
10477
  readonly env?: readonly string[] | undefined;
10478
+ readonly name: string;
10210
10479
  readonly resources?: readonly string[] | undefined;
10211
- readonly instances?: number | undefined;
10212
10480
  readonly max_instances?: number | undefined;
10213
10481
  readonly command?: string | undefined;
10214
- readonly instance_type?: "nano" | "micro" | "standard" | "large" | "xlarge" | "small" | undefined;
10482
+ readonly type?: "function" | "web" | "worker" | "cron" | undefined;
10483
+ readonly instances?: number | undefined;
10484
+ readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
10215
10485
  readonly cron_schedule?: string | undefined;
10216
10486
  readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
10217
10487
  readonly scale_to_zero?: boolean | undefined;
10218
10488
  readonly idle_timeout_seconds?: number | undefined;
10219
10489
  readonly min_instances?: number | undefined;
10220
10490
  }[] | undefined;
10221
- readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
10491
+ readonly domains?: readonly {
10492
+ readonly hostname: string;
10493
+ readonly service: string;
10494
+ readonly redirect_https?: boolean | undefined;
10495
+ readonly www_redirect?: "apex" | "www" | "none" | undefined;
10496
+ readonly aliases?: readonly string[] | undefined;
10497
+ }[] | undefined;
10498
+ };
10499
+ }, {
10500
+ readonly production?: {
10222
10501
  readonly env?: {
10223
10502
  readonly [x: string]: {
10224
10503
  readonly value: string;
@@ -10229,11 +10508,12 @@ export declare const endpoints: {
10229
10508
  readonly attr: string;
10230
10509
  };
10231
10510
  } | undefined;
10511
+ readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
10232
10512
  readonly build?: {
10233
- readonly context?: string | undefined;
10234
- readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
10235
10513
  readonly dockerfile?: string | undefined;
10236
- readonly buildpack?: "auto" | "static" | "ruby" | "node" | "python" | "dockerfile" | undefined;
10514
+ readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
10515
+ readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
10516
+ readonly context?: string | undefined;
10237
10517
  readonly docker_context?: string | undefined;
10238
10518
  readonly build_command?: string | undefined;
10239
10519
  readonly ignore?: readonly string[] | undefined;
@@ -10241,38 +10521,37 @@ export declare const endpoints: {
10241
10521
  readonly reproducible?: boolean | undefined;
10242
10522
  } | undefined;
10243
10523
  readonly deploy?: {
10244
- readonly strategy?: "immediate" | "rolling" | "blue-green" | undefined;
10524
+ readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
10245
10525
  readonly release_command?: string | undefined;
10246
10526
  readonly health_check_path?: string | undefined;
10247
10527
  readonly health_check_timeout?: number | undefined;
10248
10528
  readonly graceful_shutdown?: number | undefined;
10249
10529
  } | undefined;
10250
- };
10251
- readonly staging?: {
10252
- readonly domains?: readonly {
10253
- readonly service: string;
10254
- readonly hostname: string;
10255
- readonly redirect_https?: boolean | undefined;
10256
- readonly www_redirect?: "none" | "apex" | "www" | undefined;
10257
- readonly aliases?: readonly string[] | undefined;
10258
- }[] | undefined;
10259
10530
  readonly services?: readonly {
10260
10531
  readonly name: string;
10261
- readonly type?: "function" | "cron" | "web" | "worker" | undefined;
10262
10532
  readonly port?: number | undefined;
10263
10533
  readonly env?: readonly string[] | undefined;
10264
10534
  readonly resources?: readonly string[] | undefined;
10265
- readonly instances?: number | undefined;
10266
10535
  readonly max_instances?: number | undefined;
10267
10536
  readonly command?: string | undefined;
10268
- readonly instance_type?: "nano" | "micro" | "standard" | "large" | "xlarge" | "small" | undefined;
10537
+ readonly type?: "function" | "web" | "worker" | "cron" | undefined;
10538
+ readonly instances?: number | undefined;
10539
+ readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
10269
10540
  readonly cron_schedule?: string | undefined;
10270
10541
  readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
10271
10542
  readonly scale_to_zero?: boolean | undefined;
10272
10543
  readonly idle_timeout_seconds?: number | undefined;
10273
10544
  readonly min_instances?: number | undefined;
10274
10545
  }[] | undefined;
10275
- readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
10546
+ readonly domains?: readonly {
10547
+ readonly hostname: string;
10548
+ readonly service: string;
10549
+ readonly redirect_https?: boolean | undefined;
10550
+ readonly www_redirect?: "apex" | "www" | "none" | undefined;
10551
+ readonly aliases?: readonly string[] | undefined;
10552
+ }[] | undefined;
10553
+ };
10554
+ readonly staging?: {
10276
10555
  readonly env?: {
10277
10556
  readonly [x: string]: {
10278
10557
  readonly value: string;
@@ -10283,11 +10562,12 @@ export declare const endpoints: {
10283
10562
  readonly attr: string;
10284
10563
  };
10285
10564
  } | undefined;
10565
+ readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
10286
10566
  readonly build?: {
10287
- readonly context?: string | undefined;
10288
- readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
10289
10567
  readonly dockerfile?: string | undefined;
10290
- readonly buildpack?: "auto" | "static" | "ruby" | "node" | "python" | "dockerfile" | undefined;
10568
+ readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
10569
+ readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
10570
+ readonly context?: string | undefined;
10291
10571
  readonly docker_context?: string | undefined;
10292
10572
  readonly build_command?: string | undefined;
10293
10573
  readonly ignore?: readonly string[] | undefined;
@@ -10295,38 +10575,37 @@ export declare const endpoints: {
10295
10575
  readonly reproducible?: boolean | undefined;
10296
10576
  } | undefined;
10297
10577
  readonly deploy?: {
10298
- readonly strategy?: "immediate" | "rolling" | "blue-green" | undefined;
10578
+ readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
10299
10579
  readonly release_command?: string | undefined;
10300
10580
  readonly health_check_path?: string | undefined;
10301
10581
  readonly health_check_timeout?: number | undefined;
10302
10582
  readonly graceful_shutdown?: number | undefined;
10303
10583
  } | undefined;
10304
- };
10305
- readonly production?: {
10306
- readonly domains?: readonly {
10307
- readonly service: string;
10308
- readonly hostname: string;
10309
- readonly redirect_https?: boolean | undefined;
10310
- readonly www_redirect?: "none" | "apex" | "www" | undefined;
10311
- readonly aliases?: readonly string[] | undefined;
10312
- }[] | undefined;
10313
10584
  readonly services?: readonly {
10314
10585
  readonly name: string;
10315
- readonly type?: "function" | "cron" | "web" | "worker" | undefined;
10316
10586
  readonly port?: number | undefined;
10317
10587
  readonly env?: readonly string[] | undefined;
10318
10588
  readonly resources?: readonly string[] | undefined;
10319
- readonly instances?: number | undefined;
10320
10589
  readonly max_instances?: number | undefined;
10321
10590
  readonly command?: string | undefined;
10322
- readonly instance_type?: "nano" | "micro" | "standard" | "large" | "xlarge" | "small" | undefined;
10591
+ readonly type?: "function" | "web" | "worker" | "cron" | undefined;
10592
+ readonly instances?: number | undefined;
10593
+ readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
10323
10594
  readonly cron_schedule?: string | undefined;
10324
10595
  readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
10325
10596
  readonly scale_to_zero?: boolean | undefined;
10326
10597
  readonly idle_timeout_seconds?: number | undefined;
10327
10598
  readonly min_instances?: number | undefined;
10328
10599
  }[] | undefined;
10329
- readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
10600
+ readonly domains?: readonly {
10601
+ readonly hostname: string;
10602
+ readonly service: string;
10603
+ readonly redirect_https?: boolean | undefined;
10604
+ readonly www_redirect?: "apex" | "www" | "none" | undefined;
10605
+ readonly aliases?: readonly string[] | undefined;
10606
+ }[] | undefined;
10607
+ };
10608
+ readonly preview?: {
10330
10609
  readonly env?: {
10331
10610
  readonly [x: string]: {
10332
10611
  readonly value: string;
@@ -10337,11 +10616,12 @@ export declare const endpoints: {
10337
10616
  readonly attr: string;
10338
10617
  };
10339
10618
  } | undefined;
10619
+ readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
10340
10620
  readonly build?: {
10341
- readonly context?: string | undefined;
10342
- readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
10343
10621
  readonly dockerfile?: string | undefined;
10344
- readonly buildpack?: "auto" | "static" | "ruby" | "node" | "python" | "dockerfile" | undefined;
10622
+ readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
10623
+ readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
10624
+ readonly context?: string | undefined;
10345
10625
  readonly docker_context?: string | undefined;
10346
10626
  readonly build_command?: string | undefined;
10347
10627
  readonly ignore?: readonly string[] | undefined;
@@ -10349,38 +10629,37 @@ export declare const endpoints: {
10349
10629
  readonly reproducible?: boolean | undefined;
10350
10630
  } | undefined;
10351
10631
  readonly deploy?: {
10352
- readonly strategy?: "immediate" | "rolling" | "blue-green" | undefined;
10632
+ readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
10353
10633
  readonly release_command?: string | undefined;
10354
10634
  readonly health_check_path?: string | undefined;
10355
10635
  readonly health_check_timeout?: number | undefined;
10356
10636
  readonly graceful_shutdown?: number | undefined;
10357
10637
  } | undefined;
10358
- };
10359
- readonly preview?: {
10360
- readonly domains?: readonly {
10361
- readonly service: string;
10362
- readonly hostname: string;
10363
- readonly redirect_https?: boolean | undefined;
10364
- readonly www_redirect?: "none" | "apex" | "www" | undefined;
10365
- readonly aliases?: readonly string[] | undefined;
10366
- }[] | undefined;
10367
10638
  readonly services?: readonly {
10368
10639
  readonly name: string;
10369
- readonly type?: "function" | "cron" | "web" | "worker" | undefined;
10370
10640
  readonly port?: number | undefined;
10371
10641
  readonly env?: readonly string[] | undefined;
10372
10642
  readonly resources?: readonly string[] | undefined;
10373
- readonly instances?: number | undefined;
10374
10643
  readonly max_instances?: number | undefined;
10375
10644
  readonly command?: string | undefined;
10376
- readonly instance_type?: "nano" | "micro" | "standard" | "large" | "xlarge" | "small" | undefined;
10645
+ readonly type?: "function" | "web" | "worker" | "cron" | undefined;
10646
+ readonly instances?: number | undefined;
10647
+ readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
10377
10648
  readonly cron_schedule?: string | undefined;
10378
10649
  readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
10379
10650
  readonly scale_to_zero?: boolean | undefined;
10380
10651
  readonly idle_timeout_seconds?: number | undefined;
10381
10652
  readonly min_instances?: number | undefined;
10382
10653
  }[] | undefined;
10383
- readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
10654
+ readonly domains?: readonly {
10655
+ readonly hostname: string;
10656
+ readonly service: string;
10657
+ readonly redirect_https?: boolean | undefined;
10658
+ readonly www_redirect?: "apex" | "www" | "none" | undefined;
10659
+ readonly aliases?: readonly string[] | undefined;
10660
+ }[] | undefined;
10661
+ };
10662
+ readonly development?: {
10384
10663
  readonly env?: {
10385
10664
  readonly [x: string]: {
10386
10665
  readonly value: string;
@@ -10391,11 +10670,12 @@ export declare const endpoints: {
10391
10670
  readonly attr: string;
10392
10671
  };
10393
10672
  } | undefined;
10673
+ readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
10394
10674
  readonly build?: {
10395
- readonly context?: string | undefined;
10396
- readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
10397
10675
  readonly dockerfile?: string | undefined;
10398
- readonly buildpack?: "auto" | "static" | "ruby" | "node" | "python" | "dockerfile" | undefined;
10676
+ readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
10677
+ readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
10678
+ readonly context?: string | undefined;
10399
10679
  readonly docker_context?: string | undefined;
10400
10680
  readonly build_command?: string | undefined;
10401
10681
  readonly ignore?: readonly string[] | undefined;
@@ -10403,12 +10683,35 @@ export declare const endpoints: {
10403
10683
  readonly reproducible?: boolean | undefined;
10404
10684
  } | undefined;
10405
10685
  readonly deploy?: {
10406
- readonly strategy?: "immediate" | "rolling" | "blue-green" | undefined;
10686
+ readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
10407
10687
  readonly release_command?: string | undefined;
10408
10688
  readonly health_check_path?: string | undefined;
10409
10689
  readonly health_check_timeout?: number | undefined;
10410
10690
  readonly graceful_shutdown?: number | undefined;
10411
10691
  } | undefined;
10692
+ readonly services?: readonly {
10693
+ readonly name: string;
10694
+ readonly port?: number | undefined;
10695
+ readonly env?: readonly string[] | undefined;
10696
+ readonly resources?: readonly string[] | undefined;
10697
+ readonly max_instances?: number | undefined;
10698
+ readonly command?: string | undefined;
10699
+ readonly type?: "function" | "web" | "worker" | "cron" | undefined;
10700
+ readonly instances?: number | undefined;
10701
+ readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
10702
+ readonly cron_schedule?: string | undefined;
10703
+ readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
10704
+ readonly scale_to_zero?: boolean | undefined;
10705
+ readonly idle_timeout_seconds?: number | undefined;
10706
+ readonly min_instances?: number | undefined;
10707
+ }[] | undefined;
10708
+ readonly domains?: readonly {
10709
+ readonly hostname: string;
10710
+ readonly service: string;
10711
+ readonly redirect_https?: boolean | undefined;
10712
+ readonly www_redirect?: "apex" | "www" | "none" | undefined;
10713
+ readonly aliases?: readonly string[] | undefined;
10714
+ }[] | undefined;
10412
10715
  };
10413
10716
  }, never>>;
10414
10717
  resources: import("effect/Schema").optional<import("effect/Schema").Struct<{
@@ -10499,6 +10802,7 @@ export declare const endpoints: {
10499
10802
  command: import("effect/Schema").optional<typeof import("effect/Schema").String>;
10500
10803
  }>>;
10501
10804
  command: import("effect/Schema").optional<typeof import("effect/Schema").String>;
10805
+ release_command: import("effect/Schema").optional<typeof import("effect/Schema").String>;
10502
10806
  port: import("effect/Schema").optional<import("effect/Schema").filter<import("effect/Schema").filter<typeof import("effect/Schema").Number>>>;
10503
10807
  instances: import("effect/Schema").optional<import("effect/Schema").filter<import("effect/Schema").filter<typeof import("effect/Schema").Number>>>;
10504
10808
  instance_type: import("effect/Schema").optional<import("effect/Schema").Literal<["nano", "micro", "small", "standard", "large", "xlarge"]>>;
@@ -10538,31 +10842,7 @@ export declare const endpoints: {
10538
10842
  aliases: import("effect/Schema").optional<import("effect/Schema").Array$<typeof import("effect/Schema").String>>;
10539
10843
  }>>>;
10540
10844
  environments: import("effect/Schema").optional<import("effect/Schema").SchemaClass<{
10541
- readonly development?: {
10542
- readonly domains?: readonly {
10543
- readonly service: string;
10544
- readonly hostname: string;
10545
- readonly redirect_https?: boolean | undefined;
10546
- readonly www_redirect?: "none" | "apex" | "www" | undefined;
10547
- readonly aliases?: readonly string[] | undefined;
10548
- }[] | undefined;
10549
- readonly services?: readonly {
10550
- readonly name: string;
10551
- readonly type?: "function" | "cron" | "web" | "worker" | undefined;
10552
- readonly port?: number | undefined;
10553
- readonly env?: readonly string[] | undefined;
10554
- readonly resources?: readonly string[] | undefined;
10555
- readonly instances?: number | undefined;
10556
- readonly max_instances?: number | undefined;
10557
- readonly command?: string | undefined;
10558
- readonly instance_type?: "nano" | "micro" | "standard" | "large" | "xlarge" | "small" | undefined;
10559
- readonly cron_schedule?: string | undefined;
10560
- readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
10561
- readonly scale_to_zero?: boolean | undefined;
10562
- readonly idle_timeout_seconds?: number | undefined;
10563
- readonly min_instances?: number | undefined;
10564
- }[] | undefined;
10565
- readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
10845
+ readonly production?: {
10566
10846
  readonly env?: {
10567
10847
  readonly [x: string]: {
10568
10848
  readonly value: string;
@@ -10573,11 +10853,12 @@ export declare const endpoints: {
10573
10853
  readonly attr: string;
10574
10854
  };
10575
10855
  } | undefined;
10856
+ readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
10576
10857
  readonly build?: {
10577
- readonly context?: string | undefined;
10578
- readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
10579
10858
  readonly dockerfile?: string | undefined;
10580
- readonly buildpack?: "auto" | "static" | "ruby" | "node" | "python" | "dockerfile" | undefined;
10859
+ readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
10860
+ readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
10861
+ readonly context?: string | undefined;
10581
10862
  readonly docker_context?: string | undefined;
10582
10863
  readonly build_command?: string | undefined;
10583
10864
  readonly ignore?: readonly string[] | undefined;
@@ -10585,38 +10866,37 @@ export declare const endpoints: {
10585
10866
  readonly reproducible?: boolean | undefined;
10586
10867
  } | undefined;
10587
10868
  readonly deploy?: {
10588
- readonly strategy?: "immediate" | "rolling" | "blue-green" | undefined;
10869
+ readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
10589
10870
  readonly release_command?: string | undefined;
10590
10871
  readonly health_check_path?: string | undefined;
10591
10872
  readonly health_check_timeout?: number | undefined;
10592
10873
  readonly graceful_shutdown?: number | undefined;
10593
10874
  } | undefined;
10594
- };
10595
- readonly staging?: {
10596
- readonly domains?: readonly {
10597
- readonly service: string;
10598
- readonly hostname: string;
10599
- readonly redirect_https?: boolean | undefined;
10600
- readonly www_redirect?: "none" | "apex" | "www" | undefined;
10601
- readonly aliases?: readonly string[] | undefined;
10602
- }[] | undefined;
10603
10875
  readonly services?: readonly {
10604
- readonly name: string;
10605
- readonly type?: "function" | "cron" | "web" | "worker" | undefined;
10606
10876
  readonly port?: number | undefined;
10607
10877
  readonly env?: readonly string[] | undefined;
10878
+ readonly name: string;
10608
10879
  readonly resources?: readonly string[] | undefined;
10609
- readonly instances?: number | undefined;
10610
10880
  readonly max_instances?: number | undefined;
10611
10881
  readonly command?: string | undefined;
10612
- readonly instance_type?: "nano" | "micro" | "standard" | "large" | "xlarge" | "small" | undefined;
10882
+ readonly type?: "function" | "web" | "worker" | "cron" | undefined;
10883
+ readonly instances?: number | undefined;
10884
+ readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
10613
10885
  readonly cron_schedule?: string | undefined;
10614
10886
  readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
10615
10887
  readonly scale_to_zero?: boolean | undefined;
10616
10888
  readonly idle_timeout_seconds?: number | undefined;
10617
10889
  readonly min_instances?: number | undefined;
10618
10890
  }[] | undefined;
10619
- readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
10891
+ readonly domains?: readonly {
10892
+ readonly hostname: string;
10893
+ readonly service: string;
10894
+ readonly redirect_https?: boolean | undefined;
10895
+ readonly www_redirect?: "apex" | "www" | "none" | undefined;
10896
+ readonly aliases?: readonly string[] | undefined;
10897
+ }[] | undefined;
10898
+ };
10899
+ readonly staging?: {
10620
10900
  readonly env?: {
10621
10901
  readonly [x: string]: {
10622
10902
  readonly value: string;
@@ -10627,11 +10907,12 @@ export declare const endpoints: {
10627
10907
  readonly attr: string;
10628
10908
  };
10629
10909
  } | undefined;
10910
+ readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
10630
10911
  readonly build?: {
10631
- readonly context?: string | undefined;
10632
- readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
10633
10912
  readonly dockerfile?: string | undefined;
10634
- readonly buildpack?: "auto" | "static" | "ruby" | "node" | "python" | "dockerfile" | undefined;
10913
+ readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
10914
+ readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
10915
+ readonly context?: string | undefined;
10635
10916
  readonly docker_context?: string | undefined;
10636
10917
  readonly build_command?: string | undefined;
10637
10918
  readonly ignore?: readonly string[] | undefined;
@@ -10639,38 +10920,37 @@ export declare const endpoints: {
10639
10920
  readonly reproducible?: boolean | undefined;
10640
10921
  } | undefined;
10641
10922
  readonly deploy?: {
10642
- readonly strategy?: "immediate" | "rolling" | "blue-green" | undefined;
10923
+ readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
10643
10924
  readonly release_command?: string | undefined;
10644
10925
  readonly health_check_path?: string | undefined;
10645
10926
  readonly health_check_timeout?: number | undefined;
10646
10927
  readonly graceful_shutdown?: number | undefined;
10647
10928
  } | undefined;
10648
- };
10649
- readonly production?: {
10650
- readonly domains?: readonly {
10651
- readonly service: string;
10652
- readonly hostname: string;
10653
- readonly redirect_https?: boolean | undefined;
10654
- readonly www_redirect?: "none" | "apex" | "www" | undefined;
10655
- readonly aliases?: readonly string[] | undefined;
10656
- }[] | undefined;
10657
10929
  readonly services?: readonly {
10658
- readonly name: string;
10659
- readonly type?: "function" | "cron" | "web" | "worker" | undefined;
10660
10930
  readonly port?: number | undefined;
10661
10931
  readonly env?: readonly string[] | undefined;
10932
+ readonly name: string;
10662
10933
  readonly resources?: readonly string[] | undefined;
10663
- readonly instances?: number | undefined;
10664
10934
  readonly max_instances?: number | undefined;
10665
10935
  readonly command?: string | undefined;
10666
- readonly instance_type?: "nano" | "micro" | "standard" | "large" | "xlarge" | "small" | undefined;
10936
+ readonly type?: "function" | "web" | "worker" | "cron" | undefined;
10937
+ readonly instances?: number | undefined;
10938
+ readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
10667
10939
  readonly cron_schedule?: string | undefined;
10668
10940
  readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
10669
10941
  readonly scale_to_zero?: boolean | undefined;
10670
10942
  readonly idle_timeout_seconds?: number | undefined;
10671
10943
  readonly min_instances?: number | undefined;
10672
10944
  }[] | undefined;
10673
- readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
10945
+ readonly domains?: readonly {
10946
+ readonly hostname: string;
10947
+ readonly service: string;
10948
+ readonly redirect_https?: boolean | undefined;
10949
+ readonly www_redirect?: "apex" | "www" | "none" | undefined;
10950
+ readonly aliases?: readonly string[] | undefined;
10951
+ }[] | undefined;
10952
+ };
10953
+ readonly preview?: {
10674
10954
  readonly env?: {
10675
10955
  readonly [x: string]: {
10676
10956
  readonly value: string;
@@ -10681,11 +10961,12 @@ export declare const endpoints: {
10681
10961
  readonly attr: string;
10682
10962
  };
10683
10963
  } | undefined;
10964
+ readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
10684
10965
  readonly build?: {
10685
- readonly context?: string | undefined;
10686
- readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
10687
10966
  readonly dockerfile?: string | undefined;
10688
- readonly buildpack?: "auto" | "static" | "ruby" | "node" | "python" | "dockerfile" | undefined;
10967
+ readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
10968
+ readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
10969
+ readonly context?: string | undefined;
10689
10970
  readonly docker_context?: string | undefined;
10690
10971
  readonly build_command?: string | undefined;
10691
10972
  readonly ignore?: readonly string[] | undefined;
@@ -10693,38 +10974,37 @@ export declare const endpoints: {
10693
10974
  readonly reproducible?: boolean | undefined;
10694
10975
  } | undefined;
10695
10976
  readonly deploy?: {
10696
- readonly strategy?: "immediate" | "rolling" | "blue-green" | undefined;
10977
+ readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
10697
10978
  readonly release_command?: string | undefined;
10698
10979
  readonly health_check_path?: string | undefined;
10699
10980
  readonly health_check_timeout?: number | undefined;
10700
10981
  readonly graceful_shutdown?: number | undefined;
10701
10982
  } | undefined;
10702
- };
10703
- readonly preview?: {
10704
- readonly domains?: readonly {
10705
- readonly service: string;
10706
- readonly hostname: string;
10707
- readonly redirect_https?: boolean | undefined;
10708
- readonly www_redirect?: "none" | "apex" | "www" | undefined;
10709
- readonly aliases?: readonly string[] | undefined;
10710
- }[] | undefined;
10711
10983
  readonly services?: readonly {
10712
- readonly name: string;
10713
- readonly type?: "function" | "cron" | "web" | "worker" | undefined;
10714
10984
  readonly port?: number | undefined;
10715
10985
  readonly env?: readonly string[] | undefined;
10986
+ readonly name: string;
10716
10987
  readonly resources?: readonly string[] | undefined;
10717
- readonly instances?: number | undefined;
10718
10988
  readonly max_instances?: number | undefined;
10719
10989
  readonly command?: string | undefined;
10720
- readonly instance_type?: "nano" | "micro" | "standard" | "large" | "xlarge" | "small" | undefined;
10990
+ readonly type?: "function" | "web" | "worker" | "cron" | undefined;
10991
+ readonly instances?: number | undefined;
10992
+ readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
10721
10993
  readonly cron_schedule?: string | undefined;
10722
10994
  readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
10723
10995
  readonly scale_to_zero?: boolean | undefined;
10724
10996
  readonly idle_timeout_seconds?: number | undefined;
10725
10997
  readonly min_instances?: number | undefined;
10726
10998
  }[] | undefined;
10727
- readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
10999
+ readonly domains?: readonly {
11000
+ readonly hostname: string;
11001
+ readonly service: string;
11002
+ readonly redirect_https?: boolean | undefined;
11003
+ readonly www_redirect?: "apex" | "www" | "none" | undefined;
11004
+ readonly aliases?: readonly string[] | undefined;
11005
+ }[] | undefined;
11006
+ };
11007
+ readonly development?: {
10728
11008
  readonly env?: {
10729
11009
  readonly [x: string]: {
10730
11010
  readonly value: string;
@@ -10735,11 +11015,12 @@ export declare const endpoints: {
10735
11015
  readonly attr: string;
10736
11016
  };
10737
11017
  } | undefined;
11018
+ readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
10738
11019
  readonly build?: {
10739
- readonly context?: string | undefined;
10740
- readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
10741
11020
  readonly dockerfile?: string | undefined;
10742
- readonly buildpack?: "auto" | "static" | "ruby" | "node" | "python" | "dockerfile" | undefined;
11021
+ readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
11022
+ readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
11023
+ readonly context?: string | undefined;
10743
11024
  readonly docker_context?: string | undefined;
10744
11025
  readonly build_command?: string | undefined;
10745
11026
  readonly ignore?: readonly string[] | undefined;
@@ -10747,39 +11028,38 @@ export declare const endpoints: {
10747
11028
  readonly reproducible?: boolean | undefined;
10748
11029
  } | undefined;
10749
11030
  readonly deploy?: {
10750
- readonly strategy?: "immediate" | "rolling" | "blue-green" | undefined;
11031
+ readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
10751
11032
  readonly release_command?: string | undefined;
10752
11033
  readonly health_check_path?: string | undefined;
10753
11034
  readonly health_check_timeout?: number | undefined;
10754
11035
  readonly graceful_shutdown?: number | undefined;
10755
11036
  } | undefined;
10756
- };
10757
- }, {
10758
- readonly development?: {
10759
- readonly domains?: readonly {
10760
- readonly service: string;
10761
- readonly hostname: string;
10762
- readonly redirect_https?: boolean | undefined;
10763
- readonly www_redirect?: "none" | "apex" | "www" | undefined;
10764
- readonly aliases?: readonly string[] | undefined;
10765
- }[] | undefined;
10766
11037
  readonly services?: readonly {
10767
- readonly name: string;
10768
- readonly type?: "function" | "cron" | "web" | "worker" | undefined;
10769
11038
  readonly port?: number | undefined;
10770
11039
  readonly env?: readonly string[] | undefined;
11040
+ readonly name: string;
10771
11041
  readonly resources?: readonly string[] | undefined;
10772
- readonly instances?: number | undefined;
10773
11042
  readonly max_instances?: number | undefined;
10774
11043
  readonly command?: string | undefined;
10775
- readonly instance_type?: "nano" | "micro" | "standard" | "large" | "xlarge" | "small" | undefined;
11044
+ readonly type?: "function" | "web" | "worker" | "cron" | undefined;
11045
+ readonly instances?: number | undefined;
11046
+ readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
10776
11047
  readonly cron_schedule?: string | undefined;
10777
11048
  readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
10778
11049
  readonly scale_to_zero?: boolean | undefined;
10779
11050
  readonly idle_timeout_seconds?: number | undefined;
10780
11051
  readonly min_instances?: number | undefined;
10781
11052
  }[] | undefined;
10782
- readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
11053
+ readonly domains?: readonly {
11054
+ readonly hostname: string;
11055
+ readonly service: string;
11056
+ readonly redirect_https?: boolean | undefined;
11057
+ readonly www_redirect?: "apex" | "www" | "none" | undefined;
11058
+ readonly aliases?: readonly string[] | undefined;
11059
+ }[] | undefined;
11060
+ };
11061
+ }, {
11062
+ readonly production?: {
10783
11063
  readonly env?: {
10784
11064
  readonly [x: string]: {
10785
11065
  readonly value: string;
@@ -10790,11 +11070,12 @@ export declare const endpoints: {
10790
11070
  readonly attr: string;
10791
11071
  };
10792
11072
  } | undefined;
11073
+ readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
10793
11074
  readonly build?: {
10794
- readonly context?: string | undefined;
10795
- readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
10796
11075
  readonly dockerfile?: string | undefined;
10797
- readonly buildpack?: "auto" | "static" | "ruby" | "node" | "python" | "dockerfile" | undefined;
11076
+ readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
11077
+ readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
11078
+ readonly context?: string | undefined;
10798
11079
  readonly docker_context?: string | undefined;
10799
11080
  readonly build_command?: string | undefined;
10800
11081
  readonly ignore?: readonly string[] | undefined;
@@ -10802,38 +11083,37 @@ export declare const endpoints: {
10802
11083
  readonly reproducible?: boolean | undefined;
10803
11084
  } | undefined;
10804
11085
  readonly deploy?: {
10805
- readonly strategy?: "immediate" | "rolling" | "blue-green" | undefined;
11086
+ readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
10806
11087
  readonly release_command?: string | undefined;
10807
11088
  readonly health_check_path?: string | undefined;
10808
11089
  readonly health_check_timeout?: number | undefined;
10809
11090
  readonly graceful_shutdown?: number | undefined;
10810
11091
  } | undefined;
10811
- };
10812
- readonly staging?: {
10813
- readonly domains?: readonly {
10814
- readonly service: string;
10815
- readonly hostname: string;
10816
- readonly redirect_https?: boolean | undefined;
10817
- readonly www_redirect?: "none" | "apex" | "www" | undefined;
10818
- readonly aliases?: readonly string[] | undefined;
10819
- }[] | undefined;
10820
11092
  readonly services?: readonly {
10821
11093
  readonly name: string;
10822
- readonly type?: "function" | "cron" | "web" | "worker" | undefined;
10823
11094
  readonly port?: number | undefined;
10824
11095
  readonly env?: readonly string[] | undefined;
10825
11096
  readonly resources?: readonly string[] | undefined;
10826
- readonly instances?: number | undefined;
10827
11097
  readonly max_instances?: number | undefined;
10828
11098
  readonly command?: string | undefined;
10829
- readonly instance_type?: "nano" | "micro" | "standard" | "large" | "xlarge" | "small" | undefined;
11099
+ readonly type?: "function" | "web" | "worker" | "cron" | undefined;
11100
+ readonly instances?: number | undefined;
11101
+ readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
10830
11102
  readonly cron_schedule?: string | undefined;
10831
11103
  readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
10832
11104
  readonly scale_to_zero?: boolean | undefined;
10833
11105
  readonly idle_timeout_seconds?: number | undefined;
10834
11106
  readonly min_instances?: number | undefined;
10835
11107
  }[] | undefined;
10836
- readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
11108
+ readonly domains?: readonly {
11109
+ readonly hostname: string;
11110
+ readonly service: string;
11111
+ readonly redirect_https?: boolean | undefined;
11112
+ readonly www_redirect?: "apex" | "www" | "none" | undefined;
11113
+ readonly aliases?: readonly string[] | undefined;
11114
+ }[] | undefined;
11115
+ };
11116
+ readonly staging?: {
10837
11117
  readonly env?: {
10838
11118
  readonly [x: string]: {
10839
11119
  readonly value: string;
@@ -10844,11 +11124,12 @@ export declare const endpoints: {
10844
11124
  readonly attr: string;
10845
11125
  };
10846
11126
  } | undefined;
11127
+ readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
10847
11128
  readonly build?: {
10848
- readonly context?: string | undefined;
10849
- readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
10850
11129
  readonly dockerfile?: string | undefined;
10851
- readonly buildpack?: "auto" | "static" | "ruby" | "node" | "python" | "dockerfile" | undefined;
11130
+ readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
11131
+ readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
11132
+ readonly context?: string | undefined;
10852
11133
  readonly docker_context?: string | undefined;
10853
11134
  readonly build_command?: string | undefined;
10854
11135
  readonly ignore?: readonly string[] | undefined;
@@ -10856,38 +11137,37 @@ export declare const endpoints: {
10856
11137
  readonly reproducible?: boolean | undefined;
10857
11138
  } | undefined;
10858
11139
  readonly deploy?: {
10859
- readonly strategy?: "immediate" | "rolling" | "blue-green" | undefined;
11140
+ readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
10860
11141
  readonly release_command?: string | undefined;
10861
11142
  readonly health_check_path?: string | undefined;
10862
11143
  readonly health_check_timeout?: number | undefined;
10863
11144
  readonly graceful_shutdown?: number | undefined;
10864
11145
  } | undefined;
10865
- };
10866
- readonly production?: {
10867
- readonly domains?: readonly {
10868
- readonly service: string;
10869
- readonly hostname: string;
10870
- readonly redirect_https?: boolean | undefined;
10871
- readonly www_redirect?: "none" | "apex" | "www" | undefined;
10872
- readonly aliases?: readonly string[] | undefined;
10873
- }[] | undefined;
10874
11146
  readonly services?: readonly {
10875
11147
  readonly name: string;
10876
- readonly type?: "function" | "cron" | "web" | "worker" | undefined;
10877
11148
  readonly port?: number | undefined;
10878
11149
  readonly env?: readonly string[] | undefined;
10879
11150
  readonly resources?: readonly string[] | undefined;
10880
- readonly instances?: number | undefined;
10881
11151
  readonly max_instances?: number | undefined;
10882
11152
  readonly command?: string | undefined;
10883
- readonly instance_type?: "nano" | "micro" | "standard" | "large" | "xlarge" | "small" | undefined;
11153
+ readonly type?: "function" | "web" | "worker" | "cron" | undefined;
11154
+ readonly instances?: number | undefined;
11155
+ readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
10884
11156
  readonly cron_schedule?: string | undefined;
10885
11157
  readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
10886
11158
  readonly scale_to_zero?: boolean | undefined;
10887
11159
  readonly idle_timeout_seconds?: number | undefined;
10888
11160
  readonly min_instances?: number | undefined;
10889
11161
  }[] | undefined;
10890
- readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
11162
+ readonly domains?: readonly {
11163
+ readonly hostname: string;
11164
+ readonly service: string;
11165
+ readonly redirect_https?: boolean | undefined;
11166
+ readonly www_redirect?: "apex" | "www" | "none" | undefined;
11167
+ readonly aliases?: readonly string[] | undefined;
11168
+ }[] | undefined;
11169
+ };
11170
+ readonly preview?: {
10891
11171
  readonly env?: {
10892
11172
  readonly [x: string]: {
10893
11173
  readonly value: string;
@@ -10898,11 +11178,12 @@ export declare const endpoints: {
10898
11178
  readonly attr: string;
10899
11179
  };
10900
11180
  } | undefined;
11181
+ readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
10901
11182
  readonly build?: {
10902
- readonly context?: string | undefined;
10903
- readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
10904
11183
  readonly dockerfile?: string | undefined;
10905
- readonly buildpack?: "auto" | "static" | "ruby" | "node" | "python" | "dockerfile" | undefined;
11184
+ readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
11185
+ readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
11186
+ readonly context?: string | undefined;
10906
11187
  readonly docker_context?: string | undefined;
10907
11188
  readonly build_command?: string | undefined;
10908
11189
  readonly ignore?: readonly string[] | undefined;
@@ -10910,38 +11191,37 @@ export declare const endpoints: {
10910
11191
  readonly reproducible?: boolean | undefined;
10911
11192
  } | undefined;
10912
11193
  readonly deploy?: {
10913
- readonly strategy?: "immediate" | "rolling" | "blue-green" | undefined;
11194
+ readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
10914
11195
  readonly release_command?: string | undefined;
10915
11196
  readonly health_check_path?: string | undefined;
10916
11197
  readonly health_check_timeout?: number | undefined;
10917
11198
  readonly graceful_shutdown?: number | undefined;
10918
11199
  } | undefined;
10919
- };
10920
- readonly preview?: {
10921
- readonly domains?: readonly {
10922
- readonly service: string;
10923
- readonly hostname: string;
10924
- readonly redirect_https?: boolean | undefined;
10925
- readonly www_redirect?: "none" | "apex" | "www" | undefined;
10926
- readonly aliases?: readonly string[] | undefined;
10927
- }[] | undefined;
10928
11200
  readonly services?: readonly {
10929
11201
  readonly name: string;
10930
- readonly type?: "function" | "cron" | "web" | "worker" | undefined;
10931
11202
  readonly port?: number | undefined;
10932
11203
  readonly env?: readonly string[] | undefined;
10933
11204
  readonly resources?: readonly string[] | undefined;
10934
- readonly instances?: number | undefined;
10935
11205
  readonly max_instances?: number | undefined;
10936
11206
  readonly command?: string | undefined;
10937
- readonly instance_type?: "nano" | "micro" | "standard" | "large" | "xlarge" | "small" | undefined;
11207
+ readonly type?: "function" | "web" | "worker" | "cron" | undefined;
11208
+ readonly instances?: number | undefined;
11209
+ readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
10938
11210
  readonly cron_schedule?: string | undefined;
10939
11211
  readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
10940
11212
  readonly scale_to_zero?: boolean | undefined;
10941
11213
  readonly idle_timeout_seconds?: number | undefined;
10942
11214
  readonly min_instances?: number | undefined;
10943
11215
  }[] | undefined;
10944
- readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
11216
+ readonly domains?: readonly {
11217
+ readonly hostname: string;
11218
+ readonly service: string;
11219
+ readonly redirect_https?: boolean | undefined;
11220
+ readonly www_redirect?: "apex" | "www" | "none" | undefined;
11221
+ readonly aliases?: readonly string[] | undefined;
11222
+ }[] | undefined;
11223
+ };
11224
+ readonly development?: {
10945
11225
  readonly env?: {
10946
11226
  readonly [x: string]: {
10947
11227
  readonly value: string;
@@ -10952,11 +11232,12 @@ export declare const endpoints: {
10952
11232
  readonly attr: string;
10953
11233
  };
10954
11234
  } | undefined;
11235
+ readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
10955
11236
  readonly build?: {
10956
- readonly context?: string | undefined;
10957
- readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
10958
11237
  readonly dockerfile?: string | undefined;
10959
- readonly buildpack?: "auto" | "static" | "ruby" | "node" | "python" | "dockerfile" | undefined;
11238
+ readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
11239
+ readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
11240
+ readonly context?: string | undefined;
10960
11241
  readonly docker_context?: string | undefined;
10961
11242
  readonly build_command?: string | undefined;
10962
11243
  readonly ignore?: readonly string[] | undefined;
@@ -10964,12 +11245,35 @@ export declare const endpoints: {
10964
11245
  readonly reproducible?: boolean | undefined;
10965
11246
  } | undefined;
10966
11247
  readonly deploy?: {
10967
- readonly strategy?: "immediate" | "rolling" | "blue-green" | undefined;
11248
+ readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
10968
11249
  readonly release_command?: string | undefined;
10969
11250
  readonly health_check_path?: string | undefined;
10970
11251
  readonly health_check_timeout?: number | undefined;
10971
11252
  readonly graceful_shutdown?: number | undefined;
10972
11253
  } | undefined;
11254
+ readonly services?: readonly {
11255
+ readonly name: string;
11256
+ readonly port?: number | undefined;
11257
+ readonly env?: readonly string[] | undefined;
11258
+ readonly resources?: readonly string[] | undefined;
11259
+ readonly max_instances?: number | undefined;
11260
+ readonly command?: string | undefined;
11261
+ readonly type?: "function" | "web" | "worker" | "cron" | undefined;
11262
+ readonly instances?: number | undefined;
11263
+ readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
11264
+ readonly cron_schedule?: string | undefined;
11265
+ readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
11266
+ readonly scale_to_zero?: boolean | undefined;
11267
+ readonly idle_timeout_seconds?: number | undefined;
11268
+ readonly min_instances?: number | undefined;
11269
+ }[] | undefined;
11270
+ readonly domains?: readonly {
11271
+ readonly hostname: string;
11272
+ readonly service: string;
11273
+ readonly redirect_https?: boolean | undefined;
11274
+ readonly www_redirect?: "apex" | "www" | "none" | undefined;
11275
+ readonly aliases?: readonly string[] | undefined;
11276
+ }[] | undefined;
10973
11277
  };
10974
11278
  }, never>>;
10975
11279
  resources: import("effect/Schema").optional<import("effect/Schema").Struct<{