1
0
Fork 0
mirror of synced 2024-07-01 12:30:41 +12:00
budibase/packages/server/src/definitions/common.ts

85 lines
1.4 KiB
TypeScript
Raw Normal View History

interface Base {
2021-06-28 21:21:37 +12:00
_id?: string
_rev?: string
}
export interface FieldSchema {
// TODO: replace with field types enum when done
type: string
fieldName?: string
name: string
tableId?: string
relationshipType?: string
through?: string
foreignKey?: string
constraints?: {
type?: string
email?: boolean
inclusion?: string[]
length?: {
minimum?: string | number
maximum?: string | number
2021-06-28 21:21:37 +12:00
}
presence?: boolean
2021-06-28 21:21:37 +12:00
}
}
export interface TableSchema {
[key: string]: FieldSchema
}
export interface Table extends Base {
2021-06-28 21:21:37 +12:00
type?: string
views?: {}
name?: string
primary?: string[]
schema: TableSchema
primaryDisplay?: string
sourceId?: string
}
export interface Row extends Base {
2021-06-28 21:21:37 +12:00
type?: string
tableId?: string
2021-06-28 21:21:37 +12:00
[key: string]: any
}
interface JsonSchemaField {
properties: {
[key: string]: {
2021-06-28 21:21:37 +12:00
type: string
title: string
customType?: string
}
}
required?: string[]
}
export interface AutomationStep {
2021-06-28 21:21:37 +12:00
description: string
event?: string
icon: string
id: string
inputs: {
2021-06-28 21:21:37 +12:00
[key: string]: any
}
name: string
schema: {
2021-06-28 21:21:37 +12:00
inputs: JsonSchemaField
outputs: JsonSchemaField
}
stepId: string
tagline: string
type: string
}
export interface Automation extends Base {
2021-06-28 21:21:37 +12:00
name: string
type: string
appId?: string
definition: {
2021-06-28 21:21:37 +12:00
steps: AutomationStep[]
trigger?: AutomationStep
}
}