@ez4/gateway 0.40.0 → 0.41.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.
@@ -2,5 +2,5 @@ import type { AllType, ReflectionTypes, TypeIntersection, TypeModel, TypeObject
2
2
  import type { ArraySchema, ObjectSchema, UnionSchema } from '@ez4/schema';
3
3
  type TypeParent = TypeObject | TypeModel | TypeIntersection;
4
4
  export declare const isWebBodyDeclaration: (type: TypeModel, namespace: string) => boolean;
5
- export declare const getWebBodyMetadata: (type: AllType, parent: TypeParent, reflection: ReflectionTypes, errorList: Error[], namespace: string) => import("@ez4/schema").BooleanSchema | import("@ez4/schema").NumberSchema | import("@ez4/schema").StringSchema | ObjectSchema | UnionSchema | ArraySchema | undefined;
5
+ export declare const getWebBodyMetadata: (type: AllType, parent: TypeParent, reflection: ReflectionTypes, errorList: Error[], namespace: string) => ObjectSchema | UnionSchema | ArraySchema | import("@ez4/schema").BooleanSchema | import("@ez4/schema").NumberSchema | import("@ez4/schema").StringSchema | undefined;
6
6
  export {};
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ez4/gateway",
3
3
  "description": "EZ4: Components to build gateway services",
4
- "version": "0.40.0",
4
+ "version": "0.41.0",
5
5
  "author": "Silas B.",
6
6
  "license": "MIT",
7
7
  "type": "module",
@@ -51,15 +51,15 @@
51
51
  "live:publish": "npm run build && npm publish --access public"
52
52
  },
53
53
  "devDependencies": {
54
- "@ez4/validation": "^0.40.0"
54
+ "@ez4/validation": "^0.41.0"
55
55
  },
56
56
  "dependencies": {
57
- "@ez4/common": "^0.40.0",
58
- "@ez4/project": "^0.40.0",
59
- "@ez4/reflection": "^0.40.0",
60
- "@ez4/schema": "^0.40.0",
61
- "@ez4/transform": "^0.40.0",
62
- "@ez4/utils": "^0.40.0",
63
- "@ez4/validator": "^0.40.0"
57
+ "@ez4/common": "^0.41.0",
58
+ "@ez4/project": "^0.41.0",
59
+ "@ez4/reflection": "^0.41.0",
60
+ "@ez4/schema": "^0.41.0",
61
+ "@ez4/transform": "^0.41.0",
62
+ "@ez4/utils": "^0.41.0",
63
+ "@ez4/validator": "^0.41.0"
64
64
  }
65
65
  }