shortcuts-playground 1.2.1

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 (68) hide show
  1. package/README.md +54 -0
  2. package/agents/shortcut-builder.md +172 -0
  3. package/agents/shortcut-remixer.md +239 -0
  4. package/commands/build-shortcut.md +32 -0
  5. package/commands/remix-shortcut.md +34 -0
  6. package/opencode.json +30 -0
  7. package/package.json +47 -0
  8. package/plugin/validator.ts +179 -0
  9. package/skills/shortcuts-playground/ACTIONS.md +713 -0
  10. package/skills/shortcuts-playground/APPINTENTS.md +2760 -0
  11. package/skills/shortcuts-playground/AUTOMATION_TRIGGERS.md +133 -0
  12. package/skills/shortcuts-playground/BEST_PRACTICES.md +357 -0
  13. package/skills/shortcuts-playground/CHANGELOG.md +585 -0
  14. package/skills/shortcuts-playground/CONTROL_FLOW.md +777 -0
  15. package/skills/shortcuts-playground/DATE_TIME.md +75 -0
  16. package/skills/shortcuts-playground/EXAMPLES.md +738 -0
  17. package/skills/shortcuts-playground/FILTERS.md +697 -0
  18. package/skills/shortcuts-playground/HEALTHKIT.md +317 -0
  19. package/skills/shortcuts-playground/ICONS_AND_COLORS.md +89 -0
  20. package/skills/shortcuts-playground/JAVASCRIPT_WEBPAGE.md +51 -0
  21. package/skills/shortcuts-playground/PARAMETER_TYPES.md +1117 -0
  22. package/skills/shortcuts-playground/PLIST_FORMAT.md +296 -0
  23. package/skills/shortcuts-playground/README.md +77 -0
  24. package/skills/shortcuts-playground/SKILL.md +459 -0
  25. package/skills/shortcuts-playground/THIRD_PARTY_ACTIONS.md +77 -0
  26. package/skills/shortcuts-playground/TOOLKIT_SNAPSHOT.md +62 -0
  27. package/skills/shortcuts-playground/URL_SCHEMES.md +59 -0
  28. package/skills/shortcuts-playground/VARIABLES.md +569 -0
  29. package/skills/shortcuts-playground/assets/shortcuts-small.svg +14 -0
  30. package/skills/shortcuts-playground/assets/shortcuts.png +0 -0
  31. package/skills/shortcuts-playground/data/healthkit-ios26.2-reference.json +2603 -0
  32. package/skills/shortcuts-playground/data/macos27-shortpy-grounding.json +4085 -0
  33. package/skills/shortcuts-playground/data/macos27-workflow-trigger-samples.json +1 -0
  34. package/skills/shortcuts-playground/data/shortcuts-glyph-synonyms.json +5102 -0
  35. package/skills/shortcuts-playground/data/shortcuts-icon-colors.json +107 -0
  36. package/skills/shortcuts-playground/data/shortcuts-official-glyph-mapping.json +509 -0
  37. package/skills/shortcuts-playground/data/toolkit-v63-tool-ids.json +1806 -0
  38. package/skills/shortcuts-playground/data/toolkit-v78-first-party-enum-cases.json +1 -0
  39. package/skills/shortcuts-playground/data/toolkit-v78-first-party-parameter-keys.json +1 -0
  40. package/skills/shortcuts-playground/data/toolkit-v78-ios27-tool-ids.json +1222 -0
  41. package/skills/shortcuts-playground/data/toolkit-v78-tool-ids.json +2745 -0
  42. package/skills/shortcuts-playground/data/toolkit-v78-trigger-parameter-keys.json +1051 -0
  43. package/skills/shortcuts-playground/golden-shortcuts/index.jsonl +19 -0
  44. package/skills/shortcuts-playground/golden-shortcuts/xml/1be4dde95b794253bf82438e201b33e7.xml +174 -0
  45. package/skills/shortcuts-playground/golden-shortcuts/xml/2e0fb675e45948aaacee7e534f910492.xml +1016 -0
  46. package/skills/shortcuts-playground/golden-shortcuts/xml/332c12a0060043b388b22b806be7ab58.xml +1924 -0
  47. package/skills/shortcuts-playground/golden-shortcuts/xml/3dd4ee24e43f464f92adaa70a0311eaa.xml +1177 -0
  48. package/skills/shortcuts-playground/golden-shortcuts/xml/4d102301c6e646faa7a8a221f4f4ec98.xml +321 -0
  49. package/skills/shortcuts-playground/golden-shortcuts/xml/51cc4e26d1044893a0c3f2f3630cf2d2.xml +1933 -0
  50. package/skills/shortcuts-playground/golden-shortcuts/xml/623e7f1ca5f948e2bd53811fec63e544.xml +136 -0
  51. package/skills/shortcuts-playground/golden-shortcuts/xml/6a18b76843ac45c384ac3400f3740997.xml +1791 -0
  52. package/skills/shortcuts-playground/golden-shortcuts/xml/71f0cacb0f604b399b76c5dcb7286e7c.xml +2228 -0
  53. package/skills/shortcuts-playground/golden-shortcuts/xml/807525ed9f974829bc8494defac923a8.xml +259 -0
  54. package/skills/shortcuts-playground/golden-shortcuts/xml/8ab0d39826ab4249be58672763caa3ba.xml +420 -0
  55. package/skills/shortcuts-playground/golden-shortcuts/xml/91c45fd3fd3b427897d9ba485efb1227.xml +800 -0
  56. package/skills/shortcuts-playground/golden-shortcuts/xml/97be626bb25c41709d175646a7f6d8f2.xml +424 -0
  57. package/skills/shortcuts-playground/golden-shortcuts/xml/ae59e10d409348f9bd33894f03f9beb4.xml +568 -0
  58. package/skills/shortcuts-playground/golden-shortcuts/xml/afa83b6be811483b9c32189c41eb9312.xml +391 -0
  59. package/skills/shortcuts-playground/golden-shortcuts/xml/cfdb083b857e4ac189629fa386d27cdc.xml +193 -0
  60. package/skills/shortcuts-playground/golden-shortcuts/xml/e01cebe192d64b2fbca80204d03d92ab.xml +111 -0
  61. package/skills/shortcuts-playground/golden-shortcuts/xml/ef669bcf8bad489d9ef4b88bfaf5772f.xml +780 -0
  62. package/skills/shortcuts-playground/golden-shortcuts/xml/f44f5caf5e3e48d4817e73af450c4404.xml +570 -0
  63. package/skills/shortcuts-playground/scripts/generate_healthkit_reference.py +394 -0
  64. package/skills/shortcuts-playground/scripts/lookup_action_grounding.py +1164 -0
  65. package/skills/shortcuts-playground/scripts/select_shortcut_icon_color.py +597 -0
  66. package/skills/shortcuts-playground/scripts/test_random_mixed_shortcuts.py +1067 -0
  67. package/skills/shortcuts-playground/scripts/test_wiring_regressions.py +2247 -0
  68. package/skills/shortcuts-playground/scripts/validate_shortcut.py +4526 -0
