@nomalism-com/types 0.33.24 → 0.33.25
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.
|
@@ -977,6 +977,10 @@ export type DocumentLineRM = {
|
|
|
977
977
|
rm_done_date: Date | null;
|
|
978
978
|
rm_checked_by: string | null;
|
|
979
979
|
rm_checked_date: Date | null;
|
|
980
|
+
created_by: string;
|
|
981
|
+
updated_by: string;
|
|
982
|
+
created_at: Date;
|
|
983
|
+
updated_at: Date;
|
|
980
984
|
};
|
|
981
985
|
export type DocumentLineMT = {
|
|
982
986
|
document_line_id: string;
|
|
@@ -987,4 +991,8 @@ export type DocumentLineMT = {
|
|
|
987
991
|
mt_execution_when: Date | null;
|
|
988
992
|
mt_done_by: string | null;
|
|
989
993
|
mt_done_date: Date | null;
|
|
994
|
+
created_by: string;
|
|
995
|
+
updated_by: string;
|
|
996
|
+
created_at: Date;
|
|
997
|
+
updated_at: Date;
|
|
990
998
|
};
|