@travetto/schema 4.0.6 → 4.1.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@travetto/schema",
3
- "version": "4.0.6",
3
+ "version": "4.1.0",
4
4
  "description": "Data type registry for runtime validation, reflection and binding.",
5
5
  "keywords": [
6
6
  "schema",
@@ -27,10 +27,10 @@
27
27
  "directory": "module/schema"
28
28
  },
29
29
  "dependencies": {
30
- "@travetto/registry": "^4.0.6"
30
+ "@travetto/registry": "^4.1.0"
31
31
  },
32
32
  "peerDependencies": {
33
- "@travetto/transformer": "^4.0.4"
33
+ "@travetto/transformer": "^4.1.0"
34
34
  },
35
35
  "peerDependenciesMeta": {
36
36
  "@travetto/transformer": {
@@ -16,7 +16,7 @@ function prop<V>(obj: Partial<FieldConfig>): PropType<V> {
16
16
  SchemaRegistry.registerPendingFieldFacet(t.constructor, k, obj);
17
17
  }
18
18
  };
19
- fn.Param = fn; // eslint-disable-next-line @typescript-eslint/consistent-type-assertions
19
+ fn.Param = fn;
20
20
 
21
21
  // eslint-disable-next-line @typescript-eslint/consistent-type-assertions
22
22
  return fn as PropType<V>;