@ampsec/platform-client 1.0.0 → 1.0.1
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.
package/README.md
CHANGED
|
@@ -16,9 +16,9 @@ You can use the types by simply importing them.
|
|
|
16
16
|
import {UpsertUserDto} from '@ampsec/platform-client'
|
|
17
17
|
|
|
18
18
|
const user: UpsertUserDto = {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
19
|
+
id?: number;
|
|
20
|
+
etag: string;
|
|
21
|
+
department?: string;
|
|
22
22
|
emails: string[];
|
|
23
23
|
firstName: string;
|
|
24
24
|
lastName: string;
|
|
@@ -9,7 +9,7 @@ export type BaseDto = {
|
|
|
9
9
|
createdAt: string;
|
|
10
10
|
/** Last record update date in database. */
|
|
11
11
|
updatedAt: string;
|
|
12
|
-
/** Record
|
|
12
|
+
/** Record deletion date in database. Only present on soft deleted, i.e. `null => active` */
|
|
13
13
|
deletedAt: string | null;
|
|
14
14
|
};
|
|
15
15
|
export type ChangeAwareUpsertDto = BaseUpsertDto & {
|