mirror of
https://github.com/coder/coder.git
synced 2026-09-24 15:04:27 +08:00
fix: rename total to count in AIBridgeListInterceptionsResponse (#20410)
Thanks to the great work in #20393, we’ve successfully introduced offset-based pagination for this endpoint. However, the frontend expects a `count` field in the response rather than `total`. This PR updates the response payload to rename the returned key to `count` for consistency with frontend expectations and existing API patterns. This is necessary to unblock the work in #20331
This commit is contained in:
Generated
+2
-2
@@ -28,6 +28,7 @@ curl -X GET http://coder-server:8080/api/v2/api/experimental/aibridge/intercepti
|
||||
|
||||
```json
|
||||
{
|
||||
"count": 0,
|
||||
"results": [
|
||||
{
|
||||
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
|
||||
@@ -89,8 +90,7 @@ curl -X GET http://coder-server:8080/api/v2/api/experimental/aibridge/intercepti
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"total": 0
|
||||
]
|
||||
}
|
||||
```
|
||||
|
||||
|
||||
Generated
+3
-3
@@ -515,6 +515,7 @@
|
||||
|
||||
```json
|
||||
{
|
||||
"count": 0,
|
||||
"results": [
|
||||
{
|
||||
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
|
||||
@@ -576,8 +577,7 @@
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"total": 0
|
||||
]
|
||||
}
|
||||
```
|
||||
|
||||
@@ -585,8 +585,8 @@
|
||||
|
||||
| Name | Type | Required | Restrictions | Description |
|
||||
|-----------|-------------------------------------------------------------------------|----------|--------------|-------------|
|
||||
| `count` | integer | false | | |
|
||||
| `results` | array of [codersdk.AIBridgeInterception](#codersdkaibridgeinterception) | false | | |
|
||||
| `total` | integer | false | | |
|
||||
|
||||
## codersdk.AIBridgeOpenAIConfig
|
||||
|
||||
|
||||
Reference in New Issue
Block a user