law-common 10.72.1-beta.1 → 10.72.1-beta.2
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.
|
@@ -369,8 +369,8 @@ export type IHistoryEntitySearchByConstraintResponse<T> = {
|
|
|
369
369
|
export type IHistoryEntityChangedLogs<T> = {
|
|
370
370
|
key: keyof T;
|
|
371
371
|
label: string;
|
|
372
|
-
newValue:
|
|
373
|
-
oldValue:
|
|
372
|
+
newValue: T[keyof T];
|
|
373
|
+
oldValue: T[keyof T] | null;
|
|
374
374
|
timeStamp: number;
|
|
375
375
|
};
|
|
376
376
|
export declare enum VirtualEntityEnum {
|