-
-
Notifications
You must be signed in to change notification settings - Fork 567
Expand file tree
/
Copy pathICommonUrls.ts
More file actions
66 lines (60 loc) · 2.64 KB
/
ICommonUrls.ts
File metadata and controls
66 lines (60 loc) · 2.64 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
export interface ICommonUrls {
// Link to the help center.
help: string;
// Various links to support pages:
helpAccessRules: string;
helpAssistant: string;
helpAssistantDataUse: string;
helpFormulaAssistantDataUse: string;
helpColRefs: string;
helpConditionalFormatting: string;
helpFilterButtons: string;
helpLinkingWidgets: string;
helpRawData: string;
helpSuggestions: string;
helpUnderstandingReferenceColumns: string;
helpTriggerFormulas: string;
helpTryingOutChanges: string;
helpAutomations: string;
helpWidgets: string;
helpCustomWidgets: string;
helpInstallAuditLogs: string;
helpTeamAuditLogs: string;
helpTelemetryLimited: string;
helpEnterpriseOptIn: string;
helpCalendarWidget: string;
helpLinkKeys: string;
helpFilteringReferenceChoices: string;
helpSandboxing: string;
helpSharing: string;
helpStateStore: string;
helpAPI: string;
helpSummaryFormulas: string;
helpAdminControls: string;
helpFiddleMode: string;
helpFormUrlValues: string;
helpAirtableIntegration: string;
freeCoachingCall: string; // Link to the human help (example: email adress or meeting scheduling tool)
contactSupport: string; // Link to contact support on error pages (example: email adress or online form).
termsOfService: string | undefined; // Link to the terms of service (if set, adds a button to the bottom-left corner).
onboardingTutorialVideoId: string; // URL to the Youtube video to onboard users.
plans: string; // Link to the plans.
contact: string; // Link to the contact page.
templates: string; // Link to the templates store.
webinars: string; // Link to the webinars
community: string; // Link to the forum.
functions: string; // Support doc for the functions.
formulaSheet: string; // URL to the formula cheat sheet.
formulas: string; // Support doc for formulas.
forms: string; // Footer link to show how to create own's form.
// URL of the preview image when sharing the link on websites like social medias or chat applications.
openGraphPreviewImage: string;
gristLabsCustomWidgets: string; // Repo of the Grist Labs custom widget
gristLabsWidgetRepository: string; // Url pointing to a widget manifest
githubGristCore: string; // Link to the grist-core project repository on Github.
githubSponsorGristLabs: string; // Link to the Grist Labs sponsor page.
versionCheck: string; // API to check the instance has the latest version and otherwise show a banner.
attachmentStorage: string; // Support doc for attachment storage.
signInWithGristRegister: string; // Registration for Sign in with getgrist.com.
signInWithGristHelp: string; // Help for Sign in with getgrist.com.
}