import { ArcadeBundleType, ArcadeProfileType, ArcadeValueType } from './arcade'; import { SqlBundleType, SqlProfileType, SqlValueType } from './sql'; /** * Union of bundle types that can be used in any sdk schema */ export type BundleType = ArcadeBundleType | SqlBundleType; /** * Union of profile types that can be used in any sdk schema */ export type ProfileType = ArcadeProfileType | SqlProfileType; /** * The collection of supported return types. */ export type SchemaValueType = ArcadeValueType | SqlValueType;