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,2745 @@
1
+ {
2
+ "version": "toolkit-v78",
3
+ "generated_at": "2026-06-12T12:18:34Z",
4
+ "source": "~/Library/Shortcuts/ToolKit/Tools-prod.v78-50E0494B-3028-4767-888F-CDB05691F066.sqlite",
5
+ "source_os_version": "26A5353q",
6
+ "ids": [
7
+ "co.montanafloss.Shareshot.FrameLastScreenshotInAppIntent",
8
+ "co.montanafloss.Shareshot.FrameLastScreenshotIntent",
9
+ "co.montanafloss.Shareshot.FrameLastScreenshotIntentV1_3",
10
+ "co.montanafloss.Shareshot.FrameScreenshotsCustomBackgroundIntent",
11
+ "co.montanafloss.Shareshot.FrameScreenshotsCustomBackgroundIntentV1_3",
12
+ "co.montanafloss.Shareshot.FrameScreenshotsIntent",
13
+ "co.montanafloss.Shareshot.FrameScreenshotsIntentV1_3",
14
+ "co.montanafloss.Shareshot.FrameScreenshotsWithColourBackgroundIntent",
15
+ "co.montanafloss.Shareshot.FrameScreenshotsWithColourBackgroundIntentV1_3",
16
+ "co.montanafloss.Shareshot.FrameScreenshotsWithTweakedBackgroundIntent",
17
+ "co.montanafloss.Shareshot.FrameScreenshotsWithTweakedBackgroundIntentV1_3",
18
+ "com.agiletortoise.Drafts-OSX.ActionListVisibilityIntent",
19
+ "com.agiletortoise.Drafts-OSX.ActionRequestEntity",
20
+ "com.agiletortoise.Drafts-OSX.AdvanceTaskIntent",
21
+ "com.agiletortoise.Drafts-OSX.AppendDraftAppIntent",
22
+ "com.agiletortoise.Drafts-OSX.ArchiveDraftAppIntent",
23
+ "com.agiletortoise.Drafts-OSX.ArrangeIntent",
24
+ "com.agiletortoise.Drafts-OSX.CaptureAppIntent",
25
+ "com.agiletortoise.Drafts-OSX.CaptureIntent",
26
+ "com.agiletortoise.Drafts-OSX.ChangeDraftSyntaxAppIntent",
27
+ "com.agiletortoise.Drafts-OSX.CommandPaletteAppIntent",
28
+ "com.agiletortoise.Drafts-OSX.ControlConfiguration",
29
+ "com.agiletortoise.Drafts-OSX.DictateDraftIntent",
30
+ "com.agiletortoise.Drafts-OSX.DictateIntent",
31
+ "com.agiletortoise.Drafts-OSX.DraftListVisibilityIntent",
32
+ "com.agiletortoise.Drafts-OSX.DraftVersionEntity",
33
+ "com.agiletortoise.Drafts-OSX.DraftsFocusFilterIntent",
34
+ "com.agiletortoise.Drafts-OSX.DuplicateDraftAppIntent",
35
+ "com.agiletortoise.Drafts-OSX.EditDraftAppIntent",
36
+ "com.agiletortoise.Drafts-OSX.FileDraftIntent",
37
+ "com.agiletortoise.Drafts-OSX.FiltersListVisibilityIntent",
38
+ "com.agiletortoise.Drafts-OSX.FlagDraftAppIntent",
39
+ "com.agiletortoise.Drafts-OSX.GetActionAppIntent",
40
+ "com.agiletortoise.Drafts-OSX.GetCurrentDraftIntent",
41
+ "com.agiletortoise.Drafts-OSX.GetDraftByUUIDIntent",
42
+ "com.agiletortoise.Drafts-OSX.GetDraftIntent",
43
+ "com.agiletortoise.Drafts-OSX.GetDraftVersionsAppIntent",
44
+ "com.agiletortoise.Drafts-OSX.GetWorkspaceAppIntent",
45
+ "com.agiletortoise.Drafts-OSX.HTMLToMarkdownIntent",
46
+ "com.agiletortoise.Drafts-OSX.LoadWorkspaceIntent",
47
+ "com.agiletortoise.Drafts-OSX.MarkdownToHTMLIntent",
48
+ "com.agiletortoise.Drafts-OSX.OpenDraftIntent",
49
+ "com.agiletortoise.Drafts-OSX.PrependDraftAppIntent",
50
+ "com.agiletortoise.Drafts-OSX.ProRequiredIntent",
51
+ "com.agiletortoise.Drafts-OSX.ProcessTemplateIntent",
52
+ "com.agiletortoise.Drafts-OSX.QueryDraftsIntent",
53
+ "com.agiletortoise.Drafts-OSX.QueryWorkspaceIntent",
54
+ "com.agiletortoise.Drafts-OSX.QuickSearchAppIntent",
55
+ "com.agiletortoise.Drafts-OSX.RestoreDraftAppIntent",
56
+ "com.agiletortoise.Drafts-OSX.RunActionInBackgroundAppIntent",
57
+ "com.agiletortoise.Drafts-OSX.RunActionIntent",
58
+ "com.agiletortoise.Drafts-OSX.RunActionOnDraftInBackgroundAppIntent",
59
+ "com.agiletortoise.Drafts-OSX.RunActionOnDraftIntent",
60
+ "com.agiletortoise.Drafts-OSX.SaveDraftVersionsAppIntent",
61
+ "com.agiletortoise.Drafts-OSX.SetDraftIntent",
62
+ "com.agiletortoise.Drafts-OSX.SetThemeAppIntent",
63
+ "com.agiletortoise.Drafts-OSX.ShortcutAction",
64
+ "com.agiletortoise.Drafts-OSX.ShortcutDraft",
65
+ "com.agiletortoise.Drafts-OSX.ShortcutWorkspace",
66
+ "com.agiletortoise.Drafts-OSX.ShowCaptureAppIntent",
67
+ "com.agiletortoise.Drafts-OSX.TaskWidgetConfiguration",
68
+ "com.agiletortoise.Drafts-OSX.ToggleLinkModeIntent",
69
+ "com.agiletortoise.Drafts-OSX.TogglePinningIntent",
70
+ "com.agiletortoise.Drafts-OSX.TrashDraftAppIntent",
71
+ "com.agiletortoise.Drafts-OSX.ViewDraftIntent",
72
+ "com.agiletortoise.Drafts-OSX.WidgetEntityIntent",
73
+ "com.agiletortoise.Drafts4.addto",
74
+ "com.agiletortoise.Drafts4.get",
75
+ "com.agiletortoise.Drafts4.open",
76
+ "com.agiletortoise.Drafts4.runAction",
77
+ "com.agiletortoise.Tally2.get",
78
+ "com.agiletortoise.Tally2.updatetally",
79
+ "com.alexhay.nautomate.AddBlocksToPageIntent",
80
+ "com.alexhay.nautomate.AddValuesToDatabaseIntent",
81
+ "com.alexhay.nautomate.ArchivePageIntent",
82
+ "com.alexhay.nautomate.ChooseIntegrationIntent",
83
+ "com.alexhay.nautomate.ConfigureLoggingIntent",
84
+ "com.alexhay.nautomate.ConvertDatabaseIntent",
85
+ "com.alexhay.nautomate.ConvertDatabaseSearchResultsIntent",
86
+ "com.alexhay.nautomate.CreateAutoColumnBlockIntent",
87
+ "com.alexhay.nautomate.CreateBookmarkBlockIntent",
88
+ "com.alexhay.nautomate.CreateBreadcrumbBlockIntent",
89
+ "com.alexhay.nautomate.CreateCheckboxFilterIntent",
90
+ "com.alexhay.nautomate.CreateCodeBlockIntent",
91
+ "com.alexhay.nautomate.CreateDatabaseIntent",
92
+ "com.alexhay.nautomate.CreateDatabasePropertyIntent",
93
+ "com.alexhay.nautomate.CreateDateFilterIntent",
94
+ "com.alexhay.nautomate.CreateDividerBlockIntent",
95
+ "com.alexhay.nautomate.CreateEmbedBlockIntent",
96
+ "com.alexhay.nautomate.CreateEquationBlockIntent",
97
+ "com.alexhay.nautomate.CreateListBlockIntent",
98
+ "com.alexhay.nautomate.CreateManualColumnBlockIntent",
99
+ "com.alexhay.nautomate.CreateMediaBlockIntent",
100
+ "com.alexhay.nautomate.CreateMultiSelectFilterIntent",
101
+ "com.alexhay.nautomate.CreateNumberFilterIntent",
102
+ "com.alexhay.nautomate.CreatePageIntent",
103
+ "com.alexhay.nautomate.CreateSelectFilterIntent",
104
+ "com.alexhay.nautomate.CreateSmartBlocksFromTextIntent",
105
+ "com.alexhay.nautomate.CreateStatusFilterIntent",
106
+ "com.alexhay.nautomate.CreateTableBlockIntent",
107
+ "com.alexhay.nautomate.CreateTableOfContentsBlockIntent",
108
+ "com.alexhay.nautomate.CreateTemplateBlockIntent",
109
+ "com.alexhay.nautomate.CreateTextBlockIntent",
110
+ "com.alexhay.nautomate.CreateTextFilterIntent",
111
+ "com.alexhay.nautomate.CreateToggleBlockIntent",
112
+ "com.alexhay.nautomate.ExtractIDFromURLIntent",
113
+ "com.alexhay.nautomate.FileUploadAppEntity",
114
+ "com.alexhay.nautomate.FindDatabasesIntent",
115
+ "com.alexhay.nautomate.FindPagesIntent",
116
+ "com.alexhay.nautomate.GenerateUUIDIntent",
117
+ "com.alexhay.nautomate.GetChoicesFromSelectIntent",
118
+ "com.alexhay.nautomate.GetDetailsOfDatabaseIntent",
119
+ "com.alexhay.nautomate.GetTextFromPageIntent",
120
+ "com.alexhay.nautomate.GetURLFromIDIntent",
121
+ "com.alexhay.nautomate.ModifyDatabaseEntryIntent",
122
+ "com.alexhay.nautomate.ModifyPageIntent",
123
+ "com.alexhay.nautomate.QueryDatabaseAdvancedIntent",
124
+ "com.alexhay.nautomate.QueryDatabaseIntent",
125
+ "com.alexhay.nautomate.UploadFileAppIntent",
126
+ "com.apple.-Photos-AppIntents.PHWorkaroundFor146914251Intent",
127
+ "com.apple.AddressBook.ContactEntity",
128
+ "com.apple.AddressBook.CreateContactIntent",
129
+ "com.apple.AddressBook.DeleteContactIntent",
130
+ "com.apple.AddressBook.FetchContactAvatarIntent",
131
+ "com.apple.AddressBook.FetchContactIntent",
132
+ "com.apple.AddressBook.OpenContactCardIntent",
133
+ "com.apple.AddressBook.SearchInContactsIntent",
134
+ "com.apple.AddressBook.UpdateContactIntent",
135
+ "com.apple.AddressBook.ViewContactCardIntent",
136
+ "com.apple.AppKit.FetchIntelligenceCommands",
137
+ "com.apple.AppKit.InsertIntelligenceText",
138
+ "com.apple.AppKit.PresentWritingToolsResult",
139
+ "com.apple.AppKit.RequestEditingContext",
140
+ "com.apple.AppKit.RunIntelligenceCommand",
141
+ "com.apple.AppKit.RunIntelligenceCommandForKey",
142
+ "com.apple.AppKit.WindowTabActivateIntent",
143
+ "com.apple.AppKit.WindowTabEntity",
144
+ "com.apple.AppKit.WritingToolsCanPerformIntent",
145
+ "com.apple.AppKit.WritingToolsComposeIntent",
146
+ "com.apple.AppKit.WritingToolsOpenEndedIntent",
147
+ "com.apple.AppKit.WritingToolsPartnerIntent",
148
+ "com.apple.AppKit.WritingToolsProofreadIntent",
149
+ "com.apple.AppKit.WritingToolsRewriteIntent",
150
+ "com.apple.AppKit.WritingToolsSummarizeIntent",
151
+ "com.apple.AppKit.WritingToolsTransformKeyPointsIntent",
152
+ "com.apple.AppKit.WritingToolsTransformListIntent",
153
+ "com.apple.AppKit.WritingToolsTransformTableIntent",
154
+ "com.apple.AppStore.SystemSearchIntent",
155
+ "com.apple.Desktop-Settings.extension.OpenDesktopSettingsDeepLink",
156
+ "com.apple.GameCenter.Settings.DeviceExpertExtension.OpenGameCenterSettingsDeepLinks",
157
+ "com.apple.GenerativePlaygroundApp.CreateImageIntent",
158
+ "com.apple.GenerativePlaygroundApp.GenerateImageIntent",
159
+ "com.apple.Home.ActivateSceneIntent",
160
+ "com.apple.Home.AutomateAttributeValueIntent",
161
+ "com.apple.Home.AutomateSceneIntent",
162
+ "com.apple.Home.CameraClipEntity",
163
+ "com.apple.Home.DeltaAttributeValueIntent",
164
+ "com.apple.Home.DeviceEntity",
165
+ "com.apple.Home.ErrorIntent",
166
+ "com.apple.Home.ForecastWidgetConfiguration",
167
+ "com.apple.Home.GetAttributeValueIntent",
168
+ "com.apple.Home.GetDeviceInfoIntent",
169
+ "com.apple.Home.HistoricalUsageWidgetConfiguration",
170
+ "com.apple.Home.HomeAppIntentsExtensionTestAppIntent",
171
+ "com.apple.Home.HomeSingleTileConfigurationIntent",
172
+ "com.apple.Home.HomeXLModuleConfigurationIntent",
173
+ "com.apple.Home.OpenURLInHomeIntent",
174
+ "com.apple.Home.RecommendedItemIntent",
175
+ "com.apple.Home.RoomEntity",
176
+ "com.apple.Home.SceneEntity",
177
+ "com.apple.Home.SecureToggleIntent",
178
+ "com.apple.Home.SelectedHomeEntity",
179
+ "com.apple.Home.SetAttributeValueIntent",
180
+ "com.apple.Home.ShowDeviceResultIntent",
181
+ "com.apple.Home.ShowErrorIntent",
182
+ "com.apple.Home.ShowNavigationIntent",
183
+ "com.apple.Home.ShowSceneResultIntent",
184
+ "com.apple.Home.TileControlAction",
185
+ "com.apple.Home.ToggleAttributeIntent",
186
+ "com.apple.Home.ToggleControlConfigurationIntent",
187
+ "com.apple.Home.ToggleIntent",
188
+ "com.apple.Home.UtilityRateInfoWidgetConfiguration",
189
+ "com.apple.Home.ZoneEntity",
190
+ "com.apple.HydraUSDAppIntents.ConvertToUSDZ",
191
+ "com.apple.Magnifier.AskVQAIntent",
192
+ "com.apple.Magnifier.DescribeThisIntent",
193
+ "com.apple.Magnifier.DetectDoorsIntent",
194
+ "com.apple.Magnifier.DetectFurnitureIntent",
195
+ "com.apple.Magnifier.DetectPeopleIntent",
196
+ "com.apple.Magnifier.DetectTextIntent",
197
+ "com.apple.Magnifier.FindSessionAppIntent",
198
+ "com.apple.Magnifier.FollowUpVQAAppIntent",
199
+ "com.apple.Magnifier.MagnifierIntent",
200
+ "com.apple.Magnifier.PointAndSpeakIntent",
201
+ "com.apple.Magnifier.ReaderModeIntent",
202
+ "com.apple.Magnifier.StartDetectionTypeIntent",
203
+ "com.apple.Magnifier.WhatColorIsThisIntent",
204
+ "com.apple.Maps.CalculateETAIntent",
205
+ "com.apple.Maps.CurrentLocationEntity",
206
+ "com.apple.Maps.MapsIntentsDebugDispatch",
207
+ "com.apple.Maps.MapsShowPlacesInAppIntent",
208
+ "com.apple.Maps.NavigationSessionEntity",
209
+ "com.apple.Maps.ParkingLocationDataEntity",
210
+ "com.apple.Maps.SearchPlacesIntent",
211
+ "com.apple.Maps.StartNavigationIntent",
212
+ "com.apple.Maps.TestStartNavigationIntent",
213
+ "com.apple.MediaRemoteAppIntentsExtension.ConnectToSpeakerIntent",
214
+ "com.apple.MobileSMS.ChangeFilterModeIntent",
215
+ "com.apple.MobileSMS.ConversationEntity",
216
+ "com.apple.MobileSMS.ConversationListFocusFilterAction",
217
+ "com.apple.MobileSMS.DeleteConversationIntent",
218
+ "com.apple.MobileSMS.DeleteMessageIntent",
219
+ "com.apple.MobileSMS.DraftMessageIntent",
220
+ "com.apple.MobileSMS.EditSentMessageIntent",
221
+ "com.apple.MobileSMS.FetchConversationIdentifierIntent",
222
+ "com.apple.MobileSMS.FetchDowntimeConversationListIntent",
223
+ "com.apple.MobileSMS.FetchMutedConversationListIntent",
224
+ "com.apple.MobileSMS.INEditMessageIntent",
225
+ "com.apple.MobileSMS.INSearchForMessagesIntent",
226
+ "com.apple.MobileSMS.INSendMessageIntent",
227
+ "com.apple.MobileSMS.INSetMessageAttributeIntent",
228
+ "com.apple.MobileSMS.INUnsendMessagesIntent",
229
+ "com.apple.MobileSMS.MarkConversationAsUnreadIntent",
230
+ "com.apple.MobileSMS.MessageEntity",
231
+ "com.apple.MobileSMS.MuteConversationIntent",
232
+ "com.apple.MobileSMS.OpenConversationIntent",
233
+ "com.apple.MobileSMS.OpenConversationListIntent",
234
+ "com.apple.MobileSMS.OpenMessageIntent",
235
+ "com.apple.MobileSMS.RemoveTapbackIntent",
236
+ "com.apple.MobileSMS.SearchMessagesIntent",
237
+ "com.apple.MobileSMS.SendCollaborationMessageIntent",
238
+ "com.apple.MobileSMS.SendMessageIntent",
239
+ "com.apple.MobileSMS.SendMessageReactionIntent",
240
+ "com.apple.MobileSMS.SendReplyIntent",
241
+ "com.apple.MobileSMS.SetConversationReadStatusIntent",
242
+ "com.apple.MobileSMS.SetMessageReadStatusIntent",
243
+ "com.apple.MobileSMS.UnsendMessageIntent",
244
+ "com.apple.Music.AddMusicItemToLibrarySiriIntent",
245
+ "com.apple.Music.AddMusicItemToPlaylistSiriIntent",
246
+ "com.apple.Music.CreateStationSiriIntent",
247
+ "com.apple.Music.OpenMusicItemSiriIntent",
248
+ "com.apple.Music.PlayMusicItemSiriIntent",
249
+ "com.apple.Music.SearchMusicSiriIntent",
250
+ "com.apple.Music.UpdateMusicItemAffinitySiriIntent",
251
+ "com.apple.Music.WarmupMusicQueueSiriIntent",
252
+ "com.apple.NanoSettings.NPRFPingMyPhoneIntent",
253
+ "com.apple.NanoSettings.NPRFSetAlwaysOnIntent",
254
+ "com.apple.NanoSettings.NPRFSetAutoLaunchAudioAppsIntent",
255
+ "com.apple.NanoSettings.NPRFSetFlashLightIntent",
256
+ "com.apple.NanoSettings.NPRFSetSchoolTimeIntent",
257
+ "com.apple.NanoSettings.NPRFSetSilentModeIntent",
258
+ "com.apple.NanoSettings.NPRFSetTheaterModeIntent",
259
+ "com.apple.NanoSettings.NPRFSetWakeOnWristRaiseIntent",
260
+ "com.apple.NanoSettings.NPRFSetWaterLockIntent",
261
+ "com.apple.Notes.AddFileAttachmentLinkAction",
262
+ "com.apple.Notes.AddLinkAttachmentLinkAction",
263
+ "com.apple.Notes.AddOrRemoveNoteLockLinkAction",
264
+ "com.apple.Notes.AddTagsToNotesLinkAction",
265
+ "com.apple.Notes.ApplyFormattingLinkAction",
266
+ "com.apple.Notes.AttachmentEntity",
267
+ "com.apple.Notes.ChangeFolderSettingLinkAction",
268
+ "com.apple.Notes.ChangeSettingLinkAction",
269
+ "com.apple.Notes.ChangeTagSelectionIntent",
270
+ "com.apple.Notes.CloseAppLocationLinkAction",
271
+ "com.apple.Notes.CloseNoteLinkAction",
272
+ "com.apple.Notes.CreateChecklistItemLinkAction",
273
+ "com.apple.Notes.CreateFolderLinkAction",
274
+ "com.apple.Notes.CreateNoteIntent",
275
+ "com.apple.Notes.CreateTableLinkAction",
276
+ "com.apple.Notes.CreateTagLinkAction",
277
+ "com.apple.Notes.DeleteAttachmentsLinkAction",
278
+ "com.apple.Notes.DeleteChecklistItemsLinkAction",
279
+ "com.apple.Notes.DeleteFoldersLinkAction",
280
+ "com.apple.Notes.DeleteNotesLinkAction",
281
+ "com.apple.Notes.DeleteTablesLinkAction",
282
+ "com.apple.Notes.DeleteTagsLinkAction",
283
+ "com.apple.Notes.EmphasisLinkAction",
284
+ "com.apple.Notes.GetLinkedNotesLinkAction",
285
+ "com.apple.Notes.ICNotesFolderIntent",
286
+ "com.apple.Notes.INCreateNoteIntent",
287
+ "com.apple.Notes.InsertAllMentionLinkAction",
288
+ "com.apple.Notes.InsertMentionLinkAction",
289
+ "com.apple.Notes.InsertNoteLinkLinkAction",
290
+ "com.apple.Notes.MoveNotesToFolderLinkAction",
291
+ "com.apple.Notes.NoteAppendTextIntent",
292
+ "com.apple.Notes.OpenAccountLinkAction",
293
+ "com.apple.Notes.OpenAppLocationLinkAction",
294
+ "com.apple.Notes.OpenAttachmentLinkAction",
295
+ "com.apple.Notes.OpenChecklistItemLinkAction",
296
+ "com.apple.Notes.OpenFolderLinkAction",
297
+ "com.apple.Notes.OpenTableLinkAction",
298
+ "com.apple.Notes.OpenTagLinkAction",
299
+ "com.apple.Notes.OpenTopLevelFolderLinkAction",
300
+ "com.apple.Notes.PinNotesLinkAction",
301
+ "com.apple.Notes.QuickNoteIntent",
302
+ "com.apple.Notes.RemoveTagsFromNotesLinkAction",
303
+ "com.apple.Notes.RenameFolderLinkAction",
304
+ "com.apple.Notes.ReplaceSelectionLinkAction",
305
+ "com.apple.Notes.SetAttachmentSizeLinkAction",
306
+ "com.apple.Notes.SetChecklistItemCheckedLinkActionv2",
307
+ "com.apple.Notes.SetParagraphStyleLinkAction",
308
+ "com.apple.Notes.ShowNotesAppSearchResultsLinkAction",
309
+ "com.apple.Notes.ShowQuickNoteIntent",
310
+ "com.apple.Notes.StartRecordingLinkAction",
311
+ "com.apple.Notes.TableEntity",
312
+ "com.apple.Notes.UpdateNoteIntent",
313
+ "com.apple.PeopleViewService.SelectPersonIntent",
314
+ "com.apple.PeopleViewService.URLAppIntent",
315
+ "com.apple.Photos.AddAssetsToAlbumIntent",
316
+ "com.apple.Photos.AlbumEntity",
317
+ "com.apple.Photos.ApplyFilterIntent",
318
+ "com.apple.Photos.ApplyStyleIntent",
319
+ "com.apple.Photos.AssetEntity",
320
+ "com.apple.Photos.CleanupIntent",
321
+ "com.apple.Photos.CopyPasteEditsIntent",
322
+ "com.apple.Photos.CreateAlbumIntent",
323
+ "com.apple.Photos.CreateAssetsIntent",
324
+ "com.apple.Photos.CropIntent",
325
+ "com.apple.Photos.DeleteAlbumsIntent",
326
+ "com.apple.Photos.DeleteAssetsIntent",
327
+ "com.apple.Photos.DuplicateAssetsIntent",
328
+ "com.apple.Photos.EditAssetIntent",
329
+ "com.apple.Photos.EnableDepthIntent",
330
+ "com.apple.Photos.EnhanceIntent",
331
+ "com.apple.Photos.FavoriteAssetsIntent",
332
+ "com.apple.Photos.FavoriteMemoriesIntent",
333
+ "com.apple.Photos.FavoritePeopleIntent",
334
+ "com.apple.Photos.FilterLibraryIntent",
335
+ "com.apple.Photos.HideAssetsIntent",
336
+ "com.apple.Photos.HidePeopleIntent",
337
+ "com.apple.Photos.MarkupIntent",
338
+ "com.apple.Photos.MemoryEntity",
339
+ "com.apple.Photos.MoveAssetsToPersonalLibraryIntent",
340
+ "com.apple.Photos.MoveAssetsToSharedLibraryIntent",
341
+ "com.apple.Photos.OpenAlbumIntent",
342
+ "com.apple.Photos.OpenAssetIntent",
343
+ "com.apple.Photos.OpenDestinationIntent",
344
+ "com.apple.Photos.OpenMemoryCreationViewIntent",
345
+ "com.apple.Photos.OpenPersonIntent",
346
+ "com.apple.Photos.PLPhotosReliveWidgetConfigurationIntent",
347
+ "com.apple.Photos.PhotosAddAssetsToAlbumAssistantIntent",
348
+ "com.apple.Photos.PhotosAttributedSearchMediaAssistantIntent",
349
+ "com.apple.Photos.PhotosCleanupPhotoAssistantIntent",
350
+ "com.apple.Photos.PhotosCopyEditsAssistantIntent",
351
+ "com.apple.Photos.PhotosCreateAlbumAssistantIntent",
352
+ "com.apple.Photos.PhotosCreateAssetsAssistantIntent",
353
+ "com.apple.Photos.PhotosCropAssistantIntent",
354
+ "com.apple.Photos.PhotosDeleteAlbumsAssistantIntent",
355
+ "com.apple.Photos.PhotosDeleteAssetsAssistantIntent",
356
+ "com.apple.Photos.PhotosDuplicateAssetsAssistantIntent",
357
+ "com.apple.Photos.PhotosEditAssetAssistantIntent",
358
+ "com.apple.Photos.PhotosEntityCollectionSearchAssistantIntent",
359
+ "com.apple.Photos.PhotosFavoriteMemoriesAssistantIntent",
360
+ "com.apple.Photos.PhotosFilterLibraryAssistantIntent",
361
+ "com.apple.Photos.PhotosMoveAssetsToPersonalLibraryAssistantIntent",
362
+ "com.apple.Photos.PhotosMoveAssetsToSharedLibraryAssistantIntent",
363
+ "com.apple.Photos.PhotosOpenMemoryCreationViewAssistantIntent",
364
+ "com.apple.Photos.PhotosPasteEditsAssistantIntent",
365
+ "com.apple.Photos.PhotosReliveWidgetFeaturedConfiguration",
366
+ "com.apple.Photos.PhotosRemoveAssetsFromAlbumAssistantIntent",
367
+ "com.apple.Photos.PhotosSearchAssistantIntent",
368
+ "com.apple.Photos.PhotosSetDepthAssistantIntent",
369
+ "com.apple.Photos.PhotosSetExposureAssistantIntent",
370
+ "com.apple.Photos.PhotosSetFilterAssistantIntent",
371
+ "com.apple.Photos.PhotosSetRotationAssistantIntent",
372
+ "com.apple.Photos.PhotosSetSaturationAssistantIntent",
373
+ "com.apple.Photos.PhotosSetWarmthAssistantIntent",
374
+ "com.apple.Photos.PhotosStraightenAssistantIntent",
375
+ "com.apple.Photos.PhotosToggleDepthAssistantIntent",
376
+ "com.apple.Photos.PhotosToggleSuggestedEditsAssistantIntent",
377
+ "com.apple.Photos.PhotosUpdateAlbumAssistantIntent",
378
+ "com.apple.Photos.PhotosUpdateAssetAssistantIntent",
379
+ "com.apple.Photos.PhotosUpdateRecognizedPersonAssistantIntent",
380
+ "com.apple.Photos.RemoveAssetsFromAlbumIntent",
381
+ "com.apple.Photos.RenameAlbumIntent",
382
+ "com.apple.Photos.RenamePersonIntent",
383
+ "com.apple.Photos.RevealAlbumsIntent",
384
+ "com.apple.Photos.RevealAssetsIntent",
385
+ "com.apple.Photos.RotateIntent",
386
+ "com.apple.Photos.SetApertureIntent",
387
+ "com.apple.Photos.SetAudioMixIntent",
388
+ "com.apple.Photos.SetExposureIntent",
389
+ "com.apple.Photos.SetPlaybackRateIntent",
390
+ "com.apple.Photos.SetSaturationIntent",
391
+ "com.apple.Photos.SetWarmthIntent",
392
+ "com.apple.Photos.StraightenIntent",
393
+ "com.apple.Preview.AutoEnhanceIntent",
394
+ "com.apple.Preview.BookmarkIntent",
395
+ "com.apple.Preview.CloseIntent",
396
+ "com.apple.Preview.DeletePageIntent",
397
+ "com.apple.Preview.DocumentEntity",
398
+ "com.apple.Preview.ExportIntent",
399
+ "com.apple.Preview.FlipIntent",
400
+ "com.apple.Preview.GetPagesIntent",
401
+ "com.apple.Preview.InsertPageIntent",
402
+ "com.apple.Preview.OpenIntent",
403
+ "com.apple.Preview.RemoveBackgroundIntent",
404
+ "com.apple.Preview.ResizeIntent",
405
+ "com.apple.Preview.RevealDocumentIntent",
406
+ "com.apple.Preview.RevealPageIntent",
407
+ "com.apple.Preview.RotateIntent",
408
+ "com.apple.Preview.RotatePageIntent",
409
+ "com.apple.Preview.SaveIntent",
410
+ "com.apple.Preview.SearchIntent",
411
+ "com.apple.Safari.AddHistoryItem",
412
+ "com.apple.Safari.BookmarkEntity",
413
+ "com.apple.Safari.BookmarkTabIntent",
414
+ "com.apple.Safari.BookmarkURLIntent",
415
+ "com.apple.Safari.CloseTab",
416
+ "com.apple.Safari.CloseTabsAssistantIntent",
417
+ "com.apple.Safari.CloseView",
418
+ "com.apple.Safari.CloseWindowsIntent",
419
+ "com.apple.Safari.CreateNewBookmark",
420
+ "com.apple.Safari.CreateNewTab",
421
+ "com.apple.Safari.CreateNewTabGroup",
422
+ "com.apple.Safari.CreateNewWindow",
423
+ "com.apple.Safari.CreateReadingListItem",
424
+ "com.apple.Safari.CreateTabAssistantIntent",
425
+ "com.apple.Safari.DeleteBookmarks",
426
+ "com.apple.Safari.DeleteHistoryItems",
427
+ "com.apple.Safari.DeleteTabGroups",
428
+ "com.apple.Safari.FindOnPage",
429
+ "com.apple.Safari.GetHistoryItems",
430
+ "com.apple.Safari.HistoryEntity",
431
+ "com.apple.Safari.LoadURLInTab",
432
+ "com.apple.Safari.MoveTabsToTabGroup",
433
+ "com.apple.Safari.MoveTabsToWindowIntent",
434
+ "com.apple.Safari.NotifyUserForUpdatedPageIntent",
435
+ "com.apple.Safari.OpenBookmark",
436
+ "com.apple.Safari.OpenBookmarkAssistantIntent",
437
+ "com.apple.Safari.OpenHistoryItem",
438
+ "com.apple.Safari.OpenReadingListItem",
439
+ "com.apple.Safari.OpenTab",
440
+ "com.apple.Safari.OpenTabGroup",
441
+ "com.apple.Safari.OpenTabGroupForFocus",
442
+ "com.apple.Safari.OpenView",
443
+ "com.apple.Safari.QuickWebsiteSearchIntent",
444
+ "com.apple.Safari.QuickWebsiteSearchProviderEntity",
445
+ "com.apple.Safari.ReadingListItemEntity",
446
+ "com.apple.Safari.ReportNotifyMeWhenAutomationResult",
447
+ "com.apple.Safari.RequestWebPageContextIntent",
448
+ "com.apple.Safari.SearchTabs",
449
+ "com.apple.Safari.ShowWindowIntent",
450
+ "com.apple.Safari.TabEntity",
451
+ "com.apple.Safari.TabGroupEntity",
452
+ "com.apple.Safari.WindowEntity",
453
+ "com.apple.Settings.AutoDateTimeEntity",
454
+ "com.apple.Settings.AutoTimeZoneEntity",
455
+ "com.apple.Settings.BluetoothPowerEntity",
456
+ "com.apple.Settings.BluetoothPowerEntity-UpdatableEntity",
457
+ "com.apple.Settings.BluetoothSettingsDeepLink",
458
+ "com.apple.Settings.ClassKitSettingsSettingsDeepLink",
459
+ "com.apple.Settings.DateAndTimeExtensionSettingsDeepLink",
460
+ "com.apple.Settings.DateTimeEntity",
461
+ "com.apple.Settings.HourFormatEntity",
462
+ "com.apple.Settings.HourFormatEntity-UpdatableEntity",
463
+ "com.apple.Settings.KeyboardSettingsSettingsDeepLink",
464
+ "com.apple.Settings.OpenAutomaticallySetDateTimeSetting",
465
+ "com.apple.Settings.OpenAutomaticallySetTimeZoneSetting",
466
+ "com.apple.Settings.OpenBiometricsAndPasswordSettingsEntityDeepLinks",
467
+ "com.apple.Settings.OpenBluetoothPowerDeepLink",
468
+ "com.apple.Settings.OpenBluetoothSettingsDeepLink",
469
+ "com.apple.Settings.OpenClassKitSettingsSettingsDeepLink",
470
+ "com.apple.Settings.OpenConfiguredInternetAccountSettings",
471
+ "com.apple.Settings.OpenCurrentTimeZoneSetting",
472
+ "com.apple.Settings.OpenDateAndTimeExtensionSettingsDeepLink",
473
+ "com.apple.Settings.OpenInternetAccountsSettings",
474
+ "com.apple.Settings.OpenKeyboardSettingsSettingsDeepLink",
475
+ "com.apple.Settings.OpenSoftwareUpdateSettingsExtensionSettingsDeepLink",
476
+ "com.apple.Settings.OpenSpotlightSettingsDeepLinks",
477
+ "com.apple.Settings.OpenStorageSettingsDeepLink",
478
+ "com.apple.Settings.OpenTheCurrentDateTimeSetting",
479
+ "com.apple.Settings.OpenTwentyFourHourTimeSetting",
480
+ "com.apple.Settings.OpenWiFiSettingsDeepLink",
481
+ "com.apple.Settings.PlaceholderAboutExtensionSettingsDeepLink",
482
+ "com.apple.Settings.PlaceholderAccessibilitySettingsExtensionSettingsDeepLink",
483
+ "com.apple.Settings.PlaceholderAirDropHandoffExtensionSettingsDeepLink",
484
+ "com.apple.Settings.PlaceholderAppearanceSettingsDeepLink",
485
+ "com.apple.Settings.PlaceholderAppleIdSettingsSettingsDeepLink",
486
+ "com.apple.Settings.PlaceholderCDsAndDvDsSettingsExtensionSettingsDeepLink",
487
+ "com.apple.Settings.PlaceholderClassroomSettingsSettingsDeepLink",
488
+ "com.apple.Settings.PlaceholderControlCenterSettingsSettingsDeepLink",
489
+ "com.apple.Settings.PlaceholderDesktopSettingsSettingsDeepLink",
490
+ "com.apple.Settings.PlaceholderDeviceManagementSettingsDeepLink",
491
+ "com.apple.Settings.PlaceholderDisplaysExtSettingsDeepLink",
492
+ "com.apple.Settings.PlaceholderFamilySettingsSettingsDeepLink",
493
+ "com.apple.Settings.PlaceholderFocusSettingsExtensionSettingsDeepLink",
494
+ "com.apple.Settings.PlaceholderGameCenterMacOsSettingsExtensionSettingsDeepLink",
495
+ "com.apple.Settings.PlaceholderGameControllerMacSettingsSettingsDeepLink",
496
+ "com.apple.Settings.PlaceholderInternetAccountsSettingsExtensionSettingsDeepLink",
497
+ "com.apple.Settings.PlaceholderKeyboardSettingsSettingsDeepLink",
498
+ "com.apple.Settings.PlaceholderLocalizationSettingsDeepLink",
499
+ "com.apple.Settings.PlaceholderLockScreenSettingsDeepLink",
500
+ "com.apple.Settings.PlaceholderLoginItemsSettingsDeepLink",
501
+ "com.apple.Settings.PlaceholderMouseExtensionSettingsDeepLink",
502
+ "com.apple.Settings.PlaceholderNetworkSettingsDeepLink",
503
+ "com.apple.Settings.PlaceholderNotificationsSettingsSettingsDeepLink",
504
+ "com.apple.Settings.PlaceholderOpenAboutExtensionSettingsDeepLink",
505
+ "com.apple.Settings.PlaceholderOpenAccessibilitySettingsExtensionSettingsDeepLink",
506
+ "com.apple.Settings.PlaceholderOpenAirDropHandoffExtensionSettingsDeepLink",
507
+ "com.apple.Settings.PlaceholderOpenAppearanceSettingsDeepLink",
508
+ "com.apple.Settings.PlaceholderOpenAppleIdSettingsSettingsDeepLink",
509
+ "com.apple.Settings.PlaceholderOpenCDsAndDvDsSettingsExtensionSettingsDeepLink",
510
+ "com.apple.Settings.PlaceholderOpenClassroomSettingsSettingsDeepLink",
511
+ "com.apple.Settings.PlaceholderOpenControlCenterSettingsSettingsDeepLink",
512
+ "com.apple.Settings.PlaceholderOpenDesktopSettingsSettingsDeepLink",
513
+ "com.apple.Settings.PlaceholderOpenDeviceManagementSettingsDeepLink",
514
+ "com.apple.Settings.PlaceholderOpenDisplaysExtSettingsDeepLink",
515
+ "com.apple.Settings.PlaceholderOpenFamilySettingsSettingsDeepLink",
516
+ "com.apple.Settings.PlaceholderOpenFocusSettingsExtensionSettingsDeepLink",
517
+ "com.apple.Settings.PlaceholderOpenGameCenterMacOsSettingsExtensionSettingsDeepLink",
518
+ "com.apple.Settings.PlaceholderOpenGameControllerMacSettingsSettingsDeepLink",
519
+ "com.apple.Settings.PlaceholderOpenInternetAccountsSettingsExtensionSettingsDeepLink",
520
+ "com.apple.Settings.PlaceholderOpenKeyboardSettingsSettingsDeepLink",
521
+ "com.apple.Settings.PlaceholderOpenLocalizationSettingsDeepLink",
522
+ "com.apple.Settings.PlaceholderOpenLockScreenSettingsDeepLink",
523
+ "com.apple.Settings.PlaceholderOpenLoginItemsSettingsDeepLink",
524
+ "com.apple.Settings.PlaceholderOpenMouseExtensionSettingsDeepLink",
525
+ "com.apple.Settings.PlaceholderOpenNetworkSettingsDeepLink",
526
+ "com.apple.Settings.PlaceholderOpenNotificationsSettingsSettingsDeepLink",
527
+ "com.apple.Settings.PlaceholderOpenPasswordsSettingsExtensionSettingsDeepLink",
528
+ "com.apple.Settings.PlaceholderOpenPowerPreferencesSettingsDeepLink",
529
+ "com.apple.Settings.PlaceholderOpenPrinterScannerSettingsSettingsDeepLink",
530
+ "com.apple.Settings.PlaceholderOpenScreenTimePreferencesExtensionSettingsDeepLink",
531
+ "com.apple.Settings.PlaceholderOpenSecurityPrivacyExtensionSettingsDeepLink",
532
+ "com.apple.Settings.PlaceholderOpenSharingSettingsDeepLink",
533
+ "com.apple.Settings.PlaceholderOpenSiriSettingsDeepLink",
534
+ "com.apple.Settings.PlaceholderOpenSoundSettingsDeepLink",
535
+ "com.apple.Settings.PlaceholderOpenStartupDiskSettingsDeepLink",
536
+ "com.apple.Settings.PlaceholderOpenStorageSettingsDeepLink",
537
+ "com.apple.Settings.PlaceholderOpenTimeMachineSettingsSettingsDeepLink",
538
+ "com.apple.Settings.PlaceholderOpenTrackpadExtensionSettingsDeepLink",
539
+ "com.apple.Settings.PlaceholderOpenTransferResetExtensionSettingsDeepLink",
540
+ "com.apple.Settings.PlaceholderOpenUsersGroupsSettingsDeepLink",
541
+ "com.apple.Settings.PlaceholderOpenVpnSettingsDeepLink",
542
+ "com.apple.Settings.PlaceholderOpenWalletAndApplePaySettingsDeepLink",
543
+ "com.apple.Settings.PlaceholderOpenWallpaperSettingsDeepLink",
544
+ "com.apple.Settings.PlaceholderOpenWiFiSettingsDeepLink",
545
+ "com.apple.Settings.PlaceholderPasswordsSettingsExtensionSettingsDeepLink",
546
+ "com.apple.Settings.PlaceholderPowerPreferencesSettingsDeepLink",
547
+ "com.apple.Settings.PlaceholderPrinterScannerSettingsSettingsDeepLink",
548
+ "com.apple.Settings.PlaceholderScreenTimePreferencesExtensionSettingsDeepLink",
549
+ "com.apple.Settings.PlaceholderSecurityPrivacyExtensionSettingsDeepLink",
550
+ "com.apple.Settings.PlaceholderSharingSettingsDeepLink",
551
+ "com.apple.Settings.PlaceholderSiriSettingsDeepLink",
552
+ "com.apple.Settings.PlaceholderSoundSettingsDeepLink",
553
+ "com.apple.Settings.PlaceholderStartupDiskSettingsDeepLink",
554
+ "com.apple.Settings.PlaceholderStorageSettingsDeepLink",
555
+ "com.apple.Settings.PlaceholderTimeMachineSettingsSettingsDeepLink",
556
+ "com.apple.Settings.PlaceholderTrackpadExtensionSettingsDeepLink",
557
+ "com.apple.Settings.PlaceholderTransferResetExtensionSettingsDeepLink",
558
+ "com.apple.Settings.PlaceholderUsersGroupsSettingsDeepLink",
559
+ "com.apple.Settings.PlaceholderVpnSettingsDeepLink",
560
+ "com.apple.Settings.PlaceholderWalletAndApplePaySettingsDeepLink",
561
+ "com.apple.Settings.PlaceholderWallpaperSettingsDeepLink",
562
+ "com.apple.Settings.PlaceholderWiFiSettingsDeepLink",
563
+ "com.apple.Settings.PrefPanesDeepLink",
564
+ "com.apple.Settings.PrefPanesOpenDeepLink",
565
+ "com.apple.Settings.SettingsEntity",
566
+ "com.apple.Settings.SoftwareUpdateSettingsExtensionIntents",
567
+ "com.apple.Settings.SoftwareUpdateSettingsExtensionSettingsDeepLink",
568
+ "com.apple.Settings.SpotlightSettingsDeepLinks",
569
+ "com.apple.Settings.StorageSettingsDeepLink",
570
+ "com.apple.Settings.TimeZoneEntity",
571
+ "com.apple.Settings.WiFiSettingsDeepLink",
572
+ "com.apple.ShortcutsActions.CellularPlanEntity",
573
+ "com.apple.ShortcutsActions.ChargeLimit",
574
+ "com.apple.ShortcutsActions.GetMultitaskingModeAction",
575
+ "com.apple.ShortcutsActions.GetOrientationAction",
576
+ "com.apple.ShortcutsActions.GetPhysicalActivity",
577
+ "com.apple.ShortcutsActions.PlayMusicTopHitAction",
578
+ "com.apple.ShortcutsActions.PlayPodcastTopHitAction",
579
+ "com.apple.ShortcutsActions.ResetCellularDataStatisticsAction",
580
+ "com.apple.ShortcutsActions.SetBatteryChargeLimitAction",
581
+ "com.apple.ShortcutsActions.SetDataRoamingAction",
582
+ "com.apple.ShortcutsActions.SetDefaultCellularPlanAction",
583
+ "com.apple.ShortcutsActions.SetMultitaskingModeAction",
584
+ "com.apple.ShortcutsActions.SetSilentModeAction",
585
+ "com.apple.ShortcutsActions.SetVoiceDataModeAction",
586
+ "com.apple.ShortcutsActions.ShowControlCenterAction",
587
+ "com.apple.ShortcutsActions.StartCallTopHitAction",
588
+ "com.apple.ShortcutsActions.StartFaceTimeAudioCallTopHitAction",
589
+ "com.apple.ShortcutsActions.StartFaceTimeCallTopHitAction",
590
+ "com.apple.ShortcutsActions.StartFaceTimeVideoCallTopHitAction",
591
+ "com.apple.ShortcutsActions.TimeMachineAction",
592
+ "com.apple.ShortcutsActions.ToggleCellularPlanAction",
593
+ "com.apple.ShortcutsActions.TranscribeAudioAction",
594
+ "com.apple.Spotlight.ClearSpotlightIntent",
595
+ "com.apple.Spotlight.SearchFieldEntity",
596
+ "com.apple.Spotlight.SearchSpotlightIntent",
597
+ "com.apple.Spotlight.SearchSpotlightIntentInternal",
598
+ "com.apple.Spotlight.SearchUIContinuationIntent",
599
+ "com.apple.Spotlight.SearchUIOpenKnowledgeIntent",
600
+ "com.apple.Spotlight.ToggleSpotlightIntent",
601
+ "com.apple.SystemIntents.CloseApplicationIntent",
602
+ "com.apple.SystemIntents.LaunchApplicationIntent",
603
+ "com.apple.SystemIntents.ShowHomeScreenIntent",
604
+ "com.apple.TVRemoteUIService.LaunchApplicationIntent",
605
+ "com.apple.TVRemoteUIService.LaunchRemoteIntent",
606
+ "com.apple.TVRemoteUIService.LaunchScreenSaverIntent",
607
+ "com.apple.TVRemoteUIService.PauseContentIntent",
608
+ "com.apple.TVRemoteUIService.ReduceLoudSoundsIntent",
609
+ "com.apple.TVRemoteUIService.SkipContentIntent",
610
+ "com.apple.TVRemoteUIService.SleepAppleTVIntent",
611
+ "com.apple.TVRemoteUIService.SwitchUserAccountIntent",
612
+ "com.apple.TVRemoteUIService.ToggleCaptionsIntent",
613
+ "com.apple.TVRemoteUIService.ToggleSystemAppearanceIntent",
614
+ "com.apple.TVRemoteUIService.WakeAppleTVIntent",
615
+ "com.apple.TransparencySettingsIntents.OpenTransparencyPublicVerificationCodeDeepLink",
616
+ "com.apple.TransparencySettingsIntents.OpenTransparencyStatusDeepLink",
617
+ "com.apple.TransparencySettingsIntents.TransparencyPublicVerificationCodeEntity",
618
+ "com.apple.TransparencySettingsIntents.TransparencySettingsIntents",
619
+ "com.apple.TransparencySettingsIntents.TransparencyStatusEntity",
620
+ "com.apple.UniversalAccess.UASettingsShortcuts.UASetBackgroundSoundIntent",
621
+ "com.apple.UniversalAccess.UASettingsShortcuts.UASetBackgroundSoundsTimerIntent",
622
+ "com.apple.UniversalAccess.UASettingsShortcuts.UASetBackgroundSoundsVolumeIntent",
623
+ "com.apple.UniversalAccess.UASettingsShortcuts.UAToggleAccessibilityKeyboardIntent",
624
+ "com.apple.UniversalAccess.UASettingsShortcuts.UAToggleAlternatePointerActionsIntent",
625
+ "com.apple.UniversalAccess.UASettingsShortcuts.UAToggleAudioDescriptionsIntent",
626
+ "com.apple.UniversalAccess.UASettingsShortcuts.UAToggleBackgroundSoundsIntent",
627
+ "com.apple.UniversalAccess.UASettingsShortcuts.UAToggleCaptionsIntent",
628
+ "com.apple.UniversalAccess.UASettingsShortcuts.UAToggleClassicInvertIntent",
629
+ "com.apple.UniversalAccess.UASettingsShortcuts.UAToggleColorFiltersIntent",
630
+ "com.apple.UniversalAccess.UASettingsShortcuts.UAToggleContrastIntent",
631
+ "com.apple.UniversalAccess.UASettingsShortcuts.UAToggleFullKeyboardAccessIntent",
632
+ "com.apple.UniversalAccess.UASettingsShortcuts.UAToggleHeadPointerIntent",
633
+ "com.apple.UniversalAccess.UASettingsShortcuts.UAToggleHoverTextIntent",
634
+ "com.apple.UniversalAccess.UASettingsShortcuts.UAToggleHoverTypingIntent",
635
+ "com.apple.UniversalAccess.UASettingsShortcuts.UAToggleLiveCaptionsIntent",
636
+ "com.apple.UniversalAccess.UASettingsShortcuts.UAToggleLiveSpeechIntent",
637
+ "com.apple.UniversalAccess.UASettingsShortcuts.UAToggleMonoAudioIntent",
638
+ "com.apple.UniversalAccess.UASettingsShortcuts.UAToggleMotionCuesIntent",
639
+ "com.apple.UniversalAccess.UASettingsShortcuts.UAToggleMouseKeysIntent",
640
+ "com.apple.UniversalAccess.UASettingsShortcuts.UAToggleReduceMotionIntent",
641
+ "com.apple.UniversalAccess.UASettingsShortcuts.UAToggleSlowKeysIntent",
642
+ "com.apple.UniversalAccess.UASettingsShortcuts.UAToggleSmartInvertIntent",
643
+ "com.apple.UniversalAccess.UASettingsShortcuts.UAToggleStickyKeysIntent",
644
+ "com.apple.UniversalAccess.UASettingsShortcuts.UAToggleSwitchControlIntent",
645
+ "com.apple.UniversalAccess.UASettingsShortcuts.UAToggleTransparencyIntent",
646
+ "com.apple.UniversalAccess.UASettingsShortcuts.UAToggleVoiceControlIntent",
647
+ "com.apple.UniversalAccess.UASettingsShortcuts.UAToggleVoiceOverIntent",
648
+ "com.apple.UniversalAccess.UASettingsShortcuts.UAToggleZoomIntent",
649
+ "com.apple.VisionAppIntents.DetectBarcodesIntent",
650
+ "com.apple.VisionAppIntents.FindSimilarImagesIntent",
651
+ "com.apple.VisionAppIntents.RecognizeDocumentIntent",
652
+ "com.apple.VisionAppIntents.RemoveBackgroundIntent",
653
+ "com.apple.VoiceMemos.AudioQualityEntity",
654
+ "com.apple.VoiceMemos.AudioQualityEntity-UpdatableEntity",
655
+ "com.apple.VoiceMemos.ChangeRecordingPlaybackSetting",
656
+ "com.apple.VoiceMemos.ClearDeletedEntity",
657
+ "com.apple.VoiceMemos.ClearDeletedEntity-UpdatableEntity",
658
+ "com.apple.VoiceMemos.CreateFolder",
659
+ "com.apple.VoiceMemos.DeleteFolder",
660
+ "com.apple.VoiceMemos.DeleteRecording",
661
+ "com.apple.VoiceMemos.LocationBasedNamingEntity",
662
+ "com.apple.VoiceMemos.LocationBasedNamingEntity-UpdatableEntity",
663
+ "com.apple.VoiceMemos.OpenFolder",
664
+ "com.apple.VoiceMemos.OpenResetAnalyticsIdentifierEntity",
665
+ "com.apple.VoiceMemos.PlaybackVoiceMemoIntent",
666
+ "com.apple.VoiceMemos.RCCombineRecordings",
667
+ "com.apple.VoiceMemos.RCControlCenterToggleRecording",
668
+ "com.apple.VoiceMemos.RCImportRecording",
669
+ "com.apple.VoiceMemos.RCRecordingEntity",
670
+ "com.apple.VoiceMemos.RecordVoiceMemoIntent",
671
+ "com.apple.VoiceMemos.ResetAnalyticsIdentifierEntity",
672
+ "com.apple.VoiceMemos.SearchRecordings",
673
+ "com.apple.VoiceMemos.SelectRecording",
674
+ "com.apple.VoiceMemos.StopRecording",
675
+ "com.apple.VoiceMemos.ToggleRecording",
676
+ "com.apple.VoiceMemos.WFAppSettingEntityUpdaterAction",
677
+ "com.apple.VoiceMemos.WFGetAppSettingAction",
678
+ "com.apple.WindowManager.AppExposeAction",
679
+ "com.apple.WindowManager.CornersTileAction",
680
+ "com.apple.WindowManager.MissionControlAction",
681
+ "com.apple.WindowManager.ShowDesktopAction",
682
+ "com.apple.WindowManager.StageManagerToggleIntent",
683
+ "com.apple.WindowManager.ThreeUpTileAction",
684
+ "com.apple.WindowManager.TwoUpTileAction",
685
+ "com.apple.WritingTools.WritingToolsAppIntentsExtension.AdjustToneIntent",
686
+ "com.apple.WritingTools.WritingToolsAppIntentsExtension.ComposeIntent",
687
+ "com.apple.WritingTools.WritingToolsAppIntentsExtension.FormatListIntent",
688
+ "com.apple.WritingTools.WritingToolsAppIntentsExtension.FormatTableIntent",
689
+ "com.apple.WritingTools.WritingToolsAppIntentsExtension.ProofreadIntent",
690
+ "com.apple.WritingTools.WritingToolsAppIntentsExtension.QuestionAnswerIntent",
691
+ "com.apple.WritingTools.WritingToolsAppIntentsExtension.RewriteTextIntent",
692
+ "com.apple.WritingTools.WritingToolsAppIntentsExtension.SummarizeTextIntent",
693
+ "com.apple.calculator.LaunchCalculatorOpenIntent",
694
+ "com.apple.calls.PhoneAppIntentsExtension.AnswerCallIntent",
695
+ "com.apple.calls.PhoneAppIntentsExtension.CallEmergencyDestination",
696
+ "com.apple.calls.PhoneAppIntentsExtension.CallMessage",
697
+ "com.apple.calls.PhoneAppIntentsExtension.CallRecord",
698
+ "com.apple.calls.PhoneAppIntentsExtension.CreateConferenceCallIntent",
699
+ "com.apple.calls.PhoneAppIntentsExtension.EndCallIntent",
700
+ "com.apple.calls.PhoneAppIntentsExtension.PrepareCallMessagesIntent",
701
+ "com.apple.calls.PhoneAppIntentsExtension.PrepareReadCallRecordsIntent",
702
+ "com.apple.calls.PhoneAppIntentsExtension.SetCallAudioRouteIntent",
703
+ "com.apple.calls.PhoneAppIntentsExtension.StartEmergencyCallIntent",
704
+ "com.apple.calls.PhoneAppIntentsExtension.StartFaceTimeCallIntent",
705
+ "com.apple.calls.PhoneAppIntentsExtension.StartTelephonyCallIntent",
706
+ "com.apple.campo.ClearSpotlightIntent",
707
+ "com.apple.campo.ResumeConversationIntent",
708
+ "com.apple.campo.SearchFieldEntity",
709
+ "com.apple.campo.SearchSpotlightIntent",
710
+ "com.apple.campo.SearchSpotlightIntentInternal",
711
+ "com.apple.campo.SearchUIContinuationIntent",
712
+ "com.apple.campo.SearchUIOpenKnowledgeIntent",
713
+ "com.apple.campo.ToggleSpotlightIntent",
714
+ "com.apple.clock.AddWorldClockIntent",
715
+ "com.apple.clock.AssistantAlarmEntity",
716
+ "com.apple.clock.AssistantCancelTimerIntent",
717
+ "com.apple.clock.AssistantCreateAlarmIntent",
718
+ "com.apple.clock.AssistantCreateTimerIntent",
719
+ "com.apple.clock.AssistantDeleteAlarmIntent",
720
+ "com.apple.clock.AssistantLapStopwatchIntent",
721
+ "com.apple.clock.AssistantPauseTimerIntent",
722
+ "com.apple.clock.AssistantResetStopwatchIntent",
723
+ "com.apple.clock.AssistantResumeTimerIntent",
724
+ "com.apple.clock.AssistantStartStopwatchIntent",
725
+ "com.apple.clock.AssistantStopStopwatchIntent",
726
+ "com.apple.clock.CancelTimerIntent",
727
+ "com.apple.clock.DeleteAlarmIntent",
728
+ "com.apple.clock.DismissAlarmIntent",
729
+ "com.apple.clock.GetCurrentTimerDetailsIntent",
730
+ "com.apple.clock.GetTimeForCityIntent",
731
+ "com.apple.clock.LapStopwatchIntent",
732
+ "com.apple.clock.OpenAlarmIntent",
733
+ "com.apple.clock.OpenTab",
734
+ "com.apple.clock.OpenTabIntent",
735
+ "com.apple.clock.PauseTimerIntent",
736
+ "com.apple.clock.RemoveWorldClockIntent",
737
+ "com.apple.clock.ResetStopwatchIntent",
738
+ "com.apple.clock.ResumeTimerIntent",
739
+ "com.apple.clock.SnoozeAlarmIntent",
740
+ "com.apple.clock.StartStopwatchIntent",
741
+ "com.apple.clock.StopStopwatchIntent",
742
+ "com.apple.clock.TimerEntity",
743
+ "com.apple.clock.UpdateAlarmIntent",
744
+ "com.apple.clock.UpdateTimerIntent",
745
+ "com.apple.controlcenter.DisplaySleepIntent",
746
+ "com.apple.controlcenter.LockScreenIntent",
747
+ "com.apple.controlcenter.ScreenSaverIntent",
748
+ "com.apple.controlcenter.SetDarkModeEnabledIntent",
749
+ "com.apple.controlcenter.SetNightShiftEnabledIntent",
750
+ "com.apple.controlcenter.SetTrueToneEnabledIntent",
751
+ "com.apple.dock.SetDockAutoHideEnabledIntent",
752
+ "com.apple.donotdisturb.DoNotDisturbAppIntents.FocusEntity",
753
+ "com.apple.donotdisturb.DoNotDisturbAppIntents.OpenFocusSettingsDynamicDeepLinks",
754
+ "com.apple.donotdisturb.DoNotDisturbAppIntents.SetFocusState",
755
+ "com.apple.facetime.facetime",
756
+ "com.apple.finder.CompressItemsIntent",
757
+ "com.apple.finder.CopyItemsIntent",
758
+ "com.apple.finder.CreateFolderIntent",
759
+ "com.apple.finder.DuplicateItemsIntent",
760
+ "com.apple.finder.GetInfoIntent",
761
+ "com.apple.finder.GetLocationIntent",
762
+ "com.apple.finder.GetSelectedItemsIntent",
763
+ "com.apple.finder.GoToEnclosingFolderIntent",
764
+ "com.apple.finder.GoToFolderIntent",
765
+ "com.apple.finder.GoToLocationIntent",
766
+ "com.apple.finder.MoveItemsIntent",
767
+ "com.apple.finder.OpenItemIntent",
768
+ "com.apple.finder.RenameItemIntent",
769
+ "com.apple.finder.RevealItemsIntent",
770
+ "com.apple.finder.SearchInBrowserIntent",
771
+ "com.apple.finder.TrashItemsIntent",
772
+ "com.apple.findmy.FriendSelectorIntent",
773
+ "com.apple.findmy.Intent",
774
+ "com.apple.findmy.ItemEntity",
775
+ "com.apple.findmy.ItemSelectorIntent",
776
+ "com.apple.findmy.PersonEntity",
777
+ "com.apple.findmy.WidgetItemEntity",
778
+ "com.apple.findmy.WidgetPersonEntity",
779
+ "com.apple.freeform.CRLAddItemToBoardIntent",
780
+ "com.apple.freeform.CRLAddStickyNoteToBoardIntent",
781
+ "com.apple.freeform.CRLAddTextToBoardIntent",
782
+ "com.apple.freeform.CRLBoardEntity",
783
+ "com.apple.freeform.CRLChangeBoardCanvasGridIntent",
784
+ "com.apple.freeform.CRLChangeBoardObjectConnectorsIntent",
785
+ "com.apple.freeform.CRLChangeSelectionColorIntent",
786
+ "com.apple.freeform.CRLChangeSelectionFontSizeIntent",
787
+ "com.apple.freeform.CRLChangeSelectionFontStyleIntent",
788
+ "com.apple.freeform.CRLCreateBoardIntent",
789
+ "com.apple.freeform.CRLDeleteBoardIntent",
790
+ "com.apple.freeform.CRLFavoriteBoardIntent_v2",
791
+ "com.apple.freeform.CRLInsertFilesToBoardIntent",
792
+ "com.apple.freeform.CRLInsertPhotosToBoardIntent",
793
+ "com.apple.freeform.CRLInsertShapeToBoardIntent",
794
+ "com.apple.freeform.CRLInsertTextToBoardIntent",
795
+ "com.apple.freeform.CRLInsertURLToBoardIntent",
796
+ "com.apple.freeform.CRLOpenBoardIntent",
797
+ "com.apple.freeform.CRLRenameBoardIntent",
798
+ "com.apple.freeform.CRLResizeSelectionFontIntent",
799
+ "com.apple.freeform.CRLResizeSelectionFontIntent_v2",
800
+ "com.apple.freeform.CRLUpdateBoardIntent",
801
+ "com.apple.freeform.CRLUtilitiesIntent",
802
+ "com.apple.freeform.CRLiOSCreateBoardIntent",
803
+ "com.apple.freeform.CRLiOSOpenBoardIntent",
804
+ "com.apple.generativeassistanttools.GenerativeAssistantExtension.GenerateKnowledgeResponseIntent",
805
+ "com.apple.generativeassistanttools.GenerativeAssistantExtension.GenerateRichContentFromMediaIntent",
806
+ "com.apple.generativeassistanttools.GenerativeAssistantExtension.GenerateRichContentIntent",
807
+ "com.apple.generativeassistanttools.GenerativeAssistantExtension.OnScreenContentIntent",
808
+ "com.apple.generativeassistanttools.GenerativeAssistantExtension.PrewarmGenerativeAssistantExtensionIntent",
809
+ "com.apple.gms.GenerativePartnerPrototypeExtension.GenerativePartnerPrototypeIntentChatGPT",
810
+ "com.apple.helpviewer.CollectionOpenIntent",
811
+ "com.apple.iBooksX.AudiobookAppEntity",
812
+ "com.apple.iBooksX.AudiobookEntity",
813
+ "com.apple.iBooksX.AudiobookSleepTimerIntent",
814
+ "com.apple.iBooksX.BookAppEntity",
815
+ "com.apple.iBooksX.BookReaderChangeThemeIntent",
816
+ "com.apple.iBooksX.BookReaderNavigatePageInBookIntent",
817
+ "com.apple.iBooksX.BookReaderNavigatePagesIntent",
818
+ "com.apple.iBooksX.BookSettingsEntity",
819
+ "com.apple.iBooksX.BookSettingsEntity-UpdatableEntity",
820
+ "com.apple.iBooksX.ChangeFontSizeIntent",
821
+ "com.apple.iBooksX.CloseBookIntent",
822
+ "com.apple.iBooksX.DeepLinkIntent",
823
+ "com.apple.iBooksX.DefaultCollectionEntity",
824
+ "com.apple.iBooksX.OpenAudioIntent",
825
+ "com.apple.iBooksX.OpenBookIntent",
826
+ "com.apple.iBooksX.OpenDefaultCollectionIntent",
827
+ "com.apple.iBooksX.OpenMostRecentBookIntent",
828
+ "com.apple.iBooksX.OpenSpecificBookIntent",
829
+ "com.apple.iBooksX.OpenTabBarItemIntent",
830
+ "com.apple.iBooksX.OpenTableOfContentsIntent",
831
+ "com.apple.iBooksX.PauseCurrentAudiobookIntent",
832
+ "com.apple.iBooksX.PlayAudioIntent",
833
+ "com.apple.iBooksX.PlayAudiobookIntent",
834
+ "com.apple.iBooksX.PlayMostRecentAudiobookIntent",
835
+ "com.apple.iBooksX.PlaySpecificAudiobookIntent",
836
+ "com.apple.iBooksX.SearchBooksAppIntent",
837
+ "com.apple.iBooksX.SearchBooksIntent",
838
+ "com.apple.iBooksX.UpdateBookSettingsIntent",
839
+ "com.apple.iBooksX.openin",
840
+ "com.apple.iCal.CreateCalendarIntent",
841
+ "com.apple.iCal.CreateEventIntent",
842
+ "com.apple.iCal.DeleteCalendarsIntent",
843
+ "com.apple.iCal.DeleteEventIntent",
844
+ "com.apple.iCal.EditEventIntent",
845
+ "com.apple.iCal.EmailAttendeesIntent",
846
+ "com.apple.iCal.EmailOrganizerIntent",
847
+ "com.apple.iCal.EventEntity",
848
+ "com.apple.iCal.FetchTransferableEventByURLIntent",
849
+ "com.apple.iCal.FetchTransferableEventsInRangeIntent",
850
+ "com.apple.iCal.HighlightEventIntent",
851
+ "com.apple.iCal.InboxItemEntity",
852
+ "com.apple.iCal.JoinEventIntent",
853
+ "com.apple.iCal.ListEventsIntent",
854
+ "com.apple.iCal.OpenCalendarEditorIntent",
855
+ "com.apple.iCal.OpenCalendarViewIntent",
856
+ "com.apple.iCal.OpenDateIntent",
857
+ "com.apple.iCal.OpenEventDetailsIntent",
858
+ "com.apple.iCal.OpenEventEditorIntent",
859
+ "com.apple.iCal.RespondToInboxItemIntent",
860
+ "com.apple.iCal.SetCalendarFocusConfiguration",
861
+ "com.apple.iCal.TestComposeEngineIntent",
862
+ "com.apple.iCal.TransferableCalendarEntity",
863
+ "com.apple.iCal.TransferableSourceEntity",
864
+ "com.apple.iWork.Numbers.TNDocumentBackgroundExportIntent",
865
+ "com.apple.iWork.Numbers.TNNewDocumentIntent",
866
+ "com.apple.iWork.Numbers.TNiOSAddValuesToFormIntent",
867
+ "com.apple.iWork.Numbers.TNiOSAddValuesToSpreadsheetIntent",
868
+ "com.apple.iWork.Numbers.TNiOSOpenAnyDocumentIntent",
869
+ "com.apple.iWork.Numbers.TSADocumentCreateIntent",
870
+ "com.apple.iWork.Numbers.TSADocumentOpenIntent",
871
+ "com.apple.iWork.Pages.TPDocumentBackgroundExportIntent",
872
+ "com.apple.iWork.Pages.TPDocumentBeginPresenterModeIntent",
873
+ "com.apple.iWork.Pages.TPNewDocumentIntent",
874
+ "com.apple.iWork.Pages.TPiOSOpenAnyDocumentIntent",
875
+ "com.apple.iWork.Pages.TSADocumentCreateIntent",
876
+ "com.apple.iWork.Pages.TSADocumentOpenIntent",
877
+ "com.apple.intelligenceflow.GeoFlowTools.GeoFlowTools.StartNavigationFlowTool|com.apple.Maps",
878
+ "com.apple.intelligenceflow.GetCurrentLocationFlowToolPlugin.GetCurrentLocationFlowToolPlugin.GetCurrentLocationTool",
879
+ "com.apple.intelligenceflow.IntelligenceFlowAppIntentsExtension.OpenApplication",
880
+ "com.apple.intelligenceflow.IntelligenceFlowAppIntentsExtension.OpenFile",
881
+ "com.apple.intelligenceflow.IntelligenceFlowAppIntentsExtension.OpenURL",
882
+ "com.apple.intelligenceplatform.IntelligencePlatform.IntelligencePlatformDataActionsAppIntentsExtension.CalculateAppUsageIntent",
883
+ "com.apple.intelligenceplatform.IntelligencePlatform.IntelligencePlatformDataActionsAppIntentsExtension.FindSportsEvents",
884
+ "com.apple.intelligenceplatformd.PersonalKnowledgeTool",
885
+ "com.apple.journal.AddCurrentLocationEntity",
886
+ "com.apple.journal.AddCurrentLocationEntity-UpdatableEntity",
887
+ "com.apple.journal.AddCurrentLocationIntent",
888
+ "com.apple.journal.AlwaysUseMomentDateEntity",
889
+ "com.apple.journal.AlwaysUseMomentDateEntity-UpdatableEntity",
890
+ "com.apple.journal.AlwaysUseMomentDateIntent",
891
+ "com.apple.journal.CreateEntryAudioIntent",
892
+ "com.apple.journal.CreateEntryIntent",
893
+ "com.apple.journal.OpenEntryEntityIntent",
894
+ "com.apple.journal.OpenJournalSettingsDeeplinks",
895
+ "com.apple.journal.RefreshIntent",
896
+ "com.apple.journal.SaveToPhotosEntity",
897
+ "com.apple.journal.SaveToPhotosEntity-UpdatableEntity",
898
+ "com.apple.journal.SaveToPhotosIntent",
899
+ "com.apple.journal.SearchEntriesIntent",
900
+ "com.apple.journal.SkipJournalingSuggestionsEntity",
901
+ "com.apple.journal.SkipJournalingSuggestionsEntity-UpdatableEntity",
902
+ "com.apple.journal.SkipJournalingSuggestionsIntent",
903
+ "com.apple.journal.StreaksWidgetConfigurationIntent",
904
+ "com.apple.mail.ArchiveMessageIntent",
905
+ "com.apple.mail.ComposeMessageIntent",
906
+ "com.apple.mail.DeleteDraftIntent",
907
+ "com.apple.mail.DeleteMessageIntent",
908
+ "com.apple.mail.DraftMessageEntity",
909
+ "com.apple.mail.ForwardMessageIntent",
910
+ "com.apple.mail.MailFocusConfigurationAction",
911
+ "com.apple.mail.MailMessage",
912
+ "com.apple.mail.MailMessageEntity",
913
+ "com.apple.mail.OpenDraftComposerIntent",
914
+ "com.apple.mail.OpenDraftURLIntent",
915
+ "com.apple.mail.OpenMessageURLIntent",
916
+ "com.apple.mail.OpenSmartMailboxIntent",
917
+ "com.apple.mail.ReplyMessageIntent",
918
+ "com.apple.mail.SaveDraftIntent",
919
+ "com.apple.mail.SearchMailEntityIntent",
920
+ "com.apple.mail.SearchMailIntent",
921
+ "com.apple.mail.SendDraftIntent",
922
+ "com.apple.mail.SendMail",
923
+ "com.apple.mail.SetMailMessageIsRead",
924
+ "com.apple.mail.UndoSendMessageIntent",
925
+ "com.apple.mail.UnsubscribeMessageIntent",
926
+ "com.apple.mail.UpdateDraftIntent",
927
+ "com.apple.mail.UpdateMessageIntent",
928
+ "com.apple.mobilenotes.SharingExtension",
929
+ "com.apple.mobilephone.call",
930
+ "com.apple.mobileslideshow.StreamShareService",
931
+ "com.apple.mobiletimer-framework.MobileTimerIntents.MTCreateAlarmIntent",
932
+ "com.apple.mobiletimer-framework.MobileTimerIntents.MTGetAlarmsIntent",
933
+ "com.apple.mobiletimer-framework.MobileTimerIntents.MTToggleAlarmIntent",
934
+ "com.apple.musicrecognition.RecognizeMusicIntent",
935
+ "com.apple.musicrecognition.mac.RecognizeAudioIntent",
936
+ "com.apple.news.AutoDownloadAudioStoriesEntity",
937
+ "com.apple.news.AutoDownloadAudioStoriesEntity-UpdatableEntity",
938
+ "com.apple.news.AutoDownloadEntity",
939
+ "com.apple.news.AutoDownloadEntity-UpdatableEntity",
940
+ "com.apple.news.AutoDownloadMagazineIssuesEntity",
941
+ "com.apple.news.AutoDownloadMagazineIssuesEntity-UpdatableEntity",
942
+ "com.apple.news.AutoDownloadPuzzlesEntity",
943
+ "com.apple.news.AutoDownloadPuzzlesEntity-UpdatableEntity",
944
+ "com.apple.news.AutoDownloadRecipesEntity",
945
+ "com.apple.news.AutoDownloadRecipesEntity-UpdatableEntity",
946
+ "com.apple.news.AutoDownloadSavedStoriesEntity",
947
+ "com.apple.news.AutoDownloadSavedStoriesEntity-UpdatableEntity",
948
+ "com.apple.news.AutoDownloadStoriesInFeedsEntity",
949
+ "com.apple.news.AutoDownloadStoriesInFeedsEntity-UpdatableEntity",
950
+ "com.apple.news.BlockIntent",
951
+ "com.apple.news.DecreaseTextSizeIntent",
952
+ "com.apple.news.FollowIntent",
953
+ "com.apple.news.GameCenterEntity",
954
+ "com.apple.news.GameCenterEntity-UpdatableEntity",
955
+ "com.apple.news.GetIngredientsAppIntent",
956
+ "com.apple.news.GetRecentRecipesAppIntent",
957
+ "com.apple.news.GetSavedRecipesAppIntent",
958
+ "com.apple.news.INPlayMediaIntent",
959
+ "com.apple.news.IncreaseTextSizeIntent",
960
+ "com.apple.news.NewsSettingsAutomaticDownloadDynamicDeepLinks",
961
+ "com.apple.news.NewsSettingsDynamicDeepLinks",
962
+ "com.apple.news.NewsTabDeepLink",
963
+ "com.apple.news.OpenArticleIntent",
964
+ "com.apple.news.OpenFeedIntent",
965
+ "com.apple.news.OpenHistoryIntent",
966
+ "com.apple.news.OpenNewsSettingsDynamicDeepLinks",
967
+ "com.apple.news.OpenRecipeIntent",
968
+ "com.apple.news.OpenSavedIntent",
969
+ "com.apple.news.OpenSavedRecipesIntent",
970
+ "com.apple.news.OpenStaticFeed",
971
+ "com.apple.news.OptimizeStorageEntity",
972
+ "com.apple.news.OptimizeStorageEntity-UpdatableEntity",
973
+ "com.apple.news.PlayArticleIntent",
974
+ "com.apple.news.RestrictStoriesInTodaySettingEntity",
975
+ "com.apple.news.RestrictStoriesInTodaySettingEntity-UpdatableEntity",
976
+ "com.apple.news.SaveArticleIntent",
977
+ "com.apple.news.SaveRecipeAppIntent",
978
+ "com.apple.news.SelectIngredientAppIntent",
979
+ "com.apple.news.ShowDetailsAppIntent",
980
+ "com.apple.news.ShowIngredientsAppIntent",
981
+ "com.apple.news.ShowInstructionsAppIntent",
982
+ "com.apple.news.ShowNextStepAppIntent",
983
+ "com.apple.news.ShowPreviousStepAppIntent",
984
+ "com.apple.news.ShowSpecificStepIntent",
985
+ "com.apple.news.StartCookingAppIntent",
986
+ "com.apple.news.StopCookingAppIntent",
987
+ "com.apple.news.TagIntent",
988
+ "com.apple.news.TodayIntent",
989
+ "com.apple.news.ToggleAudioPlaybackIntent",
990
+ "com.apple.news.UnblockIntent",
991
+ "com.apple.news.UnsaveArticleIntent",
992
+ "com.apple.news.UnsaveRecipeAppIntent",
993
+ "com.apple.news.UnselectIngredientAppIntent",
994
+ "com.apple.news.WFAppSettingEntityUpdaterAction",
995
+ "com.apple.news.WFGetAppSettingAction",
996
+ "com.apple.omniSearch.SearchToolExtension.OpenFlightReservationEntityIntent",
997
+ "com.apple.omniSearch.SearchToolExtension.OpenGenericEventEntityIntent",
998
+ "com.apple.omniSearch.SearchToolExtension.OpenHotelReservationEntityIntent",
999
+ "com.apple.omniSearch.SearchToolExtension.OpenIDCardBusinessEntityIntent",
1000
+ "com.apple.omniSearch.SearchToolExtension.OpenIDCardPersonalEntityIntent",
1001
+ "com.apple.omniSearch.SearchToolExtension.OpenMediaEntityIntent",
1002
+ "com.apple.omniSearch.SearchToolExtension.OpenRestaurantReservationEntityIntent",
1003
+ "com.apple.omniSearch.SearchToolExtension.OpenSearchSpotlightEntityIntent",
1004
+ "com.apple.omniSearch.SearchToolExtension.OpenTicketedShowEntityIntent",
1005
+ "com.apple.omniSearch.SearchToolExtension.OpenTicketedTransportationEntityIntent",
1006
+ "com.apple.omniSearch.SearchToolExtension.OpenVehicleReservationEntityIntent",
1007
+ "com.apple.omniSearch.SearchToolExtension.SearchTool",
1008
+ "com.apple.omniSearch.SearchToolExtension.SearchToolControl",
1009
+ "com.apple.omniSearch.SearchToolExtension.SearchToolMCGrounding",
1010
+ "com.apple.omniSearch.SearchToolExtension.SearchToolMCQU",
1011
+ "com.apple.podcasts.AddAudioToLibraryIntent",
1012
+ "com.apple.podcasts.EpisodeEntity",
1013
+ "com.apple.podcasts.FollowShowAppIntent",
1014
+ "com.apple.podcasts.OpenAppLocationAppIntent",
1015
+ "com.apple.podcasts.OpenAudioAppIntent",
1016
+ "com.apple.podcasts.OpenChannelAppIntent",
1017
+ "com.apple.podcasts.OpenEpisodeAppIntent",
1018
+ "com.apple.podcasts.OpenShowAppIntent",
1019
+ "com.apple.podcasts.PlayAudioIntent",
1020
+ "com.apple.podcasts.PlayPauseStationAppIntent",
1021
+ "com.apple.podcasts.PlayPauseWidgetIntent",
1022
+ "com.apple.podcasts.PodcastCollectionEntity",
1023
+ "com.apple.podcasts.SearchPodcastsAppIntent",
1024
+ "com.apple.podcasts.SelectLibraryListAppIntent",
1025
+ "com.apple.podcasts.SelectWidgetShowAppIntent",
1026
+ "com.apple.podcasts.ShowEntity",
1027
+ "com.apple.podcasts.WarmupAudioQueueIntent",
1028
+ "com.apple.printcenter.CancelPrintJob",
1029
+ "com.apple.printcenter.LaunchPrintCenterAppIntent",
1030
+ "com.apple.printcenter.PrintDocuments",
1031
+ "com.apple.reminders.AddOrRemoveTagsAppIntent",
1032
+ "com.apple.reminders.CompleteReminderAppIntent",
1033
+ "com.apple.reminders.CompleteRemindersAppIntent",
1034
+ "com.apple.reminders.CreateCustomSmartListAppIntent",
1035
+ "com.apple.reminders.CreateGroupAppIntent",
1036
+ "com.apple.reminders.CreateSectionAppIntent",
1037
+ "com.apple.reminders.DeleteListsAppIntent",
1038
+ "com.apple.reminders.DeleteRemindersAppIntent",
1039
+ "com.apple.reminders.DeleteRemindersListGroupsAppIntent",
1040
+ "com.apple.reminders.DeleteSectionsAppIntent",
1041
+ "com.apple.reminders.GetDefaultListAppIntent",
1042
+ "com.apple.reminders.GroupEntity",
1043
+ "com.apple.reminders.GroupEntity-UpdatableEntity",
1044
+ "com.apple.reminders.INAddTasksIntent",
1045
+ "com.apple.reminders.INSetTaskAttributeIntent",
1046
+ "com.apple.reminders.ListEntity",
1047
+ "com.apple.reminders.ListEntity-UpdatableEntity",
1048
+ "com.apple.reminders.MoveRemindersAppIntent",
1049
+ "com.apple.reminders.MoveRemindersToListAppIntent",
1050
+ "com.apple.reminders.MoveRemindersToParentReminderAppIntent",
1051
+ "com.apple.reminders.MoveRemindersToSectionAppIntent",
1052
+ "com.apple.reminders.OpenGroupAppIntent",
1053
+ "com.apple.reminders.OpenReminderAppIntent",
1054
+ "com.apple.reminders.OpenSmartListAppIntent",
1055
+ "com.apple.reminders.ReminderEntity",
1056
+ "com.apple.reminders.RemotePreferencesEntity",
1057
+ "com.apple.reminders.SectionEntity",
1058
+ "com.apple.reminders.SectionEntity-UpdatableEntity",
1059
+ "com.apple.reminders.SmartListEntity",
1060
+ "com.apple.reminders.SnoozeRemindersAppIntent",
1061
+ "com.apple.reminders.TTRCreateListAppIntent",
1062
+ "com.apple.reminders.TTRCreateReminderAppIntent",
1063
+ "com.apple.reminders.TTROpenListAppIntent",
1064
+ "com.apple.reminders.TTROpenSmartListAppIntent",
1065
+ "com.apple.reminders.TTRReminderSetCompletedIntent",
1066
+ "com.apple.reminders.TTRSearchRemindersAppIntent",
1067
+ "com.apple.reminders.UpdateGroupAppIntent",
1068
+ "com.apple.reminders.UpdateListAppIntent",
1069
+ "com.apple.reminders.UpdateListAutoCategorizeAppIntent",
1070
+ "com.apple.reminders.UpdateListIsPinnedAppIntent",
1071
+ "com.apple.reminders.UpdateListLayoutAppIntent",
1072
+ "com.apple.reminders.UpdateListShowsCompletedAppIntent",
1073
+ "com.apple.reminders.UpdateListSortingStyleAppIntent",
1074
+ "com.apple.reminders.UpdateReminderAppIntent",
1075
+ "com.apple.reminders.UpdateSectionAppIntent",
1076
+ "com.apple.reminders.UpdateSmartListAppIntent",
1077
+ "com.apple.reminders.UpdateSmartListIsHiddenAppIntent",
1078
+ "com.apple.screenshot.launcher.CaptureScreenIntent",
1079
+ "com.apple.screenshot.launcher.CaptureSelectionIntent",
1080
+ "com.apple.screenshot.launcher.CaptureSelectionWithVisualIntelligenceIntent",
1081
+ "com.apple.screenshot.launcher.CustomCaptureConfiguration",
1082
+ "com.apple.screenshot.launcher.CustomCaptureIntent",
1083
+ "com.apple.screenshot.launcher.CustomRecordConfiguration",
1084
+ "com.apple.screenshot.launcher.CustomRecordIntent",
1085
+ "com.apple.screenshot.launcher.RecordScreenIntent",
1086
+ "com.apple.screenshot.launcher.RecordSelectionIntent",
1087
+ "com.apple.screenshot.launcher.ScreenshotToolbarIntent",
1088
+ "com.apple.shortcuts.AddShortcutToHomeScreenAction",
1089
+ "com.apple.shortcuts.ChangeShortcutIconAction",
1090
+ "com.apple.shortcuts.CreateFolderAction",
1091
+ "com.apple.shortcuts.CreateShortcutiCloudLinkAction",
1092
+ "com.apple.shortcuts.CreateWorkflowAction",
1093
+ "com.apple.shortcuts.DeleteWorkflowAction",
1094
+ "com.apple.shortcuts.GetShortcutAttributesAction",
1095
+ "com.apple.shortcuts.MoveShortcutToFolderAction",
1096
+ "com.apple.shortcuts.OpenAppIntent",
1097
+ "com.apple.shortcuts.OpenNavigationDestinationAction",
1098
+ "com.apple.shortcuts.OpenShortcutsStaticDeepLinks",
1099
+ "com.apple.shortcuts.OpenWorkflowAction",
1100
+ "com.apple.shortcuts.RenameShortcutAction",
1101
+ "com.apple.shortcuts.RunShortcutConfigurationIntent",
1102
+ "com.apple.shortcuts.RunShortcutFromCollectionIntent",
1103
+ "com.apple.shortcuts.RunShortcutIntent",
1104
+ "com.apple.shortcuts.SearchActionDrawerAction",
1105
+ "com.apple.shortcuts.SearchShortcutsAction",
1106
+ "com.apple.shortcuts.SetShortcutAttributesAction",
1107
+ "com.apple.shortcuts.ShortcutsFolderConfigurationIntent",
1108
+ "com.apple.shortcuts.StopWorkflowAction",
1109
+ "com.apple.siri.AssistantSettingsControls.AlwaysPrintSiriResponseEntity-UpdatableEntity",
1110
+ "com.apple.siri.AssistantSettingsControls.AlwaysShowSpeechEntity-UpdatableEntity",
1111
+ "com.apple.siri.AssistantSettingsControls.AskSiriEntity",
1112
+ "com.apple.siri.AssistantSettingsControls.KeyboardShortcutEntity",
1113
+ "com.apple.siri.AssistantSettingsControls.OpenAlwaysPrintSiriResponseEntity",
1114
+ "com.apple.siri.AssistantSettingsControls.OpenAlwaysShowSpeechEntity",
1115
+ "com.apple.siri.AssistantSettingsControls.OpenAskSiriEntity",
1116
+ "com.apple.siri.AssistantSettingsControls.OpenKeyboardShortcutEntity",
1117
+ "com.apple.siri.AssistantSettingsControls.OpenSiriAndDictationHistoryEntity",
1118
+ "com.apple.siri.AssistantSettingsControls.OpenSiriLanguageEntity",
1119
+ "com.apple.siri.AssistantSettingsControls.OpenSiriSuggestionsAndPrivacyEntity",
1120
+ "com.apple.siri.AssistantSettingsControls.OpenSiriSuggestionsAndPrivacyForAppEntity",
1121
+ "com.apple.siri.AssistantSettingsControls.OpenSiriSuggestionsShowInAppEntity",
1122
+ "com.apple.siri.AssistantSettingsControls.OpenSiriVoiceEntity",
1123
+ "com.apple.siri.AssistantSettingsControls.OpenVoiceFeedbackToggleEntity",
1124
+ "com.apple.siri.AssistantSettingsControls.SiriAndDictationHistoryEntity",
1125
+ "com.apple.siri.AssistantSettingsControls.SiriLanguageEntity",
1126
+ "com.apple.siri.AssistantSettingsControls.SiriSuggestionsAndPrivacyEntity",
1127
+ "com.apple.siri.AssistantSettingsControls.SiriSuggestionsAndPrivacyForAppEntity",
1128
+ "com.apple.siri.AssistantSettingsControls.SiriSuggestionsAndPrivacyForAppEntity-UpdatableEntity",
1129
+ "com.apple.siri.AssistantSettingsControls.SiriSuggestionsShowInAppEntity",
1130
+ "com.apple.siri.AssistantSettingsControls.SiriSuggestionsShowInAppEntity-UpdatableEntity",
1131
+ "com.apple.siri.AssistantSettingsControls.SiriVoiceEntity",
1132
+ "com.apple.siri.AssistantSettingsControls.VoiceFeedbackToggleEntity-UpdatableEntity",
1133
+ "com.apple.siri.AudioAppIntentsExtension.SiriKitAddAudioToLibraryIntent",
1134
+ "com.apple.siri.AudioAppIntentsExtension.SiriKitAddAudioToPlaylistIntent",
1135
+ "com.apple.siri.AudioAppIntentsExtension.SiriKitPlayAudioIntent",
1136
+ "com.apple.siri.AudioAppIntentsExtension.SiriKitUpdateAudioAffinityIntent",
1137
+ "com.apple.siri.AudioAppIntentsExtension.WholeHouseAudioPlaceholderIntent",
1138
+ "com.apple.siri.PhotosFlowTools.SiriPhotosFlowTools.EditPhotoWarmth|com.apple.Photos",
1139
+ "com.apple.siri.SiriAppLaunchFlowTools.SiriAppLaunchFlowTools.InteractiveInstallApplicationTool",
1140
+ "com.apple.siri.SiriAudioTools.SiriAudioTools.AddAudioToLibraryTool|com.apple.Music",
1141
+ "com.apple.siri.SiriAudioTools.SiriAudioTools.AddAudioToLibraryTool|com.apple.podcasts",
1142
+ "com.apple.siri.SiriAudioTools.SiriAudioTools.AddAudioToPlaylistTool|com.apple.Music",
1143
+ "com.apple.siri.SiriAudioTools.SiriAudioTools.PlayAudioTool|com.apple.Music",
1144
+ "com.apple.siri.SiriAudioTools.SiriAudioTools.PlayAudioTool|com.apple.iBooksX",
1145
+ "com.apple.siri.SiriAudioTools.SiriAudioTools.PlayAudioTool|com.apple.podcasts",
1146
+ "com.apple.siri.SiriAudioTools.SiriAudioTools.UpdateAudioAffinityTool|com.apple.Music",
1147
+ "com.apple.siri.SiriCrisisAppIntentsExtension._SiriCrisisPlaceholderIntent",
1148
+ "com.apple.siri.SiriCrisisFlowTools.SiriCrisisFlowTools.CrisisDialogFlowTool",
1149
+ "com.apple.siri.SiriGeo.SiriGeoAppIntentExtension.CurrentLocationEntity",
1150
+ "com.apple.siri.SiriGeo.SiriGeoAppIntentExtension.NavigationSessionEntity",
1151
+ "com.apple.siri.SiriGeo.SiriGeoAppIntentExtension.SiriGeoAppIntent",
1152
+ "com.apple.siri.SiriGeo.SiriGeoAppIntentExtension.ThirdPartyStartNavigationIntent",
1153
+ "com.apple.siri.SiriIdentityInternal.SiriIdentityInternal.WhoAmITool",
1154
+ "com.apple.siri.SiriMailFlowTools.SiriMailFlowTools.CreateDraftMailTool|com.apple.mail",
1155
+ "com.apple.siri.SiriMailFlowTools.SiriMailFlowTools.ForwardDraftMailTool|com.apple.mail",
1156
+ "com.apple.siri.SiriMailFlowTools.SiriMailFlowTools.ReplyDraftMailTool|com.apple.mail",
1157
+ "com.apple.siri.SiriMailFlowTools.SiriMailFlowTools.SendDraftMailTool|com.apple.mail",
1158
+ "com.apple.siri.SiriMailFlowTools.SiriMailFlowTools.UpdateDraftMailTool|com.apple.mail",
1159
+ "com.apple.siri.SiriNotebookAppIntentsExtension.SiriNotebookAppIntentsExtension",
1160
+ "com.apple.siri.SiriNotificationsAppIntentsExtension.PrepareNotificationsIntent",
1161
+ "com.apple.siri.SiriNotificationsAppIntentsExtension.SiriNotificationsAppIntentsExtension",
1162
+ "com.apple.siri.SiriNotificationsFlowTools.SiriNotificationsFlowTools.PrepareNotificationsTool",
1163
+ "com.apple.siri.SiriPhoneAppIntentsExtension.ReadCallMessageIntent",
1164
+ "com.apple.siri.SiriPhoneAppIntentsExtension.SiriKitStartCallIntent",
1165
+ "com.apple.siri.SiriPhoneAppIntentsExtension.SiriPhonePunchoutIntent",
1166
+ "com.apple.siri.SiriPhoneAppIntentsExtension.StartCrisisHelplineCallIntent",
1167
+ "com.apple.siri.SiriPhoneFlowTools.SiriPhoneFlowTools.AnswerCallFlowTool|com.apple.calls.PhoneAppIntentsExtension",
1168
+ "com.apple.siri.SiriPhoneFlowTools.SiriPhoneFlowTools.CallEmergencyContactFlowTool",
1169
+ "com.apple.siri.SiriPhoneFlowTools.SiriPhoneFlowTools.CallbackFlowTool",
1170
+ "com.apple.siri.SiriPhoneFlowTools.SiriPhoneFlowTools.PrepareCallMessagesFlowTool",
1171
+ "com.apple.siri.SiriPhoneFlowTools.SiriPhoneFlowTools.PrepareReadCallRecordsFlowTool",
1172
+ "com.apple.siri.SiriPhoneFlowTools.SiriPhoneFlowTools.ReadCallMessageFlowTool",
1173
+ "com.apple.siri.SiriPhoneFlowTools.SiriPhoneFlowTools.RedialFlowTool",
1174
+ "com.apple.siri.SiriPhoneFlowTools.SiriPhoneFlowTools.StartCallFlowTool|com.apple.FaceTime",
1175
+ "com.apple.siri.SiriPhoneFlowTools.SiriPhoneFlowTools.StartCallFlowTool|com.apple.mobilephone",
1176
+ "com.apple.siri.SiriPhoneFlowTools.SiriPhoneFlowTools.StartCallFlowTool|net.whatsapp.WhatsApp",
1177
+ "com.apple.siri.SiriPhoneFlowTools.SiriPhoneFlowTools.StartCrisisHelplineCallFlowTool",
1178
+ "com.apple.siri.SiriPhoneFlowTools.SiriPhoneFlowTools.StartEmergencyCallFlowTool|com.apple.calls.PhoneAppIntentsExtension",
1179
+ "com.apple.siri.SiriPhotosAppIntentsExtension.SiriPhotosAppIntentsExtension",
1180
+ "com.apple.siri.SiriPhotosAppIntentsExtension.UpdatePhotoWarmthTool",
1181
+ "com.apple.siri.SiriTimeFlowTools.SiriTimeFlowTools.CancelTimerFlowTool|com.apple.clock",
1182
+ "com.apple.siri.SiriTimeFlowTools.SiriTimeFlowTools.DismissAlarmFlowTool|com.apple.clock",
1183
+ "com.apple.siri.SiriTimeFlowTools.SiriTimeFlowTools.SnoozeAlarmFlowTool|com.apple.clock",
1184
+ "com.apple.siri.SiriTranslationFlowTools.SiriTranslationFlowTools.TranslateTextFlowTool",
1185
+ "com.apple.siri.SiriVideoAppIntents.CrossDevicePlaceholderIntent",
1186
+ "com.apple.siri.SiriVideoAppIntents.InternalFindFreeformVideoIntent",
1187
+ "com.apple.siri.SiriVideoAppIntents.InternalFindVideoIntent",
1188
+ "com.apple.siri.SiriVideoAppIntents.InternalPlayContentIntent",
1189
+ "com.apple.siri.SiriVideoFlowTools.SiriVideoFlowTools.FindVideoContentTool",
1190
+ "com.apple.siri.findmy.SiriFindMyFlowTools.SiriFindMyFlowTools.CreateIncomingGeofenceTool",
1191
+ "com.apple.siri.findmy.SiriFindMyFlowTools.SiriFindMyFlowTools.CreateOutgoingGeofenceTool",
1192
+ "com.apple.siri.findmy.SiriFindMyFlowTools.SiriFindMyFlowTools.FindItemLocationTool",
1193
+ "com.apple.siri.findmy.SiriFindMyFlowTools.SiriFindMyFlowTools.PlayItemSoundTool",
1194
+ "com.apple.siri.messages.SiriMessagesAppIntentsExtension.MessagesPostReadActionAppIntent",
1195
+ "com.apple.siri.messages.SiriMessagesAppIntentsExtension.PrepareToReadConversationAppIntent",
1196
+ "com.apple.siri.messages.SiriMessagesAppIntentsExtension.SiriKitEditLastMessageIntent",
1197
+ "com.apple.siri.messages.SiriMessagesAppIntentsExtension.SiriKitPrepareMessagesForReadingIntent",
1198
+ "com.apple.siri.messages.SiriMessagesAppIntentsExtension.SiriKitSendMessageIntent",
1199
+ "com.apple.siri.messages.SiriMessagesAppIntentsExtension.SiriKitUnsendLastMessageIntent",
1200
+ "com.apple.siri.messages.SiriMessagesAppIntentsExtension.SiriMessagesAppIntent",
1201
+ "com.apple.siri.messages.SiriMessagesAppIntentsExtension.UpdateDraftTool",
1202
+ "com.apple.siri.messages.SiriMessagesFlowTools.SiriMessagesFlowTools.CreateDraftMessageTool|com.apple.MobileSMS",
1203
+ "com.apple.siri.messages.SiriMessagesFlowTools.SiriMessagesFlowTools.CreateDraftMessageTool|net.whatsapp.WhatsApp",
1204
+ "com.apple.siri.messages.SiriMessagesFlowTools.SiriMessagesFlowTools.EditLastMessageSentWithSiriTool",
1205
+ "com.apple.siri.messages.SiriMessagesFlowTools.SiriMessagesFlowTools.PerformMessagesPostReadActionFlowTool",
1206
+ "com.apple.siri.messages.SiriMessagesFlowTools.SiriMessagesFlowTools.PrepareToReadConversationTool",
1207
+ "com.apple.siri.messages.SiriMessagesFlowTools.SiriMessagesFlowTools.PrepareToReadMessagesTool|com.apple.MobileSMS",
1208
+ "com.apple.siri.messages.SiriMessagesFlowTools.SiriMessagesFlowTools.PrepareToReadMessagesTool|net.whatsapp.WhatsApp",
1209
+ "com.apple.siri.messages.SiriMessagesFlowTools.SiriMessagesFlowTools.SendDraftMessageTool|com.apple.MobileSMS",
1210
+ "com.apple.siri.messages.SiriMessagesFlowTools.SiriMessagesFlowTools.SendDraftMessageTool|net.whatsapp.WhatsApp",
1211
+ "com.apple.siri.messages.SiriMessagesFlowTools.SiriMessagesFlowTools.SendMessageReactionTool|com.apple.MobileSMS",
1212
+ "com.apple.siri.messages.SiriMessagesFlowTools.SiriMessagesFlowTools.UnsendLastMessageSentWithSiriTool",
1213
+ "com.apple.siri.messages.SiriMessagesFlowTools.SiriMessagesFlowTools.UpdateDraftMessageTool|com.apple.MobileSMS",
1214
+ "com.apple.siri.messages.SiriMessagesFlowTools.SiriMessagesFlowTools.UpdateDraftMessageTool|net.whatsapp.WhatsApp",
1215
+ "com.apple.siri.notebook.SiriNotebookFlowTools.SiriNotebookFlowTools.CreateListAddReminderFlowTool|com.apple.reminders",
1216
+ "com.apple.siri.notebook.SiriNotebookFlowTools.SiriNotebookFlowTools.CreateReminderFlowTool|com.apple.reminders",
1217
+ "com.apple.siri.notebook.SiriNotebookFlowTools.SiriNotebookFlowTools.PrepareReadRemindersFlowTool|com.apple.reminders",
1218
+ "com.apple.siri.notebook.SiriNotebookFlowTools.SiriNotebookFlowTools.UpdateReminderFlowTool|com.apple.reminders",
1219
+ "com.apple.sociallayerd.CollaborationIntent",
1220
+ "com.apple.stocks.AddSymbolToWatchlistIntent",
1221
+ "com.apple.stocks.BlockIntent",
1222
+ "com.apple.stocks.DecreaseTextSizeIntent",
1223
+ "com.apple.stocks.DeleteSymbolFromWatchlistIntent",
1224
+ "com.apple.stocks.DeleteWatchlistsIntent",
1225
+ "com.apple.stocks.FollowIntent",
1226
+ "com.apple.stocks.GetSymbolQuoteIntent",
1227
+ "com.apple.stocks.IncreaseTextSizeIntent",
1228
+ "com.apple.stocks.NewWatchlistIntent",
1229
+ "com.apple.stocks.NewsTabDeepLink",
1230
+ "com.apple.stocks.OpenArticleIntent",
1231
+ "com.apple.stocks.OpenBusinessNewsIntent",
1232
+ "com.apple.stocks.OpenFeedIntent",
1233
+ "com.apple.stocks.OpenHistoryIntent",
1234
+ "com.apple.stocks.OpenRecipeIntent",
1235
+ "com.apple.stocks.OpenSavedIntent",
1236
+ "com.apple.stocks.OpenSavedRecipesIntent",
1237
+ "com.apple.stocks.OpenStaticFeed",
1238
+ "com.apple.stocks.OpenSymbolIntent",
1239
+ "com.apple.stocks.OpenWatchlistIntent",
1240
+ "com.apple.stocks.PlayArticleIntent",
1241
+ "com.apple.stocks.SaveArticleIntent",
1242
+ "com.apple.stocks.StockIntent",
1243
+ "com.apple.stocks.StocksOverviewIntent",
1244
+ "com.apple.stocks.SymbolEntity",
1245
+ "com.apple.stocks.SymbolWidgetEntity",
1246
+ "com.apple.stocks.UnblockIntent",
1247
+ "com.apple.stocks.UnsaveArticleIntent",
1248
+ "com.apple.stocks.WatchlistEntity",
1249
+ "com.apple.systempreferences.AccentColorEntity",
1250
+ "com.apple.systempreferences.AccentColorEntity-UpdatableEntity",
1251
+ "com.apple.systempreferences.AirDropEntity",
1252
+ "com.apple.systempreferences.AirDropEntity-UpdatableEntity",
1253
+ "com.apple.systempreferences.AirPlayIntent",
1254
+ "com.apple.systempreferences.AirPlayReceiverIntent",
1255
+ "com.apple.systempreferences.AirPlayRequiresPasswordIntent",
1256
+ "com.apple.systempreferences.AllowWallPaperTintingEntity",
1257
+ "com.apple.systempreferences.AllowWallPaperTintingEntity-UpdatableEntity",
1258
+ "com.apple.systempreferences.AppearanceEntity",
1259
+ "com.apple.systempreferences.AppearanceEntity-UpdatableEntity",
1260
+ "com.apple.systempreferences.AppearanceSettingsDeepLink",
1261
+ "com.apple.systempreferences.AppleAccountMainDynamicDeepLinks",
1262
+ "com.apple.systempreferences.ApplicationNotificationsSettings",
1263
+ "com.apple.systempreferences.ApplicationNotificationsSettings-UpdatableEntity",
1264
+ "com.apple.systempreferences.AutoBrightnessEntity",
1265
+ "com.apple.systempreferences.AutoBrightnessEntity-UpdatableEntity",
1266
+ "com.apple.systempreferences.AutoHideMenuBarOptionEntity",
1267
+ "com.apple.systempreferences.AutoHideMenuBarOptionEntity-UpdatableEntity",
1268
+ "com.apple.systempreferences.AutoLoginIntent",
1269
+ "com.apple.systempreferences.AutomaticReconnectEntity",
1270
+ "com.apple.systempreferences.AutomaticReconnectEntity-UpdatableEntity",
1271
+ "com.apple.systempreferences.AvailableDisplaysEntity",
1272
+ "com.apple.systempreferences.AxAdaptiveVoiceShortcutsEntity",
1273
+ "com.apple.systempreferences.AxAdaptiveVoiceShortcutsEntity-UpdatableEntity",
1274
+ "com.apple.systempreferences.AxAltMouseButtonsEntity",
1275
+ "com.apple.systempreferences.AxAltMouseButtonsEntity-UpdatableEntity",
1276
+ "com.apple.systempreferences.AxAltMouseEnableSoundsEntity",
1277
+ "com.apple.systempreferences.AxAltMouseEnableSoundsEntity-UpdatableEntity",
1278
+ "com.apple.systempreferences.AxAltMouseEnableVisualsEntity",
1279
+ "com.apple.systempreferences.AxAltMouseEnableVisualsEntity-UpdatableEntity",
1280
+ "com.apple.systempreferences.AxAnimatedImagesEntity",
1281
+ "com.apple.systempreferences.AxAnimatedImagesEntity-UpdatableEntity",
1282
+ "com.apple.systempreferences.AxBackgroundSoundsEntity",
1283
+ "com.apple.systempreferences.AxBackgroundSoundsEntity-UpdatableEntity",
1284
+ "com.apple.systempreferences.AxBackgroundSoundsLockScreenEntity",
1285
+ "com.apple.systempreferences.AxBackgroundSoundsLockScreenEntity-UpdatableEntity",
1286
+ "com.apple.systempreferences.AxCaptioningPreferSdhEntity",
1287
+ "com.apple.systempreferences.AxCaptioningPreferSdhEntity-UpdatableEntity",
1288
+ "com.apple.systempreferences.AxDifferentiateWithoutColorEntity",
1289
+ "com.apple.systempreferences.AxDifferentiateWithoutColorEntity-UpdatableEntity",
1290
+ "com.apple.systempreferences.AxDimFlashingEntity",
1291
+ "com.apple.systempreferences.AxDimFlashingEntity-UpdatableEntity",
1292
+ "com.apple.systempreferences.AxDisplayFilterEnabledEntity",
1293
+ "com.apple.systempreferences.AxDisplayFilterEnabledEntity-UpdatableEntity",
1294
+ "com.apple.systempreferences.AxDisplayFilterTypeEntity",
1295
+ "com.apple.systempreferences.AxDisplayFilterTypeEntity-UpdatableEntity",
1296
+ "com.apple.systempreferences.AxDwellActionEntity",
1297
+ "com.apple.systempreferences.AxDwellActionEntity-UpdatableEntity",
1298
+ "com.apple.systempreferences.AxDwellAutoRevertEntity",
1299
+ "com.apple.systempreferences.AxDwellAutoRevertEntity-UpdatableEntity",
1300
+ "com.apple.systempreferences.AxDwellCursorColorEntity",
1301
+ "com.apple.systempreferences.AxDwellCursorColorEntity-UpdatableEntity",
1302
+ "com.apple.systempreferences.AxDwellInMenuExtraEntity",
1303
+ "com.apple.systempreferences.AxDwellInMenuExtraEntity-UpdatableEntity",
1304
+ "com.apple.systempreferences.AxDwellInPanelsEntity",
1305
+ "com.apple.systempreferences.AxDwellInPanelsEntity-UpdatableEntity",
1306
+ "com.apple.systempreferences.AxDwellProgressIndicatorEntity",
1307
+ "com.apple.systempreferences.AxDwellProgressIndicatorEntity-UpdatableEntity",
1308
+ "com.apple.systempreferences.AxDwellZoomEntity",
1309
+ "com.apple.systempreferences.AxDwellZoomEntity-UpdatableEntity",
1310
+ "com.apple.systempreferences.AxFacetimeTranscriptionsEntity",
1311
+ "com.apple.systempreferences.AxFacetimeTranscriptionsEntity-UpdatableEntity",
1312
+ "com.apple.systempreferences.AxFeatureLivespeechEntity",
1313
+ "com.apple.systempreferences.AxFeatureLivespeechEntity-UpdatableEntity",
1314
+ "com.apple.systempreferences.AxFeatureSwitchcontrolEntity",
1315
+ "com.apple.systempreferences.AxFeatureSwitchcontrolEntity-UpdatableEntity",
1316
+ "com.apple.systempreferences.AxFeatureVoicecontrolEntity",
1317
+ "com.apple.systempreferences.AxFeatureVoicecontrolEntity-UpdatableEntity",
1318
+ "com.apple.systempreferences.AxFeatureVoiceoverEntity",
1319
+ "com.apple.systempreferences.AxFeatureVoiceoverEntity-UpdatableEntity",
1320
+ "com.apple.systempreferences.AxFeatureZoomEntity",
1321
+ "com.apple.systempreferences.AxFeatureZoomEntity-UpdatableEntity",
1322
+ "com.apple.systempreferences.AxFindCursorEntity",
1323
+ "com.apple.systempreferences.AxFindCursorEntity-UpdatableEntity",
1324
+ "com.apple.systempreferences.AxFkaAutoHideCheckboxEntity",
1325
+ "com.apple.systempreferences.AxFkaAutoHideCheckboxEntity-UpdatableEntity",
1326
+ "com.apple.systempreferences.AxFkaEnableCheckboxEntity",
1327
+ "com.apple.systempreferences.AxFkaEnableCheckboxEntity-UpdatableEntity",
1328
+ "com.apple.systempreferences.AxFkaHighContrastCheckboxEntity",
1329
+ "com.apple.systempreferences.AxFkaHighContrastCheckboxEntity-UpdatableEntity",
1330
+ "com.apple.systempreferences.AxFkaIncreaseSizeCheckboxEntity",
1331
+ "com.apple.systempreferences.AxFkaIncreaseSizeCheckboxEntity-UpdatableEntity",
1332
+ "com.apple.systempreferences.AxFlashScreenEntity",
1333
+ "com.apple.systempreferences.AxFlashScreenEntity-UpdatableEntity",
1334
+ "com.apple.systempreferences.AxHeadMouseEntity",
1335
+ "com.apple.systempreferences.AxHeadMouseEntity-UpdatableEntity",
1336
+ "com.apple.systempreferences.AxHomePanelDwellActionsEntity",
1337
+ "com.apple.systempreferences.AxHomePanelDwellActionsEntity-UpdatableEntity",
1338
+ "com.apple.systempreferences.AxHotCornerBottomLeftEntity",
1339
+ "com.apple.systempreferences.AxHotCornerBottomLeftEntity-UpdatableEntity",
1340
+ "com.apple.systempreferences.AxHotCornerBottomRightEntity",
1341
+ "com.apple.systempreferences.AxHotCornerBottomRightEntity-UpdatableEntity",
1342
+ "com.apple.systempreferences.AxHotCornerMoveHomePanelEntity",
1343
+ "com.apple.systempreferences.AxHotCornerMoveHomePanelEntity-UpdatableEntity",
1344
+ "com.apple.systempreferences.AxHotCornerTopLeftEntity",
1345
+ "com.apple.systempreferences.AxHotCornerTopLeftEntity-UpdatableEntity",
1346
+ "com.apple.systempreferences.AxHotCornerTopRightEntity",
1347
+ "com.apple.systempreferences.AxHotCornerTopRightEntity-UpdatableEntity",
1348
+ "com.apple.systempreferences.AxHoverTextActivationLockModeEntity",
1349
+ "com.apple.systempreferences.AxHoverTextActivationLockModeEntity-UpdatableEntity",
1350
+ "com.apple.systempreferences.AxHoverTextEnableEntity",
1351
+ "com.apple.systempreferences.AxHoverTextEnableEntity-UpdatableEntity",
1352
+ "com.apple.systempreferences.AxHoverTextModifierEntity",
1353
+ "com.apple.systempreferences.AxHoverTextModifierEntity-UpdatableEntity",
1354
+ "com.apple.systempreferences.AxHoverTypingEnableEntity",
1355
+ "com.apple.systempreferences.AxHoverTypingEnableEntity-UpdatableEntity",
1356
+ "com.apple.systempreferences.AxHoverTypingEntryLocationEntity",
1357
+ "com.apple.systempreferences.AxHoverTypingEntryLocationEntity-UpdatableEntity",
1358
+ "com.apple.systempreferences.AxIgnoreTrackpadEntity",
1359
+ "com.apple.systempreferences.AxIgnoreTrackpadEntity-UpdatableEntity",
1360
+ "com.apple.systempreferences.AxIncreaseContrastEntity",
1361
+ "com.apple.systempreferences.AxIncreaseContrastEntity-UpdatableEntity",
1362
+ "com.apple.systempreferences.AxInvertColorEntity",
1363
+ "com.apple.systempreferences.AxInvertColorEntity-UpdatableEntity",
1364
+ "com.apple.systempreferences.AxInvertColorModeEntity",
1365
+ "com.apple.systempreferences.AxInvertColorModeEntity-UpdatableEntity",
1366
+ "com.apple.systempreferences.AxKbAppearanceTypeEntity",
1367
+ "com.apple.systempreferences.AxKbAppearanceTypeEntity-UpdatableEntity",
1368
+ "com.apple.systempreferences.AxKbAutoCapitalizationEntity",
1369
+ "com.apple.systempreferences.AxKbAutoCapitalizationEntity-UpdatableEntity",
1370
+ "com.apple.systempreferences.AxKbAutoSpacingEntity",
1371
+ "com.apple.systempreferences.AxKbAutoSpacingEntity-UpdatableEntity",
1372
+ "com.apple.systempreferences.AxKbHideEntity",
1373
+ "com.apple.systempreferences.AxKbHideEntity-UpdatableEntity",
1374
+ "com.apple.systempreferences.AxKbKeyAcceptedMouseEntity",
1375
+ "com.apple.systempreferences.AxKbKeyAcceptedMouseEntity-UpdatableEntity",
1376
+ "com.apple.systempreferences.AxKbRightClickEntity",
1377
+ "com.apple.systempreferences.AxKbRightClickEntity-UpdatableEntity",
1378
+ "com.apple.systempreferences.AxKbUseClickSoundsEntity",
1379
+ "com.apple.systempreferences.AxKbUseClickSoundsEntity-UpdatableEntity",
1380
+ "com.apple.systempreferences.AxMenubarDwellActionsEntity",
1381
+ "com.apple.systempreferences.AxMenubarDwellActionsEntity-UpdatableEntity",
1382
+ "com.apple.systempreferences.AxMonoAudioEntity",
1383
+ "com.apple.systempreferences.AxMonoAudioEntity-UpdatableEntity",
1384
+ "com.apple.systempreferences.AxMotionCuesEnabledEntity",
1385
+ "com.apple.systempreferences.AxMotionCuesEnabledEntity-UpdatableEntity",
1386
+ "com.apple.systempreferences.AxMouseKeysEntity",
1387
+ "com.apple.systempreferences.AxMouseKeysEntity-UpdatableEntity",
1388
+ "com.apple.systempreferences.AxMouseKeysIgnoreTrackpadEntity",
1389
+ "com.apple.systempreferences.AxMouseKeysIgnoreTrackpadEntity-UpdatableEntity",
1390
+ "com.apple.systempreferences.AxMouseKeysShortcutEntity",
1391
+ "com.apple.systempreferences.AxMouseKeysShortcutEntity-UpdatableEntity",
1392
+ "com.apple.systempreferences.AxMouseScrollBehaviorEntity",
1393
+ "com.apple.systempreferences.AxMouseScrollBehaviorEntity-UpdatableEntity",
1394
+ "com.apple.systempreferences.AxMouseScrollEntity",
1395
+ "com.apple.systempreferences.AxMouseScrollEntity-UpdatableEntity",
1396
+ "com.apple.systempreferences.AxPrefersHorizTextLayoutEntity",
1397
+ "com.apple.systempreferences.AxPrefersHorizTextLayoutEntity-UpdatableEntity",
1398
+ "com.apple.systempreferences.AxReduceCursorModulationEntity",
1399
+ "com.apple.systempreferences.AxReduceCursorModulationEntity-UpdatableEntity",
1400
+ "com.apple.systempreferences.AxReduceMotionEntity",
1401
+ "com.apple.systempreferences.AxReduceMotionEntity-UpdatableEntity",
1402
+ "com.apple.systempreferences.AxReduceTransparencyEntity",
1403
+ "com.apple.systempreferences.AxReduceTransparencyEntity-UpdatableEntity",
1404
+ "com.apple.systempreferences.AxRttEnableEntity",
1405
+ "com.apple.systempreferences.AxRttEnableEntity-UpdatableEntity",
1406
+ "com.apple.systempreferences.AxRttSendImmediatelyEntity",
1407
+ "com.apple.systempreferences.AxRttSendImmediatelyEntity-UpdatableEntity",
1408
+ "com.apple.systempreferences.AxShowBordersEntity",
1409
+ "com.apple.systempreferences.AxShowBordersEntity-UpdatableEntity",
1410
+ "com.apple.systempreferences.AxShowToolbarButtonShapesEntity",
1411
+ "com.apple.systempreferences.AxShowToolbarButtonShapesEntity-UpdatableEntity",
1412
+ "com.apple.systempreferences.AxShowWindowTitlebarIconsEntity",
1413
+ "com.apple.systempreferences.AxShowWindowTitlebarIconsEntity-UpdatableEntity",
1414
+ "com.apple.systempreferences.AxSiriAtypicalSpeechEntity",
1415
+ "com.apple.systempreferences.AxSiriAtypicalSpeechEntity-UpdatableEntity",
1416
+ "com.apple.systempreferences.AxSlowKeysEntity",
1417
+ "com.apple.systempreferences.AxSlowKeysEntity-UpdatableEntity",
1418
+ "com.apple.systempreferences.AxSlowKeysSoundEntity",
1419
+ "com.apple.systempreferences.AxSlowKeysSoundEntity-UpdatableEntity",
1420
+ "com.apple.systempreferences.AxSpatialAudioFollowsHeadEntity",
1421
+ "com.apple.systempreferences.AxSpatialAudioFollowsHeadEntity-UpdatableEntity",
1422
+ "com.apple.systempreferences.AxSpokenAlertsEntity",
1423
+ "com.apple.systempreferences.AxSpokenAlertsEntity-UpdatableEntity",
1424
+ "com.apple.systempreferences.AxSpokenDetectLanguagesEntity",
1425
+ "com.apple.systempreferences.AxSpokenDetectLanguagesEntity-UpdatableEntity",
1426
+ "com.apple.systempreferences.AxSpokenHotkeyEntity",
1427
+ "com.apple.systempreferences.AxSpokenHotkeyEntity-UpdatableEntity",
1428
+ "com.apple.systempreferences.AxSpokenPointerElementEntity",
1429
+ "com.apple.systempreferences.AxSpokenPointerElementEntity-UpdatableEntity",
1430
+ "com.apple.systempreferences.AxSpokenPointerElementModeEntity",
1431
+ "com.apple.systempreferences.AxSpokenPointerElementModeEntity-UpdatableEntity",
1432
+ "com.apple.systempreferences.AxSpokenPointerElementVerbosityEntity",
1433
+ "com.apple.systempreferences.AxSpokenPointerElementVerbosityEntity-UpdatableEntity",
1434
+ "com.apple.systempreferences.AxSpokenPronunciationsEntity",
1435
+ "com.apple.systempreferences.AxSpokenPronunciationsEntity-UpdatableEntity",
1436
+ "com.apple.systempreferences.AxSpokenSelectionHighlightContentEntity",
1437
+ "com.apple.systempreferences.AxSpokenSelectionHighlightContentEntity-UpdatableEntity",
1438
+ "com.apple.systempreferences.AxSpokenSelectionHighlightSentenceColorEntity",
1439
+ "com.apple.systempreferences.AxSpokenSelectionHighlightSentenceColorEntity-UpdatableEntity",
1440
+ "com.apple.systempreferences.AxSpokenSelectionHighlightSentenceStyleEntity",
1441
+ "com.apple.systempreferences.AxSpokenSelectionHighlightSentenceStyleEntity-UpdatableEntity",
1442
+ "com.apple.systempreferences.AxSpokenSelectionHighlightWordColorEntity",
1443
+ "com.apple.systempreferences.AxSpokenSelectionHighlightWordColorEntity-UpdatableEntity",
1444
+ "com.apple.systempreferences.AxSpokenSelectionShowControllerEntity",
1445
+ "com.apple.systempreferences.AxSpokenSelectionShowControllerEntity-UpdatableEntity",
1446
+ "com.apple.systempreferences.AxSpokenTypingEchoCharsEntity",
1447
+ "com.apple.systempreferences.AxSpokenTypingEchoCharsEntity-UpdatableEntity",
1448
+ "com.apple.systempreferences.AxSpokenTypingEchoEntity",
1449
+ "com.apple.systempreferences.AxSpokenTypingEchoEntity-UpdatableEntity",
1450
+ "com.apple.systempreferences.AxSpokenTypingEchoModifierKeysEntity",
1451
+ "com.apple.systempreferences.AxSpokenTypingEchoModifierKeysEntity-UpdatableEntity",
1452
+ "com.apple.systempreferences.AxSpokenTypingEchoSelectionEntity",
1453
+ "com.apple.systempreferences.AxSpokenTypingEchoSelectionEntity-UpdatableEntity",
1454
+ "com.apple.systempreferences.AxSpokenTypingEchoWordsEntity",
1455
+ "com.apple.systempreferences.AxSpokenTypingEchoWordsEntity-UpdatableEntity",
1456
+ "com.apple.systempreferences.AxSpringLoadingEntity",
1457
+ "com.apple.systempreferences.AxSpringLoadingEntity-UpdatableEntity",
1458
+ "com.apple.systempreferences.AxStickyKeysBeepEntity",
1459
+ "com.apple.systempreferences.AxStickyKeysBeepEntity-UpdatableEntity",
1460
+ "com.apple.systempreferences.AxStickyKeysDisplayEntity",
1461
+ "com.apple.systempreferences.AxStickyKeysDisplayEntity-UpdatableEntity",
1462
+ "com.apple.systempreferences.AxStickyKeysDisplayLocationEntity",
1463
+ "com.apple.systempreferences.AxStickyKeysDisplayLocationEntity-UpdatableEntity",
1464
+ "com.apple.systempreferences.AxStickyKeysEntity",
1465
+ "com.apple.systempreferences.AxStickyKeysEntity-UpdatableEntity",
1466
+ "com.apple.systempreferences.AxStickyKeysShortcutEntity",
1467
+ "com.apple.systempreferences.AxStickyKeysShortcutEntity-UpdatableEntity",
1468
+ "com.apple.systempreferences.AxSwitchAutoCapitalizationEntity",
1469
+ "com.apple.systempreferences.AxSwitchAutoCapitalizationEntity-UpdatableEntity",
1470
+ "com.apple.systempreferences.AxSwitchAutoSpacingEntity",
1471
+ "com.apple.systempreferences.AxSwitchAutoSpacingEntity-UpdatableEntity",
1472
+ "com.apple.systempreferences.AxSwitchAutoscanEntity",
1473
+ "com.apple.systempreferences.AxSwitchAutoscanEntity-UpdatableEntity",
1474
+ "com.apple.systempreferences.AxSwitchControlAppearanceTypeEntity",
1475
+ "com.apple.systempreferences.AxSwitchControlAppearanceTypeEntity-UpdatableEntity",
1476
+ "com.apple.systempreferences.AxSwitchCursorSizeEntity",
1477
+ "com.apple.systempreferences.AxSwitchCursorSizeEntity-UpdatableEntity",
1478
+ "com.apple.systempreferences.AxSwitchHideAfterDelayEntity",
1479
+ "com.apple.systempreferences.AxSwitchHideAfterDelayEntity-UpdatableEntity",
1480
+ "com.apple.systempreferences.AxSwitchHoverTextToolbarEntity",
1481
+ "com.apple.systempreferences.AxSwitchHoverTextToolbarEntity-UpdatableEntity",
1482
+ "com.apple.systempreferences.AxSwitchMouseCursorEdgeEntity",
1483
+ "com.apple.systempreferences.AxSwitchMouseCursorEdgeEntity-UpdatableEntity",
1484
+ "com.apple.systempreferences.AxSwitchMouseMoveStyleEntity",
1485
+ "com.apple.systempreferences.AxSwitchMouseMoveStyleEntity-UpdatableEntity",
1486
+ "com.apple.systempreferences.AxSwitchNavFeedbackEntity",
1487
+ "com.apple.systempreferences.AxSwitchNavFeedbackEntity-UpdatableEntity",
1488
+ "com.apple.systempreferences.AxSwitchResumeAutoScanningEntity",
1489
+ "com.apple.systempreferences.AxSwitchResumeAutoScanningEntity-UpdatableEntity",
1490
+ "com.apple.systempreferences.AxSwitchScanRestartEntity",
1491
+ "com.apple.systempreferences.AxSwitchScanRestartEntity-UpdatableEntity",
1492
+ "com.apple.systempreferences.AxSystemTranscriptionEnabledEntity",
1493
+ "com.apple.systempreferences.AxSystemTranscriptionEnabledEntity-UpdatableEntity",
1494
+ "com.apple.systempreferences.AxTouchBarZoomEnableEntity",
1495
+ "com.apple.systempreferences.AxTouchBarZoomEnableEntity-UpdatableEntity",
1496
+ "com.apple.systempreferences.AxTrackpadScrollBehaviorEntity",
1497
+ "com.apple.systempreferences.AxTrackpadScrollBehaviorEntity-UpdatableEntity",
1498
+ "com.apple.systempreferences.AxTrackpadScrollEntity",
1499
+ "com.apple.systempreferences.AxTrackpadScrollEntity-UpdatableEntity",
1500
+ "com.apple.systempreferences.AxTypeToSiriEnabledEntity",
1501
+ "com.apple.systempreferences.AxTypeToSiriEnabledEntity-UpdatableEntity",
1502
+ "com.apple.systempreferences.AxVideoDescriptionEntity",
1503
+ "com.apple.systempreferences.AxVideoDescriptionEntity-UpdatableEntity",
1504
+ "com.apple.systempreferences.AxVirtualKeyboardEntity",
1505
+ "com.apple.systempreferences.AxVirtualKeyboardEntity-UpdatableEntity",
1506
+ "com.apple.systempreferences.AxVoiceControlOverlayEntity",
1507
+ "com.apple.systempreferences.AxVoiceControlOverlayEntity-UpdatableEntity",
1508
+ "com.apple.systempreferences.AxVoiceControlOverlayFadingEnabledEntity",
1509
+ "com.apple.systempreferences.AxVoiceControlOverlayFadingEnabledEntity-UpdatableEntity",
1510
+ "com.apple.systempreferences.AxVoiceControlPlaySoundEnabledEntity",
1511
+ "com.apple.systempreferences.AxVoiceControlPlaySoundEnabledEntity-UpdatableEntity",
1512
+ "com.apple.systempreferences.AxVoiceControlShowHintsEnabledEntity",
1513
+ "com.apple.systempreferences.AxVoiceControlShowHintsEnabledEntity-UpdatableEntity",
1514
+ "com.apple.systempreferences.AxZoomDisableUniversalControlEntity",
1515
+ "com.apple.systempreferences.AxZoomDisableUniversalControlEntity-UpdatableEntity",
1516
+ "com.apple.systempreferences.AxZoomEnableGestureEntity",
1517
+ "com.apple.systempreferences.AxZoomEnableGestureEntity-UpdatableEntity",
1518
+ "com.apple.systempreferences.AxZoomEnableHotkeysEntity",
1519
+ "com.apple.systempreferences.AxZoomEnableHotkeysEntity-UpdatableEntity",
1520
+ "com.apple.systempreferences.AxZoomFlashEntity",
1521
+ "com.apple.systempreferences.AxZoomFlashEntity-UpdatableEntity",
1522
+ "com.apple.systempreferences.AxZoomFocusMovementEntity",
1523
+ "com.apple.systempreferences.AxZoomFocusMovementEntity-UpdatableEntity",
1524
+ "com.apple.systempreferences.AxZoomFollowFocusActivationEntity",
1525
+ "com.apple.systempreferences.AxZoomFollowFocusActivationEntity-UpdatableEntity",
1526
+ "com.apple.systempreferences.AxZoomFollowFocusModeEntity",
1527
+ "com.apple.systempreferences.AxZoomFollowFocusModeEntity-UpdatableEntity",
1528
+ "com.apple.systempreferences.AxZoomFreezePanningEntity",
1529
+ "com.apple.systempreferences.AxZoomFreezePanningEntity-UpdatableEntity",
1530
+ "com.apple.systempreferences.AxZoomIndividualDisplaysEntity",
1531
+ "com.apple.systempreferences.AxZoomIndividualDisplaysEntity-UpdatableEntity",
1532
+ "com.apple.systempreferences.AxZoomInvertEntity",
1533
+ "com.apple.systempreferences.AxZoomInvertEntity-UpdatableEntity",
1534
+ "com.apple.systempreferences.AxZoomKeepStationaryEntity",
1535
+ "com.apple.systempreferences.AxZoomKeepStationaryEntity-UpdatableEntity",
1536
+ "com.apple.systempreferences.AxZoomMonitorSelectionEntity",
1537
+ "com.apple.systempreferences.AxZoomMonitorSelectionEntity-UpdatableEntity",
1538
+ "com.apple.systempreferences.AxZoomMonitorSelectionTrackpadEntity",
1539
+ "com.apple.systempreferences.AxZoomMonitorSelectionTrackpadEntity-UpdatableEntity",
1540
+ "com.apple.systempreferences.AxZoomMoveEntity",
1541
+ "com.apple.systempreferences.AxZoomMoveEntity-UpdatableEntity",
1542
+ "com.apple.systempreferences.AxZoomResizeShortcutsEntity",
1543
+ "com.apple.systempreferences.AxZoomResizeShortcutsEntity-UpdatableEntity",
1544
+ "com.apple.systempreferences.AxZoomRestoreEntity",
1545
+ "com.apple.systempreferences.AxZoomRestoreEntity-UpdatableEntity",
1546
+ "com.apple.systempreferences.AxZoomSmoothEntity",
1547
+ "com.apple.systempreferences.AxZoomSmoothEntity-UpdatableEntity",
1548
+ "com.apple.systempreferences.AxZoomStylePopupEntity",
1549
+ "com.apple.systempreferences.AxZoomStylePopupEntity-UpdatableEntity",
1550
+ "com.apple.systempreferences.AxZoomTempDetachEntity",
1551
+ "com.apple.systempreferences.AxZoomTempDetachEntity-UpdatableEntity",
1552
+ "com.apple.systempreferences.AxZoomTempToggleEntity",
1553
+ "com.apple.systempreferences.AxZoomTempToggleEntity-UpdatableEntity",
1554
+ "com.apple.systempreferences.AxZoomToggleFsAndPipEntity",
1555
+ "com.apple.systempreferences.AxZoomToggleFsAndPipEntity-UpdatableEntity",
1556
+ "com.apple.systempreferences.AxZoomTrackpadEntity",
1557
+ "com.apple.systempreferences.AxZoomTrackpadEntity-UpdatableEntity",
1558
+ "com.apple.systempreferences.BackgroundLoginItemsIntent",
1559
+ "com.apple.systempreferences.BatteryHealthPaneDynamicDeepLinks",
1560
+ "com.apple.systempreferences.BatteryOptionsPaneDynamicDeepLinks",
1561
+ "com.apple.systempreferences.BatterySettingsPaneDynamicDeepLinks",
1562
+ "com.apple.systempreferences.ChangeMouseTrackingSpeedIntent",
1563
+ "com.apple.systempreferences.ChangeTrackpadTrackingSpeedIntent",
1564
+ "com.apple.systempreferences.ClassroomDynamicDeepLinks",
1565
+ "com.apple.systempreferences.ClickScrollBarToEntity",
1566
+ "com.apple.systempreferences.ClickScrollBarToEntity-UpdatableEntity",
1567
+ "com.apple.systempreferences.ClockOptionsEntity-UpdatableEntity",
1568
+ "com.apple.systempreferences.ComputerNameEntity",
1569
+ "com.apple.systempreferences.ControlCenterModule-UpdatableEntity",
1570
+ "com.apple.systempreferences.CurrentUserIntent",
1571
+ "com.apple.systempreferences.CurrentlyConnectedVPN",
1572
+ "com.apple.systempreferences.CurrentlyConnectedVPN-UpdatableEntity",
1573
+ "com.apple.systempreferences.DesktopSettingsEntity",
1574
+ "com.apple.systempreferences.DesktopSettingsEntity-UpdatableEntity",
1575
+ "com.apple.systempreferences.DeviceGraphicsEntity",
1576
+ "com.apple.systempreferences.DeviceMemoryEntity",
1577
+ "com.apple.systempreferences.DeviceModelNameEntity",
1578
+ "com.apple.systempreferences.DeviceOSInfoEntity",
1579
+ "com.apple.systempreferences.DeviceProcessorEntity",
1580
+ "com.apple.systempreferences.DeviceSSOIntent",
1581
+ "com.apple.systempreferences.DeviceSerialNumberEntity",
1582
+ "com.apple.systempreferences.DeviceStorageEntity",
1583
+ "com.apple.systempreferences.DockSettingsEntity",
1584
+ "com.apple.systempreferences.DockSettingsEntity-UpdatableEntity",
1585
+ "com.apple.systempreferences.EnergySaverPaneDynamicDeepLinks",
1586
+ "com.apple.systempreferences.FamilyMemberDetailsDeepLink",
1587
+ "com.apple.systempreferences.FamilySettingsDeepLink",
1588
+ "com.apple.systempreferences.FamilySubscriptionsDeepLink",
1589
+ "com.apple.systempreferences.FirewallAllowDownloadedSignedEntity",
1590
+ "com.apple.systempreferences.FirewallAllowSignedEntity",
1591
+ "com.apple.systempreferences.FirewallStateEntity",
1592
+ "com.apple.systempreferences.FirewallStealthModeEntity",
1593
+ "com.apple.systempreferences.FullScreenSwipeEntity",
1594
+ "com.apple.systempreferences.FullScreenSwipeEntity-UpdatableEntity",
1595
+ "com.apple.systempreferences.GetStartupDiskIntent",
1596
+ "com.apple.systempreferences.GroupMembershipIntent",
1597
+ "com.apple.systempreferences.GuestIntent",
1598
+ "com.apple.systempreferences.GuestParentalControlStatusIntent",
1599
+ "com.apple.systempreferences.GuestSharedAccessStatusIntent",
1600
+ "com.apple.systempreferences.GuestStatusIntent",
1601
+ "com.apple.systempreferences.HandoffIntent",
1602
+ "com.apple.systempreferences.HighlightColorEntity",
1603
+ "com.apple.systempreferences.HighlightColorEntity-UpdatableEntity",
1604
+ "com.apple.systempreferences.IdentifierIntent",
1605
+ "com.apple.systempreferences.ListOfAccountsIntent",
1606
+ "com.apple.systempreferences.ListOfNetworkServersIntent",
1607
+ "com.apple.systempreferences.LockMessageIntent",
1608
+ "com.apple.systempreferences.LoginWindowModeIntent",
1609
+ "com.apple.systempreferences.LoginWindowShowsButtonsIntent",
1610
+ "com.apple.systempreferences.MagicEdgeEntity",
1611
+ "com.apple.systempreferences.MagicEdgeEntity-UpdatableEntity",
1612
+ "com.apple.systempreferences.MissionControlEntity",
1613
+ "com.apple.systempreferences.MissionControlEntity-UpdatableEntity",
1614
+ "com.apple.systempreferences.MissionControlSettingsEntity",
1615
+ "com.apple.systempreferences.MissionControlSettingsEntity-UpdatableEntity",
1616
+ "com.apple.systempreferences.MouseSettingDeepLink",
1617
+ "com.apple.systempreferences.MouseTrackingSpeedEntity",
1618
+ "com.apple.systempreferences.MouseTrackingSpeedEntity-UpdatableEntity",
1619
+ "com.apple.systempreferences.NotificationCenterEntity",
1620
+ "com.apple.systempreferences.NotificationCenterEntity-UpdatableEntity",
1621
+ "com.apple.systempreferences.NotificationSummarizationEntity",
1622
+ "com.apple.systempreferences.OpenAboutSettingsStaticDeepLinks",
1623
+ "com.apple.systempreferences.OpenAccessibilityAudioDescriptionsStaticDeepLinks",
1624
+ "com.apple.systempreferences.OpenAccessibilityAudioStaticDeepLinks",
1625
+ "com.apple.systempreferences.OpenAccessibilityDisplayStaticDeepLinks",
1626
+ "com.apple.systempreferences.OpenAccessibilityHearingDevicesStaticDeepLinks",
1627
+ "com.apple.systempreferences.OpenAccessibilityHoverTextStaticDeepLinks",
1628
+ "com.apple.systempreferences.OpenAccessibilityKeyboardStaticDeepLinks",
1629
+ "com.apple.systempreferences.OpenAccessibilityLiveCaptionsStaticDeepLinks",
1630
+ "com.apple.systempreferences.OpenAccessibilityLiveSpeechStaticDeepLinks",
1631
+ "com.apple.systempreferences.OpenAccessibilityMotionStaticDeepLinks",
1632
+ "com.apple.systempreferences.OpenAccessibilityPersonalVoiceStaticDeepLinks",
1633
+ "com.apple.systempreferences.OpenAccessibilityPointerControlStaticDeepLinks",
1634
+ "com.apple.systempreferences.OpenAccessibilityRTTStaticDeepLinks",
1635
+ "com.apple.systempreferences.OpenAccessibilityRootStaticDeepLinks",
1636
+ "com.apple.systempreferences.OpenAccessibilityShortcutStaticDeepLinks",
1637
+ "com.apple.systempreferences.OpenAccessibilitySiriStaticDeepLinks",
1638
+ "com.apple.systempreferences.OpenAccessibilitySpokenContentStaticDeepLinks",
1639
+ "com.apple.systempreferences.OpenAccessibilitySubtitlesandCaptioningStaticDeepLinks",
1640
+ "com.apple.systempreferences.OpenAccessibilitySwitchControlStaticDeepLinks",
1641
+ "com.apple.systempreferences.OpenAccessibilityVocalShortcutsStaticDeepLinks",
1642
+ "com.apple.systempreferences.OpenAccessibilityVoiceControlStaticDeepLinks",
1643
+ "com.apple.systempreferences.OpenAccessibilityVoiceOverStaticDeepLinks",
1644
+ "com.apple.systempreferences.OpenAccessibilityZoomStaticDeepLinks",
1645
+ "com.apple.systempreferences.OpenAirDropHandoffDeepLinks",
1646
+ "com.apple.systempreferences.OpenAppearanceSettingsDeepLink",
1647
+ "com.apple.systempreferences.OpenAppleAccountMainDeepLink",
1648
+ "com.apple.systempreferences.OpenApplicationNotificationsSettings",
1649
+ "com.apple.systempreferences.OpenAutoBrightnessEntityDeepLink",
1650
+ "com.apple.systempreferences.OpenAutomaticReconnectEntityDeepLink",
1651
+ "com.apple.systempreferences.OpenBatteryHealthPaneDynamicDeepLinks",
1652
+ "com.apple.systempreferences.OpenBatteryOptionsPaneDynamicDeepLinks",
1653
+ "com.apple.systempreferences.OpenBatterySettingsPaneDynamicDeepLinks",
1654
+ "com.apple.systempreferences.OpenClassroomDynamicDeepLinks",
1655
+ "com.apple.systempreferences.OpenClockOptionsEntity",
1656
+ "com.apple.systempreferences.OpenControlCenterModule",
1657
+ "com.apple.systempreferences.OpenDesktopSettingsDeepLink",
1658
+ "com.apple.systempreferences.OpenDesktopSettingsEntity",
1659
+ "com.apple.systempreferences.OpenDeviceManagementStaticDeepLinks",
1660
+ "com.apple.systempreferences.OpenDisplaysSettingsDeepLinks",
1661
+ "com.apple.systempreferences.OpenDockSettingsEntity",
1662
+ "com.apple.systempreferences.OpenEnergySaverPaneDynamicDeepLinks",
1663
+ "com.apple.systempreferences.OpenFamilyMemberSettings",
1664
+ "com.apple.systempreferences.OpenFamilySettings",
1665
+ "com.apple.systempreferences.OpenFamilySetup",
1666
+ "com.apple.systempreferences.OpenFamilySubscriptions",
1667
+ "com.apple.systempreferences.OpenInternationalSettingsDeepLink",
1668
+ "com.apple.systempreferences.OpenLockScreenDeepLinks",
1669
+ "com.apple.systempreferences.OpenLoginItemsDeepLinks",
1670
+ "com.apple.systempreferences.OpenMagicEdgeEntityDeepLink",
1671
+ "com.apple.systempreferences.OpenMissionControlSettingsEntity",
1672
+ "com.apple.systempreferences.OpenMouseDeepLink",
1673
+ "com.apple.systempreferences.OpenNetworkSettingsDeepLinks",
1674
+ "com.apple.systempreferences.OpenNewDeviceOutreachStaticDeepLinks",
1675
+ "com.apple.systempreferences.OpenNotificationCenterEntity",
1676
+ "com.apple.systempreferences.OpenNotificationSummarizationEntity",
1677
+ "com.apple.systempreferences.OpenPrinterScannerDeepLinks",
1678
+ "com.apple.systempreferences.OpenPrivacySecurityDeepLinks",
1679
+ "com.apple.systempreferences.OpenShareKeyboardEntityDeepLink",
1680
+ "com.apple.systempreferences.OpenSoundSettingsDeepLinks",
1681
+ "com.apple.systempreferences.OpenSoundSettingsFeedbackSoundEntity",
1682
+ "com.apple.systempreferences.OpenSoundSettingsInterfaceEffectsEntity",
1683
+ "com.apple.systempreferences.OpenSoundSettingsStartupSoundEntity",
1684
+ "com.apple.systempreferences.OpenStartupDiskStaticDeepLinks",
1685
+ "com.apple.systempreferences.OpenTimeMachineSettingsStaticDeepLinks",
1686
+ "com.apple.systempreferences.OpenTrackpadDeepLinks",
1687
+ "com.apple.systempreferences.OpenTransferResetDeepLinks",
1688
+ "com.apple.systempreferences.OpenTrueToneEntityDeepLink",
1689
+ "com.apple.systempreferences.OpenUsersGroupsDeepLinks",
1690
+ "com.apple.systempreferences.OpenVPNDeepLink",
1691
+ "com.apple.systempreferences.OpenWallpaperDeepLinks",
1692
+ "com.apple.systempreferences.OpenWidgetSettingsEntity",
1693
+ "com.apple.systempreferences.OpenWindowsSettingsEntity",
1694
+ "com.apple.systempreferences.PaperSizeEntity",
1695
+ "com.apple.systempreferences.PaperSizeEntity-UpdatableEntity",
1696
+ "com.apple.systempreferences.RecentDocumentsOptionEntity",
1697
+ "com.apple.systempreferences.RecentDocumentsOptionEntity-UpdatableEntity",
1698
+ "com.apple.systempreferences.RequirePasswordDelayIntent",
1699
+ "com.apple.systempreferences.ScreenSaverDelayEntity",
1700
+ "com.apple.systempreferences.ScreenSaverDelayEntity-UpdatableEntity",
1701
+ "com.apple.systempreferences.ScreenSaverNameIntent",
1702
+ "com.apple.systempreferences.ScrollDirectionEntity",
1703
+ "com.apple.systempreferences.ScrollDirectionEntity-UpdatableEntity",
1704
+ "com.apple.systempreferences.SecondaryClickEntity",
1705
+ "com.apple.systempreferences.SecondaryClickEntity-UpdatableEntity",
1706
+ "com.apple.systempreferences.SettingsNavigationEventDonationIntent",
1707
+ "com.apple.systempreferences.SetupFamilyDeepLink",
1708
+ "com.apple.systempreferences.ShareKeyboardEntity",
1709
+ "com.apple.systempreferences.ShareKeyboardEntity-UpdatableEntity",
1710
+ "com.apple.systempreferences.SharingSettingsIntents.OpenSharingDeepLinks",
1711
+ "com.apple.systempreferences.SharingSettingsIntents.SharingIntents",
1712
+ "com.apple.systempreferences.ShowAsScreenSaverEntity",
1713
+ "com.apple.systempreferences.ShowAsScreenSaverEntity-UpdatableEntity",
1714
+ "com.apple.systempreferences.ShowAsWallpaperEntity",
1715
+ "com.apple.systempreferences.ShowAsWallpaperEntity-UpdatableEntity",
1716
+ "com.apple.systempreferences.ShowBatteryPercentageEntity-UpdatableEntity",
1717
+ "com.apple.systempreferences.ShowLargeClockIntent",
1718
+ "com.apple.systempreferences.ShowMenuBarBackgroundEntity-UpdatableEntity",
1719
+ "com.apple.systempreferences.ShowPasswordHintsIntent",
1720
+ "com.apple.systempreferences.ShowScreenSaverOnAllSpacesEntity",
1721
+ "com.apple.systempreferences.ShowScreenSaverOnAllSpacesEntity-UpdatableEntity",
1722
+ "com.apple.systempreferences.ShowScrollBarsEntity",
1723
+ "com.apple.systempreferences.ShowScrollBarsEntity-UpdatableEntity",
1724
+ "com.apple.systempreferences.ShowWallpaperOnAllSpacesEntity",
1725
+ "com.apple.systempreferences.ShowWallpaperOnAllSpacesEntity-UpdatableEntity",
1726
+ "com.apple.systempreferences.SidebarIconSizeEntity",
1727
+ "com.apple.systempreferences.SidebarIconSizeEntity-UpdatableEntity",
1728
+ "com.apple.systempreferences.SmartZoomEntity",
1729
+ "com.apple.systempreferences.SmartZoomEntity-UpdatableEntity",
1730
+ "com.apple.systempreferences.SoundSettingsFeedbackSoundEntity",
1731
+ "com.apple.systempreferences.SoundSettingsFeedbackSoundEntity-UpdatableEntity",
1732
+ "com.apple.systempreferences.SoundSettingsInterfaceEffectsEntity",
1733
+ "com.apple.systempreferences.SoundSettingsInterfaceEffectsEntity-UpdatableEntity",
1734
+ "com.apple.systempreferences.SoundSettingsStartupSoundEntity",
1735
+ "com.apple.systempreferences.SoundSettingsStartupSoundEntity-UpdatableEntity",
1736
+ "com.apple.systempreferences.SwipeBetweenPagesEntity",
1737
+ "com.apple.systempreferences.SwipeBetweenPagesEntity-UpdatableEntity",
1738
+ "com.apple.systempreferences.ToggleHighPowerModeBatteryNoBatteryIntent",
1739
+ "com.apple.systempreferences.ToggleHighPowerModeOnBatteryIntent",
1740
+ "com.apple.systempreferences.ToggleLowPowerModeIntent",
1741
+ "com.apple.systempreferences.TrackpadAppExposeEntity",
1742
+ "com.apple.systempreferences.TrackpadAppExposeEntity-UpdatableEntity",
1743
+ "com.apple.systempreferences.TrackpadClickPressureEntity",
1744
+ "com.apple.systempreferences.TrackpadClickPressureEntity-UpdatableEntity",
1745
+ "com.apple.systempreferences.TrackpadForceClickEntity",
1746
+ "com.apple.systempreferences.TrackpadForceClickEntity-UpdatableEntity",
1747
+ "com.apple.systempreferences.TrackpadLaunchpadEntity",
1748
+ "com.apple.systempreferences.TrackpadLaunchpadEntity-UpdatableEntity",
1749
+ "com.apple.systempreferences.TrackpadLookUpAndDataDetectorsEntity",
1750
+ "com.apple.systempreferences.TrackpadLookUpAndDataDetectorsEntity-UpdatableEntity",
1751
+ "com.apple.systempreferences.TrackpadMissionControlEntity",
1752
+ "com.apple.systempreferences.TrackpadMissionControlEntity-UpdatableEntity",
1753
+ "com.apple.systempreferences.TrackpadNotificiationCenterEntity",
1754
+ "com.apple.systempreferences.TrackpadNotificiationCenterEntity-UpdatableEntity",
1755
+ "com.apple.systempreferences.TrackpadQuietClickEntity",
1756
+ "com.apple.systempreferences.TrackpadQuietClickEntity-UpdatableEntity",
1757
+ "com.apple.systempreferences.TrackpadRotateEntity",
1758
+ "com.apple.systempreferences.TrackpadRotateEntity-UpdatableEntity",
1759
+ "com.apple.systempreferences.TrackpadSecondaryClickEntity",
1760
+ "com.apple.systempreferences.TrackpadSecondaryClickEntity-UpdatableEntity",
1761
+ "com.apple.systempreferences.TrackpadSettingDeepLink",
1762
+ "com.apple.systempreferences.TrackpadShowDesktopEntity",
1763
+ "com.apple.systempreferences.TrackpadShowDesktopEntity-UpdatableEntity",
1764
+ "com.apple.systempreferences.TrackpadSmartZoomEntity",
1765
+ "com.apple.systempreferences.TrackpadSmartZoomEntity-UpdatableEntity",
1766
+ "com.apple.systempreferences.TrackpadSwipeBetweenAppsEntity",
1767
+ "com.apple.systempreferences.TrackpadSwipeBetweenAppsEntity-UpdatableEntity",
1768
+ "com.apple.systempreferences.TrackpadSwipeBetweenPagesEntity",
1769
+ "com.apple.systempreferences.TrackpadSwipeBetweenPagesEntity-UpdatableEntity",
1770
+ "com.apple.systempreferences.TrackpadTapToClickEntity",
1771
+ "com.apple.systempreferences.TrackpadTapToClickEntity-UpdatableEntity",
1772
+ "com.apple.systempreferences.TrackpadTrackingSpeedEntity",
1773
+ "com.apple.systempreferences.TrackpadTrackingSpeedEntity-UpdatableEntity",
1774
+ "com.apple.systempreferences.TrackpadZoomInOutEntity",
1775
+ "com.apple.systempreferences.TrackpadZoomInOutEntity-UpdatableEntity",
1776
+ "com.apple.systempreferences.TrueToneEntity",
1777
+ "com.apple.systempreferences.TrueToneEntity-UpdatableEntity",
1778
+ "com.apple.systempreferences.UserGroupIntent",
1779
+ "com.apple.systempreferences.UserHomeFolderIntent",
1780
+ "com.apple.systempreferences.UserIsAdminIntent",
1781
+ "com.apple.systempreferences.UserLoginItemsIntent",
1782
+ "com.apple.systempreferences.UserSSOIntent",
1783
+ "com.apple.systempreferences.UserSwitcherMenuStyleEntity-UpdatableEntity",
1784
+ "com.apple.systempreferences.VPNConfigurationEntity-UpdatableEntity",
1785
+ "com.apple.systempreferences.WidgetSettingsEntity",
1786
+ "com.apple.systempreferences.WidgetSettingsEntity-UpdatableEntity",
1787
+ "com.apple.systempreferences.WidgetsAndOnenessEntity",
1788
+ "com.apple.systempreferences.WidgetsAndOnenessEntity-UpdatableEntity",
1789
+ "com.apple.systempreferences.WindowsSettingsEntity",
1790
+ "com.apple.systempreferences.WindowsSettingsEntity-UpdatableEntity",
1791
+ "com.apple.usernotificationsd.PrepareUserNotificationIntent",
1792
+ "com.apple.usernotificationsd.UserNotificationEntity",
1793
+ "com.apple.wallpaper.agent.SetWallpaperIntent",
1794
+ "com.apple.wallpaper.agent.SetWallpaperPhotoIntent",
1795
+ "com.apple.wallpaper.agent.SkipShuffledContentAction",
1796
+ "com.apple.wallpaper.agent.WallpaperEntity",
1797
+ "com.apple.weather.AddSavedLocationIntent",
1798
+ "com.apple.weather.LocationEntity",
1799
+ "com.apple.weather.LocationOfInterestEntity",
1800
+ "com.apple.weather.LocationSearchEntity",
1801
+ "com.apple.weather.OpenMoonIntent",
1802
+ "com.apple.weather.OpenNotificationsConfigurationIntent",
1803
+ "com.apple.weather.OpenSunriseSunsetIntent",
1804
+ "com.apple.weather.OpenUnitsConfigurationIntent",
1805
+ "com.apple.weather.OpenWeatherAirQualityIntent",
1806
+ "com.apple.weather.OpenWeatherSpecificConditionIntent",
1807
+ "com.apple.weather.PreferredUnitsEntity",
1808
+ "com.apple.weather.RemoveSavedLocationIntent",
1809
+ "com.apple.weather.ResetUnitsIntent",
1810
+ "com.apple.weather.SetDistanceUnitIntent",
1811
+ "com.apple.weather.SetPrecipitationUnitIntent",
1812
+ "com.apple.weather.SetPressureUnitIntent",
1813
+ "com.apple.weather.SetTemperatureUnitIntent",
1814
+ "com.apple.weather.SetWindUnitIntent",
1815
+ "com.apple.weather.SyncDataIntent",
1816
+ "com.apple.weather.SyncedDataEntity",
1817
+ "com.apple.weather.WeatherIntent",
1818
+ "com.aptonic.Dropzone5.AddFilesToDropBarIntent",
1819
+ "com.aptonic.Dropzone5.RunGridActionIntent",
1820
+ "com.aptonic.Dropzone5.RunGridActionWithFilesIntent",
1821
+ "com.aptonic.Dropzone5.RunGridActionWithTextIntent",
1822
+ "com.blackfoggames.Schemes.schemes",
1823
+ "com.blackfoggames.TextTool.transform",
1824
+ "com.boonbits.captio.appendtonote",
1825
+ "com.boonbits.captio.sendnote",
1826
+ "com.culturedcode.ThingsTouch.addtask",
1827
+ "com.dayonelog.dayoneiphone.post",
1828
+ "com.flexibits.fantastical2.addevent",
1829
+ "com.flexibits.fantastical2.addreminder",
1830
+ "com.flexibits.fantastical2.showinfantastical",
1831
+ "com.google.chrome.ios.openurl",
1832
+ "com.gtrigonakis.TextWorkflow.MakeUppercaseIntent",
1833
+ "com.gtrigonakis.TextWorkflow.TransformTextIntent",
1834
+ "com.guidedways.2Do.add",
1835
+ "com.hegenberg.BetterTouchTool.ActivateHoveredAppInDockIntent",
1836
+ "com.hegenberg.BetterTouchTool.BluetoothDeviceConnectionIntent",
1837
+ "com.hegenberg.BetterTouchTool.CallBetterTouchToolScriptingInterfaceIntent",
1838
+ "com.hegenberg.BetterTouchTool.CheckForClipboardChanges",
1839
+ "com.hegenberg.BetterTouchTool.CloseAllNotificationsIntent",
1840
+ "com.hegenberg.BetterTouchTool.CloseWindowUnderCursorIntent",
1841
+ "com.hegenberg.BetterTouchTool.ConnectBluetoothMidiDeviceIntent",
1842
+ "com.hegenberg.BetterTouchTool.ControlCenterIntent",
1843
+ "com.hegenberg.BetterTouchTool.ConvertFileOutputToJSONIntent",
1844
+ "com.hegenberg.BetterTouchTool.ConvertInputListToJSONArrayIntent",
1845
+ "com.hegenberg.BetterTouchTool.ConvertJSONOutputToFileIntent",
1846
+ "com.hegenberg.BetterTouchTool.CustomMoveResizeIntent",
1847
+ "com.hegenberg.BetterTouchTool.FindImageOnScreenIntent",
1848
+ "com.hegenberg.BetterTouchTool.FloatOnTopDisableAllIntent",
1849
+ "com.hegenberg.BetterTouchTool.FloatOnTopIntent",
1850
+ "com.hegenberg.BetterTouchTool.FloatingWebViewIntent",
1851
+ "com.hegenberg.BetterTouchTool.GetSelectedTextIntent",
1852
+ "com.hegenberg.BetterTouchTool.HapticFeedbackIntent",
1853
+ "com.hegenberg.BetterTouchTool.MinimizeWindowUnderCursorIntent",
1854
+ "com.hegenberg.BetterTouchTool.MissionControlIntent",
1855
+ "com.hegenberg.BetterTouchTool.MouseClicksIntent",
1856
+ "com.hegenberg.BetterTouchTool.MoveMouseIntent",
1857
+ "com.hegenberg.BetterTouchTool.NightShiftIntent",
1858
+ "com.hegenberg.BetterTouchTool.PastePreviousClipboardItemsIntent",
1859
+ "com.hegenberg.BetterTouchTool.ProvideTextIntent",
1860
+ "com.hegenberg.BetterTouchTool.RestoreSavedMousePosIntent",
1861
+ "com.hegenberg.BetterTouchTool.RestoreWindowLayoutIntent",
1862
+ "com.hegenberg.BetterTouchTool.RunRealJavaScriptIntent",
1863
+ "com.hegenberg.BetterTouchTool.SaveMousePosIntent",
1864
+ "com.hegenberg.BetterTouchTool.SaveWindowLayoutIntent",
1865
+ "com.hegenberg.BetterTouchTool.SendKeyboardShortcutIntent",
1866
+ "com.hegenberg.BetterTouchTool.ShowClipboardManagerIntent",
1867
+ "com.hegenberg.BetterTouchTool.ShowHUDIntent",
1868
+ "com.hegenberg.BetterTouchTool.ShowHideCursorIntent",
1869
+ "com.hegenberg.BetterTouchTool.ShowMenubarInContextMenuIntent",
1870
+ "com.hegenberg.BetterTouchTool.SleepDisplayIntent",
1871
+ "com.hegenberg.BetterTouchTool.SwitchToLoginscreenIntent",
1872
+ "com.hegenberg.BetterTouchTool.ToggleCursorSizeIntent",
1873
+ "com.hegenberg.BetterTouchTool.TriggerContextMenuItemIntent",
1874
+ "com.hegenberg.BetterTouchTool.TriggerMenubarItemIntent",
1875
+ "com.hegenberg.BetterTouchTool.TriggerNamedTriggerIntent",
1876
+ "com.hegenberg.BetterTouchTool.TriggerNamedTriggerIntentV4",
1877
+ "com.hegenberg.BetterTouchTool.TypeOrPasteTextIntent",
1878
+ "com.hegenberg.BetterTouchTool.UploadToIMGURIntent",
1879
+ "com.hegenberg.BetterTouchTool.ZoomWindowUnderCursorIntent",
1880
+ "com.mr-brightside.myParcel.OpenBarcodeScannerIntent",
1881
+ "com.mr-brightside.myParcel.PLViewDeliveryIntent",
1882
+ "com.mr-brightside.myParcel.StartAddingDeliveryIntent",
1883
+ "com.mr-brightside.myParcel.TrackDeliveryIntent",
1884
+ "com.nick.Clic.ControlLiveActivityIntent",
1885
+ "com.nick.Clic.CreateLiveActivityIntent",
1886
+ "com.nick.Clic.EndAllLiveActivitiesIntent",
1887
+ "com.nick.Clic.GroupIntent",
1888
+ "com.nick.Clic.LaunchAlarmsIntent",
1889
+ "com.nick.Clic.LaunchSpeakerIntent",
1890
+ "com.nick.Clic.MuteIntent",
1891
+ "com.nick.Clic.NextIntent",
1892
+ "com.nick.Clic.NowPlayingWidgetConfigurationIntent",
1893
+ "com.nick.Clic.PlayIntent",
1894
+ "com.nick.Clic.PlayOnClicIntent",
1895
+ "com.nick.Clic.PlaybackControlConfiguration",
1896
+ "com.nick.Clic.PlaybackIntent",
1897
+ "com.nick.Clic.PreviousIntent",
1898
+ "com.nick.Clic.RefreshIntent",
1899
+ "com.nick.Clic.RemoteWidgetConfigurationIntent",
1900
+ "com.nick.Clic.RunSceneIntent",
1901
+ "com.nick.Clic.SceneWidgetConfigurationIntent",
1902
+ "com.nick.Clic.SeparateRoomsIntent",
1903
+ "com.nick.Clic.SetNightModeIntent",
1904
+ "com.nick.Clic.SetPlaybackIntent",
1905
+ "com.nick.Clic.SetRelativeGroupIncreaseVolumeIntent",
1906
+ "com.nick.Clic.SetRelativeGroupVolumeIntent",
1907
+ "com.nick.Clic.SetSleepTimerIntent",
1908
+ "com.nick.Clic.SetSpeechEnhancementIntent",
1909
+ "com.nick.Clic.SetVolumeIntent",
1910
+ "com.nick.Clic.StopSleepTimerIntent",
1911
+ "com.nick.Clic.TogglePlaybackIntent",
1912
+ "com.omnigroup.OmniFocus2.iPhone.newitem",
1913
+ "com.omnigroup.OmniFocus2.iPhone.pastetaskpaper",
1914
+ "com.omz-software.Editorial.runworkflow",
1915
+ "com.omz-software.Pythonista.editscript",
1916
+ "com.omz-software.Pythonista.runscript",
1917
+ "com.outerspaceapps.itranslate.translate",
1918
+ "com.panic.iOS.Transmit.Share",
1919
+ "com.phocusllp.due.add",
1920
+ "com.pixelmatorteam.pixelmator.x.ApplyColorAdjustmentPresetToImageIntent",
1921
+ "com.pixelmatorteam.pixelmator.x.ApplyEffectPresetToImageIntent",
1922
+ "com.pixelmatorteam.pixelmator.x.ApplyLUTToImageIntent",
1923
+ "com.pixelmatorteam.pixelmator.x.AutoColorBalanceImageIntent",
1924
+ "com.pixelmatorteam.pixelmator.x.AutoCropImageIntent",
1925
+ "com.pixelmatorteam.pixelmator.x.AutoEnhanceImageIntent",
1926
+ "com.pixelmatorteam.pixelmator.x.AutoHueSaturationImageIntent",
1927
+ "com.pixelmatorteam.pixelmator.x.AutoLightnessImageIntent",
1928
+ "com.pixelmatorteam.pixelmator.x.AutoWhiteBalanceImageIntent",
1929
+ "com.pixelmatorteam.pixelmator.x.ChangeColorDepthOfImageIntent",
1930
+ "com.pixelmatorteam.pixelmator.x.ChangeColorProfileOfImageIntent",
1931
+ "com.pixelmatorteam.pixelmator.x.ConvertImageIntent",
1932
+ "com.pixelmatorteam.pixelmator.x.CropImageIntent",
1933
+ "com.pixelmatorteam.pixelmator.x.CropImageToAspectRatioIntent",
1934
+ "com.pixelmatorteam.pixelmator.x.DenoiseImageIntent",
1935
+ "com.pixelmatorteam.pixelmator.x.FlipRotateImageIntent",
1936
+ "com.pixelmatorteam.pixelmator.x.GetPersonMaskFromPhotoIntent",
1937
+ "com.pixelmatorteam.pixelmator.x.GetSidecarFileOfImageIntent",
1938
+ "com.pixelmatorteam.pixelmator.x.IncreaseImageResolutionIntent",
1939
+ "com.pixelmatorteam.pixelmator.x.InvertImageIntent",
1940
+ "com.pixelmatorteam.pixelmator.x.MaskImageIntent",
1941
+ "com.pixelmatorteam.pixelmator.x.MatchColorsOfImagesIntent",
1942
+ "com.pixelmatorteam.pixelmator.x.OptimizeImageForWebIntent",
1943
+ "com.pixelmatorteam.pixelmator.x.OverlayImageIntent",
1944
+ "com.pixelmatorteam.pixelmator.x.RemoveBackgroundFromPortraitPhotoIntent",
1945
+ "com.pixelmatorteam.pixelmator.x.ReplaceLayerInDocumentIntent",
1946
+ "com.pixelmatorteam.pixelmator.x.ReplaceTextInDocumentIntent",
1947
+ "com.pixelmatorteam.pixelmator.x.ResizeImageIntent",
1948
+ "com.pixelmatorteam.pixelmator.x.TrimImageIntent",
1949
+ "com.potionfactory.TheHitListMobile.tasks",
1950
+ "com.raycast.macos.CompleteFocusSessionIntent",
1951
+ "com.raycast.macos.RaycastFocusAppleFocusFilter",
1952
+ "com.raycast.macos.StartFocusSessionIntent",
1953
+ "com.realmacsoftware.clear.createlist",
1954
+ "com.realmacsoftware.clear.createtask",
1955
+ "com.rogueamoeba.audiohijack.AH4RunScriptIntent",
1956
+ "com.rogueamoeba.audiohijack.AH4RunScriptTextIntent",
1957
+ "com.rogueamoeba.audiohijack.AH4RunSessionIntent",
1958
+ "com.sindresorhus.AI-Actions.AskAI",
1959
+ "com.sindresorhus.AI-Actions.AskAI2",
1960
+ "com.sindresorhus.AI-Actions.AskClaudeIntent",
1961
+ "com.sindresorhus.AI-Actions.GenerateImageIntent",
1962
+ "com.sindresorhus.Actions.AddToListIntent",
1963
+ "com.sindresorhus.Actions.ApplyCaptureDateIntent",
1964
+ "com.sindresorhus.Actions.AskForDurationIntent",
1965
+ "com.sindresorhus.Actions.AskForInputWithDialog",
1966
+ "com.sindresorhus.Actions.AskForText",
1967
+ "com.sindresorhus.Actions.Authenticate",
1968
+ "com.sindresorhus.Actions.Authenticate2",
1969
+ "com.sindresorhus.Actions.BlurImages",
1970
+ "com.sindresorhus.Actions.Boolean",
1971
+ "com.sindresorhus.Actions.CalculateBearingIntent",
1972
+ "com.sindresorhus.Actions.CalculateDistanceIntent",
1973
+ "com.sindresorhus.Actions.CalculateWithSoulver",
1974
+ "com.sindresorhus.Actions.ChooseFromListExtendedIntent",
1975
+ "com.sindresorhus.Actions.ClampNumberIntent",
1976
+ "com.sindresorhus.Actions.CleanZipIntent",
1977
+ "com.sindresorhus.Actions.ColorIntent",
1978
+ "com.sindresorhus.Actions.CombineAudioFilesIntent",
1979
+ "com.sindresorhus.Actions.CombineListsIntent",
1980
+ "com.sindresorhus.Actions.CombineVideosIntent",
1981
+ "com.sindresorhus.Actions.ConvertCoordinatesToLocation",
1982
+ "com.sindresorhus.Actions.ConvertDateToReferenceTimestampIntent",
1983
+ "com.sindresorhus.Actions.ConvertNumberBaseIntent",
1984
+ "com.sindresorhus.Actions.ConvertReferenceTimestampToDateIntent",
1985
+ "com.sindresorhus.Actions.ConvertTextFileEncodingIntent",
1986
+ "com.sindresorhus.Actions.CounterClearAllIntent",
1987
+ "com.sindresorhus.Actions.CounterIntent",
1988
+ "com.sindresorhus.Actions.CreateColorImageIntent",
1989
+ "com.sindresorhus.Actions.CreateDurationIntent",
1990
+ "com.sindresorhus.Actions.CreateGradientColorImageIntent",
1991
+ "com.sindresorhus.Actions.CreateMenuItem",
1992
+ "com.sindresorhus.Actions.CreateNotificationActionIntent",
1993
+ "com.sindresorhus.Actions.CreateTemporaryFolderIntent",
1994
+ "com.sindresorhus.Actions.CreateURLIntent",
1995
+ "com.sindresorhus.Actions.CreateURLShortcutFileIntent",
1996
+ "com.sindresorhus.Actions.DateToUnixTimeIntent",
1997
+ "com.sindresorhus.Actions.DebugIntent",
1998
+ "com.sindresorhus.Actions.DeleteEmptyContactsIntent",
1999
+ "com.sindresorhus.Actions.DownloadFileIntent",
2000
+ "com.sindresorhus.Actions.EditURLIntent",
2001
+ "com.sindresorhus.Actions.EncryptFile",
2002
+ "com.sindresorhus.Actions.EncryptText",
2003
+ "com.sindresorhus.Actions.FilterListIntent",
2004
+ "com.sindresorhus.Actions.FilterListOfDictionariesIntent",
2005
+ "com.sindresorhus.Actions.FindPointsOfInterestIntent",
2006
+ "com.sindresorhus.Actions.FlashScreen",
2007
+ "com.sindresorhus.Actions.FormatCurrencyIntent",
2008
+ "com.sindresorhus.Actions.FormatDateDifferenceIntent",
2009
+ "com.sindresorhus.Actions.FormatDurationIntent",
2010
+ "com.sindresorhus.Actions.FormatNumberAsOrdinalIntent",
2011
+ "com.sindresorhus.Actions.FormatNumberCompactIntent",
2012
+ "com.sindresorhus.Actions.FormatPersonName",
2013
+ "com.sindresorhus.Actions.FormatTextListIntent",
2014
+ "com.sindresorhus.Actions.GenerateCSVIntent",
2015
+ "com.sindresorhus.Actions.GenerateEmojisIntent",
2016
+ "com.sindresorhus.Actions.GenerateRandomData",
2017
+ "com.sindresorhus.Actions.GenerateUUIDIntent",
2018
+ "com.sindresorhus.Actions.GeoURIIntent",
2019
+ "com.sindresorhus.Actions.GetActionsVersion",
2020
+ "com.sindresorhus.Actions.GetAllSystemColorsIntent",
2021
+ "com.sindresorhus.Actions.GetAudioPlaybackDestinationIntent",
2022
+ "com.sindresorhus.Actions.GetAverageColorIntent",
2023
+ "com.sindresorhus.Actions.GetAverageColorOfImage",
2024
+ "com.sindresorhus.Actions.GetBatteryStateIntent",
2025
+ "com.sindresorhus.Actions.GetBluetoothDevice",
2026
+ "com.sindresorhus.Actions.GetBluetoothDevices",
2027
+ "com.sindresorhus.Actions.GetBooleanFromInput",
2028
+ "com.sindresorhus.Actions.GetCompassHeading",
2029
+ "com.sindresorhus.Actions.GetContentsOfURLExtendedIntent",
2030
+ "com.sindresorhus.Actions.GetDateAddedOfFileIntent",
2031
+ "com.sindresorhus.Actions.GetDatesInRange",
2032
+ "com.sindresorhus.Actions.GetDefaultBrowserIntent",
2033
+ "com.sindresorhus.Actions.GetDefaultPrinter",
2034
+ "com.sindresorhus.Actions.GetDeviceDetailsExtended",
2035
+ "com.sindresorhus.Actions.GetDeviceMotionActivityIntent",
2036
+ "com.sindresorhus.Actions.GetDeviceMotionData",
2037
+ "com.sindresorhus.Actions.GetDeviceOrientationIntent",
2038
+ "com.sindresorhus.Actions.GetDominantColorsOfImage",
2039
+ "com.sindresorhus.Actions.GetEmojisIntent",
2040
+ "com.sindresorhus.Actions.GetFileExtensionVisibilityIntent",
2041
+ "com.sindresorhus.Actions.GetFileIconIntent",
2042
+ "com.sindresorhus.Actions.GetFilePathIntent",
2043
+ "com.sindresorhus.Actions.GetFileTagsIntent",
2044
+ "com.sindresorhus.Actions.GetHighResolutionTimestamp",
2045
+ "com.sindresorhus.Actions.GetImageCaptureDate",
2046
+ "com.sindresorhus.Actions.GetImageLocation",
2047
+ "com.sindresorhus.Actions.GetImageURLsFromWebPageIntent",
2048
+ "com.sindresorhus.Actions.GetImagesFromWebPageIntent",
2049
+ "com.sindresorhus.Actions.GetIndexOfListItem",
2050
+ "com.sindresorhus.Actions.GetMapImageOfLocation",
2051
+ "com.sindresorhus.Actions.GetMediaMetadataIntent",
2052
+ "com.sindresorhus.Actions.GetMetaTagsOfURLIntent",
2053
+ "com.sindresorhus.Actions.GetModifierKeyState",
2054
+ "com.sindresorhus.Actions.GetMusicPlaylistsIntent",
2055
+ "com.sindresorhus.Actions.GetParagraphsFromTextIntent",
2056
+ "com.sindresorhus.Actions.GetPrinters",
2057
+ "com.sindresorhus.Actions.GetQueryItemValueFromURLIntent",
2058
+ "com.sindresorhus.Actions.GetQueryItemsFromURLAsDictionaryIntent",
2059
+ "com.sindresorhus.Actions.GetQueryItemsFromURLIntent",
2060
+ "com.sindresorhus.Actions.GetRandomNumberFromSeed",
2061
+ "com.sindresorhus.Actions.GetRawMediaMetadataIntent",
2062
+ "com.sindresorhus.Actions.GetRelatedWordsIntent",
2063
+ "com.sindresorhus.Actions.GetRunningAppsIntent",
2064
+ "com.sindresorhus.Actions.GetSentencesFromTextIntent",
2065
+ "com.sindresorhus.Actions.GetSystemColorIntent",
2066
+ "com.sindresorhus.Actions.GetTitleOfURLIntent",
2067
+ "com.sindresorhus.Actions.GetUniformTypeIdentifierIntent",
2068
+ "com.sindresorhus.Actions.GetUnsplashImageIntent",
2069
+ "com.sindresorhus.Actions.GetUserDetailsIntent",
2070
+ "com.sindresorhus.Actions.GetValuesUsingJSONPathIntent",
2071
+ "com.sindresorhus.Actions.GlobalVariableDelete",
2072
+ "com.sindresorhus.Actions.GlobalVariableGetAll",
2073
+ "com.sindresorhus.Actions.GlobalVariableGetBoolean",
2074
+ "com.sindresorhus.Actions.GlobalVariableGetNumber",
2075
+ "com.sindresorhus.Actions.GlobalVariableGetText",
2076
+ "com.sindresorhus.Actions.GlobalVariableSetBoolean",
2077
+ "com.sindresorhus.Actions.GlobalVariableSetNumber",
2078
+ "com.sindresorhus.Actions.GlobalVariableSetText",
2079
+ "com.sindresorhus.Actions.HapticFeedbackIntent",
2080
+ "com.sindresorhus.Actions.HexEncode",
2081
+ "com.sindresorhus.Actions.HideShortcutsAppIntent",
2082
+ "com.sindresorhus.Actions.InvertDictionaryIntent",
2083
+ "com.sindresorhus.Actions.InvertImages",
2084
+ "com.sindresorhus.Actions.Is24HourTimeFormatIntent",
2085
+ "com.sindresorhus.Actions.IsAccessibilityFeatureOn",
2086
+ "com.sindresorhus.Actions.IsAudioPlayingIntent",
2087
+ "com.sindresorhus.Actions.IsBluetoothOnIntent",
2088
+ "com.sindresorhus.Actions.IsCallActive",
2089
+ "com.sindresorhus.Actions.IsCameraOn",
2090
+ "com.sindresorhus.Actions.IsCellularDataOn",
2091
+ "com.sindresorhus.Actions.IsCellularLowDataModeOn",
2092
+ "com.sindresorhus.Actions.IsConformingToUTIIntent",
2093
+ "com.sindresorhus.Actions.IsConnectedToVPNIntent",
2094
+ "com.sindresorhus.Actions.IsDarkModeIntent",
2095
+ "com.sindresorhus.Actions.IsDay",
2096
+ "com.sindresorhus.Actions.IsDeviceLocked",
2097
+ "com.sindresorhus.Actions.IsDeviceMoving",
2098
+ "com.sindresorhus.Actions.IsDeviceOrientationIntent",
2099
+ "com.sindresorhus.Actions.IsHostReachable",
2100
+ "com.sindresorhus.Actions.IsLocationServicesEnabledIntent",
2101
+ "com.sindresorhus.Actions.IsLowPowerModeIntent",
2102
+ "com.sindresorhus.Actions.IsMicrophoneOnIntent",
2103
+ "com.sindresorhus.Actions.IsOnlineIntent",
2104
+ "com.sindresorhus.Actions.IsReachableIntent",
2105
+ "com.sindresorhus.Actions.IsScreenLockedIntent",
2106
+ "com.sindresorhus.Actions.IsScreenSaverActiveIntent",
2107
+ "com.sindresorhus.Actions.IsShakingDevice",
2108
+ "com.sindresorhus.Actions.IsSilentModeOnIntent",
2109
+ "com.sindresorhus.Actions.IsTimeInRangeIntent",
2110
+ "com.sindresorhus.Actions.IsTimeIntent",
2111
+ "com.sindresorhus.Actions.IsTrueIntent",
2112
+ "com.sindresorhus.Actions.IsWiFiOnIntent",
2113
+ "com.sindresorhus.Actions.JoinWiFiIntent",
2114
+ "com.sindresorhus.Actions.KeychainDeleteIntent",
2115
+ "com.sindresorhus.Actions.KeychainGetAllKeysIntent",
2116
+ "com.sindresorhus.Actions.KeychainGetIntent",
2117
+ "com.sindresorhus.Actions.KeychainHasKeyIntent",
2118
+ "com.sindresorhus.Actions.KeychainSetIntent",
2119
+ "com.sindresorhus.Actions.MakeLivePhotoFromVideoIntent",
2120
+ "com.sindresorhus.Actions.MakeMarkdownTableIntent",
2121
+ "com.sindresorhus.Actions.ManageShortcutLockGetAllIntent",
2122
+ "com.sindresorhus.Actions.ManageShortcutLockIntent",
2123
+ "com.sindresorhus.Actions.MergeDictionariesIntent",
2124
+ "com.sindresorhus.Actions.MusicPlaylist_AppEntity",
2125
+ "com.sindresorhus.Actions.NamedClipboardClearIntent",
2126
+ "com.sindresorhus.Actions.NamedClipboardGetDataIntent",
2127
+ "com.sindresorhus.Actions.NamedClipboardGetTextIntent",
2128
+ "com.sindresorhus.Actions.NamedClipboardSetDataIntent",
2129
+ "com.sindresorhus.Actions.NamedClipboardSetTextIntent",
2130
+ "com.sindresorhus.Actions.Notification_AppEntity",
2131
+ "com.sindresorhus.Actions.OpenURLsInSafariIntent",
2132
+ "com.sindresorhus.Actions.OpenURLsWithApp",
2133
+ "com.sindresorhus.Actions.OverlayImageExtendedIntent",
2134
+ "com.sindresorhus.Actions.OverwriteFile",
2135
+ "com.sindresorhus.Actions.ParseCSVIntent",
2136
+ "com.sindresorhus.Actions.ParseJSON5Intent",
2137
+ "com.sindresorhus.Actions.ParseMarkdownTableIntent",
2138
+ "com.sindresorhus.Actions.PickColorIntent",
2139
+ "com.sindresorhus.Actions.PingIntent",
2140
+ "com.sindresorhus.Actions.PlayAlertSound",
2141
+ "com.sindresorhus.Actions.PlayMediaWithControlsIntent",
2142
+ "com.sindresorhus.Actions.PrettyPrintDictionariesIntent",
2143
+ "com.sindresorhus.Actions.PrinterAppEntity",
2144
+ "com.sindresorhus.Actions.RandomBooleanIntent",
2145
+ "com.sindresorhus.Actions.RandomColorIntent",
2146
+ "com.sindresorhus.Actions.RandomDateTimeIntent",
2147
+ "com.sindresorhus.Actions.RandomEmojiIntent",
2148
+ "com.sindresorhus.Actions.RandomFloatingPointNumberIntent",
2149
+ "com.sindresorhus.Actions.RandomTextIntent",
2150
+ "com.sindresorhus.Actions.RemoveDictionaryValuesIntent",
2151
+ "com.sindresorhus.Actions.RemoveDuplicateLinesIntent",
2152
+ "com.sindresorhus.Actions.RemoveDuplicatesFromListIntent",
2153
+ "com.sindresorhus.Actions.RemoveEmojiIntent",
2154
+ "com.sindresorhus.Actions.RemoveEmptyLinesIntent",
2155
+ "com.sindresorhus.Actions.RemoveFromListIntent",
2156
+ "com.sindresorhus.Actions.RemoveNonPrintableCharactersIntent",
2157
+ "com.sindresorhus.Actions.RemoveNotificationsIntent",
2158
+ "com.sindresorhus.Actions.ReverseLines",
2159
+ "com.sindresorhus.Actions.ReverseListIntent",
2160
+ "com.sindresorhus.Actions.RoundNumberToDecimalPlacesIntent",
2161
+ "com.sindresorhus.Actions.RoundNumberToMultipleIntent",
2162
+ "com.sindresorhus.Actions.RunCurlCommandIntent",
2163
+ "com.sindresorhus.Actions.SampleColorIntent",
2164
+ "com.sindresorhus.Actions.ScanBarcodesInImageIntent",
2165
+ "com.sindresorhus.Actions.ScanDocumentsIntent",
2166
+ "com.sindresorhus.Actions.ScanQRCodesInImageIntent",
2167
+ "com.sindresorhus.Actions.SendDistributedNotificationIntent",
2168
+ "com.sindresorhus.Actions.SendFeedbackIntent",
2169
+ "com.sindresorhus.Actions.SetDefaultPrinter",
2170
+ "com.sindresorhus.Actions.SetDictionaryValueUsingJSONPathIntent",
2171
+ "com.sindresorhus.Actions.SetFileCreationModificationDateIntent",
2172
+ "com.sindresorhus.Actions.SetFileExtensionVisibilityIntent",
2173
+ "com.sindresorhus.Actions.SetFileIconIntent",
2174
+ "com.sindresorhus.Actions.SetFileTagsIntent",
2175
+ "com.sindresorhus.Actions.SetImageCaptureDate",
2176
+ "com.sindresorhus.Actions.SetImageLocation",
2177
+ "com.sindresorhus.Actions.SetUniformTypeIdentifier",
2178
+ "com.sindresorhus.Actions.ShowBlackScreenIntent",
2179
+ "com.sindresorhus.Actions.ShowNotificationIntent",
2180
+ "com.sindresorhus.Actions.ShowOverlayIntent",
2181
+ "com.sindresorhus.Actions.ShuffleListIntent",
2182
+ "com.sindresorhus.Actions.SortListIntent",
2183
+ "com.sindresorhus.Actions.SortListOfDictionariesIntent",
2184
+ "com.sindresorhus.Actions.SortMonthsIntent",
2185
+ "com.sindresorhus.Actions.SpellOutNumberIntent",
2186
+ "com.sindresorhus.Actions.SymbolImageIntent",
2187
+ "com.sindresorhus.Actions.ToggleBooleanIntent",
2188
+ "com.sindresorhus.Actions.TranscribeAudioIntent",
2189
+ "com.sindresorhus.Actions.TransformListsIntent",
2190
+ "com.sindresorhus.Actions.TransformTextIntent",
2191
+ "com.sindresorhus.Actions.TransformTextWithJavaScriptIntent",
2192
+ "com.sindresorhus.Actions.TrimWhitespaceIntent",
2193
+ "com.sindresorhus.Actions.TruncateListIntent",
2194
+ "com.sindresorhus.Actions.TruncateNumber",
2195
+ "com.sindresorhus.Actions.TruncateTextIntent",
2196
+ "com.sindresorhus.Actions.UnixTimeToDateIntent",
2197
+ "com.sindresorhus.Actions.UseSystemFontInRichTextIntent",
2198
+ "com.sindresorhus.Actions.WaitForDistributedNotificationIntent",
2199
+ "com.sindresorhus.Actions.WaitMilliseconds",
2200
+ "com.sindresorhus.Actions.WiFiNetworkAppEntity",
2201
+ "com.sindresorhus.Actions.WorkoutAppEntity",
2202
+ "com.sindresorhus.Actions.WriteTextIntent",
2203
+ "com.sindresorhus.Supercharge.CaptureAndTranslateInteractiveIntent",
2204
+ "com.sindresorhus.Supercharge.CaptureTextInteractiveIntent",
2205
+ "com.sindresorhus.Supercharge.CenterMousePointerIntent",
2206
+ "com.sindresorhus.Supercharge.ClearClipboardIntent",
2207
+ "com.sindresorhus.Supercharge.ClearRecentListsIntent",
2208
+ "com.sindresorhus.Supercharge.ClearTopNotificationIntent",
2209
+ "com.sindresorhus.Supercharge.ClearVisibleNotificationsIntent",
2210
+ "com.sindresorhus.Supercharge.ClickTopNotificationIntent",
2211
+ "com.sindresorhus.Supercharge.CopyLinksToSelectedMailMessagesIntent",
2212
+ "com.sindresorhus.Supercharge.CopyLinksToSelectedNotesIntent",
2213
+ "com.sindresorhus.Supercharge.CreateEmailWithFilesIntent",
2214
+ "com.sindresorhus.Supercharge.CreateNewTextFileInFinderIntent",
2215
+ "com.sindresorhus.Supercharge.EjectAllDisksIntent",
2216
+ "com.sindresorhus.Supercharge.EmptyTrashIntent",
2217
+ "com.sindresorhus.Supercharge.ExportAppSettingsIntent",
2218
+ "com.sindresorhus.Supercharge.GetAccentColorIntent",
2219
+ "com.sindresorhus.Supercharge.GetAutoQuitStateIntent",
2220
+ "com.sindresorhus.Supercharge.GetDefaultBrowserIntent",
2221
+ "com.sindresorhus.Supercharge.GetDesktopIconsVisibilityIntent",
2222
+ "com.sindresorhus.Supercharge.GetDesktopWidgetsVisibilityIntent",
2223
+ "com.sindresorhus.Supercharge.GetFunctionKeysEnabledIntent",
2224
+ "com.sindresorhus.Supercharge.GetHotCornerIntent",
2225
+ "com.sindresorhus.Supercharge.GetIOSNotificationsEnabledIntent",
2226
+ "com.sindresorhus.Supercharge.GetKeepAwakeStateIntent",
2227
+ "com.sindresorhus.Supercharge.GetKeyboardBrightnessIntent",
2228
+ "com.sindresorhus.Supercharge.GetLinksToSelectedMailMessagesIntent",
2229
+ "com.sindresorhus.Supercharge.GetLinksToSelectedNotesIntent",
2230
+ "com.sindresorhus.Supercharge.GetMediaKeysAppControlTargetIntent",
2231
+ "com.sindresorhus.Supercharge.GetMicrophoneMuteStateIntent",
2232
+ "com.sindresorhus.Supercharge.GetMousePointerVisibilityIntent",
2233
+ "com.sindresorhus.Supercharge.GetNightShiftIntent",
2234
+ "com.sindresorhus.Supercharge.GetSoundMuteStateIntent",
2235
+ "com.sindresorhus.Supercharge.GetTrueToneIntent",
2236
+ "com.sindresorhus.Supercharge.GrayscaleModeIntent",
2237
+ "com.sindresorhus.Supercharge.HideAllWindowsIntent",
2238
+ "com.sindresorhus.Supercharge.InvertSelectionInFinderIntent",
2239
+ "com.sindresorhus.Supercharge.IsolateWindowIntent",
2240
+ "com.sindresorhus.Supercharge.KeyboardBrightnessIntent",
2241
+ "com.sindresorhus.Supercharge.MinimizeAllWindowsIntent",
2242
+ "com.sindresorhus.Supercharge.OpenSystemSettingIntent",
2243
+ "com.sindresorhus.Supercharge.PickColorIntent",
2244
+ "com.sindresorhus.Supercharge.QuitAllAppsIntent",
2245
+ "com.sindresorhus.Supercharge.ScanQRCodeInteractiveIntent",
2246
+ "com.sindresorhus.Supercharge.SetAccentColorIntent",
2247
+ "com.sindresorhus.Supercharge.SetAutoQuitStateIntent",
2248
+ "com.sindresorhus.Supercharge.SetDefaultBrowserIntent",
2249
+ "com.sindresorhus.Supercharge.SetDesktopIconsVisibilityIntent",
2250
+ "com.sindresorhus.Supercharge.SetDesktopWidgetsVisibilityIntent",
2251
+ "com.sindresorhus.Supercharge.SetFolderColorIntent",
2252
+ "com.sindresorhus.Supercharge.SetFunctionKeysEnabledIntent",
2253
+ "com.sindresorhus.Supercharge.SetHotCornerIntent",
2254
+ "com.sindresorhus.Supercharge.SetIOSNotificationsEnabledIntent",
2255
+ "com.sindresorhus.Supercharge.SetKeepAwakeStateIntent",
2256
+ "com.sindresorhus.Supercharge.SetMediaKeysAppControlTargetIntent",
2257
+ "com.sindresorhus.Supercharge.SetMicrophoneMuteStateIntent",
2258
+ "com.sindresorhus.Supercharge.SetMousePointerVisibilityIntent",
2259
+ "com.sindresorhus.Supercharge.SetSoundMuteStateIntent",
2260
+ "com.sindresorhus.Supercharge.ShowDesktopIntent",
2261
+ "com.sindresorhus.Supercharge.SleepDisplaysIntent",
2262
+ "com.sindresorhus.Supercharge.StartCatModeIntent",
2263
+ "com.sindresorhus.Supercharge.StartCleaningModeIntent",
2264
+ "com.sindresorhus.Supercharge.ToggleFinderIntent",
2265
+ "com.sindresorhus.Supercharge.ToggleHiddenFilesInFinderIntent",
2266
+ "com.sindresorhus.Supercharge.ToggleHotCornersIntent",
2267
+ "com.sindresorhus.Supercharge.ToggleNowPlayingWindowIntent",
2268
+ "com.sindresorhus.Supercharge.TogglePasswordsMenuBarWindowIntent",
2269
+ "com.sindresorhus.Supercharge.ToggleSpotlightIntent",
2270
+ "com.sindresorhus.Supercharge.ToggleTerminalIntent",
2271
+ "com.sindresorhus.Supercharge.ToggleWeatherMenuBarWindowIntent",
2272
+ "com.sindresorhus.Supercharge.UnminimizeWindowsOfActiveAppIntent",
2273
+ "com.sindresorhus.Text-Lens.CaptureTextIntent",
2274
+ "com.skype.skype.call",
2275
+ "com.soulmen.ulysses.pad.attach",
2276
+ "com.soulmen.ulysses.pad.insert",
2277
+ "com.soulmen.ulysses.pad.new-group",
2278
+ "com.soulmen.ulysses.pad.new-sheet",
2279
+ "com.soulmen.ulysses.pad.open",
2280
+ "com.soulmen.ulysses.pad.read-sheet",
2281
+ "com.squibner.Blink.convert",
2282
+ "com.squibner.Blink.search",
2283
+ "com.surteesstudios.Bartender.BartenderFocusFilter4",
2284
+ "com.tapbots.Ivory.PTHIvoryFollowersCountWidgetIntent",
2285
+ "com.tapbots.Ivory.PTHIvoryLatestFollowersWidgetIntent",
2286
+ "com.tapbots.Ivory.PTHIvoryNewsWidgetAppIntent",
2287
+ "com.tapbots.Ivory.PTHIvoryOpenFediverseURLIntent",
2288
+ "com.tapbots.Ivory.PTHIvoryOpenIntent",
2289
+ "com.tapbots.Ivory.PTHIvoryPostStatusIntent",
2290
+ "com.tapbots.Ivory.PTHIvoryStatsWidgetIntent",
2291
+ "com.tapbots.Ivory.PTHIvoryTimelineImageWidgetAppIntent",
2292
+ "com.tapbots.Ivory.PTHIvoryTimelineWidgetIntent",
2293
+ "com.tapbots.Pastebot3Mac.PTHPastebotClearPasteboardIntent",
2294
+ "com.tapbots.Pastebot3Mac.PTHPastebotCopyToClipboardIntent",
2295
+ "com.tapbots.Pastebot3Mac.PTHPastebotFilterEntity",
2296
+ "com.tapbots.Pastebot3Mac.PTHPastebotFilterIntent",
2297
+ "com.tapbots.Pastebot3Mac.PTHPastebotGetClippingByIndexIntent",
2298
+ "com.tapbots.Pastebot3Mac.PTHPastebotGetClippingsIntent",
2299
+ "com.tapbots.Pastebot3Mac.PTHPastebotPasteClipboardIntent",
2300
+ "com.tapbots.Pastebot3Mac.PTHPastebotPasteClippingIntent",
2301
+ "com.tapbots.Pastebot3Mac.PTHPastebotPasteboardEntity",
2302
+ "com.tapbots.Tweetbot.opentweetbot",
2303
+ "com.tapbots.Tweetbot.searchtext",
2304
+ "com.tapbots.Tweetbot.tweet",
2305
+ "com.tapbots.Tweetbot.viewprofile",
2306
+ "com.tappytaps.barkio.OpenActivityLogIntent",
2307
+ "com.tappytaps.barkio.OpenBabyStationIntent",
2308
+ "com.tappytaps.barkio.OpenParentStationConnectIntent",
2309
+ "com.tappytaps.barkio.OpenParentStationIntent",
2310
+ "com.tijo.opener.Opener.show-options",
2311
+ "com.wiheads.paste.CreateItemIntent",
2312
+ "com.wiheads.paste.CreatePinboardIntent",
2313
+ "com.wiheads.paste.GetItemAtIndexIntent",
2314
+ "com.wiheads.paste.GetLatestItemIntent",
2315
+ "desktop.WhatsApp.openin",
2316
+ "dk.simonbs.brrr.NotificationCriteriaFocusFilterIntent",
2317
+ "fm.overcast.overcast.add",
2318
+ "io.tailscale.ipn.macsys.ConnectIntent",
2319
+ "io.tailscale.ipn.macsys.DeviceAppEntity",
2320
+ "io.tailscale.ipn.macsys.DisconnectIntent",
2321
+ "io.tailscale.ipn.macsys.GetStatusIntent",
2322
+ "io.tailscale.ipn.macsys.PingAppIntent",
2323
+ "io.tailscale.ipn.macsys.ProfileAppEntity",
2324
+ "io.tailscale.ipn.macsys.SetDNSAppIntent",
2325
+ "io.tailscale.ipn.macsys.StopUsingExitNodeIntent",
2326
+ "io.tailscale.ipn.macsys.SwitchProfileIntent",
2327
+ "io.tailscale.ipn.macsys.TaildropAppIntent",
2328
+ "io.tailscale.ipn.macsys.ToggleAppIntent",
2329
+ "io.tailscale.ipn.macsys.UseExitNodeIntent",
2330
+ "is.workflow.actions.addframetogif",
2331
+ "is.workflow.actions.additemtolist",
2332
+ "is.workflow.actions.addmusictoupnext",
2333
+ "is.workflow.actions.addnewcalendar",
2334
+ "is.workflow.actions.addnewcontact",
2335
+ "is.workflow.actions.addnewevent",
2336
+ "is.workflow.actions.addnewreminder",
2337
+ "is.workflow.actions.addquickreminder",
2338
+ "is.workflow.actions.address",
2339
+ "is.workflow.actions.addtoplaylist",
2340
+ "is.workflow.actions.adjustdate",
2341
+ "is.workflow.actions.airdropdocument",
2342
+ "is.workflow.actions.airplanemode.set",
2343
+ "is.workflow.actions.alert",
2344
+ "is.workflow.actions.announcenotifications.set",
2345
+ "is.workflow.actions.appearance",
2346
+ "is.workflow.actions.appendnote",
2347
+ "is.workflow.actions.appendvariable",
2348
+ "is.workflow.actions.ask",
2349
+ "is.workflow.actions.askllm",
2350
+ "is.workflow.actions.avairyeditphoto",
2351
+ "is.workflow.actions.base64encode",
2352
+ "is.workflow.actions.bluetooth.set",
2353
+ "is.workflow.actions.calculateexpression",
2354
+ "is.workflow.actions.cellulardata.set",
2355
+ "is.workflow.actions.choosefromlist",
2356
+ "is.workflow.actions.clearupnext",
2357
+ "is.workflow.actions.comment",
2358
+ "is.workflow.actions.compresspdf",
2359
+ "is.workflow.actions.connecttoservers",
2360
+ "is.workflow.actions.contacts",
2361
+ "is.workflow.actions.converttimezone",
2362
+ "is.workflow.actions.correctspelling",
2363
+ "is.workflow.actions.count",
2364
+ "is.workflow.actions.createplaylist",
2365
+ "is.workflow.actions.date",
2366
+ "is.workflow.actions.delay",
2367
+ "is.workflow.actions.deletephotos",
2368
+ "is.workflow.actions.deletestoredcontent",
2369
+ "is.workflow.actions.deskconnect.send",
2370
+ "is.workflow.actions.detect.address",
2371
+ "is.workflow.actions.detect.contacts",
2372
+ "is.workflow.actions.detect.date",
2373
+ "is.workflow.actions.detect.dictionary",
2374
+ "is.workflow.actions.detect.emailaddress",
2375
+ "is.workflow.actions.detect.images",
2376
+ "is.workflow.actions.detect.link",
2377
+ "is.workflow.actions.detect.number",
2378
+ "is.workflow.actions.detect.phonenumber",
2379
+ "is.workflow.actions.detect.text",
2380
+ "is.workflow.actions.detectlanguage",
2381
+ "is.workflow.actions.dictatetext",
2382
+ "is.workflow.actions.dictionary",
2383
+ "is.workflow.actions.dismisssiri",
2384
+ "is.workflow.actions.display.always-on.set",
2385
+ "is.workflow.actions.displaysleep",
2386
+ "is.workflow.actions.dnd.getfocus",
2387
+ "is.workflow.actions.dnd.set",
2388
+ "is.workflow.actions.documentpicker.open",
2389
+ "is.workflow.actions.documentpicker.save",
2390
+ "is.workflow.actions.downloadurl",
2391
+ "is.workflow.actions.dropbox.appendfile",
2392
+ "is.workflow.actions.dropbox.open",
2393
+ "is.workflow.actions.dropbox.savefile",
2394
+ "is.workflow.actions.ejectdisk",
2395
+ "is.workflow.actions.email",
2396
+ "is.workflow.actions.encodemedia",
2397
+ "is.workflow.actions.evernote.append",
2398
+ "is.workflow.actions.evernote.delete",
2399
+ "is.workflow.actions.evernote.get",
2400
+ "is.workflow.actions.evernote.getlink",
2401
+ "is.workflow.actions.evernote.new",
2402
+ "is.workflow.actions.exit",
2403
+ "is.workflow.actions.exportsong",
2404
+ "is.workflow.actions.extracttextfromimage",
2405
+ "is.workflow.actions.file",
2406
+ "is.workflow.actions.file.append",
2407
+ "is.workflow.actions.file.createfolder",
2408
+ "is.workflow.actions.file.delete",
2409
+ "is.workflow.actions.file.getfoldercontents",
2410
+ "is.workflow.actions.file.getlink",
2411
+ "is.workflow.actions.file.label",
2412
+ "is.workflow.actions.file.move",
2413
+ "is.workflow.actions.file.rename",
2414
+ "is.workflow.actions.file.reveal",
2415
+ "is.workflow.actions.file.select",
2416
+ "is.workflow.actions.filter.apps",
2417
+ "is.workflow.actions.filter.articles",
2418
+ "is.workflow.actions.filter.calendarevents",
2419
+ "is.workflow.actions.filter.displays",
2420
+ "is.workflow.actions.filter.eventattendees",
2421
+ "is.workflow.actions.filter.files",
2422
+ "is.workflow.actions.filter.images",
2423
+ "is.workflow.actions.filter.locations",
2424
+ "is.workflow.actions.filter.music",
2425
+ "is.workflow.actions.filter.notes",
2426
+ "is.workflow.actions.filter.photos",
2427
+ "is.workflow.actions.filter.reminders",
2428
+ "is.workflow.actions.filter.vpns",
2429
+ "is.workflow.actions.filter.windows",
2430
+ "is.workflow.actions.finder.getselectedfiles",
2431
+ "is.workflow.actions.flashlight",
2432
+ "is.workflow.actions.format.date",
2433
+ "is.workflow.actions.format.filesize",
2434
+ "is.workflow.actions.format.number",
2435
+ "is.workflow.actions.generatebarcode",
2436
+ "is.workflow.actions.get.playlist",
2437
+ "is.workflow.actions.getarticle",
2438
+ "is.workflow.actions.getbatterylevel",
2439
+ "is.workflow.actions.getclassaction",
2440
+ "is.workflow.actions.getclipboard",
2441
+ "is.workflow.actions.getcurrentapp",
2442
+ "is.workflow.actions.getcurrentlocation",
2443
+ "is.workflow.actions.getcurrentsong",
2444
+ "is.workflow.actions.getdevicedetails",
2445
+ "is.workflow.actions.getdirections",
2446
+ "is.workflow.actions.getdistance",
2447
+ "is.workflow.actions.getepisodesforpodcast",
2448
+ "is.workflow.actions.getframesfromimage",
2449
+ "is.workflow.actions.gethalfwaypoint",
2450
+ "is.workflow.actions.gethomeaccessorystate",
2451
+ "is.workflow.actions.gethtmlfromrichtext",
2452
+ "is.workflow.actions.getipaddress",
2453
+ "is.workflow.actions.getitemfromlist",
2454
+ "is.workflow.actions.getitemname",
2455
+ "is.workflow.actions.getitemtype",
2456
+ "is.workflow.actions.getlastphoto",
2457
+ "is.workflow.actions.getlastscreenshot",
2458
+ "is.workflow.actions.getlastvideo",
2459
+ "is.workflow.actions.getlatestbursts",
2460
+ "is.workflow.actions.getlatestlivephotos",
2461
+ "is.workflow.actions.getlatestphotoimport",
2462
+ "is.workflow.actions.getmapslink",
2463
+ "is.workflow.actions.getmarkdownfromrichtext",
2464
+ "is.workflow.actions.getmyworkflows",
2465
+ "is.workflow.actions.getnameofemoji",
2466
+ "is.workflow.actions.getonscreencontent",
2467
+ "is.workflow.actions.getonscreencontext",
2468
+ "is.workflow.actions.getparentdirectory",
2469
+ "is.workflow.actions.getparkedcarlocation",
2470
+ "is.workflow.actions.getpodcastsfromlibrary",
2471
+ "is.workflow.actions.getrichtextfromhtml",
2472
+ "is.workflow.actions.getrichtextfrommarkdown",
2473
+ "is.workflow.actions.getselectedtext",
2474
+ "is.workflow.actions.getstoredcontent",
2475
+ "is.workflow.actions.gettext",
2476
+ "is.workflow.actions.gettextfrompdf",
2477
+ "is.workflow.actions.gettimebetweendates",
2478
+ "is.workflow.actions.gettraveltime",
2479
+ "is.workflow.actions.gettypeaction",
2480
+ "is.workflow.actions.getupcomingevents",
2481
+ "is.workflow.actions.getupcomingreminders",
2482
+ "is.workflow.actions.geturlcomponent",
2483
+ "is.workflow.actions.getvalueforkey",
2484
+ "is.workflow.actions.getvariable",
2485
+ "is.workflow.actions.getwebpagecontents",
2486
+ "is.workflow.actions.getwifi",
2487
+ "is.workflow.actions.giphy",
2488
+ "is.workflow.actions.goodreader.open",
2489
+ "is.workflow.actions.handoff",
2490
+ "is.workflow.actions.handoffplayback",
2491
+ "is.workflow.actions.hash",
2492
+ "is.workflow.actions.health.quantity.log",
2493
+ "is.workflow.actions.health.workout.log",
2494
+ "is.workflow.actions.hide.app",
2495
+ "is.workflow.actions.homeaccessory",
2496
+ "is.workflow.actions.image.combine",
2497
+ "is.workflow.actions.image.convert",
2498
+ "is.workflow.actions.image.convert.finder",
2499
+ "is.workflow.actions.image.crop",
2500
+ "is.workflow.actions.image.flip",
2501
+ "is.workflow.actions.image.mask",
2502
+ "is.workflow.actions.image.removebackground",
2503
+ "is.workflow.actions.image.resize",
2504
+ "is.workflow.actions.image.rotate",
2505
+ "is.workflow.actions.imgur.upload",
2506
+ "is.workflow.actions.importaudiofiles",
2507
+ "is.workflow.actions.input",
2508
+ "is.workflow.actions.instapaper.add",
2509
+ "is.workflow.actions.instapaper.get",
2510
+ "is.workflow.actions.intercom",
2511
+ "is.workflow.actions.lightroom.import",
2512
+ "is.workflow.actions.list",
2513
+ "is.workflow.actions.listeningmode.set",
2514
+ "is.workflow.actions.location",
2515
+ "is.workflow.actions.lock.app",
2516
+ "is.workflow.actions.lockscreen",
2517
+ "is.workflow.actions.logout",
2518
+ "is.workflow.actions.lowpowermode.set",
2519
+ "is.workflow.actions.makediskimage",
2520
+ "is.workflow.actions.makegif",
2521
+ "is.workflow.actions.makeimagefrompdfpage",
2522
+ "is.workflow.actions.makeimagefromrichtext",
2523
+ "is.workflow.actions.makepdf",
2524
+ "is.workflow.actions.makespokenaudiofromtext",
2525
+ "is.workflow.actions.makevideofromgif",
2526
+ "is.workflow.actions.makezip",
2527
+ "is.workflow.actions.math",
2528
+ "is.workflow.actions.measurement.convert",
2529
+ "is.workflow.actions.measurement.create",
2530
+ "is.workflow.actions.mountdiskimage",
2531
+ "is.workflow.actions.movewindow",
2532
+ "is.workflow.actions.nightshift.set",
2533
+ "is.workflow.actions.nothing",
2534
+ "is.workflow.actions.notification",
2535
+ "is.workflow.actions.number",
2536
+ "is.workflow.actions.number.random",
2537
+ "is.workflow.actions.openapp",
2538
+ "is.workflow.actions.openin",
2539
+ "is.workflow.actions.openpasswords",
2540
+ "is.workflow.actions.openurl",
2541
+ "is.workflow.actions.openxcallbackurl",
2542
+ "is.workflow.actions.orientationlock.set",
2543
+ "is.workflow.actions.output",
2544
+ "is.workflow.actions.overlayimageonimage",
2545
+ "is.workflow.actions.overlaytext",
2546
+ "is.workflow.actions.pausemusic",
2547
+ "is.workflow.actions.personalhotspot.password.get",
2548
+ "is.workflow.actions.personalhotspot.password.set",
2549
+ "is.workflow.actions.personalhotspot.set",
2550
+ "is.workflow.actions.phonenumber",
2551
+ "is.workflow.actions.photos.createalbum",
2552
+ "is.workflow.actions.pinboard.add",
2553
+ "is.workflow.actions.pinboard.get",
2554
+ "is.workflow.actions.playmusic",
2555
+ "is.workflow.actions.playpodcast",
2556
+ "is.workflow.actions.playsound",
2557
+ "is.workflow.actions.pocket.add",
2558
+ "is.workflow.actions.pocket.get",
2559
+ "is.workflow.actions.podcasts.subscribe",
2560
+ "is.workflow.actions.posters.get",
2561
+ "is.workflow.actions.posters.switch",
2562
+ "is.workflow.actions.postonfacebook",
2563
+ "is.workflow.actions.previewdocument",
2564
+ "is.workflow.actions.print",
2565
+ "is.workflow.actions.properties.appearance",
2566
+ "is.workflow.actions.properties.appstore",
2567
+ "is.workflow.actions.properties.articles",
2568
+ "is.workflow.actions.properties.calendarevents",
2569
+ "is.workflow.actions.properties.eventattendees",
2570
+ "is.workflow.actions.properties.files",
2571
+ "is.workflow.actions.properties.images",
2572
+ "is.workflow.actions.properties.itunesartist",
2573
+ "is.workflow.actions.properties.itunesstore",
2574
+ "is.workflow.actions.properties.locations",
2575
+ "is.workflow.actions.properties.music",
2576
+ "is.workflow.actions.properties.parkedcar",
2577
+ "is.workflow.actions.properties.podcast",
2578
+ "is.workflow.actions.properties.podcastshow",
2579
+ "is.workflow.actions.properties.reminders",
2580
+ "is.workflow.actions.properties.ridestatus",
2581
+ "is.workflow.actions.properties.safariwebpage",
2582
+ "is.workflow.actions.properties.shazam",
2583
+ "is.workflow.actions.properties.trello",
2584
+ "is.workflow.actions.properties.ulysses.sheet",
2585
+ "is.workflow.actions.properties.weather.conditions",
2586
+ "is.workflow.actions.properties.workflow",
2587
+ "is.workflow.actions.quit.app",
2588
+ "is.workflow.actions.readinglist",
2589
+ "is.workflow.actions.reboot",
2590
+ "is.workflow.actions.recordaudio",
2591
+ "is.workflow.actions.reminders.showlist",
2592
+ "is.workflow.actions.removeevents",
2593
+ "is.workflow.actions.removefromalbum",
2594
+ "is.workflow.actions.removereminders",
2595
+ "is.workflow.actions.resizewindow",
2596
+ "is.workflow.actions.returntohomescreen",
2597
+ "is.workflow.actions.ride.requestride",
2598
+ "is.workflow.actions.round",
2599
+ "is.workflow.actions.rss",
2600
+ "is.workflow.actions.rss.extract",
2601
+ "is.workflow.actions.runapplescript",
2602
+ "is.workflow.actions.runextension",
2603
+ "is.workflow.actions.runjavascriptforautomation",
2604
+ "is.workflow.actions.runjavascriptonwebpage",
2605
+ "is.workflow.actions.runshellscript",
2606
+ "is.workflow.actions.runsshscript",
2607
+ "is.workflow.actions.runworkflow",
2608
+ "is.workflow.actions.safari.geturl",
2609
+ "is.workflow.actions.savetocameraroll",
2610
+ "is.workflow.actions.scanbarcode",
2611
+ "is.workflow.actions.searchappstore",
2612
+ "is.workflow.actions.searchitunes",
2613
+ "is.workflow.actions.searchlocalbusinesses",
2614
+ "is.workflow.actions.searchmaps",
2615
+ "is.workflow.actions.searchpodcasts",
2616
+ "is.workflow.actions.searchweb",
2617
+ "is.workflow.actions.seek",
2618
+ "is.workflow.actions.selectcontacts",
2619
+ "is.workflow.actions.selectemail",
2620
+ "is.workflow.actions.selectphone",
2621
+ "is.workflow.actions.selectphoto",
2622
+ "is.workflow.actions.sendemail",
2623
+ "is.workflow.actions.sendmessage",
2624
+ "is.workflow.actions.setairdropreceiving",
2625
+ "is.workflow.actions.setbrightness",
2626
+ "is.workflow.actions.setclipboard",
2627
+ "is.workflow.actions.setitemname",
2628
+ "is.workflow.actions.setparkedcar",
2629
+ "is.workflow.actions.setplaybackdestination",
2630
+ "is.workflow.actions.setstoredcontent",
2631
+ "is.workflow.actions.setters.calendarevents",
2632
+ "is.workflow.actions.setters.reminders",
2633
+ "is.workflow.actions.setvalueforkey",
2634
+ "is.workflow.actions.setvariable",
2635
+ "is.workflow.actions.setvolume",
2636
+ "is.workflow.actions.share",
2637
+ "is.workflow.actions.shazamMedia",
2638
+ "is.workflow.actions.showdefinition",
2639
+ "is.workflow.actions.showinblindsquare",
2640
+ "is.workflow.actions.showincalendar",
2641
+ "is.workflow.actions.showinstore",
2642
+ "is.workflow.actions.shownote",
2643
+ "is.workflow.actions.showresult",
2644
+ "is.workflow.actions.showwebpage",
2645
+ "is.workflow.actions.silenceunknowncallers.set",
2646
+ "is.workflow.actions.skipback",
2647
+ "is.workflow.actions.skipforward",
2648
+ "is.workflow.actions.sleep",
2649
+ "is.workflow.actions.speaktext",
2650
+ "is.workflow.actions.splitpdf",
2651
+ "is.workflow.actions.splitscreen",
2652
+ "is.workflow.actions.spotlightsearch",
2653
+ "is.workflow.actions.stagemanager.set",
2654
+ "is.workflow.actions.startscreensaver",
2655
+ "is.workflow.actions.statistics",
2656
+ "is.workflow.actions.takephoto",
2657
+ "is.workflow.actions.takescreenshot",
2658
+ "is.workflow.actions.takevideo",
2659
+ "is.workflow.actions.text.changecase",
2660
+ "is.workflow.actions.text.combine",
2661
+ "is.workflow.actions.text.match",
2662
+ "is.workflow.actions.text.match.getgroup",
2663
+ "is.workflow.actions.text.replace",
2664
+ "is.workflow.actions.text.split",
2665
+ "is.workflow.actions.text.translate",
2666
+ "is.workflow.actions.text.trimwhitespace",
2667
+ "is.workflow.actions.timer.start",
2668
+ "is.workflow.actions.todoist.add",
2669
+ "is.workflow.actions.trello.add.board",
2670
+ "is.workflow.actions.trello.add.card",
2671
+ "is.workflow.actions.trello.add.list",
2672
+ "is.workflow.actions.trello.get",
2673
+ "is.workflow.actions.trimvideo",
2674
+ "is.workflow.actions.truetone.set",
2675
+ "is.workflow.actions.tumblr.post",
2676
+ "is.workflow.actions.tweet",
2677
+ "is.workflow.actions.unzip",
2678
+ "is.workflow.actions.url",
2679
+ "is.workflow.actions.url.expand",
2680
+ "is.workflow.actions.url.getheaders",
2681
+ "is.workflow.actions.urlencode",
2682
+ "is.workflow.actions.venmo.pay",
2683
+ "is.workflow.actions.venmo.request",
2684
+ "is.workflow.actions.vibrate",
2685
+ "is.workflow.actions.viewresult",
2686
+ "is.workflow.actions.vpn.get",
2687
+ "is.workflow.actions.vpn.set",
2688
+ "is.workflow.actions.waittoreturn",
2689
+ "is.workflow.actions.wallpaper.set",
2690
+ "is.workflow.actions.watchmedo",
2691
+ "is.workflow.actions.weather.currentconditions",
2692
+ "is.workflow.actions.weather.forecast",
2693
+ "is.workflow.actions.wifi.set",
2694
+ "is.workflow.actions.wordpress.post",
2695
+ "jp.naver.line.message",
2696
+ "net.lickability.Quotebook.addquote",
2697
+ "net.shinyfrog.bear-IOS.add",
2698
+ "net.shinyfrog.bear-IOS.contents",
2699
+ "net.shinyfrog.bear-IOS.create",
2700
+ "net.shinyfrog.bear-IOS.grab",
2701
+ "net.shinyfrog.bear-IOS.open",
2702
+ "net.shinyfrog.bear-IOS.search",
2703
+ "net.whatsapp.WhatsApp.EndCallingLiveActivityIntent",
2704
+ "net.whatsapp.WhatsApp.EndMetaAICallIntent",
2705
+ "net.whatsapp.WhatsApp.INSearchForMessagesIntent",
2706
+ "net.whatsapp.WhatsApp.INSendMessageIntent",
2707
+ "net.whatsapp.WhatsApp.INSetMessageAttributeIntent",
2708
+ "net.whatsapp.WhatsApp.INStartAudioCallIntent",
2709
+ "net.whatsapp.WhatsApp.INStartCallIntent",
2710
+ "net.whatsapp.WhatsApp.INStartVideoCallIntent",
2711
+ "net.whatsapp.WhatsApp.OpenMetaAIIntent",
2712
+ "net.whatsapp.WhatsApp.ToggleCallingMicIntent",
2713
+ "net.whatsapp.WhatsApp.ToggleMetaAICallMicIntent",
2714
+ "net.whatsapp.WhatsApp.send",
2715
+ "org.sbarex.QLMarkdown.MdToHtmlCode_Extension",
2716
+ "org.sbarex.QLMarkdown.MdToHtml_Extension",
2717
+ "ph.telegra.Telegraph.msg",
2718
+ "pro.writer.mac.AddTextIntent",
2719
+ "pro.writer.mac.CopyItemIntent",
2720
+ "pro.writer.mac.DeleteItemIntent",
2721
+ "pro.writer.mac.DuplicateItemIntent",
2722
+ "pro.writer.mac.FavoriteIntent",
2723
+ "pro.writer.mac.GetCurrentFileIntent",
2724
+ "pro.writer.mac.GetFileNameFromText",
2725
+ "pro.writer.mac.GetLinkIntent",
2726
+ "pro.writer.mac.GetTextAsHTMLIntent",
2727
+ "pro.writer.mac.GetTextAsMarkdownIntent",
2728
+ "pro.writer.mac.GetTextIntent",
2729
+ "pro.writer.mac.MoveItemIntent",
2730
+ "pro.writer.mac.OpenIntent",
2731
+ "pro.writer.mac.OpenNewIntent",
2732
+ "pro.writer.mac.RenameItemIntent",
2733
+ "pro.writer.mac.SaveEditsFromIntent",
2734
+ "pro.writer.mac.SaveTextIntent",
2735
+ "pro.writer.mac.ShowQuickSearchIntent",
2736
+ "squibner.AmazonLinker.convert",
2737
+ "squibner.AmazonLinker.search"
2738
+ ],
2739
+ "control_flow_exceptions_missing_from_tools_table": [
2740
+ "is.workflow.actions.conditional",
2741
+ "is.workflow.actions.repeat.count",
2742
+ "is.workflow.actions.repeat.each",
2743
+ "is.workflow.actions.choosefrommenu"
2744
+ ]
2745
+ }