@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.
- package/package.json +1 -1
- package/types/index.ts +3 -3
package/package.json
CHANGED
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?:
|
|
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?:
|
|
253
|
+
data?: any;
|
|
254
254
|
params?: findParam;
|
|
255
255
|
options?: {};
|
|
256
256
|
count?: number;
|