fireschema icon indicating copy to clipboard operation
fireschema copied to clipboard

Strongly typed Firestore framework for TypeScript

Results 16 fireschema issues
Sort by recently updated
recently updated
newest added

GitHubのfireschemaレポジトリのトップページでは、現在のmasterブランチであるv5のドキュメント(README.md)が表示されるのですが、npm installではv4(4.0.4)がインストールされます。 qiitaやZennなどで記事を見て、GitHubにアクセスし、GitHub上でREADME.mdのサンプルコード(v5準拠)を動かそうとするとエラーが発生することになってしまうため、お手数ですがGitHubで表示されるメインブランチとnpmのバージョンを揃えていただけますでしょうか。

I love what you are doing here. It looks great. I also dig that you have normalized the schema for `firebase`, `firebase-admin` and `firebase-functions`. However it would be great if...

I'm just looking at this repo for the first time, but I noticed a typo in the README. [`string.size()` should be a method but the readme renders it as a...

For type definition: ```typescript const DBData = z.object({ nested: z.object({ a: z.string(), b: z.string(), }), }) ``` The following validator is generated: ``` function __validator_0__(data) { return (__validator_meta__(data) && (...

Thanks for the nice tool! When I run the sample schema, An exception is being thrown in the visitor that handles the AST. I tried to investigate, but I couldn't...