Add default value to apiKey for authentication method (#20552)

- fix authentication method default value when docker instance to apiKey
This commit is contained in:
martmull
2026-05-13 23:17:44 +02:00
committed by GitHub
parent 49b9660420
commit d81756f2e8
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "create-twenty-app",
"version": "2.4.1",
"version": "2.4.2",
"description": "Command-line interface to create Twenty application",
"main": "dist/cli.cjs",
"bin": "dist/cli.cjs",
@@ -66,7 +66,7 @@ export class CreateAppCommand {
const authenticationMethod = skipLocalInstance
? 'oauth'
: options.authenticationMethod;
: (options.authenticationMethod ?? 'apiKey');
try {
await this.validateDirectory(appDirectory);
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "twenty-client-sdk",
"version": "2.4.1",
"version": "2.4.2",
"sideEffects": false,
"license": "AGPL-3.0",
"scripts": {
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "twenty-sdk",
"version": "2.4.1",
"version": "2.4.2",
"sideEffects": false,
"bin": {
"twenty": "dist/cli.cjs"