@sylphx/contract 0.5.0 → 0.5.1

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 (38) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/dist/endpoints/databases.d.ts +2 -2
  3. package/dist/endpoints/kv-admin.d.ts +1 -1
  4. package/dist/endpoints/kv-admin.js +1 -1
  5. package/dist/endpoints/kv.d.ts +19 -13
  6. package/dist/endpoints/kv.d.ts.map +1 -1
  7. package/dist/endpoints/kv.js +9 -9
  8. package/dist/endpoints/notifications.d.ts +7 -0
  9. package/dist/endpoints/notifications.d.ts.map +1 -1
  10. package/dist/endpoints/project-manifest.d.ts +110 -4
  11. package/dist/endpoints/project-manifest.d.ts.map +1 -1
  12. package/dist/endpoints/storage.d.ts +18 -0
  13. package/dist/endpoints/storage.d.ts.map +1 -1
  14. package/dist/endpoints/storage.js +11 -1
  15. package/dist/index.d.ts +155 -18
  16. package/dist/index.d.ts.map +1 -1
  17. package/dist/schemas/auth.d.ts +1 -0
  18. package/dist/schemas/auth.d.ts.map +1 -1
  19. package/dist/schemas/auth.js +1 -0
  20. package/dist/schemas/database.d.ts +2 -2
  21. package/dist/schemas/database.js +2 -2
  22. package/dist/schemas/kv-admin.d.ts +1 -1
  23. package/dist/schemas/kv-admin.js +1 -1
  24. package/dist/schemas/kv.d.ts +12 -4
  25. package/dist/schemas/kv.d.ts.map +1 -1
  26. package/dist/schemas/kv.js +17 -5
  27. package/dist/schemas/notifications.d.ts +11 -0
  28. package/dist/schemas/notifications.d.ts.map +1 -1
  29. package/dist/schemas/notifications.js +11 -0
  30. package/dist/schemas/project-manifest.d.ts +226 -9
  31. package/dist/schemas/project-manifest.d.ts.map +1 -1
  32. package/dist/schemas/project-manifest.js +75 -3
  33. package/dist/schemas/resources.d.ts +4 -4
  34. package/dist/schemas/resources.js +2 -2
  35. package/dist/schemas/storage.d.ts +29 -0
  36. package/dist/schemas/storage.d.ts.map +1 -1
  37. package/dist/schemas/storage.js +19 -0
  38. package/package.json +1 -1
@@ -4,7 +4,7 @@
4
4
  * Plane: `management`. The manifest is the user-facing, editable surface
5
5
  * declared in Git at repo root. The CLI parses `sylphx.toml` via Bun's
6
6
  * built-in TOML parser, validates against this schema, and pushes to the
7
- * Management API (`PUT /projects/:id/manifest`, landing in a follow-up PR).
7
+ * Management API (`PUT /projects/:id/manifest`).
8
8
  *
9
9
  * Slug-valued (not TypeID) on purpose: the manifest is what users type,
10
10
  * so slugs are the DX-correct surface. The server maps slugs → TypeIDs
@@ -37,6 +37,9 @@ export type BuildMachineSize = typeof BuildMachineSize.Type;
37
37
  /** Buildpack identifier per ADR-071. `auto` lets the platform detect. */
38
38
  export declare const BuildpackName: Schema.Literal<["auto", "ruby", "node", "python", "static", "dockerfile"]>;
39
39
  export type BuildpackName = typeof BuildpackName.Type;
40
+ /** Build strategy hint. `dockerfile` pins the build to the declared Dockerfile. */
41
+ export declare const BuildStrategy: Schema.Literal<["auto", "buildpack", "dockerfile", "nixpacks"]>;
42
+ export type BuildStrategy = typeof BuildStrategy.Type;
40
43
  /** Service type discriminant — drives K8s workload shape (Deployment/Job). */
41
44
  export declare const ServiceType: Schema.Literal<["web", "worker", "cron", "function"]>;
42
45
  export type ServiceType = typeof ServiceType.Type;
