ordercloud-api / ordercloud-seed

CLI and library to Import and export serialized representations of full marketplaces
MIT License
9 stars 9 forks source link

Seeding always creates the marketplace in usw region. #8

Closed isyedakhtar closed 2 years ago

isyedakhtar commented 2 years ago

The usw region is hardcoded at the moment. We should pass it alongside the params of seed command like username/password etc.

async CreateOrganization(id: string, name: string, accessToken: string): Promise<void> { var org: Organization = { Id: id, Name: name, Environment: "Sandbox", Region: { Id: "usw"} // US West Azure region }