Skip to content

Commit a8a3849

Browse files
committedJan 25, 2024
feat: add considerMoveAsUpdate option
1 parent 9f46eb1 commit a8a3849

10 files changed

+152
-9
lines changed
 

‎dist/index.d.mts

+9
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ type ObjectOptions = {
2929
type ListOptions = {
3030
showOnly?: Array<ListStatusTuple[number]>;
3131
referenceProperty?: string;
32+
considerMoveAsUpdate?: boolean;
3233
};
3334
type ListDiff = {
3435
type: "list";
@@ -64,6 +65,11 @@ type ObjectDiff = {
6465
* Returns the diff between two objects
6566
* @param {Record<string, any>} prevData - The original object.
6667
* @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.
6773
* @returns ObjectDiff
6874
*/
6975
declare function getObjectDiff(prevData: ObjectData, nextData: ObjectData, options?: ObjectOptions): ObjectDiff;
@@ -72,6 +78,9 @@ declare function getObjectDiff(prevData: ObjectData, nextData: ObjectData, optio
7278
* Returns the diff between two arrays
7379
* @param {Array<T>} prevList - The original array.
7480
* @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.
7584
* @returns ListDiff
7685
*/
7786
declare const getListDiff: <T>(prevList: T[] | null | undefined, nextList: T[] | null | undefined, options?: ListOptions) => ListDiff;

‎dist/index.d.ts

+9
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ type ObjectOptions = {
2929
type ListOptions = {
3030
showOnly?: Array<ListStatusTuple[number]>;
3131
referenceProperty?: string;
32+
considerMoveAsUpdate?: boolean;
3233
};
3334
type ListDiff = {
3435
type: "list";
@@ -64,6 +65,11 @@ type ObjectDiff = {
6465
* Returns the diff between two objects
6566
* @param {Record<string, any>} prevData - The original object.
6667
* @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.
6773
* @returns ObjectDiff
6874
*/
6975
declare function getObjectDiff(prevData: ObjectData, nextData: ObjectData, options?: ObjectOptions): ObjectDiff;
@@ -72,6 +78,9 @@ declare function getObjectDiff(prevData: ObjectData, nextData: ObjectData, optio
7278
* Returns the diff between two arrays
7379
* @param {Array<T>} prevList - The original array.
7480
* @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.
7584
* @returns ListDiff
7685
*/
7786
declare const getListDiff: <T>(prevList: T[] | null | undefined, nextList: T[] | null | undefined, options?: ListOptions) => ListDiff;

‎dist/index.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)