From 7e220c50a0d68f1b6b591e37be1574e8428ae417 Mon Sep 17 00:00:00 2001 From: Geoffry Song Date: Wed, 19 Feb 2025 16:28:45 -0800 Subject: [PATCH] Add a app_name field to access tokens (#34415) GitOrigin-RevId: 6d2ed3f7c5d1284ab13a092b81ad8733a945d4c0 --- npm-packages/dashboard/dashboard-openapi.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/npm-packages/dashboard/dashboard-openapi.json b/npm-packages/dashboard/dashboard-openapi.json index bea0a818c..f6e71e47e 100644 --- a/npm-packages/dashboard/dashboard-openapi.json +++ b/npm-packages/dashboard/dashboard-openapi.json @@ -2218,6 +2218,9 @@ "type": "string", "description": "Encrypted admin key" }, + "AppName": { + "type": "string" + }, "AuditLogAction": { "type": "string", "enum": [ @@ -2384,6 +2387,16 @@ "authnToken" ], "properties": { + "appName": { + "oneOf": [ + { + "type": "null" + }, + { + "$ref": "#/components/schemas/AppName" + } + ] + }, "authnToken": { "type": "string", "description": "Authentication token is expected to be the access token from auth0"