@get-technology-inc/jamf-docs-mcp-server 0.0.1 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (59) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +111 -29
  3. package/dist/constants.d.ts +263 -0
  4. package/dist/constants.d.ts.map +1 -0
  5. package/dist/constants.js +308 -0
  6. package/dist/constants.js.map +1 -0
  7. package/dist/index.d.ts +9 -0
  8. package/dist/index.d.ts.map +1 -0
  9. package/dist/index.js +40 -0
  10. package/dist/index.js.map +1 -0
  11. package/dist/resources/index.d.ts +13 -0
  12. package/dist/resources/index.d.ts.map +1 -0
  13. package/dist/resources/index.js +45 -0
  14. package/dist/resources/index.js.map +1 -0
  15. package/dist/schemas/index.d.ts +61 -0
  16. package/dist/schemas/index.d.ts.map +1 -0
  17. package/dist/schemas/index.js +127 -0
  18. package/dist/schemas/index.js.map +1 -0
  19. package/dist/services/cache.d.ts +47 -0
  20. package/dist/services/cache.d.ts.map +1 -0
  21. package/dist/services/cache.js +165 -0
  22. package/dist/services/cache.js.map +1 -0
  23. package/dist/services/metadata.d.ts +78 -0
  24. package/dist/services/metadata.d.ts.map +1 -0
  25. package/dist/services/metadata.js +349 -0
  26. package/dist/services/metadata.js.map +1 -0
  27. package/dist/services/scraper.d.ts +62 -0
  28. package/dist/services/scraper.d.ts.map +1 -0
  29. package/dist/services/scraper.js +544 -0
  30. package/dist/services/scraper.js.map +1 -0
  31. package/dist/services/search-suggestions.d.ts +27 -0
  32. package/dist/services/search-suggestions.d.ts.map +1 -0
  33. package/dist/services/search-suggestions.js +193 -0
  34. package/dist/services/search-suggestions.js.map +1 -0
  35. package/dist/services/tokenizer.d.ts +93 -0
  36. package/dist/services/tokenizer.d.ts.map +1 -0
  37. package/dist/services/tokenizer.js +330 -0
  38. package/dist/services/tokenizer.js.map +1 -0
  39. package/dist/tools/get-article.d.ts +7 -0
  40. package/dist/tools/get-article.d.ts.map +1 -0
  41. package/dist/tools/get-article.js +244 -0
  42. package/dist/tools/get-article.js.map +1 -0
  43. package/dist/tools/get-toc.d.ts +7 -0
  44. package/dist/tools/get-toc.d.ts.map +1 -0
  45. package/dist/tools/get-toc.js +202 -0
  46. package/dist/tools/get-toc.js.map +1 -0
  47. package/dist/tools/list-products.d.ts +7 -0
  48. package/dist/tools/list-products.d.ts.map +1 -0
  49. package/dist/tools/list-products.js +150 -0
  50. package/dist/tools/list-products.js.map +1 -0
  51. package/dist/tools/search.d.ts +7 -0
  52. package/dist/tools/search.d.ts.map +1 -0
  53. package/dist/tools/search.js +252 -0
  54. package/dist/tools/search.js.map +1 -0
  55. package/dist/types.d.ts +188 -0
  56. package/dist/types.d.ts.map +1 -0
  57. package/dist/types.js +28 -0
  58. package/dist/types.js.map +1 -0
  59. package/package.json +68 -6
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 GET Technology Inc.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -1,45 +1,127 @@
1
- # @get-technology-inc/jamf-docs-mcp-server
1
+ # Jamf Docs MCP Server
2
2
 
