mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
chore: Add null to DataStoreColumnJsType (no-changelog) (#18733)
This commit is contained in:
@@ -70,9 +70,9 @@ export type MoveDataStoreColumnOptions = {
|
||||
export type AddDataStoreColumnOptions = Pick<DataStoreColumn, 'name' | 'type'> &
|
||||
Partial<Pick<DataStoreColumn, 'index'>>;
|
||||
|
||||
export type DataStoreColumnJsType = string | number | boolean | Date;
|
||||
export type DataStoreColumnJsType = string | number | boolean | Date | null;
|
||||
|
||||
export type DataStoreRow = Record<string, DataStoreColumnJsType | null>;
|
||||
export type DataStoreRow = Record<string, DataStoreColumnJsType>;
|
||||
export type DataStoreRows = DataStoreRow[];
|
||||
export type DataStoreRowWithId = DataStoreRow & { id: number };
|
||||
|
||||
|
||||
Reference in New Issue
Block a user