-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmkdocs.yml
145 lines (136 loc) · 4.79 KB
/
mkdocs.yml
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
134
135
136
137
138
139
140
141
142
143
144
145
# Project information
site_name: App Connect for RingEX
site_url: https://github.com/ringcentral/rc-unified-crm-extension
# Repository
repo_url: https://github.com/ringcentral/rc-unified-crm-extension
repo_name: ringcentral/rc-unified-crm-extension
edit_uri: tree/master/docs
docs_dir: docs
theme:
name: material
logo: img/RingCentral_logo_color.png
font:
code: Roboto Mono
text: Inter Tight
features:
- navigation.path
- navigation.sections
- navigation.expand
- navigation.tabs
- search.sharing
- search.highlight
palette:
- scheme: default
primary: custom
accent: indigo
toggle:
icon: material/toggle-switch
name: Switch to dark mode
- scheme: slate
primary: black
accent: indigo
toggle:
icon: material/toggle-switch-off-outline
name: Switch to light mode
font:
text: Roboto
code: Roboto Mono
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/ringcentral
- icon: fontawesome/brands/twitter
link: https://twitter.com/ringcentraldevs
extra_css:
- extra.css
#plugins:
# pdf-export:
# combined: true
markdown_extensions:
- attr_list
- md_in_html
- admonition
- mdx_include
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
copyright: "2023-2025 RingCentral, Inc. All rights reserved."
nav:
- 'Home': index.md
- 'Installation': getting-started.md
- 'Supported CRMs':
- 'Overview': crm/index.md
- 'Bullhorn': crm/bullhorn.md
- 'Clio': crm/clio.md
- 'Insightly': crm/insightly.md
- 'NetSuite': crm/netsuite.md
- 'Pipedrive': crm/pipedrive.md
- 'Redtail CRM': crm/redtail.md
- 'ServiceNow': crm/servicenow.md
- 'User guide':
- 'Using App Connect':
- 'Accessing App Connect': users/access.md
- 'Making and receiving calls': users/making-calls.md
- 'AI Assistant': users/ai.md
- 'Sending SMS': users/sms.md
- 'Presence': users/presence.md
- 'Administration':
- 'Becoming an admin': users/admin.md
- 'Managed settings': users/managed-settings.md
- 'Custom adapters': users/custom-adapters.md
- 'Call Logging':
- 'Logging overview': users/logging.md
- 'Resolving logging conflicts': users/logging-conflicts.md
- 'Logging calls automatically': users/automatic-logging.md
- 'Server-side call logging': users/server-side-logging.md
- 'User settings':
- 'Settings synchronization': users/settings-sync.md
- 'Audio input/output': users/audio.md
- 'Call log prompts': users/prompts.md
- 'Call-pop': users/call-pop.md
- 'Phone number formats': users/phone-number-formats.md
- 'Preferred device': users/preferred-device.md
- 'Region': users/region.md
- Advanced options:
- 'Developer options': users/developer-options.md
- 'Browser options': users/extension-options.md
- 'Developer guide':
- 'Introduction': developers/index.md
- 'Getting started': developers/getting-started.md
- 'Technical overview': developers/adapter.md
- 'Build and deployment': developers/deploy.md
- 'Proprietary CRMs': developers/proprietary-crm.md
- 'Adapter':
- 'Authorization': developers/auth.md
- 'Manifest':
- 'Manifest properties': developers/manifest.md
- 'Customizing pages': developers/manifest-pages.md
- 'Sample manifest': developers/manifest-sample.md
- 'Server':
- 'Contact matching': developers/contact-matching.md
- 'Logging phone calls': developers/logging-calls.md
- 'Logging SMS': developers/logging-sms.md
- 'Placeholder contacts': developers/placeholder-contacts.md
- 'Viewing contacts and activities': developers/view-details.md
- 'Welcome pages': developers/welcome-page.md
- 'Returning errors': developers/errors.md
- 'Building your own server': developers/advanced/openapi.md
- 'Interfaces':
- 'createCallLog': developers/interfaces/createCallLog.md
- 'createMessageLog': developers/interfaces/createMessageLog.md
- 'createContact': developers/interfaces/createContact.md
- 'getAuthType': developers/interfaces/getAuthType.md
- 'getCallLog': developers/interfaces/getCallLog.md
- 'findContact': developers/interfaces/findContact.md
- 'getOauthInfo': developers/interfaces/getOauthInfo.md
- 'getUserInfo': developers/interfaces/getUserInfo.md
- 'unAuthorize': developers/interfaces/unAuthorize.md
- 'updateCallLog': developers/interfaces/updateCallLog.md
- 'updateMessageLog': developers/interfaces/updateMessageLog.md
- 'Support':
- 'Troubleshooting': support.md
- 'Build a CRM adapter': build.md
- 'Release notes': release-notes.md