make -B gen

This commit is contained in:
Sas Swart
2025-02-12 12:29:07 +00:00
parent 22eb048690
commit af4eb7f754
5 changed files with 4 additions and 16 deletions

3
coderd/apidoc/docs.go generated
View File

@ -13028,9 +13028,6 @@ const docTemplate = `{
"name": {
"type": "string"
},
"presetID": {
"type": "string"
},
"value": {
"type": "string"
}

View File

@ -11757,9 +11757,6 @@
"name": {
"type": "string"
},
"presetID": {
"type": "string"
},
"value": {
"type": "string"
}

View File

@ -4436,7 +4436,6 @@ Git clone makes use of this by parsing the URL from: 'Username for "https://gith
"parameters": [
{
"name": "string",
"presetID": "string",
"value": "string"
}
]
@ -4456,7 +4455,6 @@ Git clone makes use of this by parsing the URL from: 'Username for "https://gith
```json
{
"name": "string",
"presetID": "string",
"value": "string"
}
```
@ -4464,9 +4462,8 @@ Git clone makes use of this by parsing the URL from: 'Username for "https://gith
### Properties
| Name | Type | Required | Restrictions | Description |
|------------|--------|----------|--------------|-------------|
|---------|--------|----------|--------------|-------------|
| `name` | string | false | | |
| `presetID` | string | false | | |
| `value` | string | false | | |
## codersdk.PrometheusConfig

View File

@ -2703,7 +2703,6 @@ curl -X GET http://coder-server:8080/api/v2/templateversions/{templateversion}/p
"parameters": [
{
"name": "string",
"presetID": "string",
"value": "string"
}
]
@ -2728,7 +2727,6 @@ Status Code **200**
| `» name` | string | false | | |
| `» parameters` | array | false | | |
| `»» name` | string | false | | |
| `»» presetID` | string | false | | |
| `»» value` | string | false | | |
To perform this operation, you must be authenticated. [Learn more](authentication.md).

View File

@ -1559,7 +1559,6 @@ export interface Preset {
// From codersdk/presets.go
export interface PresetParameter {
readonly PresetID: string;
readonly Name: string;
readonly Value: string;
}