@loomcore/common 0.0.35 → 0.0.36

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.
@@ -1,5 +1,5 @@
1
1
  import { Type } from '@sinclair/typebox';
2
2
  export const IdSchema = Type.Union([
3
3
  Type.String({ title: 'ID' }),
4
- Type.Number({ title: 'ID' })
4
+ Type.Number({ title: 'ID', integer: true, minimum: 1 })
5
5
  ]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@loomcore/common",
3
- "version": "0.0.35",
3
+ "version": "0.0.36",
4
4
  "private": false,
5
5
  "description": "Loom Core Models- common models, interfaces, types, and utils for Loom Core. All things common to both api and client apps.",
6
6
  "scripts": {