| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 20d3bba commit 3522fcb
2 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -97,6 +97,9 @@ class ManagedAuthStateEventField(BaseModel): | |||
| 97 | 97 | id: str | |
| 98 | 98 | """Stable field identifier for canonical submit.""" | |
| 99 | 99 | ||
| 100 | + reason: Literal["missing", "rejected"] | ||
| 101 | + """Why the field requires user input.""" | ||
| 102 | + | ||
| 100 | 103 | ref: str | |
| 101 | 104 | """Credential reference name to store the submitted value under.""" | |
| 102 | 105 | ||
@@ -112,12 +115,6 @@ class ManagedAuthStateEventField(BaseModel): | |||
| 112 | 115 | observed_selector: Optional[str] = None | |
| 113 | 116 | """Selector for the visible field, when available.""" | |
| 114 | 117 | ||
| 115 | - replace_existing: Optional[bool] = None | ||
| 116 | - """ | ||
| 117 | - Whether the submitted value must replace an existing credential after explicit | ||
| 118 | - rejection. | ||
| 119 | - """ | ||
| 120 | - | ||
| 121 | 118 | required: Optional[bool] = None | |
| 122 | 119 | """Whether this field is required.""" | |
| 123 | 120 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -206,6 +206,9 @@ class Field(BaseModel): | |||
| 206 | 206 | id: str | |
| 207 | 207 | """Stable field identifier for canonical submit.""" | |
| 208 | 208 | ||
| 209 | + reason: Literal["missing", "rejected"] | ||
| 210 | + """Why the field requires user input.""" | ||
| 211 | + | ||
| 209 | 212 | ref: str | |
| 210 | 213 | """Credential reference name to store the submitted value under.""" | |
| 211 | 214 | ||
@@ -221,12 +224,6 @@ class Field(BaseModel): | |||
| 221 | 224 | observed_selector: Optional[str] = None | |
| 222 | 225 | """Selector for the visible field, when available.""" | |
| 223 | 226 | ||
| 224 | - replace_existing: Optional[bool] = None | ||
| 225 | - """ | ||
| 226 | - Whether the submitted value must replace an existing credential after explicit | ||
| 227 | - rejection. | ||
| 228 | - """ | ||
| 229 | - | ||
| 230 | 227 | required: Optional[bool] = None | |
| 231 | 228 | """Whether this field is required.""" | |
| 232 | 229 | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments