@dnax/core 0.76.9 → 0.76.10

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/types/index.ts +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dnax/core",
3
- "version": "0.76.9",
3
+ "version": "0.76.10",
4
4
  "module": "index.ts",
5
5
  "type": "module",
6
6
  "bin": {},
package/types/index.ts CHANGED
@@ -227,9 +227,9 @@ export type hooksCtx = (ctx: {
227
227
  filter?: any;
228
228
  result?: any | null | object | undefined;
229
229
  driver?: "mongodb" | "postgres";
230
- data?: object;
230
+ data?: any;
231
231
  params?: findParam;
232
- options?: {};
232
+ options?: object;
233
233
  count?: number;
234
234
  id?: string;
235
235
  ids?: string[];
@@ -250,7 +250,7 @@ export type beforeOperationCtx = (ctx: {
250
250
  filter?: any;
251
251
  result?: any | null | object | undefined;
252
252
  driver?: "mongodb" | "postgres";
253
- data?: object;
253
+ data?: any;
254
254
  params?: findParam;
255
255
  options?: {};
256
256
  count?: number;