Fix OSS build.

This commit is contained in:
Sam Rose 2024-10-29 10:34:14 +00:00
parent 67fea783bb
commit b58fd7dc6b
No known key found for this signature in database
1 changed files with 10 additions and 10 deletions

View File

@ -186,6 +186,16 @@ export interface ArrayFieldMetadata extends BaseFieldSchema {
default?: string[] default?: string[]
} }
export interface BooleanFieldMetadata extends BaseFieldSchema {
type: FieldType.BOOLEAN
default?: string
}
export interface BigIntFieldMetadata extends BaseFieldSchema {
type: FieldType.BIGINT
default?: string
}
interface BaseFieldSchema extends UIFieldMetadata { interface BaseFieldSchema extends UIFieldMetadata {
type: FieldType type: FieldType
name: string name: string
@ -198,16 +208,6 @@ interface BaseFieldSchema extends UIFieldMetadata {
subtype?: never subtype?: never
} }
interface BooleanFieldMetadata extends BaseFieldSchema {
type: FieldType.BOOLEAN
default?: string
}
interface BigIntFieldMetadata extends BaseFieldSchema {
type: FieldType.BIGINT
default?: string
}
interface OtherFieldMetadata extends BaseFieldSchema { interface OtherFieldMetadata extends BaseFieldSchema {
type: Exclude< type: Exclude<
FieldType, FieldType,