Skip to content
This repository has been archived by the owner on Jul 12, 2023. It is now read-only.

Commit

Permalink
Update types.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
mxdvl authored Oct 27, 2021
1 parent 5f60ff7 commit a1ea0ed
Showing 1 changed file with 15 additions and 13 deletions.
28 changes: 15 additions & 13 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,19 +82,21 @@ type UserNameUser = {
statusFields: {
userEmailValidated: boolean;
};
privateFields: Partial<{
brazeUuid: String,
puzzleUuid: string,
googleTagId: string,
firstName: string,
secondName: string,
registrationIp: string,
lastActiveIpAddress: string,
registrationType: string,
registrationPlatform: string,
telephoneNumber: string,
title: string,
}>;
privateFields: {
legacyPackages: string;
legacyProducts: string;
brazeUuid?: string,
puzzleUuid?: string,
googleTagId?: string,
firstName?: string,
secondName?: string,
registrationIp?: string,
lastActiveIpAddress?: string,
registrationType?: string,
registrationPlatform?: string,
telephoneNumber?: string,
title?: string,
};
primaryEmailAddress: string;
id: string;
hasPassword: boolean;
Expand Down

0 comments on commit a1ea0ed

Please sign in to comment.