-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
124 lines (119 loc) · 3.6 KB
/
mkdocs.yml
File metadata and controls
124 lines (119 loc) · 3.6 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
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
site_name: Tryx Documentation
site_description: Rust-powered Python SDK for event-driven WhatsApp automation
site_author: krypton-byte
repo_url: https://github.com/krypton-byte/tryx
repo_name: krypton-byte/tryx
edit_uri: edit/main/docs/
nav:
- Home: index.md
- Getting Started:
- Installation: getting-started/installation.md
- Contributing: getting-started/contributing.md
- Quick Start: getting-started/quickstart.md
- Authentication Flow: getting-started/authentication.md
- Core Concepts:
- Architecture: core-concepts/architecture.md
- Event Model: core-concepts/event-model.md
- Type System: core-concepts/type-system.md
- API Reference:
- Client API Gateway: api/client.md
- Client Namespaces:
- Contact Namespace: api/contact.md
- Chat Actions Namespace: api/chat-actions.md
- Community Namespace: api/community.md
- Newsletter Namespace: api/newsletter.md
- Groups Namespace: api/groups.md
- Status Namespace: api/status.md
- Chatstate Namespace: api/chatstate.md
- Blocking Namespace: api/blocking.md
- Polls Namespace: api/polls.md
- Presence Namespace: api/presence.md
- Privacy Namespace: api/privacy.md
- Profile Namespace: api/profile.md
- Events API: api/events.md
- Types API: api/types.md
- Helpers API: api/helpers.md
- WACore API: api/wacore.md
- Tutorials:
- Command Bot: tutorials/command-bot.md
- Profile and Privacy: tutorials/profile-privacy.md
- Poll Survey Workflow: tutorials/poll-survey.md
- Media Workflows: tutorials/media-workflows.md
- Group Automation: tutorials/group-automation.md
- Operations:
- Deployment: operations/deployment.md
- Reliability: operations/reliability.md
- Troubleshooting: operations/troubleshooting.md
- Performance: operations/performance.md
- Security: operations/security.md
- FAQ:
- QnA: faq/qna.md
- Reference:
- Glossary: reference/glossary.md
- Error Handling: reference/error-handling.md
- Roadmap: reference/roadmap.md
- Changelog Policy: reference/changelog.md
theme:
name: material
language: en
features:
- navigation.sections
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
- navigation.path
- navigation.tracking
- navigation.instant
- navigation.expand
- navigation.indexes
- content.code.copy
- content.code.annotate
- content.tabs.link
- content.tooltips
- search.suggest
- search.highlight
- search.share
- toc.follow
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: teal
accent: amber
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: teal
accent: orange
toggle:
icon: material/brightness-4
name: Switch to light mode
plugins:
- search
- minify:
minify_html: true
markdown_extensions:
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- tables
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.inlinehilite
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
- pymdownx.snippets
- toc:
permalink: true
toc_depth: 2-4
extra_css:
- assets/stylesheets/extra.css