@sylphx/contract 0.6.0 → 0.8.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 (57) hide show
  1. package/CHANGELOG.md +17 -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 +10 -1
  18. package/dist/endpoints/domains.d.ts.map +1 -1
  19. package/dist/endpoints/domains.js +6 -3
  20. package/dist/endpoints/email-admin.d.ts +1 -0
  21. package/dist/endpoints/email-admin.d.ts.map +1 -1
  22. package/dist/endpoints/flags-admin.d.ts +8 -0
  23. package/dist/endpoints/flags-admin.d.ts.map +1 -1
  24. package/dist/endpoints/notifications-admin.d.ts +4 -4
  25. package/dist/endpoints/project-manifest.d.ts +308 -306
  26. package/dist/endpoints/project-manifest.d.ts.map +1 -1
  27. package/dist/hono-app.d.ts +1 -1
  28. package/dist/index.d.ts +637 -330
  29. package/dist/index.d.ts.map +1 -1
  30. package/dist/index.js +3 -0
  31. package/dist/schemas/admin-config.d.ts +4 -0
  32. package/dist/schemas/admin-config.d.ts.map +1 -1
  33. package/dist/schemas/admin-config.js +3 -0
  34. package/dist/schemas/ai-admin.d.ts +137 -8
  35. package/dist/schemas/ai-admin.d.ts.map +1 -1
  36. package/dist/schemas/ai-admin.js +119 -13
  37. package/dist/schemas/analytics-admin.d.ts +164 -7
  38. package/dist/schemas/analytics-admin.d.ts.map +1 -1
  39. package/dist/schemas/analytics-admin.js +104 -3
  40. package/dist/schemas/auth.d.ts +2 -1
  41. package/dist/schemas/auth.d.ts.map +1 -1
  42. package/dist/schemas/auth.js +2 -1
  43. package/dist/schemas/domain.d.ts +4 -1
  44. package/dist/schemas/domain.d.ts.map +1 -1
  45. package/dist/schemas/domain.js +3 -1
  46. package/dist/schemas/email-admin.d.ts +1 -0
  47. package/dist/schemas/email-admin.d.ts.map +1 -1
  48. package/dist/schemas/email-admin.js +1 -0
  49. package/dist/schemas/flags-admin.d.ts +13 -0
  50. package/dist/schemas/flags-admin.d.ts.map +1 -1
  51. package/dist/schemas/flags-admin.js +6 -0
  52. package/dist/schemas/notifications-admin.d.ts +6 -6
  53. package/dist/schemas/notifications-admin.js +1 -1
  54. package/dist/schemas/project-manifest.d.ts +316 -306
  55. package/dist/schemas/project-manifest.d.ts.map +1 -1
  56. package/dist/schemas/project-manifest.js +5 -0
  57. 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>;
