@get-technology-inc/jamf-docs-mcp-server 3.0.6 → 3.0.7
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.
- package/dist/core/constants/doc-types.d.ts +48 -0
- package/dist/core/constants/doc-types.d.ts.map +1 -0
- package/dist/core/constants/doc-types.js +58 -0
- package/dist/core/constants/doc-types.js.map +1 -0
- package/dist/core/constants/index.d.ts +16 -0
- package/dist/core/constants/index.d.ts.map +1 -0
- package/dist/core/constants/index.js +12 -0
- package/dist/core/constants/index.js.map +1 -0
- package/dist/core/constants/limits.d.ts +39 -0
- package/dist/core/constants/limits.d.ts.map +1 -0
- package/dist/core/constants/limits.js +51 -0
- package/dist/core/constants/limits.js.map +1 -0
- package/dist/core/constants/locales.d.ts +34 -0
- package/dist/core/constants/locales.d.ts.map +1 -0
- package/dist/core/constants/locales.js +20 -0
- package/dist/core/constants/locales.js.map +1 -0
- package/dist/core/constants/products.d.ts +127 -0
- package/dist/core/constants/products.d.ts.map +1 -0
- package/dist/core/constants/products.js +135 -0
- package/dist/core/constants/products.js.map +1 -0
- package/dist/core/constants/topics.d.ts +168 -0
- package/dist/core/constants/topics.d.ts.map +1 -0
- package/dist/core/constants/topics.js +186 -0
- package/dist/core/constants/topics.js.map +1 -0
- package/dist/core/constants.d.ts +7 -404
- package/dist/core/constants.d.ts.map +1 -1
- package/dist/core/constants.js +16 -427
- package/dist/core/constants.js.map +1 -1
- package/dist/core/http-client.d.ts +14 -2
- package/dist/core/http-client.d.ts.map +1 -1
- package/dist/core/http-client.js +148 -17
- package/dist/core/http-client.js.map +1 -1
- package/dist/core/index.d.ts +12 -12
- package/dist/core/index.d.ts.map +1 -1
- package/dist/core/index.js +12 -13
- package/dist/core/index.js.map +1 -1
- package/dist/core/resources/index.js +1 -1
- package/dist/core/resources/index.js.map +1 -1
- package/dist/core/schemas/index.d.ts +3 -1
- package/dist/core/schemas/index.d.ts.map +1 -1
- package/dist/core/schemas/index.js +12 -1
- package/dist/core/schemas/index.js.map +1 -1
- package/dist/core/schemas/output.d.ts +7 -0
- package/dist/core/schemas/output.d.ts.map +1 -1
- package/dist/core/schemas/output.js +7 -0
- package/dist/core/schemas/output.js.map +1 -1
- package/dist/core/services/article-service.d.ts +24 -0
- package/dist/core/services/article-service.d.ts.map +1 -0
- package/dist/core/services/article-service.js +118 -0
- package/dist/core/services/article-service.js.map +1 -0
- package/dist/core/services/content-parser.d.ts +38 -0
- package/dist/core/services/content-parser.d.ts.map +1 -0
- package/dist/core/services/content-parser.js +146 -0
- package/dist/core/services/content-parser.js.map +1 -0
- package/dist/core/services/ft-client.d.ts +52 -0
- package/dist/core/services/ft-client.d.ts.map +1 -0
- package/dist/core/services/ft-client.js +87 -0
- package/dist/core/services/ft-client.js.map +1 -0
- package/dist/core/services/glossary.d.ts +9 -5
- package/dist/core/services/glossary.d.ts.map +1 -1
- package/dist/core/services/glossary.js +174 -107
- package/dist/core/services/glossary.js.map +1 -1
- package/dist/core/services/interfaces/cache.d.ts +6 -6
- package/dist/core/services/interfaces/cache.d.ts.map +1 -1
- package/dist/core/services/interfaces/index.d.ts +3 -3
- package/dist/core/services/interfaces/index.d.ts.map +1 -1
- package/dist/core/services/interfaces/logger.d.ts +17 -10
- package/dist/core/services/interfaces/logger.d.ts.map +1 -1
- package/dist/core/services/interfaces/metadata.d.ts +0 -10
- package/dist/core/services/interfaces/metadata.d.ts.map +1 -1
- package/dist/core/services/interfaces/providers.d.ts +23 -10
- package/dist/core/services/interfaces/providers.d.ts.map +1 -1
- package/dist/core/services/logging.d.ts +38 -18
- package/dist/core/services/logging.d.ts.map +1 -1
- package/dist/core/services/logging.js +78 -29
- package/dist/core/services/logging.js.map +1 -1
- package/dist/core/services/maps-registry.d.ts +82 -0
- package/dist/core/services/maps-registry.d.ts.map +1 -0
- package/dist/core/services/maps-registry.js +232 -0
- package/dist/core/services/maps-registry.js.map +1 -0
- package/dist/core/services/metadata.d.ts +18 -9
- package/dist/core/services/metadata.d.ts.map +1 -1
- package/dist/core/services/metadata.js +113 -254
- package/dist/core/services/metadata.js.map +1 -1
- package/dist/core/services/search-service.d.ts +31 -0
- package/dist/core/services/search-service.d.ts.map +1 -0
- package/dist/core/services/search-service.js +471 -0
- package/dist/core/services/search-service.js.map +1 -0
- package/dist/core/services/toc-service.d.ts +30 -0
- package/dist/core/services/toc-service.d.ts.map +1 -0
- package/dist/core/services/toc-service.js +101 -0
- package/dist/core/services/toc-service.js.map +1 -0
- package/dist/core/services/tokenizer.d.ts +1 -1
- package/dist/core/services/tokenizer.d.ts.map +1 -1
- package/dist/core/services/tokenizer.js +3 -3
- package/dist/core/services/tokenizer.js.map +1 -1
- package/dist/core/services/topic-resolver.d.ts +57 -0
- package/dist/core/services/topic-resolver.d.ts.map +1 -0
- package/dist/core/services/topic-resolver.js +185 -0
- package/dist/core/services/topic-resolver.js.map +1 -0
- package/dist/core/tools/batch-get-articles.d.ts +0 -2
- package/dist/core/tools/batch-get-articles.d.ts.map +1 -1
- package/dist/core/tools/batch-get-articles.js +12 -46
- package/dist/core/tools/batch-get-articles.js.map +1 -1
- package/dist/core/tools/get-article.d.ts.map +1 -1
- package/dist/core/tools/get-article.js +29 -112
- package/dist/core/tools/get-article.js.map +1 -1
- package/dist/core/tools/get-toc.js +1 -1
- package/dist/core/tools/get-toc.js.map +1 -1
- package/dist/core/tools/search.js +5 -5
- package/dist/core/tools/search.js.map +1 -1
- package/dist/core/types/context.d.ts +5 -2
- package/dist/core/types/context.d.ts.map +1 -1
- package/dist/core/types.d.ts +141 -31
- package/dist/core/types.d.ts.map +1 -1
- package/dist/core/types.js.map +1 -1
- package/dist/core/utils/bundle.d.ts +14 -1
- package/dist/core/utils/bundle.d.ts.map +1 -1
- package/dist/core/utils/bundle.js +19 -2
- package/dist/core/utils/bundle.js.map +1 -1
- package/dist/core/utils/format-article.d.ts +45 -0
- package/dist/core/utils/format-article.d.ts.map +1 -0
- package/dist/core/utils/format-article.js +138 -0
- package/dist/core/utils/format-article.js.map +1 -0
- package/dist/core/utils/ft-metadata.d.ts +22 -0
- package/dist/core/utils/ft-metadata.d.ts.map +1 -0
- package/dist/core/utils/ft-metadata.js +30 -0
- package/dist/core/utils/ft-metadata.js.map +1 -0
- package/dist/core/utils/sanitize.d.ts.map +1 -1
- package/dist/core/utils/sanitize.js +0 -2
- package/dist/core/utils/sanitize.js.map +1 -1
- package/dist/core/utils/url.d.ts.map +1 -1
- package/dist/core/utils/url.js +0 -1
- package/dist/core/utils/url.js.map +1 -1
- package/dist/index.js +10 -6
- package/dist/index.js.map +1 -1
- package/dist/platforms/node/http-server.d.ts +13 -0
- package/dist/platforms/node/http-server.d.ts.map +1 -0
- package/dist/platforms/node/http-server.js +231 -0
- package/dist/platforms/node/http-server.js.map +1 -0
- package/dist/platforms/node/index.d.ts +1 -1
- package/dist/platforms/node/index.d.ts.map +1 -1
- package/dist/platforms/node/index.js +1 -1
- package/dist/platforms/node/index.js.map +1 -1
- package/dist/platforms/node/logger.d.ts +13 -2
- package/dist/platforms/node/logger.d.ts.map +1 -1
- package/dist/platforms/node/logger.js +17 -4
- package/dist/platforms/node/logger.js.map +1 -1
- package/dist/transport/http-handler.d.ts +25 -0
- package/dist/transport/http-handler.d.ts.map +1 -0
- package/dist/transport/http-handler.js +193 -0
- package/dist/transport/http-handler.js.map +1 -0
- package/dist/transport/http-types.d.ts +22 -0
- package/dist/transport/http-types.d.ts.map +1 -0
- package/dist/transport/http-types.js +65 -0
- package/dist/transport/http-types.js.map +1 -0
- package/dist/transport/http.d.ts +4 -8
- package/dist/transport/http.d.ts.map +1 -1
- package/dist/transport/http.js +4 -376
- package/dist/transport/http.js.map +1 -1
- package/dist/transport/index.js +2 -2
- package/dist/transport/index.js.map +1 -1
- package/dist/transport/rate-limiter.d.ts +16 -0
- package/dist/transport/rate-limiter.d.ts.map +1 -0
- package/dist/transport/rate-limiter.js +55 -0
- package/dist/transport/rate-limiter.js.map +1 -0
- package/package.json +3 -3
- package/dist/core/services/interfaces.d.ts +0 -94
- package/dist/core/services/interfaces.d.ts.map +0 -1
- package/dist/core/services/interfaces.js +0 -8
- package/dist/core/services/interfaces.js.map +0 -1
- package/dist/core/services/scraper.d.ts +0 -90
- package/dist/core/services/scraper.d.ts.map +0 -1
- package/dist/core/services/scraper.js +0 -990
- package/dist/core/services/scraper.js.map +0 -1
- package/dist/core/utils/doc-type.d.ts +0 -12
- package/dist/core/utils/doc-type.d.ts.map +0 -1
- package/dist/core/utils/doc-type.js +0 -24
- package/dist/core/utils/doc-type.js.map +0 -1
- package/dist/platforms/node/metadata.d.ts +0 -18
- package/dist/platforms/node/metadata.d.ts.map +0 -1
- package/dist/platforms/node/metadata.js +0 -35
- package/dist/platforms/node/metadata.js.map +0 -1
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Topic category constants for Jamf documentation filtering
|
|
3
|
+
*/
|
|
4
|
+
export declare const JAMF_TOPICS: {
|
|
5
|
+
readonly enrollment: {
|
|
6
|
+
readonly name: "Enrollment & Onboarding";
|
|
7
|
+
readonly keywords: readonly ["enroll", "dep", "ade", "automated device enrollment", "user enrollment", "apple configurator", "onboard", "prestage", "enrollment method"];
|
|
8
|
+
};
|
|
9
|
+
readonly 'computer-management': {
|
|
10
|
+
readonly name: "Computer Management";
|
|
11
|
+
readonly keywords: readonly ["computer management", "computer inventory", "remote command", "remote administration", "mass action", "unmanag", "check-in", "startup script", "login event"];
|
|
12
|
+
};
|
|
13
|
+
readonly 'mobile-management': {
|
|
14
|
+
readonly name: "Mobile Device Management";
|
|
15
|
+
readonly keywords: readonly ["mobile device", "iphone", "ipad", "ios", "ipados", "mobile inventory", "mdm capabilities"];
|
|
16
|
+
};
|
|
17
|
+
readonly profiles: {
|
|
18
|
+
readonly name: "Configuration Profiles";
|
|
19
|
+
readonly keywords: readonly ["configuration profile", "profile", "payload", "restriction", "settings management", "computer configuration", "mobile configuration"];
|
|
20
|
+
};
|
|
21
|
+
readonly policies: {
|
|
22
|
+
readonly name: "Policies";
|
|
23
|
+
readonly keywords: readonly ["policy", "policies", "execution frequency", "user interaction", "policy management", "policy payload", "trigger"];
|
|
24
|
+
};
|
|
25
|
+
readonly packages: {
|
|
26
|
+
readonly name: "Packages & Deployment";
|
|
27
|
+
readonly keywords: readonly ["package", "pkg", "dmg", "package deployment", "package management", "installer"];
|
|
28
|
+
};
|
|
29
|
+
readonly scripts: {
|
|
30
|
+
readonly name: "Scripts";
|
|
31
|
+
readonly keywords: readonly ["script", "bash", "shell", "login script", "startup script", "extension attribute"];
|
|
32
|
+
};
|
|
33
|
+
readonly patch: {
|
|
34
|
+
readonly name: "Patch Management";
|
|
35
|
+
readonly keywords: readonly ["patch", "patch management", "patch policy", "software update", "patch reporting", "software title", "patch source"];
|
|
36
|
+
};
|
|
37
|
+
readonly apps: {
|
|
38
|
+
readonly name: "App Management";
|
|
39
|
+
readonly keywords: readonly ["app", "application", "app installer", "vpp", "volume purchase", "managed app", "app store", "mac app store"];
|
|
40
|
+
};
|
|
41
|
+
readonly 'self-service': {
|
|
42
|
+
readonly name: "Self Service";
|
|
43
|
+
readonly keywords: readonly ["self service", "self-service", "dock item", "branding", "bookmark", "user portal"];
|
|
44
|
+
};
|
|
45
|
+
readonly security: {
|
|
46
|
+
readonly name: "Security Settings";
|
|
47
|
+
readonly keywords: readonly ["security", "security settings", "restricted software", "efi password", "firmware password", "gatekeeper"];
|
|
48
|
+
};
|
|
49
|
+
readonly filevault: {
|
|
50
|
+
readonly name: "FileVault & Encryption";
|
|
51
|
+
readonly keywords: readonly ["filevault", "encryption", "recovery key", "disk encryption", "institutional recovery", "personal recovery"];
|
|
52
|
+
};
|
|
53
|
+
readonly compliance: {
|
|
54
|
+
readonly name: "Compliance & Baseline";
|
|
55
|
+
readonly keywords: readonly ["compliance", "baseline", "compliance baseline", "security benchmark", "cis benchmark", "gdpr"];
|
|
56
|
+
};
|
|
57
|
+
readonly 'protect-analytics': {
|
|
58
|
+
readonly name: "Threat Analytics";
|
|
59
|
+
readonly keywords: readonly ["analytic", "threat", "detection", "analytic chain", "custom analytic", "jamf-managed analytic", "alert"];
|
|
60
|
+
};
|
|
61
|
+
readonly 'protect-plans': {
|
|
62
|
+
readonly name: "Protect Plans";
|
|
63
|
+
readonly keywords: readonly ["protect plan", "jamf protect plan", "threat prevention", "endpoint security"];
|
|
64
|
+
};
|
|
65
|
+
readonly 'data-integration': {
|
|
66
|
+
readonly name: "SIEM & Data Integration";
|
|
67
|
+
readonly keywords: readonly ["siem", "splunk", "sentinel", "elastic", "datadog", "sumo logic", "google secops", "amazon s3", "data stream", "data integration"];
|
|
68
|
+
};
|
|
69
|
+
readonly sso: {
|
|
70
|
+
readonly name: "Single Sign-On";
|
|
71
|
+
readonly keywords: readonly ["sso", "single sign-on", "saml", "oidc", "oauth", "jamf account", "platform sso"];
|
|
72
|
+
};
|
|
73
|
+
readonly ldap: {
|
|
74
|
+
readonly name: "Directory Services";
|
|
75
|
+
readonly keywords: readonly ["ldap", "active directory", "directory binding", "open directory", "google secure ldap"];
|
|
76
|
+
};
|
|
77
|
+
readonly 'identity-provider': {
|
|
78
|
+
readonly name: "Identity Providers";
|
|
79
|
+
readonly keywords: readonly ["identity provider", "idp", "okta", "azure ad", "entra id", "microsoft entra", "google", "cloud identity"];
|
|
80
|
+
};
|
|
81
|
+
readonly 'connect-login': {
|
|
82
|
+
readonly name: "Jamf Connect Login";
|
|
83
|
+
readonly keywords: readonly ["jamf connect", "login window", "local account", "account creation", "account migration", "mobile account"];
|
|
84
|
+
};
|
|
85
|
+
readonly 'connect-password': {
|
|
86
|
+
readonly name: "Password & Keychain";
|
|
87
|
+
readonly keywords: readonly ["password sync", "keychain", "password policy", "local password"];
|
|
88
|
+
};
|
|
89
|
+
readonly 'privilege-elevation': {
|
|
90
|
+
readonly name: "Privilege Elevation";
|
|
91
|
+
readonly keywords: readonly ["privilege elevation", "admin rights", "sudo", "privilege", "self service+"];
|
|
92
|
+
};
|
|
93
|
+
readonly users: {
|
|
94
|
+
readonly name: "Users & Accounts";
|
|
95
|
+
readonly keywords: readonly ["user account", "local account", "managed local administrator", "mdm-enabled", "user group", "admin account"];
|
|
96
|
+
};
|
|
97
|
+
readonly 'user-roles': {
|
|
98
|
+
readonly name: "Roles & Permissions";
|
|
99
|
+
readonly keywords: readonly ["user role", "permission", "privilege", "administrator role", "api role", "access level"];
|
|
100
|
+
};
|
|
101
|
+
readonly inventory: {
|
|
102
|
+
readonly name: "Inventory";
|
|
103
|
+
readonly keywords: readonly ["inventory", "inventory collection", "inventory display", "hardware inventory", "software inventory", "inventory preload"];
|
|
104
|
+
};
|
|
105
|
+
readonly 'extension-attributes': {
|
|
106
|
+
readonly name: "Extension Attributes";
|
|
107
|
+
readonly keywords: readonly ["extension attribute", "custom attribute", "ea", "custom field", "inventory attribute"];
|
|
108
|
+
};
|
|
109
|
+
readonly reports: {
|
|
110
|
+
readonly name: "Reports & Searches";
|
|
111
|
+
readonly keywords: readonly ["report", "search", "advanced search", "simple search", "smart group", "criteria", "computer report"];
|
|
112
|
+
};
|
|
113
|
+
readonly history: {
|
|
114
|
+
readonly name: "History & Logs";
|
|
115
|
+
readonly keywords: readonly ["history", "log", "audit", "audit log", "computer history", "management history", "server log"];
|
|
116
|
+
};
|
|
117
|
+
readonly api: {
|
|
118
|
+
readonly name: "API & Automation";
|
|
119
|
+
readonly keywords: readonly ["api", "rest api", "classic api", "jamf pro api", "api role", "api client", "bearer token"];
|
|
120
|
+
};
|
|
121
|
+
readonly graphql: {
|
|
122
|
+
readonly name: "GraphQL API";
|
|
123
|
+
readonly keywords: readonly ["graphql", "query", "mutation", "schema", "protect api"];
|
|
124
|
+
};
|
|
125
|
+
readonly webhooks: {
|
|
126
|
+
readonly name: "Webhooks & Notifications";
|
|
127
|
+
readonly keywords: readonly ["webhook", "notification", "email notification", "impact alert", "event"];
|
|
128
|
+
};
|
|
129
|
+
readonly network: {
|
|
130
|
+
readonly name: "Network Configuration";
|
|
131
|
+
readonly keywords: readonly ["wifi", "vpn", "network", "proxy", "firewall", "port", "ip address", "url"];
|
|
132
|
+
};
|
|
133
|
+
readonly certificates: {
|
|
134
|
+
readonly name: "Certificates";
|
|
135
|
+
readonly keywords: readonly ["certificate", "ssl", "scep", "push certificate", "apns", "signing"];
|
|
136
|
+
};
|
|
137
|
+
readonly printers: {
|
|
138
|
+
readonly name: "Printers";
|
|
139
|
+
readonly keywords: readonly ["printer", "print", "cups", "ppd"];
|
|
140
|
+
};
|
|
141
|
+
readonly 'remote-access': {
|
|
142
|
+
readonly name: "Remote Access";
|
|
143
|
+
readonly keywords: readonly ["remote assist", "jamf remote", "teamviewer", "screen sharing", "vnc", "remote administration"];
|
|
144
|
+
};
|
|
145
|
+
readonly 'server-admin': {
|
|
146
|
+
readonly name: "Server Administration";
|
|
147
|
+
readonly keywords: readonly ["server", "jamf pro server", "activation code", "smtp", "ssl certificate", "maintenance", "health check", "clustering"];
|
|
148
|
+
};
|
|
149
|
+
readonly 'change-management': {
|
|
150
|
+
readonly name: "Change Management";
|
|
151
|
+
readonly keywords: readonly ["change management", "change log", "version", "backup", "restore"];
|
|
152
|
+
};
|
|
153
|
+
readonly licensing: {
|
|
154
|
+
readonly name: "License Management";
|
|
155
|
+
readonly keywords: readonly ["license", "licensed software", "license compliance", "license usage", "vpp token"];
|
|
156
|
+
};
|
|
157
|
+
readonly education: {
|
|
158
|
+
readonly name: "Education & Classroom";
|
|
159
|
+
readonly keywords: readonly ["school", "class", "teacher", "student", "jamf teacher", "jamf student", "jamf parent", "classroom", "education"];
|
|
160
|
+
};
|
|
161
|
+
readonly 'school-integration': {
|
|
162
|
+
readonly name: "School Integrations";
|
|
163
|
+
readonly keywords: readonly ["apple school manager", "asm", "shared ipad", "location", "google classroom"];
|
|
164
|
+
};
|
|
165
|
+
};
|
|
166
|
+
export type TopicId = keyof typeof JAMF_TOPICS;
|
|
167
|
+
export declare const TOPIC_IDS: [string, ...string[]];
|
|
168
|
+
//# sourceMappingURL=topics.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"topics.d.ts","sourceRoot":"","sources":["../../../src/core/constants/topics.ts"],"names":[],"mappings":"AAAA;;GAEG;AAGH,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkMd,CAAC;AAEX,MAAM,MAAM,OAAO,GAAG,MAAM,OAAO,WAAW,CAAC;AAG/C,eAAO,MAAM,SAAS,EAA+B,CAAC,MAAM,EAAE,GAAG,MAAM,EAAE,CAAC,CAAC"}
|
|
@@ -0,0 +1,186 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Topic category constants for Jamf documentation filtering
|
|
3
|
+
*/
|
|
4
|
+
// Topic categories for filtering (comprehensive list based on actual Jamf documentation)
|
|
5
|
+
export const JAMF_TOPICS = {
|
|
6
|
+
// === Enrollment & Onboarding ===
|
|
7
|
+
'enrollment': {
|
|
8
|
+
name: 'Enrollment & Onboarding',
|
|
9
|
+
keywords: ['enroll', 'dep', 'ade', 'automated device enrollment', 'user enrollment', 'apple configurator', 'onboard', 'prestage', 'enrollment method']
|
|
10
|
+
},
|
|
11
|
+
// === Device Management ===
|
|
12
|
+
'computer-management': {
|
|
13
|
+
name: 'Computer Management',
|
|
14
|
+
keywords: ['computer management', 'computer inventory', 'remote command', 'remote administration', 'mass action', 'unmanag', 'check-in', 'startup script', 'login event']
|
|
15
|
+
},
|
|
16
|
+
'mobile-management': {
|
|
17
|
+
name: 'Mobile Device Management',
|
|
18
|
+
keywords: ['mobile device', 'iphone', 'ipad', 'ios', 'ipados', 'mobile inventory', 'mdm capabilities']
|
|
19
|
+
},
|
|
20
|
+
// === Configuration ===
|
|
21
|
+
'profiles': {
|
|
22
|
+
name: 'Configuration Profiles',
|
|
23
|
+
keywords: ['configuration profile', 'profile', 'payload', 'restriction', 'settings management', 'computer configuration', 'mobile configuration']
|
|
24
|
+
},
|
|
25
|
+
'policies': {
|
|
26
|
+
name: 'Policies',
|
|
27
|
+
keywords: ['policy', 'policies', 'execution frequency', 'user interaction', 'policy management', 'policy payload', 'trigger']
|
|
28
|
+
},
|
|
29
|
+
// === Software & Packages ===
|
|
30
|
+
'packages': {
|
|
31
|
+
name: 'Packages & Deployment',
|
|
32
|
+
keywords: ['package', 'pkg', 'dmg', 'package deployment', 'package management', 'installer']
|
|
33
|
+
},
|
|
34
|
+
'scripts': {
|
|
35
|
+
name: 'Scripts',
|
|
36
|
+
keywords: ['script', 'bash', 'shell', 'login script', 'startup script', 'extension attribute']
|
|
37
|
+
},
|
|
38
|
+
'patch': {
|
|
39
|
+
name: 'Patch Management',
|
|
40
|
+
keywords: ['patch', 'patch management', 'patch policy', 'software update', 'patch reporting', 'software title', 'patch source']
|
|
41
|
+
},
|
|
42
|
+
'apps': {
|
|
43
|
+
name: 'App Management',
|
|
44
|
+
keywords: ['app', 'application', 'app installer', 'vpp', 'volume purchase', 'managed app', 'app store', 'mac app store']
|
|
45
|
+
},
|
|
46
|
+
// === Self Service ===
|
|
47
|
+
'self-service': {
|
|
48
|
+
name: 'Self Service',
|
|
49
|
+
keywords: ['self service', 'self-service', 'dock item', 'branding', 'bookmark', 'user portal']
|
|
50
|
+
},
|
|
51
|
+
// === Security ===
|
|
52
|
+
'security': {
|
|
53
|
+
name: 'Security Settings',
|
|
54
|
+
keywords: ['security', 'security settings', 'restricted software', 'efi password', 'firmware password', 'gatekeeper']
|
|
55
|
+
},
|
|
56
|
+
'filevault': {
|
|
57
|
+
name: 'FileVault & Encryption',
|
|
58
|
+
keywords: ['filevault', 'encryption', 'recovery key', 'disk encryption', 'institutional recovery', 'personal recovery']
|
|
59
|
+
},
|
|
60
|
+
'compliance': {
|
|
61
|
+
name: 'Compliance & Baseline',
|
|
62
|
+
keywords: ['compliance', 'baseline', 'compliance baseline', 'security benchmark', 'cis benchmark', 'gdpr']
|
|
63
|
+
},
|
|
64
|
+
// === Endpoint Protection (Jamf Protect) ===
|
|
65
|
+
'protect-analytics': {
|
|
66
|
+
name: 'Threat Analytics',
|
|
67
|
+
keywords: ['analytic', 'threat', 'detection', 'analytic chain', 'custom analytic', 'jamf-managed analytic', 'alert']
|
|
68
|
+
},
|
|
69
|
+
'protect-plans': {
|
|
70
|
+
name: 'Protect Plans',
|
|
71
|
+
keywords: ['protect plan', 'jamf protect plan', 'threat prevention', 'endpoint security']
|
|
72
|
+
},
|
|
73
|
+
'data-integration': {
|
|
74
|
+
name: 'SIEM & Data Integration',
|
|
75
|
+
keywords: ['siem', 'splunk', 'sentinel', 'elastic', 'datadog', 'sumo logic', 'google secops', 'amazon s3', 'data stream', 'data integration']
|
|
76
|
+
},
|
|
77
|
+
// === Identity & Authentication ===
|
|
78
|
+
'sso': {
|
|
79
|
+
name: 'Single Sign-On',
|
|
80
|
+
keywords: ['sso', 'single sign-on', 'saml', 'oidc', 'oauth', 'jamf account', 'platform sso']
|
|
81
|
+
},
|
|
82
|
+
'ldap': {
|
|
83
|
+
name: 'Directory Services',
|
|
84
|
+
keywords: ['ldap', 'active directory', 'directory binding', 'open directory', 'google secure ldap']
|
|
85
|
+
},
|
|
86
|
+
'identity-provider': {
|
|
87
|
+
name: 'Identity Providers',
|
|
88
|
+
keywords: ['identity provider', 'idp', 'okta', 'azure ad', 'entra id', 'microsoft entra', 'google', 'cloud identity']
|
|
89
|
+
},
|
|
90
|
+
// === Jamf Connect ===
|
|
91
|
+
'connect-login': {
|
|
92
|
+
name: 'Jamf Connect Login',
|
|
93
|
+
keywords: ['jamf connect', 'login window', 'local account', 'account creation', 'account migration', 'mobile account']
|
|
94
|
+
},
|
|
95
|
+
'connect-password': {
|
|
96
|
+
name: 'Password & Keychain',
|
|
97
|
+
keywords: ['password sync', 'keychain', 'password policy', 'local password']
|
|
98
|
+
},
|
|
99
|
+
'privilege-elevation': {
|
|
100
|
+
name: 'Privilege Elevation',
|
|
101
|
+
keywords: ['privilege elevation', 'admin rights', 'sudo', 'privilege', 'self service+']
|
|
102
|
+
},
|
|
103
|
+
// === Users & Accounts ===
|
|
104
|
+
'users': {
|
|
105
|
+
name: 'Users & Accounts',
|
|
106
|
+
keywords: ['user account', 'local account', 'managed local administrator', 'mdm-enabled', 'user group', 'admin account']
|
|
107
|
+
},
|
|
108
|
+
'user-roles': {
|
|
109
|
+
name: 'Roles & Permissions',
|
|
110
|
+
keywords: ['user role', 'permission', 'privilege', 'administrator role', 'api role', 'access level']
|
|
111
|
+
},
|
|
112
|
+
// === Inventory & Reporting ===
|
|
113
|
+
'inventory': {
|
|
114
|
+
name: 'Inventory',
|
|
115
|
+
keywords: ['inventory', 'inventory collection', 'inventory display', 'hardware inventory', 'software inventory', 'inventory preload']
|
|
116
|
+
},
|
|
117
|
+
'extension-attributes': {
|
|
118
|
+
name: 'Extension Attributes',
|
|
119
|
+
keywords: ['extension attribute', 'custom attribute', 'ea', 'custom field', 'inventory attribute']
|
|
120
|
+
},
|
|
121
|
+
'reports': {
|
|
122
|
+
name: 'Reports & Searches',
|
|
123
|
+
keywords: ['report', 'search', 'advanced search', 'simple search', 'smart group', 'criteria', 'computer report']
|
|
124
|
+
},
|
|
125
|
+
'history': {
|
|
126
|
+
name: 'History & Logs',
|
|
127
|
+
keywords: ['history', 'log', 'audit', 'audit log', 'computer history', 'management history', 'server log']
|
|
128
|
+
},
|
|
129
|
+
// === API & Integration ===
|
|
130
|
+
'api': {
|
|
131
|
+
name: 'API & Automation',
|
|
132
|
+
keywords: ['api', 'rest api', 'classic api', 'jamf pro api', 'api role', 'api client', 'bearer token']
|
|
133
|
+
},
|
|
134
|
+
'graphql': {
|
|
135
|
+
name: 'GraphQL API',
|
|
136
|
+
keywords: ['graphql', 'query', 'mutation', 'schema', 'protect api']
|
|
137
|
+
},
|
|
138
|
+
'webhooks': {
|
|
139
|
+
name: 'Webhooks & Notifications',
|
|
140
|
+
keywords: ['webhook', 'notification', 'email notification', 'impact alert', 'event']
|
|
141
|
+
},
|
|
142
|
+
// === Network & Printing ===
|
|
143
|
+
'network': {
|
|
144
|
+
name: 'Network Configuration',
|
|
145
|
+
keywords: ['wifi', 'vpn', 'network', 'proxy', 'firewall', 'port', 'ip address', 'url']
|
|
146
|
+
},
|
|
147
|
+
'certificates': {
|
|
148
|
+
name: 'Certificates',
|
|
149
|
+
keywords: ['certificate', 'ssl', 'scep', 'push certificate', 'apns', 'signing']
|
|
150
|
+
},
|
|
151
|
+
'printers': {
|
|
152
|
+
name: 'Printers',
|
|
153
|
+
keywords: ['printer', 'print', 'cups', 'ppd']
|
|
154
|
+
},
|
|
155
|
+
// === Remote Access ===
|
|
156
|
+
'remote-access': {
|
|
157
|
+
name: 'Remote Access',
|
|
158
|
+
keywords: ['remote assist', 'jamf remote', 'teamviewer', 'screen sharing', 'vnc', 'remote administration']
|
|
159
|
+
},
|
|
160
|
+
// === Server Administration ===
|
|
161
|
+
'server-admin': {
|
|
162
|
+
name: 'Server Administration',
|
|
163
|
+
keywords: ['server', 'jamf pro server', 'activation code', 'smtp', 'ssl certificate', 'maintenance', 'health check', 'clustering']
|
|
164
|
+
},
|
|
165
|
+
'change-management': {
|
|
166
|
+
name: 'Change Management',
|
|
167
|
+
keywords: ['change management', 'change log', 'version', 'backup', 'restore']
|
|
168
|
+
},
|
|
169
|
+
// === License Management ===
|
|
170
|
+
'licensing': {
|
|
171
|
+
name: 'License Management',
|
|
172
|
+
keywords: ['license', 'licensed software', 'license compliance', 'license usage', 'vpp token']
|
|
173
|
+
},
|
|
174
|
+
// === Education (Jamf School) ===
|
|
175
|
+
'education': {
|
|
176
|
+
name: 'Education & Classroom',
|
|
177
|
+
keywords: ['school', 'class', 'teacher', 'student', 'jamf teacher', 'jamf student', 'jamf parent', 'classroom', 'education']
|
|
178
|
+
},
|
|
179
|
+
'school-integration': {
|
|
180
|
+
name: 'School Integrations',
|
|
181
|
+
keywords: ['apple school manager', 'asm', 'shared ipad', 'location', 'google classroom']
|
|
182
|
+
}
|
|
183
|
+
};
|
|
184
|
+
// Derived ID array (shared by schemas, completions, etc.)
|
|
185
|
+
export const TOPIC_IDS = Object.keys(JAMF_TOPICS);
|
|
186
|
+
//# sourceMappingURL=topics.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"topics.js","sourceRoot":"","sources":["../../../src/core/constants/topics.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,yFAAyF;AACzF,MAAM,CAAC,MAAM,WAAW,GAAG;IACzB,kCAAkC;IAClC,YAAY,EAAE;QACZ,IAAI,EAAE,yBAAyB;QAC/B,QAAQ,EAAE,CAAC,QAAQ,EAAE,KAAK,EAAE,KAAK,EAAE,6BAA6B,EAAE,iBAAiB,EAAE,oBAAoB,EAAE,SAAS,EAAE,UAAU,EAAE,mBAAmB,CAAC;KACvJ;IAED,4BAA4B;IAC5B,qBAAqB,EAAE;QACrB,IAAI,EAAE,qBAAqB;QAC3B,QAAQ,EAAE,CAAC,qBAAqB,EAAE,oBAAoB,EAAE,gBAAgB,EAAE,uBAAuB,EAAE,aAAa,EAAE,SAAS,EAAE,UAAU,EAAE,gBAAgB,EAAE,aAAa,CAAC;KAC1K;IACD,mBAAmB,EAAE;QACnB,IAAI,EAAE,0BAA0B;QAChC,QAAQ,EAAE,CAAC,eAAe,EAAE,QAAQ,EAAE,MAAM,EAAE,KAAK,EAAE,QAAQ,EAAE,kBAAkB,EAAE,kBAAkB,CAAC;KACvG;IAED,wBAAwB;IACxB,UAAU,EAAE;QACV,IAAI,EAAE,wBAAwB;QAC9B,QAAQ,EAAE,CAAC,uBAAuB,EAAE,SAAS,EAAE,SAAS,EAAE,aAAa,EAAE,qBAAqB,EAAE,wBAAwB,EAAE,sBAAsB,CAAC;KAClJ;IACD,UAAU,EAAE;QACV,IAAI,EAAE,UAAU;QAChB,QAAQ,EAAE,CAAC,QAAQ,EAAE,UAAU,EAAE,qBAAqB,EAAE,kBAAkB,EAAE,mBAAmB,EAAE,gBAAgB,EAAE,SAAS,CAAC;KAC9H;IAED,8BAA8B;IAC9B,UAAU,EAAE;QACV,IAAI,EAAE,uBAAuB;QAC7B,QAAQ,EAAE,CAAC,SAAS,EAAE,KAAK,EAAE,KAAK,EAAE,oBAAoB,EAAE,oBAAoB,EAAE,WAAW,CAAC;KAC7F;IACD,SAAS,EAAE;QACT,IAAI,EAAE,SAAS;QACf,QAAQ,EAAE,CAAC,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,cAAc,EAAE,gBAAgB,EAAE,qBAAqB,CAAC;KAC/F;IACD,OAAO,EAAE;QACP,IAAI,EAAE,kBAAkB;QACxB,QAAQ,EAAE,CAAC,OAAO,EAAE,kBAAkB,EAAE,cAAc,EAAE,iBAAiB,EAAE,iBAAiB,EAAE,gBAAgB,EAAE,cAAc,CAAC;KAChI;IACD,MAAM,EAAE;QACN,IAAI,EAAE,gBAAgB;QACtB,QAAQ,EAAE,CAAC,KAAK,EAAE,aAAa,EAAE,eAAe,EAAE,KAAK,EAAE,iBAAiB,EAAE,aAAa,EAAE,WAAW,EAAE,eAAe,CAAC;KACzH;IAED,uBAAuB;IACvB,cAAc,EAAE;QACd,IAAI,EAAE,cAAc;QACpB,QAAQ,EAAE,CAAC,cAAc,EAAE,cAAc,EAAE,WAAW,EAAE,UAAU,EAAE,UAAU,EAAE,aAAa,CAAC;KAC/F;IAED,mBAAmB;IACnB,UAAU,EAAE;QACV,IAAI,EAAE,mBAAmB;QACzB,QAAQ,EAAE,CAAC,UAAU,EAAE,mBAAmB,EAAE,qBAAqB,EAAE,cAAc,EAAE,mBAAmB,EAAE,YAAY,CAAC;KACtH;IACD,WAAW,EAAE;QACX,IAAI,EAAE,wBAAwB;QAC9B,QAAQ,EAAE,CAAC,WAAW,EAAE,YAAY,EAAE,cAAc,EAAE,iBAAiB,EAAE,wBAAwB,EAAE,mBAAmB,CAAC;KACxH;IACD,YAAY,EAAE;QACZ,IAAI,EAAE,uBAAuB;QAC7B,QAAQ,EAAE,CAAC,YAAY,EAAE,UAAU,EAAE,qBAAqB,EAAE,oBAAoB,EAAE,eAAe,EAAE,MAAM,CAAC;KAC3G;IAED,6CAA6C;IAC7C,mBAAmB,EAAE;QACnB,IAAI,EAAE,kBAAkB;QACxB,QAAQ,EAAE,CAAC,UAAU,EAAE,QAAQ,EAAE,WAAW,EAAE,gBAAgB,EAAE,iBAAiB,EAAE,uBAAuB,EAAE,OAAO,CAAC;KACrH;IACD,eAAe,EAAE;QACf,IAAI,EAAE,eAAe;QACrB,QAAQ,EAAE,CAAC,cAAc,EAAE,mBAAmB,EAAE,mBAAmB,EAAE,mBAAmB,CAAC;KAC1F;IACD,kBAAkB,EAAE;QAClB,IAAI,EAAE,yBAAyB;QAC/B,QAAQ,EAAE,CAAC,MAAM,EAAE,QAAQ,EAAE,UAAU,EAAE,SAAS,EAAE,SAAS,EAAE,YAAY,EAAE,eAAe,EAAE,WAAW,EAAE,aAAa,EAAE,kBAAkB,CAAC;KAC9I;IAED,oCAAoC;IACpC,KAAK,EAAE;QACL,IAAI,EAAE,gBAAgB;QACtB,QAAQ,EAAE,CAAC,KAAK,EAAE,gBAAgB,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,cAAc,EAAE,cAAc,CAAC;KAC7F;IACD,MAAM,EAAE;QACN,IAAI,EAAE,oBAAoB;QAC1B,QAAQ,EAAE,CAAC,MAAM,EAAE,kBAAkB,EAAE,mBAAmB,EAAE,gBAAgB,EAAE,oBAAoB,CAAC;KACpG;IACD,mBAAmB,EAAE;QACnB,IAAI,EAAE,oBAAoB;QAC1B,QAAQ,EAAE,CAAC,mBAAmB,EAAE,KAAK,EAAE,MAAM,EAAE,UAAU,EAAE,UAAU,EAAE,iBAAiB,EAAE,QAAQ,EAAE,gBAAgB,CAAC;KACtH;IAED,uBAAuB;IACvB,eAAe,EAAE;QACf,IAAI,EAAE,oBAAoB;QAC1B,QAAQ,EAAE,CAAC,cAAc,EAAE,cAAc,EAAE,eAAe,EAAE,kBAAkB,EAAE,mBAAmB,EAAE,gBAAgB,CAAC;KACvH;IACD,kBAAkB,EAAE;QAClB,IAAI,EAAE,qBAAqB;QAC3B,QAAQ,EAAE,CAAC,eAAe,EAAE,UAAU,EAAE,iBAAiB,EAAE,gBAAgB,CAAC;KAC7E;IACD,qBAAqB,EAAE;QACrB,IAAI,EAAE,qBAAqB;QAC3B,QAAQ,EAAE,CAAC,qBAAqB,EAAE,cAAc,EAAE,MAAM,EAAE,WAAW,EAAE,eAAe,CAAC;KACxF;IAED,2BAA2B;IAC3B,OAAO,EAAE;QACP,IAAI,EAAE,kBAAkB;QACxB,QAAQ,EAAE,CAAC,cAAc,EAAE,eAAe,EAAE,6BAA6B,EAAE,aAAa,EAAE,YAAY,EAAE,eAAe,CAAC;KACzH;IACD,YAAY,EAAE;QACZ,IAAI,EAAE,qBAAqB;QAC3B,QAAQ,EAAE,CAAC,WAAW,EAAE,YAAY,EAAE,WAAW,EAAE,oBAAoB,EAAE,UAAU,EAAE,cAAc,CAAC;KACrG;IAED,gCAAgC;IAChC,WAAW,EAAE;QACX,IAAI,EAAE,WAAW;QACjB,QAAQ,EAAE,CAAC,WAAW,EAAE,sBAAsB,EAAE,mBAAmB,EAAE,oBAAoB,EAAE,oBAAoB,EAAE,mBAAmB,CAAC;KACtI;IACD,sBAAsB,EAAE;QACtB,IAAI,EAAE,sBAAsB;QAC5B,QAAQ,EAAE,CAAC,qBAAqB,EAAE,kBAAkB,EAAE,IAAI,EAAE,cAAc,EAAE,qBAAqB,CAAC;KACnG;IACD,SAAS,EAAE;QACT,IAAI,EAAE,oBAAoB;QAC1B,QAAQ,EAAE,CAAC,QAAQ,EAAE,QAAQ,EAAE,iBAAiB,EAAE,eAAe,EAAE,aAAa,EAAE,UAAU,EAAE,iBAAiB,CAAC;KACjH;IACD,SAAS,EAAE;QACT,IAAI,EAAE,gBAAgB;QACtB,QAAQ,EAAE,CAAC,SAAS,EAAE,KAAK,EAAE,OAAO,EAAE,WAAW,EAAE,kBAAkB,EAAE,oBAAoB,EAAE,YAAY,CAAC;KAC3G;IAED,4BAA4B;IAC5B,KAAK,EAAE;QACL,IAAI,EAAE,kBAAkB;QACxB,QAAQ,EAAE,CAAC,KAAK,EAAE,UAAU,EAAE,aAAa,EAAE,cAAc,EAAE,UAAU,EAAE,YAAY,EAAE,cAAc,CAAC;KACvG;IACD,SAAS,EAAE;QACT,IAAI,EAAE,aAAa;QACnB,QAAQ,EAAE,CAAC,SAAS,EAAE,OAAO,EAAE,UAAU,EAAE,QAAQ,EAAE,aAAa,CAAC;KACpE;IACD,UAAU,EAAE;QACV,IAAI,EAAE,0BAA0B;QAChC,QAAQ,EAAE,CAAC,SAAS,EAAE,cAAc,EAAE,oBAAoB,EAAE,cAAc,EAAE,OAAO,CAAC;KACrF;IAED,6BAA6B;IAC7B,SAAS,EAAE;QACT,IAAI,EAAE,uBAAuB;QAC7B,QAAQ,EAAE,CAAC,MAAM,EAAE,KAAK,EAAE,SAAS,EAAE,OAAO,EAAE,UAAU,EAAE,MAAM,EAAE,YAAY,EAAE,KAAK,CAAC;KACvF;IACD,cAAc,EAAE;QACd,IAAI,EAAE,cAAc;QACpB,QAAQ,EAAE,CAAC,aAAa,EAAE,KAAK,EAAE,MAAM,EAAE,kBAAkB,EAAE,MAAM,EAAE,SAAS,CAAC;KAChF;IACD,UAAU,EAAE;QACV,IAAI,EAAE,UAAU;QAChB,QAAQ,EAAE,CAAC,SAAS,EAAE,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC;KAC9C;IAED,wBAAwB;IACxB,eAAe,EAAE;QACf,IAAI,EAAE,eAAe;QACrB,QAAQ,EAAE,CAAC,eAAe,EAAE,aAAa,EAAE,YAAY,EAAE,gBAAgB,EAAE,KAAK,EAAE,uBAAuB,CAAC;KAC3G;IAED,gCAAgC;IAChC,cAAc,EAAE;QACd,IAAI,EAAE,uBAAuB;QAC7B,QAAQ,EAAE,CAAC,QAAQ,EAAE,iBAAiB,EAAE,iBAAiB,EAAE,MAAM,EAAE,iBAAiB,EAAE,aAAa,EAAE,cAAc,EAAE,YAAY,CAAC;KACnI;IACD,mBAAmB,EAAE;QACnB,IAAI,EAAE,mBAAmB;QACzB,QAAQ,EAAE,CAAC,mBAAmB,EAAE,YAAY,EAAE,SAAS,EAAE,QAAQ,EAAE,SAAS,CAAC;KAC9E;IAED,6BAA6B;IAC7B,WAAW,EAAE;QACX,IAAI,EAAE,oBAAoB;QAC1B,QAAQ,EAAE,CAAC,SAAS,EAAE,mBAAmB,EAAE,oBAAoB,EAAE,eAAe,EAAE,WAAW,CAAC;KAC/F;IAED,kCAAkC;IAClC,WAAW,EAAE;QACX,IAAI,EAAE,uBAAuB;QAC7B,QAAQ,EAAE,CAAC,QAAQ,EAAE,OAAO,EAAE,SAAS,EAAE,SAAS,EAAE,cAAc,EAAE,cAAc,EAAE,aAAa,EAAE,WAAW,EAAE,WAAW,CAAC;KAC7H;IACD,oBAAoB,EAAE;QACpB,IAAI,EAAE,qBAAqB;QAC3B,QAAQ,EAAE,CAAC,sBAAsB,EAAE,KAAK,EAAE,aAAa,EAAE,UAAU,EAAE,kBAAkB,CAAC;KACzF;CACO,CAAC;AAIX,0DAA0D;AAC1D,MAAM,CAAC,MAAM,SAAS,GAAG,MAAM,CAAC,IAAI,CAAC,WAAW,CAA0B,CAAC"}
|