From d75cb3bf53d958e928f9dd2556b95682d5c7547d Mon Sep 17 00:00:00 2001 From: Phil Bennett Date: Wed, 3 Jun 2026 09:03:03 -0500 Subject: [PATCH] return client_credentials grant type --- src/cli/commands/application.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cli/commands/application.ts b/src/cli/commands/application.ts index bb0ab2c..a40d053 100644 --- a/src/cli/commands/application.ts +++ b/src/cli/commands/application.ts @@ -730,6 +730,7 @@ const appInit = Command.make( url: appData.url, proxy_url: appData.proxyUrl, authorization_scopes: appData.authorizationScopes, + oauth_grant_types: ["authorization_code", "client_credentials"], client_id: appData.clientId, files_written: { config: getConfigFilePath(environment),