Skip to content

Commit

Permalink
fix: Created another organizations while testing.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mahmoud-Emad committed May 27, 2024
1 parent e0beb70 commit 3a05149
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion clients/dart/switchkeys/lib/examples/environments.dart
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Future<void> environmentsMain() async {
// ------------------------------------------------------------------------
// Create a new organization named "SwitchKeys".
var organization = await switchkeys.organizations.create(
name: "SwitchKeys",
name: "SwitchKeys10",
);
print("[+] Created organization name: ${organization.name}");

Expand Down
2 changes: 1 addition & 1 deletion clients/dart/switchkeys/lib/examples/organization.dart
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Future<void> organizationsMain() async {
// ------------------------------------------------------------------------
// Create a new organization named "SwitchKeys".
var organization = await switchkeys.organizations.create(
name: "SwitchKeys",
name: "SwitchKeys2",
);
print("[+] Created organization name: ${organization.name}");

Expand Down
2 changes: 1 addition & 1 deletion clients/dart/switchkeys/lib/examples/projects.dart
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Future<void> projectsMain() async {
// ------------------------------------------------------------------------
// Create a new organization named "SwitchKeys".
var organization = await switchkeys.organizations.create(
name: "SwitchKeys",
name: "SwitchKeys3",
);
print("[+] Created organization name: ${organization.name}");

Expand Down
2 changes: 1 addition & 1 deletion clients/typescript/examples/environments.example.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export async function environmentExample() {
// --------------------------------------------------------------------------------------------------------------------
// Second, create a new organization.
const organization = await switchkeys.organizations.create({
name: "SwitchKeys",
name: "SwitchKeys7",
});

// --------------------------------------------------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion clients/typescript/examples/organizations.example.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion clients/typescript/examples/projects.example.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 3a05149

Please sign in to comment.