mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-19 00:02:03 +00:00
fix go client build
This commit is contained in:
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user