Superdiff provides a complete and readable diff for both arrays and objects. Plus, it supports stream and file inputs for handling large datasets efficiently, is battle-tested, has zero dependencies, and is super fast.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

91 lines
1.8 KiB

export const STATUS: Record<string, ObjectDiffStatus> = {
2 years ago
ADDED: "added",
EQUAL: "equal",
DELETED: "deleted",
UPDATED: "updated",
};
export const LIST_STATUS: Record<string, ListDiffStatus> = {
...STATUS,
MOVED: "moved",
};
2 years ago
export const GRANULARITY: Record<string, "basic" | "deep"> = {
BASIC: "basic",
DEEP: "deep",
};
export type ListDiffStatus =
| "added"
| "equal"
| "moved"
| "deleted"
| "updated";
export type ObjectDiffStatus = "added" | "equal" | "deleted" | "updated";
2 years ago
export type ObjectData = Record<string, any> | undefined | null;
export type ListData = any;
export type ObjectStatusTuple = readonly [
"added",
"equal",
"deleted",
"updated"
];
export type ListStatusTuple = readonly [
"added",
"equal",
"deleted",
2 years ago
"moved",
"updated"
];
export type isEqualOptions = {
ignoreArrayOrder?: boolean;
};
export type ObjectOptions = {
ignoreArrayOrder?: boolean;
showOnly?: {
statuses: Array<ObjectStatusTuple[number]>;
2 years ago
granularity?: typeof GRANULARITY[keyof typeof GRANULARITY];
};
};
export type ListOptions = {
showOnly?: Array<ListStatusTuple[number]>;
};
2 years ago
export type ListDiff = {
type: "list";
status: ListDiffStatus;
2 years ago
diff: {
value: ListData;
prevIndex: number | null;
newIndex: number | null;
indexDiff: number | null;
status: ListDiffStatus;
2 years ago
}[];
};
export type SubProperties = {
property: string;
2 years ago
previousValue: any;
currentValue: any;
status: ObjectDiffStatus;
subPropertiesDiff?: SubProperties[];
2 years ago
};
export type ObjectDiff = {
type: "object";
status: ObjectDiffStatus;
2 years ago
diff: {
property: string;
previousValue: any;
currentValue: any;
status: ObjectDiffStatus;
subPropertiesDiff?: SubProperties[];
2 years ago
}[];
};
export type DataDiff = ListDiff | ObjectDiff;