pocketbase-zod-schema 0.4.2 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/dist/cli/index.cjs +2266 -2169
- package/dist/cli/index.cjs.map +1 -1
- package/dist/cli/index.d.cts +2 -3
- package/dist/cli/index.d.ts +2 -3
- package/dist/cli/index.js +2264 -2167
- package/dist/cli/index.js.map +1 -1
- package/dist/cli/migrate.cjs +2272 -2175
- package/dist/cli/migrate.cjs.map +1 -1
- package/dist/cli/migrate.js +2266 -2170
- package/dist/cli/migrate.js.map +1 -1
- package/dist/cli/utils/index.d.cts +2 -3
- package/dist/cli/utils/index.d.ts +2 -3
- package/dist/{fields-BNoZgcfw.d.cts → fields-xO0SgOQA.d.cts} +71 -1
- package/dist/{fields-BNoZgcfw.d.ts → fields-xO0SgOQA.d.ts} +71 -1
- package/dist/index.d.cts +1 -2
- package/dist/index.d.ts +1 -2
- package/dist/migration/analyzer.cjs +213 -206
- package/dist/migration/analyzer.cjs.map +1 -1
- package/dist/migration/analyzer.d.cts +63 -46
- package/dist/migration/analyzer.d.ts +63 -46
- package/dist/migration/analyzer.js +211 -207
- package/dist/migration/analyzer.js.map +1 -1
- package/dist/migration/diff.cjs +184 -161
- package/dist/migration/diff.cjs.map +1 -1
- package/dist/migration/diff.d.cts +118 -57
- package/dist/migration/diff.d.ts +118 -57
- package/dist/migration/diff.js +178 -162
- package/dist/migration/diff.js.map +1 -1
- package/dist/migration/generator.cjs +337 -247
- package/dist/migration/generator.cjs.map +1 -1
- package/dist/migration/generator.d.cts +204 -99
- package/dist/migration/generator.d.ts +204 -99
- package/dist/migration/generator.js +325 -248
- package/dist/migration/generator.js.map +1 -1
- package/dist/migration/index.cjs +911 -658
- package/dist/migration/index.cjs.map +1 -1
- package/dist/migration/index.d.cts +77 -5
- package/dist/migration/index.d.ts +77 -5
- package/dist/migration/index.js +905 -657
- package/dist/migration/index.js.map +1 -1
- package/dist/migration/snapshot.d.cts +2 -3
- package/dist/migration/snapshot.d.ts +2 -3
- package/dist/migration/utils/index.cjs +61 -0
- package/dist/migration/utils/index.cjs.map +1 -1
- package/dist/migration/utils/index.d.cts +13 -3
- package/dist/migration/utils/index.d.ts +13 -3
- package/dist/migration/utils/index.js +61 -1
- package/dist/migration/utils/index.js.map +1 -1
- package/dist/schema.d.cts +2 -3
- package/dist/schema.d.ts +2 -3
- package/dist/server.cjs +739 -631
- package/dist/server.cjs.map +1 -1
- package/dist/server.d.cts +4 -5
- package/dist/server.d.ts +4 -5
- package/dist/server.js +733 -630
- package/dist/server.js.map +1 -1
- package/dist/{type-mapper-BlewDZpG.d.cts → type-mapper-CpnRi9Af.d.cts} +1 -1
- package/dist/{type-mapper-DkIy07Eb.d.ts → type-mapper-bhinINZI.d.ts} +1 -1
- package/dist/{types-CzLguhyw.d.ts → types-Cq50JyCb.d.ts} +1 -2
- package/dist/{types-BbrRUsMM.d.cts → types-wy1F7V4B.d.cts} +1 -2
- package/package.json +1 -1
- package/dist/permissions-ZHafVSIx.d.cts +0 -71
- package/dist/permissions-ZHafVSIx.d.ts +0 -71
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.5.0](https://github.com/dastron/pocketbase-zod-schema/compare/pocketbase-zod-schema-v0.4.2...pocketbase-zod-schema-v0.5.0) (2026-01-23)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* sort migration creation by relation dependencies ([40a461a](https://github.com/dastron/pocketbase-zod-schema/commit/40a461a9269a167c41f03b53db9ef324f4e266ee))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* refactor migration to be modular ([ae101dc](https://github.com/dastron/pocketbase-zod-schema/commit/ae101dca161bfa378d341f73522cf3d29b114417))
|
|
14
|
+
|
|
3
15
|
## [0.4.2](https://github.com/dastron/pocketbase-zod-schema/compare/pocketbase-zod-schema-v0.4.1...pocketbase-zod-schema-v0.4.2) (2026-01-21)
|
|
4
16
|
|
|
5
17
|
|