@grafana/openapi 13.1.0-25196703233 → 13.1.0-25351545110

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4636,7 +4636,7 @@
4636
4636
  {
4637
4637
  "name": "limit",
4638
4638
  "in": "query",
4639
- "description": "number of results to return",
4639
+ "description": "maximum number of results to return per page",
4640
4640
  "schema": {
4641
4641
  "type": "integer",
4642
4642
  "format": "int64"
@@ -4644,24 +4644,12 @@
4644
4644
  "example": 30
4645
4645
  },
4646
4646
  {
4647
- "name": "page",
4647
+ "name": "continue",
4648
4648
  "in": "query",
4649
- "description": "page number (starting from 1)",
4649
+ "description": "Opaque token from a previous response's metadata.continue; resumes listing after the last team returned. The token is base64 ('+', '/', '=' may appear) — clients MUST URL-encode it when appending to the query string, otherwise '+' will silently decode to a space on the server and pagination will fail.",
4650
4650
  "schema": {
4651
- "type": "integer",
4652
- "format": "int64"
4653
- },
4654
- "example": 1
4655
- },
4656
- {
4657
- "name": "offset",
4658
- "in": "query",
4659
- "description": "number of results to skip",
4660
- "schema": {
4661
- "type": "integer",
4662
- "format": "int64"
4663
- },
4664
- "example": 0
4651
+ "type": "string"
4652
+ }
4665
4653
  }
4666
4654
  ],
4667
4655
  "responses": {
@@ -4670,7 +4658,7 @@
4670
4658
  "content": {
4671
4659
  "*/*": {
4672
4660
  "schema": {
4673
- "$ref": "#/components/schemas/github.com~1grafana~1grafana~1pkg~1apis~1iam~1v0alpha1.UserTeamList"
4661
+ "$ref": "#/components/schemas/GetUserTeamsResponse"
4674
4662
  }
4675
4663
  }
4676
4664
  }
@@ -5285,7 +5273,7 @@
5285
5273
  },
5286
5274
  "GetUserTeamsResponse": {
5287
5275
  "type": "object",
5288
- "required": ["items"],
5276
+ "required": ["metadata", "items"],
5289
5277
  "properties": {
5290
5278
  "apiVersion": {
5291
5279
  "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
@@ -5300,6 +5288,9 @@
5300
5288
  "kind": {
5301
5289
  "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
5302
5290
  "type": "string"
5291
+ },
5292
+ "metadata": {
5293
+ "default": {}
5303
5294
  }
5304
5295
  }
5305
5296
  },
@@ -91,6 +91,7 @@
91
91
  "tags": ["Query"],
92
92
  "description": "Query any datasources (with expressions)",
93
93
  "operationId": "queryDatasources",
94
+ "parameters": [],
94
95
  "requestBody": {
95
96
  "content": {
96
97
  "application/json": {
@@ -114,24 +115,16 @@
114
115
  },
115
116
  "responses": {
116
117
  "200": {
117
- "description": "OK",
118
118
  "content": {
119
- "*/*": {
119
+ "application/json": {
120
120
  "schema": {
121
121
  "$ref": "#/components/schemas/QueryDataResponse"
122
122
  }
123
123
  }
124
124
  }
125
125
  }
126
- },
127
- "x-kubernetes-action": "connect",
128
- "x-kubernetes-group-version-kind": {
129
- "group": "query.grafana.app",
130
- "version": "v0alpha1",
131
- "kind": "QueryDataResponse"
132
126
  }
133
- },
134
- "parameters": []
127
+ }
135
128
  },
136
129
  "/query/sqlschemas": {
137
130
  "post": {
@@ -203,11 +196,6 @@
203
196
  },
204
197
  "additionalProperties": false
205
198
  },
206
- "com.github.grafana.grafana-plugin-sdk-go.backend.DataResponse": {
207
- "description": "todo... improve schema",
208
- "type": "object",
209
- "additionalProperties": true
210
- },
211
199
  "QueryDataResponse": {
212
200
  "description": "Wraps backend.QueryDataResponse, however it includes TypeMeta and implements runtime.Object",
213
201
  "type": "object",
@@ -225,22 +213,10 @@
225
213
  "description": "Responses is a map of RefIDs (Unique Query ID) to *DataResponse.",
226
214
  "type": "object",
227
215
  "additionalProperties": {
228
- "default": {},
229
- "allOf": [
230
- {
231
- "$ref": "#/components/schemas/com.github.grafana.grafana-plugin-sdk-go.backend.DataResponse"
232
- }
233
- ]
216
+ "default": {}
234
217
  }
235
218
  }
236
- },
237
- "x-kubernetes-group-version-kind": [
238
- {
239
- "group": "query.grafana.app",
240
- "kind": "QueryDataResponse",
241
- "version": "v0alpha1"
242
- }
243
- ]
219
+ }
244
220
  },
245
221
  "APIResource": {
246
222
  "description": "APIResource specifies the name of a resource and whether it is namespaced.",
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "author": "Grafana Labs",
3
3
  "license": "Apache-2.0",
4
4
  "name": "@grafana/openapi",
5
- "version": "13.1.0-25196703233",
5
+ "version": "13.1.0-25351545110",
6
6
  "description": "Grafana OpenApi Library",
7
7
  "keywords": [
8
8
  "grafana",