regenerate schema (#10166)

This commit is contained in:
Jack Amadeo 2026-07-01 11:57:45 -07:00 committed by GitHub
parent 613f66b9f2
commit fc5353a39c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -3929,7 +3929,7 @@
},
"primary": {
"type": "boolean",
"description": "When true, the field is shown prominently in the UI (not collapsed).\nDefaults to the value of `required` if not specified.",
"description": "Defaults to the value of `required` if not specified.\nUIs may use this to feature this config value more prominently.",
"nullable": true
},
"required": {

View file

@ -363,8 +363,8 @@ export type EnvVarConfig = {
description?: string | null;
name: string;
/**
* When true, the field is shown prominently in the UI (not collapsed).
* Defaults to the value of `required` if not specified.
* UIs may use this to feature this config value more prominently.
*/
primary?: boolean | null;
required?: boolean;