@nangohq/types 0.47.0 → 0.47.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/dist/connect/api.d.ts
CHANGED
package/dist/endUser/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ export interface EndUser {
|
|
|
3
3
|
readonly endUserId: string;
|
|
4
4
|
readonly accountId: number;
|
|
5
5
|
readonly environmentId: number;
|
|
6
|
-
readonly email: string;
|
|
6
|
+
readonly email: string | null;
|
|
7
7
|
readonly displayName?: string | null;
|
|
8
8
|
readonly organization?: {
|
|
9
9
|
readonly organizationId: string;
|
|
@@ -17,7 +17,7 @@ export interface DBEndUser {
|
|
|
17
17
|
readonly end_user_id: string;
|
|
18
18
|
readonly account_id: number;
|
|
19
19
|
readonly environment_id: number;
|
|
20
|
-
readonly email: string;
|
|
20
|
+
readonly email: string | null;
|
|
21
21
|
readonly display_name: string | null;
|
|
22
22
|
readonly organization_id: string | null;
|
|
23
23
|
readonly organization_display_name: string | null;
|
|
@@ -28,7 +28,7 @@ export type DBInsertEndUser = Omit<DBEndUser, 'id' | 'created_at' | 'updated_at'
|
|
|
28
28
|
export interface ApiEndUser {
|
|
29
29
|
id: string;
|
|
30
30
|
displayName: string | null;
|
|
31
|
-
email: string;
|
|
31
|
+
email: string | null;
|
|
32
32
|
organization: {
|
|
33
33
|
id: string;
|
|
34
34
|
displayName: string | null;
|
package/dist/fleet/index.d.ts
CHANGED