From 3a05149a84aa4c4f5cd049ed86d8ae9db9150d67 Mon Sep 17 00:00:00 2001 From: Mahmoud Emad Date: Mon, 27 May 2024 14:48:21 +0300 Subject: [PATCH] fix: Created another organizations while testing. --- clients/dart/switchkeys/lib/examples/environments.dart | 2 +- clients/dart/switchkeys/lib/examples/organization.dart | 2 +- clients/dart/switchkeys/lib/examples/projects.dart | 2 +- clients/typescript/examples/environments.example.ts | 2 +- clients/typescript/examples/organizations.example.ts | 2 +- clients/typescript/examples/projects.example.ts | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/clients/dart/switchkeys/lib/examples/environments.dart b/clients/dart/switchkeys/lib/examples/environments.dart index 4d31a91..6c23920 100644 --- a/clients/dart/switchkeys/lib/examples/environments.dart +++ b/clients/dart/switchkeys/lib/examples/environments.dart @@ -38,7 +38,7 @@ Future environmentsMain() async { // ------------------------------------------------------------------------ // Create a new organization named "SwitchKeys". var organization = await switchkeys.organizations.create( - name: "SwitchKeys", + name: "SwitchKeys10", ); print("[+] Created organization name: ${organization.name}"); diff --git a/clients/dart/switchkeys/lib/examples/organization.dart b/clients/dart/switchkeys/lib/examples/organization.dart index 116bb20..bf870aa 100644 --- a/clients/dart/switchkeys/lib/examples/organization.dart +++ b/clients/dart/switchkeys/lib/examples/organization.dart @@ -36,7 +36,7 @@ Future organizationsMain() async { // ------------------------------------------------------------------------ // Create a new organization named "SwitchKeys". var organization = await switchkeys.organizations.create( - name: "SwitchKeys", + name: "SwitchKeys2", ); print("[+] Created organization name: ${organization.name}"); diff --git a/clients/dart/switchkeys/lib/examples/projects.dart b/clients/dart/switchkeys/lib/examples/projects.dart index c1c6f60..6e30675 100644 --- a/clients/dart/switchkeys/lib/examples/projects.dart +++ b/clients/dart/switchkeys/lib/examples/projects.dart @@ -37,7 +37,7 @@ Future projectsMain() async { // ------------------------------------------------------------------------ // Create a new organization named "SwitchKeys". var organization = await switchkeys.organizations.create( - name: "SwitchKeys", + name: "SwitchKeys3", ); print("[+] Created organization name: ${organization.name}"); diff --git a/clients/typescript/examples/environments.example.ts b/clients/typescript/examples/environments.example.ts index 4fe92c3..a0e506e 100644 --- a/clients/typescript/examples/environments.example.ts +++ b/clients/typescript/examples/environments.example.ts @@ -48,7 +48,7 @@ export async function environmentExample() { // -------------------------------------------------------------------------------------------------------------------- // Second, create a new organization. const organization = await switchkeys.organizations.create({ - name: "SwitchKeys", + name: "SwitchKeys7", }); // -------------------------------------------------------------------------------------------------------------------- diff --git a/clients/typescript/examples/organizations.example.ts b/clients/typescript/examples/organizations.example.ts index 2f5c09b..bcd3347 100644 --- a/clients/typescript/examples/organizations.example.ts +++ b/clients/typescript/examples/organizations.example.ts @@ -47,7 +47,7 @@ export async function organizationExample() { // -------------------------------------------------------------------------------------------------------------------- // Create a new organization named "SwitchKeys". const organization = await switchkeys.organizations.create({ - name: "SwitchKeys", + name: "SwitchKeys5", }); console.log("[+] Created Organization:", organization); diff --git a/clients/typescript/examples/projects.example.ts b/clients/typescript/examples/projects.example.ts index f2fb4e0..e3cb4dc 100644 --- a/clients/typescript/examples/projects.example.ts +++ b/clients/typescript/examples/projects.example.ts @@ -48,7 +48,7 @@ export async function projectExample() { // Second, create a new organization. // PS: If you have a valid project ID, you can get it directly and skip this step. const organization = await switchkeys.organizations.create({ - name: "SwitchKeys", + name: "SwitchKeys4", }); // Now you can create a project in the created organization.