fix(config): allow active provider model status (#26592)

Co-authored-by: Developer <temp@example.com>
This commit is contained in:
Kit Langton 2026-05-09 18:59:05 -04:00 committed by GitHub
commit 00c3248295
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 43 additions and 6 deletions

View file

@ -71,7 +71,7 @@ export const Model = Schema.Struct({
),
}),
),
status: Schema.optional(Schema.Literals(["alpha", "beta", "deprecated"])),
status: Schema.optional(Schema.Literals(["alpha", "beta", "deprecated", "active"])),
provider: Schema.optional(
Schema.Struct({ npm: Schema.optional(Schema.String), api: Schema.optional(Schema.String) }),
),