@@ -0,0 +1,1806 @@
1
+ {
2
+ "version": "toolkit-v63",
3
+ "generated_at": "2026-02-09T14:48:10.030545+00:00",
4
+ "ids": [
5
+ "com.agiletortoise.Drafts4.addto",
6
+ "com.agiletortoise.Drafts4.get",
7
+ "com.agiletortoise.Drafts4.open",
8
+ "com.agiletortoise.Drafts4.runAction",
9
+ "com.agiletortoise.Tally2.get",
10
+ "com.agiletortoise.Tally2.updatetally",
11
+ "com.apple.AddressBook.ContactEntity",
12
+ "com.apple.AddressBook.CreateContactIntent",
13
+ "com.apple.AddressBook.DeleteContactIntent",
14
+ "com.apple.AddressBook.FetchContactAvatarIntent",
15
+ "com.apple.AddressBook.FetchContactIntent",
16
+ "com.apple.AddressBook.SearchInContactsIntent",
17
+ "com.apple.AddressBook.UpdateContactIntent",
18
+ "com.apple.AddressBook.ViewContactCardIntent",
19
+ "com.apple.AppKit.FetchIntelligenceCommands",
20
+ "com.apple.AppKit.InsertIntelligenceText",
21
+ "com.apple.AppKit.RunIntelligenceCommand",
22
+ "com.apple.AppKit.RunIntelligenceCommandForKey",
23
+ "com.apple.AppKit.WindowTabActivateIntent",
24
+ "com.apple.AppKit.WindowTabEntity",
25
+ "com.apple.AppKit.WritingToolsComposeIntent",
26
+ "com.apple.AppKit.WritingToolsProofreadIntent",
27
+ "com.apple.AppKit.WritingToolsRewriteIntent",
28
+ "com.apple.AppStore.SystemSearchIntent",
29
+ "com.apple.Desktop-Settings.extension.OpenDesktopSettingsDeepLink",
30
+ "com.apple.GameCenter.Settings.DeviceExpertExtension.OpenGameCenterSettingsDeepLinks",
31
+ "com.apple.GenerativePlaygroundApp.GenerateImageIntent",
32
+ "com.apple.Home.ActivateSceneIntent",
33
+ "com.apple.Home.AutomateAttributeValueIntent",
34
+ "com.apple.Home.AutomateSceneIntent",
35
+ "com.apple.Home.CameraClipEntity",
36
+ "com.apple.Home.DeltaAttributeValueIntent",
37
+ "com.apple.Home.DeviceEntity",
38
+ "com.apple.Home.ErrorIntent",
39
+ "com.apple.Home.ForecastWidgetConfiguration",
40
+ "com.apple.Home.GetAttributeValueIntent",
41
+ "com.apple.Home.GetDeviceInfoIntent",
42
+ "com.apple.Home.HistoricalUsageWidgetConfiguration",
43
+ "com.apple.Home.HomeAppIntentsExtensionTestAppIntent",
44
+ "com.apple.Home.HomeEntity",
45
+ "com.apple.Home.HomeSingleTileConfigurationIntent",
46
+ "com.apple.Home.HomeXLModuleConfigurationIntent",
47
+ "com.apple.Home.OpenURLInHomeIntent",
48
+ "com.apple.Home.RecommendedItemIntent",
49
+ "com.apple.Home.RoomEntity",
50
+ "com.apple.Home.SceneEntity",
51
+ "com.apple.Home.SecureToggleIntent",
52
+ "com.apple.Home.SelectedHomeEntity",
53
+ "com.apple.Home.SetAttributeValueIntent",
54
+ "com.apple.Home.ShowDeviceResultIntent",
55
+ "com.apple.Home.ShowErrorIntent",
56
+ "com.apple.Home.ShowNavigationIntent",
57
+ "com.apple.Home.ShowSceneResultIntent",
58
+ "com.apple.Home.TileControlAction",
59
+ "com.apple.Home.ToggleAttributeIntent",
60
+ "com.apple.Home.ToggleControlConfigurationIntent",
61
+ "com.apple.Home.ToggleIntent",
62
+ "com.apple.Home.UtilityRateInfoWidgetConfiguration",
63
+ "com.apple.Home.ZoneEntity",
64
+ "com.apple.HydraUSDAppIntents.ConvertToUSDZ",
65
+ "com.apple.Magnifier.DescribeThisIntent",
66
+ "com.apple.Magnifier.DetectDoorsIntent",
67
+ "com.apple.Magnifier.DetectFurnitureIntent",
68
+ "com.apple.Magnifier.DetectPeopleIntent",
69
+ "com.apple.Magnifier.DetectTextIntent",
70
+ "com.apple.Magnifier.MagnifierIntent",
71
+ "com.apple.Magnifier.PointAndSpeakIntent",
72
+ "com.apple.Magnifier.ReaderModeIntent",
73
+ "com.apple.Magnifier.StartDetectionTypeIntent",
74
+ "com.apple.MobileSMS.ChangeFilterModeIntent",
75
+ "com.apple.MobileSMS.ConversationEntity",
76
+ "com.apple.MobileSMS.ConversationListFocusFilterAction",
77
+ "com.apple.MobileSMS.DeleteConversationIntent",
78
+ "com.apple.MobileSMS.DeleteMessageIntent",
79
+ "com.apple.MobileSMS.FetchConversationIdentifierIntent",
80
+ "com.apple.MobileSMS.FetchDowntimeConversationListIntent",
81
+ "com.apple.MobileSMS.FetchMutedConversationListIntent",
82
+ "com.apple.MobileSMS.INEditMessageIntent",
83
+ "com.apple.MobileSMS.INSearchForMessagesIntent",
84
+ "com.apple.MobileSMS.INSendMessageIntent",
85
+ "com.apple.MobileSMS.INSetMessageAttributeIntent",
86
+ "com.apple.MobileSMS.INUnsendMessagesIntent",
87
+ "com.apple.MobileSMS.MarkConversationAsUnreadIntent",
88
+ "com.apple.MobileSMS.MessageEntity",
89
+ "com.apple.MobileSMS.MuteConversationIntent",
90
+ "com.apple.MobileSMS.OpenConversationIntent",
91
+ "com.apple.MobileSMS.OpenConversationListIntent",
92
+ "com.apple.MobileSMS.OpenMessageIntent",
93
+ "com.apple.MobileSMS.RemoveTapbackIntent",
94
+ "com.apple.MobileSMS.SendMessageReactionIntent",
95
+ "com.apple.MobileSMS.SendReplyIntent",
96
+ "com.apple.MobileSMS.SendTapbackIntent",
97
+ "com.apple.NanoSettings.NPRFPingMyPhoneIntent",
98
+ "com.apple.NanoSettings.NPRFSetAlwaysOnIntent",
99
+ "com.apple.NanoSettings.NPRFSetAutoLaunchAudioAppsIntent",
100
+ "com.apple.NanoSettings.NPRFSetFlashLightIntent",
101
+ "com.apple.NanoSettings.NPRFSetSchoolTimeIntent",
102
+ "com.apple.NanoSettings.NPRFSetSilentModeIntent",
103
+ "com.apple.NanoSettings.NPRFSetTheaterModeIntent",
104
+ "com.apple.NanoSettings.NPRFSetWakeOnWristRaiseIntent",
105
+ "com.apple.NanoSettings.NPRFSetWaterLockIntent",
106
+ "com.apple.Notes.AddFileAttachmentLinkAction",
107
+ "com.apple.Notes.AddLinkAttachmentLinkAction",
108
+ "com.apple.Notes.AddOrRemoveNoteLockLinkAction",
109
+ "com.apple.Notes.AddTagsToNotesLinkAction",
110
+ "com.apple.Notes.AppendMarkdownToNoteLinkAction",
111
+ "com.apple.Notes.ApplyFormattingLinkAction",
112
+ "com.apple.Notes.AttachmentEntity",
113
+ "com.apple.Notes.ChangeFolderSettingLinkAction",
114
+ "com.apple.Notes.ChangeSettingLinkAction",
115
+ "com.apple.Notes.ChangeTagSelectionIntent",
116
+ "com.apple.Notes.CloseAppLocationLinkAction",
117
+ "com.apple.Notes.CloseNoteLinkAction",
118
+ "com.apple.Notes.CreateChecklistItemLinkAction",
119
+ "com.apple.Notes.CreateFolderLinkAction",
120
+ "com.apple.Notes.CreateNoteFromMarkdownLinkAction",
121
+ "com.apple.Notes.CreateTableLinkAction",
122
+ "com.apple.Notes.CreateTagLinkAction",
123
+ "com.apple.Notes.DeleteAttachmentsLinkAction",
124
+ "com.apple.Notes.DeleteChecklistItemsLinkAction",
125
+ "com.apple.Notes.DeleteFoldersLinkAction",
126
+ "com.apple.Notes.DeleteNotesLinkAction",
127
+ "com.apple.Notes.DeleteTablesLinkAction",
128
+ "com.apple.Notes.DeleteTagsLinkAction",
129
+ "com.apple.Notes.GetLinkedNotesLinkAction",
130
+ "com.apple.Notes.ICNotesFolderIntent",
131
+ "com.apple.Notes.INCreateNoteIntent",
132
+ "com.apple.Notes.InsertAllMentionLinkAction",
133
+ "com.apple.Notes.InsertMentionLinkAction",
134
+ "com.apple.Notes.InsertNoteLinkLinkAction",
135
+ "com.apple.Notes.MoveNotesToFolderLinkAction",
136
+ "com.apple.Notes.OpenAccountLinkAction",
137
+ "com.apple.Notes.OpenAppLocationLinkAction",
138
+ "com.apple.Notes.OpenAttachmentLinkAction",
139
+ "com.apple.Notes.OpenChecklistItemLinkAction",
140
+ "com.apple.Notes.OpenFolderLinkAction",
141
+ "com.apple.Notes.OpenTableLinkAction",
142
+ "com.apple.Notes.OpenTagLinkAction",
143
+ "com.apple.Notes.OpenTopLevelFolderLinkAction",
144
+ "com.apple.Notes.PinNotesLinkAction",
145
+ "com.apple.Notes.QuickNoteIntent",
146
+ "com.apple.Notes.RemoveTagsFromNotesLinkAction",
147
+ "com.apple.Notes.RenameFolderLinkAction",
148
+ "com.apple.Notes.ReplaceSelectionLinkAction",
149
+ "com.apple.Notes.SetAttachmentSizeLinkAction",
150
+ "com.apple.Notes.SetChecklistItemCheckedLinkActionv2",
151
+ "com.apple.Notes.SetParagraphStyleLinkAction",
152
+ "com.apple.Notes.ShowNotesAppSearchResultsLinkAction",
153
+ "com.apple.Notes.ShowQuickNoteIntent",
154
+ "com.apple.Notes.StartRecordingLinkAction",
155
+ "com.apple.Notes.TableEntity",
156
+ "com.apple.PeopleViewService.SelectPersonIntent",
157
+ "com.apple.PeopleViewService.URLAppIntent",
158
+ "com.apple.Photos.AddAssetsToAlbumIntent",
159
+ "com.apple.Photos.ApplyFilterIntent",
160
+ "com.apple.Photos.ApplyStyleIntent",
161
+ "com.apple.Photos.CleanupIntent",
162
+ "com.apple.Photos.CopyEditsIntent",
163
+ "com.apple.Photos.CreateAlbumIntent",
164
+ "com.apple.Photos.CreateAssetsIntent",
165
+ "com.apple.Photos.CropIntent",
166
+ "com.apple.Photos.DeleteAlbumsIntent",
167
+ "com.apple.Photos.DeleteAssetsIntent",
168
+ "com.apple.Photos.DuplicateAssetsIntent",
169
+ "com.apple.Photos.EditAssetIntent",
170
+ "com.apple.Photos.EnableDepthIntent",
171
+ "com.apple.Photos.EnhanceIntent",
172
+ "com.apple.Photos.FavoriteAssetsIntent",
173
+ "com.apple.Photos.FavoriteMemoriesIntent",
174
+ "com.apple.Photos.FavoritePeopleIntent",
175
+ "com.apple.Photos.FilterLibraryIntent",
176
+ "com.apple.Photos.HideAssetsIntent",
177
+ "com.apple.Photos.HidePeopleIntent",
178
+ "com.apple.Photos.MarkupIntent",
179
+ "com.apple.Photos.MoveAssetsToPersonalLibraryIntent",
180
+ "com.apple.Photos.MoveAssetsToSharedLibraryIntent",
181
+ "com.apple.Photos.OpenAlbumIntent",
182
+ "com.apple.Photos.OpenAssetIntent",
183
+ "com.apple.Photos.OpenDestinationIntent",
184
+ "com.apple.Photos.OpenMemoryCreationViewIntent",
185
+ "com.apple.Photos.OpenMemoryIntent",
186
+ "com.apple.Photos.OpenPersonIntent",
187
+ "com.apple.Photos.PLPhotosReliveWidgetConfigurationIntent",
188
+ "com.apple.Photos.PasteEditsIntent",
189
+ "com.apple.Photos.PhotosAddAssetsToAlbumAssistantIntent",
190
+ "com.apple.Photos.PhotosCleanupPhotoAssistantIntent",
191
+ "com.apple.Photos.PhotosCopyEditsAssistantIntent",
192
+ "com.apple.Photos.PhotosCreateAlbumAssistantIntent",
193
+ "com.apple.Photos.PhotosCreateAssetsAssistantIntent",
194
+ "com.apple.Photos.PhotosCropAssistantIntent",
195
+ "com.apple.Photos.PhotosDeleteAlbumsAssistantIntent",
196
+ "com.apple.Photos.PhotosDeleteAssetsAssistantIntent",
197
+ "com.apple.Photos.PhotosDuplicateAssetsAssistantIntent",
198
+ "com.apple.Photos.PhotosPasteEditsAssistantIntent",
199
+ "com.apple.Photos.PhotosReliveWidgetFeaturedConfiguration",
200
+ "com.apple.Photos.PhotosRemoveAssetsFromAlbumAssistantIntent",
201
+ "com.apple.Photos.PhotosSearchAssistantIntent",
202
+ "com.apple.Photos.PhotosSetDepthAssistantIntent",
203
+ "com.apple.Photos.PhotosSetExposureAssistantIntent",
204
+ "com.apple.Photos.PhotosSetFilterAssistantIntent",
205
+ "com.apple.Photos.PhotosSetRotationAssistantIntent",
206
+ "com.apple.Photos.PhotosSetSaturationAssistantIntent",
207
+ "com.apple.Photos.PhotosSetWarmthAssistantIntent",
208
+ "com.apple.Photos.PhotosStraightenAssistantIntent",
209
+ "com.apple.Photos.PhotosToggleDepthAssistantIntent",
210
+ "com.apple.Photos.PhotosToggleSuggestedEditsAssistantIntent",
211
+ "com.apple.Photos.PhotosUpdateAlbumAssistantIntent",
212
+ "com.apple.Photos.PhotosUpdateAssetAssistantIntent",
213
+ "com.apple.Photos.PhotosUpdateRecognizedPersonAssistantIntent",
214
+ "com.apple.Photos.RemoveAssetsFromAlbumIntent",
215
+ "com.apple.Photos.RenameAlbumIntent",
216
+ "com.apple.Photos.RenamePersonIntent",
217
+ "com.apple.Photos.RevealAlbumsIntent",
218
+ "com.apple.Photos.RevealAssetsIntent",
219
+ "com.apple.Photos.RotateIntent",
220
+ "com.apple.Photos.SetApertureIntent",
221
+ "com.apple.Photos.SetAudioMixIntent",
222
+ "com.apple.Photos.SetExposureIntent",
223
+ "com.apple.Photos.SetPlaybackRateIntent",
224
+ "com.apple.Photos.SetSaturationIntent",
225
+ "com.apple.Photos.SetWarmthIntent",
226
+ "com.apple.Photos.StraightenIntent",
227
+ "com.apple.Preview.AutoEnhanceIntent",
228
+ "com.apple.Preview.BookmarkIntent",
229
+ "com.apple.Preview.CloseIntent",
230
+ "com.apple.Preview.DeletePageIntent",
231
+ "com.apple.Preview.DocumentEntity",
232
+ "com.apple.Preview.ExportIntent",
233
+ "com.apple.Preview.FlipIntent",
234
+ "com.apple.Preview.GetPagesIntent",
235
+ "com.apple.Preview.InsertPageIntent",
236
+ "com.apple.Preview.OpenIntent",
237
+ "com.apple.Preview.RemoveBackgroundIntent",
238
+ "com.apple.Preview.ResizeIntent",
239
+ "com.apple.Preview.RevealDocumentIntent",
240
+ "com.apple.Preview.RevealPageIntent",
241
+ "com.apple.Preview.RotateIntent",
242
+ "com.apple.Preview.RotatePageIntent",
243
+ "com.apple.Preview.SaveIntent",
244
+ "com.apple.Preview.SearchIntent",
245
+ "com.apple.Safari.BookmarkEntity",
246
+ "com.apple.Safari.BookmarkTabIntent",
247
+ "com.apple.Safari.BookmarkURLIntent",
248
+ "com.apple.Safari.CloseTab",
249
+ "com.apple.Safari.CloseTabsAssistantIntent",
250
+ "com.apple.Safari.CloseView",
251
+ "com.apple.Safari.CloseWindowsIntent",
252
+ "com.apple.Safari.CreateNewBookmark",
253
+ "com.apple.Safari.CreateNewTab",
254
+ "com.apple.Safari.CreateNewTabGroup",
255
+ "com.apple.Safari.CreateNewWindow",
256
+ "com.apple.Safari.CreateTabAssistantIntent",
257
+ "com.apple.Safari.DeleteBookmarks",
258
+ "com.apple.Safari.DeleteTabGroups",
259
+ "com.apple.Safari.FindOnPage",
260
+ "com.apple.Safari.LoadURLInTab",
261
+ "com.apple.Safari.MoveTabsToTabGroup",
262
+ "com.apple.Safari.MoveTabsToWindowIntent",
263
+ "com.apple.Safari.OpenBookmark",
264
+ "com.apple.Safari.OpenBookmarkAssistantIntent",
265
+ "com.apple.Safari.OpenTab",
266
+ "com.apple.Safari.OpenTabGroup",
267
+ "com.apple.Safari.OpenTabGroupForFocus",
268
+ "com.apple.Safari.OpenView",
269
+ "com.apple.Safari.QuickWebsiteSearchIntent",
270
+ "com.apple.Safari.QuickWebsiteSearchProviderEntity",
271
+ "com.apple.Safari.SearchTabs",
272
+ "com.apple.Safari.ShowWindowIntent",
273
+ "com.apple.Safari.TabEntity",
274
+ "com.apple.Safari.TabGroupEntity",
275
+ "com.apple.Safari.WindowEntity",
276
+ "com.apple.ShortcutsActions.CellularPlanEntity",
277
+ "com.apple.ShortcutsActions.GetOrientationAction",
278
+ "com.apple.ShortcutsActions.GetPhysicalActivity",
279
+ "com.apple.ShortcutsActions.PlayMusicTopHitAction",
280
+ "com.apple.ShortcutsActions.PlayPodcastTopHitAction",
281
+ "com.apple.ShortcutsActions.ResetCellularDataStatisticsAction",
282
+ "com.apple.ShortcutsActions.SetDataRoamingAction",
283
+ "com.apple.ShortcutsActions.SetDefaultCellularPlanAction",
284
+ "com.apple.ShortcutsActions.SetSilentModeAction",
285
+ "com.apple.ShortcutsActions.SetVoiceDataModeAction",
286
+ "com.apple.ShortcutsActions.ShowControlCenterAction",
287
+ "com.apple.ShortcutsActions.StartCallTopHitAction",
288
+ "com.apple.ShortcutsActions.StartFaceTimeAudioCallTopHitAction",
289
+ "com.apple.ShortcutsActions.StartFaceTimeCallTopHitAction",
290
+ "com.apple.ShortcutsActions.StartFaceTimeVideoCallTopHitAction",
291
+ "com.apple.ShortcutsActions.TimeMachineAction",
292
+ "com.apple.ShortcutsActions.ToggleCellularPlanAction",
293
+ "com.apple.ShortcutsActions.TranscribeAudioAction",
294
+ "com.apple.Spotlight.ClearSpotlightIntent",
295
+ "com.apple.Spotlight.SearchFieldEntity",
296
+ "com.apple.Spotlight.SearchSpotlightIntent",
297
+ "com.apple.Spotlight.SearchSpotlightIntentInternal",
298
+ "com.apple.Spotlight.SearchUIContinuationIntent",
299
+ "com.apple.Spotlight.SearchUIOpenKnowledgeIntent",
300
+ "com.apple.Spotlight.ToggleSpotlightIntent",
301
+ "com.apple.TransparencySettingsIntents.OpenTransparencyPublicVerificationCodeDeepLink",
302
+ "com.apple.TransparencySettingsIntents.OpenTransparencyStatusDeepLink",
303
+ "com.apple.TransparencySettingsIntents.TransparencyPublicVerificationCodeEntity",
304
+ "com.apple.TransparencySettingsIntents.TransparencySettingsIntents",
305
+ "com.apple.TransparencySettingsIntents.TransparencyStatusEntity",
306
+ "com.apple.UniversalAccess.UASettingsShortcuts.UASetBackgroundSoundIntent",
307
+ "com.apple.UniversalAccess.UASettingsShortcuts.UASetBackgroundSoundsTimerIntent",
308
+ "com.apple.UniversalAccess.UASettingsShortcuts.UASetBackgroundSoundsVolumeIntent",
309
+ "com.apple.UniversalAccess.UASettingsShortcuts.UAToggleAccessibilityKeyboardIntent",
310
+ "com.apple.UniversalAccess.UASettingsShortcuts.UAToggleAlternatePointerActionsIntent",
311
+ "com.apple.UniversalAccess.UASettingsShortcuts.UAToggleAudioDescriptionsIntent",
312
+ "com.apple.UniversalAccess.UASettingsShortcuts.UAToggleBackgroundSoundsIntent",
313
+ "com.apple.UniversalAccess.UASettingsShortcuts.UAToggleCaptionsIntent",
314
+ "com.apple.UniversalAccess.UASettingsShortcuts.UAToggleClassicInvertIntent",
315
+ "com.apple.UniversalAccess.UASettingsShortcuts.UAToggleColorFiltersIntent",
316
+ "com.apple.UniversalAccess.UASettingsShortcuts.UAToggleContrastIntent",
317
+ "com.apple.UniversalAccess.UASettingsShortcuts.UAToggleFullKeyboardAccessIntent",
318
+ "com.apple.UniversalAccess.UASettingsShortcuts.UAToggleHeadPointerIntent",
319
+ "com.apple.UniversalAccess.UASettingsShortcuts.UAToggleHoverTextIntent",
320
+ "com.apple.UniversalAccess.UASettingsShortcuts.UAToggleHoverTypingIntent",
321
+ "com.apple.UniversalAccess.UASettingsShortcuts.UAToggleLiveCaptionsIntent",
322
+ "com.apple.UniversalAccess.UASettingsShortcuts.UAToggleLiveSpeechIntent",
323
+ "com.apple.UniversalAccess.UASettingsShortcuts.UAToggleMonoAudioIntent",
324
+ "com.apple.UniversalAccess.UASettingsShortcuts.UAToggleMotionCuesIntent",
325
+ "com.apple.UniversalAccess.UASettingsShortcuts.UAToggleMouseKeysIntent",
326
+ "com.apple.UniversalAccess.UASettingsShortcuts.UAToggleReduceMotionIntent",
327
+ "com.apple.UniversalAccess.UASettingsShortcuts.UAToggleSlowKeysIntent",
328
+ "com.apple.UniversalAccess.UASettingsShortcuts.UAToggleSmartInvertIntent",
329
+ "com.apple.UniversalAccess.UASettingsShortcuts.UAToggleStickyKeysIntent",
330
+ "com.apple.UniversalAccess.UASettingsShortcuts.UAToggleSwitchControlIntent",
331
+ "com.apple.UniversalAccess.UASettingsShortcuts.UAToggleTransparencyIntent",
332
+ "com.apple.UniversalAccess.UASettingsShortcuts.UAToggleVoiceControlIntent",
333
+ "com.apple.UniversalAccess.UASettingsShortcuts.UAToggleVoiceOverIntent",
334
+ "com.apple.UniversalAccess.UASettingsShortcuts.UAToggleZoomIntent",
335
+ "com.apple.VoiceMemos.AudioQualityEntity",
336
+ "com.apple.VoiceMemos.AudioQualityEntity-UpdatableEntity",
337
+ "com.apple.VoiceMemos.ChangeRecordingPlaybackSetting",
338
+ "com.apple.VoiceMemos.ClearDeletedEntity",
339
+ "com.apple.VoiceMemos.ClearDeletedEntity-UpdatableEntity",
340
+ "com.apple.VoiceMemos.CreateFolder",
341
+ "com.apple.VoiceMemos.DeleteFolder",
342
+ "com.apple.VoiceMemos.DeleteRecording",
343
+ "com.apple.VoiceMemos.LocationBasedNamingEntity",
344
+ "com.apple.VoiceMemos.LocationBasedNamingEntity-UpdatableEntity",
345
+ "com.apple.VoiceMemos.OpenFolder",
346
+ "com.apple.VoiceMemos.OpenResetAnalyticsIdentifierEntity",
347
+ "com.apple.VoiceMemos.PlaybackVoiceMemoIntent",
348
+ "com.apple.VoiceMemos.RCCombineRecordings",
349
+ "com.apple.VoiceMemos.RCControlCenterToggleRecording",
350
+ "com.apple.VoiceMemos.RCImportRecording",
351
+ "com.apple.VoiceMemos.RCRecordingEntity",
352
+ "com.apple.VoiceMemos.RecordVoiceMemoIntent",
353
+ "com.apple.VoiceMemos.ResetAnalyticsIdentifierEntity",
354
+ "com.apple.VoiceMemos.SearchRecordings",
355
+ "com.apple.VoiceMemos.SelectRecording",
356
+ "com.apple.VoiceMemos.StopRecording",
357
+ "com.apple.VoiceMemos.ToggleRecording",
358
+ "com.apple.VoiceMemos.WFAppSettingEntityUpdaterAction",
359
+ "com.apple.VoiceMemos.WFGetAppSettingAction",
360
+ "com.apple.WindowManager.AppExposeAction",
361
+ "com.apple.WindowManager.CornersTileAction",
362
+ "com.apple.WindowManager.MissionControlAction",
363
+ "com.apple.WindowManager.ShowDesktopAction",
364
+ "com.apple.WindowManager.StageManagerToggleIntent",
365
+ "com.apple.WindowManager.ThreeUpTileAction",
366
+ "com.apple.WindowManager.TwoUpTileAction",
367
+ "com.apple.WritingTools.WritingToolsAppIntentsExtension.AdjustToneIntent",
368
+ "com.apple.WritingTools.WritingToolsAppIntentsExtension.FormatListIntent",
369
+ "com.apple.WritingTools.WritingToolsAppIntentsExtension.FormatTableIntent",
370
+ "com.apple.WritingTools.WritingToolsAppIntentsExtension.ProofreadIntent",
371
+ "com.apple.WritingTools.WritingToolsAppIntentsExtension.RewriteTextIntent",
372
+ "com.apple.WritingTools.WritingToolsAppIntentsExtension.SummarizeTextIntent",
373
+ "com.apple.calculator.LaunchCalculatorOpenIntent",
374
+ "com.apple.clock.AddWorldClockIntent",
375
+ "com.apple.clock.CancelTimerIntent",
376
+ "com.apple.clock.DeleteAlarmIntent",
377
+ "com.apple.clock.GetCurrentTimerDetailsIntent",
378
+ "com.apple.clock.GetTimeForCityIntent",
379
+ "com.apple.clock.LapStopwatchIntent",
380
+ "com.apple.clock.OpenAlarmIntent",
381
+ "com.apple.clock.OpenTab",
382
+ "com.apple.clock.OpenTabIntent",
383
+ "com.apple.clock.PauseTimerIntent",
384
+ "com.apple.clock.RemoveWorldClockIntent",
385
+ "com.apple.clock.ResetStopwatchIntent",
386
+ "com.apple.clock.ResumeTimerIntent",
387
+ "com.apple.clock.StartStopwatchIntent",
388
+ "com.apple.clock.StopStopwatchIntent",
389
+ "com.apple.controlcenter.DisplaySleepIntent",
390
+ "com.apple.controlcenter.LockScreenIntent",
391
+ "com.apple.controlcenter.ScreenSaverIntent",
392
+ "com.apple.controlcenter.SetDarkModeEnabledIntent",
393
+ "com.apple.controlcenter.SetNightShiftEnabledIntent",
394
+ "com.apple.controlcenter.SetTrueToneEnabledIntent",
395
+ "com.apple.dock.SetDockAutoHideEnabledIntent",
396
+ "com.apple.donotdisturb.DoNotDisturbAppIntents.FocusEntity",
397
+ "com.apple.donotdisturb.DoNotDisturbAppIntents.OpenFocusSettingsDynamicDeepLinks",
398
+ "com.apple.donotdisturb.DoNotDisturbAppIntents.SetFocusState",
399
+ "com.apple.facetime.facetime",
400
+ "com.apple.finder.CompressItemsIntent",
401
+ "com.apple.finder.CopyItemsIntent",
402
+ "com.apple.finder.CreateFolderIntent",
403
+ "com.apple.finder.DuplicateItemsIntent",
404
+ "com.apple.finder.GetInfoIntent",
405
+ "com.apple.finder.GetLocationIntent",
406
+ "com.apple.finder.GetSelectedItemsIntent",
407
+ "com.apple.finder.GoToEnclosingFolderIntent",
408
+ "com.apple.finder.GoToFolderIntent",
409
+ "com.apple.finder.GoToLocationIntent",
410
+ "com.apple.finder.MoveItemsIntent",
411
+ "com.apple.finder.OpenItemIntent",
412
+ "com.apple.finder.RenameItemIntent",
413
+ "com.apple.finder.RevealItemsIntent",
414
+ "com.apple.finder.SearchInBrowserIntent",
415
+ "com.apple.finder.TrashItemsIntent",
416
+ "com.apple.findmy.FriendSelectorIntent",
417
+ "com.apple.findmy.Intent",
418
+ "com.apple.findmy.ItemEntity",
419
+ "com.apple.findmy.ItemSelectorIntent",
420
+ "com.apple.findmy.PersonEntity",
421
+ "com.apple.findmy.WidgetItemEntity",
422
+ "com.apple.findmy.WidgetPersonEntity",
423
+ "com.apple.freeform.CRLAddItemToBoardIntent",
424
+ "com.apple.freeform.CRLAddStickyNoteToBoardIntent",
425
+ "com.apple.freeform.CRLAddTextToBoardIntent",
426
+ "com.apple.freeform.CRLChangeBoardCanvasGridIntent",
427
+ "com.apple.freeform.CRLChangeBoardObjectConnectorsIntent",
428
+ "com.apple.freeform.CRLChangeSelectionColorIntent",
429
+ "com.apple.freeform.CRLChangeSelectionFontSizeIntent",
430
+ "com.apple.freeform.CRLChangeSelectionFontStyleIntent",
431
+ "com.apple.freeform.CRLCreateBoardIntent",
432
+ "com.apple.freeform.CRLDeleteBoardIntent",
433
+ "com.apple.freeform.CRLFavoriteBoardIntent_v2",
434
+ "com.apple.freeform.CRLInsertFilesToBoardIntent",
435
+ "com.apple.freeform.CRLInsertPhotosToBoardIntent",
436
+ "com.apple.freeform.CRLInsertShapeToBoardIntent",
437
+ "com.apple.freeform.CRLInsertTextToBoardIntent",
438
+ "com.apple.freeform.CRLInsertURLToBoardIntent",
439
+ "com.apple.freeform.CRLOpenBoardIntent",
440
+ "com.apple.freeform.CRLRenameBoardIntent",
441
+ "com.apple.freeform.CRLResizeSelectionFontIntent",
442
+ "com.apple.freeform.CRLResizeSelectionFontIntent_v2",
443
+ "com.apple.freeform.CRLUpdateBoardIntent",
444
+ "com.apple.freeform.CRLUtilitiesIntent",
445
+ "com.apple.freeform.CRLiOSCreateBoardIntent",
446
+ "com.apple.freeform.CRLiOSOpenBoardIntent",
447
+ "com.apple.generativeassistanttools.GenerativeAssistantExtension.GenerateKnowledgeResponseIntent",
448
+ "com.apple.generativeassistanttools.GenerativeAssistantExtension.GenerateRichContentFromMediaIntent",
449
+ "com.apple.generativeassistanttools.GenerativeAssistantExtension.GenerateRichContentIntent",
450
+ "com.apple.generativeassistanttools.GenerativeAssistantExtension.PrewarmGenerativeAssistantExtensionIntent",
451
+ "com.apple.helpviewer.CollectionOpenIntent",
452
+ "com.apple.homed.SetPersonalContentSettingIntent",
453
+ "com.apple.iBooksX.AudiobookSleepTimerIntent",
454
+ "com.apple.iBooksX.BookAppEntity",
455
+ "com.apple.iBooksX.BookReaderChangeThemeIntent",
456
+ "com.apple.iBooksX.BookReaderNavigatePageInBookIntent",
457
+ "com.apple.iBooksX.BookReaderNavigatePagesIntent",
458
+ "com.apple.iBooksX.BookSettingsEntity",
459
+ "com.apple.iBooksX.BookSettingsEntity-UpdatableEntity",
460
+ "com.apple.iBooksX.ChangeFontSizeIntent",
461
+ "com.apple.iBooksX.CloseBookIntent",
462
+ "com.apple.iBooksX.DeepLinkIntent",
463
+ "com.apple.iBooksX.DefaultCollectionEntity",
464
+ "com.apple.iBooksX.OpenBookIntent",
465
+ "com.apple.iBooksX.OpenDefaultCollectionIntent",
466
+ "com.apple.iBooksX.OpenMostRecentBookIntent",
467
+ "com.apple.iBooksX.OpenSpecificBookIntent",
468
+ "com.apple.iBooksX.OpenTabBarItemIntent",
469
+ "com.apple.iBooksX.OpenTableOfContentsIntent",
470
+ "com.apple.iBooksX.PauseCurrentAudiobookIntent",
471
+ "com.apple.iBooksX.PlayAudiobookIntent",
472
+ "com.apple.iBooksX.PlayMostRecentAudiobookIntent",
473
+ "com.apple.iBooksX.PlaySpecificAudiobookIntent",
474
+ "com.apple.iBooksX.SearchBooksAppIntent",
475
+ "com.apple.iBooksX.SearchBooksIntent",
476
+ "com.apple.iBooksX.UpdateBookSettingsIntent",
477
+ "com.apple.iBooksX.openin",
478
+ "com.apple.iCal.CreateCalendarIntent",
479
+ "com.apple.iCal.CreateEventIntent",
480
+ "com.apple.iCal.CreateEventIntent_v0",
481
+ "com.apple.iCal.DeleteCalendarsIntent",
482
+ "com.apple.iCal.DeleteEventIntent",
483
+ "com.apple.iCal.DeleteEventIntent_v0",
484
+ "com.apple.iCal.EditEventIntent",
485
+ "com.apple.iCal.EditEventIntent_v0",
486
+ "com.apple.iCal.EmailAttendeesIntent",
487
+ "com.apple.iCal.EmailOrganizerIntent",
488
+ "com.apple.iCal.EventEntity",
489
+ "com.apple.iCal.FetchTransferableEventByURLIntent",
490
+ "com.apple.iCal.FetchTransferableEventsInRangeIntent",
491
+ "com.apple.iCal.HighlightEventIntent",
492
+ "com.apple.iCal.InboxItemEntity",
493
+ "com.apple.iCal.JoinEventIntent",
494
+ "com.apple.iCal.ListEventsIntent",
495
+ "com.apple.iCal.OpenCalendarEditorIntent",
496
+ "com.apple.iCal.OpenCalendarViewIntent",
497
+ "com.apple.iCal.OpenDateIntent",
498
+ "com.apple.iCal.OpenEventDetailsIntent",
499
+ "com.apple.iCal.OpenEventEditorIntent",
500
+ "com.apple.iCal.RespondToInboxItemIntent",
501
+ "com.apple.iCal.SetCalendarFocusConfiguration",
502
+ "com.apple.iCal.TransferableCalendarEntity",
503
+ "com.apple.iCal.TransferableSourceEntity",
504
+ "com.apple.iWork.Keynote.KNDocumentBackgroundExportIntent",
505
+ "com.apple.iWork.Keynote.KNDocumentPlayIntent",
506
+ "com.apple.iWork.Keynote.KNDocumentRehearseIntent",
507
+ "com.apple.iWork.Keynote.KNNewDocumentIntent",
508
+ "com.apple.iWork.Keynote.KNiOSCreateNewOutlineIntent",
509
+ "com.apple.iWork.Keynote.KNiOSOpenAnyDocumentIntent",
510
+ "com.apple.iWork.Keynote.TSADocumentCreateIntent",
511
+ "com.apple.iWork.Keynote.TSADocumentOpenIntent",
512
+ "com.apple.iWork.Numbers.TNDocumentBackgroundExportIntent",
513
+ "com.apple.iWork.Numbers.TNNewDocumentIntent",
514
+ "com.apple.iWork.Numbers.TNiOSAddValuesToFormIntent",
515
+ "com.apple.iWork.Numbers.TNiOSAddValuesToSpreadsheetIntent",
516
+ "com.apple.iWork.Numbers.TNiOSOpenAnyDocumentIntent",
517
+ "com.apple.iWork.Numbers.TSADocumentCreateIntent",
518
+ "com.apple.iWork.Numbers.TSADocumentOpenIntent",
519
+ "com.apple.iWork.Pages.TPDocumentBackgroundExportIntent",
520
+ "com.apple.iWork.Pages.TPDocumentBeginPresenterModeIntent",
521
+ "com.apple.iWork.Pages.TPNewDocumentIntent",
522
+ "com.apple.iWork.Pages.TPiOSOpenAnyDocumentIntent",
523
+ "com.apple.iWork.Pages.TSADocumentCreateIntent",
524
+ "com.apple.iWork.Pages.TSADocumentOpenIntent",
525
+ "com.apple.intelligenceflow.IntelligenceFlowAppIntentsExtension.OpenApplication",
526
+ "com.apple.intelligenceflow.IntelligenceFlowAppIntentsExtension.OpenFile",
527
+ "com.apple.intelligenceflow.IntelligenceFlowAppIntentsExtension.OpenURL",
528
+ "com.apple.intelligenceplatform.IntelligencePlatform.IntelligencePlatformDataActionsAppIntentsExtension.CalculateAppUsageIntent",
529
+ "com.apple.intelligenceplatform.IntelligencePlatform.IntelligencePlatformDataActionsAppIntentsExtension.FindSportsEvents",
530
+ "com.apple.intelligenceplatformd.PersonalKnowledgeTool",
531
+ "com.apple.journal.AddCurrentLocationEntity",
532
+ "com.apple.journal.AddCurrentLocationEntity-UpdatableEntity",
533
+ "com.apple.journal.AddCurrentLocationIntent",
534
+ "com.apple.journal.AlwaysUseMomentDateEntity",
535
+ "com.apple.journal.AlwaysUseMomentDateEntity-UpdatableEntity",
536
+ "com.apple.journal.AlwaysUseMomentDateIntent",
537
+ "com.apple.journal.CreateEntryAudioIntent",
538
+ "com.apple.journal.CreateEntryIntent",
539
+ "com.apple.journal.OpenEntryEntityIntent",
540
+ "com.apple.journal.OpenJournalSettingsDeeplinks",
541
+ "com.apple.journal.RefreshIntent",
542
+ "com.apple.journal.SaveToPhotosEntity",
543
+ "com.apple.journal.SaveToPhotosEntity-UpdatableEntity",
544
+ "com.apple.journal.SaveToPhotosIntent",
545
+ "com.apple.journal.SearchEntriesIntent",
546
+ "com.apple.journal.SkipJournalingSuggestionsEntity",
547
+ "com.apple.journal.SkipJournalingSuggestionsEntity-UpdatableEntity",
548
+ "com.apple.journal.SkipJournalingSuggestionsIntent",
549
+ "com.apple.journal.StreaksWidgetConfigurationIntent",
550
+ "com.apple.mail.ArchiveMessageIntent",
551
+ "com.apple.mail.BlockSenderIntent",
552
+ "com.apple.mail.CancelDraftIntent",
553
+ "com.apple.mail.ComposeMessageIntent",
554
+ "com.apple.mail.DeleteDraftIntent",
555
+ "com.apple.mail.DeleteMessageIntent",
556
+ "com.apple.mail.DeleteReadLaterIntent",
557
+ "com.apple.mail.ForwardMessageIntent",
558
+ "com.apple.mail.MailFocusConfigurationAction",
559
+ "com.apple.mail.MailMessage",
560
+ "com.apple.mail.MailMessageEntity",
561
+ "com.apple.mail.MuteThreadIntent",
562
+ "com.apple.mail.OpenDraftIntent",
563
+ "com.apple.mail.OpenDraftURLIntent",
564
+ "com.apple.mail.OpenMessageURLIntent",
565
+ "com.apple.mail.RemoveFollowUpIntent",
566
+ "com.apple.mail.ReplyMessageIntent",
567
+ "com.apple.mail.SaveDraftIntent",
568
+ "com.apple.mail.SearchMailIntent",
569
+ "com.apple.mail.SendDraftIntent",
570
+ "com.apple.mail.SendMail",
571
+ "com.apple.mail.SetMailMessageIsRead",
572
+ "com.apple.mail.SetReadLaterIntent",
573
+ "com.apple.mail.SummarizeThreadIntent",
574
+ "com.apple.mail.UndoSendMessageIntent",
575
+ "com.apple.mail.UnsubscribeMessageIntent",
576
+ "com.apple.mail.UpdateDraftIntent",
577
+ "com.apple.mail.UpdateMessageIntent",
578
+ "com.apple.mobilenotes.SharingExtension",
579
+ "com.apple.mobilephone.call",
580
+ "com.apple.mobileslideshow.StreamShareService",
581
+ "com.apple.mobiletimer-framework.MobileTimerIntents.MTCreateAlarmIntent",
582
+ "com.apple.mobiletimer-framework.MobileTimerIntents.MTGetAlarmsIntent",
583
+ "com.apple.mobiletimer-framework.MobileTimerIntents.MTToggleAlarmIntent",
584
+ "com.apple.musicrecognition.RecognizeMusicIntent",
585
+ "com.apple.news.BlockIntent",
586
+ "com.apple.news.DecreaseTextSizeIntent",
587
+ "com.apple.news.FollowIntent",
588
+ "com.apple.news.GameCenterEntity",
589
+ "com.apple.news.GameCenterEntity-UpdatableEntity",
590
+ "com.apple.news.INPlayMediaIntent",
591
+ "com.apple.news.IncreaseTextSizeIntent",
592
+ "com.apple.news.NewsSettingsAutomaticDownloadDynamicDeepLinks",
593
+ "com.apple.news.NewsSettingsDynamicDeepLinks",
594
+ "com.apple.news.NewsTabDeepLink",
595
+ "com.apple.news.OpenArticleIntent",
596
+ "com.apple.news.OpenFeedIntent",
597
+ "com.apple.news.OpenHistoryIntent",
598
+ "com.apple.news.OpenRecipeIntent",
599
+ "com.apple.news.OpenSavedIntent",
600
+ "com.apple.news.OpenSavedRecipesIntent",
601
+ "com.apple.news.OpenStaticFeed",
602
+ "com.apple.news.RestrictStoriesInTodaySettingEntity",
603
+ "com.apple.news.RestrictStoriesInTodaySettingEntity-UpdatableEntity",
604
+ "com.apple.news.SaveArticleIntent",
605
+ "com.apple.news.TagIntent",
606
+ "com.apple.news.TodayIntent",
607
+ "com.apple.news.ToggleAudioPlaybackIntent",
608
+ "com.apple.news.UnblockIntent",
609
+ "com.apple.news.UnsaveArticleIntent",
610
+ "com.apple.news.WFAppSettingEntityUpdaterAction",
611
+ "com.apple.news.WFGetAppSettingAction",
612
+ "com.apple.omniSearch.SearchToolExtension.OpenFlightReservationEntityIntent",
613
+ "com.apple.omniSearch.SearchToolExtension.OpenGenericEventEntityIntent",
614
+ "com.apple.omniSearch.SearchToolExtension.OpenHotelReservationEntityIntent",
615
+ "com.apple.omniSearch.SearchToolExtension.OpenIDCardBusinessEntityIntent",
616
+ "com.apple.omniSearch.SearchToolExtension.OpenIDCardPersonalEntityIntent",
617
+ "com.apple.omniSearch.SearchToolExtension.OpenMediaEntityIntent",
618
+ "com.apple.omniSearch.SearchToolExtension.OpenRestaurantReservationEntityIntent",
619
+ "com.apple.omniSearch.SearchToolExtension.OpenSearchSpotlightEntityIntent",
620
+ "com.apple.omniSearch.SearchToolExtension.OpenTicketedShowEntityIntent",
621
+ "com.apple.omniSearch.SearchToolExtension.OpenTicketedTransportationEntityIntent",
622
+ "com.apple.omniSearch.SearchToolExtension.OpenVehicleReservationEntityIntent",
623
+ "com.apple.omniSearch.SearchToolExtension.SearchTool",
624
+ "com.apple.omniSearch.SearchToolExtension.SearchToolControl",
625
+ "com.apple.omniSearch.SearchToolExtension.SearchToolMCGrounding",
626
+ "com.apple.omniSearch.SearchToolExtension.SearchToolMCQU",
627
+ "com.apple.podcasts.DownloadEpisodesAppIntent",
628
+ "com.apple.podcasts.FetchShowLatestEpisodesAppIntent",
629
+ "com.apple.podcasts.FollowRSSFeedAppIntent",
630
+ "com.apple.podcasts.FollowShowAppIntent",
631
+ "com.apple.podcasts.MarkEpisodeAsPlayedAppIntent",
632
+ "com.apple.podcasts.MarkEpisodeAsUnplayedAppIntent",
633
+ "com.apple.podcasts.OpenAppLocationAppIntent",
634
+ "com.apple.podcasts.OpenChannelAppIntent",
635
+ "com.apple.podcasts.OpenEpisodeAppIntent",
636
+ "com.apple.podcasts.OpenShowAppIntent",
637
+ "com.apple.podcasts.PlayAudioIntent",
638
+ "com.apple.podcasts.PlayEpisodeAppIntent",
639
+ "com.apple.podcasts.PlayEpisodeLastAppIntent",
640
+ "com.apple.podcasts.PlayEpisodeNextAppIntent",
641
+ "com.apple.podcasts.PlayNextChapterAppIntent",
642
+ "com.apple.podcasts.PlayPauseStationAppIntent",
643
+ "com.apple.podcasts.PlayPauseWidgetIntent",
644
+ "com.apple.podcasts.PlayPreviousChapterAppIntent",
645
+ "com.apple.podcasts.PlayStationAppIntent",
646
+ "com.apple.podcasts.RemoveEpisodesDownloadAppIntent",
647
+ "com.apple.podcasts.SaveEpisodeAppIntent",
648
+ "com.apple.podcasts.SearchPodcastsAppIntent",
649
+ "com.apple.podcasts.SelectLibraryListAppIntent",
650
+ "com.apple.podcasts.SelectWidgetShowAppIntent",
651
+ "com.apple.podcasts.UnfollowShowAppIntent",
652
+ "com.apple.podcasts.UnsaveEpisodeAppIntent",
653
+ "com.apple.podcasts.ViewTranscriptAppIntent",
654
+ "com.apple.printcenter.CancelPrintJob",
655
+ "com.apple.printcenter.LaunchPrintCenterAppIntent",
656
+ "com.apple.printcenter.PrintDocuments",
657
+ "com.apple.reminders.AddOrRemoveTagsAppIntent",
658
+ "com.apple.reminders.CompleteReminderAppIntent",
659
+ "com.apple.reminders.CompleteRemindersAppIntent",
660
+ "com.apple.reminders.CreateCustomSmartListAppIntent",
661
+ "com.apple.reminders.CreateGroupAppIntent",
662
+ "com.apple.reminders.CreateSectionAppIntent",
663
+ "com.apple.reminders.DeleteListsAppIntent",
664
+ "com.apple.reminders.DeleteRemindersAppIntent",
665
+ "com.apple.reminders.DeleteRemindersListGroupsAppIntent",
666
+ "com.apple.reminders.DeleteSectionsAppIntent",
667
+ "com.apple.reminders.GroupEntity-UpdatableEntity",
668
+ "com.apple.reminders.INAddTasksIntent",
669
+ "com.apple.reminders.INSetTaskAttributeIntent",
670
+ "com.apple.reminders.ListEntity-UpdatableEntity",
671
+ "com.apple.reminders.MoveRemindersAppIntent",
672
+ "com.apple.reminders.MoveRemindersToListAppIntent",
673
+ "com.apple.reminders.MoveRemindersToParentReminderAppIntent",
674
+ "com.apple.reminders.MoveRemindersToSectionAppIntent",
675
+ "com.apple.reminders.OpenGroupAppIntent",
676
+ "com.apple.reminders.OpenReminderAppIntent",
677
+ "com.apple.reminders.OpenSectionAppIntent",
678
+ "com.apple.reminders.OpenSmartListAppIntent",
679
+ "com.apple.reminders.OpenTagsAppIntent",
680
+ "com.apple.reminders.RemotePreferencesEntity",
681
+ "com.apple.reminders.SectionEntity-UpdatableEntity",
682
+ "com.apple.reminders.SmartListEntity",
683
+ "com.apple.reminders.TTRCreateListAppIntent",
684
+ "com.apple.reminders.TTRCreateReminderAppIntent",
685
+ "com.apple.reminders.TTROpenListAppIntent",
686
+ "com.apple.reminders.TTROpenSmartListAppIntent",
687
+ "com.apple.reminders.TTRReminderSetCompletedIntent",
688
+ "com.apple.reminders.TTRSearchRemindersAppIntent",
689
+ "com.apple.reminders.UpdateGroupAppIntent",
690
+ "com.apple.reminders.UpdateListAppIntent",
691
+ "com.apple.reminders.UpdateReminderAppIntent",
692
+ "com.apple.reminders.UpdateSectionAppIntent",
693
+ "com.apple.reminders.UpdateSmartListAppIntent",
694
+ "com.apple.reminders.UpdateSmartListIsHiddenAppIntent",
695
+ "com.apple.screenshot.launcher.CaptureScreenIntent",
696
+ "com.apple.screenshot.launcher.CaptureSelectionIntent",
697
+ "com.apple.screenshot.launcher.CustomCaptureConfiguration",
698
+ "com.apple.screenshot.launcher.CustomCaptureIntent",
699
+ "com.apple.screenshot.launcher.CustomRecordConfiguration",
700
+ "com.apple.screenshot.launcher.CustomRecordIntent",
701
+ "com.apple.screenshot.launcher.RecordScreenIntent",
702
+ "com.apple.screenshot.launcher.RecordSelectionIntent",
703
+ "com.apple.shortcuts.AddShortcutToHomeScreenAction",
704
+ "com.apple.shortcuts.ChangeShortcutIconAction",
705
+ "com.apple.shortcuts.CreateFolderAction",
706
+ "com.apple.shortcuts.CreateShortcutiCloudLinkAction",
707
+ "com.apple.shortcuts.CreateWorkflowAction",
708
+ "com.apple.shortcuts.DeleteWorkflowAction",
709
+ "com.apple.shortcuts.GetShortcutAttributesAction",
710
+ "com.apple.shortcuts.MoveShortcutToFolderAction",
711
+ "com.apple.shortcuts.OpenAppIntent",
712
+ "com.apple.shortcuts.OpenNavigationDestinationAction",
713
+ "com.apple.shortcuts.OpenShortcutsStaticDeepLinks",
714
+ "com.apple.shortcuts.OpenWorkflowAction",
715
+ "com.apple.shortcuts.RenameShortcutAction",
716
+ "com.apple.shortcuts.RunShortcutConfigurationIntent",
717
+ "com.apple.shortcuts.RunShortcutFromCollectionIntent",
718
+ "com.apple.shortcuts.RunShortcutIntent",
719
+ "com.apple.shortcuts.SearchActionDrawerAction",
720
+ "com.apple.shortcuts.SearchShortcutsAction",
721
+ "com.apple.shortcuts.SetShortcutAttributesAction",
722
+ "com.apple.shortcuts.ShortcutsFolderConfigurationIntent",
723
+ "com.apple.shortcuts.StopWorkflowAction",
724
+ "com.apple.siri.AssistantSettingsControls.AlwaysPrintSiriResponseEntity",
725
+ "com.apple.siri.AssistantSettingsControls.AlwaysPrintSiriResponseEntity-UpdatableEntity",
726
+ "com.apple.siri.AssistantSettingsControls.AlwaysShowSpeechEntity",
727
+ "com.apple.siri.AssistantSettingsControls.AlwaysShowSpeechEntity-UpdatableEntity",
728
+ "com.apple.siri.AssistantSettingsControls.AskSiriEntity",
729
+ "com.apple.siri.AssistantSettingsControls.KeyboardShortcutEntity",
730
+ "com.apple.siri.AssistantSettingsControls.OpenAlwaysPrintSiriResponseEntity",
731
+ "com.apple.siri.AssistantSettingsControls.OpenAlwaysShowSpeechEntity",
732
+ "com.apple.siri.AssistantSettingsControls.OpenAskSiriEntity",
733
+ "com.apple.siri.AssistantSettingsControls.OpenKeyboardShortcutEntity",
734
+ "com.apple.siri.AssistantSettingsControls.OpenSiriAndDictationHistoryEntity",
735
+ "com.apple.siri.AssistantSettingsControls.OpenSiriLanguageEntity",
736
+ "com.apple.siri.AssistantSettingsControls.OpenSiriSuggestionsAndPrivacyEntity",
737
+ "com.apple.siri.AssistantSettingsControls.OpenSiriSuggestionsAndPrivacyForAppEntity",
738
+ "com.apple.siri.AssistantSettingsControls.OpenSiriSuggestionsShowInAppEntity",
739
+ "com.apple.siri.AssistantSettingsControls.OpenSiriVoiceEntity",
740
+ "com.apple.siri.AssistantSettingsControls.OpenVoiceFeedbackToggleEntity",
741
+ "com.apple.siri.AssistantSettingsControls.SiriAndDictationHistoryEntity",
742
+ "com.apple.siri.AssistantSettingsControls.SiriLanguageEntity",
743
+ "com.apple.siri.AssistantSettingsControls.SiriSuggestionsAndPrivacyEntity",
744
+ "com.apple.siri.AssistantSettingsControls.SiriSuggestionsAndPrivacyForAppEntity",
745
+ "com.apple.siri.AssistantSettingsControls.SiriSuggestionsAndPrivacyForAppEntity-UpdatableEntity",
746
+ "com.apple.siri.AssistantSettingsControls.SiriSuggestionsShowInAppEntity",
747
+ "com.apple.siri.AssistantSettingsControls.SiriSuggestionsShowInAppEntity-UpdatableEntity",
748
+ "com.apple.siri.AssistantSettingsControls.SiriVoiceEntity",
749
+ "com.apple.siri.AssistantSettingsControls.VoiceFeedbackToggleEntity",
750
+ "com.apple.siri.AssistantSettingsControls.VoiceFeedbackToggleEntity-UpdatableEntity",
751
+ "com.apple.stocks.AddSymbolToWatchlistIntent",
752
+ "com.apple.stocks.BlockIntent",
753
+ "com.apple.stocks.DecreaseTextSizeIntent",
754
+ "com.apple.stocks.DeleteSymbolFromWatchlistIntent",
755
+ "com.apple.stocks.DeleteWatchlistsIntent",
756
+ "com.apple.stocks.FollowIntent",
757
+ "com.apple.stocks.GetSymbolQuoteIntent",
758
+ "com.apple.stocks.IncreaseTextSizeIntent",
759
+ "com.apple.stocks.NewWatchlistIntent",
760
+ "com.apple.stocks.NewsTabDeepLink",
761
+ "com.apple.stocks.OpenArticleIntent",
762
+ "com.apple.stocks.OpenBusinessNewsIntent",
763
+ "com.apple.stocks.OpenFeedIntent",
764
+ "com.apple.stocks.OpenHistoryIntent",
765
+ "com.apple.stocks.OpenRecipeIntent",
766
+ "com.apple.stocks.OpenSavedIntent",
767
+ "com.apple.stocks.OpenSavedRecipesIntent",
768
+ "com.apple.stocks.OpenStaticFeed",
769
+ "com.apple.stocks.OpenSymbolIntent",
770
+ "com.apple.stocks.OpenWatchlistIntent",
771
+ "com.apple.stocks.SaveArticleIntent",
772
+ "com.apple.stocks.StockIntent",
773
+ "com.apple.stocks.StocksOverviewIntent",
774
+ "com.apple.stocks.SymbolEntity",
775
+ "com.apple.stocks.SymbolWidgetEntity",
776
+ "com.apple.stocks.UnblockIntent",
777
+ "com.apple.stocks.UnsaveArticleIntent",
778
+ "com.apple.stocks.WatchlistEntity",
779
+ "com.apple.systempreferences.AccentColorEntity",
780
+ "com.apple.systempreferences.AccentColorEntity-UpdatableEntity",
781
+ "com.apple.systempreferences.AirDropEntity",
782
+ "com.apple.systempreferences.AirDropEntity-UpdatableEntity",
783
+ "com.apple.systempreferences.AirPlayIntent",
784
+ "com.apple.systempreferences.AirPlayReceiverIntent",
785
+ "com.apple.systempreferences.AirPlayRequiresPasswordIntent",
786
+ "com.apple.systempreferences.AllowWallPaperTintingEntity",
787
+ "com.apple.systempreferences.AllowWallPaperTintingEntity-UpdatableEntity",
788
+ "com.apple.systempreferences.AppearanceEntity",
789
+ "com.apple.systempreferences.AppearanceEntity-UpdatableEntity",
790
+ "com.apple.systempreferences.AppearanceSettingsDeepLink",
791
+ "com.apple.systempreferences.AppleAccountMainDynamicDeepLinks",
792
+ "com.apple.systempreferences.ApplicationNotificationsSettings",
793
+ "com.apple.systempreferences.ApplicationNotificationsSettings-UpdatableEntity",
794
+ "com.apple.systempreferences.AutoBrightnessEntity",
795
+ "com.apple.systempreferences.AutoBrightnessEntity-UpdatableEntity",
796
+ "com.apple.systempreferences.AutoDateTimeEntity",
797
+ "com.apple.systempreferences.AutoHideMenuBarOptionEntity",
798
+ "com.apple.systempreferences.AutoHideMenuBarOptionEntity-UpdatableEntity",
799
+ "com.apple.systempreferences.AutoLoginIntent",
800
+ "com.apple.systempreferences.AutoTimeZoneEntity",
801
+ "com.apple.systempreferences.AutomaticReconnectEntity",
802
+ "com.apple.systempreferences.AutomaticReconnectEntity-UpdatableEntity",
803
+ "com.apple.systempreferences.AvailableDisplaysEntity",
804
+ "com.apple.systempreferences.AxAdaptiveVoiceShortcutsEntity",
805
+ "com.apple.systempreferences.AxAdaptiveVoiceShortcutsEntity-UpdatableEntity",
806
+ "com.apple.systempreferences.AxAltMouseButtonsEntity",
807
+ "com.apple.systempreferences.AxAltMouseButtonsEntity-UpdatableEntity",
808
+ "com.apple.systempreferences.AxAltMouseEnableSoundsEntity",
809
+ "com.apple.systempreferences.AxAltMouseEnableSoundsEntity-UpdatableEntity",
810
+ "com.apple.systempreferences.AxAltMouseEnableVisualsEntity",
811
+ "com.apple.systempreferences.AxAltMouseEnableVisualsEntity-UpdatableEntity",
812
+ "com.apple.systempreferences.AxAnimatedImagesEntity",
813
+ "com.apple.systempreferences.AxAnimatedImagesEntity-UpdatableEntity",
814
+ "com.apple.systempreferences.AxBackgroundSoundsEntity",
815
+ "com.apple.systempreferences.AxBackgroundSoundsEntity-UpdatableEntity",
816
+ "com.apple.systempreferences.AxBackgroundSoundsLockScreenEntity",
817
+ "com.apple.systempreferences.AxBackgroundSoundsLockScreenEntity-UpdatableEntity",
818
+ "com.apple.systempreferences.AxCaptioningPreferSdhEntity",
819
+ "com.apple.systempreferences.AxCaptioningPreferSdhEntity-UpdatableEntity",
820
+ "com.apple.systempreferences.AxDifferentiateWithoutColorEntity",
821
+ "com.apple.systempreferences.AxDifferentiateWithoutColorEntity-UpdatableEntity",
822
+ "com.apple.systempreferences.AxDimFlashingEntity",
823
+ "com.apple.systempreferences.AxDimFlashingEntity-UpdatableEntity",
824
+ "com.apple.systempreferences.AxDisplayFilterEnabledEntity",
825
+ "com.apple.systempreferences.AxDisplayFilterEnabledEntity-UpdatableEntity",
826
+ "com.apple.systempreferences.AxDisplayFilterTypeEntity",
827
+ "com.apple.systempreferences.AxDisplayFilterTypeEntity-UpdatableEntity",
828
+ "com.apple.systempreferences.AxDwellActionEntity",
829
+ "com.apple.systempreferences.AxDwellActionEntity-UpdatableEntity",
830
+ "com.apple.systempreferences.AxDwellAutoRevertEntity",
831
+ "com.apple.systempreferences.AxDwellAutoRevertEntity-UpdatableEntity",
832
+ "com.apple.systempreferences.AxDwellCursorColorEntity",
833
+ "com.apple.systempreferences.AxDwellCursorColorEntity-UpdatableEntity",
834
+ "com.apple.systempreferences.AxDwellInMenuExtraEntity",
835
+ "com.apple.systempreferences.AxDwellInMenuExtraEntity-UpdatableEntity",
836
+ "com.apple.systempreferences.AxDwellInPanelsEntity",
837
+ "com.apple.systempreferences.AxDwellInPanelsEntity-UpdatableEntity",
838
+ "com.apple.systempreferences.AxDwellProgressIndicatorEntity",
839
+ "com.apple.systempreferences.AxDwellProgressIndicatorEntity-UpdatableEntity",
840
+ "com.apple.systempreferences.AxDwellZoomEntity",
841
+ "com.apple.systempreferences.AxDwellZoomEntity-UpdatableEntity",
842
+ "com.apple.systempreferences.AxFacetimeTranscriptionsEntity",
843
+ "com.apple.systempreferences.AxFacetimeTranscriptionsEntity-UpdatableEntity",
844
+ "com.apple.systempreferences.AxFeatureLivespeechEntity",
845
+ "com.apple.systempreferences.AxFeatureLivespeechEntity-UpdatableEntity",
846
+ "com.apple.systempreferences.AxFeatureSwitchcontrolEntity",
847
+ "com.apple.systempreferences.AxFeatureSwitchcontrolEntity-UpdatableEntity",
848
+ "com.apple.systempreferences.AxFeatureVoicecontrolEntity",
849
+ "com.apple.systempreferences.AxFeatureVoicecontrolEntity-UpdatableEntity",
850
+ "com.apple.systempreferences.AxFeatureVoiceoverEntity",
851
+ "com.apple.systempreferences.AxFeatureVoiceoverEntity-UpdatableEntity",
852
+ "com.apple.systempreferences.AxFeatureZoomEntity",
853
+ "com.apple.systempreferences.AxFeatureZoomEntity-UpdatableEntity",
854
+ "com.apple.systempreferences.AxFindCursorEntity",
855
+ "com.apple.systempreferences.AxFindCursorEntity-UpdatableEntity",
856
+ "com.apple.systempreferences.AxFkaAutoHideCheckboxEntity",
857
+ "com.apple.systempreferences.AxFkaAutoHideCheckboxEntity-UpdatableEntity",
858
+ "com.apple.systempreferences.AxFkaEnableCheckboxEntity",
859
+ "com.apple.systempreferences.AxFkaEnableCheckboxEntity-UpdatableEntity",
860
+ "com.apple.systempreferences.AxFkaHighContrastCheckboxEntity",
861
+ "com.apple.systempreferences.AxFkaHighContrastCheckboxEntity-UpdatableEntity",
862
+ "com.apple.systempreferences.AxFkaIncreaseSizeCheckboxEntity",
863
+ "com.apple.systempreferences.AxFkaIncreaseSizeCheckboxEntity-UpdatableEntity",
864
+ "com.apple.systempreferences.AxFlashScreenEntity",
865
+ "com.apple.systempreferences.AxFlashScreenEntity-UpdatableEntity",
866
+ "com.apple.systempreferences.AxHeadMouseEntity",
867
+ "com.apple.systempreferences.AxHeadMouseEntity-UpdatableEntity",
868
+ "com.apple.systempreferences.AxHomePanelDwellActionsEntity",
869
+ "com.apple.systempreferences.AxHomePanelDwellActionsEntity-UpdatableEntity",
870
+ "com.apple.systempreferences.AxHotCornerBottomLeftEntity",
871
+ "com.apple.systempreferences.AxHotCornerBottomLeftEntity-UpdatableEntity",
872
+ "com.apple.systempreferences.AxHotCornerBottomRightEntity",
873
+ "com.apple.systempreferences.AxHotCornerBottomRightEntity-UpdatableEntity",
874
+ "com.apple.systempreferences.AxHotCornerMoveHomePanelEntity",
875
+ "com.apple.systempreferences.AxHotCornerMoveHomePanelEntity-UpdatableEntity",
876
+ "com.apple.systempreferences.AxHotCornerTopLeftEntity",
877
+ "com.apple.systempreferences.AxHotCornerTopLeftEntity-UpdatableEntity",
878
+ "com.apple.systempreferences.AxHotCornerTopRightEntity",
879
+ "com.apple.systempreferences.AxHotCornerTopRightEntity-UpdatableEntity",
880
+ "com.apple.systempreferences.AxHoverTextActivationLockModeEntity",
881
+ "com.apple.systempreferences.AxHoverTextActivationLockModeEntity-UpdatableEntity",
882
+ "com.apple.systempreferences.AxHoverTextEnableEntity",
883
+ "com.apple.systempreferences.AxHoverTextEnableEntity-UpdatableEntity",
884
+ "com.apple.systempreferences.AxHoverTextModifierEntity",
885
+ "com.apple.systempreferences.AxHoverTextModifierEntity-UpdatableEntity",
886
+ "com.apple.systempreferences.AxHoverTypingEnableEntity",
887
+ "com.apple.systempreferences.AxHoverTypingEnableEntity-UpdatableEntity",
888
+ "com.apple.systempreferences.AxHoverTypingEntryLocationEntity",
889
+ "com.apple.systempreferences.AxHoverTypingEntryLocationEntity-UpdatableEntity",
890
+ "com.apple.systempreferences.AxIgnoreTrackpadEntity",
891
+ "com.apple.systempreferences.AxIgnoreTrackpadEntity-UpdatableEntity",
892
+ "com.apple.systempreferences.AxIncreaseContrastEntity",
893
+ "com.apple.systempreferences.AxIncreaseContrastEntity-UpdatableEntity",
894
+ "com.apple.systempreferences.AxInvertColorEntity",
895
+ "com.apple.systempreferences.AxInvertColorEntity-UpdatableEntity",
896
+ "com.apple.systempreferences.AxInvertColorModeEntity",
897
+ "com.apple.systempreferences.AxInvertColorModeEntity-UpdatableEntity",
898
+ "com.apple.systempreferences.AxKbAppearanceTypeEntity",
899
+ "com.apple.systempreferences.AxKbAppearanceTypeEntity-UpdatableEntity",
900
+ "com.apple.systempreferences.AxKbAutoCapitalizationEntity",
901
+ "com.apple.systempreferences.AxKbAutoCapitalizationEntity-UpdatableEntity",
902
+ "com.apple.systempreferences.AxKbAutoSpacingEntity",
903
+ "com.apple.systempreferences.AxKbAutoSpacingEntity-UpdatableEntity",
904
+ "com.apple.systempreferences.AxKbHideEntity",
905
+ "com.apple.systempreferences.AxKbHideEntity-UpdatableEntity",
906
+ "com.apple.systempreferences.AxKbKeyAcceptedMouseEntity",
907
+ "com.apple.systempreferences.AxKbKeyAcceptedMouseEntity-UpdatableEntity",
908
+ "com.apple.systempreferences.AxKbRightClickEntity",
909
+ "com.apple.systempreferences.AxKbRightClickEntity-UpdatableEntity",
910
+ "com.apple.systempreferences.AxKbUseClickSoundsEntity",
911
+ "com.apple.systempreferences.AxKbUseClickSoundsEntity-UpdatableEntity",
912
+ "com.apple.systempreferences.AxMenubarDwellActionsEntity",
913
+ "com.apple.systempreferences.AxMenubarDwellActionsEntity-UpdatableEntity",
914
+ "com.apple.systempreferences.AxMonoAudioEntity",
915
+ "com.apple.systempreferences.AxMonoAudioEntity-UpdatableEntity",
916
+ "com.apple.systempreferences.AxMotionCuesEnabledEntity",
917
+ "com.apple.systempreferences.AxMotionCuesEnabledEntity-UpdatableEntity",
918
+ "com.apple.systempreferences.AxMouseKeysEntity",
919
+ "com.apple.systempreferences.AxMouseKeysEntity-UpdatableEntity",
920
+ "com.apple.systempreferences.AxMouseKeysIgnoreTrackpadEntity",
921
+ "com.apple.systempreferences.AxMouseKeysIgnoreTrackpadEntity-UpdatableEntity",
922
+ "com.apple.systempreferences.AxMouseKeysShortcutEntity",
923
+ "com.apple.systempreferences.AxMouseKeysShortcutEntity-UpdatableEntity",
924
+ "com.apple.systempreferences.AxMouseScrollBehaviorEntity",
925
+ "com.apple.systempreferences.AxMouseScrollBehaviorEntity-UpdatableEntity",
926
+ "com.apple.systempreferences.AxMouseScrollEntity",
927
+ "com.apple.systempreferences.AxMouseScrollEntity-UpdatableEntity",
928
+ "com.apple.systempreferences.AxPrefersHorizTextLayoutEntity",
929
+ "com.apple.systempreferences.AxPrefersHorizTextLayoutEntity-UpdatableEntity",
930
+ "com.apple.systempreferences.AxReduceCursorModulationEntity",
931
+ "com.apple.systempreferences.AxReduceCursorModulationEntity-UpdatableEntity",
932
+ "com.apple.systempreferences.AxReduceMotionEntity",
933
+ "com.apple.systempreferences.AxReduceMotionEntity-UpdatableEntity",
934
+ "com.apple.systempreferences.AxReduceTransparencyEntity",
935
+ "com.apple.systempreferences.AxReduceTransparencyEntity-UpdatableEntity",
936
+ "com.apple.systempreferences.AxRttEnableEntity",
937
+ "com.apple.systempreferences.AxRttEnableEntity-UpdatableEntity",
938
+ "com.apple.systempreferences.AxRttSendImmediatelyEntity",
939
+ "com.apple.systempreferences.AxRttSendImmediatelyEntity-UpdatableEntity",
940
+ "com.apple.systempreferences.AxShowToolbarButtonShapesEntity",
941
+ "com.apple.systempreferences.AxShowToolbarButtonShapesEntity-UpdatableEntity",
942
+ "com.apple.systempreferences.AxShowWindowTitlebarIconsEntity",
943
+ "com.apple.systempreferences.AxShowWindowTitlebarIconsEntity-UpdatableEntity",
944
+ "com.apple.systempreferences.AxSiriAtypicalSpeechEntity",
945
+ "com.apple.systempreferences.AxSiriAtypicalSpeechEntity-UpdatableEntity",
946
+ "com.apple.systempreferences.AxSlowKeysEntity",
947
+ "com.apple.systempreferences.AxSlowKeysEntity-UpdatableEntity",
948
+ "com.apple.systempreferences.AxSlowKeysSoundEntity",
949
+ "com.apple.systempreferences.AxSlowKeysSoundEntity-UpdatableEntity",
950
+ "com.apple.systempreferences.AxSpatialAudioFollowsHeadEntity",
951
+ "com.apple.systempreferences.AxSpatialAudioFollowsHeadEntity-UpdatableEntity",
952
+ "com.apple.systempreferences.AxSpokenAlertsEntity",
953
+ "com.apple.systempreferences.AxSpokenAlertsEntity-UpdatableEntity",
954
+ "com.apple.systempreferences.AxSpokenDetectLanguagesEntity",
955
+ "com.apple.systempreferences.AxSpokenDetectLanguagesEntity-UpdatableEntity",
956
+ "com.apple.systempreferences.AxSpokenHotkeyEntity",
957
+ "com.apple.systempreferences.AxSpokenHotkeyEntity-UpdatableEntity",
958
+ "com.apple.systempreferences.AxSpokenPointerElementEntity",
959
+ "com.apple.systempreferences.AxSpokenPointerElementEntity-UpdatableEntity",
960
+ "com.apple.systempreferences.AxSpokenPointerElementModeEntity",
961
+ "com.apple.systempreferences.AxSpokenPointerElementModeEntity-UpdatableEntity",
962
+ "com.apple.systempreferences.AxSpokenPointerElementVerbosityEntity",
963
+ "com.apple.systempreferences.AxSpokenPointerElementVerbosityEntity-UpdatableEntity",
964
+ "com.apple.systempreferences.AxSpokenPronunciationsEntity",
965
+ "com.apple.systempreferences.AxSpokenPronunciationsEntity-UpdatableEntity",
966
+ "com.apple.systempreferences.AxSpokenSelectionHighlightContentEntity",
967
+ "com.apple.systempreferences.AxSpokenSelectionHighlightContentEntity-UpdatableEntity",
968
+ "com.apple.systempreferences.AxSpokenSelectionHighlightSentenceColorEntity",
969
+ "com.apple.systempreferences.AxSpokenSelectionHighlightSentenceColorEntity-UpdatableEntity",
970
+ "com.apple.systempreferences.AxSpokenSelectionHighlightSentenceStyleEntity",
971
+ "com.apple.systempreferences.AxSpokenSelectionHighlightSentenceStyleEntity-UpdatableEntity",
972
+ "com.apple.systempreferences.AxSpokenSelectionHighlightWordColorEntity",
973
+ "com.apple.systempreferences.AxSpokenSelectionHighlightWordColorEntity-UpdatableEntity",
974
+ "com.apple.systempreferences.AxSpokenSelectionShowControllerEntity",
975
+ "com.apple.systempreferences.AxSpokenSelectionShowControllerEntity-UpdatableEntity",
976
+ "com.apple.systempreferences.AxSpokenTypingEchoCharsEntity",
977
+ "com.apple.systempreferences.AxSpokenTypingEchoCharsEntity-UpdatableEntity",
978
+ "com.apple.systempreferences.AxSpokenTypingEchoEntity",
979
+ "com.apple.systempreferences.AxSpokenTypingEchoEntity-UpdatableEntity",
980
+ "com.apple.systempreferences.AxSpokenTypingEchoModifierKeysEntity",
981
+ "com.apple.systempreferences.AxSpokenTypingEchoModifierKeysEntity-UpdatableEntity",
982
+ "com.apple.systempreferences.AxSpokenTypingEchoSelectionEntity",
983
+ "com.apple.systempreferences.AxSpokenTypingEchoSelectionEntity-UpdatableEntity",
984
+ "com.apple.systempreferences.AxSpokenTypingEchoWordsEntity",
985
+ "com.apple.systempreferences.AxSpokenTypingEchoWordsEntity-UpdatableEntity",
986
+ "com.apple.systempreferences.AxSpringLoadingEntity",
987
+ "com.apple.systempreferences.AxSpringLoadingEntity-UpdatableEntity",
988
+ "com.apple.systempreferences.AxStickyKeysBeepEntity",
989
+ "com.apple.systempreferences.AxStickyKeysBeepEntity-UpdatableEntity",
990
+ "com.apple.systempreferences.AxStickyKeysDisplayEntity",
991
+ "com.apple.systempreferences.AxStickyKeysDisplayEntity-UpdatableEntity",
992
+ "com.apple.systempreferences.AxStickyKeysDisplayLocationEntity",
993
+ "com.apple.systempreferences.AxStickyKeysDisplayLocationEntity-UpdatableEntity",
994
+ "com.apple.systempreferences.AxStickyKeysEntity",
995
+ "com.apple.systempreferences.AxStickyKeysEntity-UpdatableEntity",
996
+ "com.apple.systempreferences.AxStickyKeysShortcutEntity",
997
+ "com.apple.systempreferences.AxStickyKeysShortcutEntity-UpdatableEntity",
998
+ "com.apple.systempreferences.AxSwitchAutoCapitalizationEntity",
999
+ "com.apple.systempreferences.AxSwitchAutoCapitalizationEntity-UpdatableEntity",
1000
+ "com.apple.systempreferences.AxSwitchAutoSpacingEntity",
1001
+ "com.apple.systempreferences.AxSwitchAutoSpacingEntity-UpdatableEntity",
1002
+ "com.apple.systempreferences.AxSwitchAutoscanEntity",
1003
+ "com.apple.systempreferences.AxSwitchAutoscanEntity-UpdatableEntity",
1004
+ "com.apple.systempreferences.AxSwitchControlAppearanceTypeEntity",
1005
+ "com.apple.systempreferences.AxSwitchControlAppearanceTypeEntity-UpdatableEntity",
1006
+ "com.apple.systempreferences.AxSwitchCursorSizeEntity",
1007
+ "com.apple.systempreferences.AxSwitchCursorSizeEntity-UpdatableEntity",
1008
+ "com.apple.systempreferences.AxSwitchHideAfterDelayEntity",
1009
+ "com.apple.systempreferences.AxSwitchHideAfterDelayEntity-UpdatableEntity",
1010
+ "com.apple.systempreferences.AxSwitchHoverTextToolbarEntity",
1011
+ "com.apple.systempreferences.AxSwitchHoverTextToolbarEntity-UpdatableEntity",
1012
+ "com.apple.systempreferences.AxSwitchMouseCursorEdgeEntity",
1013
+ "com.apple.systempreferences.AxSwitchMouseCursorEdgeEntity-UpdatableEntity",
1014
+ "com.apple.systempreferences.AxSwitchMouseMoveStyleEntity",
1015
+ "com.apple.systempreferences.AxSwitchMouseMoveStyleEntity-UpdatableEntity",
1016
+ "com.apple.systempreferences.AxSwitchNavFeedbackEntity",
1017
+ "com.apple.systempreferences.AxSwitchNavFeedbackEntity-UpdatableEntity",
1018
+ "com.apple.systempreferences.AxSwitchResumeAutoScanningEntity",
1019
+ "com.apple.systempreferences.AxSwitchResumeAutoScanningEntity-UpdatableEntity",
1020
+ "com.apple.systempreferences.AxSwitchScanRestartEntity",
1021
+ "com.apple.systempreferences.AxSwitchScanRestartEntity-UpdatableEntity",
1022
+ "com.apple.systempreferences.AxSystemTranscriptionEnabledEntity",
1023
+ "com.apple.systempreferences.AxSystemTranscriptionEnabledEntity-UpdatableEntity",
1024
+ "com.apple.systempreferences.AxTouchBarZoomEnableEntity",
1025
+ "com.apple.systempreferences.AxTouchBarZoomEnableEntity-UpdatableEntity",
1026
+ "com.apple.systempreferences.AxTrackpadScrollBehaviorEntity",
1027
+ "com.apple.systempreferences.AxTrackpadScrollBehaviorEntity-UpdatableEntity",
1028
+ "com.apple.systempreferences.AxTrackpadScrollEntity",
1029
+ "com.apple.systempreferences.AxTrackpadScrollEntity-UpdatableEntity",
1030
+ "com.apple.systempreferences.AxTypeToSiriEnabledEntity",
1031
+ "com.apple.systempreferences.AxTypeToSiriEnabledEntity-UpdatableEntity",
1032
+ "com.apple.systempreferences.AxVideoDescriptionEntity",
1033
+ "com.apple.systempreferences.AxVideoDescriptionEntity-UpdatableEntity",
1034
+ "com.apple.systempreferences.AxVirtualKeyboardEntity",
1035
+ "com.apple.systempreferences.AxVirtualKeyboardEntity-UpdatableEntity",
1036
+ "com.apple.systempreferences.AxVoiceControlOverlayEntity",
1037
+ "com.apple.systempreferences.AxVoiceControlOverlayEntity-UpdatableEntity",
1038
+ "com.apple.systempreferences.AxVoiceControlOverlayFadingEnabledEntity",
1039
+ "com.apple.systempreferences.AxVoiceControlOverlayFadingEnabledEntity-UpdatableEntity",
1040
+ "com.apple.systempreferences.AxVoiceControlPlaySoundEnabledEntity",
1041
+ "com.apple.systempreferences.AxVoiceControlPlaySoundEnabledEntity-UpdatableEntity",
1042
+ "com.apple.systempreferences.AxVoiceControlShowHintsEnabledEntity",
1043
+ "com.apple.systempreferences.AxVoiceControlShowHintsEnabledEntity-UpdatableEntity",
1044
+ "com.apple.systempreferences.AxZoomDisableUniversalControlEntity",
1045
+ "com.apple.systempreferences.AxZoomDisableUniversalControlEntity-UpdatableEntity",
1046
+ "com.apple.systempreferences.AxZoomEnableGestureEntity",
1047
+ "com.apple.systempreferences.AxZoomEnableGestureEntity-UpdatableEntity",
1048
+ "com.apple.systempreferences.AxZoomEnableHotkeysEntity",
1049
+ "com.apple.systempreferences.AxZoomEnableHotkeysEntity-UpdatableEntity",
1050
+ "com.apple.systempreferences.AxZoomFlashEntity",
1051
+ "com.apple.systempreferences.AxZoomFlashEntity-UpdatableEntity",
1052
+ "com.apple.systempreferences.AxZoomFocusMovementEntity",
1053
+ "com.apple.systempreferences.AxZoomFocusMovementEntity-UpdatableEntity",
1054
+ "com.apple.systempreferences.AxZoomFollowFocusActivationEntity",
1055
+ "com.apple.systempreferences.AxZoomFollowFocusActivationEntity-UpdatableEntity",
1056
+ "com.apple.systempreferences.AxZoomFollowFocusModeEntity",
1057
+ "com.apple.systempreferences.AxZoomFollowFocusModeEntity-UpdatableEntity",
1058
+ "com.apple.systempreferences.AxZoomFreezePanningEntity",
1059
+ "com.apple.systempreferences.AxZoomFreezePanningEntity-UpdatableEntity",
1060
+ "com.apple.systempreferences.AxZoomIndividualDisplaysEntity",
1061
+ "com.apple.systempreferences.AxZoomIndividualDisplaysEntity-UpdatableEntity",
1062
+ "com.apple.systempreferences.AxZoomInvertEntity",
1063
+ "com.apple.systempreferences.AxZoomInvertEntity-UpdatableEntity",
1064
+ "com.apple.systempreferences.AxZoomKeepStationaryEntity",
1065
+ "com.apple.systempreferences.AxZoomKeepStationaryEntity-UpdatableEntity",
1066
+ "com.apple.systempreferences.AxZoomMonitorSelectionEntity",
1067
+ "com.apple.systempreferences.AxZoomMonitorSelectionEntity-UpdatableEntity",
1068
+ "com.apple.systempreferences.AxZoomMonitorSelectionTrackpadEntity",
1069
+ "com.apple.systempreferences.AxZoomMonitorSelectionTrackpadEntity-UpdatableEntity",
1070
+ "com.apple.systempreferences.AxZoomMoveEntity",
1071
+ "com.apple.systempreferences.AxZoomMoveEntity-UpdatableEntity",
1072
+ "com.apple.systempreferences.AxZoomResizeShortcutsEntity",
1073
+ "com.apple.systempreferences.AxZoomResizeShortcutsEntity-UpdatableEntity",
1074
+ "com.apple.systempreferences.AxZoomRestoreEntity",
1075
+ "com.apple.systempreferences.AxZoomRestoreEntity-UpdatableEntity",
1076
+ "com.apple.systempreferences.AxZoomSmoothEntity",
1077
+ "com.apple.systempreferences.AxZoomSmoothEntity-UpdatableEntity",
1078
+ "com.apple.systempreferences.AxZoomStylePopupEntity",
1079
+ "com.apple.systempreferences.AxZoomStylePopupEntity-UpdatableEntity",
1080
+ "com.apple.systempreferences.AxZoomTempDetachEntity",
1081
+ "com.apple.systempreferences.AxZoomTempDetachEntity-UpdatableEntity",
1082
+ "com.apple.systempreferences.AxZoomTempToggleEntity",
1083
+ "com.apple.systempreferences.AxZoomTempToggleEntity-UpdatableEntity",
1084
+ "com.apple.systempreferences.AxZoomToggleFsAndPipEntity",
1085
+ "com.apple.systempreferences.AxZoomToggleFsAndPipEntity-UpdatableEntity",
1086
+ "com.apple.systempreferences.AxZoomTrackpadEntity",
1087
+ "com.apple.systempreferences.AxZoomTrackpadEntity-UpdatableEntity",
1088
+ "com.apple.systempreferences.BackgroundLoginItemsIntent",
1089
+ "com.apple.systempreferences.BatteryHealthPaneDynamicDeepLinks",
1090
+ "com.apple.systempreferences.BatteryOptionsPaneDynamicDeepLinks",
1091
+ "com.apple.systempreferences.BatterySettingsPaneDynamicDeepLinks",
1092
+ "com.apple.systempreferences.BluetoothPowerEntity",
1093
+ "com.apple.systempreferences.BluetoothPowerEntity-UpdatableEntity",
1094
+ "com.apple.systempreferences.ChangeMouseTrackingSpeedIntent",
1095
+ "com.apple.systempreferences.ChangeTrackpadTrackingSpeedIntent",
1096
+ "com.apple.systempreferences.CheckForUpdatesIntent",
1097
+ "com.apple.systempreferences.ClassroomDynamicDeepLinks",
1098
+ "com.apple.systempreferences.ClickScrollBarToEntity",
1099
+ "com.apple.systempreferences.ClickScrollBarToEntity-UpdatableEntity",
1100
+ "com.apple.systempreferences.ClockOptionsEntity",
1101
+ "com.apple.systempreferences.ClockOptionsEntity-UpdatableEntity",
1102
+ "com.apple.systempreferences.ComputerNameEntity",
1103
+ "com.apple.systempreferences.ControlCenterModule-UpdatableEntity",
1104
+ "com.apple.systempreferences.CurrentUserIntent",
1105
+ "com.apple.systempreferences.CurrentlyConnectedVPN",
1106
+ "com.apple.systempreferences.CurrentlyConnectedVPN-UpdatableEntity",
1107
+ "com.apple.systempreferences.DateTimeEntity",
1108
+ "com.apple.systempreferences.DesktopSettingsEntity",
1109
+ "com.apple.systempreferences.DesktopSettingsEntity-UpdatableEntity",
1110
+ "com.apple.systempreferences.DeviceGraphicsEntity",
1111
+ "com.apple.systempreferences.DeviceMemoryEntity",
1112
+ "com.apple.systempreferences.DeviceModelNameEntity",
1113
+ "com.apple.systempreferences.DeviceOSInfoEntity",
1114
+ "com.apple.systempreferences.DeviceProcessorEntity",
1115
+ "com.apple.systempreferences.DeviceSSOIntent",
1116
+ "com.apple.systempreferences.DeviceSerialNumberEntity",
1117
+ "com.apple.systempreferences.DeviceStorageEntity",
1118
+ "com.apple.systempreferences.DockSettingsEntity",
1119
+ "com.apple.systempreferences.DockSettingsEntity-UpdatableEntity",
1120
+ "com.apple.systempreferences.DownloadUpdatesPreferenceEntity",
1121
+ "com.apple.systempreferences.DownloadUpdatesPreferenceEntity-UpdatableEntity",
1122
+ "com.apple.systempreferences.EnergySaverPaneDynamicDeepLinks",
1123
+ "com.apple.systempreferences.FamilyMemberDetailsDeepLink",
1124
+ "com.apple.systempreferences.FamilySettingsDeepLink",
1125
+ "com.apple.systempreferences.FamilySubscriptionsDeepLink",
1126
+ "com.apple.systempreferences.FirewallAllowDownloadedSignedEntity",
1127
+ "com.apple.systempreferences.FirewallAllowSignedEntity",
1128
+ "com.apple.systempreferences.FirewallStateEntity",
1129
+ "com.apple.systempreferences.FirewallStealthModeEntity",
1130
+ "com.apple.systempreferences.FullScreenSwipeEntity",
1131
+ "com.apple.systempreferences.FullScreenSwipeEntity-UpdatableEntity",
1132
+ "com.apple.systempreferences.GetStartupDiskIntent",
1133
+ "com.apple.systempreferences.GroupMembershipIntent",
1134
+ "com.apple.systempreferences.GuestIntent",
1135
+ "com.apple.systempreferences.GuestParentalControlStatusIntent",
1136
+ "com.apple.systempreferences.GuestSharedAccessStatusIntent",
1137
+ "com.apple.systempreferences.GuestStatusIntent",
1138
+ "com.apple.systempreferences.HandoffIntent",
1139
+ "com.apple.systempreferences.HighlightColorEntity",
1140
+ "com.apple.systempreferences.HighlightColorEntity-UpdatableEntity",
1141
+ "com.apple.systempreferences.HourFormatEntity",
1142
+ "com.apple.systempreferences.HourFormatEntity-UpdatableEntity",
1143
+ "com.apple.systempreferences.IdentifierIntent",
1144
+ "com.apple.systempreferences.InstallMacUpdatesPreferenceEntity",
1145
+ "com.apple.systempreferences.InstallMacUpdatesPreferenceEntity-UpdatableEntity",
1146
+ "com.apple.systempreferences.InstallSecurityUpdatesPreferenceEntity",
1147
+ "com.apple.systempreferences.InstallSecurityUpdatesPreferenceEntity-UpdatableEntity",
1148
+ "com.apple.systempreferences.KeyboardSettingsDeepLink",
1149
+ "com.apple.systempreferences.ListOfAccountsIntent",
1150
+ "com.apple.systempreferences.ListOfNetworkServersIntent",
1151
+ "com.apple.systempreferences.LockMessageIntent",
1152
+ "com.apple.systempreferences.LoginItemEntity",
1153
+ "com.apple.systempreferences.LoginWindowModeIntent",
1154
+ "com.apple.systempreferences.LoginWindowShowsButtonsIntent",
1155
+ "com.apple.systempreferences.MagicEdgeEntity",
1156
+ "com.apple.systempreferences.MagicEdgeEntity-UpdatableEntity",
1157
+ "com.apple.systempreferences.MissionControlEntity",
1158
+ "com.apple.systempreferences.MissionControlEntity-UpdatableEntity",
1159
+ "com.apple.systempreferences.MissionControlSettingsEntity",
1160
+ "com.apple.systempreferences.MissionControlSettingsEntity-UpdatableEntity",
1161
+ "com.apple.systempreferences.MouseSettingDeepLink",
1162
+ "com.apple.systempreferences.MouseTrackingSpeedEntity",
1163
+ "com.apple.systempreferences.MouseTrackingSpeedEntity-UpdatableEntity",
1164
+ "com.apple.systempreferences.NotificationCenterEntity",
1165
+ "com.apple.systempreferences.NotificationCenterEntity-UpdatableEntity",
1166
+ "com.apple.systempreferences.NotificationSummarizationEntity",
1167
+ "com.apple.systempreferences.OpenAboutSettingsStaticDeepLinks",
1168
+ "com.apple.systempreferences.OpenAccessibilityAudioDescriptionsStaticDeepLinks",
1169
+ "com.apple.systempreferences.OpenAccessibilityAudioStaticDeepLinks",
1170
+ "com.apple.systempreferences.OpenAccessibilityCaptionsStaticDeepLinks",
1171
+ "com.apple.systempreferences.OpenAccessibilityDisplayStaticDeepLinks",
1172
+ "com.apple.systempreferences.OpenAccessibilityHearingDevicesStaticDeepLinks",
1173
+ "com.apple.systempreferences.OpenAccessibilityHoverTextStaticDeepLinks",
1174
+ "com.apple.systempreferences.OpenAccessibilityKeyboardStaticDeepLinks",
1175
+ "com.apple.systempreferences.OpenAccessibilityLiveCaptionsStaticDeepLinks",
1176
+ "com.apple.systempreferences.OpenAccessibilityLiveSpeechStaticDeepLinks",
1177
+ "com.apple.systempreferences.OpenAccessibilityMotionStaticDeepLinks",
1178
+ "com.apple.systempreferences.OpenAccessibilityPersonalVoiceStaticDeepLinks",
1179
+ "com.apple.systempreferences.OpenAccessibilityPointerControlStaticDeepLinks",
1180
+ "com.apple.systempreferences.OpenAccessibilityRTTStaticDeepLinks",
1181
+ "com.apple.systempreferences.OpenAccessibilityRootStaticDeepLinks",
1182
+ "com.apple.systempreferences.OpenAccessibilityShortcutStaticDeepLinks",
1183
+ "com.apple.systempreferences.OpenAccessibilitySiriStaticDeepLinks",
1184
+ "com.apple.systempreferences.OpenAccessibilitySpokenContentStaticDeepLinks",
1185
+ "com.apple.systempreferences.OpenAccessibilitySwitchControlStaticDeepLinks",
1186
+ "com.apple.systempreferences.OpenAccessibilityVocalShortcutsStaticDeepLinks",
1187
+ "com.apple.systempreferences.OpenAccessibilityVoiceControlStaticDeepLinks",
1188
+ "com.apple.systempreferences.OpenAccessibilityVoiceOverStaticDeepLinks",
1189
+ "com.apple.systempreferences.OpenAccessibilityZoomStaticDeepLinks",
1190
+ "com.apple.systempreferences.OpenAirDropHandoffDeepLinks",
1191
+ "com.apple.systempreferences.OpenAppearanceSettingsDeepLink",
1192
+ "com.apple.systempreferences.OpenAppleAccountMainDeepLink",
1193
+ "com.apple.systempreferences.OpenApplicationNotificationsSettings",
1194
+ "com.apple.systempreferences.OpenAutoBrightnessEntityDeepLink",
1195
+ "com.apple.systempreferences.OpenAutomaticReconnectEntityDeepLink",
1196
+ "com.apple.systempreferences.OpenAutomaticallySetDateTimeSetting",
1197
+ "com.apple.systempreferences.OpenAutomaticallySetTimeZoneSetting",
1198
+ "com.apple.systempreferences.OpenBatteryHealthPaneDynamicDeepLinks",
1199
+ "com.apple.systempreferences.OpenBatteryOptionsPaneDynamicDeepLinks",
1200
+ "com.apple.systempreferences.OpenBatterySettingsPaneDynamicDeepLinks",
1201
+ "com.apple.systempreferences.OpenBiometricsAndPasswordSettingsEntityDeepLinks",
1202
+ "com.apple.systempreferences.OpenBluetoothPowerDeepLink",
1203
+ "com.apple.systempreferences.OpenBluetoothSettingsDeepLinks",
1204
+ "com.apple.systempreferences.OpenClassKitAppIntentsDeepLinks",
1205
+ "com.apple.systempreferences.OpenClassroomDynamicDeepLinks",
1206
+ "com.apple.systempreferences.OpenClockOptionsEntity",
1207
+ "com.apple.systempreferences.OpenConfiguredInternetAccountSettings",
1208
+ "com.apple.systempreferences.OpenControlCenterModule",
1209
+ "com.apple.systempreferences.OpenCurrentTimeZoneSetting",
1210
+ "com.apple.systempreferences.OpenDateTimeDeepLinks",
1211
+ "com.apple.systempreferences.OpenDesktopSettingsDeepLink",
1212
+ "com.apple.systempreferences.OpenDesktopSettingsEntity",
1213
+ "com.apple.systempreferences.OpenDeviceManagementStaticDeepLinks",
1214
+ "com.apple.systempreferences.OpenDisplaysSettingsDeepLinks",
1215
+ "com.apple.systempreferences.OpenDockSettingsEntity",
1216
+ "com.apple.systempreferences.OpenEnergySaverPaneDynamicDeepLinks",
1217
+ "com.apple.systempreferences.OpenFamilyMemberSettings",
1218
+ "com.apple.systempreferences.OpenFamilySettings",
1219
+ "com.apple.systempreferences.OpenFamilySetup",
1220
+ "com.apple.systempreferences.OpenFamilySubscriptions",
1221
+ "com.apple.systempreferences.OpenInternationalSettingsDeepLink",
1222
+ "com.apple.systempreferences.OpenInternetAccountsSettings",
1223
+ "com.apple.systempreferences.OpenKeyboardSettingsDeepLink",
1224
+ "com.apple.systempreferences.OpenLockScreenDeepLinks",
1225
+ "com.apple.systempreferences.OpenLoginItemsDeepLinks",
1226
+ "com.apple.systempreferences.OpenMagicEdgeEntityDeepLink",
1227
+ "com.apple.systempreferences.OpenMissionControlSettingsEntity",
1228
+ "com.apple.systempreferences.OpenMouseDeepLink",
1229
+ "com.apple.systempreferences.OpenNetworkSettingsDeepLinks",
1230
+ "com.apple.systempreferences.OpenNewDeviceOutreachStaticDeepLinks",
1231
+ "com.apple.systempreferences.OpenNotificationCenterEntity",
1232
+ "com.apple.systempreferences.OpenNotificationSummarizationEntity",
1233
+ "com.apple.systempreferences.OpenPrinterScannerDeepLinks",
1234
+ "com.apple.systempreferences.OpenPrivacySecurityDeepLinks",
1235
+ "com.apple.systempreferences.OpenSUSDeepLinks",
1236
+ "com.apple.systempreferences.OpenShareKeyboardEntityDeepLink",
1237
+ "com.apple.systempreferences.OpenSoundSettingsDeepLinks",
1238
+ "com.apple.systempreferences.OpenSoundSettingsFeedbackSoundEntity",
1239
+ "com.apple.systempreferences.OpenSoundSettingsInterfaceEffectsEntity",
1240
+ "com.apple.systempreferences.OpenSoundSettingsStartupSoundEntity",
1241
+ "com.apple.systempreferences.OpenSpotlightSettingsDeepLinks",
1242
+ "com.apple.systempreferences.OpenStartupDiskStaticDeepLinks",
1243
+ "com.apple.systempreferences.OpenStorageSettingsDeeplinks",
1244
+ "com.apple.systempreferences.OpenTheCurrentDateTimeSetting",
1245
+ "com.apple.systempreferences.OpenTimeMachineSettingsStaticDeepLinks",
1246
+ "com.apple.systempreferences.OpenTrackpadDeepLinks",
1247
+ "com.apple.systempreferences.OpenTransferResetDeepLinks",
1248
+ "com.apple.systempreferences.OpenTrueToneEntityDeepLink",
1249
+ "com.apple.systempreferences.OpenTwentyFourHourTimeSetting",
1250
+ "com.apple.systempreferences.OpenUsersGroupsDeepLinks",
1251
+ "com.apple.systempreferences.OpenVPNDeepLink",
1252
+ "com.apple.systempreferences.OpenWallpaperDeepLinks",
1253
+ "com.apple.systempreferences.OpenWidgetSettingsEntity",
1254
+ "com.apple.systempreferences.OpenWindowsSettingsEntity",
1255
+ "com.apple.systempreferences.PaperSizeEntity",
1256
+ "com.apple.systempreferences.PaperSizeEntity-UpdatableEntity",
1257
+ "com.apple.systempreferences.RecentDocumentsOptionEntity",
1258
+ "com.apple.systempreferences.RecentDocumentsOptionEntity-UpdatableEntity",
1259
+ "com.apple.systempreferences.RequirePasswordDelayIntent",
1260
+ "com.apple.systempreferences.ScreenSaverDelayEntity",
1261
+ "com.apple.systempreferences.ScreenSaverDelayEntity-UpdatableEntity",
1262
+ "com.apple.systempreferences.ScreenSaverNameIntent",
1263
+ "com.apple.systempreferences.ScrollDirectionEntity",
1264
+ "com.apple.systempreferences.ScrollDirectionEntity-UpdatableEntity",
1265
+ "com.apple.systempreferences.SecondaryClickEntity",
1266
+ "com.apple.systempreferences.SecondaryClickEntity-UpdatableEntity",
1267
+ "com.apple.systempreferences.SetupFamilyDeepLink",
1268
+ "com.apple.systempreferences.ShareKeyboardEntity",
1269
+ "com.apple.systempreferences.ShareKeyboardEntity-UpdatableEntity",
1270
+ "com.apple.systempreferences.SharingSettingsIntents.OpenSharingDeepLinks",
1271
+ "com.apple.systempreferences.SharingSettingsIntents.SharingIntents",
1272
+ "com.apple.systempreferences.ShowAsScreenSaverEntity",
1273
+ "com.apple.systempreferences.ShowAsScreenSaverEntity-UpdatableEntity",
1274
+ "com.apple.systempreferences.ShowAsWallpaperEntity",
1275
+ "com.apple.systempreferences.ShowAsWallpaperEntity-UpdatableEntity",
1276
+ "com.apple.systempreferences.ShowBatteryPercentageEntity",
1277
+ "com.apple.systempreferences.ShowBatteryPercentageEntity-UpdatableEntity",
1278
+ "com.apple.systempreferences.ShowLargeClockIntent",
1279
+ "com.apple.systempreferences.ShowMenuBarBackgroundEntity",
1280
+ "com.apple.systempreferences.ShowMenuBarBackgroundEntity-UpdatableEntity",
1281
+ "com.apple.systempreferences.ShowPasswordHintsIntent",
1282
+ "com.apple.systempreferences.ShowScreenSaverOnAllSpacesEntity",
1283
+ "com.apple.systempreferences.ShowScreenSaverOnAllSpacesEntity-UpdatableEntity",
1284
+ "com.apple.systempreferences.ShowScrollBarsEntity",
1285
+ "com.apple.systempreferences.ShowScrollBarsEntity-UpdatableEntity",
1286
+ "com.apple.systempreferences.ShowWallpaperOnAllSpacesEntity",
1287
+ "com.apple.systempreferences.ShowWallpaperOnAllSpacesEntity-UpdatableEntity",
1288
+ "com.apple.systempreferences.SidebarIconSizeEntity",
1289
+ "com.apple.systempreferences.SidebarIconSizeEntity-UpdatableEntity",
1290
+ "com.apple.systempreferences.SmartZoomEntity",
1291
+ "com.apple.systempreferences.SmartZoomEntity-UpdatableEntity",
1292
+ "com.apple.systempreferences.SoundSettingsFeedbackSoundEntity",
1293
+ "com.apple.systempreferences.SoundSettingsFeedbackSoundEntity-UpdatableEntity",
1294
+ "com.apple.systempreferences.SoundSettingsInterfaceEffectsEntity",
1295
+ "com.apple.systempreferences.SoundSettingsInterfaceEffectsEntity-UpdatableEntity",
1296
+ "com.apple.systempreferences.SoundSettingsStartupSoundEntity",
1297
+ "com.apple.systempreferences.SoundSettingsStartupSoundEntity-UpdatableEntity",
1298
+ "com.apple.systempreferences.SpotlightSettingsDeepLinks",
1299
+ "com.apple.systempreferences.StorageSettingsDeeplinks",
1300
+ "com.apple.systempreferences.SwipeBetweenPagesEntity",
1301
+ "com.apple.systempreferences.SwipeBetweenPagesEntity-UpdatableEntity",
1302
+ "com.apple.systempreferences.TimeZoneEntity",
1303
+ "com.apple.systempreferences.ToggleHighPowerModeBatteryNoBatteryIntent",
1304
+ "com.apple.systempreferences.ToggleHighPowerModeOnBatteryIntent",
1305
+ "com.apple.systempreferences.ToggleLowPowerModeIntent",
1306
+ "com.apple.systempreferences.TrackpadAppExposeEntity",
1307
+ "com.apple.systempreferences.TrackpadAppExposeEntity-UpdatableEntity",
1308
+ "com.apple.systempreferences.TrackpadClickPressureEntity",
1309
+ "com.apple.systempreferences.TrackpadClickPressureEntity-UpdatableEntity",
1310
+ "com.apple.systempreferences.TrackpadForceClickEntity",
1311
+ "com.apple.systempreferences.TrackpadForceClickEntity-UpdatableEntity",
1312
+ "com.apple.systempreferences.TrackpadLaunchpadEntity",
1313
+ "com.apple.systempreferences.TrackpadLaunchpadEntity-UpdatableEntity",
1314
+ "com.apple.systempreferences.TrackpadLookUpAndDataDetectorsEntity",
1315
+ "com.apple.systempreferences.TrackpadLookUpAndDataDetectorsEntity-UpdatableEntity",
1316
+ "com.apple.systempreferences.TrackpadMissionControlEntity",
1317
+ "com.apple.systempreferences.TrackpadMissionControlEntity-UpdatableEntity",
1318
+ "com.apple.systempreferences.TrackpadNotificiationCenterEntity",
1319
+ "com.apple.systempreferences.TrackpadNotificiationCenterEntity-UpdatableEntity",
1320
+ "com.apple.systempreferences.TrackpadQuietClickEntity",
1321
+ "com.apple.systempreferences.TrackpadQuietClickEntity-UpdatableEntity",
1322
+ "com.apple.systempreferences.TrackpadRotateEntity",
1323
+ "com.apple.systempreferences.TrackpadRotateEntity-UpdatableEntity",
1324
+ "com.apple.systempreferences.TrackpadSecondaryClickEntity",
1325
+ "com.apple.systempreferences.TrackpadSecondaryClickEntity-UpdatableEntity",
1326
+ "com.apple.systempreferences.TrackpadSettingDeepLink",
1327
+ "com.apple.systempreferences.TrackpadShowDesktopEntity",
1328
+ "com.apple.systempreferences.TrackpadShowDesktopEntity-UpdatableEntity",
1329
+ "com.apple.systempreferences.TrackpadSmartZoomEntity",
1330
+ "com.apple.systempreferences.TrackpadSmartZoomEntity-UpdatableEntity",
1331
+ "com.apple.systempreferences.TrackpadSwipeBetweenAppsEntity",
1332
+ "com.apple.systempreferences.TrackpadSwipeBetweenAppsEntity-UpdatableEntity",
1333
+ "com.apple.systempreferences.TrackpadSwipeBetweenPagesEntity",
1334
+ "com.apple.systempreferences.TrackpadSwipeBetweenPagesEntity-UpdatableEntity",
1335
+ "com.apple.systempreferences.TrackpadTapToClickEntity",
1336
+ "com.apple.systempreferences.TrackpadTapToClickEntity-UpdatableEntity",
1337
+ "com.apple.systempreferences.TrackpadTrackingSpeedEntity",
1338
+ "com.apple.systempreferences.TrackpadTrackingSpeedEntity-UpdatableEntity",
1339
+ "com.apple.systempreferences.TrackpadZoomInOutEntity",
1340
+ "com.apple.systempreferences.TrackpadZoomInOutEntity-UpdatableEntity",
1341
+ "com.apple.systempreferences.TrueToneEntity",
1342
+ "com.apple.systempreferences.TrueToneEntity-UpdatableEntity",
1343
+ "com.apple.systempreferences.UserGroupIntent",
1344
+ "com.apple.systempreferences.UserHomeFolderIntent",
1345
+ "com.apple.systempreferences.UserIsAdminIntent",
1346
+ "com.apple.systempreferences.UserLoginItemsIntent",
1347
+ "com.apple.systempreferences.UserSSOIntent",
1348
+ "com.apple.systempreferences.UserSwitcherMenuStyleEntity",
1349
+ "com.apple.systempreferences.UserSwitcherMenuStyleEntity-UpdatableEntity",
1350
+ "com.apple.systempreferences.VPNConfigurationEntity-UpdatableEntity",
1351
+ "com.apple.systempreferences.WidgetSettingsEntity",
1352
+ "com.apple.systempreferences.WidgetSettingsEntity-UpdatableEntity",
1353
+ "com.apple.systempreferences.WindowsSettingsEntity",
1354
+ "com.apple.systempreferences.WindowsSettingsEntity-UpdatableEntity",
1355
+ "com.apple.wallpaper.agent.SetWallpaperIntent",
1356
+ "com.apple.wallpaper.agent.SetWallpaperPhotoIntent",
1357
+ "com.apple.wallpaper.agent.SkipShuffledContentAction",
1358
+ "com.apple.wallpaper.agent.WallpaperEntity",
1359
+ "com.apple.weather.AddSavedLocationIntent",
1360
+ "com.apple.weather.LocationEntity",
1361
+ "com.apple.weather.LocationSearchEntity",
1362
+ "com.apple.weather.OpenMoonIntent",
1363
+ "com.apple.weather.OpenNotificationsConfigurationIntent",
1364
+ "com.apple.weather.OpenSunriseSunsetIntent",
1365
+ "com.apple.weather.OpenUnitsConfigurationIntent",
1366
+ "com.apple.weather.OpenWeatherAirQualityIntent",
1367
+ "com.apple.weather.OpenWeatherSpecificConditionIntent",
1368
+ "com.apple.weather.PreferredUnitsEntity",
1369
+ "com.apple.weather.RemoveSavedLocationIntent",
1370
+ "com.apple.weather.ResetUnitsIntent",
1371
+ "com.apple.weather.SetDistanceUnitIntent",
1372
+ "com.apple.weather.SetPrecipitationUnitIntent",
1373
+ "com.apple.weather.SetPressureUnitIntent",
1374
+ "com.apple.weather.SetTemperatureUnitIntent",
1375
+ "com.apple.weather.SetWindUnitIntent",
1376
+ "com.apple.weather.WeatherIntent",
1377
+ "com.blackfoggames.Schemes.schemes",
1378
+ "com.blackfoggames.TextTool.transform",
1379
+ "com.boonbits.captio.appendtonote",
1380
+ "com.boonbits.captio.sendnote",
1381
+ "com.culturedcode.ThingsTouch.addtask",
1382
+ "com.dayonelog.dayoneiphone.post",
1383
+ "com.flexibits.fantastical2.addevent",
1384
+ "com.flexibits.fantastical2.addreminder",
1385
+ "com.flexibits.fantastical2.showinfantastical",
1386
+ "com.google.chrome.ios.openurl",
1387
+ "com.guidedways.2Do.add",
1388
+ "com.omnigroup.OmniFocus2.iPhone.newitem",
1389
+ "com.omnigroup.OmniFocus2.iPhone.pastetaskpaper",
1390
+ "com.omz-software.Editorial.runworkflow",
1391
+ "com.omz-software.Pythonista.editscript",
1392
+ "com.omz-software.Pythonista.runscript",
1393
+ "com.outerspaceapps.itranslate.translate",
1394
+ "com.panic.iOS.Transmit.Share",
1395
+ "com.phocusllp.due.add",
1396
+ "com.potionfactory.TheHitListMobile.tasks",
1397
+ "com.realmacsoftware.clear.createlist",
1398
+ "com.realmacsoftware.clear.createtask",
1399
+ "com.skype.skype.call",
1400
+ "com.soulmen.ulysses.pad.attach",
1401
+ "com.soulmen.ulysses.pad.insert",
1402
+ "com.soulmen.ulysses.pad.new-group",
1403
+ "com.soulmen.ulysses.pad.new-sheet",
1404
+ "com.soulmen.ulysses.pad.open",
1405
+ "com.soulmen.ulysses.pad.read-sheet",
1406
+ "com.squibner.Blink.convert",
1407
+ "com.squibner.Blink.search",
1408
+ "com.tapbots.Tweetbot.opentweetbot",
1409
+ "com.tapbots.Tweetbot.searchtext",
1410
+ "com.tapbots.Tweetbot.tweet",
1411
+ "com.tapbots.Tweetbot.viewprofile",
1412
+ "com.tijo.opener.Opener.show-options",
1413
+ "desktop.WhatsApp.openin",
1414
+ "fm.overcast.overcast.add",
1415
+ "io.tailscale.ipn.macsys.ConnectIntent",
1416
+ "io.tailscale.ipn.macsys.DeviceAppEntity",
1417
+ "io.tailscale.ipn.macsys.DisconnectIntent",
1418
+ "io.tailscale.ipn.macsys.GetStatusIntent",
1419
+ "io.tailscale.ipn.macsys.PingAppIntent",
1420
+ "io.tailscale.ipn.macsys.ProfileAppEntity",
1421
+ "io.tailscale.ipn.macsys.SetDNSAppIntent",
1422
+ "io.tailscale.ipn.macsys.StopUsingExitNodeIntent",
1423
+ "io.tailscale.ipn.macsys.SwitchProfileIntent",
1424
+ "io.tailscale.ipn.macsys.TaildropAppIntent",
1425
+ "io.tailscale.ipn.macsys.ToggleAppIntent",
1426
+ "io.tailscale.ipn.macsys.UseExitNodeIntent",
1427
+ "is.workflow.actions.addframetogif",
1428
+ "is.workflow.actions.addmusictoupnext",
1429
+ "is.workflow.actions.addnewcalendar",
1430
+ "is.workflow.actions.addnewcontact",
1431
+ "is.workflow.actions.addnewevent",
1432
+ "is.workflow.actions.addnewreminder",
1433
+ "is.workflow.actions.addquickreminder",
1434
+ "is.workflow.actions.address",
1435
+ "is.workflow.actions.addtoplaylist",
1436
+ "is.workflow.actions.adjustdate",
1437
+ "is.workflow.actions.airdropdocument",
1438
+ "is.workflow.actions.airplanemode.set",
1439
+ "is.workflow.actions.alert",
1440
+ "is.workflow.actions.announcenotifications.set",
1441
+ "is.workflow.actions.appearance",
1442
+ "is.workflow.actions.appendnote",
1443
+ "is.workflow.actions.appendvariable",
1444
+ "is.workflow.actions.ask",
1445
+ "is.workflow.actions.askllm",
1446
+ "is.workflow.actions.avairyeditphoto",
1447
+ "is.workflow.actions.base64encode",
1448
+ "is.workflow.actions.bluetooth.set",
1449
+ "is.workflow.actions.calculateexpression",
1450
+ "is.workflow.actions.cellulardata.set",
1451
+ "is.workflow.actions.choosefromlist",
1452
+ "is.workflow.actions.clearupnext",
1453
+ "is.workflow.actions.comment",
1454
+ "is.workflow.actions.compresspdf",
1455
+ "is.workflow.actions.connecttoservers",
1456
+ "is.workflow.actions.contacts",
1457
+ "is.workflow.actions.converttimezone",
1458
+ "is.workflow.actions.correctspelling",
1459
+ "is.workflow.actions.count",
1460
+ "is.workflow.actions.createplaylist",
1461
+ "is.workflow.actions.date",
1462
+ "is.workflow.actions.delay",
1463
+ "is.workflow.actions.deletephotos",
1464
+ "is.workflow.actions.deskconnect.send",
1465
+ "is.workflow.actions.detect.address",
1466
+ "is.workflow.actions.detect.contacts",
1467
+ "is.workflow.actions.detect.date",
1468
+ "is.workflow.actions.detect.dictionary",
1469
+ "is.workflow.actions.detect.emailaddress",
1470
+ "is.workflow.actions.detect.images",
1471
+ "is.workflow.actions.detect.link",
1472
+ "is.workflow.actions.detect.number",
1473
+ "is.workflow.actions.detect.phonenumber",
1474
+ "is.workflow.actions.detect.text",
1475
+ "is.workflow.actions.detectlanguage",
1476
+ "is.workflow.actions.dictatetext",
1477
+ "is.workflow.actions.dictionary",
1478
+ "is.workflow.actions.dismisssiri",
1479
+ "is.workflow.actions.display.always-on.set",
1480
+ "is.workflow.actions.displaysleep",
1481
+ "is.workflow.actions.dnd.getfocus",
1482
+ "is.workflow.actions.dnd.set",
1483
+ "is.workflow.actions.documentpicker.open",
1484
+ "is.workflow.actions.documentpicker.save",
1485
+ "is.workflow.actions.downloadurl",
1486
+ "is.workflow.actions.dropbox.appendfile",
1487
+ "is.workflow.actions.dropbox.open",
1488
+ "is.workflow.actions.dropbox.savefile",
1489
+ "is.workflow.actions.ejectdisk",
1490
+ "is.workflow.actions.email",
1491
+ "is.workflow.actions.encodemedia",
1492
+ "is.workflow.actions.evernote.append",
1493
+ "is.workflow.actions.evernote.delete",
1494
+ "is.workflow.actions.evernote.get",
1495
+ "is.workflow.actions.evernote.getlink",
1496
+ "is.workflow.actions.evernote.new",
1497
+ "is.workflow.actions.exit",
1498
+ "is.workflow.actions.exportsong",
1499
+ "is.workflow.actions.extracttextfromimage",
1500
+ "is.workflow.actions.file",
1501
+ "is.workflow.actions.file.append",
1502
+ "is.workflow.actions.file.createfolder",
1503
+ "is.workflow.actions.file.delete",
1504
+ "is.workflow.actions.file.getfoldercontents",
1505
+ "is.workflow.actions.file.getlink",
1506
+ "is.workflow.actions.file.label",
1507
+ "is.workflow.actions.file.move",
1508
+ "is.workflow.actions.file.rename",
1509
+ "is.workflow.actions.file.reveal",
1510
+ "is.workflow.actions.file.select",
1511
+ "is.workflow.actions.filter.apps",
1512
+ "is.workflow.actions.filter.articles",
1513
+ "is.workflow.actions.filter.calendarevents",
1514
+ "is.workflow.actions.filter.contacts",
1515
+ "is.workflow.actions.filter.displays",
1516
+ "is.workflow.actions.filter.eventattendees",
1517
+ "is.workflow.actions.filter.files",
1518
+ "is.workflow.actions.filter.images",
1519
+ "is.workflow.actions.filter.locations",
1520
+ "is.workflow.actions.filter.music",
1521
+ "is.workflow.actions.filter.notes",
1522
+ "is.workflow.actions.filter.photos",
1523
+ "is.workflow.actions.filter.reminders",
1524
+ "is.workflow.actions.filter.windows",
1525
+ "is.workflow.actions.finder.getselectedfiles",
1526
+ "is.workflow.actions.flashlight",
1527
+ "is.workflow.actions.format.date",
1528
+ "is.workflow.actions.format.filesize",
1529
+ "is.workflow.actions.format.number",
1530
+ "is.workflow.actions.generatebarcode",
1531
+ "is.workflow.actions.get.playlist",
1532
+ "is.workflow.actions.getarticle",
1533
+ "is.workflow.actions.getbatterylevel",
1534
+ "is.workflow.actions.getclassaction",
1535
+ "is.workflow.actions.getclipboard",
1536
+ "is.workflow.actions.getcurrentapp",
1537
+ "is.workflow.actions.getcurrentlocation",
1538
+ "is.workflow.actions.getcurrentsong",
1539
+ "is.workflow.actions.getdevicedetails",
1540
+ "is.workflow.actions.getdirections",
1541
+ "is.workflow.actions.getdistance",
1542
+ "is.workflow.actions.getepisodesforpodcast",
1543
+ "is.workflow.actions.getframesfromimage",
1544
+ "is.workflow.actions.gethalfwaypoint",
1545
+ "is.workflow.actions.gethomeaccessorystate",
1546
+ "is.workflow.actions.gethtmlfromrichtext",
1547
+ "is.workflow.actions.getipaddress",
1548
+ "is.workflow.actions.getitemfromlist",
1549
+ "is.workflow.actions.getitemname",
1550
+ "is.workflow.actions.getitemtype",
1551
+ "is.workflow.actions.getlastphoto",
1552
+ "is.workflow.actions.getlastscreenshot",
1553
+ "is.workflow.actions.getlastvideo",
1554
+ "is.workflow.actions.getlatestbursts",
1555
+ "is.workflow.actions.getlatestlivephotos",
1556
+ "is.workflow.actions.getlatestphotoimport",
1557
+ "is.workflow.actions.getmapslink",
1558
+ "is.workflow.actions.getmarkdownfromrichtext",
1559
+ "is.workflow.actions.getmyworkflows",
1560
+ "is.workflow.actions.getnameofemoji",
1561
+ "is.workflow.actions.getonscreencontent",
1562
+ "is.workflow.actions.getparentdirectory",
1563
+ "is.workflow.actions.getparkedcarlocation",
1564
+ "is.workflow.actions.getpodcastsfromlibrary",
1565
+ "is.workflow.actions.getrichtextfromhtml",
1566
+ "is.workflow.actions.getrichtextfrommarkdown",
1567
+ "is.workflow.actions.gettext",
1568
+ "is.workflow.actions.gettextfrompdf",
1569
+ "is.workflow.actions.gettimebetweendates",
1570
+ "is.workflow.actions.gettraveltime",
1571
+ "is.workflow.actions.gettypeaction",
1572
+ "is.workflow.actions.getupcomingevents",
1573
+ "is.workflow.actions.getupcomingreminders",
1574
+ "is.workflow.actions.geturlcomponent",
1575
+ "is.workflow.actions.getvalueforkey",
1576
+ "is.workflow.actions.getvariable",
1577
+ "is.workflow.actions.getwebpagecontents",
1578
+ "is.workflow.actions.getwifi",
1579
+ "is.workflow.actions.giphy",
1580
+ "is.workflow.actions.goodreader.open",
1581
+ "is.workflow.actions.handoff",
1582
+ "is.workflow.actions.handoffplayback",
1583
+ "is.workflow.actions.hash",
1584
+ "is.workflow.actions.health.quantity.log",
1585
+ "is.workflow.actions.health.workout.log",
1586
+ "is.workflow.actions.hide.app",
1587
+ "is.workflow.actions.homeaccessory",
1588
+ "is.workflow.actions.image.combine",
1589
+ "is.workflow.actions.image.convert",
1590
+ "is.workflow.actions.image.convert.finder",
1591
+ "is.workflow.actions.image.crop",
1592
+ "is.workflow.actions.image.flip",
1593
+ "is.workflow.actions.image.mask",
1594
+ "is.workflow.actions.image.removebackground",
1595
+ "is.workflow.actions.image.resize",
1596
+ "is.workflow.actions.image.rotate",
1597
+ "is.workflow.actions.imgur.upload",
1598
+ "is.workflow.actions.importaudiofiles",
1599
+ "is.workflow.actions.input",
1600
+ "is.workflow.actions.instapaper.add",
1601
+ "is.workflow.actions.instapaper.get",
1602
+ "is.workflow.actions.intercom",
1603
+ "is.workflow.actions.lightroom.import",
1604
+ "is.workflow.actions.list",
1605
+ "is.workflow.actions.listeningmode.set",
1606
+ "is.workflow.actions.location",
1607
+ "is.workflow.actions.lock.app",
1608
+ "is.workflow.actions.lockscreen",
1609
+ "is.workflow.actions.logout",
1610
+ "is.workflow.actions.lowpowermode.set",
1611
+ "is.workflow.actions.makediskimage",
1612
+ "is.workflow.actions.makegif",
1613
+ "is.workflow.actions.makeimagefrompdfpage",
1614
+ "is.workflow.actions.makeimagefromrichtext",
1615
+ "is.workflow.actions.makepdf",
1616
+ "is.workflow.actions.makespokenaudiofromtext",
1617
+ "is.workflow.actions.makevideofromgif",
1618
+ "is.workflow.actions.makezip",
1619
+ "is.workflow.actions.math",
1620
+ "is.workflow.actions.measurement.convert",
1621
+ "is.workflow.actions.measurement.create",
1622
+ "is.workflow.actions.mountdiskimage",
1623
+ "is.workflow.actions.movewindow",
1624
+ "is.workflow.actions.nightshift.set",
1625
+ "is.workflow.actions.nothing",
1626
+ "is.workflow.actions.notification",
1627
+ "is.workflow.actions.number",
1628
+ "is.workflow.actions.number.random",
1629
+ "is.workflow.actions.openapp",
1630
+ "is.workflow.actions.openin",
1631
+ "is.workflow.actions.openpasswords",
1632
+ "is.workflow.actions.openurl",
1633
+ "is.workflow.actions.openxcallbackurl",
1634
+ "is.workflow.actions.orientationlock.set",
1635
+ "is.workflow.actions.output",
1636
+ "is.workflow.actions.overlayimageonimage",
1637
+ "is.workflow.actions.overlaytext",
1638
+ "is.workflow.actions.pausemusic",
1639
+ "is.workflow.actions.personalhotspot.password.get",
1640
+ "is.workflow.actions.personalhotspot.password.set",
1641
+ "is.workflow.actions.personalhotspot.set",
1642
+ "is.workflow.actions.phonenumber",
1643
+ "is.workflow.actions.photos.createalbum",
1644
+ "is.workflow.actions.pinboard.add",
1645
+ "is.workflow.actions.pinboard.get",
1646
+ "is.workflow.actions.playmusic",
1647
+ "is.workflow.actions.playpodcast",
1648
+ "is.workflow.actions.playsound",
1649
+ "is.workflow.actions.pocket.add",
1650
+ "is.workflow.actions.pocket.get",
1651
+ "is.workflow.actions.podcasts.subscribe",
1652
+ "is.workflow.actions.posters.get",
1653
+ "is.workflow.actions.posters.switch",
1654
+ "is.workflow.actions.postonfacebook",
1655
+ "is.workflow.actions.previewdocument",
1656
+ "is.workflow.actions.print",
1657
+ "is.workflow.actions.properties.appearance",
1658
+ "is.workflow.actions.properties.appstore",
1659
+ "is.workflow.actions.properties.articles",
1660
+ "is.workflow.actions.properties.calendarevents",
1661
+ "is.workflow.actions.properties.contacts",
1662
+ "is.workflow.actions.properties.eventattendees",
1663
+ "is.workflow.actions.properties.files",
1664
+ "is.workflow.actions.properties.images",
1665
+ "is.workflow.actions.properties.itunesartist",
1666
+ "is.workflow.actions.properties.itunesstore",
1667
+ "is.workflow.actions.properties.locations",
1668
+ "is.workflow.actions.properties.music",
1669
+ "is.workflow.actions.properties.parkedcar",
1670
+ "is.workflow.actions.properties.podcast",
1671
+ "is.workflow.actions.properties.podcastshow",
1672
+ "is.workflow.actions.properties.reminders",
1673
+ "is.workflow.actions.properties.ridestatus",
1674
+ "is.workflow.actions.properties.safariwebpage",
1675
+ "is.workflow.actions.properties.shazam",
1676
+ "is.workflow.actions.properties.trello",
1677
+ "is.workflow.actions.properties.ulysses.sheet",
1678
+ "is.workflow.actions.properties.weather.conditions",
1679
+ "is.workflow.actions.properties.workflow",
1680
+ "is.workflow.actions.quit.app",
1681
+ "is.workflow.actions.readinglist",
1682
+ "is.workflow.actions.reboot",
1683
+ "is.workflow.actions.recordaudio",
1684
+ "is.workflow.actions.reminders.showlist",
1685
+ "is.workflow.actions.removeevents",
1686
+ "is.workflow.actions.removefromalbum",
1687
+ "is.workflow.actions.removereminders",
1688
+ "is.workflow.actions.resizewindow",
1689
+ "is.workflow.actions.returntohomescreen",
1690
+ "is.workflow.actions.ride.requestride",
1691
+ "is.workflow.actions.round",
1692
+ "is.workflow.actions.rss",
1693
+ "is.workflow.actions.rss.extract",
1694
+ "is.workflow.actions.runapplescript",
1695
+ "is.workflow.actions.runextension",
1696
+ "is.workflow.actions.runjavascriptforautomation",
1697
+ "is.workflow.actions.runjavascriptonwebpage",
1698
+ "is.workflow.actions.runshellscript",
1699
+ "is.workflow.actions.runsshscript",
1700
+ "is.workflow.actions.runworkflow",
1701
+ "is.workflow.actions.safari.geturl",
1702
+ "is.workflow.actions.savetocameraroll",
1703
+ "is.workflow.actions.scanbarcode",
1704
+ "is.workflow.actions.searchappstore",
1705
+ "is.workflow.actions.searchitunes",
1706
+ "is.workflow.actions.searchlocalbusinesses",
1707
+ "is.workflow.actions.searchmaps",
1708
+ "is.workflow.actions.searchpodcasts",
1709
+ "is.workflow.actions.searchweb",
1710
+ "is.workflow.actions.seek",
1711
+ "is.workflow.actions.selectcontacts",
1712
+ "is.workflow.actions.selectemail",
1713
+ "is.workflow.actions.selectphone",
1714
+ "is.workflow.actions.selectphoto",
1715
+ "is.workflow.actions.sendemail",
1716
+ "is.workflow.actions.sendmessage",
1717
+ "is.workflow.actions.setairdropreceiving",
1718
+ "is.workflow.actions.setbrightness",
1719
+ "is.workflow.actions.setclipboard",
1720
+ "is.workflow.actions.setitemname",
1721
+ "is.workflow.actions.setparkedcar",
1722
+ "is.workflow.actions.setplaybackdestination",
1723
+ "is.workflow.actions.setters.calendarevents",
1724
+ "is.workflow.actions.setters.contacts",
1725
+ "is.workflow.actions.setters.reminders",
1726
+ "is.workflow.actions.setvalueforkey",
1727
+ "is.workflow.actions.setvariable",
1728
+ "is.workflow.actions.setvolume",
1729
+ "is.workflow.actions.share",
1730
+ "is.workflow.actions.shazamMedia",
1731
+ "is.workflow.actions.showdefinition",
1732
+ "is.workflow.actions.showinblindsquare",
1733
+ "is.workflow.actions.showincalendar",
1734
+ "is.workflow.actions.showinstore",
1735
+ "is.workflow.actions.shownote",
1736
+ "is.workflow.actions.showresult",
1737
+ "is.workflow.actions.showwebpage",
1738
+ "is.workflow.actions.silenceunknowncallers.set",
1739
+ "is.workflow.actions.skipback",
1740
+ "is.workflow.actions.skipforward",
1741
+ "is.workflow.actions.sleep",
1742
+ "is.workflow.actions.speaktext",
1743
+ "is.workflow.actions.splitpdf",
1744
+ "is.workflow.actions.splitscreen",
1745
+ "is.workflow.actions.spotlightsearch",
1746
+ "is.workflow.actions.stagemanager.set",
1747
+ "is.workflow.actions.startscreensaver",
1748
+ "is.workflow.actions.statistics",
1749
+ "is.workflow.actions.takephoto",
1750
+ "is.workflow.actions.takescreenshot",
1751
+ "is.workflow.actions.takevideo",
1752
+ "is.workflow.actions.text.changecase",
1753
+ "is.workflow.actions.text.combine",
1754
+ "is.workflow.actions.text.match",
1755
+ "is.workflow.actions.text.match.getgroup",
1756
+ "is.workflow.actions.text.replace",
1757
+ "is.workflow.actions.text.split",
1758
+ "is.workflow.actions.text.translate",
1759
+ "is.workflow.actions.text.trimwhitespace",
1760
+ "is.workflow.actions.timer.start",
1761
+ "is.workflow.actions.todoist.add",
1762
+ "is.workflow.actions.trello.add.board",
1763
+ "is.workflow.actions.trello.add.card",
1764
+ "is.workflow.actions.trello.add.list",
1765
+ "is.workflow.actions.trello.get",
1766
+ "is.workflow.actions.trimvideo",
1767
+ "is.workflow.actions.truetone.set",
1768
+ "is.workflow.actions.tumblr.post",
1769
+ "is.workflow.actions.tweet",
1770
+ "is.workflow.actions.unzip",
1771
+ "is.workflow.actions.url",
1772
+ "is.workflow.actions.url.expand",
1773
+ "is.workflow.actions.url.getheaders",
1774
+ "is.workflow.actions.urlencode",
1775
+ "is.workflow.actions.venmo.pay",
1776
+ "is.workflow.actions.venmo.request",
1777
+ "is.workflow.actions.vibrate",
1778
+ "is.workflow.actions.viewresult",
1779
+ "is.workflow.actions.vpn.set",
1780
+ "is.workflow.actions.waittoreturn",
1781
+ "is.workflow.actions.wallpaper.set",
1782
+ "is.workflow.actions.watchmedo",
1783
+ "is.workflow.actions.weather.currentconditions",
1784
+ "is.workflow.actions.weather.forecast",
1785
+ "is.workflow.actions.wifi.set",
1786
+ "is.workflow.actions.wordpress.post",
1787
+ "jp.naver.line.message",
1788
+ "net.lickability.Quotebook.addquote",
1789
+ "net.shinyfrog.bear-IOS.add",
1790
+ "net.shinyfrog.bear-IOS.contents",
1791
+ "net.shinyfrog.bear-IOS.create",
1792
+ "net.shinyfrog.bear-IOS.grab",
1793
+ "net.shinyfrog.bear-IOS.open",
1794
+ "net.shinyfrog.bear-IOS.search",
1795
+ "net.whatsapp.WhatsApp.send",
1796
+ "ph.telegra.Telegraph.msg",
1797
+ "squibner.AmazonLinker.convert",
1798
+ "squibner.AmazonLinker.search"
1799
+ ],
1800
+ "control_flow_exceptions_missing_from_tools_table": [
1801
+ "is.workflow.actions.conditional",
1802
+ "is.workflow.actions.repeat.count",
1803
+ "is.workflow.actions.repeat.each",
1804
+ "is.workflow.actions.choosefrommenu"
1805
+ ]
1806
+ }