import { SqlBundleType } from '../schema-types/sql'; import { BaseSdkPredefinedProfile } from './base'; /** * The list of supported profiles */ export type SqlProfileId = "field-calculation" | "where-clause"; /** * The predefined profiles for the SQL language */ export type SqlSdkPredefinedProfile = BaseSdkPredefinedProfile; export type SqlSdkPredefinedProfiles = BaseSdkPredefinedProfile[];