@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.
- package/CHANGELOG.md +17 -1
- package/README.md +1 -1
- package/dist/compute.d.ts +33 -0
- package/dist/compute.d.ts.map +1 -0
- package/dist/compute.js +119 -0
- package/dist/endpoints/admin-config.d.ts +3 -0
- package/dist/endpoints/admin-config.d.ts.map +1 -1
- package/dist/endpoints/admin-config.js +9 -1
- package/dist/endpoints/ai-admin.d.ts +134 -5
- package/dist/endpoints/ai-admin.d.ts.map +1 -1
- package/dist/endpoints/analytics-admin.d.ts +141 -6
- package/dist/endpoints/analytics-admin.d.ts.map +1 -1
- package/dist/endpoints/analytics-admin.js +7 -7
- package/dist/endpoints/auth.d.ts +26 -8
- package/dist/endpoints/auth.d.ts.map +1 -1
- package/dist/endpoints/auth.js +5 -5
- package/dist/endpoints/domains.d.ts +10 -1
- package/dist/endpoints/domains.d.ts.map +1 -1
- package/dist/endpoints/domains.js +6 -3
- package/dist/endpoints/email-admin.d.ts +1 -0
- package/dist/endpoints/email-admin.d.ts.map +1 -1
- package/dist/endpoints/flags-admin.d.ts +8 -0
- package/dist/endpoints/flags-admin.d.ts.map +1 -1
- package/dist/endpoints/notifications-admin.d.ts +4 -4
- package/dist/endpoints/project-manifest.d.ts +308 -306
- package/dist/endpoints/project-manifest.d.ts.map +1 -1
- package/dist/hono-app.d.ts +1 -1
- package/dist/index.d.ts +637 -330
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -0
- package/dist/schemas/admin-config.d.ts +4 -0
- package/dist/schemas/admin-config.d.ts.map +1 -1
- package/dist/schemas/admin-config.js +3 -0
- package/dist/schemas/ai-admin.d.ts +137 -8
- package/dist/schemas/ai-admin.d.ts.map +1 -1
- package/dist/schemas/ai-admin.js +119 -13
- package/dist/schemas/analytics-admin.d.ts +164 -7
- package/dist/schemas/analytics-admin.d.ts.map +1 -1
- package/dist/schemas/analytics-admin.js +104 -3
- package/dist/schemas/auth.d.ts +2 -1
- package/dist/schemas/auth.d.ts.map +1 -1
- package/dist/schemas/auth.js +2 -1
- package/dist/schemas/domain.d.ts +4 -1
- package/dist/schemas/domain.d.ts.map +1 -1
- package/dist/schemas/domain.js +3 -1
- package/dist/schemas/email-admin.d.ts +1 -0
- package/dist/schemas/email-admin.d.ts.map +1 -1
- package/dist/schemas/email-admin.js +1 -0
- package/dist/schemas/flags-admin.d.ts +13 -0
- package/dist/schemas/flags-admin.d.ts.map +1 -1
- package/dist/schemas/flags-admin.js +6 -0
- package/dist/schemas/notifications-admin.d.ts +6 -6
- package/dist/schemas/notifications-admin.js +1 -1
- package/dist/schemas/project-manifest.d.ts +316 -306
- package/dist/schemas/project-manifest.d.ts.map +1 -1
- package/dist/schemas/project-manifest.js +5 -0
- package/package.json +5 -1
|
@@ -142,6 +142,11 @@ export declare const ManifestServiceSection: Schema.filter<Schema.Struct<{
|
|
|
142
142
|
}>>;
|
|
143
143
|
/** Service start command. */
|
|
144
144
|
command: Schema.optional<typeof Schema.String>;
|
|
145
|
+
/**
|
|
146
|
+
* Command run before this service receives traffic. Kept service-scoped for
|
|
147
|
+
* apps that need one migration/release hook tied to a specific image.
|
|
148
|
+
*/
|
|
149
|
+
release_command: Schema.optional<typeof Schema.String>;
|
|
145
150
|
/** Service port; required for `web` when it cannot be detected automatically. */
|
|
146
151
|
port: Schema.optional<Schema.filter<Schema.filter<typeof Schema.Number>>>;
|
|
147
152
|
/** Explicit instance count. Ignored for `cron`. */
|
|
@@ -471,31 +476,7 @@ export type ManifestEnvironmentOverride = typeof ManifestEnvironmentOverride.Typ
|
|
|
471
476
|
* as an exhaustive record demanding every key) yet still flexible.
|
|
472
477
|
*/
|
|
473
478
|
export declare const ManifestEnvironmentsMap: Schema.SchemaClass<{
|
|
474
|
-
readonly
|
|
475
|
-
readonly domains?: readonly {
|
|
476
|
-
readonly service: string;
|
|
477
|
-
readonly hostname: string;
|
|
478
|
-
readonly redirect_https?: boolean | undefined;
|
|
479
|
-
readonly www_redirect?: "none" | "apex" | "www" | undefined;
|
|
480
|
-
readonly aliases?: readonly string[] | undefined;
|
|
481
|
-
}[] | undefined;
|
|
482
|
-
readonly services?: readonly {
|
|
483
|
-
readonly name: string;
|
|
484
|
-
readonly type?: "function" | "cron" | "web" | "worker" | undefined;
|
|
485
|
-
readonly port?: number | undefined;
|
|
486
|
-
readonly env?: readonly string[] | undefined;
|
|
487
|
-
readonly resources?: readonly string[] | undefined;
|
|
488
|
-
readonly instances?: number | undefined;
|
|
489
|
-
readonly max_instances?: number | undefined;
|
|
490
|
-
readonly command?: string | undefined;
|
|
491
|
-
readonly instance_type?: "nano" | "micro" | "standard" | "large" | "xlarge" | "small" | undefined;
|
|
492
|
-
readonly cron_schedule?: string | undefined;
|
|
493
|
-
readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
|
|
494
|
-
readonly scale_to_zero?: boolean | undefined;
|
|
495
|
-
readonly idle_timeout_seconds?: number | undefined;
|
|
496
|
-
readonly min_instances?: number | undefined;
|
|
497
|
-
}[] | undefined;
|
|
498
|
-
readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
|
|
479
|
+
readonly production?: {
|
|
499
480
|
readonly env?: {
|
|
500
481
|
readonly [x: string]: {
|
|
501
482
|
readonly value: string;
|
|
@@ -506,11 +487,12 @@ export declare const ManifestEnvironmentsMap: Schema.SchemaClass<{
|
|
|
506
487
|
readonly attr: string;
|
|
507
488
|
};
|
|
508
489
|
} | undefined;
|
|
490
|
+
readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
|
|
509
491
|
readonly build?: {
|
|
510
|
-
readonly context?: string | undefined;
|
|
511
|
-
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
512
492
|
readonly dockerfile?: string | undefined;
|
|
513
|
-
readonly buildpack?: "auto" | "
|
|
493
|
+
readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
|
|
494
|
+
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
495
|
+
readonly context?: string | undefined;
|
|
514
496
|
readonly docker_context?: string | undefined;
|
|
515
497
|
readonly build_command?: string | undefined;
|
|
516
498
|
readonly ignore?: readonly string[] | undefined;
|
|
@@ -518,38 +500,37 @@ export declare const ManifestEnvironmentsMap: Schema.SchemaClass<{
|
|
|
518
500
|
readonly reproducible?: boolean | undefined;
|
|
519
501
|
} | undefined;
|
|
520
502
|
readonly deploy?: {
|
|
521
|
-
readonly strategy?: "
|
|
503
|
+
readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
|
|
522
504
|
readonly release_command?: string | undefined;
|
|
523
505
|
readonly health_check_path?: string | undefined;
|
|
524
506
|
readonly health_check_timeout?: number | undefined;
|
|
525
507
|
readonly graceful_shutdown?: number | undefined;
|
|
526
508
|
} | undefined;
|
|
527
|
-
};
|
|
528
|
-
readonly staging?: {
|
|
529
|
-
readonly domains?: readonly {
|
|
530
|
-
readonly service: string;
|
|
531
|
-
readonly hostname: string;
|
|
532
|
-
readonly redirect_https?: boolean | undefined;
|
|
533
|
-
readonly www_redirect?: "none" | "apex" | "www" | undefined;
|
|
534
|
-
readonly aliases?: readonly string[] | undefined;
|
|
535
|
-
}[] | undefined;
|
|
536
509
|
readonly services?: readonly {
|
|
537
|
-
readonly name: string;
|
|
538
|
-
readonly type?: "function" | "cron" | "web" | "worker" | undefined;
|
|
539
510
|
readonly port?: number | undefined;
|
|
540
511
|
readonly env?: readonly string[] | undefined;
|
|
512
|
+
readonly name: string;
|
|
541
513
|
readonly resources?: readonly string[] | undefined;
|
|
542
|
-
readonly instances?: number | undefined;
|
|
543
514
|
readonly max_instances?: number | undefined;
|
|
544
515
|
readonly command?: string | undefined;
|
|
545
|
-
readonly
|
|
516
|
+
readonly type?: "function" | "web" | "worker" | "cron" | undefined;
|
|
517
|
+
readonly instances?: number | undefined;
|
|
518
|
+
readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
|
|
546
519
|
readonly cron_schedule?: string | undefined;
|
|
547
520
|
readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
|
|
548
521
|
readonly scale_to_zero?: boolean | undefined;
|
|
549
522
|
readonly idle_timeout_seconds?: number | undefined;
|
|
550
523
|
readonly min_instances?: number | undefined;
|
|
551
524
|
}[] | undefined;
|
|
552
|
-
readonly
|
|
525
|
+
readonly domains?: readonly {
|
|
526
|
+
readonly hostname: string;
|
|
527
|
+
readonly service: string;
|
|
528
|
+
readonly redirect_https?: boolean | undefined;
|
|
529
|
+
readonly www_redirect?: "apex" | "www" | "none" | undefined;
|
|
530
|
+
readonly aliases?: readonly string[] | undefined;
|
|
531
|
+
}[] | undefined;
|
|
532
|
+
};
|
|
533
|
+
readonly staging?: {
|
|
553
534
|
readonly env?: {
|
|
554
535
|
readonly [x: string]: {
|
|
555
536
|
readonly value: string;
|
|
@@ -560,11 +541,12 @@ export declare const ManifestEnvironmentsMap: Schema.SchemaClass<{
|
|
|
560
541
|
readonly attr: string;
|
|
561
542
|
};
|
|
562
543
|
} | undefined;
|
|
544
|
+
readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
|
|
563
545
|
readonly build?: {
|
|
564
|
-
readonly context?: string | undefined;
|
|
565
|
-
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
566
546
|
readonly dockerfile?: string | undefined;
|
|
567
|
-
readonly buildpack?: "auto" | "
|
|
547
|
+
readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
|
|
548
|
+
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
549
|
+
readonly context?: string | undefined;
|
|
568
550
|
readonly docker_context?: string | undefined;
|
|
569
551
|
readonly build_command?: string | undefined;
|
|
570
552
|
readonly ignore?: readonly string[] | undefined;
|
|
@@ -572,38 +554,37 @@ export declare const ManifestEnvironmentsMap: Schema.SchemaClass<{
|
|
|
572
554
|
readonly reproducible?: boolean | undefined;
|
|
573
555
|
} | undefined;
|
|
574
556
|
readonly deploy?: {
|
|
575
|
-
readonly strategy?: "
|
|
557
|
+
readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
|
|
576
558
|
readonly release_command?: string | undefined;
|
|
577
559
|
readonly health_check_path?: string | undefined;
|
|
578
560
|
readonly health_check_timeout?: number | undefined;
|
|
579
561
|
readonly graceful_shutdown?: number | undefined;
|
|
580
562
|
} | undefined;
|
|
581
|
-
};
|
|
582
|
-
readonly production?: {
|
|
583
|
-
readonly domains?: readonly {
|
|
584
|
-
readonly service: string;
|
|
585
|
-
readonly hostname: string;
|
|
586
|
-
readonly redirect_https?: boolean | undefined;
|
|
587
|
-
readonly www_redirect?: "none" | "apex" | "www" | undefined;
|
|
588
|
-
readonly aliases?: readonly string[] | undefined;
|
|
589
|
-
}[] | undefined;
|
|
590
563
|
readonly services?: readonly {
|
|
591
|
-
readonly name: string;
|
|
592
|
-
readonly type?: "function" | "cron" | "web" | "worker" | undefined;
|
|
593
564
|
readonly port?: number | undefined;
|
|
594
565
|
readonly env?: readonly string[] | undefined;
|
|
566
|
+
readonly name: string;
|
|
595
567
|
readonly resources?: readonly string[] | undefined;
|
|
596
|
-
readonly instances?: number | undefined;
|
|
597
568
|
readonly max_instances?: number | undefined;
|
|
598
569
|
readonly command?: string | undefined;
|
|
599
|
-
readonly
|
|
570
|
+
readonly type?: "function" | "web" | "worker" | "cron" | undefined;
|
|
571
|
+
readonly instances?: number | undefined;
|
|
572
|
+
readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
|
|
600
573
|
readonly cron_schedule?: string | undefined;
|
|
601
574
|
readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
|
|
602
575
|
readonly scale_to_zero?: boolean | undefined;
|
|
603
576
|
readonly idle_timeout_seconds?: number | undefined;
|
|
604
577
|
readonly min_instances?: number | undefined;
|
|
605
578
|
}[] | undefined;
|
|
606
|
-
readonly
|
|
579
|
+
readonly domains?: readonly {
|
|
580
|
+
readonly hostname: string;
|
|
581
|
+
readonly service: string;
|
|
582
|
+
readonly redirect_https?: boolean | undefined;
|
|
583
|
+
readonly www_redirect?: "apex" | "www" | "none" | undefined;
|
|
584
|
+
readonly aliases?: readonly string[] | undefined;
|
|
585
|
+
}[] | undefined;
|
|
586
|
+
};
|
|
587
|
+
readonly preview?: {
|
|
607
588
|
readonly env?: {
|
|
608
589
|
readonly [x: string]: {
|
|
609
590
|
readonly value: string;
|
|
@@ -614,11 +595,12 @@ export declare const ManifestEnvironmentsMap: Schema.SchemaClass<{
|
|
|
614
595
|
readonly attr: string;
|
|
615
596
|
};
|
|
616
597
|
} | undefined;
|
|
598
|
+
readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
|
|
617
599
|
readonly build?: {
|
|
618
|
-
readonly context?: string | undefined;
|
|
619
|
-
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
620
600
|
readonly dockerfile?: string | undefined;
|
|
621
|
-
readonly buildpack?: "auto" | "
|
|
601
|
+
readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
|
|
602
|
+
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
603
|
+
readonly context?: string | undefined;
|
|
622
604
|
readonly docker_context?: string | undefined;
|
|
623
605
|
readonly build_command?: string | undefined;
|
|
624
606
|
readonly ignore?: readonly string[] | undefined;
|
|
@@ -626,38 +608,37 @@ export declare const ManifestEnvironmentsMap: Schema.SchemaClass<{
|
|
|
626
608
|
readonly reproducible?: boolean | undefined;
|
|
627
609
|
} | undefined;
|
|
628
610
|
readonly deploy?: {
|
|
629
|
-
readonly strategy?: "
|
|
611
|
+
readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
|
|
630
612
|
readonly release_command?: string | undefined;
|
|
631
613
|
readonly health_check_path?: string | undefined;
|
|
632
614
|
readonly health_check_timeout?: number | undefined;
|
|
633
615
|
readonly graceful_shutdown?: number | undefined;
|
|
634
616
|
} | undefined;
|
|
635
|
-
};
|
|
636
|
-
readonly preview?: {
|
|
637
|
-
readonly domains?: readonly {
|
|
638
|
-
readonly service: string;
|
|
639
|
-
readonly hostname: string;
|
|
640
|
-
readonly redirect_https?: boolean | undefined;
|
|
641
|
-
readonly www_redirect?: "none" | "apex" | "www" | undefined;
|
|
642
|
-
readonly aliases?: readonly string[] | undefined;
|
|
643
|
-
}[] | undefined;
|
|
644
617
|
readonly services?: readonly {
|
|
645
|
-
readonly name: string;
|
|
646
|
-
readonly type?: "function" | "cron" | "web" | "worker" | undefined;
|
|
647
618
|
readonly port?: number | undefined;
|
|
648
619
|
readonly env?: readonly string[] | undefined;
|
|
620
|
+
readonly name: string;
|
|
649
621
|
readonly resources?: readonly string[] | undefined;
|
|
650
|
-
readonly instances?: number | undefined;
|
|
651
622
|
readonly max_instances?: number | undefined;
|
|
652
623
|
readonly command?: string | undefined;
|
|
653
|
-
readonly
|
|
624
|
+
readonly type?: "function" | "web" | "worker" | "cron" | undefined;
|
|
625
|
+
readonly instances?: number | undefined;
|
|
626
|
+
readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
|
|
654
627
|
readonly cron_schedule?: string | undefined;
|
|
655
628
|
readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
|
|
656
629
|
readonly scale_to_zero?: boolean | undefined;
|
|
657
630
|
readonly idle_timeout_seconds?: number | undefined;
|
|
658
631
|
readonly min_instances?: number | undefined;
|
|
659
632
|
}[] | undefined;
|
|
660
|
-
readonly
|
|
633
|
+
readonly domains?: readonly {
|
|
634
|
+
readonly hostname: string;
|
|
635
|
+
readonly service: string;
|
|
636
|
+
readonly redirect_https?: boolean | undefined;
|
|
637
|
+
readonly www_redirect?: "apex" | "www" | "none" | undefined;
|
|
638
|
+
readonly aliases?: readonly string[] | undefined;
|
|
639
|
+
}[] | undefined;
|
|
640
|
+
};
|
|
641
|
+
readonly development?: {
|
|
661
642
|
readonly env?: {
|
|
662
643
|
readonly [x: string]: {
|
|
663
644
|
readonly value: string;
|
|
@@ -668,11 +649,12 @@ export declare const ManifestEnvironmentsMap: Schema.SchemaClass<{
|
|
|
668
649
|
readonly attr: string;
|
|
669
650
|
};
|
|
670
651
|
} | undefined;
|
|
652
|
+
readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
|
|
671
653
|
readonly build?: {
|
|
672
|
-
readonly context?: string | undefined;
|
|
673
|
-
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
674
654
|
readonly dockerfile?: string | undefined;
|
|
675
|
-
readonly buildpack?: "auto" | "
|
|
655
|
+
readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
|
|
656
|
+
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
657
|
+
readonly context?: string | undefined;
|
|
676
658
|
readonly docker_context?: string | undefined;
|
|
677
659
|
readonly build_command?: string | undefined;
|
|
678
660
|
readonly ignore?: readonly string[] | undefined;
|
|
@@ -680,39 +662,38 @@ export declare const ManifestEnvironmentsMap: Schema.SchemaClass<{
|
|
|
680
662
|
readonly reproducible?: boolean | undefined;
|
|
681
663
|
} | undefined;
|
|
682
664
|
readonly deploy?: {
|
|
683
|
-
readonly strategy?: "
|
|
665
|
+
readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
|
|
684
666
|
readonly release_command?: string | undefined;
|
|
685
667
|
readonly health_check_path?: string | undefined;
|
|
686
668
|
readonly health_check_timeout?: number | undefined;
|
|
687
669
|
readonly graceful_shutdown?: number | undefined;
|
|
688
670
|
} | undefined;
|
|
689
|
-
};
|
|
690
|
-
}, {
|
|
691
|
-
readonly development?: {
|
|
692
|
-
readonly domains?: readonly {
|
|
693
|
-
readonly service: string;
|
|
694
|
-
readonly hostname: string;
|
|
695
|
-
readonly redirect_https?: boolean | undefined;
|
|
696
|
-
readonly www_redirect?: "none" | "apex" | "www" | undefined;
|
|
697
|
-
readonly aliases?: readonly string[] | undefined;
|
|
698
|
-
}[] | undefined;
|
|
699
671
|
readonly services?: readonly {
|
|
700
|
-
readonly name: string;
|
|
701
|
-
readonly type?: "function" | "cron" | "web" | "worker" | undefined;
|
|
702
672
|
readonly port?: number | undefined;
|
|
703
673
|
readonly env?: readonly string[] | undefined;
|
|
674
|
+
readonly name: string;
|
|
704
675
|
readonly resources?: readonly string[] | undefined;
|
|
705
|
-
readonly instances?: number | undefined;
|
|
706
676
|
readonly max_instances?: number | undefined;
|
|
707
677
|
readonly command?: string | undefined;
|
|
708
|
-
readonly
|
|
678
|
+
readonly type?: "function" | "web" | "worker" | "cron" | undefined;
|
|
679
|
+
readonly instances?: number | undefined;
|
|
680
|
+
readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
|
|
709
681
|
readonly cron_schedule?: string | undefined;
|
|
710
682
|
readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
|
|
711
683
|
readonly scale_to_zero?: boolean | undefined;
|
|
712
684
|
readonly idle_timeout_seconds?: number | undefined;
|
|
713
685
|
readonly min_instances?: number | undefined;
|
|
714
686
|
}[] | undefined;
|
|
715
|
-
readonly
|
|
687
|
+
readonly domains?: readonly {
|
|
688
|
+
readonly hostname: string;
|
|
689
|
+
readonly service: string;
|
|
690
|
+
readonly redirect_https?: boolean | undefined;
|
|
691
|
+
readonly www_redirect?: "apex" | "www" | "none" | undefined;
|
|
692
|
+
readonly aliases?: readonly string[] | undefined;
|
|
693
|
+
}[] | undefined;
|
|
694
|
+
};
|
|
695
|
+
}, {
|
|
696
|
+
readonly production?: {
|
|
716
697
|
readonly env?: {
|
|
717
698
|
readonly [x: string]: {
|
|
718
699
|
readonly value: string;
|
|
@@ -723,11 +704,12 @@ export declare const ManifestEnvironmentsMap: Schema.SchemaClass<{
|
|
|
723
704
|
readonly attr: string;
|
|
724
705
|
};
|
|
725
706
|
} | undefined;
|
|
707
|
+
readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
|
|
726
708
|
readonly build?: {
|
|
727
|
-
readonly context?: string | undefined;
|
|
728
|
-
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
729
709
|
readonly dockerfile?: string | undefined;
|
|
730
|
-
readonly buildpack?: "auto" | "
|
|
710
|
+
readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
|
|
711
|
+
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
712
|
+
readonly context?: string | undefined;
|
|
731
713
|
readonly docker_context?: string | undefined;
|
|
732
714
|
readonly build_command?: string | undefined;
|
|
733
715
|
readonly ignore?: readonly string[] | undefined;
|
|
@@ -735,38 +717,37 @@ export declare const ManifestEnvironmentsMap: Schema.SchemaClass<{
|
|
|
735
717
|
readonly reproducible?: boolean | undefined;
|
|
736
718
|
} | undefined;
|
|
737
719
|
readonly deploy?: {
|
|
738
|
-
readonly strategy?: "
|
|
720
|
+
readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
|
|
739
721
|
readonly release_command?: string | undefined;
|
|
740
722
|
readonly health_check_path?: string | undefined;
|
|
741
723
|
readonly health_check_timeout?: number | undefined;
|
|
742
724
|
readonly graceful_shutdown?: number | undefined;
|
|
743
725
|
} | undefined;
|
|
744
|
-
};
|
|
745
|
-
readonly staging?: {
|
|
746
|
-
readonly domains?: readonly {
|
|
747
|
-
readonly service: string;
|
|
748
|
-
readonly hostname: string;
|
|
749
|
-
readonly redirect_https?: boolean | undefined;
|
|
750
|
-
readonly www_redirect?: "none" | "apex" | "www" | undefined;
|
|
751
|
-
readonly aliases?: readonly string[] | undefined;
|
|
752
|
-
}[] | undefined;
|
|
753
726
|
readonly services?: readonly {
|
|
754
727
|
readonly name: string;
|
|
755
|
-
readonly type?: "function" | "cron" | "web" | "worker" | undefined;
|
|
756
728
|
readonly port?: number | undefined;
|
|
757
729
|
readonly env?: readonly string[] | undefined;
|
|
758
730
|
readonly resources?: readonly string[] | undefined;
|
|
759
|
-
readonly instances?: number | undefined;
|
|
760
731
|
readonly max_instances?: number | undefined;
|
|
761
732
|
readonly command?: string | undefined;
|
|
762
|
-
readonly
|
|
733
|
+
readonly type?: "function" | "web" | "worker" | "cron" | undefined;
|
|
734
|
+
readonly instances?: number | undefined;
|
|
735
|
+
readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
|
|
763
736
|
readonly cron_schedule?: string | undefined;
|
|
764
737
|
readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
|
|
765
738
|
readonly scale_to_zero?: boolean | undefined;
|
|
766
739
|
readonly idle_timeout_seconds?: number | undefined;
|
|
767
740
|
readonly min_instances?: number | undefined;
|
|
768
741
|
}[] | undefined;
|
|
769
|
-
readonly
|
|
742
|
+
readonly domains?: readonly {
|
|
743
|
+
readonly hostname: string;
|
|
744
|
+
readonly service: string;
|
|
745
|
+
readonly redirect_https?: boolean | undefined;
|
|
746
|
+
readonly www_redirect?: "apex" | "www" | "none" | undefined;
|
|
747
|
+
readonly aliases?: readonly string[] | undefined;
|
|
748
|
+
}[] | undefined;
|
|
749
|
+
};
|
|
750
|
+
readonly staging?: {
|
|
770
751
|
readonly env?: {
|
|
771
752
|
readonly [x: string]: {
|
|
772
753
|
readonly value: string;
|
|
@@ -777,11 +758,12 @@ export declare const ManifestEnvironmentsMap: Schema.SchemaClass<{
|
|
|
777
758
|
readonly attr: string;
|
|
778
759
|
};
|
|
779
760
|
} | undefined;
|
|
761
|
+
readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
|
|
780
762
|
readonly build?: {
|
|
781
|
-
readonly context?: string | undefined;
|
|
782
|
-
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
783
763
|
readonly dockerfile?: string | undefined;
|
|
784
|
-
readonly buildpack?: "auto" | "
|
|
764
|
+
readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
|
|
765
|
+
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
766
|
+
readonly context?: string | undefined;
|
|
785
767
|
readonly docker_context?: string | undefined;
|
|
786
768
|
readonly build_command?: string | undefined;
|
|
787
769
|
readonly ignore?: readonly string[] | undefined;
|
|
@@ -789,38 +771,37 @@ export declare const ManifestEnvironmentsMap: Schema.SchemaClass<{
|
|
|
789
771
|
readonly reproducible?: boolean | undefined;
|
|
790
772
|
} | undefined;
|
|
791
773
|
readonly deploy?: {
|
|
792
|
-
readonly strategy?: "
|
|
774
|
+
readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
|
|
793
775
|
readonly release_command?: string | undefined;
|
|
794
776
|
readonly health_check_path?: string | undefined;
|
|
795
777
|
readonly health_check_timeout?: number | undefined;
|
|
796
778
|
readonly graceful_shutdown?: number | undefined;
|
|
797
779
|
} | undefined;
|
|
798
|
-
};
|
|
799
|
-
readonly production?: {
|
|
800
|
-
readonly domains?: readonly {
|
|
801
|
-
readonly service: string;
|
|
802
|
-
readonly hostname: string;
|
|
803
|
-
readonly redirect_https?: boolean | undefined;
|
|
804
|
-
readonly www_redirect?: "none" | "apex" | "www" | undefined;
|
|
805
|
-
readonly aliases?: readonly string[] | undefined;
|
|
806
|
-
}[] | undefined;
|
|
807
780
|
readonly services?: readonly {
|
|
808
781
|
readonly name: string;
|
|
809
|
-
readonly type?: "function" | "cron" | "web" | "worker" | undefined;
|
|
810
782
|
readonly port?: number | undefined;
|
|
811
783
|
readonly env?: readonly string[] | undefined;
|
|
812
784
|
readonly resources?: readonly string[] | undefined;
|
|
813
|
-
readonly instances?: number | undefined;
|
|
814
785
|
readonly max_instances?: number | undefined;
|
|
815
786
|
readonly command?: string | undefined;
|
|
816
|
-
readonly
|
|
787
|
+
readonly type?: "function" | "web" | "worker" | "cron" | undefined;
|
|
788
|
+
readonly instances?: number | undefined;
|
|
789
|
+
readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
|
|
817
790
|
readonly cron_schedule?: string | undefined;
|
|
818
791
|
readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
|
|
819
792
|
readonly scale_to_zero?: boolean | undefined;
|
|
820
793
|
readonly idle_timeout_seconds?: number | undefined;
|
|
821
794
|
readonly min_instances?: number | undefined;
|
|
822
795
|
}[] | undefined;
|
|
823
|
-
readonly
|
|
796
|
+
readonly domains?: readonly {
|
|
797
|
+
readonly hostname: string;
|
|
798
|
+
readonly service: string;
|
|
799
|
+
readonly redirect_https?: boolean | undefined;
|
|
800
|
+
readonly www_redirect?: "apex" | "www" | "none" | undefined;
|
|
801
|
+
readonly aliases?: readonly string[] | undefined;
|
|
802
|
+
}[] | undefined;
|
|
803
|
+
};
|
|
804
|
+
readonly preview?: {
|
|
824
805
|
readonly env?: {
|
|
825
806
|
readonly [x: string]: {
|
|
826
807
|
readonly value: string;
|
|
@@ -831,11 +812,12 @@ export declare const ManifestEnvironmentsMap: Schema.SchemaClass<{
|
|
|
831
812
|
readonly attr: string;
|
|
832
813
|
};
|
|
833
814
|
} | undefined;
|
|
815
|
+
readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
|
|
834
816
|
readonly build?: {
|
|
835
|
-
readonly context?: string | undefined;
|
|
836
|
-
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
837
817
|
readonly dockerfile?: string | undefined;
|
|
838
|
-
readonly buildpack?: "auto" | "
|
|
818
|
+
readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
|
|
819
|
+
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
820
|
+
readonly context?: string | undefined;
|
|
839
821
|
readonly docker_context?: string | undefined;
|
|
840
822
|
readonly build_command?: string | undefined;
|
|
841
823
|
readonly ignore?: readonly string[] | undefined;
|
|
@@ -843,38 +825,37 @@ export declare const ManifestEnvironmentsMap: Schema.SchemaClass<{
|
|
|
843
825
|
readonly reproducible?: boolean | undefined;
|
|
844
826
|
} | undefined;
|
|
845
827
|
readonly deploy?: {
|
|
846
|
-
readonly strategy?: "
|
|
828
|
+
readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
|
|
847
829
|
readonly release_command?: string | undefined;
|
|
848
830
|
readonly health_check_path?: string | undefined;
|
|
849
831
|
readonly health_check_timeout?: number | undefined;
|
|
850
832
|
readonly graceful_shutdown?: number | undefined;
|
|
851
833
|
} | undefined;
|
|
852
|
-
};
|
|
853
|
-
readonly preview?: {
|
|
854
|
-
readonly domains?: readonly {
|
|
855
|
-
readonly service: string;
|
|
856
|
-
readonly hostname: string;
|
|
857
|
-
readonly redirect_https?: boolean | undefined;
|
|
858
|
-
readonly www_redirect?: "none" | "apex" | "www" | undefined;
|
|
859
|
-
readonly aliases?: readonly string[] | undefined;
|
|
860
|
-
}[] | undefined;
|
|
861
834
|
readonly services?: readonly {
|
|
862
835
|
readonly name: string;
|
|
863
|
-
readonly type?: "function" | "cron" | "web" | "worker" | undefined;
|
|
864
836
|
readonly port?: number | undefined;
|
|
865
837
|
readonly env?: readonly string[] | undefined;
|
|
866
838
|
readonly resources?: readonly string[] | undefined;
|
|
867
|
-
readonly instances?: number | undefined;
|
|
868
839
|
readonly max_instances?: number | undefined;
|
|
869
840
|
readonly command?: string | undefined;
|
|
870
|
-
readonly
|
|
841
|
+
readonly type?: "function" | "web" | "worker" | "cron" | undefined;
|
|
842
|
+
readonly instances?: number | undefined;
|
|
843
|
+
readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
|
|
871
844
|
readonly cron_schedule?: string | undefined;
|
|
872
845
|
readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
|
|
873
846
|
readonly scale_to_zero?: boolean | undefined;
|
|
874
847
|
readonly idle_timeout_seconds?: number | undefined;
|
|
875
848
|
readonly min_instances?: number | undefined;
|
|
876
849
|
}[] | undefined;
|
|
877
|
-
readonly
|
|
850
|
+
readonly domains?: readonly {
|
|
851
|
+
readonly hostname: string;
|
|
852
|
+
readonly service: string;
|
|
853
|
+
readonly redirect_https?: boolean | undefined;
|
|
854
|
+
readonly www_redirect?: "apex" | "www" | "none" | undefined;
|
|
855
|
+
readonly aliases?: readonly string[] | undefined;
|
|
856
|
+
}[] | undefined;
|
|
857
|
+
};
|
|
858
|
+
readonly development?: {
|
|
878
859
|
readonly env?: {
|
|
879
860
|
readonly [x: string]: {
|
|
880
861
|
readonly value: string;
|
|
@@ -885,11 +866,12 @@ export declare const ManifestEnvironmentsMap: Schema.SchemaClass<{
|
|
|
885
866
|
readonly attr: string;
|
|
886
867
|
};
|
|
887
868
|
} | undefined;
|
|
869
|
+
readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
|
|
888
870
|
readonly build?: {
|
|
889
|
-
readonly context?: string | undefined;
|
|
890
|
-
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
891
871
|
readonly dockerfile?: string | undefined;
|
|
892
|
-
readonly buildpack?: "auto" | "
|
|
872
|
+
readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
|
|
873
|
+
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
874
|
+
readonly context?: string | undefined;
|
|
893
875
|
readonly docker_context?: string | undefined;
|
|
894
876
|
readonly build_command?: string | undefined;
|
|
895
877
|
readonly ignore?: readonly string[] | undefined;
|
|
@@ -897,12 +879,35 @@ export declare const ManifestEnvironmentsMap: Schema.SchemaClass<{
|
|
|
897
879
|
readonly reproducible?: boolean | undefined;
|
|
898
880
|
} | undefined;
|
|
899
881
|
readonly deploy?: {
|
|
900
|
-
readonly strategy?: "
|
|
882
|
+
readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
|
|
901
883
|
readonly release_command?: string | undefined;
|
|
902
884
|
readonly health_check_path?: string | undefined;
|
|
903
885
|
readonly health_check_timeout?: number | undefined;
|
|
904
886
|
readonly graceful_shutdown?: number | undefined;
|
|
905
887
|
} | undefined;
|
|
888
|
+
readonly services?: readonly {
|
|
889
|
+
readonly name: string;
|
|
890
|
+
readonly port?: number | undefined;
|
|
891
|
+
readonly env?: readonly string[] | undefined;
|
|
892
|
+
readonly resources?: readonly string[] | undefined;
|
|
893
|
+
readonly max_instances?: number | undefined;
|
|
894
|
+
readonly command?: string | undefined;
|
|
895
|
+
readonly type?: "function" | "web" | "worker" | "cron" | undefined;
|
|
896
|
+
readonly instances?: number | undefined;
|
|
897
|
+
readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
|
|
898
|
+
readonly cron_schedule?: string | undefined;
|
|
899
|
+
readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
|
|
900
|
+
readonly scale_to_zero?: boolean | undefined;
|
|
901
|
+
readonly idle_timeout_seconds?: number | undefined;
|
|
902
|
+
readonly min_instances?: number | undefined;
|
|
903
|
+
}[] | undefined;
|
|
904
|
+
readonly domains?: readonly {
|
|
905
|
+
readonly hostname: string;
|
|
906
|
+
readonly service: string;
|
|
907
|
+
readonly redirect_https?: boolean | undefined;
|
|
908
|
+
readonly www_redirect?: "apex" | "www" | "none" | undefined;
|
|
909
|
+
readonly aliases?: readonly string[] | undefined;
|
|
910
|
+
}[] | undefined;
|
|
906
911
|
};
|
|
907
912
|
}, never>;
|
|
908
913
|
export type ManifestEnvironmentsMap = typeof ManifestEnvironmentsMap.Type;
|
|
@@ -986,6 +991,11 @@ export declare const SylphxManifest: Schema.Struct<{
|
|
|
986
991
|
}>>;
|
|
987
992
|
/** Service start command. */
|
|
988
993
|
command: Schema.optional<typeof Schema.String>;
|
|
994
|
+
/**
|
|
995
|
+
* Command run before this service receives traffic. Kept service-scoped for
|
|
996
|
+
* apps that need one migration/release hook tied to a specific image.
|
|
997
|
+
*/
|
|
998
|
+
release_command: Schema.optional<typeof Schema.String>;
|
|
989
999
|
/** Service port; required for `web` when it cannot be detected automatically. */
|
|
990
1000
|
port: Schema.optional<Schema.filter<Schema.filter<typeof Schema.Number>>>;
|
|
991
1001
|
/** Explicit instance count. Ignored for `cron`. */
|
|
@@ -1053,31 +1063,7 @@ export declare const SylphxManifest: Schema.Struct<{
|
|
|
1053
1063
|
aliases: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
1054
1064
|
}>>>;
|
|
1055
1065
|
environments: Schema.optional<Schema.SchemaClass<{
|
|
1056
|
-
readonly
|
|
1057
|
-
readonly domains?: readonly {
|
|
1058
|
-
readonly service: string;
|
|
1059
|
-
readonly hostname: string;
|
|
1060
|
-
readonly redirect_https?: boolean | undefined;
|
|
1061
|
-
readonly www_redirect?: "none" | "apex" | "www" | undefined;
|
|
1062
|
-
readonly aliases?: readonly string[] | undefined;
|
|
1063
|
-
}[] | undefined;
|
|
1064
|
-
readonly services?: readonly {
|
|
1065
|
-
readonly name: string;
|
|
1066
|
-
readonly type?: "function" | "cron" | "web" | "worker" | undefined;
|
|
1067
|
-
readonly port?: number | undefined;
|
|
1068
|
-
readonly env?: readonly string[] | undefined;
|
|
1069
|
-
readonly resources?: readonly string[] | undefined;
|
|
1070
|
-
readonly instances?: number | undefined;
|
|
1071
|
-
readonly max_instances?: number | undefined;
|
|
1072
|
-
readonly command?: string | undefined;
|
|
1073
|
-
readonly instance_type?: "nano" | "micro" | "standard" | "large" | "xlarge" | "small" | undefined;
|
|
1074
|
-
readonly cron_schedule?: string | undefined;
|
|
1075
|
-
readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
|
|
1076
|
-
readonly scale_to_zero?: boolean | undefined;
|
|
1077
|
-
readonly idle_timeout_seconds?: number | undefined;
|
|
1078
|
-
readonly min_instances?: number | undefined;
|
|
1079
|
-
}[] | undefined;
|
|
1080
|
-
readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
|
|
1066
|
+
readonly production?: {
|
|
1081
1067
|
readonly env?: {
|
|
1082
1068
|
readonly [x: string]: {
|
|
1083
1069
|
readonly value: string;
|
|
@@ -1088,11 +1074,12 @@ export declare const SylphxManifest: Schema.Struct<{
|
|
|
1088
1074
|
readonly attr: string;
|
|
1089
1075
|
};
|
|
1090
1076
|
} | undefined;
|
|
1077
|
+
readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
|
|
1091
1078
|
readonly build?: {
|
|
1092
|
-
readonly context?: string | undefined;
|
|
1093
|
-
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
1094
1079
|
readonly dockerfile?: string | undefined;
|
|
1095
|
-
readonly buildpack?: "auto" | "
|
|
1080
|
+
readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
|
|
1081
|
+
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
1082
|
+
readonly context?: string | undefined;
|
|
1096
1083
|
readonly docker_context?: string | undefined;
|
|
1097
1084
|
readonly build_command?: string | undefined;
|
|
1098
1085
|
readonly ignore?: readonly string[] | undefined;
|
|
@@ -1100,38 +1087,37 @@ export declare const SylphxManifest: Schema.Struct<{
|
|
|
1100
1087
|
readonly reproducible?: boolean | undefined;
|
|
1101
1088
|
} | undefined;
|
|
1102
1089
|
readonly deploy?: {
|
|
1103
|
-
readonly strategy?: "
|
|
1090
|
+
readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
|
|
1104
1091
|
readonly release_command?: string | undefined;
|
|
1105
1092
|
readonly health_check_path?: string | undefined;
|
|
1106
1093
|
readonly health_check_timeout?: number | undefined;
|
|
1107
1094
|
readonly graceful_shutdown?: number | undefined;
|
|
1108
1095
|
} | undefined;
|
|
1109
|
-
};
|
|
1110
|
-
readonly staging?: {
|
|
1111
|
-
readonly domains?: readonly {
|
|
1112
|
-
readonly service: string;
|
|
1113
|
-
readonly hostname: string;
|
|
1114
|
-
readonly redirect_https?: boolean | undefined;
|
|
1115
|
-
readonly www_redirect?: "none" | "apex" | "www" | undefined;
|
|
1116
|
-
readonly aliases?: readonly string[] | undefined;
|
|
1117
|
-
}[] | undefined;
|
|
1118
1096
|
readonly services?: readonly {
|
|
1119
|
-
readonly name: string;
|
|
1120
|
-
readonly type?: "function" | "cron" | "web" | "worker" | undefined;
|
|
1121
1097
|
readonly port?: number | undefined;
|
|
1122
1098
|
readonly env?: readonly string[] | undefined;
|
|
1099
|
+
readonly name: string;
|
|
1123
1100
|
readonly resources?: readonly string[] | undefined;
|
|
1124
|
-
readonly instances?: number | undefined;
|
|
1125
1101
|
readonly max_instances?: number | undefined;
|
|
1126
1102
|
readonly command?: string | undefined;
|
|
1127
|
-
readonly
|
|
1103
|
+
readonly type?: "function" | "web" | "worker" | "cron" | undefined;
|
|
1104
|
+
readonly instances?: number | undefined;
|
|
1105
|
+
readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
|
|
1128
1106
|
readonly cron_schedule?: string | undefined;
|
|
1129
1107
|
readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
|
|
1130
1108
|
readonly scale_to_zero?: boolean | undefined;
|
|
1131
1109
|
readonly idle_timeout_seconds?: number | undefined;
|
|
1132
1110
|
readonly min_instances?: number | undefined;
|
|
1133
1111
|
}[] | undefined;
|
|
1134
|
-
readonly
|
|
1112
|
+
readonly domains?: readonly {
|
|
1113
|
+
readonly hostname: string;
|
|
1114
|
+
readonly service: string;
|
|
1115
|
+
readonly redirect_https?: boolean | undefined;
|
|
1116
|
+
readonly www_redirect?: "apex" | "www" | "none" | undefined;
|
|
1117
|
+
readonly aliases?: readonly string[] | undefined;
|
|
1118
|
+
}[] | undefined;
|
|
1119
|
+
};
|
|
1120
|
+
readonly staging?: {
|
|
1135
1121
|
readonly env?: {
|
|
1136
1122
|
readonly [x: string]: {
|
|
1137
1123
|
readonly value: string;
|
|
@@ -1142,11 +1128,12 @@ export declare const SylphxManifest: Schema.Struct<{
|
|
|
1142
1128
|
readonly attr: string;
|
|
1143
1129
|
};
|
|
1144
1130
|
} | undefined;
|
|
1131
|
+
readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
|
|
1145
1132
|
readonly build?: {
|
|
1146
|
-
readonly context?: string | undefined;
|
|
1147
|
-
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
1148
1133
|
readonly dockerfile?: string | undefined;
|
|
1149
|
-
readonly buildpack?: "auto" | "
|
|
1134
|
+
readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
|
|
1135
|
+
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
1136
|
+
readonly context?: string | undefined;
|
|
1150
1137
|
readonly docker_context?: string | undefined;
|
|
1151
1138
|
readonly build_command?: string | undefined;
|
|
1152
1139
|
readonly ignore?: readonly string[] | undefined;
|
|
@@ -1154,38 +1141,37 @@ export declare const SylphxManifest: Schema.Struct<{
|
|
|
1154
1141
|
readonly reproducible?: boolean | undefined;
|
|
1155
1142
|
} | undefined;
|
|
1156
1143
|
readonly deploy?: {
|
|
1157
|
-
readonly strategy?: "
|
|
1144
|
+
readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
|
|
1158
1145
|
readonly release_command?: string | undefined;
|
|
1159
1146
|
readonly health_check_path?: string | undefined;
|
|
1160
1147
|
readonly health_check_timeout?: number | undefined;
|
|
1161
1148
|
readonly graceful_shutdown?: number | undefined;
|
|
1162
1149
|
} | undefined;
|
|
1163
|
-
};
|
|
1164
|
-
readonly production?: {
|
|
1165
|
-
readonly domains?: readonly {
|
|
1166
|
-
readonly service: string;
|
|
1167
|
-
readonly hostname: string;
|
|
1168
|
-
readonly redirect_https?: boolean | undefined;
|
|
1169
|
-
readonly www_redirect?: "none" | "apex" | "www" | undefined;
|
|
1170
|
-
readonly aliases?: readonly string[] | undefined;
|
|
1171
|
-
}[] | undefined;
|
|
1172
1150
|
readonly services?: readonly {
|
|
1173
|
-
readonly name: string;
|
|
1174
|
-
readonly type?: "function" | "cron" | "web" | "worker" | undefined;
|
|
1175
1151
|
readonly port?: number | undefined;
|
|
1176
1152
|
readonly env?: readonly string[] | undefined;
|
|
1153
|
+
readonly name: string;
|
|
1177
1154
|
readonly resources?: readonly string[] | undefined;
|
|
1178
|
-
readonly instances?: number | undefined;
|
|
1179
1155
|
readonly max_instances?: number | undefined;
|
|
1180
1156
|
readonly command?: string | undefined;
|
|
1181
|
-
readonly
|
|
1157
|
+
readonly type?: "function" | "web" | "worker" | "cron" | undefined;
|
|
1158
|
+
readonly instances?: number | undefined;
|
|
1159
|
+
readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
|
|
1182
1160
|
readonly cron_schedule?: string | undefined;
|
|
1183
1161
|
readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
|
|
1184
1162
|
readonly scale_to_zero?: boolean | undefined;
|
|
1185
1163
|
readonly idle_timeout_seconds?: number | undefined;
|
|
1186
1164
|
readonly min_instances?: number | undefined;
|
|
1187
1165
|
}[] | undefined;
|
|
1188
|
-
readonly
|
|
1166
|
+
readonly domains?: readonly {
|
|
1167
|
+
readonly hostname: string;
|
|
1168
|
+
readonly service: string;
|
|
1169
|
+
readonly redirect_https?: boolean | undefined;
|
|
1170
|
+
readonly www_redirect?: "apex" | "www" | "none" | undefined;
|
|
1171
|
+
readonly aliases?: readonly string[] | undefined;
|
|
1172
|
+
}[] | undefined;
|
|
1173
|
+
};
|
|
1174
|
+
readonly preview?: {
|
|
1189
1175
|
readonly env?: {
|
|
1190
1176
|
readonly [x: string]: {
|
|
1191
1177
|
readonly value: string;
|
|
@@ -1196,11 +1182,12 @@ export declare const SylphxManifest: Schema.Struct<{
|
|
|
1196
1182
|
readonly attr: string;
|
|
1197
1183
|
};
|
|
1198
1184
|
} | undefined;
|
|
1185
|
+
readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
|
|
1199
1186
|
readonly build?: {
|
|
1200
|
-
readonly context?: string | undefined;
|
|
1201
|
-
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
1202
1187
|
readonly dockerfile?: string | undefined;
|
|
1203
|
-
readonly buildpack?: "auto" | "
|
|
1188
|
+
readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
|
|
1189
|
+
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
1190
|
+
readonly context?: string | undefined;
|
|
1204
1191
|
readonly docker_context?: string | undefined;
|
|
1205
1192
|
readonly build_command?: string | undefined;
|
|
1206
1193
|
readonly ignore?: readonly string[] | undefined;
|
|
@@ -1208,38 +1195,37 @@ export declare const SylphxManifest: Schema.Struct<{
|
|
|
1208
1195
|
readonly reproducible?: boolean | undefined;
|
|
1209
1196
|
} | undefined;
|
|
1210
1197
|
readonly deploy?: {
|
|
1211
|
-
readonly strategy?: "
|
|
1198
|
+
readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
|
|
1212
1199
|
readonly release_command?: string | undefined;
|
|
1213
1200
|
readonly health_check_path?: string | undefined;
|
|
1214
1201
|
readonly health_check_timeout?: number | undefined;
|
|
1215
1202
|
readonly graceful_shutdown?: number | undefined;
|
|
1216
1203
|
} | undefined;
|
|
1217
|
-
};
|
|
1218
|
-
readonly preview?: {
|
|
1219
|
-
readonly domains?: readonly {
|
|
1220
|
-
readonly service: string;
|
|
1221
|
-
readonly hostname: string;
|
|
1222
|
-
readonly redirect_https?: boolean | undefined;
|
|
1223
|
-
readonly www_redirect?: "none" | "apex" | "www" | undefined;
|
|
1224
|
-
readonly aliases?: readonly string[] | undefined;
|
|
1225
|
-
}[] | undefined;
|
|
1226
1204
|
readonly services?: readonly {
|
|
1227
|
-
readonly name: string;
|
|
1228
|
-
readonly type?: "function" | "cron" | "web" | "worker" | undefined;
|
|
1229
1205
|
readonly port?: number | undefined;
|
|
1230
1206
|
readonly env?: readonly string[] | undefined;
|
|
1207
|
+
readonly name: string;
|
|
1231
1208
|
readonly resources?: readonly string[] | undefined;
|
|
1232
|
-
readonly instances?: number | undefined;
|
|
1233
1209
|
readonly max_instances?: number | undefined;
|
|
1234
1210
|
readonly command?: string | undefined;
|
|
1235
|
-
readonly
|
|
1211
|
+
readonly type?: "function" | "web" | "worker" | "cron" | undefined;
|
|
1212
|
+
readonly instances?: number | undefined;
|
|
1213
|
+
readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
|
|
1236
1214
|
readonly cron_schedule?: string | undefined;
|
|
1237
1215
|
readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
|
|
1238
1216
|
readonly scale_to_zero?: boolean | undefined;
|
|
1239
1217
|
readonly idle_timeout_seconds?: number | undefined;
|
|
1240
1218
|
readonly min_instances?: number | undefined;
|
|
1241
1219
|
}[] | undefined;
|
|
1242
|
-
readonly
|
|
1220
|
+
readonly domains?: readonly {
|
|
1221
|
+
readonly hostname: string;
|
|
1222
|
+
readonly service: string;
|
|
1223
|
+
readonly redirect_https?: boolean | undefined;
|
|
1224
|
+
readonly www_redirect?: "apex" | "www" | "none" | undefined;
|
|
1225
|
+
readonly aliases?: readonly string[] | undefined;
|
|
1226
|
+
}[] | undefined;
|
|
1227
|
+
};
|
|
1228
|
+
readonly development?: {
|
|
1243
1229
|
readonly env?: {
|
|
1244
1230
|
readonly [x: string]: {
|
|
1245
1231
|
readonly value: string;
|
|
@@ -1250,11 +1236,12 @@ export declare const SylphxManifest: Schema.Struct<{
|
|
|
1250
1236
|
readonly attr: string;
|
|
1251
1237
|
};
|
|
1252
1238
|
} | undefined;
|
|
1239
|
+
readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
|
|
1253
1240
|
readonly build?: {
|
|
1254
|
-
readonly context?: string | undefined;
|
|
1255
|
-
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
1256
1241
|
readonly dockerfile?: string | undefined;
|
|
1257
|
-
readonly buildpack?: "auto" | "
|
|
1242
|
+
readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
|
|
1243
|
+
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
1244
|
+
readonly context?: string | undefined;
|
|
1258
1245
|
readonly docker_context?: string | undefined;
|
|
1259
1246
|
readonly build_command?: string | undefined;
|
|
1260
1247
|
readonly ignore?: readonly string[] | undefined;
|
|
@@ -1262,39 +1249,38 @@ export declare const SylphxManifest: Schema.Struct<{
|
|
|
1262
1249
|
readonly reproducible?: boolean | undefined;
|
|
1263
1250
|
} | undefined;
|
|
1264
1251
|
readonly deploy?: {
|
|
1265
|
-
readonly strategy?: "
|
|
1252
|
+
readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
|
|
1266
1253
|
readonly release_command?: string | undefined;
|
|
1267
1254
|
readonly health_check_path?: string | undefined;
|
|
1268
1255
|
readonly health_check_timeout?: number | undefined;
|
|
1269
1256
|
readonly graceful_shutdown?: number | undefined;
|
|
1270
1257
|
} | undefined;
|
|
1271
|
-
};
|
|
1272
|
-
}, {
|
|
1273
|
-
readonly development?: {
|
|
1274
|
-
readonly domains?: readonly {
|
|
1275
|
-
readonly service: string;
|
|
1276
|
-
readonly hostname: string;
|
|
1277
|
-
readonly redirect_https?: boolean | undefined;
|
|
1278
|
-
readonly www_redirect?: "none" | "apex" | "www" | undefined;
|
|
1279
|
-
readonly aliases?: readonly string[] | undefined;
|
|
1280
|
-
}[] | undefined;
|
|
1281
1258
|
readonly services?: readonly {
|
|
1282
|
-
readonly name: string;
|
|
1283
|
-
readonly type?: "function" | "cron" | "web" | "worker" | undefined;
|
|
1284
1259
|
readonly port?: number | undefined;
|
|
1285
1260
|
readonly env?: readonly string[] | undefined;
|
|
1261
|
+
readonly name: string;
|
|
1286
1262
|
readonly resources?: readonly string[] | undefined;
|
|
1287
|
-
readonly instances?: number | undefined;
|
|
1288
1263
|
readonly max_instances?: number | undefined;
|
|
1289
1264
|
readonly command?: string | undefined;
|
|
1290
|
-
readonly
|
|
1265
|
+
readonly type?: "function" | "web" | "worker" | "cron" | undefined;
|
|
1266
|
+
readonly instances?: number | undefined;
|
|
1267
|
+
readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
|
|
1291
1268
|
readonly cron_schedule?: string | undefined;
|
|
1292
1269
|
readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
|
|
1293
1270
|
readonly scale_to_zero?: boolean | undefined;
|
|
1294
1271
|
readonly idle_timeout_seconds?: number | undefined;
|
|
1295
1272
|
readonly min_instances?: number | undefined;
|
|
1296
1273
|
}[] | undefined;
|
|
1297
|
-
readonly
|
|
1274
|
+
readonly domains?: readonly {
|
|
1275
|
+
readonly hostname: string;
|
|
1276
|
+
readonly service: string;
|
|
1277
|
+
readonly redirect_https?: boolean | undefined;
|
|
1278
|
+
readonly www_redirect?: "apex" | "www" | "none" | undefined;
|
|
1279
|
+
readonly aliases?: readonly string[] | undefined;
|
|
1280
|
+
}[] | undefined;
|
|
1281
|
+
};
|
|
1282
|
+
}, {
|
|
1283
|
+
readonly production?: {
|
|
1298
1284
|
readonly env?: {
|
|
1299
1285
|
readonly [x: string]: {
|
|
1300
1286
|
readonly value: string;
|
|
@@ -1305,11 +1291,12 @@ export declare const SylphxManifest: Schema.Struct<{
|
|
|
1305
1291
|
readonly attr: string;
|
|
1306
1292
|
};
|
|
1307
1293
|
} | undefined;
|
|
1294
|
+
readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
|
|
1308
1295
|
readonly build?: {
|
|
1309
|
-
readonly context?: string | undefined;
|
|
1310
|
-
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
1311
1296
|
readonly dockerfile?: string | undefined;
|
|
1312
|
-
readonly buildpack?: "auto" | "
|
|
1297
|
+
readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
|
|
1298
|
+
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
1299
|
+
readonly context?: string | undefined;
|
|
1313
1300
|
readonly docker_context?: string | undefined;
|
|
1314
1301
|
readonly build_command?: string | undefined;
|
|
1315
1302
|
readonly ignore?: readonly string[] | undefined;
|
|
@@ -1317,38 +1304,37 @@ export declare const SylphxManifest: Schema.Struct<{
|
|
|
1317
1304
|
readonly reproducible?: boolean | undefined;
|
|
1318
1305
|
} | undefined;
|
|
1319
1306
|
readonly deploy?: {
|
|
1320
|
-
readonly strategy?: "
|
|
1307
|
+
readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
|
|
1321
1308
|
readonly release_command?: string | undefined;
|
|
1322
1309
|
readonly health_check_path?: string | undefined;
|
|
1323
1310
|
readonly health_check_timeout?: number | undefined;
|
|
1324
1311
|
readonly graceful_shutdown?: number | undefined;
|
|
1325
1312
|
} | undefined;
|
|
1326
|
-
};
|
|
1327
|
-
readonly staging?: {
|
|
1328
|
-
readonly domains?: readonly {
|
|
1329
|
-
readonly service: string;
|
|
1330
|
-
readonly hostname: string;
|
|
1331
|
-
readonly redirect_https?: boolean | undefined;
|
|
1332
|
-
readonly www_redirect?: "none" | "apex" | "www" | undefined;
|
|
1333
|
-
readonly aliases?: readonly string[] | undefined;
|
|
1334
|
-
}[] | undefined;
|
|
1335
1313
|
readonly services?: readonly {
|
|
1336
1314
|
readonly name: string;
|
|
1337
|
-
readonly type?: "function" | "cron" | "web" | "worker" | undefined;
|
|
1338
1315
|
readonly port?: number | undefined;
|
|
1339
1316
|
readonly env?: readonly string[] | undefined;
|
|
1340
1317
|
readonly resources?: readonly string[] | undefined;
|
|
1341
|
-
readonly instances?: number | undefined;
|
|
1342
1318
|
readonly max_instances?: number | undefined;
|
|
1343
1319
|
readonly command?: string | undefined;
|
|
1344
|
-
readonly
|
|
1320
|
+
readonly type?: "function" | "web" | "worker" | "cron" | undefined;
|
|
1321
|
+
readonly instances?: number | undefined;
|
|
1322
|
+
readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
|
|
1345
1323
|
readonly cron_schedule?: string | undefined;
|
|
1346
1324
|
readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
|
|
1347
1325
|
readonly scale_to_zero?: boolean | undefined;
|
|
1348
1326
|
readonly idle_timeout_seconds?: number | undefined;
|
|
1349
1327
|
readonly min_instances?: number | undefined;
|
|
1350
1328
|
}[] | undefined;
|
|
1351
|
-
readonly
|
|
1329
|
+
readonly domains?: readonly {
|
|
1330
|
+
readonly hostname: string;
|
|
1331
|
+
readonly service: string;
|
|
1332
|
+
readonly redirect_https?: boolean | undefined;
|
|
1333
|
+
readonly www_redirect?: "apex" | "www" | "none" | undefined;
|
|
1334
|
+
readonly aliases?: readonly string[] | undefined;
|
|
1335
|
+
}[] | undefined;
|
|
1336
|
+
};
|
|
1337
|
+
readonly staging?: {
|
|
1352
1338
|
readonly env?: {
|
|
1353
1339
|
readonly [x: string]: {
|
|
1354
1340
|
readonly value: string;
|
|
@@ -1359,11 +1345,12 @@ export declare const SylphxManifest: Schema.Struct<{
|
|
|
1359
1345
|
readonly attr: string;
|
|
1360
1346
|
};
|
|
1361
1347
|
} | undefined;
|
|
1348
|
+
readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
|
|
1362
1349
|
readonly build?: {
|
|
1363
|
-
readonly context?: string | undefined;
|
|
1364
|
-
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
1365
1350
|
readonly dockerfile?: string | undefined;
|
|
1366
|
-
readonly buildpack?: "auto" | "
|
|
1351
|
+
readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
|
|
1352
|
+
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
1353
|
+
readonly context?: string | undefined;
|
|
1367
1354
|
readonly docker_context?: string | undefined;
|
|
1368
1355
|
readonly build_command?: string | undefined;
|
|
1369
1356
|
readonly ignore?: readonly string[] | undefined;
|
|
@@ -1371,38 +1358,37 @@ export declare const SylphxManifest: Schema.Struct<{
|
|
|
1371
1358
|
readonly reproducible?: boolean | undefined;
|
|
1372
1359
|
} | undefined;
|
|
1373
1360
|
readonly deploy?: {
|
|
1374
|
-
readonly strategy?: "
|
|
1361
|
+
readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
|
|
1375
1362
|
readonly release_command?: string | undefined;
|
|
1376
1363
|
readonly health_check_path?: string | undefined;
|
|
1377
1364
|
readonly health_check_timeout?: number | undefined;
|
|
1378
1365
|
readonly graceful_shutdown?: number | undefined;
|
|
1379
1366
|
} | undefined;
|
|
1380
|
-
};
|
|
1381
|
-
readonly production?: {
|
|
1382
|
-
readonly domains?: readonly {
|
|
1383
|
-
readonly service: string;
|
|
1384
|
-
readonly hostname: string;
|
|
1385
|
-
readonly redirect_https?: boolean | undefined;
|
|
1386
|
-
readonly www_redirect?: "none" | "apex" | "www" | undefined;
|
|
1387
|
-
readonly aliases?: readonly string[] | undefined;
|
|
1388
|
-
}[] | undefined;
|
|
1389
1367
|
readonly services?: readonly {
|
|
1390
1368
|
readonly name: string;
|
|
1391
|
-
readonly type?: "function" | "cron" | "web" | "worker" | undefined;
|
|
1392
1369
|
readonly port?: number | undefined;
|
|
1393
1370
|
readonly env?: readonly string[] | undefined;
|
|
1394
1371
|
readonly resources?: readonly string[] | undefined;
|
|
1395
|
-
readonly instances?: number | undefined;
|
|
1396
1372
|
readonly max_instances?: number | undefined;
|
|
1397
1373
|
readonly command?: string | undefined;
|
|
1398
|
-
readonly
|
|
1374
|
+
readonly type?: "function" | "web" | "worker" | "cron" | undefined;
|
|
1375
|
+
readonly instances?: number | undefined;
|
|
1376
|
+
readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
|
|
1399
1377
|
readonly cron_schedule?: string | undefined;
|
|
1400
1378
|
readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
|
|
1401
1379
|
readonly scale_to_zero?: boolean | undefined;
|
|
1402
1380
|
readonly idle_timeout_seconds?: number | undefined;
|
|
1403
1381
|
readonly min_instances?: number | undefined;
|
|
1404
1382
|
}[] | undefined;
|
|
1405
|
-
readonly
|
|
1383
|
+
readonly domains?: readonly {
|
|
1384
|
+
readonly hostname: string;
|
|
1385
|
+
readonly service: string;
|
|
1386
|
+
readonly redirect_https?: boolean | undefined;
|
|
1387
|
+
readonly www_redirect?: "apex" | "www" | "none" | undefined;
|
|
1388
|
+
readonly aliases?: readonly string[] | undefined;
|
|
1389
|
+
}[] | undefined;
|
|
1390
|
+
};
|
|
1391
|
+
readonly preview?: {
|
|
1406
1392
|
readonly env?: {
|
|
1407
1393
|
readonly [x: string]: {
|
|
1408
1394
|
readonly value: string;
|
|
@@ -1413,11 +1399,12 @@ export declare const SylphxManifest: Schema.Struct<{
|
|
|
1413
1399
|
readonly attr: string;
|
|
1414
1400
|
};
|
|
1415
1401
|
} | undefined;
|
|
1402
|
+
readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
|
|
1416
1403
|
readonly build?: {
|
|
1417
|
-
readonly context?: string | undefined;
|
|
1418
|
-
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
1419
1404
|
readonly dockerfile?: string | undefined;
|
|
1420
|
-
readonly buildpack?: "auto" | "
|
|
1405
|
+
readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
|
|
1406
|
+
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
1407
|
+
readonly context?: string | undefined;
|
|
1421
1408
|
readonly docker_context?: string | undefined;
|
|
1422
1409
|
readonly build_command?: string | undefined;
|
|
1423
1410
|
readonly ignore?: readonly string[] | undefined;
|
|
@@ -1425,38 +1412,37 @@ export declare const SylphxManifest: Schema.Struct<{
|
|
|
1425
1412
|
readonly reproducible?: boolean | undefined;
|
|
1426
1413
|
} | undefined;
|
|
1427
1414
|
readonly deploy?: {
|
|
1428
|
-
readonly strategy?: "
|
|
1415
|
+
readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
|
|
1429
1416
|
readonly release_command?: string | undefined;
|
|
1430
1417
|
readonly health_check_path?: string | undefined;
|
|
1431
1418
|
readonly health_check_timeout?: number | undefined;
|
|
1432
1419
|
readonly graceful_shutdown?: number | undefined;
|
|
1433
1420
|
} | undefined;
|
|
1434
|
-
};
|
|
1435
|
-
readonly preview?: {
|
|
1436
|
-
readonly domains?: readonly {
|
|
1437
|
-
readonly service: string;
|
|
1438
|
-
readonly hostname: string;
|
|
1439
|
-
readonly redirect_https?: boolean | undefined;
|
|
1440
|
-
readonly www_redirect?: "none" | "apex" | "www" | undefined;
|
|
1441
|
-
readonly aliases?: readonly string[] | undefined;
|
|
1442
|
-
}[] | undefined;
|
|
1443
1421
|
readonly services?: readonly {
|
|
1444
1422
|
readonly name: string;
|
|
1445
|
-
readonly type?: "function" | "cron" | "web" | "worker" | undefined;
|
|
1446
1423
|
readonly port?: number | undefined;
|
|
1447
1424
|
readonly env?: readonly string[] | undefined;
|
|
1448
1425
|
readonly resources?: readonly string[] | undefined;
|
|
1449
|
-
readonly instances?: number | undefined;
|
|
1450
1426
|
readonly max_instances?: number | undefined;
|
|
1451
1427
|
readonly command?: string | undefined;
|
|
1452
|
-
readonly
|
|
1428
|
+
readonly type?: "function" | "web" | "worker" | "cron" | undefined;
|
|
1429
|
+
readonly instances?: number | undefined;
|
|
1430
|
+
readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
|
|
1453
1431
|
readonly cron_schedule?: string | undefined;
|
|
1454
1432
|
readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
|
|
1455
1433
|
readonly scale_to_zero?: boolean | undefined;
|
|
1456
1434
|
readonly idle_timeout_seconds?: number | undefined;
|
|
1457
1435
|
readonly min_instances?: number | undefined;
|
|
1458
1436
|
}[] | undefined;
|
|
1459
|
-
readonly
|
|
1437
|
+
readonly domains?: readonly {
|
|
1438
|
+
readonly hostname: string;
|
|
1439
|
+
readonly service: string;
|
|
1440
|
+
readonly redirect_https?: boolean | undefined;
|
|
1441
|
+
readonly www_redirect?: "apex" | "www" | "none" | undefined;
|
|
1442
|
+
readonly aliases?: readonly string[] | undefined;
|
|
1443
|
+
}[] | undefined;
|
|
1444
|
+
};
|
|
1445
|
+
readonly development?: {
|
|
1460
1446
|
readonly env?: {
|
|
1461
1447
|
readonly [x: string]: {
|
|
1462
1448
|
readonly value: string;
|
|
@@ -1467,11 +1453,12 @@ export declare const SylphxManifest: Schema.Struct<{
|
|
|
1467
1453
|
readonly attr: string;
|
|
1468
1454
|
};
|
|
1469
1455
|
} | undefined;
|
|
1456
|
+
readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
|
|
1470
1457
|
readonly build?: {
|
|
1471
|
-
readonly context?: string | undefined;
|
|
1472
|
-
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
1473
1458
|
readonly dockerfile?: string | undefined;
|
|
1474
|
-
readonly buildpack?: "auto" | "
|
|
1459
|
+
readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
|
|
1460
|
+
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
1461
|
+
readonly context?: string | undefined;
|
|
1475
1462
|
readonly docker_context?: string | undefined;
|
|
1476
1463
|
readonly build_command?: string | undefined;
|
|
1477
1464
|
readonly ignore?: readonly string[] | undefined;
|
|
@@ -1479,12 +1466,35 @@ export declare const SylphxManifest: Schema.Struct<{
|
|
|
1479
1466
|
readonly reproducible?: boolean | undefined;
|
|
1480
1467
|
} | undefined;
|
|
1481
1468
|
readonly deploy?: {
|
|
1482
|
-
readonly strategy?: "
|
|
1469
|
+
readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
|
|
1483
1470
|
readonly release_command?: string | undefined;
|
|
1484
1471
|
readonly health_check_path?: string | undefined;
|
|
1485
1472
|
readonly health_check_timeout?: number | undefined;
|
|
1486
1473
|
readonly graceful_shutdown?: number | undefined;
|
|
1487
1474
|
} | undefined;
|
|
1475
|
+
readonly services?: readonly {
|
|
1476
|
+
readonly name: string;
|
|
1477
|
+
readonly port?: number | undefined;
|
|
1478
|
+
readonly env?: readonly string[] | undefined;
|
|
1479
|
+
readonly resources?: readonly string[] | undefined;
|
|
1480
|
+
readonly max_instances?: number | undefined;
|
|
1481
|
+
readonly command?: string | undefined;
|
|
1482
|
+
readonly type?: "function" | "web" | "worker" | "cron" | undefined;
|
|
1483
|
+
readonly instances?: number | undefined;
|
|
1484
|
+
readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
|
|
1485
|
+
readonly cron_schedule?: string | undefined;
|
|
1486
|
+
readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
|
|
1487
|
+
readonly scale_to_zero?: boolean | undefined;
|
|
1488
|
+
readonly idle_timeout_seconds?: number | undefined;
|
|
1489
|
+
readonly min_instances?: number | undefined;
|
|
1490
|
+
}[] | undefined;
|
|
1491
|
+
readonly domains?: readonly {
|
|
1492
|
+
readonly hostname: string;
|
|
1493
|
+
readonly service: string;
|
|
1494
|
+
readonly redirect_https?: boolean | undefined;
|
|
1495
|
+
readonly www_redirect?: "apex" | "www" | "none" | undefined;
|
|
1496
|
+
readonly aliases?: readonly string[] | undefined;
|
|
1497
|
+
}[] | undefined;
|
|
1488
1498
|
};
|
|
1489
1499
|
}, never>>;
|
|
1490
1500
|
resources: Schema.optional<Schema.Struct<{
|