Skip to content

Commit

Permalink
chore: KindeUser types to include custom properties
Browse files Browse the repository at this point in the history
  • Loading branch information
peterphanouvong committed Aug 19, 2024
1 parent e435307 commit 11c1962
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,15 +52,16 @@ export type KindeUser = {
username?: string | null;
phone_number?: string | null;
properties?: {
usr_city?: string;
usr_industry?: string;
usr_job_title?: string;
usr_middle_name?: string;
usr_postcode?: string;
usr_salutation?: string;
usr_state_region?: string;
usr_street_address?: string;
usr_street_address_2?: string;
city?: string;
industry?: string;
job_title?: string;
middle_name?: string;
postcode?: string;
salutation?: string;
state_region?: string;
street_address?: string;
street_address_2?: string;
[custom_property: string]: any;
};
};

Expand Down

0 comments on commit 11c1962

Please sign in to comment.