Skip to content

Commit 7654102

Browse files
committed
adding new profile fields for new signup flow
1 parent 9f63300 commit 7654102

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

components/gitpod-protocol/src/protocol.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -254,6 +254,18 @@ export interface ProfileDetails {
254254
companyName?: string;
255255
// the user's email
256256
emailAddress?: string;
257+
// name user prefers to be referred to as, in product / notifications
258+
preferredName?: string;
259+
// the user's company website
260+
companyWebsite?: string;
261+
// industry user works in
262+
workIndustry?: string;
263+
// freeform entry for industry user works in (when workIndustry is "other")
264+
workIndustryOther?: string;
265+
// what user hopes to accomplish when they signed up
266+
signupGoals?: string;
267+
// freeform entry for signup goals (when signupGoals is "other")
268+
signupGoalsOther?: string;
257269
}
258270

259271
export interface EmailNotificationSettings {

0 commit comments

Comments
 (0)