@aeriajs/common 0.0.91 → 0.0.93
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/dist/deepMerge.d.ts +1 -1
- package/package.json +2 -2
package/dist/deepMerge.d.ts
CHANGED
|
@@ -2,4 +2,4 @@ export type MergeOptions = {
|
|
|
2
2
|
arrays?: false;
|
|
3
3
|
callback?: (key: string, leftVal: unknown, rightVal: unknown) => unknown;
|
|
4
4
|
};
|
|
5
|
-
export declare const deepMerge: <const TLeft
|
|
5
|
+
export declare const deepMerge: <const TLeft, const TRight>(left: TLeft, right: TRight, options?: MergeOptions) => TLeft & TRight;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aeriajs/common",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.93",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"bson": "^6.5.0"
|
|
32
32
|
},
|
|
33
33
|
"peerDependencies": {
|
|
34
|
-
"@aeriajs/types": "^0.0.
|
|
34
|
+
"@aeriajs/types": "^0.0.80",
|
|
35
35
|
"bson": "^6.5.0"
|
|
36
36
|
},
|
|
37
37
|
"scripts": {
|