- add sync email onboarding step - refactor calendar and email visibility enums - add a new table `keyValuePair` in `core` schema - add a new resolved boolean field `skipSyncEmail` in current user https://github.com/twentyhq/twenty/assets/29927851/de791475-5bfe-47f9-8e90-76c349fba56f
13 lines
278 B
TypeScript
13 lines
278 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_SERVER_BASE_URL: string;
|
|
readonly VITE_FRONT_BASE_URL: string;
|
|
readonly VITE_MODE: string;
|
|
readonly AUTH_TOKEN: string | undefined;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|