We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6829612 commit 7cb5502Copy full SHA for 7cb5502
components/gitpod-protocol/src/protocol.ts
@@ -254,6 +254,16 @@ export interface ProfileDetails {
254
companyName?: string;
255
// the user's email
256
emailAddress?: string;
257
+ // the user's company website
258
+ companyWebsite?: string;
259
+ // type of role user has in their job
260
+ jobRole?: string;
261
+ // freeform entry for job role user works in (when jobRole is "other")
262
+ jobRoleOther?: string;
263
+ // what user hopes to accomplish when they signed up
264
+ signupGoals?: string;
265
+ // freeform entry for signup goals (when signupGoals is "other")
266
+ signupGoalsOther?: string;
267
}
268
269
export interface EmailNotificationSettings {
0 commit comments