url type added

+ support for `Url` columns
This commit is contained in:
michal-kapala
2023-06-28 02:16:09 +02:00
parent 63bf053c36
commit 3c78bb2a1b
7 changed files with 59 additions and 7 deletions

View File

@ -8,6 +8,7 @@ export const POCKETBASE_TYPE = {
EMAIL: "email",
JSON: "json",
DATETIME: "date",
URL: "url",
} as const;
type ObjectValues<T> = T[keyof T];