import log from 'loglevel'; import { ElementSchemaVersion, OrganizationConfiguration } from '.'; export type OrganizationConfig = { default?: OrganizationConfiguration; organizations?: Record; }; export type Stage = 'stage' | 'production'; export type SdkConfig = { stage: Stage; forceVersion?: ElementSchemaVersion; logLevel?: log.LogLevelDesc; }; export type Uid = string; export type Credentials = { organization: string; uid: Uid; };