-
Notifications
You must be signed in to change notification settings - Fork 9
/
hints.json
133 lines (133 loc) · 2.83 KB
/
hints.json
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"step_init": [
[
"account_type",
{
"prompt_type": "select",
"prompt_text": {
"en": [
"Please select your OneDrive or SharePoint account type:",
"Global",
"Operated by 21Vianet in China"
],
"cn": [
"请选择你的 OneDrive 或 SharePoint 账户类型:",
"国际版",
"世纪互联版"
]
}
}
],
[
"deploy_type",
{
"prompt_type": "select",
"prompt_text": {
"en": [
"Please select your deploy type (OneDrive or SharePoint):",
"OneDrive",
"SharePoint"
],
"cn": [
"请选择你的部署类型:",
"OneDrive",
"SharePoint"
]
}
}
],
[
"client_id",
{
"prompt_type": "text",
"prompt_text": {
"en": [
"Enter your client_id:"
],
"cn": [
"请提供你的 client_id:"
]
}
}
],
[
"client_secret",
{
"prompt_type": "password",
"prompt_text": {
"en": [
"Enter your client_secret:"
],
"cn": [
"请提供你的 client_secret:"
]
}
}
],
[
"redirect_uri",
{
"prompt_type": "text",
"prompt_text": {
"en": [
"Enter your redirect_uri ([Default] http://localhost:3000):"
],
"cn": [
"请提供你的 redirect_uri ([默认] http://localhost:3000):"
]
},
"initial": "http://localhost:3000"
}
]
],
"step_sharepoint_need_site_id": [
[
"need_site_id",
{
"prompt_type": "select",
"prompt_text": {
"en": [
"Do you want to get SharePoint SiteId ?",
"YES",
"NO"
],
"cn": [
"是否获取 SharePoint SiteId ?",
"是",
"否"
]
}
}
]
],
"step_sharepoint_site_id": [
[
"host_name",
{
"prompt_type": "text",
"prompt_text": {
"en": [
"To get the SharePoint SiteID, You must specify:\n1. SharePoint site host (e.g., cent.sharepoint.com)"
],
"cn": [
"为获取 SharePoint Site,你需要提供如下两个参数:\n1. SharePoint site host (比如:cent.sharepoint.com)"
]
}
}
],
[
"site_path",
{
"prompt_type": "text",
"prompt_text": {
"en": [
"SharePoint sites path (e.g., /sites/centUser)"
],
"cn": [
"SharePoint sites path (比如:/sites/centUser)"
]
}
}
]
]
}