File size: 1,337 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
export const STORE_KEY = 'automattic/onboard';

export enum SiteGoal {
	Write = 'write',
	Promote = 'promote',
	CollectDonations = 'collect-donations',
	BuildNonprofit = 'build-nonprofit',
	SellDigital = 'sell-digital',
	ContactForm = 'contact-form',
	PaidSubscribers = 'paid-subscribers',
	Engagement = 'engagement',
	Porfolio = 'portfolio',
	Newsletter = 'newsletter',
	SellPhysical = 'sell-physical',
	Courses = 'courses',
	Videos = 'videos',
	AnnounceEvents = 'announce-events',

	// The following goals are deprecated. They are no longer availabe in the goals
	// signup step, but existing sites still use them.
	Sell = 'sell',
	DIFM = 'difm', // "Do It For Me"
	Import = 'import',
	Other = 'other',
	ImportSubscribers = 'import-subscribers',
}

export enum SiteIntent {
	Write = 'write',
	StartWriting = 'start-writing',
	Sell = 'sell',
	Build = 'build',
	DIFM = 'difm', // "Do It For Me"
	WpAdmin = 'wpadmin',
	Import = 'import', // deprecated
	ReadyMadeTemplate = 'readymade-template',
	AIAssembler = 'ai-assembler',
	Newsletter = 'newsletter',
	NewsletterGoal = 'intent-newsletter-goal',
	CreateCourseGoal = 'create-course-goal',
	FreePostSetup = 'free-post-setup', // non-signup flow
	SiteMigration = 'site-migration',
	UpdateDesign = 'update-design', // non-signup flow
	UpdateOptions = 'update-options', // non-signup flow
}