@@ -68,8 +71,12 @@ export declare const ManifestBuildSection: Schema.Struct<{
68
71
  * package.json / Gemfile / requirements.txt / Dockerfile.
69
72
  */
70
73
  buildpack: Schema.optional<Schema.Literal<["auto", "ruby", "node", "python", "static", "dockerfile"]>>;
74
+ /** High-level build strategy alias used by current sylphx.toml files. */
75
+ strategy: Schema.optional<Schema.Literal<["auto", "buildpack", "dockerfile", "nixpacks"]>>;
71
76
  /** Override path to Dockerfile (implies buildpack=dockerfile). */
72
77
  dockerfile: Schema.optional<typeof Schema.String>;
78
+ /** Docker build context path. `context` is the product-facing TOML alias. */
79
+ context: Schema.optional<typeof Schema.String>;
73
80
  /** Docker build context path (default: repo root). */
74
81
  docker_context: Schema.optional<typeof Schema.String>;
75
82
  /** Custom build command; overrides buildpack default. */
@@ -98,10 +105,38 @@ export declare const ManifestDeploySection: Schema.Struct<{
98
105
  graceful_shutdown: Schema.optional<Schema.filter<Schema.filter<typeof Schema.Number>>>;
99
106
  }>;
100
107
  export type ManifestDeploySection = typeof ManifestDeploySection.Type;
108
+ export declare const ManifestServiceBuildSection: Schema.Struct<{
109
+ strategy: Schema.optional<Schema.Literal<["auto", "buildpack", "dockerfile", "nixpacks"]>>;
110
+ dockerfile: Schema.optional<typeof Schema.String>;
111
+ context: Schema.optional<typeof Schema.String>;
112
+ docker_context: Schema.optional<typeof Schema.String>;
113
+ build_command: Schema.optional<typeof Schema.String>;
114
+ }>;
115
+ export type ManifestServiceBuildSection = typeof ManifestServiceBuildSection.Type;
116
+ export declare const ManifestServiceHealthSection: Schema.Struct<{
117
+ mode: Schema.optional<Schema.Literal<["http", "tcp", "command"]>>;
118
+ path: Schema.optional<typeof Schema.String>;
119
+ command: Schema.optional<typeof Schema.String>;
120
+ }>;
121
+ export type ManifestServiceHealthSection = typeof ManifestServiceHealthSection.Type;
101
122
  export declare const ManifestServiceSection: Schema.Struct<{
102
123
  /** Service name — unique within project. Used as K8s Deployment name. */
103
124
  name: Schema.filter<Schema.filter<Schema.filter<typeof Schema.String>>>;
104
125
  type: Schema.Literal<["web", "worker", "cron", "function"]>;
126
+ /** Per-service build override. Root [build] remains the default. */
127
+ build: Schema.optional<Schema.Struct<{
128
+ strategy: Schema.optional<Schema.Literal<["auto", "buildpack", "dockerfile", "nixpacks"]>>;
129
+ dockerfile: Schema.optional<typeof Schema.String>;
130
+ context: Schema.optional<typeof Schema.String>;
131
+ docker_context: Schema.optional<typeof Schema.String>;
132
+ build_command: Schema.optional<typeof Schema.String>;
133
+ }>>;
134
+ /** Per-service health contract. Platform owns probe translation. */
135
+ health: Schema.optional<Schema.Struct<{
136
+ mode: Schema.optional<Schema.Literal<["http", "tcp", "command"]>>;
137
+ path: Schema.optional<typeof Schema.String>;
138
+ command: Schema.optional<typeof Schema.String>;
139
+ }>>;
105
140
  /** Container start command. */
106
141
  command: Schema.optional<typeof Schema.String>;
107
142
  /** Internal container port; required for `web`. */
@@ -141,8 +176,34 @@ export declare const ManifestServiceSection: Schema.Struct<{
141
176
  env: Schema.optional<Schema.Array$<typeof Schema.String>>;
142
177
  /** Per-service resource bindings (by resource name). */
143
178
  resources: Schema.optional<Schema.Array$<Schema.filter<Schema.filter<Schema.filter<typeof Schema.String>>>>>;
179
+ /** Paths whose changes should trigger this service in monorepos. */
180
+ watch_paths: Schema.optional<Schema.Array$<typeof Schema.String>>;
144
181
  }>;
145
182
  export type ManifestServiceSection = typeof ManifestServiceSection.Type;
183
+ export declare const ManifestMigrationEngine: Schema.Literal<["atlas", "drizzle", "prisma", "alembic", "flyway", "goose", "sqlx", "custom"]>;
184
+ export type ManifestMigrationEngine = typeof ManifestMigrationEngine.Type;
185
+ export declare const ManifestMigrationDestructivePolicy: Schema.Literal<["require-approval", "allow"]>;
186
+ export type ManifestMigrationDestructivePolicy = typeof ManifestMigrationDestructivePolicy.Type;
187
+ export declare const ManifestMigrationsSection: Schema.Struct<{
188
+ engine: Schema.Literal<["atlas", "drizzle", "prisma", "alembic", "flyway", "goose", "sqlx", "custom"]>;
189
+ dir: Schema.optional<typeof Schema.String>;
190
+ image: Schema.filter<Schema.filter<Schema.filter<typeof Schema.String>>>;
191
+ command: Schema.filter<typeof Schema.String>;
192
+ timeout: Schema.optional<typeof Schema.String>;
193
+ destructive_policy: Schema.optional<Schema.Literal<["require-approval", "allow"]>>;
194
+ }>;
195
+ export type ManifestMigrationsSection = typeof ManifestMigrationsSection.Type;
196
+ export declare const ManifestDatabaseSection: Schema.Struct<{
197
+ migrations: Schema.optional<Schema.Struct<{
198
+ engine: Schema.Literal<["atlas", "drizzle", "prisma", "alembic", "flyway", "goose", "sqlx", "custom"]>;
199
+ dir: Schema.optional<typeof Schema.String>;
200
+ image: Schema.filter<Schema.filter<Schema.filter<typeof Schema.String>>>;
201
+ command: Schema.filter<typeof Schema.String>;
202
+ timeout: Schema.optional<typeof Schema.String>;
203
+ destructive_policy: Schema.optional<Schema.Literal<["require-approval", "allow"]>>;
204
+ }>>;
205
+ }>;
206
+ export type ManifestDatabaseSection = typeof ManifestDatabaseSection.Type;
146
207
  /**
147
208
  * Env var value — literal, secret reference, or resource attribute.
148
209
  * Values are NEVER stored in the manifest — always by reference.
@@ -171,21 +232,31 @@ export declare const ManifestDomainSection: Schema.Struct<{
171
232
  aliases: Schema.optional<Schema.Array$<typeof Schema.String>>;
172
233
  }>;
173
234
  export type ManifestDomainSection = typeof ManifestDomainSection.Type;
174
- export declare const PostgresTier: Schema.Literal<["nano", "micro", "standard", "large", "xl"]>;
235
+ export declare const ManifestManagedResourceTier: Schema.Literal<["nano", "micro", "standard", "large", "xl", "hobby", "starter", "pro", "business", "enterprise", "enterprise-2x", "enterprise-4x"]>;
236
+ export type ManifestManagedResourceTier = typeof ManifestManagedResourceTier.Type;
237
+ export declare const PostgresTier: Schema.Literal<["nano", "micro", "standard", "large", "xl", "hobby", "starter", "pro", "business", "enterprise", "enterprise-2x", "enterprise-4x"]>;
175
238
  export type PostgresTier = typeof PostgresTier.Type;
176
239
  export declare const PostgresVersion: Schema.Literal<["15", "16", "17"]>;
177
240
  export type PostgresVersion = typeof PostgresVersion.Type;
178
- export declare const SearchTier: Schema.Literal<["micro", "standard"]>;
241
+ export declare const SearchTier: Schema.Literal<["nano", "micro", "standard", "large", "xl", "hobby", "starter", "pro", "business", "enterprise", "enterprise-2x", "enterprise-4x"]>;
179
242
  export type SearchTier = typeof SearchTier.Type;
243
+ export declare const KvTier: Schema.Literal<["nano", "micro", "standard", "large", "xl", "hobby", "starter", "pro", "business", "enterprise", "enterprise-2x", "enterprise-4x"]>;
244
+ export type KvTier = typeof KvTier.Type;
245
+ export declare const ManifestVolumeTier: Schema.Literal<["nano", "micro", "standard", "large", "xl", "hobby", "starter", "pro", "business", "enterprise", "enterprise-2x", "enterprise-4x"]>;
246
+ export type ManifestVolumeTier = typeof ManifestVolumeTier.Type;
247
+ export declare const ManifestVolumeAccessMode: Schema.Literal<["ReadWriteOnce", "ReadWriteMany"]>;
248
+ export type ManifestVolumeAccessMode = typeof ManifestVolumeAccessMode.Type;
180
249
  export declare const ManifestDatabaseEngine: Schema.Literal<["postgres"]>;
181
250
  export type ManifestDatabaseEngine = typeof ManifestDatabaseEngine.Type;
251
+ export declare const ManifestKvEngine: Schema.Literal<["valkey"]>;
252
+ export type ManifestKvEngine = typeof ManifestKvEngine.Type;
182
253
  export declare const ManifestSearchEngine: Schema.Literal<["typesense"]>;
183
254
  export type ManifestSearchEngine = typeof ManifestSearchEngine.Type;
184
255
  export declare const ManifestDatabaseResource: Schema.Struct<{
185
256
  /** Capability-specific engine. PostgreSQL is the first supported database engine. */
186
257
  engine: Schema.optional<Schema.Literal<["postgres"]>>;
187
258
  /** CNPG tier; IMMUTABLE after creation. */
188
- tier: Schema.Literal<["nano", "micro", "standard", "large", "xl"]>;
259
+ tier: Schema.Literal<["nano", "micro", "standard", "large", "xl", "hobby", "starter", "pro", "business", "enterprise", "enterprise-2x", "enterprise-4x"]>;
189
260
  storage_gb: Schema.optional<Schema.filter<Schema.filter<typeof Schema.Number>>>;
190
261
  version: Schema.optional<Schema.Literal<["15", "16", "17"]>>;
191
262
  /** Enable CNPG read-replica(s). */
@@ -194,20 +265,48 @@ export declare const ManifestDatabaseResource: Schema.Struct<{
194
265
  branch_on_preview: Schema.optional<typeof Schema.Boolean>;
195
266
  }>;
196
267
  export type ManifestDatabaseResource = typeof ManifestDatabaseResource.Type;
268
+ export declare const ManifestKvResource: Schema.Struct<{
269
+ /** Capability-specific engine. Valkey is the first supported KV engine. */
270
+ engine: Schema.optional<Schema.Literal<["valkey"]>>;
271
+ tier: Schema.Literal<["nano", "micro", "standard", "large", "xl", "hobby", "starter", "pro", "business", "enterprise", "enterprise-2x", "enterprise-4x"]>;
272
+ storage_gb: Schema.optional<Schema.filter<Schema.filter<typeof Schema.Number>>>;
273
+ }>;
274
+ export type ManifestKvResource = typeof ManifestKvResource.Type;
197
275
  export declare const ManifestSearchResource: Schema.Struct<{
198
276
  /** Capability-specific engine. Typesense is the first supported search engine. */
199
277
  engine: Schema.optional<Schema.Literal<["typesense"]>>;
200
- tier: Schema.Literal<["micro", "standard"]>;
278
+ tier: Schema.Literal<["nano", "micro", "standard", "large", "xl", "hobby", "starter", "pro", "business", "enterprise", "enterprise-2x", "enterprise-4x"]>;
201
279
  storage_gb: Schema.optional<Schema.filter<Schema.filter<typeof Schema.Number>>>;
202
280
  nodes: Schema.optional<Schema.filter<Schema.filter<typeof Schema.Number>>>;
203
281
  }>;
204
282
  export type ManifestSearchResource = typeof ManifestSearchResource.Type;
283
+ export declare const ManifestVolumeResource: Schema.Struct<{
284
+ tier: Schema.Literal<["nano", "micro", "standard", "large", "xl", "hobby", "starter", "pro", "business", "enterprise", "enterprise-2x", "enterprise-4x"]>;
285
+ storage_gb: Schema.optional<Schema.filter<Schema.filter<typeof Schema.Number>>>;
286
+ /**
287
+ * ReadWriteMany is required when a volume is shared by multiple sandboxes,
288
+ * workers, or replicas. ReadWriteOnce remains valid for single-writer app
289
+ * disks.
290
+ */
291
+ access_mode: Schema.optional<Schema.Literal<["ReadWriteOnce", "ReadWriteMany"]>>;
292
+ /**
293
+ * Optional env-facing path metadata. This does not mount the volume into an
294
+ * app service by itself; service/task mounts stay explicit bindings.
295
+ */
296
+ mount_path: Schema.optional<Schema.filter<typeof Schema.String>>;
297
+ /**
298
+ * Binding role controls env var prefix. Example: role="workspace" emits
299
+ * WORKSPACE_VOLUME_ID for a volume binding.
300
+ */
301
+ role: Schema.optional<Schema.filter<Schema.filter<Schema.filter<typeof Schema.String>>>>;
302
+ }>;
303
+ export type ManifestVolumeResource = typeof ManifestVolumeResource.Type;
205
304
  export declare const ManifestResourcesSection: Schema.Struct<{
206
305
  database: Schema.optional<Schema.Struct<{
207
306
  /** Capability-specific engine. PostgreSQL is the first supported database engine. */
208
307
  engine: Schema.optional<Schema.Literal<["postgres"]>>;
209
308
  /** CNPG tier; IMMUTABLE after creation. */
210
- tier: Schema.Literal<["nano", "micro", "standard", "large", "xl"]>;
309
+ tier: Schema.Literal<["nano", "micro", "standard", "large", "xl", "hobby", "starter", "pro", "business", "enterprise", "enterprise-2x", "enterprise-4x"]>;
211
310
  storage_gb: Schema.optional<Schema.filter<Schema.filter<typeof Schema.Number>>>;
212
311
  version: Schema.optional<Schema.Literal<["15", "16", "17"]>>;
213
312
  /** Enable CNPG read-replica(s). */
@@ -215,13 +314,39 @@ export declare const ManifestResourcesSection: Schema.Struct<{
215
314
  /** Branch-per-preview (P0 gap #4 sibling). */
216
315
  branch_on_preview: Schema.optional<typeof Schema.Boolean>;
217
316
  }>>;
317
+ kv: Schema.optional<Schema.Struct<{
318
+ /** Capability-specific engine. Valkey is the first supported KV engine. */
319
+ engine: Schema.optional<Schema.Literal<["valkey"]>>;
320
+ tier: Schema.Literal<["nano", "micro", "standard", "large", "xl", "hobby", "starter", "pro", "business", "enterprise", "enterprise-2x", "enterprise-4x"]>;
321
+ storage_gb: Schema.optional<Schema.filter<Schema.filter<typeof Schema.Number>>>;
322
+ }>>;
218
323
  search: Schema.optional<Schema.Struct<{
219
324
  /** Capability-specific engine. Typesense is the first supported search engine. */
220
325
  engine: Schema.optional<Schema.Literal<["typesense"]>>;
221
- tier: Schema.Literal<["micro", "standard"]>;
326
+ tier: Schema.Literal<["nano", "micro", "standard", "large", "xl", "hobby", "starter", "pro", "business", "enterprise", "enterprise-2x", "enterprise-4x"]>;
222
327
  storage_gb: Schema.optional<Schema.filter<Schema.filter<typeof Schema.Number>>>;
223
328
  nodes: Schema.optional<Schema.filter<Schema.filter<typeof Schema.Number>>>;
224
329
  }>>;
330
+ volume: Schema.optional<Schema.Struct<{
331
+ tier: Schema.Literal<["nano", "micro", "standard", "large", "xl", "hobby", "starter", "pro", "business", "enterprise", "enterprise-2x", "enterprise-4x"]>;
332
+ storage_gb: Schema.optional<Schema.filter<Schema.filter<typeof Schema.Number>>>;
333
+ /**
334
+ * ReadWriteMany is required when a volume is shared by multiple sandboxes,
335
+ * workers, or replicas. ReadWriteOnce remains valid for single-writer app
336
+ * disks.
337
+ */
338
+ access_mode: Schema.optional<Schema.Literal<["ReadWriteOnce", "ReadWriteMany"]>>;
339
+ /**
340
+ * Optional env-facing path metadata. This does not mount the volume into an
341
+ * app service by itself; service/task mounts stay explicit bindings.
342
+ */
343
+ mount_path: Schema.optional<Schema.filter<typeof Schema.String>>;
344
+ /**
345
+ * Binding role controls env var prefix. Example: role="workspace" emits
346
+ * WORKSPACE_VOLUME_ID for a volume binding.
347
+ */
348
+ role: Schema.optional<Schema.filter<Schema.filter<Schema.filter<typeof Schema.String>>>>;
349
+ }>>;
225
350
  }>;
226
351
  export type ManifestResourcesSection = typeof ManifestResourcesSection.Type;
227
352
  export declare const ManifestCiSection: Schema.Struct<{
@@ -276,8 +401,12 @@ export declare const ManifestEnvironmentOverride: Schema.Struct<{
276
401
  * package.json / Gemfile / requirements.txt / Dockerfile.
277
402
  */
278
403
  buildpack: Schema.optional<Schema.Literal<["auto", "ruby", "node", "python", "static", "dockerfile"]>>;
404
+ /** High-level build strategy alias used by current sylphx.toml files. */
405
+ strategy: Schema.optional<Schema.Literal<["auto", "buildpack", "dockerfile", "nixpacks"]>>;
279
406
  /** Override path to Dockerfile (implies buildpack=dockerfile). */
280
407
  dockerfile: Schema.optional<typeof Schema.String>;
408
+ /** Docker build context path. `context` is the product-facing TOML alias. */
409
+ context: Schema.optional<typeof Schema.String>;
281
410
  /** Docker build context path (default: repo root). */
282
411
  docker_context: Schema.optional<typeof Schema.String>;
283
412
  /** Custom build command; overrides buildpack default. */
@@ -382,6 +511,8 @@ export declare const ManifestEnvironmentsMap: Schema.SchemaClass<{
382
511
  };
383
512
  } | undefined;
384
513
  readonly build?: {
514
+ readonly context?: string | undefined;
515
+ readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
385
516
  readonly dockerfile?: string | undefined;
386
517
  readonly buildpack?: "auto" | "static" | "ruby" | "node" | "python" | "dockerfile" | undefined;
387
518
  readonly docker_context?: string | undefined;
@@ -434,6 +565,8 @@ export declare const ManifestEnvironmentsMap: Schema.SchemaClass<{
434
565
  };
435
566
  } | undefined;
436
567
  readonly build?: {
568
+ readonly context?: string | undefined;
569
+ readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
437
570
  readonly dockerfile?: string | undefined;
438
571
  readonly buildpack?: "auto" | "static" | "ruby" | "node" | "python" | "dockerfile" | undefined;
439
572
  readonly docker_context?: string | undefined;
@@ -486,6 +619,8 @@ export declare const ManifestEnvironmentsMap: Schema.SchemaClass<{
486
619
  };
487
620
  } | undefined;
488
621
  readonly build?: {
622
+ readonly context?: string | undefined;
623
+ readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
489
624
  readonly dockerfile?: string | undefined;
490
625
  readonly buildpack?: "auto" | "static" | "ruby" | "node" | "python" | "dockerfile" | undefined;
491
626
  readonly docker_context?: string | undefined;
@@ -538,6 +673,8 @@ export declare const ManifestEnvironmentsMap: Schema.SchemaClass<{
538
673
  };
539
674
  } | undefined;
540
675
  readonly build?: {
676
+ readonly context?: string | undefined;
677
+ readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
541
678
  readonly dockerfile?: string | undefined;
542
679
  readonly buildpack?: "auto" | "static" | "ruby" | "node" | "python" | "dockerfile" | undefined;
543
680
  readonly docker_context?: string | undefined;
@@ -591,6 +728,8 @@ export declare const ManifestEnvironmentsMap: Schema.SchemaClass<{
591
728
  };
592
729
  } | undefined;
593
730
  readonly build?: {
731
+ readonly context?: string | undefined;
732
+ readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
594
733
  readonly dockerfile?: string | undefined;
595
734
  readonly buildpack?: "auto" | "static" | "ruby" | "node" | "python" | "dockerfile" | undefined;
596
735
  readonly docker_context?: string | undefined;
@@ -643,6 +782,8 @@ export declare const ManifestEnvironmentsMap: Schema.SchemaClass<{
643
782
  };
644
783
  } | undefined;
645
784
  readonly build?: {
785
+ readonly context?: string | undefined;
786
+ readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
646
787
  readonly dockerfile?: string | undefined;
647
788
  readonly buildpack?: "auto" | "static" | "ruby" | "node" | "python" | "dockerfile" | undefined;
648
789
  readonly docker_context?: string | undefined;
@@ -695,6 +836,8 @@ export declare const ManifestEnvironmentsMap: Schema.SchemaClass<{
695
836
  };
696
837
  } | undefined;
697
838
  readonly build?: {
839
+ readonly context?: string | undefined;
840
+ readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
698
841
  readonly dockerfile?: string | undefined;
699
842
  readonly buildpack?: "auto" | "static" | "ruby" | "node" | "python" | "dockerfile" | undefined;
700
843
  readonly docker_context?: string | undefined;
@@ -747,6 +890,8 @@ export declare const ManifestEnvironmentsMap: Schema.SchemaClass<{
747
890
  };
748
891
  } | undefined;
749
892
  readonly build?: {
893
+ readonly context?: string | undefined;
894
+ readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
750
895
  readonly dockerfile?: string | undefined;
751
896
  readonly buildpack?: "auto" | "static" | "ruby" | "node" | "python" | "dockerfile" | undefined;
752
897
  readonly docker_context?: string | undefined;
@@ -793,8 +938,12 @@ export declare const SylphxManifest: Schema.Struct<{
793
938
  * package.json / Gemfile / requirements.txt / Dockerfile.
794
939
  */
795
940
  buildpack: Schema.optional<Schema.Literal<["auto", "ruby", "node", "python", "static", "dockerfile"]>>;
941
+ /** High-level build strategy alias used by current sylphx.toml files. */
942
+ strategy: Schema.optional<Schema.Literal<["auto", "buildpack", "dockerfile", "nixpacks"]>>;
796
943
  /** Override path to Dockerfile (implies buildpack=dockerfile). */
797
944
  dockerfile: Schema.optional<typeof Schema.String>;
945
+ /** Docker build context path. `context` is the product-facing TOML alias. */
946
+ context: Schema.optional<typeof Schema.String>;
798
947
  /** Docker build context path (default: repo root). */
799
948
  docker_context: Schema.optional<typeof Schema.String>;
800
949
  /** Custom build command; overrides buildpack default. */
@@ -825,6 +974,20 @@ export declare const SylphxManifest: Schema.Struct<{
825
974
  /** Service name — unique within project. Used as K8s Deployment name. */
826
975
  name: Schema.filter<Schema.filter<Schema.filter<typeof Schema.String>>>;
827
976
  type: Schema.Literal<["web", "worker", "cron", "function"]>;
977
+ /** Per-service build override. Root [build] remains the default. */
978
+ build: Schema.optional<Schema.Struct<{
979
+ strategy: Schema.optional<Schema.Literal<["auto", "buildpack", "dockerfile", "nixpacks"]>>;
980
+ dockerfile: Schema.optional<typeof Schema.String>;
981
+ context: Schema.optional<typeof Schema.String>;
982
+ docker_context: Schema.optional<typeof Schema.String>;
983
+ build_command: Schema.optional<typeof Schema.String>;
984
+ }>>;
985
+ /** Per-service health contract. Platform owns probe translation. */
986
+ health: Schema.optional<Schema.Struct<{
987
+ mode: Schema.optional<Schema.Literal<["http", "tcp", "command"]>>;
988
+ path: Schema.optional<typeof Schema.String>;
989
+ command: Schema.optional<typeof Schema.String>;
990
+ }>>;
828
991
  /** Container start command. */
829
992
  command: Schema.optional<typeof Schema.String>;
830
993
  /** Internal container port; required for `web`. */
@@ -864,7 +1027,19 @@ export declare const SylphxManifest: Schema.Struct<{
864
1027
  env: Schema.optional<Schema.Array$<typeof Schema.String>>;
865
1028
  /** Per-service resource bindings (by resource name). */
866
1029
  resources: Schema.optional<Schema.Array$<Schema.filter<Schema.filter<Schema.filter<typeof Schema.String>>>>>;
1030
+ /** Paths whose changes should trigger this service in monorepos. */
1031
+ watch_paths: Schema.optional<Schema.Array$<typeof Schema.String>>;
867
1032
  }>>>;
1033
+ database: Schema.optional<Schema.Struct<{
1034
+ migrations: Schema.optional<Schema.Struct<{
1035
+ engine: Schema.Literal<["atlas", "drizzle", "prisma", "alembic", "flyway", "goose", "sqlx", "custom"]>;
1036
+ dir: Schema.optional<typeof Schema.String>;
1037
+ image: Schema.filter<Schema.filter<Schema.filter<typeof Schema.String>>>;
1038
+ command: Schema.filter<typeof Schema.String>;
1039
+ timeout: Schema.optional<typeof Schema.String>;
1040
+ destructive_policy: Schema.optional<Schema.Literal<["require-approval", "allow"]>>;
1041
+ }>>;
1042
+ }>>;
868
1043
  env: Schema.optional<Schema.Record$<typeof Schema.String, Schema.Union<[Schema.Struct<{
869
1044
  value: typeof Schema.String;
870
1045
  }>, Schema.Struct<{
@@ -921,6 +1096,8 @@ export declare const SylphxManifest: Schema.Struct<{
921
1096
  };
922
1097
  } | undefined;
923
1098
  readonly build?: {
1099
+ readonly context?: string | undefined;
1100
+ readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
924
1101
  readonly dockerfile?: string | undefined;
925
1102
  readonly buildpack?: "auto" | "static" | "ruby" | "node" | "python" | "dockerfile" | undefined;
926
1103
  readonly docker_context?: string | undefined;
@@ -973,6 +1150,8 @@ export declare const SylphxManifest: Schema.Struct<{
973
1150
  };
974
1151
  } | undefined;
975
1152
  readonly build?: {
1153
+ readonly context?: string | undefined;
1154
+ readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
976
1155
  readonly dockerfile?: string | undefined;
977
1156
  readonly buildpack?: "auto" | "static" | "ruby" | "node" | "python" | "dockerfile" | undefined;
978
1157
  readonly docker_context?: string | undefined;
@@ -1025,6 +1204,8 @@ export declare const SylphxManifest: Schema.Struct<{
1025
1204
  };
1026
1205
  } | undefined;
1027
1206
  readonly build?: {
1207
+ readonly context?: string | undefined;
1208
+ readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
1028
1209
  readonly dockerfile?: string | undefined;
1029
1210
  readonly buildpack?: "auto" | "static" | "ruby" | "node" | "python" | "dockerfile" | undefined;
1030
1211
  readonly docker_context?: string | undefined;
@@ -1077,6 +1258,8 @@ export declare const SylphxManifest: Schema.Struct<{
1077
1258
  };
1078
1259
  } | undefined;
1079
1260
  readonly build?: {
1261
+ readonly context?: string | undefined;
1262
+ readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
1080
1263
  readonly dockerfile?: string | undefined;
1081
1264
  readonly buildpack?: "auto" | "static" | "ruby" | "node" | "python" | "dockerfile" | undefined;
1082
1265
  readonly docker_context?: string | undefined;
@@ -1130,6 +1313,8 @@ export declare const SylphxManifest: Schema.Struct<{
1130
1313
  };
1131
1314
  } | undefined;
1132
1315
  readonly build?: {
1316
+ readonly context?: string | undefined;
1317
+ readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
1133
1318
  readonly dockerfile?: string | undefined;
1134
1319
  readonly buildpack?: "auto" | "static" | "ruby" | "node" | "python" | "dockerfile" | undefined;
1135
1320
  readonly docker_context?: string | undefined;
@@ -1182,6 +1367,8 @@ export declare const SylphxManifest: Schema.Struct<{
1182
1367
  };
1183
1368
  } | undefined;
1184
1369
  readonly build?: {
1370
+ readonly context?: string | undefined;
1371
+ readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
1185
1372
  readonly dockerfile?: string | undefined;
1186
1373
  readonly buildpack?: "auto" | "static" | "ruby" | "node" | "python" | "dockerfile" | undefined;
1187
1374
  readonly docker_context?: string | undefined;
@@ -1234,6 +1421,8 @@ export declare const SylphxManifest: Schema.Struct<{
1234
1421
  };
1235
1422
  } | undefined;
1236
1423
  readonly build?: {
1424
+ readonly context?: string | undefined;
1425
+ readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
1237
1426
  readonly dockerfile?: string | undefined;
1238
1427
  readonly buildpack?: "auto" | "static" | "ruby" | "node" | "python" | "dockerfile" | undefined;
1239
1428
  readonly docker_context?: string | undefined;
@@ -1286,6 +1475,8 @@ export declare const SylphxManifest: Schema.Struct<{
1286
1475
  };
1287
1476
  } | undefined;
1288
1477
  readonly build?: {
1478
+ readonly context?: string | undefined;
1479
+ readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
1289
1480
  readonly dockerfile?: string | undefined;
1290
1481
  readonly buildpack?: "auto" | "static" | "ruby" | "node" | "python" | "dockerfile" | undefined;
1291
1482
  readonly docker_context?: string | undefined;
@@ -1308,7 +1499,7 @@ export declare const SylphxManifest: Schema.Struct<{
1308
1499
  /** Capability-specific engine. PostgreSQL is the first supported database engine. */
1309
1500
  engine: Schema.optional<Schema.Literal<["postgres"]>>;
1310
1501
  /** CNPG tier; IMMUTABLE after creation. */
1311
- tier: Schema.Literal<["nano", "micro", "standard", "large", "xl"]>;
1502
+ tier: Schema.Literal<["nano", "micro", "standard", "large", "xl", "hobby", "starter", "pro", "business", "enterprise", "enterprise-2x", "enterprise-4x"]>;
1312
1503
  storage_gb: Schema.optional<Schema.filter<Schema.filter<typeof Schema.Number>>>;
1313
1504
  version: Schema.optional<Schema.Literal<["15", "16", "17"]>>;
1314
1505
  /** Enable CNPG read-replica(s). */
@@ -1316,13 +1507,39 @@ export declare const SylphxManifest: Schema.Struct<{
1316
1507
  /** Branch-per-preview (P0 gap #4 sibling). */
1317
1508
  branch_on_preview: Schema.optional<typeof Schema.Boolean>;
1318
1509
  }>>;
1510
+ kv: Schema.optional<Schema.Struct<{
1511
+ /** Capability-specific engine. Valkey is the first supported KV engine. */
1512
+ engine: Schema.optional<Schema.Literal<["valkey"]>>;
1513
+ tier: Schema.Literal<["nano", "micro", "standard", "large", "xl", "hobby", "starter", "pro", "business", "enterprise", "enterprise-2x", "enterprise-4x"]>;
1514
+ storage_gb: Schema.optional<Schema.filter<Schema.filter<typeof Schema.Number>>>;
1515
+ }>>;
1319
1516
  search: Schema.optional<Schema.Struct<{
1320
1517
  /** Capability-specific engine. Typesense is the first supported search engine. */
1321
1518
  engine: Schema.optional<Schema.Literal<["typesense"]>>;
1322
- tier: Schema.Literal<["micro", "standard"]>;
1519
+ tier: Schema.Literal<["nano", "micro", "standard", "large", "xl", "hobby", "starter", "pro", "business", "enterprise", "enterprise-2x", "enterprise-4x"]>;
1323
1520
  storage_gb: Schema.optional<Schema.filter<Schema.filter<typeof Schema.Number>>>;
1324
1521
  nodes: Schema.optional<Schema.filter<Schema.filter<typeof Schema.Number>>>;
1325
1522
  }>>;
1523
+ volume: Schema.optional<Schema.Struct<{
1524
+ tier: Schema.Literal<["nano", "micro", "standard", "large", "xl", "hobby", "starter", "pro", "business", "enterprise", "enterprise-2x", "enterprise-4x"]>;
1525
+ storage_gb: Schema.optional<Schema.filter<Schema.filter<typeof Schema.Number>>>;
1526
+ /**
1527
+ * ReadWriteMany is required when a volume is shared by multiple sandboxes,
1528
+ * workers, or replicas. ReadWriteOnce remains valid for single-writer app
1529
+ * disks.
1530
+ */
1531
+ access_mode: Schema.optional<Schema.Literal<["ReadWriteOnce", "ReadWriteMany"]>>;
1532
+ /**
1533
+ * Optional env-facing path metadata. This does not mount the volume into an
1534
+ * app service by itself; service/task mounts stay explicit bindings.
1535
+ */
1536
+ mount_path: Schema.optional<Schema.filter<typeof Schema.String>>;
1537
+ /**
1538
+ * Binding role controls env var prefix. Example: role="workspace" emits
1539
+ * WORKSPACE_VOLUME_ID for a volume binding.
1540
+ */
1541
+ role: Schema.optional<Schema.filter<Schema.filter<Schema.filter<typeof Schema.String>>>>;
1542
+ }>>;
1326
1543
  }>>;
1327
1544
  ci: Schema.optional<Schema.Struct<{
1328
1545
  on_push: Schema.optional<typeof Schema.Boolean>;
@@ -1 +1 @@
1
- {"version":3,"file":"project-manifest.d.ts","sourceRoot":"","sources":["../../src/schemas/project-manifest.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"project-manifest.d.ts","sourceRoot":"","sources":["../../src/schemas/project-manifest.ts"],"names":[],"mappings":"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"}