3
- ## ⚠️ IMPORTANT NOTICE ⚠️
3
+ [![CI](https://github.com/GET-Technology-Inc/jamf-docs-mcp-server/actions/workflows/ci.yml/badge.svg)](https://github.com/GET-Technology-Inc/jamf-docs-mcp-server/actions/workflows/ci.yml)
4
+ [![npm version](https://img.shields.io/npm/v/@get-technology-inc/jamf-docs-mcp-server.svg)](https://www.npmjs.com/package/@get-technology-inc/jamf-docs-mcp-server)
5
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
4
6
 
5
- **This package is created solely for the purpose of setting up OIDC (OpenID Connect) trusted publishing with npm.**
7
+ An MCP server that gives AI assistants (Claude, Cursor, etc.) direct access to Jamf official documentation. Ask Jamf-related questions and get answers based on the latest docs from learn.jamf.com.
6
8
 
7
- This is **NOT** a functional package and contains **NO** code or functionality beyond the OIDC setup configuration.
9
+ **Supported Products**: Jamf Pro, Jamf School, Jamf Connect, Jamf Protect
8
10
 
9
- ## Purpose
11
+ [中文文件](docs/README.zh-TW.md)
10
12
 
11
- This package exists to:
12
- 1. Configure OIDC trusted publishing for the package name `@get-technology-inc/jamf-docs-mcp-server`
13
- 2. Enable secure, token-less publishing from CI/CD workflows
14
- 3. Establish provenance for packages published under this name
13
+ ## Quick Start
15
14
 
16
- ## What is OIDC Trusted Publishing?
15
+ ### Claude Desktop
17
16
 
18
- OIDC trusted publishing allows package maintainers to publish packages directly from their CI/CD workflows without needing to manage npm access tokens. Instead, it uses OpenID Connect to establish trust between the CI/CD provider (like GitHub Actions) and npm.
17
+ Edit `claude_desktop_config.json`:
19
18
 
20
- ## Setup Instructions
19
+ - **macOS**: `~/Library/Application Support/Claude/claude_desktop_config.json`
20
+ - **Windows**: `%APPDATA%\Claude\claude_desktop_config.json`
21
21
 
22
- To properly configure OIDC trusted publishing for this package:
22
+ ```json
23
+ {
24
+ "mcpServers": {
25
+ "jamf-docs": {
26
+ "command": "npx",
27
+ "args": ["-y", "@get-technology-inc/jamf-docs-mcp-server"]
28
+ }
29
+ }
30
+ }
31
+ ```
23
32
 
24
- 1. Go to [npmjs.com](https://www.npmjs.com/) and navigate to your package settings
25
- 2. Configure the trusted publisher (e.g., GitHub Actions)
26
- 3. Specify the repository and workflow that should be allowed to publish
27
- 4. Use the configured workflow to publish your actual package
33
+ Restart Claude Desktop to apply.
28
34
 
29
- ## DO NOT USE THIS PACKAGE
35
+ ### Claude Code (CLI)
30
36
 
31
- This package is a placeholder for OIDC configuration only. It:
32
- - Contains no executable code
33
- - Provides no functionality
34
- - Should not be installed as a dependency
35
- - Exists only for administrative purposes
37
+ ```bash
38
+ claude mcp add jamf-docs -- npx -y @get-technology-inc/jamf-docs-mcp-server
39
+ ```
36
40
 
37
- ## More Information
41
+ ### Cursor
38
42
 
39
- For more details about npm's trusted publishing feature, see:
40
- - [npm Trusted Publishing Documentation](https://docs.npmjs.com/generating-provenance-statements)
41
- - [GitHub Actions OIDC Documentation](https://docs.github.com/en/actions/deployment/security-hardening-your-deployments/about-security-hardening-with-openid-connect)
43
+ Edit `~/.cursor/mcp.json`:
42
44
 
43
- ---
45
+ ```json
46
+ {
47
+ "mcpServers": {
48
+ "jamf-docs": {
49
+ "command": "npx",
50
+ "args": ["-y", "@get-technology-inc/jamf-docs-mcp-server"]
51
+ }
52
+ }
53
+ }
54
+ ```
44
55
 
45
- **Maintained for OIDC setup purposes only**
56
+ ### Verify Installation
57
+
58
+ Test with MCP Inspector:
59
+
60
+ ```bash
61
+ npx @modelcontextprotocol/inspector npx -y @get-technology-inc/jamf-docs-mcp-server
62
+ ```
63
+
64
+ ## Usage Examples
65
+
66
+ Once configured, just ask your AI assistant:
67
+
68
+ - "How do I configure SSO in Jamf Pro?"
69
+ - "What are the system requirements for Jamf Protect?"
70
+ - "Explain the MDM enrollment process"
71
+
72
+ ## Available Tools
73
+
74
+ | Tool | Description |
75
+ |------|-------------|
76
+ | `jamf_docs_search` | Search documentation |
77
+ | `jamf_docs_get_article` | Get article content |
78
+ | `jamf_docs_get_toc` | Get table of contents |
79
+ | `jamf_docs_list_products` | List supported products |
80
+
81
+ ## MCP Resources
82
+
83
+ Static reference data accessible without tool calls:
84
+
85
+ | Resource | Description |
86
+ |----------|-------------|
87
+ | `jamf://products` | List of products with version info |
88
+ | `jamf://topics` | Topic categories for filtering |
89
+
90
+ ## Key Features
91
+
92
+ - **Compact Mode**: Use `outputMode: "compact"` for token-efficient responses
93
+ - **Summary Only**: Use `summaryOnly: true` to preview articles before fetching full content
94
+ - **Version Query**: Use `version` parameter to query specific product versions
95
+ - **Search Suggestions**: Get helpful suggestions when no results found
96
+
97
+ ## Configuration
98
+
99
+ Optional environment variables:
100
+
101
+ | Variable | Description | Default |
102
+ |----------|-------------|---------|
103
+ | `CACHE_DIR` | Cache directory | `.cache` |
104
+ | `REQUEST_TIMEOUT` | Request timeout (ms) | `15000` |
105
+ | `CACHE_TTL_ARTICLE` | Article cache TTL (ms) | `86400000` (24hr) |
106
+
107
+ ## Development
108
+
109
+ ```bash
110
+ git clone https://github.com/GET-Technology-Inc/jamf-docs-mcp-server.git
111
+ cd jamf-docs-mcp-server
112
+ npm install
113
+ npm run dev
114
+ ```
115
+
116
+ ## License
117
+
118
+ MIT - Copyright (c) 2025 GET Technology Inc.
119
+
120
+ ## Disclaimer
121
+
122
+ This is an unofficial tool and is not affiliated with Jamf.
123
+
124
+ ## Links
125
+
126
+ - [Jamf Documentation](https://learn.jamf.com)
127
+ - [MCP Specification](https://spec.modelcontextprotocol.io/)
@@ -0,0 +1,263 @@
1
+ /**
2
+ * Constants for Jamf Docs MCP Server
3
+ *
4
+ * Note: Jamf documentation has moved from docs.jamf.com to learn.jamf.com
5
+ * The new URL structure is: learn.jamf.com/en-US/bundle/{product}-documentation/page/{page}.html
6
+ */
7
+ export declare const DOCS_BASE_URL = "https://learn.jamf.com";
8
+ export declare const DOCS_API_URL = "https://learn-be.jamf.com";
9
+ export declare const JAMF_PRODUCTS: {
10
+ readonly 'jamf-pro': {
11
+ readonly id: "jamf-pro";
12
+ readonly name: "Jamf Pro";
13
+ readonly description: "Apple device management for enterprise";
14
+ readonly urlPattern: "en-US/bundle/jamf-pro-documentation/page";
15
+ readonly bundleId: "jamf-pro-documentation";
16
+ readonly searchLabel: "product-pro";
17
+ readonly latestVersion: "current";
18
+ readonly versions: readonly ["current"];
19
+ };
20
+ readonly 'jamf-school': {
21
+ readonly id: "jamf-school";
22
+ readonly name: "Jamf School";
23
+ readonly description: "Apple device management for education";
24
+ readonly urlPattern: "en-US/bundle/jamf-school-documentation/page";
25
+ readonly bundleId: "jamf-school-documentation";
26
+ readonly searchLabel: "product-school";
27
+ readonly latestVersion: "current";
28
+ readonly versions: readonly ["current"];
29
+ };
30
+ readonly 'jamf-connect': {
31
+ readonly id: "jamf-connect";
32
+ readonly name: "Jamf Connect";
33
+ readonly description: "Identity and access management";
34
+ readonly urlPattern: "en-US/bundle/jamf-connect-documentation/page";
35
+ readonly bundleId: "jamf-connect-documentation";
36
+ readonly searchLabel: "product-connect";
37
+ readonly latestVersion: "current";
38
+ readonly versions: readonly ["current"];
39
+ };
40
+ readonly 'jamf-protect': {
41
+ readonly id: "jamf-protect";
42
+ readonly name: "Jamf Protect";
43
+ readonly description: "Endpoint security for Apple";
44
+ readonly urlPattern: "en-US/bundle/jamf-protect-documentation/page";
45
+ readonly bundleId: "jamf-protect-documentation";
46
+ readonly searchLabel: "product-protect";
47
+ readonly latestVersion: "current";
48
+ readonly versions: readonly ["current"];
49
+ };
50
+ };
51
+ export type ProductId = keyof typeof JAMF_PRODUCTS;
52
+ export declare enum ResponseFormat {
53
+ MARKDOWN = "markdown",
54
+ JSON = "json"
55
+ }
56
+ export declare enum OutputMode {
57
+ FULL = "full",
58
+ COMPACT = "compact"
59
+ }
60
+ export declare const CACHE_TTL: {
61
+ readonly SEARCH_RESULTS: number;
62
+ readonly ARTICLE_CONTENT: number;
63
+ readonly PRODUCT_LIST: number;
64
+ readonly TOC: number;
65
+ };
66
+ export declare const CACHE_DIR: string;
67
+ export declare const REQUEST_CONFIG: {
68
+ readonly TIMEOUT: number;
69
+ readonly MAX_RETRIES: number;
70
+ readonly RETRY_DELAY: number;
71
+ readonly RATE_LIMIT_DELAY: number;
72
+ readonly USER_AGENT: string;
73
+ };
74
+ export declare const CONTENT_LIMITS: {
75
+ readonly MAX_SEARCH_RESULTS: 50;
76
+ readonly DEFAULT_SEARCH_RESULTS: 10;
77
+ readonly MAX_CONTENT_LENGTH: 100000;
78
+ readonly MAX_SNIPPET_LENGTH: 500;
79
+ };
80
+ export declare const TOKEN_CONFIG: {
81
+ readonly DEFAULT_MAX_TOKENS: 5000;
82
+ readonly MAX_TOKENS_LIMIT: 20000;
83
+ readonly MIN_TOKENS: 100;
84
+ readonly CHARS_PER_TOKEN: 4;
85
+ readonly CODE_CHARS_PER_TOKEN: 3;
86
+ };
87
+ export declare const PAGINATION_CONFIG: {
88
+ readonly DEFAULT_PAGE: 1;
89
+ readonly DEFAULT_PAGE_SIZE: 10;
90
+ readonly MAX_PAGE: 100;
91
+ };
92
+ export declare const JAMF_TOPICS: {
93
+ readonly enrollment: {
94
+ readonly name: "Enrollment & Onboarding";
95
+ readonly keywords: readonly ["enroll", "dep", "ade", "automated device enrollment", "user enrollment", "apple configurator", "onboard", "prestage", "enrollment method"];
96
+ };
97
+ readonly 'computer-management': {
98
+ readonly name: "Computer Management";
99
+ readonly keywords: readonly ["computer management", "computer inventory", "remote command", "remote administration", "mass action", "unmanag", "check-in", "startup script", "login event"];
100
+ };
101
+ readonly 'mobile-management': {
102
+ readonly name: "Mobile Device Management";
103
+ readonly keywords: readonly ["mobile device", "iphone", "ipad", "ios", "ipados", "mobile inventory", "mdm capabilities"];
104
+ };
105
+ readonly profiles: {
106
+ readonly name: "Configuration Profiles";
107
+ readonly keywords: readonly ["configuration profile", "profile", "payload", "restriction", "settings management", "computer configuration", "mobile configuration"];
108
+ };
109
+ readonly policies: {
110
+ readonly name: "Policies";
111
+ readonly keywords: readonly ["policy", "policies", "execution frequency", "user interaction", "policy management", "policy payload", "trigger"];
112
+ };
113
+ readonly packages: {
114
+ readonly name: "Packages & Deployment";
115
+ readonly keywords: readonly ["package", "pkg", "dmg", "package deployment", "package management", "installer"];
116
+ };
117
+ readonly scripts: {
118
+ readonly name: "Scripts";
119
+ readonly keywords: readonly ["script", "bash", "shell", "login script", "startup script", "extension attribute"];
120
+ };
121
+ readonly patch: {
122
+ readonly name: "Patch Management";
123
+ readonly keywords: readonly ["patch", "patch management", "patch policy", "software update", "patch reporting", "software title", "patch source"];
124
+ };
125
+ readonly apps: {
126
+ readonly name: "App Management";
127
+ readonly keywords: readonly ["app", "application", "app installer", "vpp", "volume purchase", "managed app", "app store", "mac app store"];
128
+ };
129
+ readonly 'self-service': {
130
+ readonly name: "Self Service";
131
+ readonly keywords: readonly ["self service", "self-service", "dock item", "branding", "bookmark", "user portal"];
132
+ };
133
+ readonly security: {
134
+ readonly name: "Security Settings";
135
+ readonly keywords: readonly ["security", "security settings", "restricted software", "efi password", "firmware password", "gatekeeper"];
136
+ };
137
+ readonly filevault: {
138
+ readonly name: "FileVault & Encryption";
139
+ readonly keywords: readonly ["filevault", "encryption", "recovery key", "disk encryption", "institutional recovery", "personal recovery"];
140
+ };
141
+ readonly compliance: {
142
+ readonly name: "Compliance & Baseline";
143
+ readonly keywords: readonly ["compliance", "baseline", "compliance baseline", "security benchmark", "cis benchmark", "gdpr"];
144
+ };
145
+ readonly 'protect-analytics': {
146
+ readonly name: "Threat Analytics";
147
+ readonly keywords: readonly ["analytic", "threat", "detection", "analytic chain", "custom analytic", "jamf-managed analytic", "alert"];
148
+ };
149
+ readonly 'protect-plans': {
150
+ readonly name: "Protect Plans";
151
+ readonly keywords: readonly ["protect plan", "jamf protect plan", "threat prevention", "endpoint security"];
152
+ };
153
+ readonly 'data-integration': {
154
+ readonly name: "SIEM & Data Integration";
155
+ readonly keywords: readonly ["siem", "splunk", "sentinel", "elastic", "datadog", "sumo logic", "google secops", "amazon s3", "data stream", "data integration"];
156
+ };
157
+ readonly sso: {
158
+ readonly name: "Single Sign-On";
159
+ readonly keywords: readonly ["sso", "single sign-on", "saml", "oidc", "oauth", "jamf account", "platform sso"];
160
+ };
161
+ readonly ldap: {
162
+ readonly name: "Directory Services";
163
+ readonly keywords: readonly ["ldap", "active directory", "directory binding", "open directory", "google secure ldap"];
164
+ };
165
+ readonly 'identity-provider': {
166
+ readonly name: "Identity Providers";
167
+ readonly keywords: readonly ["identity provider", "idp", "okta", "azure ad", "entra id", "microsoft entra", "google", "cloud identity"];
168
+ };
169
+ readonly 'connect-login': {
170
+ readonly name: "Jamf Connect Login";
171
+ readonly keywords: readonly ["jamf connect", "login window", "local account", "account creation", "account migration", "mobile account"];
172
+ };
173
+ readonly 'connect-password': {
174
+ readonly name: "Password & Keychain";
175
+ readonly keywords: readonly ["password sync", "keychain", "password policy", "local password"];
176
+ };
177
+ readonly 'privilege-elevation': {
178
+ readonly name: "Privilege Elevation";
179
+ readonly keywords: readonly ["privilege elevation", "admin rights", "sudo", "privilege", "self service+"];
180
+ };
181
+ readonly users: {
182
+ readonly name: "Users & Accounts";
183
+ readonly keywords: readonly ["user account", "local account", "managed local administrator", "mdm-enabled", "user group", "admin account"];
184
+ };
185
+ readonly 'user-roles': {
186
+ readonly name: "Roles & Permissions";
187
+ readonly keywords: readonly ["user role", "permission", "privilege", "administrator role", "api role", "access level"];
188
+ };
189
+ readonly inventory: {
190
+ readonly name: "Inventory";
191
+ readonly keywords: readonly ["inventory", "inventory collection", "inventory display", "hardware inventory", "software inventory", "inventory preload"];
192
+ };
193
+ readonly 'extension-attributes': {
194
+ readonly name: "Extension Attributes";
195
+ readonly keywords: readonly ["extension attribute", "custom attribute", "ea", "custom field", "inventory attribute"];
196
+ };
197
+ readonly reports: {
198
+ readonly name: "Reports & Searches";
199
+ readonly keywords: readonly ["report", "search", "advanced search", "simple search", "smart group", "criteria", "computer report"];
200
+ };
201
+ readonly history: {
202
+ readonly name: "History & Logs";
203
+ readonly keywords: readonly ["history", "log", "audit", "audit log", "computer history", "management history", "server log"];
204
+ };
205
+ readonly api: {
206
+ readonly name: "API & Automation";
207
+ readonly keywords: readonly ["api", "rest api", "classic api", "jamf pro api", "api role", "api client", "bearer token"];
208
+ };
209
+ readonly graphql: {
210
+ readonly name: "GraphQL API";
211
+ readonly keywords: readonly ["graphql", "query", "mutation", "schema", "protect api"];
212
+ };
213
+ readonly webhooks: {
214
+ readonly name: "Webhooks & Notifications";
215
+ readonly keywords: readonly ["webhook", "notification", "email notification", "impact alert", "event"];
216
+ };
217
+ readonly network: {
218
+ readonly name: "Network Configuration";
219
+ readonly keywords: readonly ["wifi", "vpn", "network", "proxy", "firewall", "port", "ip address", "url"];
220
+ };
221
+ readonly certificates: {
222
+ readonly name: "Certificates";
223
+ readonly keywords: readonly ["certificate", "ssl", "scep", "push certificate", "apns", "signing"];
224
+ };
225
+ readonly printers: {
226
+ readonly name: "Printers";
227
+ readonly keywords: readonly ["printer", "print", "cups", "ppd"];
228
+ };
229
+ readonly 'remote-access': {
230
+ readonly name: "Remote Access";
231
+ readonly keywords: readonly ["remote assist", "jamf remote", "teamviewer", "screen sharing", "vnc", "remote administration"];
232
+ };
233
+ readonly 'server-admin': {
234
+ readonly name: "Server Administration";
235
+ readonly keywords: readonly ["server", "jamf pro server", "activation code", "smtp", "ssl certificate", "maintenance", "health check", "clustering"];
236
+ };
237
+ readonly 'change-management': {
238
+ readonly name: "Change Management";
239
+ readonly keywords: readonly ["change management", "change log", "version", "backup", "restore"];
240
+ };
241
+ readonly licensing: {
242
+ readonly name: "License Management";
243
+ readonly keywords: readonly ["license", "licensed software", "license compliance", "license usage", "vpp token"];
244
+ };
245
+ readonly education: {
246
+ readonly name: "Education & Classroom";
247
+ readonly keywords: readonly ["school", "class", "teacher", "student", "jamf teacher", "jamf student", "jamf parent", "classroom", "education"];
248
+ };
249
+ readonly 'school-integration': {
250
+ readonly name: "School Integrations";
251
+ readonly keywords: readonly ["apple school manager", "asm", "shared ipad", "location", "google classroom"];
252
+ };
253
+ };
254
+ export type TopicId = keyof typeof JAMF_TOPICS;
255
+ export declare const SELECTORS: {
256
+ readonly CONTENT: "article, .article-content, main article, #content";
257
+ readonly TITLE: "h1";
258
+ readonly BREADCRUMB: "[class*=\"breadcrumb\"] a, nav[aria-label=\"breadcrumb\"] a";
259
+ readonly TOC: "nav.related-links a, [class*=\"toc\"] a, [class*=\"sidebar\"] a";
260
+ readonly RELATED: "nav.related-links a, .related-topics a, [class*=\"related\"] a";
261
+ readonly REMOVE: "script, style, noscript, footer, [id=\"initial-data\"], [class*=\"cookie\"], [class*=\"tracking\"], [class*=\"analytics\"]";
262
+ };
263
+ //# sourceMappingURL=constants.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAiBH,eAAO,MAAM,aAAa,2BAA2B,CAAC;AACtD,eAAO,MAAM,YAAY,8BAA8B,CAAC;AAGxD,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyChB,CAAC;AAEX,MAAM,MAAM,SAAS,GAAG,MAAM,OAAO,aAAa,CAAC;AAGnD,oBAAY,cAAc;IACxB,QAAQ,aAAa;IACrB,IAAI,SAAS;CACd;AAGD,oBAAY,UAAU;IACpB,IAAI,SAAS;IACb,OAAO,YAAY;CACpB;AAGD,eAAO,MAAM,SAAS;;;;;CAKZ,CAAC;AAGX,eAAO,MAAM,SAAS,QAAsC,CAAC;AAG7D,eAAO,MAAM,cAAc;;;;;;CAMjB,CAAC;AAGX,eAAO,MAAM,cAAc;;;;;CAKjB,CAAC;AAGX,eAAO,MAAM,YAAY;;;;;;CAMf,CAAC;AAGX,eAAO,MAAM,iBAAiB;;;;CAIpB,CAAC;AAGX,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkMd,CAAC;AAEX,MAAM,MAAM,OAAO,GAAG,MAAM,OAAO,WAAW,CAAC;AAG/C,eAAO,MAAM,SAAS;;;;;;;CAcZ,CAAC"}