@grafana/openapi 13.2.0-28908703397 → 13.2.0
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.
- package/dist/api/openapi3.json +3 -0
- package/dist/apis/advisor.grafana.app-v0alpha1.json +63 -0
- package/dist/apis/correlations.grafana.app-v0alpha1.json +156 -0
- package/dist/apis/dashboard.grafana.app-v2.json +16 -5
- package/dist/apis/dashboard.grafana.app-v2alpha1.json +16 -5
- package/dist/apis/dashboard.grafana.app-v2beta1.json +4852 -1867
- package/dist/apis/iam.grafana.app-v0alpha1.json +39 -0
- package/dist/apis/notifications.alerting.grafana.app-v1beta1.json +1121 -0
- package/dist/apis/plugins.grafana.app-v0alpha1.json +2933 -0
- package/dist/apis/provisioning.grafana.app-v0alpha1.json +241 -23
- package/dist/apis/provisioning.grafana.app-v1beta1.json +210 -22
- package/dist/apis/rules.alerting.grafana.app-v0alpha1.json +310 -5
- package/dist/apis/shorturl.grafana.app-v1beta1.json +180 -1
- package/package.json +4 -3
|
@@ -2681,6 +2681,25 @@
|
|
|
2681
2681
|
}
|
|
2682
2682
|
}
|
|
2683
2683
|
]
|
|
2684
|
+
},
|
|
2685
|
+
"/users/~": {
|
|
2686
|
+
"get": {
|
|
2687
|
+
"tags": ["Display"],
|
|
2688
|
+
"description": "Show display information for the currently authenticated identity",
|
|
2689
|
+
"operationId": "getCurrentUserDisplay",
|
|
2690
|
+
"parameters": [],
|
|
2691
|
+
"responses": {
|
|
2692
|
+
"200": {
|
|
2693
|
+
"content": {
|
|
2694
|
+
"application/json": {
|
|
2695
|
+
"schema": {
|
|
2696
|
+
"$ref": "#/components/schemas/Display"
|
|
2697
|
+
}
|
|
2698
|
+
}
|
|
2699
|
+
}
|
|
2700
|
+
}
|
|
2701
|
+
}
|
|
2702
|
+
}
|
|
2684
2703
|
}
|
|
2685
2704
|
},
|
|
2686
2705
|
"components": {
|
|
@@ -3175,6 +3194,14 @@
|
|
|
3175
3194
|
"type": "string",
|
|
3176
3195
|
"default": ""
|
|
3177
3196
|
},
|
|
3197
|
+
"externalAuthModules": {
|
|
3198
|
+
"description": "Auth module identifiers the user is externally synced with.",
|
|
3199
|
+
"type": "array",
|
|
3200
|
+
"items": {
|
|
3201
|
+
"type": "string",
|
|
3202
|
+
"default": ""
|
|
3203
|
+
}
|
|
3204
|
+
},
|
|
3178
3205
|
"internalId": {
|
|
3179
3206
|
"description": "Deprecated internal (legacy SQL) id of the user.",
|
|
3180
3207
|
"type": "integer",
|
|
@@ -4612,6 +4639,10 @@
|
|
|
4612
4639
|
"description": "InternalID is the legacy numeric id for identity, Deprecated: use the identityRef where possible",
|
|
4613
4640
|
"type": "integer",
|
|
4614
4641
|
"format": "int64"
|
|
4642
|
+
},
|
|
4643
|
+
"role": {
|
|
4644
|
+
"description": "Role is the org role of the identity in the active organization (Admin/Editor/Viewer/None). Only populated for the current-user (\"users/~\") endpoint.",
|
|
4645
|
+
"type": "string"
|
|
4615
4646
|
}
|
|
4616
4647
|
}
|
|
4617
4648
|
},
|
|
@@ -4768,6 +4799,10 @@
|
|
|
4768
4799
|
"description": "Permission member has in team.\n\nPossible enum values:\n - `\"admin\"`\n - `\"member\"`",
|
|
4769
4800
|
"type": "string",
|
|
4770
4801
|
"enum": ["admin", "member"]
|
|
4802
|
+
},
|
|
4803
|
+
"role": {
|
|
4804
|
+
"description": "Role is the org role of the identity in the active organization (Admin/Editor/Viewer/None). Only populated for the current-user (\"users/~\") endpoint.",
|
|
4805
|
+
"type": "string"
|
|
4771
4806
|
}
|
|
4772
4807
|
}
|
|
4773
4808
|
},
|
|
@@ -4927,6 +4962,10 @@
|
|
|
4927
4962
|
"description": "Permission member has in team.\n\nPossible enum values:\n - `\"admin\"`\n - `\"member\"`",
|
|
4928
4963
|
"type": "string",
|
|
4929
4964
|
"enum": ["admin", "member"]
|
|
4965
|
+
},
|
|
4966
|
+
"role": {
|
|
4967
|
+
"description": "Role is the org role of the identity in the active organization (Admin/Editor/Viewer/None). Only populated for the current-user (\"users/~\") endpoint.",
|
|
4968
|
+
"type": "string"
|
|
4930
4969
|
}
|
|
4931
4970
|
}
|
|
4932
4971
|
},
|