Files
Dorod-Sky/skyvern-ts/client/src/environments.ts

13 lines
387 B
TypeScript
Raw Normal View History

2025-10-23 20:14:59 -06:00
// This file was auto-generated by Fern from our API Definition.
export const SkyvernEnvironment = {
2025-10-31 10:40:33 -06:00
Cloud: "https://api.skyvern.com",
2025-10-23 20:14:59 -06:00
Staging: "https://api-staging.skyvern.com",
2025-10-31 10:40:33 -06:00
Local: "http://localhost:8000",
2025-10-23 20:14:59 -06:00
} as const;
export type SkyvernEnvironment =
2025-10-31 10:40:33 -06:00
| typeof SkyvernEnvironment.Cloud
2025-10-23 20:14:59 -06:00
| typeof SkyvernEnvironment.Staging
2025-10-31 10:40:33 -06:00
| typeof SkyvernEnvironment.Local;