@clairejs/server 3.19.5 → 3.19.6

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.5:
3
+ #### 3.19.6:
4
4
 
5
+ - ModelRepository export uriHandling & beforeReturning
5
6
  - fix uri mapper with vector props
6
7
  - update claire orm and fix
7
8
  - fix isEndpoint
@@ -11,8 +11,8 @@ export declare class ModelRepository<T extends AbstractModel> extends AbstractRe
11
11
  private getNestedQueries;
12
12
  private getUploadHandler;
13
13
  private getRequestQueryConditionFromQuery;
14
- protected uriHandling(records: Partial<T>[]): Promise<() => Promise<void>>;
15
- protected beforeReturning(records: Partial<T>[]): Promise<void>;
14
+ uriHandling(records: Partial<T>[]): Promise<() => Promise<void>>;
15
+ beforeReturning(records: Partial<T>[]): Promise<void>;
16
16
  createMany({ principal, body, tx, logger, }: {
17
17
  principal?: IPrincipal;
18
18
  body: CreateManyRequestBody<T>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clairejs/server",
3
- "version": "3.19.5",
3
+ "version": "3.19.6",
4
4
  "description": "Claire server NodeJs framework written in Typescript.",
5
5
  "types": "dist/index.d.ts",
6
6
  "main": "dist/index.js",