@clairejs/server 3.19.6 → 3.19.7

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/README.md CHANGED
@@ -1,7 +1,8 @@
1
1
  ## Change Log
2
2
 
3
- #### 3.19.6:
3
+ #### 3.19.7:
4
4
 
5
+ - public expose endpointMetadat in HttpRequest
5
6
  - ModelRepository export uriHandling & beforeReturning
6
7
  - fix uri mapper with vector props
7
8
  - update claire orm and fix
@@ -3,7 +3,7 @@ import { EndpointMetadata } from "../../common/request/endpoint-metadata";
3
3
  import { IPrincipal } from "../../common/auth/IPrincipal";
4
4
  import { IServerSocket } from "../../socket/IServerSocket";
5
5
  export declare class HttpRequest {
6
- protected readonly endpointMetadata?: EndpointMetadata | undefined;
6
+ readonly endpointMetadata?: EndpointMetadata | undefined;
7
7
  readonly valueHolder: Record<string, any>;
8
8
  readonly clientIP?: string;
9
9
  readonly headers: Record<string, string>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clairejs/server",
3
- "version": "3.19.6",
3
+ "version": "3.19.7",
4
4
  "description": "Claire server NodeJs framework written in Typescript.",
5
5
  "types": "dist/index.d.ts",
6
6
  "main": "dist/index.js",