@@ -5454,12 +5741,14 @@ export declare const endpoints: {
5454
5741
  projectId: typeof import("effect/Schema").String;
5455
5742
  }>, import("effect/Schema").Struct<{
5456
5743
  envType: import("effect/Schema").optional<typeof import("effect/Schema").String>;
5744
+ envId: import("effect/Schema").optional<typeof import("effect/Schema").String>;
5457
5745
  }>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Array$<import("effect/Schema").Struct<{
5458
5746
  id: import("effect/Schema").brand<import("effect/Schema").filter<typeof import("effect/Schema").String>, "DomainId">;
5459
5747
  apexDomain: typeof import("effect/Schema").String;
5460
5748
  hostnames: import("effect/Schema").Array$<import("effect/Schema").Struct<{
5461
5749
  id: import("effect/Schema").brand<import("effect/Schema").filter<typeof import("effect/Schema").String>, "HostnameId">;
5462
5750
  domainId: import("effect/Schema").brand<import("effect/Schema").filter<typeof import("effect/Schema").String>, "DomainId">;
5751
+ serviceId: typeof import("effect/Schema").String;
5463
5752
  hostname: typeof import("effect/Schema").String;
5464
5753
  isPrimary: typeof import("effect/Schema").Boolean;
5465
5754
  redirectTo: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
@@ -5504,12 +5793,14 @@ export declare const endpoints: {
5504
5793
  }>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
5505
5794
  apexDomain: typeof import("effect/Schema").String;
5506
5795
  envType: import("effect/Schema").optional<typeof import("effect/Schema").String>;
5796
+ envId: import("effect/Schema").optional<typeof import("effect/Schema").String>;
5507
5797
  }>, import("effect/Schema").Struct<{
5508
5798
  id: import("effect/Schema").brand<import("effect/Schema").filter<typeof import("effect/Schema").String>, "DomainId">;
5509
5799
  apexDomain: typeof import("effect/Schema").String;
5510
5800
  hostnames: import("effect/Schema").Array$<import("effect/Schema").Struct<{
5511
5801
  id: import("effect/Schema").brand<import("effect/Schema").filter<typeof import("effect/Schema").String>, "HostnameId">;
5512
5802
  domainId: import("effect/Schema").brand<import("effect/Schema").filter<typeof import("effect/Schema").String>, "DomainId">;
5803
+ serviceId: typeof import("effect/Schema").String;
5513
5804
  hostname: typeof import("effect/Schema").String;
5514
5805
  isPrimary: typeof import("effect/Schema").Boolean;
5515
5806
  redirectTo: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
@@ -5560,6 +5851,7 @@ export declare const endpoints: {
5560
5851
  hostnames: import("effect/Schema").Array$<import("effect/Schema").Struct<{
5561
5852
  id: import("effect/Schema").brand<import("effect/Schema").filter<typeof import("effect/Schema").String>, "HostnameId">;
5562
5853
  domainId: import("effect/Schema").brand<import("effect/Schema").filter<typeof import("effect/Schema").String>, "DomainId">;
5854
+ serviceId: typeof import("effect/Schema").String;
5563
5855
  hostname: typeof import("effect/Schema").String;
5564
5856
  isPrimary: typeof import("effect/Schema").Boolean;
5565
5857
  redirectTo: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
@@ -5611,14 +5903,16 @@ export declare const endpoints: {
5611
5903
  domainId: typeof import("effect/Schema").String;
5612
5904
  }>, import("effect/Schema").Struct<{
5613
5905
  envType: import("effect/Schema").optional<typeof import("effect/Schema").String>;
5906
+ envId: import("effect/Schema").optional<typeof import("effect/Schema").String>;
5614
5907
  }>, import("effect/Schema").Struct<{
5615
5908
  hostname: typeof import("effect/Schema").String;
5616
- serviceId: import("effect/Schema").optional<typeof import("effect/Schema").String>;
5909
+ serviceId: import("effect/Schema").filter<typeof import("effect/Schema").String>;
5617
5910
  isPrimary: import("effect/Schema").optional<typeof import("effect/Schema").Boolean>;
5618
5911
  redirectTo: import("effect/Schema").optional<typeof import("effect/Schema").String>;
5619
5912
  }>, import("effect/Schema").Struct<{
5620
5913
  id: import("effect/Schema").brand<import("effect/Schema").filter<typeof import("effect/Schema").String>, "HostnameId">;
5621
5914
  domainId: import("effect/Schema").brand<import("effect/Schema").filter<typeof import("effect/Schema").String>, "DomainId">;
5915
+ serviceId: typeof import("effect/Schema").String;
5622
5916
  hostname: typeof import("effect/Schema").String;
5623
5917
  isPrimary: typeof import("effect/Schema").Boolean;
5624
5918
  redirectTo: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
@@ -5645,6 +5939,7 @@ export declare const endpoints: {
5645
5939
  }>, import("effect/Schema").Struct<{
5646
5940
  id: import("effect/Schema").brand<import("effect/Schema").filter<typeof import("effect/Schema").String>, "HostnameId">;
5647
5941
  domainId: import("effect/Schema").brand<import("effect/Schema").filter<typeof import("effect/Schema").String>, "DomainId">;
5942
+ serviceId: typeof import("effect/Schema").String;
5648
5943
  hostname: typeof import("effect/Schema").String;
5649
5944
  isPrimary: typeof import("effect/Schema").Boolean;
5650
5945
  redirectTo: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
@@ -5674,6 +5969,7 @@ export declare const endpoints: {
5674
5969
  }>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
5675
5970
  id: import("effect/Schema").brand<import("effect/Schema").filter<typeof import("effect/Schema").String>, "HostnameId">;
5676
5971
  domainId: import("effect/Schema").brand<import("effect/Schema").filter<typeof import("effect/Schema").String>, "DomainId">;
5972
+ serviceId: typeof import("effect/Schema").String;
5677
5973
  hostname: typeof import("effect/Schema").String;
5678
5974
  isPrimary: typeof import("effect/Schema").Boolean;
5679
5975
  redirectTo: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
@@ -6153,6 +6449,7 @@ export declare const endpoints: {
6153
6449
  id: typeof import("effect/Schema").String;
6154
6450
  }>, import("effect/Schema").Struct<{
6155
6451
  cursor: import("effect/Schema").optional<typeof import("effect/Schema").String>;
6452
+ email: import("effect/Schema").optional<typeof import("effect/Schema").String>;
6156
6453
  limit: import("effect/Schema").optional<typeof import("effect/Schema").String>;
6157
6454
  reason: import("effect/Schema").optional<import("effect/Schema").Literal<["hard_bounce", "complaint", "manual"]>>;
6158
6455
  }>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
@@ -7424,6 +7721,10 @@ export declare const endpoints: {
7424
7721
  }>, import("effect/Schema").Struct<{
7425
7722
  success: typeof import("effect/Schema").Boolean;
7426
7723
  updated: typeof import("effect/Schema").Number;
7724
+ errors: import("effect/Schema").optional<import("effect/Schema").Array$<import("effect/Schema").Struct<{
7725
+ id: typeof import("effect/Schema").String;
7726
+ error: typeof import("effect/Schema").String;
7727
+ }>>>;
7427
7728
  }>, undefined>;
7428
7729
  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
7730
  projectId: typeof import("effect/Schema").String;
@@ -7431,6 +7732,10 @@ export declare const endpoints: {
7431
7732
  }>, import("effect/Schema").Struct<{
7432
7733
  success: typeof import("effect/Schema").Boolean;
7433
7734
  deleted: typeof import("effect/Schema").Number;
7735
+ errors: import("effect/Schema").optional<import("effect/Schema").Array$<import("effect/Schema").Struct<{
7736
+ id: typeof import("effect/Schema").String;
7737
+ error: typeof import("effect/Schema").String;
7738
+ }>>>;
7434
7739
  }>, undefined>;
7435
7740
  readonly getServiceData: import("./endpoint.js").Endpoint<"GET", "/flags/projects/:id", import("effect/Schema").Struct<{
7436
7741
  id: typeof import("effect/Schema").String;
@@ -8602,7 +8907,7 @@ export declare const endpoints: {
8602
8907
  }>, undefined>;
8603
8908
  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
8909
  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"]>>;
8910
+ priority: import("effect/Schema").optional<import("effect/Schema").Literal<["low", "normal", "high", "urgent"]>>;
8606
8911
  title: typeof import("effect/Schema").String;
8607
8912
  body: typeof import("effect/Schema").String;
8608
8913
  icon: import("effect/Schema").optional<typeof import("effect/Schema").String>;
@@ -8623,7 +8928,7 @@ export declare const endpoints: {
8623
8928
  }>, undefined>;
8624
8929
  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
8930
  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"]>>;
8931
+ priority: import("effect/Schema").optional<import("effect/Schema").Literal<["low", "normal", "high", "urgent"]>>;
8627
8932
  title: typeof import("effect/Schema").String;
8628
8933
  body: typeof import("effect/Schema").String;
8629
8934
  icon: import("effect/Schema").optional<typeof import("effect/Schema").String>;
@@ -8645,7 +8950,7 @@ export declare const endpoints: {
8645
8950
  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
8951
  projectId: typeof import("effect/Schema").String;
8647
8952
  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"]>>;
8953
+ priority: import("effect/Schema").optional<import("effect/Schema").Literal<["low", "normal", "high", "urgent"]>>;
8649
8954
  title: typeof import("effect/Schema").String;
8650
8955
  body: typeof import("effect/Schema").String;
8651
8956
  icon: import("effect/Schema").optional<typeof import("effect/Schema").String>;
@@ -8670,7 +8975,7 @@ export declare const endpoints: {
8670
8975
  messages: import("effect/Schema").Array$<import("effect/Schema").Struct<{
8671
8976
  id: typeof import("effect/Schema").String;
8672
8977
  type: import("effect/Schema").Literal<["info", "success", "warning", "error", "promotion"]>;
8673
- priority: import("effect/Schema").Literal<["low", "medium", "high", "urgent"]>;
8978
+ priority: import("effect/Schema").Literal<["low", "normal", "high", "urgent"]>;
8674
8979
  title: typeof import("effect/Schema").String;
8675
8980
  body: typeof import("effect/Schema").String;
8676
8981
  icon: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
@@ -9938,6 +10243,7 @@ export declare const endpoints: {
9938
10243
  command: import("effect/Schema").optional<typeof import("effect/Schema").String>;
9939
10244
  }>>;
9940
10245
  command: import("effect/Schema").optional<typeof import("effect/Schema").String>;
10246
+ release_command: import("effect/Schema").optional<typeof import("effect/Schema").String>;
9941
10247
  port: import("effect/Schema").optional<import("effect/Schema").filter<import("effect/Schema").filter<typeof import("effect/Schema").Number>>>;
9942
10248
  instances: import("effect/Schema").optional<import("effect/Schema").filter<import("effect/Schema").filter<typeof import("effect/Schema").Number>>>;
9943
10249
  instance_type: import("effect/Schema").optional<import("effect/Schema").Literal<["nano", "micro", "small", "standard", "large", "xlarge"]>>;
@@ -9977,31 +10283,7 @@ export declare const endpoints: {
9977
10283
  aliases: import("effect/Schema").optional<import("effect/Schema").Array$<typeof import("effect/Schema").String>>;
9978
10284
  }>>>;
9979
10285
  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;
10286
+ readonly production?: {
10005
10287
  readonly env?: {
10006
10288
  readonly [x: string]: {
10007
10289
  readonly value: string;
@@ -10012,11 +10294,12 @@ export declare const endpoints: {
10012
10294
  readonly attr: string;
10013
10295
  };
10014
10296
  } | undefined;
10297
+ readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
10015
10298
  readonly build?: {
10016
- readonly context?: string | undefined;
10017
- readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
10018
10299
  readonly dockerfile?: string | undefined;
10019
- readonly buildpack?: "auto" | "static" | "ruby" | "node" | "python" | "dockerfile" | undefined;
10300
+ readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
10301
+ readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
10302
+ readonly context?: string | undefined;
10020
10303
  readonly docker_context?: string | undefined;
10021
10304
  readonly build_command?: string | undefined;
10022
10305
  readonly ignore?: readonly string[] | undefined;
@@ -10024,38 +10307,37 @@ export declare const endpoints: {
10024
10307
  readonly reproducible?: boolean | undefined;
10025
10308
  } | undefined;
10026
10309
  readonly deploy?: {
10027
- readonly strategy?: "immediate" | "rolling" | "blue-green" | undefined;
10310
+ readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
10028
10311
  readonly release_command?: string | undefined;
10029
10312
  readonly health_check_path?: string | undefined;
10030
10313
  readonly health_check_timeout?: number | undefined;
10031
10314
  readonly graceful_shutdown?: number | undefined;
10032
10315
  } | 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
10316
  readonly services?: readonly {
10043
- readonly name: string;
10044
- readonly type?: "function" | "cron" | "web" | "worker" | undefined;
10045
10317
  readonly port?: number | undefined;
10046
10318
  readonly env?: readonly string[] | undefined;
10319
+ readonly name: string;
10047
10320
  readonly resources?: readonly string[] | undefined;
10048
- readonly instances?: number | undefined;
10049
10321
  readonly max_instances?: number | undefined;
10050
10322
  readonly command?: string | undefined;
10051
- readonly instance_type?: "nano" | "micro" | "standard" | "large" | "xlarge" | "small" | undefined;
10323
+ readonly type?: "function" | "web" | "worker" | "cron" | undefined;
10324
+ readonly instances?: number | undefined;
10325
+ readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
10052
10326
  readonly cron_schedule?: string | undefined;
10053
10327
  readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
10054
10328
  readonly scale_to_zero?: boolean | undefined;
10055
10329
  readonly idle_timeout_seconds?: number | undefined;
10056
10330
  readonly min_instances?: number | undefined;
10057
10331
  }[] | undefined;
10058
- readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
10332
+ readonly domains?: readonly {
10333
+ readonly hostname: string;
10334
+ readonly service: string;
10335
+ readonly redirect_https?: boolean | undefined;
10336
+ readonly www_redirect?: "apex" | "www" | "none" | undefined;
10337
+ readonly aliases?: readonly string[] | undefined;
10338
+ }[] | undefined;
10339
+ };
10340
+ readonly staging?: {
10059
10341
  readonly env?: {
10060
10342
  readonly [x: string]: {
10061
10343
  readonly value: string;
@@ -10066,11 +10348,12 @@ export declare const endpoints: {
10066
10348
  readonly attr: string;
10067
10349
  };
10068
10350
  } | undefined;
10351
+ readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
10069
10352
  readonly build?: {
10070
- readonly context?: string | undefined;
10071
- readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
10072
10353
  readonly dockerfile?: string | undefined;
10073
- readonly buildpack?: "auto" | "static" | "ruby" | "node" | "python" | "dockerfile" | undefined;
10354
+ readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
10355
+ readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
10356
+ readonly context?: string | undefined;
10074
10357
  readonly docker_context?: string | undefined;
10075
10358
  readonly build_command?: string | undefined;
10076
10359
  readonly ignore?: readonly string[] | undefined;
@@ -10078,38 +10361,37 @@ export declare const endpoints: {
10078
10361
  readonly reproducible?: boolean | undefined;
10079
10362
  } | undefined;
10080
10363
  readonly deploy?: {
10081
- readonly strategy?: "immediate" | "rolling" | "blue-green" | undefined;
10364
+ readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
10082
10365
  readonly release_command?: string | undefined;
10083
10366
  readonly health_check_path?: string | undefined;
10084
10367
  readonly health_check_timeout?: number | undefined;
10085
10368
  readonly graceful_shutdown?: number | undefined;
10086
10369
  } | 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
10370
  readonly services?: readonly {
10097
- readonly name: string;
10098
- readonly type?: "function" | "cron" | "web" | "worker" | undefined;
10099
10371
  readonly port?: number | undefined;
10100
10372
  readonly env?: readonly string[] | undefined;
10373
+ readonly name: string;
10101
10374
  readonly resources?: readonly string[] | undefined;
10102
- readonly instances?: number | undefined;
10103
10375
  readonly max_instances?: number | undefined;
10104
10376
  readonly command?: string | undefined;
10105
- readonly instance_type?: "nano" | "micro" | "standard" | "large" | "xlarge" | "small" | undefined;
10377
+ readonly type?: "function" | "web" | "worker" | "cron" | undefined;
10378
+ readonly instances?: number | undefined;
10379
+ readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
10106
10380
  readonly cron_schedule?: string | undefined;
10107
10381
  readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
10108
10382
  readonly scale_to_zero?: boolean | undefined;
10109
10383
  readonly idle_timeout_seconds?: number | undefined;
10110
10384
  readonly min_instances?: number | undefined;
10111
10385
  }[] | undefined;
10112
- readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
10386
+ readonly domains?: readonly {
10387
+ readonly hostname: string;
10388
+ readonly service: string;
10389
+ readonly redirect_https?: boolean | undefined;
10390
+ readonly www_redirect?: "apex" | "www" | "none" | undefined;
10391
+ readonly aliases?: readonly string[] | undefined;
10392
+ }[] | undefined;
10393
+ };
10394
+ readonly preview?: {
10113
10395
  readonly env?: {
10114
10396
  readonly [x: string]: {
10115
10397
  readonly value: string;
@@ -10120,11 +10402,12 @@ export declare const endpoints: {
10120
10402
  readonly attr: string;
10121
10403
  };
10122
10404
  } | undefined;
10405
+ readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
10123
10406
  readonly build?: {
10124
- readonly context?: string | undefined;
10125
- readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
10126
10407
  readonly dockerfile?: string | undefined;
10127
- readonly buildpack?: "auto" | "static" | "ruby" | "node" | "python" | "dockerfile" | undefined;
10408
+ readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
10409
+ readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
10410
+ readonly context?: string | undefined;
10128
10411
  readonly docker_context?: string | undefined;
10129
10412
  readonly build_command?: string | undefined;
10130
10413
  readonly ignore?: readonly string[] | undefined;
@@ -10132,38 +10415,37 @@ export declare const endpoints: {
10132
10415
  readonly reproducible?: boolean | undefined;
10133
10416
  } | undefined;
10134
10417
  readonly deploy?: {
10135
- readonly strategy?: "immediate" | "rolling" | "blue-green" | undefined;
10418
+ readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
10136
10419
  readonly release_command?: string | undefined;
10137
10420
  readonly health_check_path?: string | undefined;
10138
10421
  readonly health_check_timeout?: number | undefined;
10139
10422
  readonly graceful_shutdown?: number | undefined;
10140
10423
  } | 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
10424
  readonly services?: readonly {
10151
- readonly name: string;
10152
- readonly type?: "function" | "cron" | "web" | "worker" | undefined;
10153
10425
  readonly port?: number | undefined;
10154
10426
  readonly env?: readonly string[] | undefined;
10427
+ readonly name: string;
10155
10428
  readonly resources?: readonly string[] | undefined;
10156
- readonly instances?: number | undefined;
10157
10429
  readonly max_instances?: number | undefined;
10158
10430
  readonly command?: string | undefined;
10159
- readonly instance_type?: "nano" | "micro" | "standard" | "large" | "xlarge" | "small" | undefined;
10431
+ readonly type?: "function" | "web" | "worker" | "cron" | undefined;
10432
+ readonly instances?: number | undefined;
10433
+ readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
10160
10434
  readonly cron_schedule?: string | undefined;
10161
10435
  readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
10162
10436
  readonly scale_to_zero?: boolean | undefined;
10163
10437
  readonly idle_timeout_seconds?: number | undefined;
10164
10438
  readonly min_instances?: number | undefined;
10165
10439
  }[] | undefined;
10166
- readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
10440
+ readonly domains?: readonly {
10441
+ readonly hostname: string;
10442
+ readonly service: string;
10443
+ readonly redirect_https?: boolean | undefined;
10444
+ readonly www_redirect?: "apex" | "www" | "none" | undefined;
10445
+ readonly aliases?: readonly string[] | undefined;
10446
+ }[] | undefined;
10447
+ };
10448
+ readonly development?: {
10167
10449
  readonly env?: {
10168
10450
  readonly [x: string]: {
10169
10451
  readonly value: string;
@@ -10174,11 +10456,12 @@ export declare const endpoints: {
10174
10456
  readonly attr: string;
10175
10457
  };
10176
10458
  } | undefined;
10459
+ readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
10177
10460
  readonly build?: {
10178
- readonly context?: string | undefined;
10179
- readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
10180
10461
  readonly dockerfile?: string | undefined;
10181
- readonly buildpack?: "auto" | "static" | "ruby" | "node" | "python" | "dockerfile" | undefined;
10462
+ readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
10463
+ readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
10464
+ readonly context?: string | undefined;
10182
10465
  readonly docker_context?: string | undefined;
10183
10466
  readonly build_command?: string | undefined;
10184
10467
  readonly ignore?: readonly string[] | undefined;
@@ -10186,39 +10469,38 @@ export declare const endpoints: {
10186
10469
  readonly reproducible?: boolean | undefined;
10187
10470
  } | undefined;
10188
10471
  readonly deploy?: {
10189
- readonly strategy?: "immediate" | "rolling" | "blue-green" | undefined;
10472
+ readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
10190
10473
  readonly release_command?: string | undefined;
10191
10474
  readonly health_check_path?: string | undefined;
10192
10475
  readonly health_check_timeout?: number | undefined;
10193
10476
  readonly graceful_shutdown?: number | undefined;
10194
10477
  } | 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
10478
  readonly services?: readonly {
10206
- readonly name: string;
10207
- readonly type?: "function" | "cron" | "web" | "worker" | undefined;
10208
10479
  readonly port?: number | undefined;
10209
10480
  readonly env?: readonly string[] | undefined;
10481
+ readonly name: string;
10210
10482
  readonly resources?: readonly string[] | undefined;
10211
- readonly instances?: number | undefined;
10212
10483
  readonly max_instances?: number | undefined;
10213
10484
  readonly command?: string | undefined;
10214
- readonly instance_type?: "nano" | "micro" | "standard" | "large" | "xlarge" | "small" | undefined;
10485
+ readonly type?: "function" | "web" | "worker" | "cron" | undefined;
10486
+ readonly instances?: number | undefined;
10487
+ readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
10215
10488
  readonly cron_schedule?: string | undefined;
10216
10489
  readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
10217
10490
  readonly scale_to_zero?: boolean | undefined;
10218
10491
  readonly idle_timeout_seconds?: number | undefined;
10219
10492
  readonly min_instances?: number | undefined;
10220
10493
  }[] | undefined;
10221
- readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
10494
+ readonly domains?: readonly {
10495
+ readonly hostname: string;
10496
+ readonly service: string;
10497
+ readonly redirect_https?: boolean | undefined;
10498
+ readonly www_redirect?: "apex" | "www" | "none" | undefined;
10499
+ readonly aliases?: readonly string[] | undefined;
10500
+ }[] | undefined;
10501
+ };
10502
+ }, {
10503
+ readonly production?: {
10222
10504
  readonly env?: {
10223
10505
  readonly [x: string]: {
10224
10506
  readonly value: string;
@@ -10229,11 +10511,12 @@ export declare const endpoints: {
10229
10511
  readonly attr: string;
10230
10512
  };
10231
10513
  } | undefined;
10514
+ readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
10232
10515
  readonly build?: {
10233
- readonly context?: string | undefined;
10234
- readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
10235
10516
  readonly dockerfile?: string | undefined;
10236
- readonly buildpack?: "auto" | "static" | "ruby" | "node" | "python" | "dockerfile" | undefined;
10517
+ readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
10518
+ readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
10519
+ readonly context?: string | undefined;
10237
10520
  readonly docker_context?: string | undefined;
10238
10521
  readonly build_command?: string | undefined;
10239
10522
  readonly ignore?: readonly string[] | undefined;
@@ -10241,38 +10524,37 @@ export declare const endpoints: {
10241
10524
  readonly reproducible?: boolean | undefined;
10242
10525
  } | undefined;
10243
10526
  readonly deploy?: {
10244
- readonly strategy?: "immediate" | "rolling" | "blue-green" | undefined;
10527
+ readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
10245
10528
  readonly release_command?: string | undefined;
10246
10529
  readonly health_check_path?: string | undefined;
10247
10530
  readonly health_check_timeout?: number | undefined;
10248
10531
  readonly graceful_shutdown?: number | undefined;
10249
10532
  } | 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
10533
  readonly services?: readonly {
10260
10534
  readonly name: string;
10261
- readonly type?: "function" | "cron" | "web" | "worker" | undefined;
10262
10535
  readonly port?: number | undefined;
10263
10536
  readonly env?: readonly string[] | undefined;
10264
10537
  readonly resources?: readonly string[] | undefined;
10265
- readonly instances?: number | undefined;
10266
10538
  readonly max_instances?: number | undefined;
10267
10539
  readonly command?: string | undefined;
10268
- readonly instance_type?: "nano" | "micro" | "standard" | "large" | "xlarge" | "small" | undefined;
10540
+ readonly type?: "function" | "web" | "worker" | "cron" | undefined;
10541
+ readonly instances?: number | undefined;
10542
+ readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
10269
10543
  readonly cron_schedule?: string | undefined;
10270
10544
  readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
10271
10545
  readonly scale_to_zero?: boolean | undefined;
10272
10546
  readonly idle_timeout_seconds?: number | undefined;
10273
10547
  readonly min_instances?: number | undefined;
10274
10548
  }[] | undefined;
10275
- readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
10549
+ readonly domains?: readonly {
10550
+ readonly hostname: string;
10551
+ readonly service: string;
10552
+ readonly redirect_https?: boolean | undefined;
10553
+ readonly www_redirect?: "apex" | "www" | "none" | undefined;
10554
+ readonly aliases?: readonly string[] | undefined;
10555
+ }[] | undefined;
10556
+ };
10557
+ readonly staging?: {
10276
10558
  readonly env?: {
10277
10559
  readonly [x: string]: {
10278
10560
  readonly value: string;
@@ -10283,11 +10565,12 @@ export declare const endpoints: {
10283
10565
  readonly attr: string;
10284
10566
  };
10285
10567
  } | undefined;
10568
+ readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
10286
10569
  readonly build?: {
10287
- readonly context?: string | undefined;
10288
- readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
10289
10570
  readonly dockerfile?: string | undefined;
10290
- readonly buildpack?: "auto" | "static" | "ruby" | "node" | "python" | "dockerfile" | undefined;
10571
+ readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
10572
+ readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
10573
+ readonly context?: string | undefined;
10291
10574
  readonly docker_context?: string | undefined;
10292
10575
  readonly build_command?: string | undefined;
10293
10576
  readonly ignore?: readonly string[] | undefined;
@@ -10295,38 +10578,37 @@ export declare const endpoints: {
10295
10578
  readonly reproducible?: boolean | undefined;
10296
10579
  } | undefined;
10297
10580
  readonly deploy?: {
10298
- readonly strategy?: "immediate" | "rolling" | "blue-green" | undefined;
10581
+ readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
10299
10582
  readonly release_command?: string | undefined;
10300
10583
  readonly health_check_path?: string | undefined;
10301
10584
  readonly health_check_timeout?: number | undefined;
10302
10585
  readonly graceful_shutdown?: number | undefined;
10303
10586
  } | 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
10587
  readonly services?: readonly {
10314
10588
  readonly name: string;
10315
- readonly type?: "function" | "cron" | "web" | "worker" | undefined;
10316
10589
  readonly port?: number | undefined;
10317
10590
  readonly env?: readonly string[] | undefined;
10318
10591
  readonly resources?: readonly string[] | undefined;
10319
- readonly instances?: number | undefined;
10320
10592
  readonly max_instances?: number | undefined;
10321
10593
  readonly command?: string | undefined;
10322
- readonly instance_type?: "nano" | "micro" | "standard" | "large" | "xlarge" | "small" | undefined;
10594
+ readonly type?: "function" | "web" | "worker" | "cron" | undefined;
10595
+ readonly instances?: number | undefined;
10596
+ readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
10323
10597
  readonly cron_schedule?: string | undefined;
10324
10598
  readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
10325
10599
  readonly scale_to_zero?: boolean | undefined;
10326
10600
  readonly idle_timeout_seconds?: number | undefined;
10327
10601
  readonly min_instances?: number | undefined;
10328
10602
  }[] | undefined;
10329
- readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
10603
+ readonly domains?: readonly {
10604
+ readonly hostname: string;
10605
+ readonly service: string;
10606
+ readonly redirect_https?: boolean | undefined;
10607
+ readonly www_redirect?: "apex" | "www" | "none" | undefined;
10608
+ readonly aliases?: readonly string[] | undefined;
10609
+ }[] | undefined;
10610
+ };
10611
+ readonly preview?: {
10330
10612
  readonly env?: {
10331
10613
  readonly [x: string]: {
10332
10614
  readonly value: string;
@@ -10337,11 +10619,12 @@ export declare const endpoints: {
10337
10619
  readonly attr: string;
10338
10620
  };
10339
10621
  } | undefined;
10622
+ readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
10340
10623
  readonly build?: {
10341
- readonly context?: string | undefined;
10342
- readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
10343
10624
  readonly dockerfile?: string | undefined;
10344
- readonly buildpack?: "auto" | "static" | "ruby" | "node" | "python" | "dockerfile" | undefined;
10625
+ readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
10626
+ readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
10627
+ readonly context?: string | undefined;
10345
10628
  readonly docker_context?: string | undefined;
10346
10629
  readonly build_command?: string | undefined;
10347
10630
  readonly ignore?: readonly string[] | undefined;
@@ -10349,38 +10632,37 @@ export declare const endpoints: {
10349
10632
  readonly reproducible?: boolean | undefined;
10350
10633
  } | undefined;
10351
10634
  readonly deploy?: {
10352
- readonly strategy?: "immediate" | "rolling" | "blue-green" | undefined;
10635
+ readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
10353
10636
  readonly release_command?: string | undefined;
10354
10637
  readonly health_check_path?: string | undefined;
10355
10638
  readonly health_check_timeout?: number | undefined;
10356
10639
  readonly graceful_shutdown?: number | undefined;
10357
10640
  } | 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
10641
  readonly services?: readonly {
10368
10642
  readonly name: string;
10369
- readonly type?: "function" | "cron" | "web" | "worker" | undefined;
10370
10643
  readonly port?: number | undefined;
10371
10644
  readonly env?: readonly string[] | undefined;
10372
10645
  readonly resources?: readonly string[] | undefined;
10373
- readonly instances?: number | undefined;
10374
10646
  readonly max_instances?: number | undefined;
10375
10647
  readonly command?: string | undefined;
10376
- readonly instance_type?: "nano" | "micro" | "standard" | "large" | "xlarge" | "small" | undefined;
10648
+ readonly type?: "function" | "web" | "worker" | "cron" | undefined;
10649
+ readonly instances?: number | undefined;
10650
+ readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
10377
10651
  readonly cron_schedule?: string | undefined;
10378
10652
  readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
10379
10653
  readonly scale_to_zero?: boolean | undefined;
10380
10654
  readonly idle_timeout_seconds?: number | undefined;
10381
10655
  readonly min_instances?: number | undefined;
10382
10656
  }[] | undefined;
10383
- readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
10657
+ readonly domains?: readonly {
10658
+ readonly hostname: string;
10659
+ readonly service: string;
10660
+ readonly redirect_https?: boolean | undefined;
10661
+ readonly www_redirect?: "apex" | "www" | "none" | undefined;
10662
+ readonly aliases?: readonly string[] | undefined;
10663
+ }[] | undefined;
10664
+ };
10665
+ readonly development?: {
10384
10666
  readonly env?: {
10385
10667
  readonly [x: string]: {
10386
10668
  readonly value: string;
@@ -10391,11 +10673,12 @@ export declare const endpoints: {
10391
10673
  readonly attr: string;
10392
10674
  };
10393
10675
  } | undefined;
10676
+ readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
10394
10677
  readonly build?: {
10395
- readonly context?: string | undefined;
10396
- readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
10397
10678
  readonly dockerfile?: string | undefined;
10398
- readonly buildpack?: "auto" | "static" | "ruby" | "node" | "python" | "dockerfile" | undefined;
10679
+ readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
10680
+ readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
10681
+ readonly context?: string | undefined;
10399
10682
  readonly docker_context?: string | undefined;
10400
10683
  readonly build_command?: string | undefined;
10401
10684
  readonly ignore?: readonly string[] | undefined;
@@ -10403,12 +10686,35 @@ export declare const endpoints: {
10403
10686
  readonly reproducible?: boolean | undefined;
10404
10687
  } | undefined;
10405
10688
  readonly deploy?: {
10406
- readonly strategy?: "immediate" | "rolling" | "blue-green" | undefined;
10689
+ readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
10407
10690
  readonly release_command?: string | undefined;
10408
10691
  readonly health_check_path?: string | undefined;
10409
10692
  readonly health_check_timeout?: number | undefined;
10410
10693
  readonly graceful_shutdown?: number | undefined;
10411
10694
  } | undefined;
10695
+ readonly services?: readonly {
10696
+ readonly name: string;
10697
+ readonly port?: number | undefined;
10698
+ readonly env?: readonly string[] | undefined;
10699
+ readonly resources?: readonly string[] | undefined;
10700
+ readonly max_instances?: number | undefined;
10701
+ readonly command?: string | undefined;
10702
+ readonly type?: "function" | "web" | "worker" | "cron" | undefined;
10703
+ readonly instances?: number | undefined;
10704
+ readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
10705
+ readonly cron_schedule?: string | undefined;
10706
+ readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
10707
+ readonly scale_to_zero?: boolean | undefined;
10708
+ readonly idle_timeout_seconds?: number | undefined;
10709
+ readonly min_instances?: number | undefined;
10710
+ }[] | undefined;
10711
+ readonly domains?: readonly {
10712
+ readonly hostname: string;
10713
+ readonly service: string;
10714
+ readonly redirect_https?: boolean | undefined;
10715
+ readonly www_redirect?: "apex" | "www" | "none" | undefined;
10716
+ readonly aliases?: readonly string[] | undefined;
10717
+ }[] | undefined;
10412
10718
  };
10413
10719
  }, never>>;
10414
10720
  resources: import("effect/Schema").optional<import("effect/Schema").Struct<{
@@ -10499,6 +10805,7 @@ export declare const endpoints: {
10499
10805
  command: import("effect/Schema").optional<typeof import("effect/Schema").String>;
10500
10806
  }>>;
10501
10807
  command: import("effect/Schema").optional<typeof import("effect/Schema").String>;
10808
+ release_command: import("effect/Schema").optional<typeof import("effect/Schema").String>;
10502
10809
  port: import("effect/Schema").optional<import("effect/Schema").filter<import("effect/Schema").filter<typeof import("effect/Schema").Number>>>;
10503
10810
  instances: import("effect/Schema").optional<import("effect/Schema").filter<import("effect/Schema").filter<typeof import("effect/Schema").Number>>>;
10504
10811
  instance_type: import("effect/Schema").optional<import("effect/Schema").Literal<["nano", "micro", "small", "standard", "large", "xlarge"]>>;
@@ -10538,31 +10845,7 @@ export declare const endpoints: {
10538
10845
  aliases: import("effect/Schema").optional<import("effect/Schema").Array$<typeof import("effect/Schema").String>>;
10539
10846
  }>>>;
10540
10847
  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;
10848
+ readonly production?: {
10566
10849
  readonly env?: {
10567
10850
  readonly [x: string]: {
10568
10851
  readonly value: string;
@@ -10573,11 +10856,12 @@ export declare const endpoints: {
10573
10856
  readonly attr: string;
10574
10857
  };
10575
10858
  } | undefined;
10859
+ readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
10576
10860
  readonly build?: {
10577
- readonly context?: string | undefined;
10578
- readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
10579
10861
  readonly dockerfile?: string | undefined;
10580
- readonly buildpack?: "auto" | "static" | "ruby" | "node" | "python" | "dockerfile" | undefined;
10862
+ readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
10863
+ readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
10864
+ readonly context?: string | undefined;
10581
10865
  readonly docker_context?: string | undefined;
10582
10866
  readonly build_command?: string | undefined;
10583
10867
  readonly ignore?: readonly string[] | undefined;
@@ -10585,38 +10869,37 @@ export declare const endpoints: {
10585
10869
  readonly reproducible?: boolean | undefined;
10586
10870
  } | undefined;
10587
10871
  readonly deploy?: {
10588
- readonly strategy?: "immediate" | "rolling" | "blue-green" | undefined;
10872
+ readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
10589
10873
  readonly release_command?: string | undefined;
10590
10874
  readonly health_check_path?: string | undefined;
10591
10875
  readonly health_check_timeout?: number | undefined;
10592
10876
  readonly graceful_shutdown?: number | undefined;
10593
10877
  } | 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
10878
  readonly services?: readonly {
10604
- readonly name: string;
10605
- readonly type?: "function" | "cron" | "web" | "worker" | undefined;
10606
10879
  readonly port?: number | undefined;
10607
10880
  readonly env?: readonly string[] | undefined;
10881
+ readonly name: string;
10608
10882
  readonly resources?: readonly string[] | undefined;
10609
- readonly instances?: number | undefined;
10610
10883
  readonly max_instances?: number | undefined;
10611
10884
  readonly command?: string | undefined;
10612
- readonly instance_type?: "nano" | "micro" | "standard" | "large" | "xlarge" | "small" | undefined;
10885
+ readonly type?: "function" | "web" | "worker" | "cron" | undefined;
10886
+ readonly instances?: number | undefined;
10887
+ readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
10613
10888
  readonly cron_schedule?: string | undefined;
10614
10889
  readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
10615
10890
  readonly scale_to_zero?: boolean | undefined;
10616
10891
  readonly idle_timeout_seconds?: number | undefined;
10617
10892
  readonly min_instances?: number | undefined;
10618
10893
  }[] | undefined;
10619
- readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
10894
+ readonly domains?: readonly {
10895
+ readonly hostname: string;
10896
+ readonly service: string;
10897
+ readonly redirect_https?: boolean | undefined;
10898
+ readonly www_redirect?: "apex" | "www" | "none" | undefined;
10899
+ readonly aliases?: readonly string[] | undefined;
10900
+ }[] | undefined;
10901
+ };
10902
+ readonly staging?: {
10620
10903
  readonly env?: {
10621
10904
  readonly [x: string]: {
10622
10905
  readonly value: string;
@@ -10627,11 +10910,12 @@ export declare const endpoints: {
10627
10910
  readonly attr: string;
10628
10911
  };
10629
10912
  } | undefined;
10913
+ readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
10630
10914
  readonly build?: {
10631
- readonly context?: string | undefined;
10632
- readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
10633
10915
  readonly dockerfile?: string | undefined;
10634
- readonly buildpack?: "auto" | "static" | "ruby" | "node" | "python" | "dockerfile" | undefined;
10916
+ readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
10917
+ readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
10918
+ readonly context?: string | undefined;
10635
10919
  readonly docker_context?: string | undefined;
10636
10920
  readonly build_command?: string | undefined;
10637
10921
  readonly ignore?: readonly string[] | undefined;
@@ -10639,38 +10923,37 @@ export declare const endpoints: {
10639
10923
  readonly reproducible?: boolean | undefined;
10640
10924
  } | undefined;
10641
10925
  readonly deploy?: {
10642
- readonly strategy?: "immediate" | "rolling" | "blue-green" | undefined;
10926
+ readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
10643
10927
  readonly release_command?: string | undefined;
10644
10928
  readonly health_check_path?: string | undefined;
10645
10929
  readonly health_check_timeout?: number | undefined;
10646
10930
  readonly graceful_shutdown?: number | undefined;
10647
10931
  } | 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
10932
  readonly services?: readonly {
10658
- readonly name: string;
10659
- readonly type?: "function" | "cron" | "web" | "worker" | undefined;
10660
10933
  readonly port?: number | undefined;
10661
10934
  readonly env?: readonly string[] | undefined;
10935
+ readonly name: string;
10662
10936
  readonly resources?: readonly string[] | undefined;
10663
- readonly instances?: number | undefined;
10664
10937
  readonly max_instances?: number | undefined;
10665
10938
  readonly command?: string | undefined;
10666
- readonly instance_type?: "nano" | "micro" | "standard" | "large" | "xlarge" | "small" | undefined;
10939
+ readonly type?: "function" | "web" | "worker" | "cron" | undefined;
10940
+ readonly instances?: number | undefined;
10941
+ readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
10667
10942
  readonly cron_schedule?: string | undefined;
10668
10943
  readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
10669
10944
  readonly scale_to_zero?: boolean | undefined;
10670
10945
  readonly idle_timeout_seconds?: number | undefined;
10671
10946
  readonly min_instances?: number | undefined;
10672
10947
  }[] | undefined;
10673
- readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
10948
+ readonly domains?: readonly {
10949
+ readonly hostname: string;
10950
+ readonly service: string;
10951
+ readonly redirect_https?: boolean | undefined;
10952
+ readonly www_redirect?: "apex" | "www" | "none" | undefined;
10953
+ readonly aliases?: readonly string[] | undefined;
10954
+ }[] | undefined;
10955
+ };
10956
+ readonly preview?: {
10674
10957
  readonly env?: {
10675
10958
  readonly [x: string]: {
10676
10959
  readonly value: string;
@@ -10681,11 +10964,12 @@ export declare const endpoints: {
10681
10964
  readonly attr: string;
10682
10965
  };
10683
10966
  } | undefined;
10967
+ readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
10684
10968
  readonly build?: {
10685
- readonly context?: string | undefined;
10686
- readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
10687
10969
  readonly dockerfile?: string | undefined;
10688
- readonly buildpack?: "auto" | "static" | "ruby" | "node" | "python" | "dockerfile" | undefined;
10970
+ readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
10971
+ readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
10972
+ readonly context?: string | undefined;
10689
10973
  readonly docker_context?: string | undefined;
10690
10974
  readonly build_command?: string | undefined;
10691
10975
  readonly ignore?: readonly string[] | undefined;
@@ -10693,38 +10977,37 @@ export declare const endpoints: {
10693
10977
  readonly reproducible?: boolean | undefined;
10694
10978
  } | undefined;
10695
10979
  readonly deploy?: {
10696
- readonly strategy?: "immediate" | "rolling" | "blue-green" | undefined;
10980
+ readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
10697
10981
  readonly release_command?: string | undefined;
10698
10982
  readonly health_check_path?: string | undefined;
10699
10983
  readonly health_check_timeout?: number | undefined;
10700
10984
  readonly graceful_shutdown?: number | undefined;
10701
10985
  } | 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
10986
  readonly services?: readonly {
10712
- readonly name: string;
10713
- readonly type?: "function" | "cron" | "web" | "worker" | undefined;
10714
10987
  readonly port?: number | undefined;
10715
10988
  readonly env?: readonly string[] | undefined;
10989
+ readonly name: string;
10716
10990
  readonly resources?: readonly string[] | undefined;
10717
- readonly instances?: number | undefined;
10718
10991
  readonly max_instances?: number | undefined;
10719
10992
  readonly command?: string | undefined;
10720
- readonly instance_type?: "nano" | "micro" | "standard" | "large" | "xlarge" | "small" | undefined;
10993
+ readonly type?: "function" | "web" | "worker" | "cron" | undefined;
10994
+ readonly instances?: number | undefined;
10995
+ readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
10721
10996
  readonly cron_schedule?: string | undefined;
10722
10997
  readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
10723
10998
  readonly scale_to_zero?: boolean | undefined;
10724
10999
  readonly idle_timeout_seconds?: number | undefined;
10725
11000
  readonly min_instances?: number | undefined;
10726
11001
  }[] | undefined;
10727
- readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
11002
+ readonly domains?: readonly {
11003
+ readonly hostname: string;
11004
+ readonly service: string;
11005
+ readonly redirect_https?: boolean | undefined;
11006
+ readonly www_redirect?: "apex" | "www" | "none" | undefined;
11007
+ readonly aliases?: readonly string[] | undefined;
11008
+ }[] | undefined;
11009
+ };
11010
+ readonly development?: {
10728
11011
  readonly env?: {
10729
11012
  readonly [x: string]: {
10730
11013
  readonly value: string;
@@ -10735,11 +11018,12 @@ export declare const endpoints: {
10735
11018
  readonly attr: string;
10736
11019
  };
10737
11020
  } | undefined;
11021
+ readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
10738
11022
  readonly build?: {
10739
- readonly context?: string | undefined;
10740
- readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
10741
11023
  readonly dockerfile?: string | undefined;
10742
- readonly buildpack?: "auto" | "static" | "ruby" | "node" | "python" | "dockerfile" | undefined;
11024
+ readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
11025
+ readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
11026
+ readonly context?: string | undefined;
10743
11027
  readonly docker_context?: string | undefined;
10744
11028
  readonly build_command?: string | undefined;
10745
11029
  readonly ignore?: readonly string[] | undefined;
@@ -10747,39 +11031,38 @@ export declare const endpoints: {
10747
11031
  readonly reproducible?: boolean | undefined;
10748
11032
  } | undefined;
10749
11033
  readonly deploy?: {
10750
- readonly strategy?: "immediate" | "rolling" | "blue-green" | undefined;
11034
+ readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
10751
11035
  readonly release_command?: string | undefined;
10752
11036
  readonly health_check_path?: string | undefined;
10753
11037
  readonly health_check_timeout?: number | undefined;
10754
11038
  readonly graceful_shutdown?: number | undefined;
10755
11039
  } | 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
11040
  readonly services?: readonly {
10767
- readonly name: string;
10768
- readonly type?: "function" | "cron" | "web" | "worker" | undefined;
10769
11041
  readonly port?: number | undefined;
10770
11042
  readonly env?: readonly string[] | undefined;
11043
+ readonly name: string;
10771
11044
  readonly resources?: readonly string[] | undefined;
10772
- readonly instances?: number | undefined;
10773
11045
  readonly max_instances?: number | undefined;
10774
11046
  readonly command?: string | undefined;
10775
- readonly instance_type?: "nano" | "micro" | "standard" | "large" | "xlarge" | "small" | undefined;
11047
+ readonly type?: "function" | "web" | "worker" | "cron" | undefined;
11048
+ readonly instances?: number | undefined;
11049
+ readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
10776
11050
  readonly cron_schedule?: string | undefined;
10777
11051
  readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
10778
11052
  readonly scale_to_zero?: boolean | undefined;
10779
11053
  readonly idle_timeout_seconds?: number | undefined;
10780
11054
  readonly min_instances?: number | undefined;
10781
11055
  }[] | undefined;
10782
- readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
11056
+ readonly domains?: readonly {
11057
+ readonly hostname: string;
11058
+ readonly service: string;
11059
+ readonly redirect_https?: boolean | undefined;
11060
+ readonly www_redirect?: "apex" | "www" | "none" | undefined;
11061
+ readonly aliases?: readonly string[] | undefined;
11062
+ }[] | undefined;
11063
+ };
11064
+ }, {
11065
+ readonly production?: {
10783
11066
  readonly env?: {
10784
11067
  readonly [x: string]: {
10785
11068
  readonly value: string;
@@ -10790,11 +11073,12 @@ export declare const endpoints: {
10790
11073
  readonly attr: string;
10791
11074
  };
10792
11075
  } | undefined;
11076
+ readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
10793
11077
  readonly build?: {
10794
- readonly context?: string | undefined;
10795
- readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
10796
11078
  readonly dockerfile?: string | undefined;
10797
- readonly buildpack?: "auto" | "static" | "ruby" | "node" | "python" | "dockerfile" | undefined;
11079
+ readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
11080
+ readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
11081
+ readonly context?: string | undefined;
10798
11082
  readonly docker_context?: string | undefined;
10799
11083
  readonly build_command?: string | undefined;
10800
11084
  readonly ignore?: readonly string[] | undefined;
@@ -10802,38 +11086,37 @@ export declare const endpoints: {
10802
11086
  readonly reproducible?: boolean | undefined;
10803
11087
  } | undefined;
10804
11088
  readonly deploy?: {
10805
- readonly strategy?: "immediate" | "rolling" | "blue-green" | undefined;
11089
+ readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
10806
11090
  readonly release_command?: string | undefined;
10807
11091
  readonly health_check_path?: string | undefined;
10808
11092
  readonly health_check_timeout?: number | undefined;
10809
11093
  readonly graceful_shutdown?: number | undefined;
10810
11094
  } | 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
11095
  readonly services?: readonly {
10821
11096
  readonly name: string;
10822
- readonly type?: "function" | "cron" | "web" | "worker" | undefined;
10823
11097
  readonly port?: number | undefined;
10824
11098
  readonly env?: readonly string[] | undefined;
10825
11099
  readonly resources?: readonly string[] | undefined;
10826
- readonly instances?: number | undefined;
10827
11100
  readonly max_instances?: number | undefined;
10828
11101
  readonly command?: string | undefined;
10829
- readonly instance_type?: "nano" | "micro" | "standard" | "large" | "xlarge" | "small" | undefined;
11102
+ readonly type?: "function" | "web" | "worker" | "cron" | undefined;
11103
+ readonly instances?: number | undefined;
11104
+ readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
10830
11105
  readonly cron_schedule?: string | undefined;
10831
11106
  readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
10832
11107
  readonly scale_to_zero?: boolean | undefined;
10833
11108
  readonly idle_timeout_seconds?: number | undefined;
10834
11109
  readonly min_instances?: number | undefined;
10835
11110
  }[] | undefined;
10836
- readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
11111
+ readonly domains?: readonly {
11112
+ readonly hostname: string;
11113
+ readonly service: string;
11114
+ readonly redirect_https?: boolean | undefined;
11115
+ readonly www_redirect?: "apex" | "www" | "none" | undefined;
11116
+ readonly aliases?: readonly string[] | undefined;
11117
+ }[] | undefined;
11118
+ };
11119
+ readonly staging?: {
10837
11120
  readonly env?: {
10838
11121
  readonly [x: string]: {
10839
11122
  readonly value: string;
@@ -10844,11 +11127,12 @@ export declare const endpoints: {
10844
11127
  readonly attr: string;
10845
11128
  };
10846
11129
  } | undefined;
11130
+ readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
10847
11131
  readonly build?: {
10848
- readonly context?: string | undefined;
10849
- readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
10850
11132
  readonly dockerfile?: string | undefined;
10851
- readonly buildpack?: "auto" | "static" | "ruby" | "node" | "python" | "dockerfile" | undefined;
11133
+ readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
11134
+ readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
11135
+ readonly context?: string | undefined;
10852
11136
  readonly docker_context?: string | undefined;
10853
11137
  readonly build_command?: string | undefined;
10854
11138
  readonly ignore?: readonly string[] | undefined;
@@ -10856,38 +11140,37 @@ export declare const endpoints: {
10856
11140
  readonly reproducible?: boolean | undefined;
10857
11141
  } | undefined;
10858
11142
  readonly deploy?: {
10859
- readonly strategy?: "immediate" | "rolling" | "blue-green" | undefined;
11143
+ readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
10860
11144
  readonly release_command?: string | undefined;
10861
11145
  readonly health_check_path?: string | undefined;
10862
11146
  readonly health_check_timeout?: number | undefined;
10863
11147
  readonly graceful_shutdown?: number | undefined;
10864
11148
  } | 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
11149
  readonly services?: readonly {
10875
11150
  readonly name: string;
10876
- readonly type?: "function" | "cron" | "web" | "worker" | undefined;
10877
11151
  readonly port?: number | undefined;
10878
11152
  readonly env?: readonly string[] | undefined;
10879
11153
  readonly resources?: readonly string[] | undefined;
10880
- readonly instances?: number | undefined;
10881
11154
  readonly max_instances?: number | undefined;
10882
11155
  readonly command?: string | undefined;
10883
- readonly instance_type?: "nano" | "micro" | "standard" | "large" | "xlarge" | "small" | undefined;
11156
+ readonly type?: "function" | "web" | "worker" | "cron" | undefined;
11157
+ readonly instances?: number | undefined;
11158
+ readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
10884
11159
  readonly cron_schedule?: string | undefined;
10885
11160
  readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
10886
11161
  readonly scale_to_zero?: boolean | undefined;
10887
11162
  readonly idle_timeout_seconds?: number | undefined;
10888
11163
  readonly min_instances?: number | undefined;
10889
11164
  }[] | undefined;
10890
- readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
11165
+ readonly domains?: readonly {
11166
+ readonly hostname: string;
11167
+ readonly service: string;
11168
+ readonly redirect_https?: boolean | undefined;
11169
+ readonly www_redirect?: "apex" | "www" | "none" | undefined;
11170
+ readonly aliases?: readonly string[] | undefined;
11171
+ }[] | undefined;
11172
+ };
11173
+ readonly preview?: {
10891
11174
  readonly env?: {
10892
11175
  readonly [x: string]: {
10893
11176
  readonly value: string;
@@ -10898,11 +11181,12 @@ export declare const endpoints: {
10898
11181
  readonly attr: string;
10899
11182
  };
10900
11183
  } | undefined;
11184
+ readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
10901
11185
  readonly build?: {
10902
- readonly context?: string | undefined;
10903
- readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
10904
11186
  readonly dockerfile?: string | undefined;
10905
- readonly buildpack?: "auto" | "static" | "ruby" | "node" | "python" | "dockerfile" | undefined;
11187
+ readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
11188
+ readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
11189
+ readonly context?: string | undefined;
10906
11190
  readonly docker_context?: string | undefined;
10907
11191
  readonly build_command?: string | undefined;
10908
11192
  readonly ignore?: readonly string[] | undefined;
@@ -10910,38 +11194,37 @@ export declare const endpoints: {
10910
11194
  readonly reproducible?: boolean | undefined;
10911
11195
  } | undefined;
10912
11196
  readonly deploy?: {
10913
- readonly strategy?: "immediate" | "rolling" | "blue-green" | undefined;
11197
+ readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
10914
11198
  readonly release_command?: string | undefined;
10915
11199
  readonly health_check_path?: string | undefined;
10916
11200
  readonly health_check_timeout?: number | undefined;
10917
11201
  readonly graceful_shutdown?: number | undefined;
10918
11202
  } | 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
11203
  readonly services?: readonly {
10929
11204
  readonly name: string;
10930
- readonly type?: "function" | "cron" | "web" | "worker" | undefined;
10931
11205
  readonly port?: number | undefined;
10932
11206
  readonly env?: readonly string[] | undefined;
10933
11207
  readonly resources?: readonly string[] | undefined;
10934
- readonly instances?: number | undefined;
10935
11208
  readonly max_instances?: number | undefined;
10936
11209
  readonly command?: string | undefined;
10937
- readonly instance_type?: "nano" | "micro" | "standard" | "large" | "xlarge" | "small" | undefined;
11210
+ readonly type?: "function" | "web" | "worker" | "cron" | undefined;
11211
+ readonly instances?: number | undefined;
11212
+ readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
10938
11213
  readonly cron_schedule?: string | undefined;
10939
11214
  readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
10940
11215
  readonly scale_to_zero?: boolean | undefined;
10941
11216
  readonly idle_timeout_seconds?: number | undefined;
10942
11217
  readonly min_instances?: number | undefined;
10943
11218
  }[] | undefined;
10944
- readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
11219
+ readonly domains?: readonly {
11220
+ readonly hostname: string;
11221
+ readonly service: string;
11222
+ readonly redirect_https?: boolean | undefined;
11223
+ readonly www_redirect?: "apex" | "www" | "none" | undefined;
11224
+ readonly aliases?: readonly string[] | undefined;
11225
+ }[] | undefined;
11226
+ };
11227
+ readonly development?: {
10945
11228
  readonly env?: {
10946
11229
  readonly [x: string]: {
10947
11230
  readonly value: string;
@@ -10952,11 +11235,12 @@ export declare const endpoints: {
10952
11235
  readonly attr: string;
10953
11236
  };
10954
11237
  } | undefined;
11238
+ readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
10955
11239
  readonly build?: {
10956
- readonly context?: string | undefined;
10957
- readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
10958
11240
  readonly dockerfile?: string | undefined;
10959
- readonly buildpack?: "auto" | "static" | "ruby" | "node" | "python" | "dockerfile" | undefined;
11241
+ readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
11242
+ readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
11243
+ readonly context?: string | undefined;
10960
11244
  readonly docker_context?: string | undefined;
10961
11245
  readonly build_command?: string | undefined;
10962
11246
  readonly ignore?: readonly string[] | undefined;
@@ -10964,12 +11248,35 @@ export declare const endpoints: {
10964
11248
  readonly reproducible?: boolean | undefined;
10965
11249
  } | undefined;
10966
11250
  readonly deploy?: {
10967
- readonly strategy?: "immediate" | "rolling" | "blue-green" | undefined;
11251
+ readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
10968
11252
  readonly release_command?: string | undefined;
10969
11253
  readonly health_check_path?: string | undefined;
10970
11254
  readonly health_check_timeout?: number | undefined;
10971
11255
  readonly graceful_shutdown?: number | undefined;
10972
11256
  } | undefined;
11257
+ readonly services?: readonly {
11258
+ readonly name: string;
11259
+ readonly port?: number | undefined;
11260
+ readonly env?: readonly string[] | undefined;
11261
+ readonly resources?: readonly string[] | undefined;
11262
+ readonly max_instances?: number | undefined;
11263
+ readonly command?: string | undefined;
11264
+ readonly type?: "function" | "web" | "worker" | "cron" | undefined;
11265
+ readonly instances?: number | undefined;
11266
+ readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
11267
+ readonly cron_schedule?: string | undefined;
11268
+ readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
11269
+ readonly scale_to_zero?: boolean | undefined;
11270
+ readonly idle_timeout_seconds?: number | undefined;
11271
+ readonly min_instances?: number | undefined;
11272
+ }[] | undefined;
11273
+ readonly domains?: readonly {
11274
+ readonly hostname: string;
11275
+ readonly service: string;
11276
+ readonly redirect_https?: boolean | undefined;
11277
+ readonly www_redirect?: "apex" | "www" | "none" | undefined;
11278
+ readonly aliases?: readonly string[] | undefined;
11279
+ }[] | undefined;
10973
11280
  };
10974
11281
  }, never>>;
10975
11282
  resources: import("effect/Schema").optional<import("effect/Schema").Struct<{