shortcutkit 0.4.0 → 0.4.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.
- package/dist/generated/actions.d.ts +44 -23
- package/dist/index.js +103 -61
- package/package.json +1 -1
|
@@ -79,56 +79,67 @@ export declare const actions: {
|
|
|
79
79
|
readonly com_apple_Notes_ICNotesFolderIntent: "com.apple.Notes.ICNotesFolderIntent";
|
|
80
80
|
/**
|
|
81
81
|
* **Unknown Action**
|
|
82
|
+
* Output: Unknown Action
|
|
82
83
|
* Parameters: `ShowWhenRun`
|
|
83
84
|
*/
|
|
84
85
|
readonly com_apple_TVRemoteUIService_LaunchApplicationIntent: "com.apple.TVRemoteUIService.LaunchApplicationIntent";
|
|
85
86
|
/**
|
|
86
87
|
* **Unknown Action**
|
|
88
|
+
* Output: Unknown Action
|
|
87
89
|
* Parameters: `ShowWhenRun`
|
|
88
90
|
*/
|
|
89
91
|
readonly com_apple_TVRemoteUIService_LaunchRemoteIntent: "com.apple.TVRemoteUIService.LaunchRemoteIntent";
|
|
90
92
|
/**
|
|
91
93
|
* **Unknown Action**
|
|
94
|
+
* Output: Unknown Action
|
|
92
95
|
* Parameters: `ShowWhenRun`
|
|
93
96
|
*/
|
|
94
97
|
readonly com_apple_TVRemoteUIService_LaunchScreenSaverIntent: "com.apple.TVRemoteUIService.LaunchScreenSaverIntent";
|
|
95
98
|
/**
|
|
96
99
|
* **Unknown Action**
|
|
100
|
+
* Output: Unknown Action
|
|
97
101
|
* Parameters: `ShowWhenRun`
|
|
98
102
|
*/
|
|
99
103
|
readonly com_apple_TVRemoteUIService_PauseContentIntent: "com.apple.TVRemoteUIService.PauseContentIntent";
|
|
100
104
|
/**
|
|
101
105
|
* **Unknown Action**
|
|
106
|
+
* Output: Unknown Action
|
|
102
107
|
* Parameters: `ShowWhenRun`
|
|
103
108
|
*/
|
|
104
109
|
readonly com_apple_TVRemoteUIService_ReduceLoudSoundsIntent: "com.apple.TVRemoteUIService.ReduceLoudSoundsIntent";
|
|
105
110
|
/**
|
|
106
111
|
* **Unknown Action**
|
|
112
|
+
* Output: Unknown Action
|
|
107
113
|
* Parameters: `ShowWhenRun`
|
|
108
114
|
*/
|
|
109
115
|
readonly com_apple_TVRemoteUIService_SkipContentIntent: "com.apple.TVRemoteUIService.SkipContentIntent";
|
|
110
116
|
/**
|
|
111
117
|
* **Unknown Action**
|
|
118
|
+
* Output: Unknown Action
|
|
112
119
|
* Parameters: `ShowWhenRun`
|
|
113
120
|
*/
|
|
114
121
|
readonly com_apple_TVRemoteUIService_SleepAppleTVIntent: "com.apple.TVRemoteUIService.SleepAppleTVIntent";
|
|
115
122
|
/**
|
|
116
123
|
* **Unknown Action**
|
|
124
|
+
* Output: Unknown Action
|
|
117
125
|
* Parameters: `ShowWhenRun`
|
|
118
126
|
*/
|
|
119
127
|
readonly com_apple_TVRemoteUIService_SwitchUserAccountIntent: "com.apple.TVRemoteUIService.SwitchUserAccountIntent";
|
|
120
128
|
/**
|
|
121
129
|
* **Unknown Action**
|
|
130
|
+
* Output: Unknown Action
|
|
122
131
|
* Parameters: `ShowWhenRun`
|
|
123
132
|
*/
|
|
124
133
|
readonly com_apple_TVRemoteUIService_ToggleCaptionsIntent: "com.apple.TVRemoteUIService.ToggleCaptionsIntent";
|
|
125
134
|
/**
|
|
126
135
|
* **Set Appearance on Apple TV**
|
|
136
|
+
* Output: Set Appearance on Apple TV
|
|
127
137
|
* Parameters: `ShowWhenRun`
|
|
128
138
|
*/
|
|
129
139
|
readonly com_apple_TVRemoteUIService_ToggleSystemAppearanceIntent: "com.apple.TVRemoteUIService.ToggleSystemAppearanceIntent";
|
|
130
140
|
/**
|
|
131
141
|
* **Unknown Action**
|
|
142
|
+
* Output: Unknown Action
|
|
132
143
|
* Parameters: `ShowWhenRun`
|
|
133
144
|
*/
|
|
134
145
|
readonly com_apple_TVRemoteUIService_WakeAppleTVIntent: "com.apple.TVRemoteUIService.WakeAppleTVIntent";
|
|
@@ -413,6 +424,7 @@ export declare const actions: {
|
|
|
413
424
|
/**
|
|
414
425
|
* **Show Quick Reminder**
|
|
415
426
|
* Opens the Quick Reminder view.
|
|
427
|
+
* Output: Show Quick Reminder
|
|
416
428
|
*/
|
|
417
429
|
readonly addquickreminder: "is.workflow.actions.addquickreminder";
|
|
418
430
|
/**
|
|
@@ -481,7 +493,7 @@ export declare const actions: {
|
|
|
481
493
|
* **Ask for Input**
|
|
482
494
|
* Displays a dialog prompting the user to enter a piece of information.
|
|
483
495
|
* Summary: `Ask for ${WFInputType} with ${WFAskActionPrompt}`
|
|
484
|
-
* Output:
|
|
496
|
+
* Output: Provided Input
|
|
485
497
|
* Parameters: `WFAskActionPrompt`, `WFInputType`, `WFAskActionDefaultAnswer`, `WFAskActionDefaultAnswerNumber`, `urlAnswer`, `WFAskActionDefaultAnswerURL`, `WFAskActionDefaultAnswerDate`, `WFAskActionDefaultAnswerTime`, `WFAskActionDefaultAnswerDateAndTime`, `WFAskActionAllowsDecimalNumbers`, `WFAskActionAllowsNegativeNumbers`, `WFAllowsMultilineText`, `ShowWhenRun`
|
|
486
498
|
*/
|
|
487
499
|
readonly ask: "is.workflow.actions.ask";
|
|
@@ -1204,6 +1216,7 @@ export declare const actions: {
|
|
|
1204
1216
|
/**
|
|
1205
1217
|
* **Open Directions**
|
|
1206
1218
|
* Opens directions to the location passed into this action in your choice of Maps, Google Maps, Citymapper, Transit, or Waze. For example, you can use this action to get directions to an upcoming event on your calendar.
|
|
1219
|
+
* Output: Open Directions
|
|
1207
1220
|
* Parameters: `WFLocation`, `WFDestination`, `WFGetDirectionsActionApp`, `WFGetDirectionsActionMode`
|
|
1208
1221
|
*/
|
|
1209
1222
|
readonly getdirections: "is.workflow.actions.getdirections";
|
|
@@ -1383,6 +1396,7 @@ export declare const actions: {
|
|
|
1383
1396
|
* **Get Parent Directory**
|
|
1384
1397
|
* Gets the common parent directory of the files passed in.
|
|
1385
1398
|
* Summary: `Get parent directory of ${WFInput}`
|
|
1399
|
+
* Output: Get Parent Directory
|
|
1386
1400
|
* Parameters: `WFInput`
|
|
1387
1401
|
*/
|
|
1388
1402
|
readonly getparentdirectory: "is.workflow.actions.getparentdirectory";
|
|
@@ -1533,6 +1547,7 @@ export declare const actions: {
|
|
|
1533
1547
|
* **Open in GoodReader**
|
|
1534
1548
|
* Opens a file in GoodReader.
|
|
1535
1549
|
* Summary: `Open ${WFInput}`
|
|
1550
|
+
* Output: Open in GoodReader
|
|
1536
1551
|
* Parameters: `WFInput`
|
|
1537
1552
|
*/
|
|
1538
1553
|
readonly goodreader_open: "is.workflow.actions.goodreader.open";
|
|
@@ -1546,6 +1561,7 @@ export declare const actions: {
|
|
|
1546
1561
|
* **Hand Off Playback**
|
|
1547
1562
|
* Hands off Music or Podcasts playback between two devices.
|
|
1548
1563
|
* Summary: `Hand off playback from ${WFSourceMediaRoute} to ${WFDestinationMediaRoute}`
|
|
1564
|
+
* Output: Hand Off Playback
|
|
1549
1565
|
* Parameters: `WFSourceMediaRoute`, `WFDestinationMediaRoute`
|
|
1550
1566
|
*/
|
|
1551
1567
|
readonly handoffplayback: "is.workflow.actions.handoffplayback";
|
|
@@ -1851,6 +1867,7 @@ export declare const actions: {
|
|
|
1851
1867
|
* **Nothing**
|
|
1852
1868
|
* This action does nothing and produces no output. It is useful to separate blocks of actions, or to explicitly pass an empty input to an action.
|
|
1853
1869
|
* Summary: `Nothing`
|
|
1870
|
+
* Output: Nothing
|
|
1854
1871
|
*/
|
|
1855
1872
|
readonly nothing: "is.workflow.actions.nothing";
|
|
1856
1873
|
/**
|
|
@@ -2291,6 +2308,7 @@ export declare const actions: {
|
|
|
2291
2308
|
* **Request Ride**
|
|
2292
2309
|
* Requests a ride from the specified pickup location to a specified drop off location.
|
|
2293
2310
|
* Summary: `Request ride from ${PickupLocation} to ${DropOffLocation} with ${IntentAppDefinition}`
|
|
2311
|
+
* Output: Requested Ride
|
|
2294
2312
|
* Parameters: `IntentAppDefinition`, `PickupLocation`, `DropOffLocation`, `RideOption`, `PaymentMethod`, `PartySize`
|
|
2295
2313
|
*/
|
|
2296
2314
|
readonly ride_requestride: "is.workflow.actions.ride.requestride";
|
|
@@ -2519,6 +2537,7 @@ export declare const actions: {
|
|
|
2519
2537
|
/**
|
|
2520
2538
|
* **Change Playback Destination**
|
|
2521
2539
|
* Changes the current playback destination. Use this action to route audio to AirPods, Bluetooth speakers, HomePod, or other AirPlay devices. Optionally, this action can add or remove devices from a group, so you can route audio to multiple devices at once.
|
|
2540
|
+
* Output: Change Playback Destination
|
|
2522
2541
|
* Parameters: `WFMediaRouteOperation`, `WFMediaRoute`
|
|
2523
2542
|
*/
|
|
2524
2543
|
readonly setplaybackdestination: "is.workflow.actions.setplaybackdestination";
|
|
@@ -2795,6 +2814,7 @@ export declare const actions: {
|
|
|
2795
2814
|
* **Start Timer**
|
|
2796
2815
|
* Starts a timer in the Clock app for the specified amount of time.
|
|
2797
2816
|
* Summary: `Start timer for ${WFDuration}`
|
|
2817
|
+
* Output: Start Timer
|
|
2798
2818
|
* Parameters: `IntentAppDefinition`, `WFDuration`
|
|
2799
2819
|
*/
|
|
2800
2820
|
readonly timer_start: "is.workflow.actions.timer.start";
|
|
@@ -2863,6 +2883,7 @@ export declare const actions: {
|
|
|
2863
2883
|
* **Tweet**
|
|
2864
2884
|
* Tweets the input.
|
|
2865
2885
|
* Summary: `Tweet ${TweetInput}`
|
|
2886
|
+
* Output: Tweet
|
|
2866
2887
|
* Parameters: `TweetInput`
|
|
2867
2888
|
*/
|
|
2868
2889
|
readonly tweet: "is.workflow.actions.tweet";
|
|
@@ -14098,57 +14119,57 @@ export declare const ACTIONS: {
|
|
|
14098
14119
|
readonly "com.apple.TVRemoteUIService.LaunchApplicationIntent": {
|
|
14099
14120
|
readonly name: "Unknown Action";
|
|
14100
14121
|
readonly params: readonly ["ShowWhenRun"];
|
|
14101
|
-
readonly output:
|
|
14122
|
+
readonly output: "Unknown Action";
|
|
14102
14123
|
};
|
|
14103
14124
|
readonly "com.apple.TVRemoteUIService.LaunchRemoteIntent": {
|
|
14104
14125
|
readonly name: "Unknown Action";
|
|
14105
14126
|
readonly params: readonly ["ShowWhenRun"];
|
|
14106
|
-
readonly output:
|
|
14127
|
+
readonly output: "Unknown Action";
|
|
14107
14128
|
};
|
|
14108
14129
|
readonly "com.apple.TVRemoteUIService.LaunchScreenSaverIntent": {
|
|
14109
14130
|
readonly name: "Unknown Action";
|
|
14110
14131
|
readonly params: readonly ["ShowWhenRun"];
|
|
14111
|
-
readonly output:
|
|
14132
|
+
readonly output: "Unknown Action";
|
|
14112
14133
|
};
|
|
14113
14134
|
readonly "com.apple.TVRemoteUIService.PauseContentIntent": {
|
|
14114
14135
|
readonly name: "Unknown Action";
|
|
14115
14136
|
readonly params: readonly ["ShowWhenRun"];
|
|
14116
|
-
readonly output:
|
|
14137
|
+
readonly output: "Unknown Action";
|
|
14117
14138
|
};
|
|
14118
14139
|
readonly "com.apple.TVRemoteUIService.ReduceLoudSoundsIntent": {
|
|
14119
14140
|
readonly name: "Unknown Action";
|
|
14120
14141
|
readonly params: readonly ["ShowWhenRun"];
|
|
14121
|
-
readonly output:
|
|
14142
|
+
readonly output: "Unknown Action";
|
|
14122
14143
|
};
|
|
14123
14144
|
readonly "com.apple.TVRemoteUIService.SkipContentIntent": {
|
|
14124
14145
|
readonly name: "Unknown Action";
|
|
14125
14146
|
readonly params: readonly ["ShowWhenRun"];
|
|
14126
|
-
readonly output:
|
|
14147
|
+
readonly output: "Unknown Action";
|
|
14127
14148
|
};
|
|
14128
14149
|
readonly "com.apple.TVRemoteUIService.SleepAppleTVIntent": {
|
|
14129
14150
|
readonly name: "Unknown Action";
|
|
14130
14151
|
readonly params: readonly ["ShowWhenRun"];
|
|
14131
|
-
readonly output:
|
|
14152
|
+
readonly output: "Unknown Action";
|
|
14132
14153
|
};
|
|
14133
14154
|
readonly "com.apple.TVRemoteUIService.SwitchUserAccountIntent": {
|
|
14134
14155
|
readonly name: "Unknown Action";
|
|
14135
14156
|
readonly params: readonly ["ShowWhenRun"];
|
|
14136
|
-
readonly output:
|
|
14157
|
+
readonly output: "Unknown Action";
|
|
14137
14158
|
};
|
|
14138
14159
|
readonly "com.apple.TVRemoteUIService.ToggleCaptionsIntent": {
|
|
14139
14160
|
readonly name: "Unknown Action";
|
|
14140
14161
|
readonly params: readonly ["ShowWhenRun"];
|
|
14141
|
-
readonly output:
|
|
14162
|
+
readonly output: "Unknown Action";
|
|
14142
14163
|
};
|
|
14143
14164
|
readonly "com.apple.TVRemoteUIService.ToggleSystemAppearanceIntent": {
|
|
14144
14165
|
readonly name: "Set Appearance on Apple TV";
|
|
14145
14166
|
readonly params: readonly ["ShowWhenRun"];
|
|
14146
|
-
readonly output:
|
|
14167
|
+
readonly output: "Set Appearance on Apple TV";
|
|
14147
14168
|
};
|
|
14148
14169
|
readonly "com.apple.TVRemoteUIService.WakeAppleTVIntent": {
|
|
14149
14170
|
readonly name: "Unknown Action";
|
|
14150
14171
|
readonly params: readonly ["ShowWhenRun"];
|
|
14151
|
-
readonly output:
|
|
14172
|
+
readonly output: "Unknown Action";
|
|
14152
14173
|
};
|
|
14153
14174
|
readonly "com.apple.UniversalAccess.UASettingsShortcuts.UASetBackgroundSoundIntent": {
|
|
14154
14175
|
readonly name: "Change Background Sound";
|
|
@@ -14373,7 +14394,7 @@ export declare const ACTIONS: {
|
|
|
14373
14394
|
readonly "is.workflow.actions.addquickreminder": {
|
|
14374
14395
|
readonly name: "Show Quick Reminder";
|
|
14375
14396
|
readonly params: readonly [];
|
|
14376
|
-
readonly output:
|
|
14397
|
+
readonly output: "Show Quick Reminder";
|
|
14377
14398
|
};
|
|
14378
14399
|
readonly "is.workflow.actions.address": {
|
|
14379
14400
|
readonly name: "Street Address";
|
|
@@ -14423,7 +14444,7 @@ export declare const ACTIONS: {
|
|
|
14423
14444
|
readonly "is.workflow.actions.ask": {
|
|
14424
14445
|
readonly name: "Ask for Input";
|
|
14425
14446
|
readonly params: readonly ["WFAskActionPrompt", "WFInputType", "WFAskActionDefaultAnswer", "WFAskActionDefaultAnswerNumber", "urlAnswer", "WFAskActionDefaultAnswerURL", "WFAskActionDefaultAnswerDate", "WFAskActionDefaultAnswerTime", "WFAskActionDefaultAnswerDateAndTime", "WFAskActionAllowsDecimalNumbers", "WFAskActionAllowsNegativeNumbers", "WFAllowsMultilineText", "ShowWhenRun"];
|
|
14426
|
-
readonly output: "
|
|
14447
|
+
readonly output: "Provided Input";
|
|
14427
14448
|
};
|
|
14428
14449
|
readonly "is.workflow.actions.askllm": {
|
|
14429
14450
|
readonly name: "Use Model";
|
|
@@ -14933,7 +14954,7 @@ export declare const ACTIONS: {
|
|
|
14933
14954
|
readonly "is.workflow.actions.getdirections": {
|
|
14934
14955
|
readonly name: "Open Directions";
|
|
14935
14956
|
readonly params: readonly ["WFLocation", "WFDestination", "WFGetDirectionsActionApp", "WFGetDirectionsActionMode"];
|
|
14936
|
-
readonly output:
|
|
14957
|
+
readonly output: "Open Directions";
|
|
14937
14958
|
};
|
|
14938
14959
|
readonly "is.workflow.actions.getdistance": {
|
|
14939
14960
|
readonly name: "Get Distance";
|
|
@@ -15048,7 +15069,7 @@ export declare const ACTIONS: {
|
|
|
15048
15069
|
readonly "is.workflow.actions.getparentdirectory": {
|
|
15049
15070
|
readonly name: "Get Parent Directory";
|
|
15050
15071
|
readonly params: readonly ["WFInput"];
|
|
15051
|
-
readonly output:
|
|
15072
|
+
readonly output: "Get Parent Directory";
|
|
15052
15073
|
};
|
|
15053
15074
|
readonly "is.workflow.actions.getparkedcarlocation": {
|
|
15054
15075
|
readonly name: "Get Parked Car Location";
|
|
@@ -15148,7 +15169,7 @@ export declare const ACTIONS: {
|
|
|
15148
15169
|
readonly "is.workflow.actions.goodreader.open": {
|
|
15149
15170
|
readonly name: "Open in GoodReader";
|
|
15150
15171
|
readonly params: readonly ["WFInput"];
|
|
15151
|
-
readonly output:
|
|
15172
|
+
readonly output: "Open in GoodReader";
|
|
15152
15173
|
};
|
|
15153
15174
|
readonly "is.workflow.actions.handoff": {
|
|
15154
15175
|
readonly name: "Continue in Shortcuts App";
|
|
@@ -15158,7 +15179,7 @@ export declare const ACTIONS: {
|
|
|
15158
15179
|
readonly "is.workflow.actions.handoffplayback": {
|
|
15159
15180
|
readonly name: "Hand Off Playback";
|
|
15160
15181
|
readonly params: readonly ["WFSourceMediaRoute", "WFDestinationMediaRoute"];
|
|
15161
|
-
readonly output:
|
|
15182
|
+
readonly output: "Hand Off Playback";
|
|
15162
15183
|
};
|
|
15163
15184
|
readonly "is.workflow.actions.hash": {
|
|
15164
15185
|
readonly name: "Generate Hash";
|
|
@@ -15368,7 +15389,7 @@ export declare const ACTIONS: {
|
|
|
15368
15389
|
readonly "is.workflow.actions.nothing": {
|
|
15369
15390
|
readonly name: "Nothing";
|
|
15370
15391
|
readonly params: readonly [];
|
|
15371
|
-
readonly output:
|
|
15392
|
+
readonly output: "Nothing";
|
|
15372
15393
|
};
|
|
15373
15394
|
readonly "is.workflow.actions.notification": {
|
|
15374
15395
|
readonly name: "Show Notification";
|
|
@@ -15708,7 +15729,7 @@ export declare const ACTIONS: {
|
|
|
15708
15729
|
readonly "is.workflow.actions.ride.requestride": {
|
|
15709
15730
|
readonly name: "Request Ride";
|
|
15710
15731
|
readonly params: readonly ["IntentAppDefinition", "PickupLocation", "DropOffLocation", "RideOption", "PaymentMethod", "PartySize"];
|
|
15711
|
-
readonly output:
|
|
15732
|
+
readonly output: "Requested Ride";
|
|
15712
15733
|
};
|
|
15713
15734
|
readonly "is.workflow.actions.round": {
|
|
15714
15735
|
readonly name: "Round Number";
|
|
@@ -15863,7 +15884,7 @@ export declare const ACTIONS: {
|
|
|
15863
15884
|
readonly "is.workflow.actions.setplaybackdestination": {
|
|
15864
15885
|
readonly name: "Change Playback Destination";
|
|
15865
15886
|
readonly params: readonly ["WFMediaRouteOperation", "WFMediaRoute"];
|
|
15866
|
-
readonly output:
|
|
15887
|
+
readonly output: "Change Playback Destination";
|
|
15867
15888
|
};
|
|
15868
15889
|
readonly "is.workflow.actions.setstoredcontent": {
|
|
15869
15890
|
readonly name: "Store Content";
|
|
@@ -16063,7 +16084,7 @@ export declare const ACTIONS: {
|
|
|
16063
16084
|
readonly "is.workflow.actions.timer.start": {
|
|
16064
16085
|
readonly name: "Start Timer";
|
|
16065
16086
|
readonly params: readonly ["IntentAppDefinition", "WFDuration"];
|
|
16066
|
-
readonly output:
|
|
16087
|
+
readonly output: "Start Timer";
|
|
16067
16088
|
};
|
|
16068
16089
|
readonly "is.workflow.actions.todoist.add": {
|
|
16069
16090
|
readonly name: "Add Todoist Item";
|
|
@@ -16108,7 +16129,7 @@ export declare const ACTIONS: {
|
|
|
16108
16129
|
readonly "is.workflow.actions.tweet": {
|
|
16109
16130
|
readonly name: "Tweet";
|
|
16110
16131
|
readonly params: readonly ["TweetInput"];
|
|
16111
|
-
readonly output:
|
|
16132
|
+
readonly output: "Tweet";
|
|
16112
16133
|
};
|
|
16113
16134
|
readonly "is.workflow.actions.unzip": {
|
|
16114
16135
|
readonly name: "Extract Archive";
|
package/dist/index.js
CHANGED
|
@@ -384,7 +384,9 @@ Water Lock protects against accidental input when you use your Apple Watch in wa
|
|
|
384
384
|
Name: "Unknown Action",
|
|
385
385
|
NameSource: "ToolKit",
|
|
386
386
|
Output: {
|
|
387
|
-
DisclosureLevel: "Public"
|
|
387
|
+
DisclosureLevel: "Public",
|
|
388
|
+
OutputName: "Unknown Action",
|
|
389
|
+
OutputNameSource: "WFAction"
|
|
388
390
|
}
|
|
389
391
|
},
|
|
390
392
|
"com.apple.TVRemoteUIService.LaunchRemoteIntent": {
|
|
@@ -399,7 +401,9 @@ Water Lock protects against accidental input when you use your Apple Watch in wa
|
|
|
399
401
|
Name: "Unknown Action",
|
|
400
402
|
NameSource: "ToolKit",
|
|
401
403
|
Output: {
|
|
402
|
-
DisclosureLevel: "Public"
|
|
404
|
+
DisclosureLevel: "Public",
|
|
405
|
+
OutputName: "Unknown Action",
|
|
406
|
+
OutputNameSource: "WFAction"
|
|
403
407
|
}
|
|
404
408
|
},
|
|
405
409
|
"com.apple.TVRemoteUIService.LaunchScreenSaverIntent": {
|
|
@@ -414,7 +418,9 @@ Water Lock protects against accidental input when you use your Apple Watch in wa
|
|
|
414
418
|
Name: "Unknown Action",
|
|
415
419
|
NameSource: "ToolKit",
|
|
416
420
|
Output: {
|
|
417
|
-
DisclosureLevel: "Public"
|
|
421
|
+
DisclosureLevel: "Public",
|
|
422
|
+
OutputName: "Unknown Action",
|
|
423
|
+
OutputNameSource: "WFAction"
|
|
418
424
|
}
|
|
419
425
|
},
|
|
420
426
|
"com.apple.TVRemoteUIService.PauseContentIntent": {
|
|
@@ -430,7 +436,9 @@ Water Lock protects against accidental input when you use your Apple Watch in wa
|
|
|
430
436
|
Name: "Unknown Action",
|
|
431
437
|
NameSource: "ToolKit",
|
|
432
438
|
Output: {
|
|
433
|
-
DisclosureLevel: "Public"
|
|
439
|
+
DisclosureLevel: "Public",
|
|
440
|
+
OutputName: "Unknown Action",
|
|
441
|
+
OutputNameSource: "WFAction"
|
|
434
442
|
}
|
|
435
443
|
},
|
|
436
444
|
"com.apple.TVRemoteUIService.ReduceLoudSoundsIntent": {
|
|
@@ -446,7 +454,9 @@ Water Lock protects against accidental input when you use your Apple Watch in wa
|
|
|
446
454
|
Name: "Unknown Action",
|
|
447
455
|
NameSource: "ToolKit",
|
|
448
456
|
Output: {
|
|
449
|
-
DisclosureLevel: "Public"
|
|
457
|
+
DisclosureLevel: "Public",
|
|
458
|
+
OutputName: "Unknown Action",
|
|
459
|
+
OutputNameSource: "WFAction"
|
|
450
460
|
}
|
|
451
461
|
},
|
|
452
462
|
"com.apple.TVRemoteUIService.SkipContentIntent": {
|
|
@@ -462,7 +472,9 @@ Water Lock protects against accidental input when you use your Apple Watch in wa
|
|
|
462
472
|
Name: "Unknown Action",
|
|
463
473
|
NameSource: "ToolKit",
|
|
464
474
|
Output: {
|
|
465
|
-
DisclosureLevel: "Public"
|
|
475
|
+
DisclosureLevel: "Public",
|
|
476
|
+
OutputName: "Unknown Action",
|
|
477
|
+
OutputNameSource: "WFAction"
|
|
466
478
|
}
|
|
467
479
|
},
|
|
468
480
|
"com.apple.TVRemoteUIService.SleepAppleTVIntent": {
|
|
@@ -477,7 +489,9 @@ Water Lock protects against accidental input when you use your Apple Watch in wa
|
|
|
477
489
|
Name: "Unknown Action",
|
|
478
490
|
NameSource: "ToolKit",
|
|
479
491
|
Output: {
|
|
480
|
-
DisclosureLevel: "Public"
|
|
492
|
+
DisclosureLevel: "Public",
|
|
493
|
+
OutputName: "Unknown Action",
|
|
494
|
+
OutputNameSource: "WFAction"
|
|
481
495
|
}
|
|
482
496
|
},
|
|
483
497
|
"com.apple.TVRemoteUIService.SwitchUserAccountIntent": {
|
|
@@ -492,7 +506,9 @@ Water Lock protects against accidental input when you use your Apple Watch in wa
|
|
|
492
506
|
Name: "Unknown Action",
|
|
493
507
|
NameSource: "ToolKit",
|
|
494
508
|
Output: {
|
|
495
|
-
DisclosureLevel: "Public"
|
|
509
|
+
DisclosureLevel: "Public",
|
|
510
|
+
OutputName: "Unknown Action",
|
|
511
|
+
OutputNameSource: "WFAction"
|
|
496
512
|
}
|
|
497
513
|
},
|
|
498
514
|
"com.apple.TVRemoteUIService.ToggleCaptionsIntent": {
|
|
@@ -508,7 +524,9 @@ Water Lock protects against accidental input when you use your Apple Watch in wa
|
|
|
508
524
|
Name: "Unknown Action",
|
|
509
525
|
NameSource: "ToolKit",
|
|
510
526
|
Output: {
|
|
511
|
-
DisclosureLevel: "Public"
|
|
527
|
+
DisclosureLevel: "Public",
|
|
528
|
+
OutputName: "Unknown Action",
|
|
529
|
+
OutputNameSource: "WFAction"
|
|
512
530
|
}
|
|
513
531
|
},
|
|
514
532
|
"com.apple.TVRemoteUIService.ToggleSystemAppearanceIntent": {
|
|
@@ -522,7 +540,9 @@ Water Lock protects against accidental input when you use your Apple Watch in wa
|
|
|
522
540
|
IntentName: "ToggleSystemAppearanceIntent",
|
|
523
541
|
Name: "Set Appearance on Apple TV",
|
|
524
542
|
Output: {
|
|
525
|
-
DisclosureLevel: "Public"
|
|
543
|
+
DisclosureLevel: "Public",
|
|
544
|
+
OutputName: "Set Appearance on Apple TV",
|
|
545
|
+
OutputNameSource: "WFAction"
|
|
526
546
|
}
|
|
527
547
|
},
|
|
528
548
|
"com.apple.TVRemoteUIService.WakeAppleTVIntent": {
|
|
@@ -537,7 +557,9 @@ Water Lock protects against accidental input when you use your Apple Watch in wa
|
|
|
537
557
|
Name: "Unknown Action",
|
|
538
558
|
NameSource: "ToolKit",
|
|
539
559
|
Output: {
|
|
540
|
-
DisclosureLevel: "Public"
|
|
560
|
+
DisclosureLevel: "Public",
|
|
561
|
+
OutputName: "Unknown Action",
|
|
562
|
+
OutputNameSource: "WFAction"
|
|
541
563
|
}
|
|
542
564
|
},
|
|
543
565
|
"com.apple.UniversalAccess.UASettingsShortcuts.UASetBackgroundSoundIntent": {
|
|
@@ -2519,7 +2541,9 @@ Water Lock protects against accidental input when you use your Apple Watch in wa
|
|
|
2519
2541
|
InputPassthrough: false,
|
|
2520
2542
|
Name: "Show Quick Reminder",
|
|
2521
2543
|
Output: {
|
|
2522
|
-
DisclosureLevel: "Public"
|
|
2544
|
+
DisclosureLevel: "Public",
|
|
2545
|
+
OutputName: "Show Quick Reminder",
|
|
2546
|
+
OutputNameSource: "WFAction"
|
|
2523
2547
|
},
|
|
2524
2548
|
Parameters: [],
|
|
2525
2549
|
RequiredResources: [
|
|
@@ -3054,8 +3078,8 @@ Water Lock protects against accidental input when you use your Apple Watch in wa
|
|
|
3054
3078
|
Output: {
|
|
3055
3079
|
DisclosureLevel: "Public",
|
|
3056
3080
|
Multiple: false,
|
|
3057
|
-
OutputName: "
|
|
3058
|
-
OutputNameSource: "
|
|
3081
|
+
OutputName: "Provided Input",
|
|
3082
|
+
OutputNameSource: "WFAction",
|
|
3059
3083
|
Types: [
|
|
3060
3084
|
"NSString",
|
|
3061
3085
|
"NSDecimalNumber",
|
|
@@ -4015,7 +4039,7 @@ Water Lock protects against accidental input when you use your Apple Watch in wa
|
|
|
4015
4039
|
Output: {
|
|
4016
4040
|
DisclosureLevel: "Public",
|
|
4017
4041
|
OutputName: "Corrected Spelling",
|
|
4018
|
-
OutputNameSource: "
|
|
4042
|
+
OutputNameSource: "WFAction"
|
|
4019
4043
|
},
|
|
4020
4044
|
ResidentCompatible: true
|
|
4021
4045
|
},
|
|
@@ -7315,7 +7339,7 @@ Water Lock protects against accidental input when you use your Apple Watch in wa
|
|
|
7315
7339
|
Output: {
|
|
7316
7340
|
DisclosureLevel: "Public",
|
|
7317
7341
|
OutputName: "Articles",
|
|
7318
|
-
OutputNameSource: "
|
|
7342
|
+
OutputNameSource: "WFAction"
|
|
7319
7343
|
},
|
|
7320
7344
|
Parameters: [
|
|
7321
7345
|
{
|
|
@@ -7663,7 +7687,7 @@ Water Lock protects against accidental input when you use your Apple Watch in wa
|
|
|
7663
7687
|
Output: {
|
|
7664
7688
|
DisclosureLevel: "Public",
|
|
7665
7689
|
OutputName: "Locations",
|
|
7666
|
-
OutputNameSource: "
|
|
7690
|
+
OutputNameSource: "WFAction"
|
|
7667
7691
|
},
|
|
7668
7692
|
Parameters: [
|
|
7669
7693
|
{
|
|
@@ -8663,7 +8687,7 @@ Water Lock protects against accidental input when you use your Apple Watch in wa
|
|
|
8663
8687
|
Name: "Get Current App",
|
|
8664
8688
|
Output: {
|
|
8665
8689
|
OutputName: "Current App",
|
|
8666
|
-
OutputNameSource: "
|
|
8690
|
+
OutputNameSource: "WFAction",
|
|
8667
8691
|
Types: [
|
|
8668
8692
|
"WFApp"
|
|
8669
8693
|
]
|
|
@@ -8849,7 +8873,9 @@ Water Lock protects against accidental input when you use your Apple Watch in wa
|
|
|
8849
8873
|
InputPassthrough: true,
|
|
8850
8874
|
Name: "Open Directions",
|
|
8851
8875
|
Output: {
|
|
8852
|
-
DisclosureLevel: "Public"
|
|
8876
|
+
DisclosureLevel: "Public",
|
|
8877
|
+
OutputName: "Open Directions",
|
|
8878
|
+
OutputNameSource: "WFAction"
|
|
8853
8879
|
},
|
|
8854
8880
|
ParameterSummary: {
|
|
8855
8881
|
possibleValues: [
|
|
@@ -10173,6 +10199,8 @@ Water Lock protects against accidental input when you use your Apple Watch in wa
|
|
|
10173
10199
|
Output: {
|
|
10174
10200
|
DisclosureLevel: "Public",
|
|
10175
10201
|
Multiple: true,
|
|
10202
|
+
OutputName: "Get Parent Directory",
|
|
10203
|
+
OutputNameSource: "WFAction",
|
|
10176
10204
|
Types: [
|
|
10177
10205
|
"public.folder"
|
|
10178
10206
|
]
|
|
@@ -11424,7 +11452,9 @@ Water Lock protects against accidental input when you use your Apple Watch in wa
|
|
|
11424
11452
|
InputPassthrough: true,
|
|
11425
11453
|
Name: "Open in GoodReader",
|
|
11426
11454
|
Output: {
|
|
11427
|
-
DisclosureLevel: "Public"
|
|
11455
|
+
DisclosureLevel: "Public",
|
|
11456
|
+
OutputName: "Open in GoodReader",
|
|
11457
|
+
OutputNameSource: "WFAction"
|
|
11428
11458
|
},
|
|
11429
11459
|
ParameterSummary: {
|
|
11430
11460
|
format: "Open ${WFInput}"
|
|
@@ -11476,7 +11506,9 @@ Water Lock protects against accidental input when you use your Apple Watch in wa
|
|
|
11476
11506
|
IconSymbol: "ipad.and.arrow.forward",
|
|
11477
11507
|
Name: "Hand Off Playback",
|
|
11478
11508
|
Output: {
|
|
11479
|
-
DisclosureLevel: "Public"
|
|
11509
|
+
DisclosureLevel: "Public",
|
|
11510
|
+
OutputName: "Hand Off Playback",
|
|
11511
|
+
OutputNameSource: "WFAction"
|
|
11480
11512
|
},
|
|
11481
11513
|
ParameterSummary: {
|
|
11482
11514
|
format: "Hand off playback from ${WFSourceMediaRoute} to ${WFDestinationMediaRoute}"
|
|
@@ -14513,6 +14545,8 @@ Water Lock protects against accidental input when you use your Apple Watch in wa
|
|
|
14513
14545
|
Output: {
|
|
14514
14546
|
DisclosureLevel: "Public",
|
|
14515
14547
|
Multiple: false,
|
|
14548
|
+
OutputName: "Nothing",
|
|
14549
|
+
OutputNameSource: "WFAction",
|
|
14516
14550
|
Types: [
|
|
14517
14551
|
"WFContentItem"
|
|
14518
14552
|
]
|
|
@@ -16835,7 +16869,7 @@ Water Lock protects against accidental input when you use your Apple Watch in wa
|
|
|
16835
16869
|
Output: {
|
|
16836
16870
|
DisclosureLevel: "Public",
|
|
16837
16871
|
OutputName: "Details of App Store Apps",
|
|
16838
|
-
OutputNameSource: "
|
|
16872
|
+
OutputNameSource: "WFAction"
|
|
16839
16873
|
},
|
|
16840
16874
|
Parameters: [
|
|
16841
16875
|
{
|
|
@@ -16890,7 +16924,7 @@ Water Lock protects against accidental input when you use your Apple Watch in wa
|
|
|
16890
16924
|
Output: {
|
|
16891
16925
|
DisclosureLevel: "Public",
|
|
16892
16926
|
OutputName: "Details of Articles",
|
|
16893
|
-
OutputNameSource: "
|
|
16927
|
+
OutputNameSource: "WFAction"
|
|
16894
16928
|
},
|
|
16895
16929
|
Parameters: [
|
|
16896
16930
|
{
|
|
@@ -16923,7 +16957,7 @@ Water Lock protects against accidental input when you use your Apple Watch in wa
|
|
|
16923
16957
|
Output: {
|
|
16924
16958
|
DisclosureLevel: "Public",
|
|
16925
16959
|
OutputName: "Details of Calendar Events",
|
|
16926
|
-
OutputNameSource: "
|
|
16960
|
+
OutputNameSource: "WFAction"
|
|
16927
16961
|
},
|
|
16928
16962
|
Parameters: [
|
|
16929
16963
|
{
|
|
@@ -17133,7 +17167,7 @@ Water Lock protects against accidental input when you use your Apple Watch in wa
|
|
|
17133
17167
|
Output: {
|
|
17134
17168
|
DisclosureLevel: "Public",
|
|
17135
17169
|
OutputName: "Details of Itunes Artists",
|
|
17136
|
-
OutputNameSource: "
|
|
17170
|
+
OutputNameSource: "WFAction"
|
|
17137
17171
|
},
|
|
17138
17172
|
Parameters: [
|
|
17139
17173
|
{
|
|
@@ -17164,7 +17198,7 @@ Water Lock protects against accidental input when you use your Apple Watch in wa
|
|
|
17164
17198
|
Output: {
|
|
17165
17199
|
DisclosureLevel: "Public",
|
|
17166
17200
|
OutputName: "Details of Itunes Products",
|
|
17167
|
-
OutputNameSource: "
|
|
17201
|
+
OutputNameSource: "WFAction"
|
|
17168
17202
|
},
|
|
17169
17203
|
Parameters: [
|
|
17170
17204
|
{
|
|
@@ -17242,7 +17276,7 @@ Water Lock protects against accidental input when you use your Apple Watch in wa
|
|
|
17242
17276
|
Output: {
|
|
17243
17277
|
DisclosureLevel: "Public",
|
|
17244
17278
|
OutputName: "Artist",
|
|
17245
|
-
OutputNameSource: "
|
|
17279
|
+
OutputNameSource: "WFAction"
|
|
17246
17280
|
},
|
|
17247
17281
|
Parameters: [
|
|
17248
17282
|
{
|
|
@@ -17323,7 +17357,7 @@ Water Lock protects against accidental input when you use your Apple Watch in wa
|
|
|
17323
17357
|
Output: {
|
|
17324
17358
|
DisclosureLevel: "Public",
|
|
17325
17359
|
OutputName: "Details of Podcast Episodes",
|
|
17326
|
-
OutputNameSource: "
|
|
17360
|
+
OutputNameSource: "WFAction"
|
|
17327
17361
|
},
|
|
17328
17362
|
Parameters: [
|
|
17329
17363
|
{
|
|
@@ -17358,7 +17392,7 @@ Water Lock protects against accidental input when you use your Apple Watch in wa
|
|
|
17358
17392
|
Output: {
|
|
17359
17393
|
DisclosureLevel: "Public",
|
|
17360
17394
|
OutputName: "Details of Podcasts",
|
|
17361
|
-
OutputNameSource: "
|
|
17395
|
+
OutputNameSource: "WFAction"
|
|
17362
17396
|
},
|
|
17363
17397
|
Parameters: [
|
|
17364
17398
|
{
|
|
@@ -17461,7 +17495,7 @@ Water Lock protects against accidental input when you use your Apple Watch in wa
|
|
|
17461
17495
|
Output: {
|
|
17462
17496
|
DisclosureLevel: "Public",
|
|
17463
17497
|
OutputName: "Details of Safari Web Pages",
|
|
17464
|
-
OutputNameSource: "
|
|
17498
|
+
OutputNameSource: "WFAction"
|
|
17465
17499
|
},
|
|
17466
17500
|
Parameters: [
|
|
17467
17501
|
{
|
|
@@ -18308,6 +18342,8 @@ Water Lock protects against accidental input when you use your Apple Watch in wa
|
|
|
18308
18342
|
Output: {
|
|
18309
18343
|
DisclosureLevel: "Public",
|
|
18310
18344
|
Multiple: false,
|
|
18345
|
+
OutputName: "Requested Ride",
|
|
18346
|
+
OutputNameSource: "WFAction",
|
|
18311
18347
|
Types: [
|
|
18312
18348
|
"INRideStatus"
|
|
18313
18349
|
]
|
|
@@ -20447,7 +20483,9 @@ Water Lock protects against accidental input when you use your Apple Watch in wa
|
|
|
20447
20483
|
IconSymbol: "airplayaudio",
|
|
20448
20484
|
Name: "Change Playback Destination",
|
|
20449
20485
|
Output: {
|
|
20450
|
-
DisclosureLevel: "Public"
|
|
20486
|
+
DisclosureLevel: "Public",
|
|
20487
|
+
OutputName: "Change Playback Destination",
|
|
20488
|
+
OutputNameSource: "WFAction"
|
|
20451
20489
|
},
|
|
20452
20490
|
ParameterSummary: {
|
|
20453
20491
|
possibleValues: [
|
|
@@ -22049,7 +22087,7 @@ Water Lock protects against accidental input when you use your Apple Watch in wa
|
|
|
22049
22087
|
Output: {
|
|
22050
22088
|
DisclosureLevel: "Public",
|
|
22051
22089
|
OutputName: "Updated Text",
|
|
22052
|
-
OutputNameSource: "
|
|
22090
|
+
OutputNameSource: "WFAction"
|
|
22053
22091
|
},
|
|
22054
22092
|
ParameterOverrides: {
|
|
22055
22093
|
type: {
|
|
@@ -22096,7 +22134,7 @@ Water Lock protects against accidental input when you use your Apple Watch in wa
|
|
|
22096
22134
|
Output: {
|
|
22097
22135
|
DisclosureLevel: "Public",
|
|
22098
22136
|
OutputName: "Combined Text",
|
|
22099
|
-
OutputNameSource: "
|
|
22137
|
+
OutputNameSource: "WFAction"
|
|
22100
22138
|
},
|
|
22101
22139
|
ParameterOverrides: {
|
|
22102
22140
|
customSeparator: {
|
|
@@ -22142,7 +22180,7 @@ Water Lock protects against accidental input when you use your Apple Watch in wa
|
|
|
22142
22180
|
Output: {
|
|
22143
22181
|
DisclosureLevel: "Public",
|
|
22144
22182
|
OutputName: "Matches",
|
|
22145
|
-
OutputNameSource: "
|
|
22183
|
+
OutputNameSource: "WFAction"
|
|
22146
22184
|
},
|
|
22147
22185
|
ParameterOverrides: {
|
|
22148
22186
|
caseSensitive: {
|
|
@@ -22171,7 +22209,7 @@ Water Lock protects against accidental input when you use your Apple Watch in wa
|
|
|
22171
22209
|
Output: {
|
|
22172
22210
|
DisclosureLevel: "Public",
|
|
22173
22211
|
OutputName: "Text",
|
|
22174
|
-
OutputNameSource: "
|
|
22212
|
+
OutputNameSource: "WFAction"
|
|
22175
22213
|
},
|
|
22176
22214
|
ParameterOverrides: {
|
|
22177
22215
|
groupIndex: {
|
|
@@ -22284,7 +22322,7 @@ Water Lock protects against accidental input when you use your Apple Watch in wa
|
|
|
22284
22322
|
DisclosureLevel: "Public",
|
|
22285
22323
|
Multiple: true,
|
|
22286
22324
|
OutputName: "Split Text",
|
|
22287
|
-
OutputNameSource: "
|
|
22325
|
+
OutputNameSource: "WFAction"
|
|
22288
22326
|
},
|
|
22289
22327
|
ParameterOverrides: {
|
|
22290
22328
|
customSeparator: {
|
|
@@ -22429,7 +22467,9 @@ Water Lock protects against accidental input when you use your Apple Watch in wa
|
|
|
22429
22467
|
LocallyProcessesData: true,
|
|
22430
22468
|
Name: "Start Timer",
|
|
22431
22469
|
Output: {
|
|
22432
|
-
DisclosureLevel: "Public"
|
|
22470
|
+
DisclosureLevel: "Public",
|
|
22471
|
+
OutputName: "Start Timer",
|
|
22472
|
+
OutputNameSource: "WFAction"
|
|
22433
22473
|
},
|
|
22434
22474
|
ParameterSummary: {
|
|
22435
22475
|
format: "Start timer for ${WFDuration}"
|
|
@@ -23135,7 +23175,9 @@ Water Lock protects against accidental input when you use your Apple Watch in wa
|
|
|
23135
23175
|
},
|
|
23136
23176
|
Name: "Tweet",
|
|
23137
23177
|
Output: {
|
|
23138
|
-
DisclosureLevel: "Public"
|
|
23178
|
+
DisclosureLevel: "Public",
|
|
23179
|
+
OutputName: "Tweet",
|
|
23180
|
+
OutputNameSource: "WFAction"
|
|
23139
23181
|
},
|
|
23140
23182
|
ParameterSummary: {
|
|
23141
23183
|
format: "Tweet ${TweetInput}"
|
|
@@ -26573,17 +26615,17 @@ var ACTIONS = {
|
|
|
26573
26615
|
"com.apple.NanoSettings.NPRFSetWakeOnWristRaiseIntent": { name: "Set Wake on Wrist Raise", params: ["operation", "state", "ShowWhenRun"], output: null },
|
|
26574
26616
|
"com.apple.NanoSettings.NPRFSetWaterLockIntent": { name: "Set Water Lock", params: ["operation", "state", "ShowWhenRun"], output: null },
|
|
26575
26617
|
"com.apple.Notes.ICNotesFolderIntent": { name: "Show Notes Folder", params: ["folder", "ShowWhenRun"], output: null },
|
|
26576
|
-
"com.apple.TVRemoteUIService.LaunchApplicationIntent": { name: "Unknown Action", params: ["ShowWhenRun"], output:
|
|
26577
|
-
"com.apple.TVRemoteUIService.LaunchRemoteIntent": { name: "Unknown Action", params: ["ShowWhenRun"], output:
|
|
26578
|
-
"com.apple.TVRemoteUIService.LaunchScreenSaverIntent": { name: "Unknown Action", params: ["ShowWhenRun"], output:
|
|
26579
|
-
"com.apple.TVRemoteUIService.PauseContentIntent": { name: "Unknown Action", params: ["ShowWhenRun"], output:
|
|
26580
|
-
"com.apple.TVRemoteUIService.ReduceLoudSoundsIntent": { name: "Unknown Action", params: ["ShowWhenRun"], output:
|
|
26581
|
-
"com.apple.TVRemoteUIService.SkipContentIntent": { name: "Unknown Action", params: ["ShowWhenRun"], output:
|
|
26582
|
-
"com.apple.TVRemoteUIService.SleepAppleTVIntent": { name: "Unknown Action", params: ["ShowWhenRun"], output:
|
|
26583
|
-
"com.apple.TVRemoteUIService.SwitchUserAccountIntent": { name: "Unknown Action", params: ["ShowWhenRun"], output:
|
|
26584
|
-
"com.apple.TVRemoteUIService.ToggleCaptionsIntent": { name: "Unknown Action", params: ["ShowWhenRun"], output:
|
|
26585
|
-
"com.apple.TVRemoteUIService.ToggleSystemAppearanceIntent": { name: "Set Appearance on Apple TV", params: ["ShowWhenRun"], output:
|
|
26586
|
-
"com.apple.TVRemoteUIService.WakeAppleTVIntent": { name: "Unknown Action", params: ["ShowWhenRun"], output:
|
|
26618
|
+
"com.apple.TVRemoteUIService.LaunchApplicationIntent": { name: "Unknown Action", params: ["ShowWhenRun"], output: "Unknown Action" },
|
|
26619
|
+
"com.apple.TVRemoteUIService.LaunchRemoteIntent": { name: "Unknown Action", params: ["ShowWhenRun"], output: "Unknown Action" },
|
|
26620
|
+
"com.apple.TVRemoteUIService.LaunchScreenSaverIntent": { name: "Unknown Action", params: ["ShowWhenRun"], output: "Unknown Action" },
|
|
26621
|
+
"com.apple.TVRemoteUIService.PauseContentIntent": { name: "Unknown Action", params: ["ShowWhenRun"], output: "Unknown Action" },
|
|
26622
|
+
"com.apple.TVRemoteUIService.ReduceLoudSoundsIntent": { name: "Unknown Action", params: ["ShowWhenRun"], output: "Unknown Action" },
|
|
26623
|
+
"com.apple.TVRemoteUIService.SkipContentIntent": { name: "Unknown Action", params: ["ShowWhenRun"], output: "Unknown Action" },
|
|
26624
|
+
"com.apple.TVRemoteUIService.SleepAppleTVIntent": { name: "Unknown Action", params: ["ShowWhenRun"], output: "Unknown Action" },
|
|
26625
|
+
"com.apple.TVRemoteUIService.SwitchUserAccountIntent": { name: "Unknown Action", params: ["ShowWhenRun"], output: "Unknown Action" },
|
|
26626
|
+
"com.apple.TVRemoteUIService.ToggleCaptionsIntent": { name: "Unknown Action", params: ["ShowWhenRun"], output: "Unknown Action" },
|
|
26627
|
+
"com.apple.TVRemoteUIService.ToggleSystemAppearanceIntent": { name: "Set Appearance on Apple TV", params: ["ShowWhenRun"], output: "Set Appearance on Apple TV" },
|
|
26628
|
+
"com.apple.TVRemoteUIService.WakeAppleTVIntent": { name: "Unknown Action", params: ["ShowWhenRun"], output: "Unknown Action" },
|
|
26587
26629
|
"com.apple.UniversalAccess.UASettingsShortcuts.UASetBackgroundSoundIntent": { name: "Change Background Sound", params: ["backgroundSound", "ShowWhenRun"], output: null },
|
|
26588
26630
|
"com.apple.UniversalAccess.UASettingsShortcuts.UASetBackgroundSoundsTimerIntent": { name: "Set Background Sounds Timer Interval", params: ["interval", "duration", "endInterval", "always", "ShowWhenRun"], output: null },
|
|
26589
26631
|
"com.apple.UniversalAccess.UASettingsShortcuts.UASetBackgroundSoundsVolumeIntent": { name: "Set Background Sounds Volume", params: ["volumeValue", "ShowWhenRun"], output: null },
|
|
@@ -26628,7 +26670,7 @@ var ACTIONS = {
|
|
|
26628
26670
|
"is.workflow.actions.addnewcontact": { name: "New Contact", params: ["WFContactFirstName", "WFContactLastName", "WFContactCompany", "WFContactPhoto", "WFContactPhoneNumbers", "WFContactEmails", "WFContactNotes", "ShowWhenRun"], output: "New Contact" },
|
|
26629
26671
|
"is.workflow.actions.addnewevent": { name: "New Event", params: ["WFCalendarItemTitle", "WFCalendarItemLocation", "WFCalendarDescriptor", "WFCalendarItemStartDate", "WFCalendarItemEndDate", "WFCalendarItemAllDay", "WFAlertTime", "WFAlertCustomTime", "WFCalendarItemNotes", "ShowWhenRun"], output: "New Event" },
|
|
26630
26672
|
"is.workflow.actions.addnewreminder": { name: "New Reminder", params: ["WFCalendarItemTitle", "WFCalendarDescriptor", "WFAlertEnabled", "WFAlertCondition", "WFAlertLocation", "WFAlertPerson", "WFAlertLocationRadius", "WFAlertCustomTime", "WFPriority", "WFUrgent", "WFFlag", "WFURL", "WFImages", "WFParentTask", "WFTags", "WFCalendarItemNotes"], output: "New Reminder" },
|
|
26631
|
-
"is.workflow.actions.addquickreminder": { name: "Show Quick Reminder", params: [], output:
|
|
26673
|
+
"is.workflow.actions.addquickreminder": { name: "Show Quick Reminder", params: [], output: "Show Quick Reminder" },
|
|
26632
26674
|
"is.workflow.actions.address": { name: "Street Address", params: ["WFAddressLine1", "WFAddressLine2", "WFCity", "WFState", "WFPostalCode", "WFCountry"], output: "Street Address" },
|
|
26633
26675
|
"is.workflow.actions.addtoplaylist": { name: "Add to Playlist", params: ["WFPlaylistName", "WFInput"], output: "Updated Playlist" },
|
|
26634
26676
|
"is.workflow.actions.adjustdate": { name: "Adjust Date", params: ["WFDate", "WFAdjustOperation", "WFDuration"], output: "Adjusted Date" },
|
|
@@ -26638,7 +26680,7 @@ var ACTIONS = {
|
|
|
26638
26680
|
"is.workflow.actions.announcenotifications.set": { name: "Set Announce Notifications", params: ["operation", "OnValue", "ShowWhenRun"], output: null },
|
|
26639
26681
|
"is.workflow.actions.appearance": { name: "Set Appearance", params: ["operation", "style", "ShowWhenRun"], output: null },
|
|
26640
26682
|
"is.workflow.actions.appendvariable": { name: "Add to Variable", params: ["WFVariableName", "WFInput"], output: "Variable" },
|
|
26641
|
-
"is.workflow.actions.ask": { name: "Ask for Input", params: ["WFAskActionPrompt", "WFInputType", "WFAskActionDefaultAnswer", "WFAskActionDefaultAnswerNumber", "urlAnswer", "WFAskActionDefaultAnswerURL", "WFAskActionDefaultAnswerDate", "WFAskActionDefaultAnswerTime", "WFAskActionDefaultAnswerDateAndTime", "WFAskActionAllowsDecimalNumbers", "WFAskActionAllowsNegativeNumbers", "WFAllowsMultilineText", "ShowWhenRun"], output: "
|
|
26683
|
+
"is.workflow.actions.ask": { name: "Ask for Input", params: ["WFAskActionPrompt", "WFInputType", "WFAskActionDefaultAnswer", "WFAskActionDefaultAnswerNumber", "urlAnswer", "WFAskActionDefaultAnswerURL", "WFAskActionDefaultAnswerDate", "WFAskActionDefaultAnswerTime", "WFAskActionDefaultAnswerDateAndTime", "WFAskActionAllowsDecimalNumbers", "WFAskActionAllowsNegativeNumbers", "WFAllowsMultilineText", "ShowWhenRun"], output: "Provided Input" },
|
|
26642
26684
|
"is.workflow.actions.askllm": { name: "Use Model", params: ["WFLLMModel", "WFLLMPrompt", "WFAllowWebSearch", "WFGenerativeResultType", "FollowUp"], output: "Response" },
|
|
26643
26685
|
"is.workflow.actions.avairyeditphoto": { name: "Markup", params: ["WFDocument"], output: "Markup Result" },
|
|
26644
26686
|
"is.workflow.actions.base64encode": { name: "Base64 Encode", params: ["WFEncodeMode", "WFBase64LineBreakMode", "WFInput"], output: "Base64 Encoded" },
|
|
@@ -26740,7 +26782,7 @@ var ACTIONS = {
|
|
|
26740
26782
|
"is.workflow.actions.getcurrentlocation": { name: "Get Current Location", params: ["Accuracy"], output: "Current Location" },
|
|
26741
26783
|
"is.workflow.actions.getcurrentsong": { name: "Get Current Song", params: ["Subject"], output: "Current Song" },
|
|
26742
26784
|
"is.workflow.actions.getdevicedetails": { name: "Get Device Details", params: ["WFDeviceDetail"], output: "Device Details" },
|
|
26743
|
-
"is.workflow.actions.getdirections": { name: "Open Directions", params: ["WFLocation", "WFDestination", "WFGetDirectionsActionApp", "WFGetDirectionsActionMode"], output:
|
|
26785
|
+
"is.workflow.actions.getdirections": { name: "Open Directions", params: ["WFLocation", "WFDestination", "WFGetDirectionsActionApp", "WFGetDirectionsActionMode"], output: "Open Directions" },
|
|
26744
26786
|
"is.workflow.actions.getdistance": { name: "Get Distance", params: ["WFGetDirectionsCustomLocation", "WFGetDistanceDestination", "WFGetDirectionsActionMode", "WFAvoidTolls", "WFAvoidHighways", "WFDistanceUnit", "Accuracy"], output: "Distance" },
|
|
26745
26787
|
"is.workflow.actions.getepisodesforpodcast": { name: "Get Episodes of Podcast", params: ["WFInput"], output: "Episodes" },
|
|
26746
26788
|
"is.workflow.actions.getframesfromimage": { name: "Get Frames from Image", params: ["WFImage"], output: "Frames from Image" },
|
|
@@ -26763,7 +26805,7 @@ var ACTIONS = {
|
|
|
26763
26805
|
"is.workflow.actions.getnameofemoji": { name: "Get Name of Emoji", params: ["WFInput"], output: "Name of Emoji" },
|
|
26764
26806
|
"is.workflow.actions.getonscreencontent": { name: "Get What’s On Screen", params: [], output: "On-Screen Content" },
|
|
26765
26807
|
"is.workflow.actions.getonscreencontext": { name: "Get What’s On Screen", params: ["WFOnScreenContextResultType", "WFOnScreenContextScope", "WFOnScreenContextLimitEnabled", "WFOnScreenContextLimit"], output: "On-Screen Content" },
|
|
26766
|
-
"is.workflow.actions.getparentdirectory": { name: "Get Parent Directory", params: ["WFInput"], output:
|
|
26808
|
+
"is.workflow.actions.getparentdirectory": { name: "Get Parent Directory", params: ["WFInput"], output: "Get Parent Directory" },
|
|
26767
26809
|
"is.workflow.actions.getparkedcarlocation": { name: "Get Parked Car Location", params: [], output: "Car Location" },
|
|
26768
26810
|
"is.workflow.actions.getpodcastsfromlibrary": { name: "Get Podcasts from Library", params: [], output: "Podcasts" },
|
|
26769
26811
|
"is.workflow.actions.getrichtextfromhtml": { name: "Make Rich Text from HTML", params: ["WFHTML"], output: "Rich Text from HTML" },
|
|
@@ -26783,9 +26825,9 @@ var ACTIONS = {
|
|
|
26783
26825
|
"is.workflow.actions.getwebpagecontents": { name: "Get Contents of Web Page", params: ["WFInput"], output: "Contents of Web Page" },
|
|
26784
26826
|
"is.workflow.actions.getwifi": { name: "Get Network Details", params: ["WFNetworkDetailsNetwork", "WFWiFiDetail", "WFCellularDetail", "WFEthernetDetail"], output: "Network Details" },
|
|
26785
26827
|
"is.workflow.actions.giphy": { name: "Find Giphy GIFs", params: ["WFGiphyQuery", "WFGiphyShowPicker", "WFGiphyLimit", "WFGiphySelectMultiple"], output: "GIFs" },
|
|
26786
|
-
"is.workflow.actions.goodreader.open": { name: "Open in GoodReader", params: ["WFInput"], output:
|
|
26828
|
+
"is.workflow.actions.goodreader.open": { name: "Open in GoodReader", params: ["WFInput"], output: "Open in GoodReader" },
|
|
26787
26829
|
"is.workflow.actions.handoff": { name: "Continue in Shortcuts App", params: [], output: null },
|
|
26788
|
-
"is.workflow.actions.handoffplayback": { name: "Hand Off Playback", params: ["WFSourceMediaRoute", "WFDestinationMediaRoute"], output:
|
|
26830
|
+
"is.workflow.actions.handoffplayback": { name: "Hand Off Playback", params: ["WFSourceMediaRoute", "WFDestinationMediaRoute"], output: "Hand Off Playback" },
|
|
26789
26831
|
"is.workflow.actions.hash": { name: "Generate Hash", params: ["WFHashType", "WFInput"], output: "Hash" },
|
|
26790
26832
|
"is.workflow.actions.health.quantity.log": { name: "Log Health Sample", params: ["WFQuantitySampleType", "WFQuantitySampleQuantity", "WFQuantitySampleAdditionalQuantity", "WFQuantitySampleAdditionalEnumeration", "WFCategorySampleEnumeration", "WFCategorySampleAdditionalEnumerationKey", "WFQuantitySampleDate", "WFSampleEndDate"], output: "Health Sample" },
|
|
26791
26833
|
"is.workflow.actions.health.workout.log": { name: "Log Workout", params: ["WFWorkoutDate", "WFWorkoutDuration", "WFWorkoutReadableActivityType", "WFWorkoutCaloriesQuantity", "WFWorkoutDistanceQuantity"], output: "Workout" },
|
|
@@ -26827,7 +26869,7 @@ var ACTIONS = {
|
|
|
26827
26869
|
"is.workflow.actions.mountdiskimage": { name: "Mount Disk Image", params: ["WFInput"], output: "Mounted Volume" },
|
|
26828
26870
|
"is.workflow.actions.movewindow": { name: "Move Window", params: ["WFPosition", "WFXCoordinate", "WFYCoordinate", "WFWindow", "WFBringToFront", "Display"], output: null },
|
|
26829
26871
|
"is.workflow.actions.nightshift.set": { name: "Set Night Shift", params: ["operation", "OnValue", "ShowWhenRun"], output: null },
|
|
26830
|
-
"is.workflow.actions.nothing": { name: "Nothing", params: [], output:
|
|
26872
|
+
"is.workflow.actions.nothing": { name: "Nothing", params: [], output: "Nothing" },
|
|
26831
26873
|
"is.workflow.actions.notification": { name: "Show Notification", params: ["WFNotificationActionTitle", "WFNotificationActionBody", "WFNotificationActionSound", "WFInput"], output: null },
|
|
26832
26874
|
"is.workflow.actions.number": { name: "Number", params: ["WFNumberActionNumber"], output: "Number" },
|
|
26833
26875
|
"is.workflow.actions.number.random": { name: "Random Number", params: ["WFRandomNumberMinimum", "WFRandomNumberMaximum"], output: "Random Number" },
|
|
@@ -26895,7 +26937,7 @@ var ACTIONS = {
|
|
|
26895
26937
|
"is.workflow.actions.repeat.each": { name: "Repeat with Each", params: ["WFInput"], output: "Repeat with Each" },
|
|
26896
26938
|
"is.workflow.actions.resizewindow": { name: "Resize Window", params: ["WFConfiguration", "WFWidth", "WFHeight", "WFWindow", "WFBringToFront"], output: null },
|
|
26897
26939
|
"is.workflow.actions.returntohomescreen": { name: "Go to Home Screen", params: [], output: null },
|
|
26898
|
-
"is.workflow.actions.ride.requestride": { name: "Request Ride", params: ["IntentAppDefinition", "PickupLocation", "DropOffLocation", "RideOption", "PaymentMethod", "PartySize"], output:
|
|
26940
|
+
"is.workflow.actions.ride.requestride": { name: "Request Ride", params: ["IntentAppDefinition", "PickupLocation", "DropOffLocation", "RideOption", "PaymentMethod", "PartySize"], output: "Requested Ride" },
|
|
26899
26941
|
"is.workflow.actions.round": { name: "Round Number", params: ["WFInput", "WFRoundTo", "WFRoundMode", "TenToThePowerOf"], output: "Rounded Number" },
|
|
26900
26942
|
"is.workflow.actions.rss": { name: "Get Items from RSS Feed", params: ["WFRSSFeedURL", "WFRSSItemQuantity"], output: "RSS Items" },
|
|
26901
26943
|
"is.workflow.actions.rss.extract": { name: "Get RSS Feeds from Page", params: ["WFURLs"], output: "RSS Feeds from Page" },
|
|
@@ -26926,7 +26968,7 @@ var ACTIONS = {
|
|
|
26926
26968
|
"is.workflow.actions.setclipboard": { name: "Copy to Clipboard", params: ["WFLocalOnly", "WFExpirationDate", "WFInput"], output: null },
|
|
26927
26969
|
"is.workflow.actions.setitemname": { name: "Set Name", params: ["WFName", "WFDontIncludeFileExtension", "WFInput"], output: "Renamed Item" },
|
|
26928
26970
|
"is.workflow.actions.setparkedcar": { name: "Set Parked Car", params: ["WFLocation", "WFSetParkedCarNotes", "WFImage"], output: "Parked Car" },
|
|
26929
|
-
"is.workflow.actions.setplaybackdestination": { name: "Change Playback Destination", params: ["WFMediaRouteOperation", "WFMediaRoute"], output:
|
|
26971
|
+
"is.workflow.actions.setplaybackdestination": { name: "Change Playback Destination", params: ["WFMediaRouteOperation", "WFMediaRoute"], output: "Change Playback Destination" },
|
|
26930
26972
|
"is.workflow.actions.setstoredcontent": { name: "Store Content", params: ["WFInput", "WFStoredContentKey", "WFStoredContentGlobalValue"], output: "Stored Content" },
|
|
26931
26973
|
"is.workflow.actions.setters.calendarevents": { name: "Edit Calendar Event", params: ["WFContentItemPropertyName", "Mode", "WFInput", "RemoveSpecifiedValue", "WFCalendarEventContentItemAttachments", "WFCalendarEventContentItemIsAllDay", "WFCalendarEventContentItemNotes", "WFCalendarEventContentItemTitle", "WFCalendarEventContentItemLocation", "WFCalendarEventContentItemEndDate", "WFCalendarEventContentItemDuration", "WFCalendarEventContentItemStartDate", "WFCalendarEventContentItemMyStatus", "WFCalendarEventContentItemAttendees", "WFCalendarEventContentItemURL", "ValueLabel"], output: null },
|
|
26932
26974
|
"is.workflow.actions.setters.contacts": { name: "Edit Contact", params: ["WFContentItemPropertyName", "Mode", "WFInput", "RemoveSpecifiedValue", "WFContactContentItemPrefix", "WFContactContentItemPhoneticLastName", "WFContactContentItemJobTitle", "WFContactContentItemURLs", "WFContactContentItemCompany", "WFContactContentItemDepartment", "WFContactContentItemLastName", "WFContactContentItemEmailAddresses", "WFContactContentItemGroup", "WFContactContentItemPhoneticFirstName", "WFContactContentItemMiddleName", "WFContactContentItemPhoneNumbers", "WFContactContentItemSuffix", "WFContactContentItemStreetAddresses", "WFContactContentItemFirstName", "WFContactContentItemBirthday", "WFContactContentItemContactPhoto", "WFContactContentItemNickname", "WFContactContentItemPhoneticMiddleName", "WFContactContentItemNotes", "ValueLabel"], output: null },
|
|
@@ -26966,7 +27008,7 @@ var ACTIONS = {
|
|
|
26966
27008
|
"is.workflow.actions.text.split": { name: "Split Text", params: ["text", "WFTextSeparator", "WFTextCustomSeparator", "ShowWhenRun"], output: "Split Text" },
|
|
26967
27009
|
"is.workflow.actions.text.translate": { name: "Translate Text", params: ["WFSelectedFromLanguage", "WFSelectedLanguage", "WFInputText"], output: "Translated Text" },
|
|
26968
27010
|
"is.workflow.actions.text.trimwhitespace": { name: "Trim Whitespace", params: ["WFInput"], output: "Updated Text" },
|
|
26969
|
-
"is.workflow.actions.timer.start": { name: "Start Timer", params: ["IntentAppDefinition", "WFDuration"], output:
|
|
27011
|
+
"is.workflow.actions.timer.start": { name: "Start Timer", params: ["IntentAppDefinition", "WFDuration"], output: "Start Timer" },
|
|
26970
27012
|
"is.workflow.actions.todoist.add": { name: "Add Todoist Item", params: ["WFTodoistContent", "WFTodoistProject", "WFTodoistDueDate", "WFTodoistReminder", "WFTodoistReminderType", "WFTodoistPriority", "WFTodoistNotes", "WFTodoistFile"], output: "Todoist Item" },
|
|
26971
27013
|
"is.workflow.actions.trello.add.board": { name: "Create Trello Board", params: ["WFTrelloName", "WFTrelloDescription"], output: "Trello Board" },
|
|
26972
27014
|
"is.workflow.actions.trello.add.card": { name: "Add Trello Card", params: ["WFTrelloName", "WFTrelloBoard", "WFTrelloList", "WFTrelloDueDate", "WFTrelloCardPosition", "WFTrelloAttachments", "WFTrelloDescription"], output: "Trello Card" },
|
|
@@ -26975,7 +27017,7 @@ var ACTIONS = {
|
|
|
26975
27017
|
"is.workflow.actions.trimvideo": { name: "Trim Media", params: ["WFInputMedia"], output: "Trimmed Media" },
|
|
26976
27018
|
"is.workflow.actions.truetone.set": { name: "Set True Tone", params: ["operation", "OnValue", "ShowWhenRun"], output: null },
|
|
26977
27019
|
"is.workflow.actions.tumblr.post": { name: "Post to Tumblr", params: ["WFInput", "WFComposeInApp", "WFBlogName", "WFPostType", "WFPostState", "WFPostTitle", "WFPostSource", "WFPostCaption", "WFPostTags", "WFPostDescription"], output: "Tumblr Post URL" },
|
|
26978
|
-
"is.workflow.actions.tweet": { name: "Tweet", params: ["TweetInput"], output:
|
|
27020
|
+
"is.workflow.actions.tweet": { name: "Tweet", params: ["TweetInput"], output: "Tweet" },
|
|
26979
27021
|
"is.workflow.actions.unzip": { name: "Extract Archive", params: ["WFArchive"], output: "Files" },
|
|
26980
27022
|
"is.workflow.actions.url": { name: "URL", params: ["WFURLActionURL"], output: "URL" },
|
|
26981
27023
|
"is.workflow.actions.url.expand": { name: "Expand URL", params: ["URL"], output: "Expanded URL" },
|
|
@@ -28581,7 +28623,7 @@ var ACTIONS = {
|
|
|
28581
28623
|
};
|
|
28582
28624
|
// data/provenance.json
|
|
28583
28625
|
var provenance_default = {
|
|
28584
|
-
extractedAt: "2026-09-04T12:
|
|
28626
|
+
extractedAt: "2026-09-04T12:33:24Z",
|
|
28585
28627
|
macOS: { version: "27.0", build: "26A5421a", arch: "arm64" },
|
|
28586
28628
|
shortcutsApp: { version: "10.0", build: "5037.0.17" },
|
|
28587
28629
|
workflowKit: "10.0",
|
package/package.json
CHANGED