MCPcopy Create free account
hub / github.com/ZenNotes/zennotes / DbField

Interface DbField

packages/shared-domain/src/databases.ts:123–135  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

121}
122
123export interface DbField {
124 /** Stable uuid referenced by rows/views — NOT the CSV header. */
125 id: string
126 /** The CSV column header (display + the header text written to disk). */
127 name: string
128 type: FieldType
129 /** For `select` / `multiSelect`. */
130 options?: SelectOption[]
131 /** Table column width in px. */
132 width?: number
133 /** Hidden in the Table view by default (e.g. the id field). */
134 hidden?: boolean
135}
136
137export type FilterOp =
138 | 'is'

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected