graphql-engine/console/cypress/global.d.ts
Stefano Magni a0f4f00bfd console: Add Sentry
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5699
Co-authored-by: Rishichandra Wawhal <27274869+wawhal@users.noreply.github.com>
Co-authored-by: Daniel Harvey <4729125+danieljharvey@users.noreply.github.com>
GitOrigin-RevId: 00f2c5d25012b21f4e8763ef578598a3a11896e4
2022-09-15 17:00:44 +00:00

31 lines
625 B
TypeScript

interface Env {
adminSecret: string;
apiHost: string;
apiPort: string;
assetsPath: string;
assetsVersion: string;
assetVersion: string;
cdnAssets: boolean;
consoleAssetVersion: string;
consoleMode: string;
consolePath: string;
dataApiUrl: string;
enableTelemetry: boolean;
featuresCompatibility: string;
isAdminSecretSet: boolean;
isproduction: boolean;
nodeEnv: string;
serverVersion: string;
telemetryTopic: string;
urlPrefix: string;
/**
* Corresponds to the HASURA_CONSOLE_SENTRY_DSN environment variable
*/
consoleSentryDsn: string;
}
interface Window {
__env: Env;
}