SDK: rename SkyvernEnvironment (#3870)

This commit is contained in:
Stanislav Novosad
2025-10-31 10:40:33 -06:00
committed by GitHub
parent e849c64cad
commit 393bae88fe
10 changed files with 52 additions and 52 deletions

View File

@@ -1,12 +1,12 @@
// This file was auto-generated by Fern from our API Definition.
export const SkyvernEnvironment = {
Production: "https://api.skyvern.com",
Cloud: "https://api.skyvern.com",
Staging: "https://api-staging.skyvern.com",
Development: "http://localhost:8000",
Local: "http://localhost:8000",
} as const;
export type SkyvernEnvironment =
| typeof SkyvernEnvironment.Production
| typeof SkyvernEnvironment.Cloud
| typeof SkyvernEnvironment.Staging
| typeof SkyvernEnvironment.Development;
| typeof SkyvernEnvironment.Local;