trand_common_v1 0.1.93 → 0.1.94
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.
|
@@ -1125,10 +1125,9 @@ export type Administrator = {
|
|
|
1125
1125
|
deactivated_by: string | null;
|
|
1126
1126
|
};
|
|
1127
1127
|
export type AdministratorInsert = {
|
|
1128
|
-
aid: string;
|
|
1129
1128
|
email: string;
|
|
1130
1129
|
pw: string;
|
|
1131
|
-
} & Partial<Omit<Administrator, "
|
|
1130
|
+
} & Partial<Omit<Administrator, "email" | "pw">>;
|
|
1132
1131
|
export type AdministratorUpdate = {
|
|
1133
1132
|
aid: string;
|
|
1134
1133
|
} & Partial<Omit<Administrator, "aid">>;
|