fix go client build

This commit is contained in:
Ruben Fiszel
2024-05-31 12:58:17 +02:00
parent be160f6e46
commit 8ffceb9a31
2 changed files with 2 additions and 3 deletions
+1 -2
View File
@@ -2643,8 +2643,7 @@ paths:
type: object
properties:
extra_params:
additionalProperties:
type: string
type: object
scopes:
type: array
items:
@@ -172,7 +172,7 @@
async function getScopesAndParams() {
const connect = await OauthService.getOauthConnect({ client: resourceType })
scopes = connect.scopes ?? []
extra_params = Object.entries(connect.extra_params ?? {})
extra_params = Object.entries(connect.extra_params ?? {}) as [string, string][]
}
async function getResourceTypeInfo() {