@acuteinfo/common-base 1.2.1 → 1.2.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.
|
@@ -17,7 +17,14 @@ export declare const transformDetailsData: (newData: any, oldData: any) => {
|
|
|
17
17
|
export declare const isValidDate: (dat: any) => boolean;
|
|
18
18
|
export declare const generateUUID: () => string;
|
|
19
19
|
export declare const getMetadataLabelFromColumnName: (metadata: any, colomnList: any) => {};
|
|
20
|
-
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @param input1 old data array
|
|
23
|
+
* @param input2 new data array
|
|
24
|
+
* @param keysToCompare string array containing valid keys of data array
|
|
25
|
+
* @returns object with isNewRow, isUpdatedRow, isDeleteRow array properties
|
|
26
|
+
*/
|
|
27
|
+
export declare const transformDetailDataForDML: (input1: any, input2: any, keysToCompare: string[]) => {
|
|
21
28
|
isNewRow: any[];
|
|
22
29
|
isUpdatedRow: any[];
|
|
23
30
|
isDeleteRow: any[];
|