1
0
Fork 0
mirror of synced 2024-06-29 11:31:06 +12:00
budibase/packages/server/src/definitions/datasource.ts

184 lines
3 KiB
TypeScript
Raw Normal View History

import { Row, Table } from "./common"
export enum Operation {
CREATE = "CREATE",
READ = "READ",
UPDATE = "UPDATE",
DELETE = "DELETE",
BULK_CREATE = "BULK_CREATE",
2021-10-29 07:39:42 +13:00
CREATE_TABLE = "CREATE_TABLE",
UPDATE_TABLE = "UPDATE_TABLE",
DELETE_TABLE = "DELETE_TABLE",
}
export enum SortDirection {
ASCENDING = "ASCENDING",
DESCENDING = "DESCENDING",
}
export enum QueryTypes {
SQL = "sql",
JSON = "json",
FIELDS = "fields",
}
export enum DatasourceFieldTypes {
STRING = "string",
LONGFORM = "longForm",
BOOLEAN = "boolean",
NUMBER = "number",
PASSWORD = "password",
LIST = "list",
OBJECT = "object",
JSON = "json",
FILE = "file",
}
export enum SourceNames {
POSTGRES = "POSTGRES",
DYNAMODB = "DYNAMODB",
MONGODB = "MONGODB",
ELASTICSEARCH = "ELASTICSEARCH",
COUCHDB = "COUCHDB",
SQL_SERVER = "SQL_SERVER",
S3 = "S3",
AIRTABLE = "AIRTABLE",
MYSQL = "MYSQL",
ARANGODB = "ARANGODB",
REST = "REST",
ORACLE = "ORACLE",
}
export enum IncludeRelationships {
INCLUDE = 1,
2021-09-07 03:24:51 +12:00
EXCLUDE = 0,
}
export enum FilterTypes {
STRING = "string",
FUZZY = "fuzzy",
RANGE = "range",
EQUAL = "equal",
NOT_EQUAL = "notEqual",
EMPTY = "empty",
NOT_EMPTY = "notEmpty",
ONE_OF = "oneOf",
}
export interface QueryDefinition {
2021-06-26 05:34:21 +12:00
type: QueryTypes
displayName?: string
readable?: boolean
customisable?: boolean
fields?: object
urlDisplay?: boolean
}
export interface ExtraQueryConfig {
[key: string]: {
2021-07-29 21:11:52 +12:00
displayName: string
type: string
required: boolean
data?: object
}
}
export interface Integration {
2021-06-26 05:34:21 +12:00
docs: string
plus?: boolean
description: string
friendlyName: string
datasource: {}
query: {
2021-06-26 05:34:21 +12:00
[key: string]: QueryDefinition
}
extra?: ExtraQueryConfig
}
export interface SearchFilters {
allOr?: boolean
string?: {
2021-06-26 05:34:21 +12:00
[key: string]: string
}
fuzzy?: {
2021-06-26 05:34:21 +12:00
[key: string]: string
}
range?: {
[key: string]: {
2021-06-26 05:34:21 +12:00
high: number | string
low: number | string
}
}
equal?: {
2021-06-26 05:34:21 +12:00
[key: string]: any
}
notEqual?: {
2021-06-26 05:34:21 +12:00
[key: string]: any
}
empty?: {
2021-06-26 05:34:21 +12:00
[key: string]: any
}
notEmpty?: {
2021-06-26 05:34:21 +12:00
[key: string]: any
}
2021-07-02 01:10:44 +12:00
oneOf?: {
[key: string]: any[]
}
}
export interface SortJson {
[key: string]: SortDirection
}
export interface PaginationJson {
limit: number
page?: string | number
}
export interface RelationshipsJson {
through?: string
from?: string
to?: string
fromPrimary?: string
toPrimary?: string
2021-06-26 05:34:21 +12:00
tableName: string
column: string
}
export interface QueryJson {
endpoint: {
2021-06-26 05:34:21 +12:00
datasourceId: string
entityId: string
operation: Operation
}
resource: {
2021-06-26 05:34:21 +12:00
fields: string[]
}
filters?: SearchFilters
sort?: SortJson
paginate?: PaginationJson
body?: Row | Row[]
2021-10-29 07:39:42 +13:00
table?: Table
meta?: {
2021-09-28 02:57:22 +13:00
table?: Table
2021-10-29 07:39:42 +13:00
tables?: Record<string, Table>
}
extra?: {
2021-06-26 05:34:21 +12:00
idFilter?: SearchFilters
}
relationships?: RelationshipsJson[]
}
export interface SqlQuery {
2021-06-26 05:34:21 +12:00
sql: string
2021-07-14 04:11:11 +12:00
bindings?:
| string[]
| {
[key: string]: any
}
}
export interface QueryOptions {
2021-06-26 05:34:21 +12:00
disableReturning?: boolean
2021-06-25 05:17:26 +12:00
}