You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: dist/index.d.mts
+9
Original file line number
Diff line number
Diff line change
@@ -29,6 +29,7 @@ type ObjectOptions = {
29
29
typeListOptions={
30
30
showOnly?: Array<ListStatusTuple[number]>;
31
31
referenceProperty?: string;
32
+
considerMoveAsUpdate?: boolean;
32
33
};
33
34
typeListDiff={
34
35
type: "list";
@@ -64,6 +65,11 @@ type ObjectDiff = {
64
65
* Returns the diff between two objects
65
66
* @param {Record<string, any>} prevData - The original object.
66
67
* @param {Record<string, any>} nextData - The new object.
68
+
* * @param {ListOptions} options - Options to refine your output.
69
+
- `showOnly`: returns only the values whose status you are interested in. It takes two parameters: `statuses` and `granularity`
70
+
`statuses` are the status you want to see in the output (e.g. `["added", "equal"]`)
71
+
`granularity` can be either `basic` (to return only the main properties whose status matches your query) or `deep` (to return the main properties if some of their subproperties' status match your request. The subproperties are filtered accordingly).
72
+
- `ignoreArrayOrder` if set to `true`, `["hello", "world"]` and `["world", "hello"]` will be treated as `equal`, because the two arrays have the same value, just not in the same order.
* @param {Array<T>} prevList - The original array.
74
80
* @param {Array<T>} nextList - The new array.
81
+
* @param {ListOptions} options - Options to refine your output.
82
+
- `showOnly` gives you the option to return only the values whose status you are interested in (e.g. `["added", "equal"]`).
83
+
- `referenceProperty` will consider an object to be updated instead of added or deleted if one of its properties remains stable, such as its `id`. This option has no effect on other datatypes.
Copy file name to clipboardexpand all lines: dist/index.d.ts
+9
Original file line number
Diff line number
Diff line change
@@ -29,6 +29,7 @@ type ObjectOptions = {
29
29
typeListOptions={
30
30
showOnly?: Array<ListStatusTuple[number]>;
31
31
referenceProperty?: string;
32
+
considerMoveAsUpdate?: boolean;
32
33
};
33
34
typeListDiff={
34
35
type: "list";
@@ -64,6 +65,11 @@ type ObjectDiff = {
64
65
* Returns the diff between two objects
65
66
* @param {Record<string, any>} prevData - The original object.
66
67
* @param {Record<string, any>} nextData - The new object.
68
+
* * @param {ListOptions} options - Options to refine your output.
69
+
- `showOnly`: returns only the values whose status you are interested in. It takes two parameters: `statuses` and `granularity`
70
+
`statuses` are the status you want to see in the output (e.g. `["added", "equal"]`)
71
+
`granularity` can be either `basic` (to return only the main properties whose status matches your query) or `deep` (to return the main properties if some of their subproperties' status match your request. The subproperties are filtered accordingly).
72
+
- `ignoreArrayOrder` if set to `true`, `["hello", "world"]` and `["world", "hello"]` will be treated as `equal`, because the two arrays have the same value, just not in the same order.
* @param {Array<T>} prevList - The original array.
74
80
* @param {Array<T>} nextList - The new array.
81
+
* @param {ListOptions} options - Options to refine your output.
82
+
- `showOnly` gives you the option to return only the values whose status you are interested in (e.g. `["added", "equal"]`).
83
+
- `referenceProperty` will consider an object to be updated instead of added or deleted if one of its properties remains stable, such as its `id`. This option has no effect on other datatypes.
0 commit comments