Skip to content

Allow multiple types for cells in schema #223

@skorphil

Description

@skorphil

Is your feature request related to a problem? Please describe.
It is tupical scenario when some value can be of different types eg string | null. OK, tinyBase doesnt support null or undefined. That is why i'm using 0 for nullish data. But, i can't specify string | number type in schema:

export const persistentStateStore = createStore()
  .setValuesSchema({
    currentJournalDirectory: { type: "string" },
    selectedCurrency: { type: "string" },
  })
  .setValues({});

Describe the solution you'd like
currentJournalDirectory: { type: ["string", "number"] }, or provide more native support for typings like: createStore<MySchemaType>() Ideally Zod integration, but that's another story

Describe alternatives you've considered
IDK, use empty string but this would create mess in my data

Metadata

Metadata

Assignees

Labels

enhancementNew feature or request

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions