shortcutkit 0.1.0 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +36 -11
- package/dist/generated/actions.d.ts +1108 -153
- package/dist/index.js +15685 -12595
- package/dist/provenance.d.ts +2 -0
- package/package.json +5 -1
|
@@ -56,6 +56,20 @@ export declare const actions: {
|
|
|
56
56
|
* Parameters: `ShowWhenRun`
|
|
57
57
|
*/
|
|
58
58
|
readonly com_apple_TVRemoteUIService_WakeAppleTVIntent: "com.apple.TVRemoteUIService.WakeAppleTVIntent";
|
|
59
|
+
/**
|
|
60
|
+
* **FaceTime**
|
|
61
|
+
* Calls the contact passed in as input using FaceTime.
|
|
62
|
+
* Summary: `${WFFaceTimeType} ${WFFaceTimeContact}`
|
|
63
|
+
* Parameters: `IntentAppDefinition`, `WFFaceTimeType`, `WFFaceTimeContact`
|
|
64
|
+
*/
|
|
65
|
+
readonly com_apple_facetime_facetime: "com.apple.facetime.facetime";
|
|
66
|
+
/**
|
|
67
|
+
* **Call**
|
|
68
|
+
* Calls the phone number passed in as input.
|
|
69
|
+
* Summary: `Call ${WFCallContact}`
|
|
70
|
+
* Parameters: `IntentAppDefinition`, `WFCallContact`
|
|
71
|
+
*/
|
|
72
|
+
readonly com_apple_mobilephone_call: "com.apple.mobilephone.call";
|
|
59
73
|
/**
|
|
60
74
|
* **Post to Shared Album**
|
|
61
75
|
* Summary: `Post ${ImageInput} to Shared Album`
|
|
@@ -105,6 +119,22 @@ export declare const actions: {
|
|
|
105
119
|
* Parameters: `CalendarName`
|
|
106
120
|
*/
|
|
107
121
|
readonly addnewcalendar: "is.workflow.actions.addnewcalendar";
|
|
122
|
+
/**
|
|
123
|
+
* **New Contact**
|
|
124
|
+
* Creates a new contact.
|
|
125
|
+
* Summary: `Add ${WFContactFirstName}${WFContactLastName} to Contacts`
|
|
126
|
+
* Output: New Contact
|
|
127
|
+
* Parameters: `WFContactFirstName`, `WFContactLastName`, `WFContactCompany`, `WFContactPhoto`, `WFContactPhoneNumbers`, `WFContactEmails`, `WFContactNotes`, `ShowWhenRun`
|
|
128
|
+
*/
|
|
129
|
+
readonly addnewcontact: "is.workflow.actions.addnewcontact";
|
|
130
|
+
/**
|
|
131
|
+
* **New Event**
|
|
132
|
+
* Creates a new event and adds it to the selected calendar.
|
|
133
|
+
* Summary: `Add ${WFCalendarItemTitle} from ${WFCalendarItemStartDate} to ${WFCalendarItemEndDate}`
|
|
134
|
+
* Output: New Event
|
|
135
|
+
* Parameters: `WFCalendarItemTitle`, `WFCalendarItemLocation`, `WFCalendarDescriptor`, `WFCalendarItemStartDate`, `WFCalendarItemEndDate`, `WFCalendarItemAllDay`, `WFAlertTime`, `WFAlertCustomTime`, `WFCalendarItemNotes`, `ShowWhenRun`
|
|
136
|
+
*/
|
|
137
|
+
readonly addnewevent: "is.workflow.actions.addnewevent";
|
|
108
138
|
/**
|
|
109
139
|
* **New Reminder**
|
|
110
140
|
* Creates a new reminder and adds it to the selected list of reminders.
|
|
@@ -129,7 +159,7 @@ export declare const actions: {
|
|
|
129
159
|
* Adds the items passed as input to the specified playlist.
|
|
130
160
|
* Summary: `Add ${WFInput} to ${WFPlaylistName}`
|
|
131
161
|
* Output: Updated Playlist
|
|
132
|
-
* Parameters: `
|
|
162
|
+
* Parameters: `WFPlaylistName`, `WFInput`
|
|
133
163
|
*/
|
|
134
164
|
readonly addtoplaylist: "is.workflow.actions.addtoplaylist";
|
|
135
165
|
/**
|
|
@@ -148,11 +178,24 @@ export declare const actions: {
|
|
|
148
178
|
readonly airdropdocument: "is.workflow.actions.airdropdocument";
|
|
149
179
|
/**
|
|
150
180
|
* **is.workflow.actions.airplanemode.set**
|
|
151
|
-
* Parameters: `ShowWhenRun`
|
|
181
|
+
* Parameters: `operation`, `OnValue`, `ShowWhenRun`
|
|
152
182
|
*/
|
|
153
183
|
readonly airplanemode_set: "is.workflow.actions.airplanemode.set";
|
|
184
|
+
/**
|
|
185
|
+
* **Show Alert**
|
|
186
|
+
* Displays an alert with a title, a message, and two buttons. If the user selects the OK button, the shortcut continues. The cancel button stops the shortcut.
|
|
187
|
+
* Summary: `Show alert ${WFAlertActionMessage}`
|
|
188
|
+
* Parameters: `WFAlertActionTitle`, `WFAlertActionMessage`, `WFAlertActionCancelButtonShown`
|
|
189
|
+
*/
|
|
190
|
+
readonly alert: "is.workflow.actions.alert";
|
|
191
|
+
/**
|
|
192
|
+
* **is.workflow.actions.announcenotifications.set**
|
|
193
|
+
* Parameters: `operation`, `OnValue`, `ShowWhenRun`
|
|
194
|
+
*/
|
|
195
|
+
readonly announcenotifications_set: "is.workflow.actions.announcenotifications.set";
|
|
154
196
|
/**
|
|
155
197
|
* **is.workflow.actions.appearance**
|
|
198
|
+
* Parameters: `operation`, `style`, `ShowWhenRun`
|
|
156
199
|
*/
|
|
157
200
|
readonly appearance: "is.workflow.actions.appearance";
|
|
158
201
|
/**
|
|
@@ -163,11 +206,18 @@ export declare const actions: {
|
|
|
163
206
|
* Parameters: `WFVariableName`, `WFInput`
|
|
164
207
|
*/
|
|
165
208
|
readonly appendvariable: "is.workflow.actions.appendvariable";
|
|
209
|
+
/**
|
|
210
|
+
* **is.workflow.actions.ask**
|
|
211
|
+
* Displays a dialog prompting the user to enter a piece of information.
|
|
212
|
+
* Summary: `Ask for ${WFInputType} with ${WFAskActionPrompt}`
|
|
213
|
+
* Parameters: `WFAskActionPrompt`, `WFInputType`, `WFAskActionDefaultAnswer`, `WFAskActionDefaultAnswerNumber`, `urlAnswer`, `WFAskActionDefaultAnswerURL`, `WFAskActionDefaultAnswerDate`, `WFAskActionDefaultAnswerTime`, `WFAskActionDefaultAnswerDateAndTime`, `WFAskActionAllowsDecimalNumbers`, `WFAskActionAllowsNegativeNumbers`, `WFAllowsMultilineText`, `ShowWhenRun`
|
|
214
|
+
*/
|
|
215
|
+
readonly ask: "is.workflow.actions.ask";
|
|
166
216
|
/**
|
|
167
217
|
* **Use Model**
|
|
168
218
|
* Use a model to handle complex requests in your shortcuts.
|
|
169
219
|
* Output: Response
|
|
170
|
-
* Parameters: `WFLLMModel`, `WFLLMPrompt`, `WFAllowWebSearch`, `
|
|
220
|
+
* Parameters: `WFLLMModel`, `WFLLMPrompt`, `WFAllowWebSearch`, `WFGenerativeResultType`, `FollowUp`
|
|
171
221
|
*/
|
|
172
222
|
readonly askllm: "is.workflow.actions.askllm";
|
|
173
223
|
/**
|
|
@@ -188,7 +238,7 @@ export declare const actions: {
|
|
|
188
238
|
readonly base64encode: "is.workflow.actions.base64encode";
|
|
189
239
|
/**
|
|
190
240
|
* **is.workflow.actions.bluetooth.set**
|
|
191
|
-
* Parameters: `ShowWhenRun`
|
|
241
|
+
* Parameters: `operation`, `OnValue`, `ShowWhenRun`
|
|
192
242
|
*/
|
|
193
243
|
readonly bluetooth_set: "is.workflow.actions.bluetooth.set";
|
|
194
244
|
/**
|
|
@@ -201,8 +251,17 @@ export declare const actions: {
|
|
|
201
251
|
readonly calculateexpression: "is.workflow.actions.calculateexpression";
|
|
202
252
|
/**
|
|
203
253
|
* **is.workflow.actions.cellulardata.set**
|
|
254
|
+
* Parameters: `operation`, `OnValue`, `ShowWhenRun`
|
|
204
255
|
*/
|
|
205
256
|
readonly cellulardata_set: "is.workflow.actions.cellulardata.set";
|
|
257
|
+
/**
|
|
258
|
+
* **Choose from List**
|
|
259
|
+
* Presents a menu of the items passed as input to the action and outputs the user’s selection.
|
|
260
|
+
* Summary: `Choose from ${WFInput}`
|
|
261
|
+
* Output: Chosen Item
|
|
262
|
+
* Parameters: `WFInput`, `WFChooseFromListActionPrompt`, `WFChooseFromListActionSelectMultiple`, `WFChooseFromListActionSelectAll`
|
|
263
|
+
*/
|
|
264
|
+
readonly choosefromlist: "is.workflow.actions.choosefromlist";
|
|
206
265
|
/**
|
|
207
266
|
* **Choose from Menu**
|
|
208
267
|
* Presents a menu and runs different actions based on which menu item was chosen.
|
|
@@ -259,6 +318,27 @@ export declare const actions: {
|
|
|
259
318
|
* Parameters: `WFContact`
|
|
260
319
|
*/
|
|
261
320
|
readonly contacts: "is.workflow.actions.contacts";
|
|
321
|
+
/**
|
|
322
|
+
* **Convert Time Zone**
|
|
323
|
+
* Converts the specified date and time from one time zone to another.
|
|
324
|
+
* Summary: `Convert ${Date} from ${SourceTimeZone} to ${DestinationTimeZone}`
|
|
325
|
+
* Output: Converted Date
|
|
326
|
+
* Parameters: `Date`, `SourceTimeZone`, `DestinationTimeZone`
|
|
327
|
+
*/
|
|
328
|
+
readonly converttimezone: "is.workflow.actions.converttimezone";
|
|
329
|
+
/**
|
|
330
|
+
* **is.workflow.actions.correctspelling**
|
|
331
|
+
* Parameters: `text`, `ShowWhenRun`
|
|
332
|
+
*/
|
|
333
|
+
readonly correctspelling: "is.workflow.actions.correctspelling";
|
|
334
|
+
/**
|
|
335
|
+
* **Count**
|
|
336
|
+
* Counts the number of items, characters, words, sentences, or lines passed as input.
|
|
337
|
+
* Summary: `Count ${WFCountType} in ${Input}`
|
|
338
|
+
* Output: Count
|
|
339
|
+
* Parameters: `WFCountType`, `Input`
|
|
340
|
+
*/
|
|
341
|
+
readonly count: "is.workflow.actions.count";
|
|
262
342
|
/**
|
|
263
343
|
* **Create Playlist**
|
|
264
344
|
* Creates a new playlist in the Music app, adding any items passed as input to the new playlist.
|
|
@@ -267,6 +347,13 @@ export declare const actions: {
|
|
|
267
347
|
* Parameters: `WFPlaylistName`, `WFPlaylistAuthor`, `WFPlaylistDescription`, `WFPlaylistItems`
|
|
268
348
|
*/
|
|
269
349
|
readonly createplaylist: "is.workflow.actions.createplaylist";
|
|
350
|
+
/**
|
|
351
|
+
* **Date**
|
|
352
|
+
* Passes the specified date and time to the next action.
|
|
353
|
+
* Output: Date
|
|
354
|
+
* Parameters: `WFDateActionMode`, `WFDateActionDate`, `WFEventOccurrenceMode`, `WFEventOccurrenceSpecifiedYear`
|
|
355
|
+
*/
|
|
356
|
+
readonly date: "is.workflow.actions.date";
|
|
270
357
|
/**
|
|
271
358
|
* **Show Content Attribution**
|
|
272
359
|
* Shows the Content Source of Input contents
|
|
@@ -274,6 +361,13 @@ export declare const actions: {
|
|
|
274
361
|
* Parameters: `Input`
|
|
275
362
|
*/
|
|
276
363
|
readonly debug_contentattribution: "is.workflow.actions.debug.contentattribution";
|
|
364
|
+
/**
|
|
365
|
+
* **Wait**
|
|
366
|
+
* Waits for the specified number of seconds before continuing with the next action.
|
|
367
|
+
* Summary: `Wait ${WFDelayTime}`
|
|
368
|
+
* Parameters: `WFDelayTime`
|
|
369
|
+
*/
|
|
370
|
+
readonly delay: "is.workflow.actions.delay";
|
|
277
371
|
/**
|
|
278
372
|
* **Delete Stored Content**
|
|
279
373
|
* Deletes stored content for the specified name.
|
|
@@ -381,7 +475,7 @@ export declare const actions: {
|
|
|
381
475
|
* Transcribes what you say aloud into text and passes the result to the next action.
|
|
382
476
|
* Summary: `Dictate text`
|
|
383
477
|
* Output: Dictated Text
|
|
384
|
-
* Parameters: `
|
|
478
|
+
* Parameters: `WFSpeechLanguage`, `WFDictateTextStopListening`
|
|
385
479
|
*/
|
|
386
480
|
readonly dictatetext: "is.workflow.actions.dictatetext";
|
|
387
481
|
/**
|
|
@@ -400,8 +494,15 @@ export declare const actions: {
|
|
|
400
494
|
/**
|
|
401
495
|
* **is.workflow.actions.display.always-on.set**
|
|
402
496
|
* Sets the Always On Display setting of your iPhone to on or off.
|
|
497
|
+
* Parameters: `operation`, `OnValue`, `ShowWhenRun`
|
|
403
498
|
*/
|
|
404
499
|
readonly display_always_on_set: "is.workflow.actions.display.always-on.set";
|
|
500
|
+
/**
|
|
501
|
+
* **Put Display to Sleep**
|
|
502
|
+
* Puts the display(s) of this Mac to sleep.
|
|
503
|
+
* Summary: `Put the display to sleep`
|
|
504
|
+
*/
|
|
505
|
+
readonly displaysleep: "is.workflow.actions.displaysleep";
|
|
405
506
|
/**
|
|
406
507
|
* **Get Current Focus**
|
|
407
508
|
* Returns the currently active Focus.
|
|
@@ -696,6 +797,13 @@ export declare const actions: {
|
|
|
696
797
|
* Parameters: `WFContentItemFilter`, `WFContentItemSortProperty`, `WFContentItemSortOrder`, `WFContentItemLimitEnabled`, `WFContentItemLimitNumber`, `WFCompoundType`, `WFContentItemInputParameter`
|
|
697
798
|
*/
|
|
698
799
|
readonly filter_reminders: "is.workflow.actions.filter.reminders";
|
|
800
|
+
/**
|
|
801
|
+
* **Find VPNs**
|
|
802
|
+
* Searches for VPNs installed on your device that match the given criteria.
|
|
803
|
+
* Output: Found VPNs
|
|
804
|
+
* Parameters: `WFContentItemFilter`, `WFContentItemSortProperty`, `WFContentItemSortOrder`, `WFContentItemLimitEnabled`, `WFContentItemLimitNumber`, `WFCompoundType`, `WFContentItemInputParameter`
|
|
805
|
+
*/
|
|
806
|
+
readonly filter_vpns: "is.workflow.actions.filter.vpns";
|
|
699
807
|
/**
|
|
700
808
|
* **Find Windows**
|
|
701
809
|
* Parameters: `WFContentItemFilter`, `WFContentItemSortProperty`, `WFContentItemSortOrder`, `WFContentItemLimitEnabled`, `WFContentItemLimitNumber`, `WFCompoundType`, `WFContentItemInputParameter`
|
|
@@ -709,9 +817,17 @@ export declare const actions: {
|
|
|
709
817
|
readonly finder_getselectedfiles: "is.workflow.actions.finder.getselectedfiles";
|
|
710
818
|
/**
|
|
711
819
|
* **is.workflow.actions.flashlight**
|
|
712
|
-
* Parameters: `ShowWhenRun`
|
|
820
|
+
* Parameters: `operation`, `state`, `WFFlashlightLevel`, `ShowWhenRun`
|
|
713
821
|
*/
|
|
714
822
|
readonly flashlight: "is.workflow.actions.flashlight";
|
|
823
|
+
/**
|
|
824
|
+
* **Format Date**
|
|
825
|
+
* Formats a date and time into text.
|
|
826
|
+
* Summary: `Format ${WFDate}`
|
|
827
|
+
* Output: Formatted Date
|
|
828
|
+
* Parameters: `WFDateFormatStyle`, `WFRelativeDateFormatStyle`, `WFTimeFormatStyle`, `WFISO8601IncludeTime`, `WFDateFormat`, `WFDate`, `WFLocale`
|
|
829
|
+
*/
|
|
830
|
+
readonly format_date: "is.workflow.actions.format.date";
|
|
715
831
|
/**
|
|
716
832
|
* **Format File Size**
|
|
717
833
|
* Formats a file size into text.
|
|
@@ -720,6 +836,14 @@ export declare const actions: {
|
|
|
720
836
|
* Parameters: `WFFileSizeFormat`, `WFFileSizeIncludeUnits`, `WFFileSize`
|
|
721
837
|
*/
|
|
722
838
|
readonly format_filesize: "is.workflow.actions.format.filesize";
|
|
839
|
+
/**
|
|
840
|
+
* **Format Number**
|
|
841
|
+
* Formats a number into text.
|
|
842
|
+
* Summary: `Format ${WFNumber} to ${WFNumberFormatDecimalPlaces}`
|
|
843
|
+
* Output: Formatted Number
|
|
844
|
+
* Parameters: `WFNumber`, `WFNumberFormatDecimalPlaces`
|
|
845
|
+
*/
|
|
846
|
+
readonly format_number: "is.workflow.actions.format.number";
|
|
723
847
|
/**
|
|
724
848
|
* **Create QR Code**
|
|
725
849
|
* Creates a Quick Response (QR) code for the specified text.
|
|
@@ -744,6 +868,14 @@ export declare const actions: {
|
|
|
744
868
|
* Parameters: `WFWebPage`
|
|
745
869
|
*/
|
|
746
870
|
readonly getarticle: "is.workflow.actions.getarticle";
|
|
871
|
+
/**
|
|
872
|
+
* **Get Battery Status**
|
|
873
|
+
* Returns information about the battery and any charger connected to the device.
|
|
874
|
+
* Summary: `Get ${Subject}`
|
|
875
|
+
* Output: Battery State
|
|
876
|
+
* Parameters: `Subject`
|
|
877
|
+
*/
|
|
878
|
+
readonly getbatterylevel: "is.workflow.actions.getbatterylevel";
|
|
747
879
|
/**
|
|
748
880
|
* **Get Object of Class**
|
|
749
881
|
* Returns a particular object class from the input.
|
|
@@ -752,6 +884,19 @@ export declare const actions: {
|
|
|
752
884
|
* Parameters: `Class`, `Input`
|
|
753
885
|
*/
|
|
754
886
|
readonly getclassaction: "is.workflow.actions.getclassaction";
|
|
887
|
+
/**
|
|
888
|
+
* **Get Clipboard**
|
|
889
|
+
* Passes the contents of the clipboard to the next action.
|
|
890
|
+
* Summary: `Get clipboard`
|
|
891
|
+
* Output: Clipboard
|
|
892
|
+
*/
|
|
893
|
+
readonly getclipboard: "is.workflow.actions.getclipboard";
|
|
894
|
+
/**
|
|
895
|
+
* **Get Current App**
|
|
896
|
+
* Gets the current visible app.
|
|
897
|
+
* Parameters: `WFVisibleAppScope`
|
|
898
|
+
*/
|
|
899
|
+
readonly getcurrentapp: "is.workflow.actions.getcurrentapp";
|
|
755
900
|
/**
|
|
756
901
|
* **Get Current Location**
|
|
757
902
|
* Gets the current location of the device.
|
|
@@ -779,7 +924,7 @@ export declare const actions: {
|
|
|
779
924
|
/**
|
|
780
925
|
* **Open Directions**
|
|
781
926
|
* 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.
|
|
782
|
-
* Parameters: `WFLocation`, `WFDestination`, `
|
|
927
|
+
* Parameters: `WFLocation`, `WFDestination`, `WFGetDirectionsActionApp`, `WFGetDirectionsActionMode`
|
|
783
928
|
*/
|
|
784
929
|
readonly getdirections: "is.workflow.actions.getdirections";
|
|
785
930
|
/**
|
|
@@ -787,7 +932,7 @@ export declare const actions: {
|
|
|
787
932
|
* Calculates the distance to the location passed into this action.
|
|
788
933
|
* Summary: `Get distance from ${WFGetDirectionsCustomLocation} to ${WFGetDistanceDestination}`
|
|
789
934
|
* Output: Distance
|
|
790
|
-
* Parameters: `WFGetDirectionsCustomLocation`, `WFGetDistanceDestination`, `WFGetDirectionsActionMode`, `WFAvoidTolls`, `WFAvoidHighways`, `
|
|
935
|
+
* Parameters: `WFGetDirectionsCustomLocation`, `WFGetDistanceDestination`, `WFGetDirectionsActionMode`, `WFAvoidTolls`, `WFAvoidHighways`, `WFDistanceUnit`, `Accuracy`
|
|
791
936
|
*/
|
|
792
937
|
readonly getdistance: "is.workflow.actions.getdistance";
|
|
793
938
|
/**
|
|
@@ -931,6 +1076,14 @@ export declare const actions: {
|
|
|
931
1076
|
* Parameters: `Folder`
|
|
932
1077
|
*/
|
|
933
1078
|
readonly getmyworkflows: "is.workflow.actions.getmyworkflows";
|
|
1079
|
+
/**
|
|
1080
|
+
* **Get Name of Emoji**
|
|
1081
|
+
* Gets the names of emoji passed into the action.
|
|
1082
|
+
* Summary: `Get name of emoji in ${WFInput}`
|
|
1083
|
+
* Output: Name of Emoji
|
|
1084
|
+
* Parameters: `WFInput`
|
|
1085
|
+
*/
|
|
1086
|
+
readonly getnameofemoji: "is.workflow.actions.getnameofemoji";
|
|
934
1087
|
/**
|
|
935
1088
|
* **Get What’s On Screen**
|
|
936
1089
|
* Gets the current content on screen, if available.
|
|
@@ -943,7 +1096,7 @@ export declare const actions: {
|
|
|
943
1096
|
* Finds content that is currently visible on-screen like images, calendar events, URLs, and more.
|
|
944
1097
|
* Summary: `Get on-screen ${WFOnScreenContextResultType}`
|
|
945
1098
|
* Output: On-Screen Content
|
|
946
|
-
* Parameters: `WFOnScreenContextScope`, `WFOnScreenContextLimitEnabled`, `WFOnScreenContextLimit
|
|
1099
|
+
* Parameters: `WFOnScreenContextResultType`, `WFOnScreenContextScope`, `WFOnScreenContextLimitEnabled`, `WFOnScreenContextLimit`
|
|
947
1100
|
*/
|
|
948
1101
|
readonly getonscreencontext: "is.workflow.actions.getonscreencontext";
|
|
949
1102
|
/**
|
|
@@ -1011,6 +1164,13 @@ export declare const actions: {
|
|
|
1011
1164
|
* Parameters: `WFInput`, `WFGetTextFromPDFTextType`, `WFGetTextFromPDFPageHeader`, `WFGetTextFromPDFPageFooter`, `WFCombinePages`
|
|
1012
1165
|
*/
|
|
1013
1166
|
readonly gettextfrompdf: "is.workflow.actions.gettextfrompdf";
|
|
1167
|
+
/**
|
|
1168
|
+
* **Get Time Between Dates**
|
|
1169
|
+
* Subtracts the specified date from the date passed into the action. For example, this action could get the number of minutes from now until a calendar event passed in as input.
|
|
1170
|
+
* Output: Time Between Dates
|
|
1171
|
+
* Parameters: `WFTimeUntilFromDate`, `WFInput`, `WFTimeUntilUnit`
|
|
1172
|
+
*/
|
|
1173
|
+
readonly gettimebetweendates: "is.workflow.actions.gettimebetweendates";
|
|
1014
1174
|
/**
|
|
1015
1175
|
* **Get Travel Time**
|
|
1016
1176
|
* Estimates the amount of time it will take to travel to the location passed into this action.
|
|
@@ -1051,6 +1211,13 @@ export declare const actions: {
|
|
|
1051
1211
|
* Parameters: `WFURL`, `WFURLComponent`
|
|
1052
1212
|
*/
|
|
1053
1213
|
readonly geturlcomponent: "is.workflow.actions.geturlcomponent";
|
|
1214
|
+
/**
|
|
1215
|
+
* **Get Dictionary Value**
|
|
1216
|
+
* Gets the value for the specified key in the dictionary passed into the action.
|
|
1217
|
+
* Output: Dictionary Value
|
|
1218
|
+
* Parameters: `WFGetDictionaryValueType`, `WFDictionaryKey`, `WFInput`
|
|
1219
|
+
*/
|
|
1220
|
+
readonly getvalueforkey: "is.workflow.actions.getvalueforkey";
|
|
1054
1221
|
/**
|
|
1055
1222
|
* **Get Variable**
|
|
1056
1223
|
* Gets the value of the specified variable and passes it to the next action.
|
|
@@ -1071,7 +1238,7 @@ export declare const actions: {
|
|
|
1071
1238
|
* **Get Network Details**
|
|
1072
1239
|
* Gets information about the currently connected networks.
|
|
1073
1240
|
* Output: Network Details
|
|
1074
|
-
* Parameters: `WFWiFiDetail`, `WFCellularDetail`, `WFEthernetDetail
|
|
1241
|
+
* Parameters: `WFNetworkDetailsNetwork`, `WFWiFiDetail`, `WFCellularDetail`, `WFEthernetDetail`
|
|
1075
1242
|
*/
|
|
1076
1243
|
readonly getwifi: "is.workflow.actions.getwifi";
|
|
1077
1244
|
/**
|
|
@@ -1150,7 +1317,7 @@ export declare const actions: {
|
|
|
1150
1317
|
* Converts the images passed into the action to the specified image format.
|
|
1151
1318
|
* Summary: `Convert ${WFInput} to ${WFImageFormat}`
|
|
1152
1319
|
* Output: Converted Image
|
|
1153
|
-
* Parameters: `WFImageCompressionQuality`, `WFImagePreserveMetadata`, `WFInput
|
|
1320
|
+
* Parameters: `WFImageFormat`, `WFImageCompressionQuality`, `WFImagePreserveMetadata`, `WFInput`
|
|
1154
1321
|
*/
|
|
1155
1322
|
readonly image_convert: "is.workflow.actions.image.convert";
|
|
1156
1323
|
/**
|
|
@@ -1189,6 +1356,14 @@ export declare const actions: {
|
|
|
1189
1356
|
* Parameters: `WFImageResizeKey`, `WFImageResizeWidth`, `WFImageResizeHeight`, `WFImageResizePercentage`, `WFImageResizeLength`, `WFImage`
|
|
1190
1357
|
*/
|
|
1191
1358
|
readonly image_resize: "is.workflow.actions.image.resize";
|
|
1359
|
+
/**
|
|
1360
|
+
* **Rotate Image/Video**
|
|
1361
|
+
* Turns an image or video clockwise by a particular number of degrees.
|
|
1362
|
+
* Summary: `Rotate ${WFImage} by ${WFImageRotateAmount} degrees`
|
|
1363
|
+
* Output: Rotated Image/Video
|
|
1364
|
+
* Parameters: `WFImageRotateAmount`, `WFImage`
|
|
1365
|
+
*/
|
|
1366
|
+
readonly image_rotate: "is.workflow.actions.image.rotate";
|
|
1192
1367
|
/**
|
|
1193
1368
|
* **Upload to Imgur**
|
|
1194
1369
|
* Uploads the input to Imgur.
|
|
@@ -1209,7 +1384,7 @@ export declare const actions: {
|
|
|
1209
1384
|
* **Input**
|
|
1210
1385
|
* Stops execution of the current shortcut and dismisses the shortcut on screen. No more actions will be run after this action.
|
|
1211
1386
|
* Summary: `Receive ${WFInputType} from ${WFInputSurface}`
|
|
1212
|
-
* Parameters: `WFOutput`, `WFInputType`, `WFInputSurface`, `WFNoInputBehavior`, `WFStopAndRespondResponse`, `WFAskForType`, `WFPickingMode`, `SelectMultiple`, `WFPhotoPickerTypes`, `WFSelectMultiplePhotos`, `WFSelectMultiple`, `WFExportSongActionSelectMultiple`
|
|
1387
|
+
* Parameters: `WFOutput`, `WFInputType`, `WFInputSurface`, `WFNoInputBehavior`, `WFStopAndRespondResponse`, `WFAskForType`, `WFPickingMode`, `SelectMultiple`, `WFDateActionMode`, `WFDateActionDate`, `WFEventOccurrenceMode`, `WFEventOccurrenceSpecifiedYear`, `WFPhotoPickerTypes`, `WFSelectMultiplePhotos`, `WFSelectMultiple`, `WFExportSongActionSelectMultiple`
|
|
1213
1388
|
*/
|
|
1214
1389
|
readonly input: "is.workflow.actions.input";
|
|
1215
1390
|
/**
|
|
@@ -1227,11 +1402,18 @@ export declare const actions: {
|
|
|
1227
1402
|
* Parameters: `WFInstapaperFolder`, `WFBookmarkCount`
|
|
1228
1403
|
*/
|
|
1229
1404
|
readonly instapaper_get: "is.workflow.actions.instapaper.get";
|
|
1405
|
+
/**
|
|
1406
|
+
* **Intercom**
|
|
1407
|
+
* Announces a message passed as input using Intercom.
|
|
1408
|
+
* Summary: `Intercom ${WFInput} to ${WFHome}`
|
|
1409
|
+
* Parameters: `WFHome`, `WFInput`
|
|
1410
|
+
*/
|
|
1411
|
+
readonly intercom: "is.workflow.actions.intercom";
|
|
1230
1412
|
/**
|
|
1231
1413
|
* **Import to Lightroom**
|
|
1232
1414
|
* Imports the photos passed as input into Lightroom.
|
|
1233
1415
|
* Summary: `Import ${WFInput} to Lightroom`
|
|
1234
|
-
* Parameters: `applyPreset`, `presetGroup`, `
|
|
1416
|
+
* Parameters: `applyPreset`, `presetGroup`, `preset`, `WFInput`
|
|
1235
1417
|
*/
|
|
1236
1418
|
readonly lightroom_import: "is.workflow.actions.lightroom.import";
|
|
1237
1419
|
/**
|
|
@@ -1255,8 +1437,27 @@ export declare const actions: {
|
|
|
1255
1437
|
* Parameters: `WFLocation`
|
|
1256
1438
|
*/
|
|
1257
1439
|
readonly location: "is.workflow.actions.location";
|
|
1440
|
+
/**
|
|
1441
|
+
* **Lock App**
|
|
1442
|
+
* Changes whether the selected application is locked. Locked apps require authentication to access.
|
|
1443
|
+
* Parameters: `WFLockAppOperation`, `WFApp`
|
|
1444
|
+
*/
|
|
1445
|
+
readonly lock_app: "is.workflow.actions.lock.app";
|
|
1446
|
+
/**
|
|
1447
|
+
* **Lock Screen**
|
|
1448
|
+
* Locks the screen of this device.
|
|
1449
|
+
* Summary: `Lock the screen`
|
|
1450
|
+
*/
|
|
1451
|
+
readonly lockscreen: "is.workflow.actions.lockscreen";
|
|
1452
|
+
/**
|
|
1453
|
+
* **Log Out User**
|
|
1454
|
+
* Logs out the current user.
|
|
1455
|
+
* Summary: `Log out the current user`
|
|
1456
|
+
*/
|
|
1457
|
+
readonly logout: "is.workflow.actions.logout";
|
|
1258
1458
|
/**
|
|
1259
1459
|
* **is.workflow.actions.lowpowermode.set**
|
|
1460
|
+
* Parameters: `operation`, `OnValue`, `ShowWhenRun`
|
|
1260
1461
|
*/
|
|
1261
1462
|
readonly lowpowermode_set: "is.workflow.actions.lowpowermode.set";
|
|
1262
1463
|
/**
|
|
@@ -1280,7 +1481,7 @@ export declare const actions: {
|
|
|
1280
1481
|
* Creates images from the pages in the PDF passed into the action.
|
|
1281
1482
|
* Summary: `Make ${WFMakeImageFromPDFPageImageFormat} image from ${WFInput}`
|
|
1282
1483
|
* Output: Image
|
|
1283
|
-
* Parameters: `WFInput`, `
|
|
1484
|
+
* Parameters: `WFInput`, `WFMakeImageFromPDFPageImageFormat`, `WFMakeImageFromPDFPageColorspace`, `WFMakeImageFromPDFPageResolution`
|
|
1284
1485
|
*/
|
|
1285
1486
|
readonly makeimagefrompdfpage: "is.workflow.actions.makeimagefrompdfpage";
|
|
1286
1487
|
/**
|
|
@@ -1320,7 +1521,7 @@ export declare const actions: {
|
|
|
1320
1521
|
* Makes an archive out of the files passed as input. Supports creating zip, tar.gz, tar.bz2, tar.xz, tar, gzip, cpio, or iso archives.
|
|
1321
1522
|
* Summary: `Make ${WFArchiveFormat} archive from ${WFInput}`
|
|
1322
1523
|
* Output: Archive
|
|
1323
|
-
* Parameters: `WFZIPName`, `
|
|
1524
|
+
* Parameters: `WFZIPName`, `WFArchiveFormat`, `WFInput`
|
|
1324
1525
|
*/
|
|
1325
1526
|
readonly makezip: "is.workflow.actions.makezip";
|
|
1326
1527
|
/**
|
|
@@ -1334,7 +1535,7 @@ export declare const actions: {
|
|
|
1334
1535
|
* **Convert Measurement**
|
|
1335
1536
|
* Converts the measurements passed into the action to the specified unit.
|
|
1336
1537
|
* Output: Converted Measurement
|
|
1337
|
-
* Parameters: `
|
|
1538
|
+
* Parameters: `WFMeasurementUnitType`, `WFMeasurementUnit`, `WFInput`
|
|
1338
1539
|
*/
|
|
1339
1540
|
readonly measurement_convert: "is.workflow.actions.measurement.convert";
|
|
1340
1541
|
/**
|
|
@@ -1342,7 +1543,7 @@ export declare const actions: {
|
|
|
1342
1543
|
* Passes the specified measurement (including number and unit) to the next action.
|
|
1343
1544
|
* Summary: `${WFMeasurementUnitType}\n${WFMeasurementUnit}`
|
|
1344
1545
|
* Output: Measurement
|
|
1345
|
-
* Parameters: `
|
|
1546
|
+
* Parameters: `WFMeasurementUnitType`, `WFMeasurementUnit`
|
|
1346
1547
|
*/
|
|
1347
1548
|
readonly measurement_create: "is.workflow.actions.measurement.create";
|
|
1348
1549
|
/**
|
|
@@ -1361,7 +1562,7 @@ export declare const actions: {
|
|
|
1361
1562
|
readonly movewindow: "is.workflow.actions.movewindow";
|
|
1362
1563
|
/**
|
|
1363
1564
|
* **is.workflow.actions.nightshift.set**
|
|
1364
|
-
* Parameters: `ShowWhenRun`
|
|
1565
|
+
* Parameters: `operation`, `OnValue`, `ShowWhenRun`
|
|
1365
1566
|
*/
|
|
1366
1567
|
readonly nightshift_set: "is.workflow.actions.nightshift.set";
|
|
1367
1568
|
/**
|
|
@@ -1407,6 +1608,13 @@ export declare const actions: {
|
|
|
1407
1608
|
* Parameters: `WFOpenInAskWhenRun`, `WFSelectedApp`, `WFAppName`, `WFInput`
|
|
1408
1609
|
*/
|
|
1409
1610
|
readonly openin: "is.workflow.actions.openin";
|
|
1611
|
+
/**
|
|
1612
|
+
* **Search in Passwords**
|
|
1613
|
+
* Opens Passwords and searches for the given text.
|
|
1614
|
+
* Summary: `Search ${WFShowPasswordsSearchTerm} in Passwords`
|
|
1615
|
+
* Parameters: `WFShowPasswordsSearchTerm`
|
|
1616
|
+
*/
|
|
1617
|
+
readonly openpasswords: "is.workflow.actions.openpasswords";
|
|
1410
1618
|
/**
|
|
1411
1619
|
* **Open URLs**
|
|
1412
1620
|
* Opens URLs passed into the action in Safari.
|
|
@@ -1424,6 +1632,7 @@ export declare const actions: {
|
|
|
1424
1632
|
readonly openxcallbackurl: "is.workflow.actions.openxcallbackurl";
|
|
1425
1633
|
/**
|
|
1426
1634
|
* **is.workflow.actions.orientationlock.set**
|
|
1635
|
+
* Parameters: `operation`, `OnValue`, `ShowWhenRun`
|
|
1427
1636
|
*/
|
|
1428
1637
|
readonly orientationlock_set: "is.workflow.actions.orientationlock.set";
|
|
1429
1638
|
/**
|
|
@@ -1455,10 +1664,24 @@ export declare const actions: {
|
|
|
1455
1664
|
* Parameters: `WFPlayPauseBehavior`, `WFMediaRoute`
|
|
1456
1665
|
*/
|
|
1457
1666
|
readonly pausemusic: "is.workflow.actions.pausemusic";
|
|
1667
|
+
/**
|
|
1668
|
+
* **Get Hotspot Password**
|
|
1669
|
+
* Returns the password of your Personal Hotspot.
|
|
1670
|
+
* Summary: `Get Personal Hotspot password`
|
|
1671
|
+
* Output: Personal Hotspot Password
|
|
1672
|
+
*/
|
|
1673
|
+
readonly personalhotspot_password_get: "is.workflow.actions.personalhotspot.password.get";
|
|
1674
|
+
/**
|
|
1675
|
+
* **Set Hotspot Password**
|
|
1676
|
+
* Sets the Personal Hotspot password.
|
|
1677
|
+
* Summary: `Set Personal Hotspot password to ${WFInput}`
|
|
1678
|
+
* Parameters: `WFInput`
|
|
1679
|
+
*/
|
|
1680
|
+
readonly personalhotspot_password_set: "is.workflow.actions.personalhotspot.password.set";
|
|
1458
1681
|
/**
|
|
1459
1682
|
* **is.workflow.actions.personalhotspot.set**
|
|
1460
1683
|
* Sets the device’s Personal Hotspot to on or off.
|
|
1461
|
-
* Parameters: `ShowWhenRun`
|
|
1684
|
+
* Parameters: `operation`, `OnValue`, `ShowWhenRun`
|
|
1462
1685
|
*/
|
|
1463
1686
|
readonly personalhotspot_set: "is.workflow.actions.personalhotspot.set";
|
|
1464
1687
|
/**
|
|
@@ -1502,7 +1725,7 @@ export declare const actions: {
|
|
|
1502
1725
|
* **Play Podcast**
|
|
1503
1726
|
* Plays a podcast using the Podcasts app. If no podcast is selected, resumes playback.
|
|
1504
1727
|
* Summary: `Play ${WFPodcastShow}`
|
|
1505
|
-
* Parameters: `
|
|
1728
|
+
* Parameters: `WFPodcastShow`, `WFPodcastPlaybackOrder`
|
|
1506
1729
|
*/
|
|
1507
1730
|
readonly playpodcast: "is.workflow.actions.playpodcast";
|
|
1508
1731
|
/**
|
|
@@ -1534,6 +1757,20 @@ export declare const actions: {
|
|
|
1534
1757
|
* Parameters: `WFInput`
|
|
1535
1758
|
*/
|
|
1536
1759
|
readonly podcasts_subscribe: "is.workflow.actions.podcasts.subscribe";
|
|
1760
|
+
/**
|
|
1761
|
+
* **Get All Wallpapers**
|
|
1762
|
+
* Gets all of your Lock Screen wallpapers, and returns them as output so you can use them with other actions.
|
|
1763
|
+
* Output: Wallpapers
|
|
1764
|
+
* Parameters: `WFPosterType`
|
|
1765
|
+
*/
|
|
1766
|
+
readonly posters_get: "is.workflow.actions.posters.get";
|
|
1767
|
+
/**
|
|
1768
|
+
* **Switch Between Wallpapers**
|
|
1769
|
+
* Switches the current Lock Screen wallpaper.
|
|
1770
|
+
* Summary: `Switch to ${WFPoster}`
|
|
1771
|
+
* Parameters: `WFPoster`
|
|
1772
|
+
*/
|
|
1773
|
+
readonly posters_switch: "is.workflow.actions.posters.switch";
|
|
1537
1774
|
/**
|
|
1538
1775
|
* **Post on Facebook**
|
|
1539
1776
|
* Shares the input on Facebook.
|
|
@@ -1557,6 +1794,7 @@ export declare const actions: {
|
|
|
1557
1794
|
readonly print: "is.workflow.actions.print";
|
|
1558
1795
|
/**
|
|
1559
1796
|
* **Get Details of Appearance**
|
|
1797
|
+
* Parameters: `WFContentItemPropertyName`, `WFInput`
|
|
1560
1798
|
*/
|
|
1561
1799
|
readonly properties_appearance: "is.workflow.actions.properties.appearance";
|
|
1562
1800
|
/**
|
|
@@ -1620,10 +1858,12 @@ export declare const actions: {
|
|
|
1620
1858
|
readonly properties_music: "is.workflow.actions.properties.music";
|
|
1621
1859
|
/**
|
|
1622
1860
|
* **Get Details of Parked Car**
|
|
1861
|
+
* Parameters: `WFContentItemPropertyName`, `WFInput`
|
|
1623
1862
|
*/
|
|
1624
1863
|
readonly properties_parkedcar: "is.workflow.actions.properties.parkedcar";
|
|
1625
1864
|
/**
|
|
1626
1865
|
* **Get Details of Podcast Episode**
|
|
1866
|
+
* Parameters: `WFContentItemPropertyName`, `WFInput`
|
|
1627
1867
|
*/
|
|
1628
1868
|
readonly properties_podcast: "is.workflow.actions.properties.podcast";
|
|
1629
1869
|
/**
|
|
@@ -1638,6 +1878,7 @@ export declare const actions: {
|
|
|
1638
1878
|
readonly properties_reminders: "is.workflow.actions.properties.reminders";
|
|
1639
1879
|
/**
|
|
1640
1880
|
* **Get Details of Ride Status**
|
|
1881
|
+
* Parameters: `WFContentItemPropertyName`, `WFInput`
|
|
1641
1882
|
*/
|
|
1642
1883
|
readonly properties_ridestatus: "is.workflow.actions.properties.ridestatus";
|
|
1643
1884
|
/**
|
|
@@ -1647,18 +1888,22 @@ export declare const actions: {
|
|
|
1647
1888
|
readonly properties_safariwebpage: "is.workflow.actions.properties.safariwebpage";
|
|
1648
1889
|
/**
|
|
1649
1890
|
* **Get Details of Shazam**
|
|
1891
|
+
* Parameters: `WFContentItemPropertyName`, `WFInput`
|
|
1650
1892
|
*/
|
|
1651
1893
|
readonly properties_shazam: "is.workflow.actions.properties.shazam";
|
|
1652
1894
|
/**
|
|
1653
1895
|
* **Get Details of Trello Item**
|
|
1896
|
+
* Parameters: `WFContentItemPropertyName`, `WFInput`
|
|
1654
1897
|
*/
|
|
1655
1898
|
readonly properties_trello: "is.workflow.actions.properties.trello";
|
|
1656
1899
|
/**
|
|
1657
1900
|
* **Get Details of Ulysses Sheet**
|
|
1901
|
+
* Parameters: `WFContentItemPropertyName`, `WFInput`
|
|
1658
1902
|
*/
|
|
1659
1903
|
readonly properties_ulysses_sheet: "is.workflow.actions.properties.ulysses.sheet";
|
|
1660
1904
|
/**
|
|
1661
1905
|
* **Get Details of Weather Conditions**
|
|
1906
|
+
* Parameters: `WFContentItemPropertyName`, `WFInput`
|
|
1662
1907
|
*/
|
|
1663
1908
|
readonly properties_weather_conditions: "is.workflow.actions.properties.weather.conditions";
|
|
1664
1909
|
/**
|
|
@@ -1679,6 +1924,12 @@ export declare const actions: {
|
|
|
1679
1924
|
* Parameters: `WFURL`
|
|
1680
1925
|
*/
|
|
1681
1926
|
readonly readinglist: "is.workflow.actions.readinglist";
|
|
1927
|
+
/**
|
|
1928
|
+
* **Shut Down**
|
|
1929
|
+
* Shuts down or restarts your device.
|
|
1930
|
+
* Parameters: `WFShutdownMode`
|
|
1931
|
+
*/
|
|
1932
|
+
readonly reboot: "is.workflow.actions.reboot";
|
|
1682
1933
|
/**
|
|
1683
1934
|
* **Record Audio**
|
|
1684
1935
|
* Uses the microphone to record audio.
|
|
@@ -1706,7 +1957,7 @@ export declare const actions: {
|
|
|
1706
1957
|
* Removes the photos or videos passed as input from the specified photo album.
|
|
1707
1958
|
* Summary: `Remove ${WFInput} from ${WFRemoveAlbumSelectedGroup}`
|
|
1708
1959
|
* Output: Removed Photo Media
|
|
1709
|
-
* Parameters: `
|
|
1960
|
+
* Parameters: `WFRemoveAlbumSelectedGroup`, `WFInput`
|
|
1710
1961
|
*/
|
|
1711
1962
|
readonly removefromalbum: "is.workflow.actions.removefromalbum";
|
|
1712
1963
|
/**
|
|
@@ -1748,7 +1999,7 @@ export declare const actions: {
|
|
|
1748
1999
|
* **Request Ride**
|
|
1749
2000
|
* Requests a ride from the specified pickup location to a specified drop off location.
|
|
1750
2001
|
* Summary: `Request ride from ${PickupLocation} to ${DropOffLocation} with ${IntentAppDefinition}`
|
|
1751
|
-
* Parameters: `IntentAppDefinition`, `PickupLocation`, `DropOffLocation`, `
|
|
2002
|
+
* Parameters: `IntentAppDefinition`, `PickupLocation`, `DropOffLocation`, `RideOption`, `PaymentMethod`, `PartySize`
|
|
1752
2003
|
*/
|
|
1753
2004
|
readonly ride_requestride: "is.workflow.actions.ride.requestride";
|
|
1754
2005
|
/**
|
|
@@ -1817,7 +2068,7 @@ export declare const actions: {
|
|
|
1817
2068
|
* Runs a script on a remote computer over SSH.
|
|
1818
2069
|
* Summary: `Run script over SSH`
|
|
1819
2070
|
* Output: Shell Script Result
|
|
1820
|
-
* Parameters: `WFSSHScript`, `WFSSHHost`, `WFSSHPort`, `WFSSHUser`, `WFSSHAuthenticationType`, `WFSSHPassword`, `
|
|
2071
|
+
* Parameters: `WFSSHScript`, `WFSSHHost`, `WFSSHPort`, `WFSSHUser`, `WFSSHAuthenticationType`, `WFSSHPassword`, `WFSSHKey`, `WFInput`
|
|
1821
2072
|
*/
|
|
1822
2073
|
readonly runsshscript: "is.workflow.actions.runsshscript";
|
|
1823
2074
|
/**
|
|
@@ -1840,7 +2091,7 @@ export declare const actions: {
|
|
|
1840
2091
|
* Adds the photos and videos passed as input to the specified photo album.
|
|
1841
2092
|
* Summary: `Save ${WFInput} to ${WFCameraRollSelectedGroup}`
|
|
1842
2093
|
* Output: Saved Photo Media
|
|
1843
|
-
* Parameters: `
|
|
2094
|
+
* Parameters: `WFCameraRollSelectedGroup`, `WFInput`
|
|
1844
2095
|
*/
|
|
1845
2096
|
readonly savetocameraroll: "is.workflow.actions.savetocameraroll";
|
|
1846
2097
|
/**
|
|
@@ -1848,7 +2099,7 @@ export declare const actions: {
|
|
|
1848
2099
|
* Searches the App Store, returning the apps that match the specified search terms. You can get more details about the results using the Get Details of App Store App action.
|
|
1849
2100
|
* Summary: `Find ${WFSearchTerm} on the App Store`
|
|
1850
2101
|
* Output: App Store Apps
|
|
1851
|
-
* Parameters: `WFSearchTerm`, `WFAttribute`, `WFEntity`, `
|
|
2102
|
+
* Parameters: `WFSearchTerm`, `WFAttribute`, `WFEntity`, `WFCountry`, `WFItemLimit`
|
|
1852
2103
|
*/
|
|
1853
2104
|
readonly searchappstore: "is.workflow.actions.searchappstore";
|
|
1854
2105
|
/**
|
|
@@ -1856,7 +2107,7 @@ export declare const actions: {
|
|
|
1856
2107
|
* Searches the iTunes Store, returning the items that match the specified search terms. You can get more details about the results using the Get Details of iTunes Product action.
|
|
1857
2108
|
* Summary: `Find ${WFSearchTerm} on the iTunes Store`
|
|
1858
2109
|
* Output: iTunes Products
|
|
1859
|
-
* Parameters: `WFSearchTerm`, `WFMediaType`, `WFAttribute`, `WFEntity`, `
|
|
2110
|
+
* Parameters: `WFSearchTerm`, `WFMediaType`, `WFAttribute`, `WFEntity`, `WFCountry`, `WFItemLimit`
|
|
1860
2111
|
*/
|
|
1861
2112
|
readonly searchitunes: "is.workflow.actions.searchitunes";
|
|
1862
2113
|
/**
|
|
@@ -1864,7 +2115,7 @@ export declare const actions: {
|
|
|
1864
2115
|
* Finds nearby places using Maps, and returns the results.
|
|
1865
2116
|
* Summary: `Find ${WFSearchQuery} near ${WFInput}`
|
|
1866
2117
|
* Output: Local Businesses
|
|
1867
|
-
* Parameters: `WFInput`, `WFSearchQuery`, `
|
|
2118
|
+
* Parameters: `WFInput`, `WFSearchQuery`, `WFSearchRadius`, `WFSearchSortOrder`
|
|
1868
2119
|
*/
|
|
1869
2120
|
readonly searchlocalbusinesses: "is.workflow.actions.searchlocalbusinesses";
|
|
1870
2121
|
/**
|
|
@@ -1879,7 +2130,7 @@ export declare const actions: {
|
|
|
1879
2130
|
* Finds podcasts in the Apple Podcasts catalog, returning the items that match the specified search terms.
|
|
1880
2131
|
* Summary: `Find ${WFSearchTerm}`
|
|
1881
2132
|
* Output: Podcasts
|
|
1882
|
-
* Parameters: `WFSearchTerm`, `WFAttribute`, `WFEntity`, `
|
|
2133
|
+
* Parameters: `WFSearchTerm`, `WFAttribute`, `WFEntity`, `WFCountry`, `WFItemLimit`
|
|
1883
2134
|
*/
|
|
1884
2135
|
readonly searchpodcasts: "is.workflow.actions.searchpodcasts";
|
|
1885
2136
|
/**
|
|
@@ -1928,7 +2179,7 @@ export declare const actions: {
|
|
|
1928
2179
|
* **Send Email**
|
|
1929
2180
|
* Pass text into the action to set the email body. Other types of input are added as attachments.
|
|
1930
2181
|
* Summary: `Send ${WFSendEmailActionInputAttachments} with ${WFSendEmailActionSubject} to ${WFSendEmailActionToRecipients}`
|
|
1931
|
-
* Parameters: `WFSendEmailActionFrom`, `WFSendEmailActionToRecipients`, `WFSendEmailActionCcRecipients`, `WFSendEmailActionBccRecipients`, `WFSendEmailActionSubject`, `WFSendEmailActionInputAttachments`, `WFSendEmailActionSaveAsDraft`, `WFSendEmailActionShowComposeSheet
|
|
2182
|
+
* Parameters: `WFEmailAccountActionSelectedAccount`, `WFSendEmailActionFrom`, `WFSendEmailActionToRecipients`, `WFSendEmailActionCcRecipients`, `WFSendEmailActionBccRecipients`, `WFSendEmailActionSubject`, `WFSendEmailActionInputAttachments`, `WFSendEmailActionSaveAsDraft`, `WFSendEmailActionShowComposeSheet`
|
|
1932
2183
|
*/
|
|
1933
2184
|
readonly sendemail: "is.workflow.actions.sendemail";
|
|
1934
2185
|
/**
|
|
@@ -1938,11 +2189,24 @@ export declare const actions: {
|
|
|
1938
2189
|
* Parameters: `IntentAppDefinition`, `ShowWhenRun`, `WFSendMessageActionRecipients`, `WFSendMessageContent`, `WFSendMessagePrefix`
|
|
1939
2190
|
*/
|
|
1940
2191
|
readonly sendmessage: "is.workflow.actions.sendmessage";
|
|
2192
|
+
/**
|
|
2193
|
+
* **Set AirDrop Receiving**
|
|
2194
|
+
* Summary: `Set AirDrop Receiving to ${WFAirDropState}`
|
|
2195
|
+
* Parameters: `WFAirDropState`
|
|
2196
|
+
*/
|
|
2197
|
+
readonly setairdropreceiving: "is.workflow.actions.setairdropreceiving";
|
|
1941
2198
|
/**
|
|
1942
2199
|
* **is.workflow.actions.setbrightness**
|
|
1943
|
-
* Parameters: `ShowWhenRun`
|
|
2200
|
+
* Parameters: `WFBrightness`, `ShowWhenRun`
|
|
1944
2201
|
*/
|
|
1945
2202
|
readonly setbrightness: "is.workflow.actions.setbrightness";
|
|
2203
|
+
/**
|
|
2204
|
+
* **Copy to Clipboard**
|
|
2205
|
+
* Copies the result of the last action to the clipboard.
|
|
2206
|
+
* Summary: `Copy ${WFInput} to clipboard`
|
|
2207
|
+
* Parameters: `WFLocalOnly`, `WFExpirationDate`, `WFInput`
|
|
2208
|
+
*/
|
|
2209
|
+
readonly setclipboard: "is.workflow.actions.setclipboard";
|
|
1946
2210
|
/**
|
|
1947
2211
|
* **Set Name**
|
|
1948
2212
|
* Sets the name of the item passed as input.
|
|
@@ -2038,6 +2302,13 @@ export declare const actions: {
|
|
|
2038
2302
|
* Parameters: `WFBlindSquareSimulation`, `WFInput`
|
|
2039
2303
|
*/
|
|
2040
2304
|
readonly showinblindsquare: "is.workflow.actions.showinblindsquare";
|
|
2305
|
+
/**
|
|
2306
|
+
* **Open in Calendar**
|
|
2307
|
+
* Shows the date or calendar event passed as input in the Calendar app.
|
|
2308
|
+
* Summary: `Open ${WFEvent} in Calendar`
|
|
2309
|
+
* Parameters: `WFEvent`
|
|
2310
|
+
*/
|
|
2311
|
+
readonly showincalendar: "is.workflow.actions.showincalendar";
|
|
2041
2312
|
/**
|
|
2042
2313
|
* **Show in iTunes Store**
|
|
2043
2314
|
* Shows the iTunes products or App Store apps passed as input in a store sheet. This is useful with the Find iTunes Store Items and Find App Store Apps actions.
|
|
@@ -2061,7 +2332,7 @@ export declare const actions: {
|
|
|
2061
2332
|
readonly showwebpage: "is.workflow.actions.showwebpage";
|
|
2062
2333
|
/**
|
|
2063
2334
|
* **is.workflow.actions.silenceunknowncallers.set**
|
|
2064
|
-
* Parameters: `ShowWhenRun`
|
|
2335
|
+
* Parameters: `operation`, `OnValue`, `ShowWhenRun`
|
|
2065
2336
|
*/
|
|
2066
2337
|
readonly silenceunknowncallers_set: "is.workflow.actions.silenceunknowncallers.set";
|
|
2067
2338
|
/**
|
|
@@ -2087,14 +2358,20 @@ export declare const actions: {
|
|
|
2087
2358
|
* **Post to Slack**
|
|
2088
2359
|
* Posts the input to the specified Slack channel.
|
|
2089
2360
|
* Summary: `Post ${WFSlackInput} to ${SlackChannel}`
|
|
2090
|
-
* Parameters: `
|
|
2361
|
+
* Parameters: `WFAccount`, `WFSlackInput`, `SlackChannel`
|
|
2091
2362
|
*/
|
|
2092
2363
|
readonly slack_send: "is.workflow.actions.slack.send";
|
|
2364
|
+
/**
|
|
2365
|
+
* **Sleep**
|
|
2366
|
+
* Put this Mac to sleep.
|
|
2367
|
+
* Summary: `Put this Mac to sleep`
|
|
2368
|
+
*/
|
|
2369
|
+
readonly sleep: "is.workflow.actions.sleep";
|
|
2093
2370
|
/**
|
|
2094
2371
|
* **Speak Text**
|
|
2095
2372
|
* Speaks the inputted text aloud.
|
|
2096
2373
|
* Summary: `Speak ${WFText}`
|
|
2097
|
-
* Parameters: `WFSpeakTextWait`, `WFSpeakTextRate`, `WFSpeakTextPitch`, `
|
|
2374
|
+
* Parameters: `WFSpeakTextWait`, `WFSpeakTextRate`, `WFSpeakTextPitch`, `WFSpeakTextLanguage`, `WFSpeakTextVoice`, `WFText`
|
|
2098
2375
|
*/
|
|
2099
2376
|
readonly speaktext: "is.workflow.actions.speaktext";
|
|
2100
2377
|
/**
|
|
@@ -2117,12 +2394,12 @@ export declare const actions: {
|
|
|
2117
2394
|
* Searches for content in the system that matches the specified text.
|
|
2118
2395
|
* Summary: `Search ${WFInputText}`
|
|
2119
2396
|
* Output: Results
|
|
2120
|
-
* Parameters: `WFInputText`, `
|
|
2397
|
+
* Parameters: `WFInputText`, `WFSpotlightSearchResultType`, `WFSpotlightSearchLimit`
|
|
2121
2398
|
*/
|
|
2122
2399
|
readonly spotlightsearch: "is.workflow.actions.spotlightsearch";
|
|
2123
2400
|
/**
|
|
2124
2401
|
* **is.workflow.actions.stagemanager.set**
|
|
2125
|
-
* Parameters: `ShowWhenRun`
|
|
2402
|
+
* Parameters: `operation`, `state`, `showDock`, `showRecentApps`, `ShowWhenRun`
|
|
2126
2403
|
*/
|
|
2127
2404
|
readonly stagemanager_set: "is.workflow.actions.stagemanager.set";
|
|
2128
2405
|
/**
|
|
@@ -2139,6 +2416,20 @@ export declare const actions: {
|
|
|
2139
2416
|
* Parameters: `WFStatisticsOperation`, `Input`
|
|
2140
2417
|
*/
|
|
2141
2418
|
readonly statistics: "is.workflow.actions.statistics";
|
|
2419
|
+
/**
|
|
2420
|
+
* **Take Photo**
|
|
2421
|
+
* Uses the camera to take photos.
|
|
2422
|
+
* Output: Photo
|
|
2423
|
+
* Parameters: `WFCameraCaptureShowPreview`, `WFPhotoCount`, `WFCameraCaptureDevice`
|
|
2424
|
+
*/
|
|
2425
|
+
readonly takephoto: "is.workflow.actions.takephoto";
|
|
2426
|
+
/**
|
|
2427
|
+
* **Take Screenshot**
|
|
2428
|
+
* Take a screenshot of the device’s screen.
|
|
2429
|
+
* Output: Screenshot
|
|
2430
|
+
* Parameters: `WFTakeScreenshotScreenshotType`, `WFTakeScreenshotActionInteractiveSelectionType`, `WFTakeScreenshotMainMonitorOnly`, `WFTakeScreenshotIgnoreContextualAssistanceLayers`
|
|
2431
|
+
*/
|
|
2432
|
+
readonly takescreenshot: "is.workflow.actions.takescreenshot";
|
|
2142
2433
|
/**
|
|
2143
2434
|
* **Take Video**
|
|
2144
2435
|
* Uses the camera to take a video clip.
|
|
@@ -2146,6 +2437,26 @@ export declare const actions: {
|
|
|
2146
2437
|
* Parameters: `WFCameraCaptureDevice`, `WFCameraCaptureQuality`, `WFRecordingStart`
|
|
2147
2438
|
*/
|
|
2148
2439
|
readonly takevideo: "is.workflow.actions.takevideo";
|
|
2440
|
+
/**
|
|
2441
|
+
* **is.workflow.actions.text.changecase**
|
|
2442
|
+
* Parameters: `text`, `WFCaseType`, `ShowWhenRun`
|
|
2443
|
+
*/
|
|
2444
|
+
readonly text_changecase: "is.workflow.actions.text.changecase";
|
|
2445
|
+
/**
|
|
2446
|
+
* **is.workflow.actions.text.combine**
|
|
2447
|
+
* Parameters: `text`, `WFTextSeparator`, `WFTextCustomSeparator`, `ShowWhenRun`
|
|
2448
|
+
*/
|
|
2449
|
+
readonly text_combine: "is.workflow.actions.text.combine";
|
|
2450
|
+
/**
|
|
2451
|
+
* **is.workflow.actions.text.match**
|
|
2452
|
+
* Parameters: `text`, `WFMatchTextPattern`, `WFMatchTextCaseSensitive`, `ShowWhenRun`
|
|
2453
|
+
*/
|
|
2454
|
+
readonly text_match: "is.workflow.actions.text.match";
|
|
2455
|
+
/**
|
|
2456
|
+
* **is.workflow.actions.text.match.getgroup**
|
|
2457
|
+
* Parameters: `matches`, `WFGetGroupType`, `WFGroupIndex`, `ShowWhenRun`
|
|
2458
|
+
*/
|
|
2459
|
+
readonly text_match_getgroup: "is.workflow.actions.text.match.getgroup";
|
|
2149
2460
|
/**
|
|
2150
2461
|
* **Replace Text**
|
|
2151
2462
|
* Replaces all occurrences of the given text with other text.
|
|
@@ -2154,6 +2465,19 @@ export declare const actions: {
|
|
|
2154
2465
|
* Parameters: `WFReplaceTextFind`, `WFReplaceTextReplace`, `WFReplaceTextCaseSensitive`, `WFReplaceTextRegularExpression`, `WFInput`
|
|
2155
2466
|
*/
|
|
2156
2467
|
readonly text_replace: "is.workflow.actions.text.replace";
|
|
2468
|
+
/**
|
|
2469
|
+
* **is.workflow.actions.text.split**
|
|
2470
|
+
* Parameters: `text`, `WFTextSeparator`, `WFTextCustomSeparator`, `ShowWhenRun`
|
|
2471
|
+
*/
|
|
2472
|
+
readonly text_split: "is.workflow.actions.text.split";
|
|
2473
|
+
/**
|
|
2474
|
+
* **Translate Text**
|
|
2475
|
+
* Translates the text passed into the action into another language.
|
|
2476
|
+
* Summary: `Translate ${WFInputText} from ${WFSelectedFromLanguage} to ${WFSelectedLanguage}`
|
|
2477
|
+
* Output: Translated Text
|
|
2478
|
+
* Parameters: `WFSelectedFromLanguage`, `WFSelectedLanguage`, `WFInputText`
|
|
2479
|
+
*/
|
|
2480
|
+
readonly text_translate: "is.workflow.actions.text.translate";
|
|
2157
2481
|
/**
|
|
2158
2482
|
* **Trim Whitespace**
|
|
2159
2483
|
* Removes whitespace and newlines from both ends of the text passed into the action.
|
|
@@ -2174,7 +2498,7 @@ export declare const actions: {
|
|
|
2174
2498
|
* Adds a new item to Todoist.
|
|
2175
2499
|
* Summary: `Add ${WFTodoistContent} to ${WFTodoistProject}`
|
|
2176
2500
|
* Output: Todoist Item
|
|
2177
|
-
* Parameters: `WFTodoistContent`, `WFTodoistDueDate`, `WFTodoistReminder`, `WFTodoistReminderType`, `WFTodoistPriority`, `WFTodoistNotes`, `WFTodoistFile
|
|
2501
|
+
* Parameters: `WFTodoistContent`, `WFTodoistProject`, `WFTodoistDueDate`, `WFTodoistReminder`, `WFTodoistReminderType`, `WFTodoistPriority`, `WFTodoistNotes`, `WFTodoistFile`
|
|
2178
2502
|
*/
|
|
2179
2503
|
readonly todoist_add: "is.workflow.actions.todoist.add";
|
|
2180
2504
|
/**
|
|
@@ -2190,7 +2514,7 @@ export declare const actions: {
|
|
|
2190
2514
|
* Creates a new card on the specified list and board in your Trello account.
|
|
2191
2515
|
* Summary: `Add ${WFTrelloName} to the ${WFTrelloCardPosition} of ${WFTrelloList} in ${WFTrelloBoard}`
|
|
2192
2516
|
* Output: Trello Card
|
|
2193
|
-
* Parameters: `WFTrelloName`, `
|
|
2517
|
+
* Parameters: `WFTrelloName`, `WFTrelloBoard`, `WFTrelloList`, `WFTrelloDueDate`, `WFTrelloCardPosition`, `WFTrelloAttachments`, `WFTrelloDescription`
|
|
2194
2518
|
*/
|
|
2195
2519
|
readonly trello_add_card: "is.workflow.actions.trello.add.card";
|
|
2196
2520
|
/**
|
|
@@ -2198,7 +2522,7 @@ export declare const actions: {
|
|
|
2198
2522
|
* Creates a new list on the specified board in your Trello account.
|
|
2199
2523
|
* Summary: `Create the list ${WFTrelloName} in ${WFTrelloBoard}`
|
|
2200
2524
|
* Output: Trello List
|
|
2201
|
-
* Parameters: `WFTrelloName`, `
|
|
2525
|
+
* Parameters: `WFTrelloName`, `WFTrelloBoard`, `WFTrelloPosition`
|
|
2202
2526
|
*/
|
|
2203
2527
|
readonly trello_add_list: "is.workflow.actions.trello.add.list";
|
|
2204
2528
|
/**
|
|
@@ -2218,7 +2542,7 @@ export declare const actions: {
|
|
|
2218
2542
|
readonly trimvideo: "is.workflow.actions.trimvideo";
|
|
2219
2543
|
/**
|
|
2220
2544
|
* **is.workflow.actions.truetone.set**
|
|
2221
|
-
* Parameters: `ShowWhenRun`
|
|
2545
|
+
* Parameters: `operation`, `OnValue`, `ShowWhenRun`
|
|
2222
2546
|
*/
|
|
2223
2547
|
readonly truetone_set: "is.workflow.actions.truetone.set";
|
|
2224
2548
|
/**
|
|
@@ -2226,7 +2550,7 @@ export declare const actions: {
|
|
|
2226
2550
|
* Posts the content passed into the action to Tumblr.
|
|
2227
2551
|
* Summary: `Post ${WFInput}`
|
|
2228
2552
|
* Output: Tumblr Post URL
|
|
2229
|
-
* Parameters: `WFInput`, `WFPostType`, `WFPostState`, `WFPostTitle`, `WFPostSource`, `WFPostCaption`, `WFPostTags`, `WFPostDescription
|
|
2553
|
+
* Parameters: `WFInput`, `WFComposeInApp`, `WFBlogName`, `WFPostType`, `WFPostState`, `WFPostTitle`, `WFPostSource`, `WFPostCaption`, `WFPostTags`, `WFPostDescription`
|
|
2230
2554
|
*/
|
|
2231
2555
|
readonly tumblr_post: "is.workflow.actions.tumblr.post";
|
|
2232
2556
|
/**
|
|
@@ -2244,6 +2568,22 @@ export declare const actions: {
|
|
|
2244
2568
|
* Parameters: `WFArchive`
|
|
2245
2569
|
*/
|
|
2246
2570
|
readonly unzip: "is.workflow.actions.unzip";
|
|
2571
|
+
/**
|
|
2572
|
+
* **URL**
|
|
2573
|
+
* Passes the specified URL to the next action.
|
|
2574
|
+
* Summary: `${WFURLActionURL}`
|
|
2575
|
+
* Output: URL
|
|
2576
|
+
* Parameters: `WFURLActionURL`
|
|
2577
|
+
*/
|
|
2578
|
+
readonly url: "is.workflow.actions.url";
|
|
2579
|
+
/**
|
|
2580
|
+
* **Expand URL**
|
|
2581
|
+
* This action expands and cleans up URLs which have been shortened using a URL shortening service like TinyURL or Bit.ly.
|
|
2582
|
+
* Summary: `Expand ${URL}`
|
|
2583
|
+
* Output: Expanded URL
|
|
2584
|
+
* Parameters: `URL`
|
|
2585
|
+
*/
|
|
2586
|
+
readonly url_expand: "is.workflow.actions.url.expand";
|
|
2247
2587
|
/**
|
|
2248
2588
|
* **Get Headers of URL**
|
|
2249
2589
|
* Retrieves the HTTP headers of the URL passed as input using a HEAD request.
|
|
@@ -2292,12 +2632,31 @@ export declare const actions: {
|
|
|
2292
2632
|
* Parameters: `WFInput`
|
|
2293
2633
|
*/
|
|
2294
2634
|
readonly viewresult: "is.workflow.actions.viewresult";
|
|
2635
|
+
/**
|
|
2636
|
+
* **Get Current VPN**
|
|
2637
|
+
* Returns the currently active VPN. If VPN is not active, this action returns nothing.
|
|
2638
|
+
* Output: Current VPN
|
|
2639
|
+
*/
|
|
2640
|
+
readonly vpn_get: "is.workflow.actions.vpn.get";
|
|
2641
|
+
/**
|
|
2642
|
+
* **Set VPN**
|
|
2643
|
+
* Connects, disconnects or changes the On Demand setting for one or more VPN Configurations on this device.
|
|
2644
|
+
* Parameters: `WFVPNOperation`, `WFOnDemandValue`, `WFVPN`
|
|
2645
|
+
*/
|
|
2646
|
+
readonly vpn_set: "is.workflow.actions.vpn.set";
|
|
2295
2647
|
/**
|
|
2296
2648
|
* **Wait to Return**
|
|
2297
2649
|
* Pauses execution until you leave the Shortcuts app and return to it.\n\nThis action might be useful after an action that switches apps, to pause execution until you return to the Shortcuts app.\n\nThis action will only take effect when running shortcuts in the Shortcuts app.
|
|
2298
2650
|
* Summary: `Wait to return`
|
|
2299
2651
|
*/
|
|
2300
2652
|
readonly waittoreturn: "is.workflow.actions.waittoreturn";
|
|
2653
|
+
/**
|
|
2654
|
+
* **Set Wallpaper Photo**
|
|
2655
|
+
* Sets the wallpaper to the specified image.
|
|
2656
|
+
* Output: Wallpaper
|
|
2657
|
+
* Parameters: `WFInput`, `WFWallpaperLocation`, `WFWallpaperShowPreview`, `WFWallpaperPerspectiveZoom`, `WFSelectedPoster`, `WFWallpaperSmartCrop`, `WFWallpaperLegibilityBlur`
|
|
2658
|
+
*/
|
|
2659
|
+
readonly wallpaper_set: "is.workflow.actions.wallpaper.set";
|
|
2301
2660
|
/**
|
|
2302
2661
|
* **Watch Me Do**
|
|
2303
2662
|
* Records and plays back mouse and keyboard events.
|
|
@@ -2305,8 +2664,25 @@ export declare const actions: {
|
|
|
2305
2664
|
* Parameters: `WFUserEvent`, `WFPlaybackSpeed`
|
|
2306
2665
|
*/
|
|
2307
2666
|
readonly watchmedo: "is.workflow.actions.watchmedo";
|
|
2667
|
+
/**
|
|
2668
|
+
* **Get Current Weather**
|
|
2669
|
+
* Gets the current weather conditions at the specified location.
|
|
2670
|
+
* Summary: `Get weather at ${WFWeatherCustomLocation}`
|
|
2671
|
+
* Output: Weather Conditions
|
|
2672
|
+
* Parameters: `WFWeatherCustomLocation`
|
|
2673
|
+
*/
|
|
2674
|
+
readonly weather_currentconditions: "is.workflow.actions.weather.currentconditions";
|
|
2675
|
+
/**
|
|
2676
|
+
* **Get Weather Forecast**
|
|
2677
|
+
* Gets an hourly or daily weather forecast at the specified location.
|
|
2678
|
+
* Summary: `Get ${WFWeatherForecastType} forecast at ${WFWeatherCustomLocation}`
|
|
2679
|
+
* Output: Weather Conditions
|
|
2680
|
+
* Parameters: `WFWeatherCustomLocation`, `WFWeatherForecastType`
|
|
2681
|
+
*/
|
|
2682
|
+
readonly weather_forecast: "is.workflow.actions.weather.forecast";
|
|
2308
2683
|
/**
|
|
2309
2684
|
* **is.workflow.actions.wifi.set**
|
|
2685
|
+
* Parameters: `operation`, `OnValue`, `ShowWhenRun`
|
|
2310
2686
|
*/
|
|
2311
2687
|
readonly wifi_set: "is.workflow.actions.wifi.set";
|
|
2312
2688
|
/**
|
|
@@ -2314,7 +2690,7 @@ export declare const actions: {
|
|
|
2314
2690
|
* Posts the input to a WordPress blog as a new post or page.
|
|
2315
2691
|
* Summary: `Post ${WFInput} as ${Title}`
|
|
2316
2692
|
* Output: WordPress Post URL
|
|
2317
|
-
* Parameters: `Blog`, `Title`, `Type`, `Format`, `Status`, `Categories`, `Tags`, `Advanced`, `AllowComments`, `Slug`, `Excerpt`, `Date`, `Template`, `ThumbnailImage`, `ShowCustomFields`, `CustomFields`, `WFInput
|
|
2693
|
+
* Parameters: `WFAccount`, `Blog`, `Title`, `Type`, `Format`, `Status`, `Categories`, `Tags`, `Advanced`, `AllowComments`, `Slug`, `Excerpt`, `Date`, `Template`, `ThumbnailImage`, `ShowCustomFields`, `CustomFields`, `WFInput`
|
|
2318
2694
|
*/
|
|
2319
2695
|
readonly wordpress_post: "is.workflow.actions.wordpress.post";
|
|
2320
2696
|
/**
|
|
@@ -2388,6 +2764,16 @@ export declare const ACTIONS: {
|
|
|
2388
2764
|
readonly params: readonly ["ShowWhenRun"];
|
|
2389
2765
|
readonly output: null;
|
|
2390
2766
|
};
|
|
2767
|
+
readonly "com.apple.facetime.facetime": {
|
|
2768
|
+
readonly name: "FaceTime";
|
|
2769
|
+
readonly params: readonly ["IntentAppDefinition", "WFFaceTimeType", "WFFaceTimeContact"];
|
|
2770
|
+
readonly output: null;
|
|
2771
|
+
};
|
|
2772
|
+
readonly "com.apple.mobilephone.call": {
|
|
2773
|
+
readonly name: "Call";
|
|
2774
|
+
readonly params: readonly ["IntentAppDefinition", "WFCallContact"];
|
|
2775
|
+
readonly output: null;
|
|
2776
|
+
};
|
|
2391
2777
|
readonly "com.apple.mobileslideshow.StreamShareService": {
|
|
2392
2778
|
readonly name: "Post to Shared Album";
|
|
2393
2779
|
readonly params: readonly ["ImageInput"];
|
|
@@ -2423,6 +2809,16 @@ export declare const ACTIONS: {
|
|
|
2423
2809
|
readonly params: readonly ["CalendarName"];
|
|
2424
2810
|
readonly output: "New Calendar";
|
|
2425
2811
|
};
|
|
2812
|
+
readonly "is.workflow.actions.addnewcontact": {
|
|
2813
|
+
readonly name: "New Contact";
|
|
2814
|
+
readonly params: readonly ["WFContactFirstName", "WFContactLastName", "WFContactCompany", "WFContactPhoto", "WFContactPhoneNumbers", "WFContactEmails", "WFContactNotes", "ShowWhenRun"];
|
|
2815
|
+
readonly output: "New Contact";
|
|
2816
|
+
};
|
|
2817
|
+
readonly "is.workflow.actions.addnewevent": {
|
|
2818
|
+
readonly name: "New Event";
|
|
2819
|
+
readonly params: readonly ["WFCalendarItemTitle", "WFCalendarItemLocation", "WFCalendarDescriptor", "WFCalendarItemStartDate", "WFCalendarItemEndDate", "WFCalendarItemAllDay", "WFAlertTime", "WFAlertCustomTime", "WFCalendarItemNotes", "ShowWhenRun"];
|
|
2820
|
+
readonly output: "New Event";
|
|
2821
|
+
};
|
|
2426
2822
|
readonly "is.workflow.actions.addnewreminder": {
|
|
2427
2823
|
readonly name: "New Reminder";
|
|
2428
2824
|
readonly params: readonly ["WFCalendarItemTitle", "WFCalendarDescriptor", "WFAlertEnabled", "WFAlertCondition", "WFAlertLocation", "WFAlertPerson", "WFAlertLocationRadius", "WFAlertCustomTime", "WFPriority", "WFUrgent", "WFFlag", "WFURL", "WFImages", "WFParentTask", "WFTags", "WFCalendarItemNotes"];
|
|
@@ -2440,7 +2836,7 @@ export declare const ACTIONS: {
|
|
|
2440
2836
|
};
|
|
2441
2837
|
readonly "is.workflow.actions.addtoplaylist": {
|
|
2442
2838
|
readonly name: "Add to Playlist";
|
|
2443
|
-
readonly params: readonly ["
|
|
2839
|
+
readonly params: readonly ["WFPlaylistName", "WFInput"];
|
|
2444
2840
|
readonly output: "Updated Playlist";
|
|
2445
2841
|
};
|
|
2446
2842
|
readonly "is.workflow.actions.adjustdate": {
|
|
@@ -2455,12 +2851,22 @@ export declare const ACTIONS: {
|
|
|
2455
2851
|
};
|
|
2456
2852
|
readonly "is.workflow.actions.airplanemode.set": {
|
|
2457
2853
|
readonly name: "is.workflow.actions.airplanemode.set";
|
|
2458
|
-
readonly params: readonly ["ShowWhenRun"];
|
|
2854
|
+
readonly params: readonly ["operation", "OnValue", "ShowWhenRun"];
|
|
2855
|
+
readonly output: null;
|
|
2856
|
+
};
|
|
2857
|
+
readonly "is.workflow.actions.alert": {
|
|
2858
|
+
readonly name: "Show Alert";
|
|
2859
|
+
readonly params: readonly ["WFAlertActionTitle", "WFAlertActionMessage", "WFAlertActionCancelButtonShown"];
|
|
2860
|
+
readonly output: null;
|
|
2861
|
+
};
|
|
2862
|
+
readonly "is.workflow.actions.announcenotifications.set": {
|
|
2863
|
+
readonly name: "is.workflow.actions.announcenotifications.set";
|
|
2864
|
+
readonly params: readonly ["operation", "OnValue", "ShowWhenRun"];
|
|
2459
2865
|
readonly output: null;
|
|
2460
2866
|
};
|
|
2461
2867
|
readonly "is.workflow.actions.appearance": {
|
|
2462
2868
|
readonly name: "is.workflow.actions.appearance";
|
|
2463
|
-
readonly params: readonly [];
|
|
2869
|
+
readonly params: readonly ["operation", "style", "ShowWhenRun"];
|
|
2464
2870
|
readonly output: null;
|
|
2465
2871
|
};
|
|
2466
2872
|
readonly "is.workflow.actions.appendvariable": {
|
|
@@ -2468,9 +2874,14 @@ export declare const ACTIONS: {
|
|
|
2468
2874
|
readonly params: readonly ["WFVariableName", "WFInput"];
|
|
2469
2875
|
readonly output: "Variable";
|
|
2470
2876
|
};
|
|
2877
|
+
readonly "is.workflow.actions.ask": {
|
|
2878
|
+
readonly name: "is.workflow.actions.ask";
|
|
2879
|
+
readonly params: readonly ["WFAskActionPrompt", "WFInputType", "WFAskActionDefaultAnswer", "WFAskActionDefaultAnswerNumber", "urlAnswer", "WFAskActionDefaultAnswerURL", "WFAskActionDefaultAnswerDate", "WFAskActionDefaultAnswerTime", "WFAskActionDefaultAnswerDateAndTime", "WFAskActionAllowsDecimalNumbers", "WFAskActionAllowsNegativeNumbers", "WFAllowsMultilineText", "ShowWhenRun"];
|
|
2880
|
+
readonly output: null;
|
|
2881
|
+
};
|
|
2471
2882
|
readonly "is.workflow.actions.askllm": {
|
|
2472
2883
|
readonly name: "Use Model";
|
|
2473
|
-
readonly params: readonly ["WFLLMModel", "WFLLMPrompt", "WFAllowWebSearch", "
|
|
2884
|
+
readonly params: readonly ["WFLLMModel", "WFLLMPrompt", "WFAllowWebSearch", "WFGenerativeResultType", "FollowUp"];
|
|
2474
2885
|
readonly output: "Response";
|
|
2475
2886
|
};
|
|
2476
2887
|
readonly "is.workflow.actions.avairyeditphoto": {
|
|
@@ -2485,7 +2896,7 @@ export declare const ACTIONS: {
|
|
|
2485
2896
|
};
|
|
2486
2897
|
readonly "is.workflow.actions.bluetooth.set": {
|
|
2487
2898
|
readonly name: "is.workflow.actions.bluetooth.set";
|
|
2488
|
-
readonly params: readonly ["ShowWhenRun"];
|
|
2899
|
+
readonly params: readonly ["operation", "OnValue", "ShowWhenRun"];
|
|
2489
2900
|
readonly output: null;
|
|
2490
2901
|
};
|
|
2491
2902
|
readonly "is.workflow.actions.calculateexpression": {
|
|
@@ -2495,9 +2906,14 @@ export declare const ACTIONS: {
|
|
|
2495
2906
|
};
|
|
2496
2907
|
readonly "is.workflow.actions.cellulardata.set": {
|
|
2497
2908
|
readonly name: "is.workflow.actions.cellulardata.set";
|
|
2498
|
-
readonly params: readonly [];
|
|
2909
|
+
readonly params: readonly ["operation", "OnValue", "ShowWhenRun"];
|
|
2499
2910
|
readonly output: null;
|
|
2500
2911
|
};
|
|
2912
|
+
readonly "is.workflow.actions.choosefromlist": {
|
|
2913
|
+
readonly name: "Choose from List";
|
|
2914
|
+
readonly params: readonly ["WFInput", "WFChooseFromListActionPrompt", "WFChooseFromListActionSelectMultiple", "WFChooseFromListActionSelectAll"];
|
|
2915
|
+
readonly output: "Chosen Item";
|
|
2916
|
+
};
|
|
2501
2917
|
readonly "is.workflow.actions.choosefrommenu": {
|
|
2502
2918
|
readonly name: "Choose from Menu";
|
|
2503
2919
|
readonly params: readonly ["WFMenuPrompt", "WFMenuItems", "WFMenuItemTitle", "WFMenuItemAttributedTitle"];
|
|
@@ -2538,16 +2954,41 @@ export declare const ACTIONS: {
|
|
|
2538
2954
|
readonly params: readonly ["WFContact"];
|
|
2539
2955
|
readonly output: "Contacts";
|
|
2540
2956
|
};
|
|
2957
|
+
readonly "is.workflow.actions.converttimezone": {
|
|
2958
|
+
readonly name: "Convert Time Zone";
|
|
2959
|
+
readonly params: readonly ["Date", "SourceTimeZone", "DestinationTimeZone"];
|
|
2960
|
+
readonly output: "Converted Date";
|
|
2961
|
+
};
|
|
2962
|
+
readonly "is.workflow.actions.correctspelling": {
|
|
2963
|
+
readonly name: "is.workflow.actions.correctspelling";
|
|
2964
|
+
readonly params: readonly ["text", "ShowWhenRun"];
|
|
2965
|
+
readonly output: null;
|
|
2966
|
+
};
|
|
2967
|
+
readonly "is.workflow.actions.count": {
|
|
2968
|
+
readonly name: "Count";
|
|
2969
|
+
readonly params: readonly ["WFCountType", "Input"];
|
|
2970
|
+
readonly output: "Count";
|
|
2971
|
+
};
|
|
2541
2972
|
readonly "is.workflow.actions.createplaylist": {
|
|
2542
2973
|
readonly name: "Create Playlist";
|
|
2543
2974
|
readonly params: readonly ["WFPlaylistName", "WFPlaylistAuthor", "WFPlaylistDescription", "WFPlaylistItems"];
|
|
2544
2975
|
readonly output: "New Playlist";
|
|
2545
2976
|
};
|
|
2977
|
+
readonly "is.workflow.actions.date": {
|
|
2978
|
+
readonly name: "Date";
|
|
2979
|
+
readonly params: readonly ["WFDateActionMode", "WFDateActionDate", "WFEventOccurrenceMode", "WFEventOccurrenceSpecifiedYear"];
|
|
2980
|
+
readonly output: "Date";
|
|
2981
|
+
};
|
|
2546
2982
|
readonly "is.workflow.actions.debug.contentattribution": {
|
|
2547
2983
|
readonly name: "Show Content Attribution";
|
|
2548
2984
|
readonly params: readonly ["Input"];
|
|
2549
2985
|
readonly output: null;
|
|
2550
2986
|
};
|
|
2987
|
+
readonly "is.workflow.actions.delay": {
|
|
2988
|
+
readonly name: "Wait";
|
|
2989
|
+
readonly params: readonly ["WFDelayTime"];
|
|
2990
|
+
readonly output: null;
|
|
2991
|
+
};
|
|
2551
2992
|
readonly "is.workflow.actions.deletestoredcontent": {
|
|
2552
2993
|
readonly name: "Delete Stored Content";
|
|
2553
2994
|
readonly params: readonly ["WFStoredContentKey", "WFStoredContentGlobalValue"];
|
|
@@ -2615,7 +3056,7 @@ export declare const ACTIONS: {
|
|
|
2615
3056
|
};
|
|
2616
3057
|
readonly "is.workflow.actions.dictatetext": {
|
|
2617
3058
|
readonly name: "Dictate Text";
|
|
2618
|
-
readonly params: readonly ["
|
|
3059
|
+
readonly params: readonly ["WFSpeechLanguage", "WFDictateTextStopListening"];
|
|
2619
3060
|
readonly output: "Dictated Text";
|
|
2620
3061
|
};
|
|
2621
3062
|
readonly "is.workflow.actions.dictionary": {
|
|
@@ -2630,6 +3071,11 @@ export declare const ACTIONS: {
|
|
|
2630
3071
|
};
|
|
2631
3072
|
readonly "is.workflow.actions.display.always-on.set": {
|
|
2632
3073
|
readonly name: "is.workflow.actions.display.always-on.set";
|
|
3074
|
+
readonly params: readonly ["operation", "OnValue", "ShowWhenRun"];
|
|
3075
|
+
readonly output: null;
|
|
3076
|
+
};
|
|
3077
|
+
readonly "is.workflow.actions.displaysleep": {
|
|
3078
|
+
readonly name: "Put Display to Sleep";
|
|
2633
3079
|
readonly params: readonly [];
|
|
2634
3080
|
readonly output: null;
|
|
2635
3081
|
};
|
|
@@ -2853,6 +3299,11 @@ export declare const ACTIONS: {
|
|
|
2853
3299
|
readonly params: readonly ["WFContentItemFilter", "WFContentItemSortProperty", "WFContentItemSortOrder", "WFContentItemLimitEnabled", "WFContentItemLimitNumber", "WFCompoundType", "WFContentItemInputParameter"];
|
|
2854
3300
|
readonly output: null;
|
|
2855
3301
|
};
|
|
3302
|
+
readonly "is.workflow.actions.filter.vpns": {
|
|
3303
|
+
readonly name: "Find VPNs";
|
|
3304
|
+
readonly params: readonly ["WFContentItemFilter", "WFContentItemSortProperty", "WFContentItemSortOrder", "WFContentItemLimitEnabled", "WFContentItemLimitNumber", "WFCompoundType", "WFContentItemInputParameter"];
|
|
3305
|
+
readonly output: "Found VPNs";
|
|
3306
|
+
};
|
|
2856
3307
|
readonly "is.workflow.actions.filter.windows": {
|
|
2857
3308
|
readonly name: "Find Windows";
|
|
2858
3309
|
readonly params: readonly ["WFContentItemFilter", "WFContentItemSortProperty", "WFContentItemSortOrder", "WFContentItemLimitEnabled", "WFContentItemLimitNumber", "WFCompoundType", "WFContentItemInputParameter"];
|
|
@@ -2865,14 +3316,24 @@ export declare const ACTIONS: {
|
|
|
2865
3316
|
};
|
|
2866
3317
|
readonly "is.workflow.actions.flashlight": {
|
|
2867
3318
|
readonly name: "is.workflow.actions.flashlight";
|
|
2868
|
-
readonly params: readonly ["ShowWhenRun"];
|
|
3319
|
+
readonly params: readonly ["operation", "state", "WFFlashlightLevel", "ShowWhenRun"];
|
|
2869
3320
|
readonly output: null;
|
|
2870
3321
|
};
|
|
3322
|
+
readonly "is.workflow.actions.format.date": {
|
|
3323
|
+
readonly name: "Format Date";
|
|
3324
|
+
readonly params: readonly ["WFDateFormatStyle", "WFRelativeDateFormatStyle", "WFTimeFormatStyle", "WFISO8601IncludeTime", "WFDateFormat", "WFDate", "WFLocale"];
|
|
3325
|
+
readonly output: "Formatted Date";
|
|
3326
|
+
};
|
|
2871
3327
|
readonly "is.workflow.actions.format.filesize": {
|
|
2872
3328
|
readonly name: "Format File Size";
|
|
2873
3329
|
readonly params: readonly ["WFFileSizeFormat", "WFFileSizeIncludeUnits", "WFFileSize"];
|
|
2874
3330
|
readonly output: "Formatted File Size";
|
|
2875
3331
|
};
|
|
3332
|
+
readonly "is.workflow.actions.format.number": {
|
|
3333
|
+
readonly name: "Format Number";
|
|
3334
|
+
readonly params: readonly ["WFNumber", "WFNumberFormatDecimalPlaces"];
|
|
3335
|
+
readonly output: "Formatted Number";
|
|
3336
|
+
};
|
|
2876
3337
|
readonly "is.workflow.actions.generatebarcode": {
|
|
2877
3338
|
readonly name: "Create QR Code";
|
|
2878
3339
|
readonly params: readonly ["WFText", "WFQRForegroundColor", "WFQRBackgroundColor", "WFQRRounded", "WFQRErrorCorrectionLevel"];
|
|
@@ -2888,11 +3349,26 @@ export declare const ACTIONS: {
|
|
|
2888
3349
|
readonly params: readonly ["WFWebPage"];
|
|
2889
3350
|
readonly output: "Article";
|
|
2890
3351
|
};
|
|
3352
|
+
readonly "is.workflow.actions.getbatterylevel": {
|
|
3353
|
+
readonly name: "Get Battery Status";
|
|
3354
|
+
readonly params: readonly ["Subject"];
|
|
3355
|
+
readonly output: "Battery State";
|
|
3356
|
+
};
|
|
2891
3357
|
readonly "is.workflow.actions.getclassaction": {
|
|
2892
3358
|
readonly name: "Get Object of Class";
|
|
2893
3359
|
readonly params: readonly ["Class", "Input"];
|
|
2894
3360
|
readonly output: "Object of Class";
|
|
2895
3361
|
};
|
|
3362
|
+
readonly "is.workflow.actions.getclipboard": {
|
|
3363
|
+
readonly name: "Get Clipboard";
|
|
3364
|
+
readonly params: readonly [];
|
|
3365
|
+
readonly output: "Clipboard";
|
|
3366
|
+
};
|
|
3367
|
+
readonly "is.workflow.actions.getcurrentapp": {
|
|
3368
|
+
readonly name: "Get Current App";
|
|
3369
|
+
readonly params: readonly ["WFVisibleAppScope"];
|
|
3370
|
+
readonly output: null;
|
|
3371
|
+
};
|
|
2896
3372
|
readonly "is.workflow.actions.getcurrentlocation": {
|
|
2897
3373
|
readonly name: "Get Current Location";
|
|
2898
3374
|
readonly params: readonly ["Accuracy"];
|
|
@@ -2910,12 +3386,12 @@ export declare const ACTIONS: {
|
|
|
2910
3386
|
};
|
|
2911
3387
|
readonly "is.workflow.actions.getdirections": {
|
|
2912
3388
|
readonly name: "Open Directions";
|
|
2913
|
-
readonly params: readonly ["WFLocation", "WFDestination", "
|
|
3389
|
+
readonly params: readonly ["WFLocation", "WFDestination", "WFGetDirectionsActionApp", "WFGetDirectionsActionMode"];
|
|
2914
3390
|
readonly output: null;
|
|
2915
3391
|
};
|
|
2916
3392
|
readonly "is.workflow.actions.getdistance": {
|
|
2917
3393
|
readonly name: "Get Distance";
|
|
2918
|
-
readonly params: readonly ["WFGetDirectionsCustomLocation", "WFGetDistanceDestination", "WFGetDirectionsActionMode", "WFAvoidTolls", "WFAvoidHighways", "
|
|
3394
|
+
readonly params: readonly ["WFGetDirectionsCustomLocation", "WFGetDistanceDestination", "WFGetDirectionsActionMode", "WFAvoidTolls", "WFAvoidHighways", "WFDistanceUnit", "Accuracy"];
|
|
2919
3395
|
readonly output: "Distance";
|
|
2920
3396
|
};
|
|
2921
3397
|
readonly "is.workflow.actions.getepisodesforpodcast": {
|
|
@@ -3008,6 +3484,11 @@ export declare const ACTIONS: {
|
|
|
3008
3484
|
readonly params: readonly ["Folder"];
|
|
3009
3485
|
readonly output: "My Shortcuts";
|
|
3010
3486
|
};
|
|
3487
|
+
readonly "is.workflow.actions.getnameofemoji": {
|
|
3488
|
+
readonly name: "Get Name of Emoji";
|
|
3489
|
+
readonly params: readonly ["WFInput"];
|
|
3490
|
+
readonly output: "Name of Emoji";
|
|
3491
|
+
};
|
|
3011
3492
|
readonly "is.workflow.actions.getonscreencontent": {
|
|
3012
3493
|
readonly name: "Get What’s On Screen";
|
|
3013
3494
|
readonly params: readonly [];
|
|
@@ -3015,7 +3496,7 @@ export declare const ACTIONS: {
|
|
|
3015
3496
|
};
|
|
3016
3497
|
readonly "is.workflow.actions.getonscreencontext": {
|
|
3017
3498
|
readonly name: "Get What’s On Screen";
|
|
3018
|
-
readonly params: readonly ["
|
|
3499
|
+
readonly params: readonly ["WFOnScreenContextResultType", "WFOnScreenContextScope", "WFOnScreenContextLimitEnabled", "WFOnScreenContextLimit"];
|
|
3019
3500
|
readonly output: "On-Screen Content";
|
|
3020
3501
|
};
|
|
3021
3502
|
readonly "is.workflow.actions.getparentdirectory": {
|
|
@@ -3063,6 +3544,11 @@ export declare const ACTIONS: {
|
|
|
3063
3544
|
readonly params: readonly ["WFInput", "WFGetTextFromPDFTextType", "WFGetTextFromPDFPageHeader", "WFGetTextFromPDFPageFooter", "WFCombinePages"];
|
|
3064
3545
|
readonly output: "Text";
|
|
3065
3546
|
};
|
|
3547
|
+
readonly "is.workflow.actions.gettimebetweendates": {
|
|
3548
|
+
readonly name: "Get Time Between Dates";
|
|
3549
|
+
readonly params: readonly ["WFTimeUntilFromDate", "WFInput", "WFTimeUntilUnit"];
|
|
3550
|
+
readonly output: "Time Between Dates";
|
|
3551
|
+
};
|
|
3066
3552
|
readonly "is.workflow.actions.gettraveltime": {
|
|
3067
3553
|
readonly name: "Get Travel Time";
|
|
3068
3554
|
readonly params: readonly ["WFGetDirectionsCustomLocation", "WFDestination", "WFGetDirectionsActionMode", "WFAvoidTolls", "WFAvoidHighways"];
|
|
@@ -3088,6 +3574,11 @@ export declare const ACTIONS: {
|
|
|
3088
3574
|
readonly params: readonly ["WFURL", "WFURLComponent"];
|
|
3089
3575
|
readonly output: "Component of URL";
|
|
3090
3576
|
};
|
|
3577
|
+
readonly "is.workflow.actions.getvalueforkey": {
|
|
3578
|
+
readonly name: "Get Dictionary Value";
|
|
3579
|
+
readonly params: readonly ["WFGetDictionaryValueType", "WFDictionaryKey", "WFInput"];
|
|
3580
|
+
readonly output: "Dictionary Value";
|
|
3581
|
+
};
|
|
3091
3582
|
readonly "is.workflow.actions.getvariable": {
|
|
3092
3583
|
readonly name: "Get Variable";
|
|
3093
3584
|
readonly params: readonly ["WFVariable"];
|
|
@@ -3100,7 +3591,7 @@ export declare const ACTIONS: {
|
|
|
3100
3591
|
};
|
|
3101
3592
|
readonly "is.workflow.actions.getwifi": {
|
|
3102
3593
|
readonly name: "Get Network Details";
|
|
3103
|
-
readonly params: readonly ["
|
|
3594
|
+
readonly params: readonly ["WFNetworkDetailsNetwork", "WFWiFiDetail", "WFCellularDetail", "WFEthernetDetail"];
|
|
3104
3595
|
readonly output: "Network Details";
|
|
3105
3596
|
};
|
|
3106
3597
|
readonly "is.workflow.actions.giphy": {
|
|
@@ -3155,7 +3646,7 @@ export declare const ACTIONS: {
|
|
|
3155
3646
|
};
|
|
3156
3647
|
readonly "is.workflow.actions.image.convert": {
|
|
3157
3648
|
readonly name: "Convert Image";
|
|
3158
|
-
readonly params: readonly ["
|
|
3649
|
+
readonly params: readonly ["WFImageFormat", "WFImageCompressionQuality", "WFImagePreserveMetadata", "WFInput"];
|
|
3159
3650
|
readonly output: "Converted Image";
|
|
3160
3651
|
};
|
|
3161
3652
|
readonly "is.workflow.actions.image.convert.finder": {
|
|
@@ -3183,6 +3674,11 @@ export declare const ACTIONS: {
|
|
|
3183
3674
|
readonly params: readonly ["WFImageResizeKey", "WFImageResizeWidth", "WFImageResizeHeight", "WFImageResizePercentage", "WFImageResizeLength", "WFImage"];
|
|
3184
3675
|
readonly output: "Resized Image";
|
|
3185
3676
|
};
|
|
3677
|
+
readonly "is.workflow.actions.image.rotate": {
|
|
3678
|
+
readonly name: "Rotate Image/Video";
|
|
3679
|
+
readonly params: readonly ["WFImageRotateAmount", "WFImage"];
|
|
3680
|
+
readonly output: "Rotated Image/Video";
|
|
3681
|
+
};
|
|
3186
3682
|
readonly "is.workflow.actions.imgur.upload": {
|
|
3187
3683
|
readonly name: "Upload to Imgur";
|
|
3188
3684
|
readonly params: readonly ["WFInput", "WFImgurAnonymous", "WFImgurDirectLink", "WFImgurAlbum", "WFImgurAlbumLayout", "WFImgurAlbumPrivacy", "WFImgurTitle", "WFImgurDescription"];
|
|
@@ -3195,7 +3691,7 @@ export declare const ACTIONS: {
|
|
|
3195
3691
|
};
|
|
3196
3692
|
readonly "is.workflow.actions.input": {
|
|
3197
3693
|
readonly name: "Input";
|
|
3198
|
-
readonly params: readonly ["WFOutput", "WFInputType", "WFInputSurface", "WFNoInputBehavior", "WFStopAndRespondResponse", "WFAskForType", "WFPickingMode", "SelectMultiple", "WFPhotoPickerTypes", "WFSelectMultiplePhotos", "WFSelectMultiple", "WFExportSongActionSelectMultiple"];
|
|
3694
|
+
readonly params: readonly ["WFOutput", "WFInputType", "WFInputSurface", "WFNoInputBehavior", "WFStopAndRespondResponse", "WFAskForType", "WFPickingMode", "SelectMultiple", "WFDateActionMode", "WFDateActionDate", "WFEventOccurrenceMode", "WFEventOccurrenceSpecifiedYear", "WFPhotoPickerTypes", "WFSelectMultiplePhotos", "WFSelectMultiple", "WFExportSongActionSelectMultiple"];
|
|
3199
3695
|
readonly output: null;
|
|
3200
3696
|
};
|
|
3201
3697
|
readonly "is.workflow.actions.instapaper.add": {
|
|
@@ -3208,9 +3704,14 @@ export declare const ACTIONS: {
|
|
|
3208
3704
|
readonly params: readonly ["WFInstapaperFolder", "WFBookmarkCount"];
|
|
3209
3705
|
readonly output: "Instapaper Bookmarks";
|
|
3210
3706
|
};
|
|
3707
|
+
readonly "is.workflow.actions.intercom": {
|
|
3708
|
+
readonly name: "Intercom";
|
|
3709
|
+
readonly params: readonly ["WFHome", "WFInput"];
|
|
3710
|
+
readonly output: null;
|
|
3711
|
+
};
|
|
3211
3712
|
readonly "is.workflow.actions.lightroom.import": {
|
|
3212
3713
|
readonly name: "Import to Lightroom";
|
|
3213
|
-
readonly params: readonly ["applyPreset", "presetGroup", "
|
|
3714
|
+
readonly params: readonly ["applyPreset", "presetGroup", "preset", "WFInput"];
|
|
3214
3715
|
readonly output: null;
|
|
3215
3716
|
};
|
|
3216
3717
|
readonly "is.workflow.actions.list": {
|
|
@@ -3228,9 +3729,24 @@ export declare const ACTIONS: {
|
|
|
3228
3729
|
readonly params: readonly ["WFLocation"];
|
|
3229
3730
|
readonly output: "Location";
|
|
3230
3731
|
};
|
|
3732
|
+
readonly "is.workflow.actions.lock.app": {
|
|
3733
|
+
readonly name: "Lock App";
|
|
3734
|
+
readonly params: readonly ["WFLockAppOperation", "WFApp"];
|
|
3735
|
+
readonly output: null;
|
|
3736
|
+
};
|
|
3737
|
+
readonly "is.workflow.actions.lockscreen": {
|
|
3738
|
+
readonly name: "Lock Screen";
|
|
3739
|
+
readonly params: readonly [];
|
|
3740
|
+
readonly output: null;
|
|
3741
|
+
};
|
|
3742
|
+
readonly "is.workflow.actions.logout": {
|
|
3743
|
+
readonly name: "Log Out User";
|
|
3744
|
+
readonly params: readonly [];
|
|
3745
|
+
readonly output: null;
|
|
3746
|
+
};
|
|
3231
3747
|
readonly "is.workflow.actions.lowpowermode.set": {
|
|
3232
3748
|
readonly name: "is.workflow.actions.lowpowermode.set";
|
|
3233
|
-
readonly params: readonly [];
|
|
3749
|
+
readonly params: readonly ["operation", "OnValue", "ShowWhenRun"];
|
|
3234
3750
|
readonly output: null;
|
|
3235
3751
|
};
|
|
3236
3752
|
readonly "is.workflow.actions.makediskimage": {
|
|
@@ -3245,7 +3761,7 @@ export declare const ACTIONS: {
|
|
|
3245
3761
|
};
|
|
3246
3762
|
readonly "is.workflow.actions.makeimagefrompdfpage": {
|
|
3247
3763
|
readonly name: "Make Image from PDF Page";
|
|
3248
|
-
readonly params: readonly ["WFInput", "
|
|
3764
|
+
readonly params: readonly ["WFInput", "WFMakeImageFromPDFPageImageFormat", "WFMakeImageFromPDFPageColorspace", "WFMakeImageFromPDFPageResolution"];
|
|
3249
3765
|
readonly output: "Image";
|
|
3250
3766
|
};
|
|
3251
3767
|
readonly "is.workflow.actions.makeimagefromrichtext": {
|
|
@@ -3270,7 +3786,7 @@ export declare const ACTIONS: {
|
|
|
3270
3786
|
};
|
|
3271
3787
|
readonly "is.workflow.actions.makezip": {
|
|
3272
3788
|
readonly name: "Make Archive";
|
|
3273
|
-
readonly params: readonly ["WFZIPName", "
|
|
3789
|
+
readonly params: readonly ["WFZIPName", "WFArchiveFormat", "WFInput"];
|
|
3274
3790
|
readonly output: "Archive";
|
|
3275
3791
|
};
|
|
3276
3792
|
readonly "is.workflow.actions.math": {
|
|
@@ -3280,12 +3796,12 @@ export declare const ACTIONS: {
|
|
|
3280
3796
|
};
|
|
3281
3797
|
readonly "is.workflow.actions.measurement.convert": {
|
|
3282
3798
|
readonly name: "Convert Measurement";
|
|
3283
|
-
readonly params: readonly ["
|
|
3799
|
+
readonly params: readonly ["WFMeasurementUnitType", "WFMeasurementUnit", "WFInput"];
|
|
3284
3800
|
readonly output: "Converted Measurement";
|
|
3285
3801
|
};
|
|
3286
3802
|
readonly "is.workflow.actions.measurement.create": {
|
|
3287
3803
|
readonly name: "Measurement";
|
|
3288
|
-
readonly params: readonly ["
|
|
3804
|
+
readonly params: readonly ["WFMeasurementUnitType", "WFMeasurementUnit"];
|
|
3289
3805
|
readonly output: "Measurement";
|
|
3290
3806
|
};
|
|
3291
3807
|
readonly "is.workflow.actions.mountdiskimage": {
|
|
@@ -3300,7 +3816,7 @@ export declare const ACTIONS: {
|
|
|
3300
3816
|
};
|
|
3301
3817
|
readonly "is.workflow.actions.nightshift.set": {
|
|
3302
3818
|
readonly name: "is.workflow.actions.nightshift.set";
|
|
3303
|
-
readonly params: readonly ["ShowWhenRun"];
|
|
3819
|
+
readonly params: readonly ["operation", "OnValue", "ShowWhenRun"];
|
|
3304
3820
|
readonly output: null;
|
|
3305
3821
|
};
|
|
3306
3822
|
readonly "is.workflow.actions.nothing": {
|
|
@@ -3333,6 +3849,11 @@ export declare const ACTIONS: {
|
|
|
3333
3849
|
readonly params: readonly ["WFOpenInAskWhenRun", "WFSelectedApp", "WFAppName", "WFInput"];
|
|
3334
3850
|
readonly output: null;
|
|
3335
3851
|
};
|
|
3852
|
+
readonly "is.workflow.actions.openpasswords": {
|
|
3853
|
+
readonly name: "Search in Passwords";
|
|
3854
|
+
readonly params: readonly ["WFShowPasswordsSearchTerm"];
|
|
3855
|
+
readonly output: null;
|
|
3856
|
+
};
|
|
3336
3857
|
readonly "is.workflow.actions.openurl": {
|
|
3337
3858
|
readonly name: "Open URLs";
|
|
3338
3859
|
readonly params: readonly ["WFInput"];
|
|
@@ -3345,7 +3866,7 @@ export declare const ACTIONS: {
|
|
|
3345
3866
|
};
|
|
3346
3867
|
readonly "is.workflow.actions.orientationlock.set": {
|
|
3347
3868
|
readonly name: "is.workflow.actions.orientationlock.set";
|
|
3348
|
-
readonly params: readonly [];
|
|
3869
|
+
readonly params: readonly ["operation", "OnValue", "ShowWhenRun"];
|
|
3349
3870
|
readonly output: null;
|
|
3350
3871
|
};
|
|
3351
3872
|
readonly "is.workflow.actions.output": {
|
|
@@ -3368,9 +3889,19 @@ export declare const ACTIONS: {
|
|
|
3368
3889
|
readonly params: readonly ["WFPlayPauseBehavior", "WFMediaRoute"];
|
|
3369
3890
|
readonly output: null;
|
|
3370
3891
|
};
|
|
3892
|
+
readonly "is.workflow.actions.personalhotspot.password.get": {
|
|
3893
|
+
readonly name: "Get Hotspot Password";
|
|
3894
|
+
readonly params: readonly [];
|
|
3895
|
+
readonly output: "Personal Hotspot Password";
|
|
3896
|
+
};
|
|
3897
|
+
readonly "is.workflow.actions.personalhotspot.password.set": {
|
|
3898
|
+
readonly name: "Set Hotspot Password";
|
|
3899
|
+
readonly params: readonly ["WFInput"];
|
|
3900
|
+
readonly output: null;
|
|
3901
|
+
};
|
|
3371
3902
|
readonly "is.workflow.actions.personalhotspot.set": {
|
|
3372
3903
|
readonly name: "is.workflow.actions.personalhotspot.set";
|
|
3373
|
-
readonly params: readonly ["ShowWhenRun"];
|
|
3904
|
+
readonly params: readonly ["operation", "OnValue", "ShowWhenRun"];
|
|
3374
3905
|
readonly output: null;
|
|
3375
3906
|
};
|
|
3376
3907
|
readonly "is.workflow.actions.phonenumber": {
|
|
@@ -3400,7 +3931,7 @@ export declare const ACTIONS: {
|
|
|
3400
3931
|
};
|
|
3401
3932
|
readonly "is.workflow.actions.playpodcast": {
|
|
3402
3933
|
readonly name: "Play Podcast";
|
|
3403
|
-
readonly params: readonly ["
|
|
3934
|
+
readonly params: readonly ["WFPodcastShow", "WFPodcastPlaybackOrder"];
|
|
3404
3935
|
readonly output: null;
|
|
3405
3936
|
};
|
|
3406
3937
|
readonly "is.workflow.actions.playsound": {
|
|
@@ -3423,6 +3954,16 @@ export declare const ACTIONS: {
|
|
|
3423
3954
|
readonly params: readonly ["WFInput"];
|
|
3424
3955
|
readonly output: null;
|
|
3425
3956
|
};
|
|
3957
|
+
readonly "is.workflow.actions.posters.get": {
|
|
3958
|
+
readonly name: "Get All Wallpapers";
|
|
3959
|
+
readonly params: readonly ["WFPosterType"];
|
|
3960
|
+
readonly output: "Wallpapers";
|
|
3961
|
+
};
|
|
3962
|
+
readonly "is.workflow.actions.posters.switch": {
|
|
3963
|
+
readonly name: "Switch Between Wallpapers";
|
|
3964
|
+
readonly params: readonly ["WFPoster"];
|
|
3965
|
+
readonly output: null;
|
|
3966
|
+
};
|
|
3426
3967
|
readonly "is.workflow.actions.postonfacebook": {
|
|
3427
3968
|
readonly name: "Post on Facebook";
|
|
3428
3969
|
readonly params: readonly ["FacebookContent"];
|
|
@@ -3440,7 +3981,7 @@ export declare const ACTIONS: {
|
|
|
3440
3981
|
};
|
|
3441
3982
|
readonly "is.workflow.actions.properties.appearance": {
|
|
3442
3983
|
readonly name: "Get Details of Appearance";
|
|
3443
|
-
readonly params: readonly [];
|
|
3984
|
+
readonly params: readonly ["WFContentItemPropertyName", "WFInput"];
|
|
3444
3985
|
readonly output: null;
|
|
3445
3986
|
};
|
|
3446
3987
|
readonly "is.workflow.actions.properties.appstore": {
|
|
@@ -3505,12 +4046,12 @@ export declare const ACTIONS: {
|
|
|
3505
4046
|
};
|
|
3506
4047
|
readonly "is.workflow.actions.properties.parkedcar": {
|
|
3507
4048
|
readonly name: "Get Details of Parked Car";
|
|
3508
|
-
readonly params: readonly [];
|
|
4049
|
+
readonly params: readonly ["WFContentItemPropertyName", "WFInput"];
|
|
3509
4050
|
readonly output: null;
|
|
3510
4051
|
};
|
|
3511
4052
|
readonly "is.workflow.actions.properties.podcast": {
|
|
3512
4053
|
readonly name: "Get Details of Podcast Episode";
|
|
3513
|
-
readonly params: readonly [];
|
|
4054
|
+
readonly params: readonly ["WFContentItemPropertyName", "WFInput"];
|
|
3514
4055
|
readonly output: null;
|
|
3515
4056
|
};
|
|
3516
4057
|
readonly "is.workflow.actions.properties.podcastshow": {
|
|
@@ -3525,7 +4066,7 @@ export declare const ACTIONS: {
|
|
|
3525
4066
|
};
|
|
3526
4067
|
readonly "is.workflow.actions.properties.ridestatus": {
|
|
3527
4068
|
readonly name: "Get Details of Ride Status";
|
|
3528
|
-
readonly params: readonly [];
|
|
4069
|
+
readonly params: readonly ["WFContentItemPropertyName", "WFInput"];
|
|
3529
4070
|
readonly output: null;
|
|
3530
4071
|
};
|
|
3531
4072
|
readonly "is.workflow.actions.properties.safariwebpage": {
|
|
@@ -3535,22 +4076,22 @@ export declare const ACTIONS: {
|
|
|
3535
4076
|
};
|
|
3536
4077
|
readonly "is.workflow.actions.properties.shazam": {
|
|
3537
4078
|
readonly name: "Get Details of Shazam";
|
|
3538
|
-
readonly params: readonly [];
|
|
4079
|
+
readonly params: readonly ["WFContentItemPropertyName", "WFInput"];
|
|
3539
4080
|
readonly output: null;
|
|
3540
4081
|
};
|
|
3541
4082
|
readonly "is.workflow.actions.properties.trello": {
|
|
3542
4083
|
readonly name: "Get Details of Trello Item";
|
|
3543
|
-
readonly params: readonly [];
|
|
4084
|
+
readonly params: readonly ["WFContentItemPropertyName", "WFInput"];
|
|
3544
4085
|
readonly output: null;
|
|
3545
4086
|
};
|
|
3546
4087
|
readonly "is.workflow.actions.properties.ulysses.sheet": {
|
|
3547
4088
|
readonly name: "Get Details of Ulysses Sheet";
|
|
3548
|
-
readonly params: readonly [];
|
|
4089
|
+
readonly params: readonly ["WFContentItemPropertyName", "WFInput"];
|
|
3549
4090
|
readonly output: null;
|
|
3550
4091
|
};
|
|
3551
4092
|
readonly "is.workflow.actions.properties.weather.conditions": {
|
|
3552
4093
|
readonly name: "Get Details of Weather Conditions";
|
|
3553
|
-
readonly params: readonly [];
|
|
4094
|
+
readonly params: readonly ["WFContentItemPropertyName", "WFInput"];
|
|
3554
4095
|
readonly output: null;
|
|
3555
4096
|
};
|
|
3556
4097
|
readonly "is.workflow.actions.properties.workflow": {
|
|
@@ -3568,6 +4109,11 @@ export declare const ACTIONS: {
|
|
|
3568
4109
|
readonly params: readonly ["WFURL"];
|
|
3569
4110
|
readonly output: null;
|
|
3570
4111
|
};
|
|
4112
|
+
readonly "is.workflow.actions.reboot": {
|
|
4113
|
+
readonly name: "Shut Down";
|
|
4114
|
+
readonly params: readonly ["WFShutdownMode"];
|
|
4115
|
+
readonly output: null;
|
|
4116
|
+
};
|
|
3571
4117
|
readonly "is.workflow.actions.recordaudio": {
|
|
3572
4118
|
readonly name: "Record Audio";
|
|
3573
4119
|
readonly params: readonly ["WFRecordingCompression", "WFRecordingStart", "WFRecordingEnd", "WFRecordingTimeInterval"];
|
|
@@ -3585,7 +4131,7 @@ export declare const ACTIONS: {
|
|
|
3585
4131
|
};
|
|
3586
4132
|
readonly "is.workflow.actions.removefromalbum": {
|
|
3587
4133
|
readonly name: "Remove from Photo Album";
|
|
3588
|
-
readonly params: readonly ["
|
|
4134
|
+
readonly params: readonly ["WFRemoveAlbumSelectedGroup", "WFInput"];
|
|
3589
4135
|
readonly output: "Removed Photo Media";
|
|
3590
4136
|
};
|
|
3591
4137
|
readonly "is.workflow.actions.removereminders": {
|
|
@@ -3615,7 +4161,7 @@ export declare const ACTIONS: {
|
|
|
3615
4161
|
};
|
|
3616
4162
|
readonly "is.workflow.actions.ride.requestride": {
|
|
3617
4163
|
readonly name: "Request Ride";
|
|
3618
|
-
readonly params: readonly ["IntentAppDefinition", "PickupLocation", "DropOffLocation", "
|
|
4164
|
+
readonly params: readonly ["IntentAppDefinition", "PickupLocation", "DropOffLocation", "RideOption", "PaymentMethod", "PartySize"];
|
|
3619
4165
|
readonly output: null;
|
|
3620
4166
|
};
|
|
3621
4167
|
readonly "is.workflow.actions.round": {
|
|
@@ -3660,7 +4206,7 @@ export declare const ACTIONS: {
|
|
|
3660
4206
|
};
|
|
3661
4207
|
readonly "is.workflow.actions.runsshscript": {
|
|
3662
4208
|
readonly name: "Run Script Over SSH";
|
|
3663
|
-
readonly params: readonly ["WFSSHScript", "WFSSHHost", "WFSSHPort", "WFSSHUser", "WFSSHAuthenticationType", "WFSSHPassword", "
|
|
4209
|
+
readonly params: readonly ["WFSSHScript", "WFSSHHost", "WFSSHPort", "WFSSHUser", "WFSSHAuthenticationType", "WFSSHPassword", "WFSSHKey", "WFInput"];
|
|
3664
4210
|
readonly output: "Shell Script Result";
|
|
3665
4211
|
};
|
|
3666
4212
|
readonly "is.workflow.actions.runworkflow": {
|
|
@@ -3675,22 +4221,22 @@ export declare const ACTIONS: {
|
|
|
3675
4221
|
};
|
|
3676
4222
|
readonly "is.workflow.actions.savetocameraroll": {
|
|
3677
4223
|
readonly name: "Save to Photos";
|
|
3678
|
-
readonly params: readonly ["
|
|
4224
|
+
readonly params: readonly ["WFCameraRollSelectedGroup", "WFInput"];
|
|
3679
4225
|
readonly output: "Saved Photo Media";
|
|
3680
4226
|
};
|
|
3681
4227
|
readonly "is.workflow.actions.searchappstore": {
|
|
3682
4228
|
readonly name: "Find App Store Apps";
|
|
3683
|
-
readonly params: readonly ["WFSearchTerm", "WFAttribute", "WFEntity", "
|
|
4229
|
+
readonly params: readonly ["WFSearchTerm", "WFAttribute", "WFEntity", "WFCountry", "WFItemLimit"];
|
|
3684
4230
|
readonly output: "App Store Apps";
|
|
3685
4231
|
};
|
|
3686
4232
|
readonly "is.workflow.actions.searchitunes": {
|
|
3687
4233
|
readonly name: "Find iTunes Store Items";
|
|
3688
|
-
readonly params: readonly ["WFSearchTerm", "WFMediaType", "WFAttribute", "WFEntity", "
|
|
4234
|
+
readonly params: readonly ["WFSearchTerm", "WFMediaType", "WFAttribute", "WFEntity", "WFCountry", "WFItemLimit"];
|
|
3689
4235
|
readonly output: "iTunes Products";
|
|
3690
4236
|
};
|
|
3691
4237
|
readonly "is.workflow.actions.searchlocalbusinesses": {
|
|
3692
4238
|
readonly name: "Find Places";
|
|
3693
|
-
readonly params: readonly ["WFInput", "WFSearchQuery", "
|
|
4239
|
+
readonly params: readonly ["WFInput", "WFSearchQuery", "WFSearchRadius", "WFSearchSortOrder"];
|
|
3694
4240
|
readonly output: "Local Businesses";
|
|
3695
4241
|
};
|
|
3696
4242
|
readonly "is.workflow.actions.searchmaps": {
|
|
@@ -3700,7 +4246,7 @@ export declare const ACTIONS: {
|
|
|
3700
4246
|
};
|
|
3701
4247
|
readonly "is.workflow.actions.searchpodcasts": {
|
|
3702
4248
|
readonly name: "Find Podcasts";
|
|
3703
|
-
readonly params: readonly ["WFSearchTerm", "WFAttribute", "WFEntity", "
|
|
4249
|
+
readonly params: readonly ["WFSearchTerm", "WFAttribute", "WFEntity", "WFCountry", "WFItemLimit"];
|
|
3704
4250
|
readonly output: "Podcasts";
|
|
3705
4251
|
};
|
|
3706
4252
|
readonly "is.workflow.actions.searchweb": {
|
|
@@ -3735,7 +4281,7 @@ export declare const ACTIONS: {
|
|
|
3735
4281
|
};
|
|
3736
4282
|
readonly "is.workflow.actions.sendemail": {
|
|
3737
4283
|
readonly name: "Send Email";
|
|
3738
|
-
readonly params: readonly ["WFSendEmailActionFrom", "WFSendEmailActionToRecipients", "WFSendEmailActionCcRecipients", "WFSendEmailActionBccRecipients", "WFSendEmailActionSubject", "WFSendEmailActionInputAttachments", "WFSendEmailActionSaveAsDraft", "WFSendEmailActionShowComposeSheet"
|
|
4284
|
+
readonly params: readonly ["WFEmailAccountActionSelectedAccount", "WFSendEmailActionFrom", "WFSendEmailActionToRecipients", "WFSendEmailActionCcRecipients", "WFSendEmailActionBccRecipients", "WFSendEmailActionSubject", "WFSendEmailActionInputAttachments", "WFSendEmailActionSaveAsDraft", "WFSendEmailActionShowComposeSheet"];
|
|
3739
4285
|
readonly output: null;
|
|
3740
4286
|
};
|
|
3741
4287
|
readonly "is.workflow.actions.sendmessage": {
|
|
@@ -3743,9 +4289,19 @@ export declare const ACTIONS: {
|
|
|
3743
4289
|
readonly params: readonly ["IntentAppDefinition", "ShowWhenRun", "WFSendMessageActionRecipients", "WFSendMessageContent", "WFSendMessagePrefix"];
|
|
3744
4290
|
readonly output: null;
|
|
3745
4291
|
};
|
|
4292
|
+
readonly "is.workflow.actions.setairdropreceiving": {
|
|
4293
|
+
readonly name: "Set AirDrop Receiving";
|
|
4294
|
+
readonly params: readonly ["WFAirDropState"];
|
|
4295
|
+
readonly output: null;
|
|
4296
|
+
};
|
|
3746
4297
|
readonly "is.workflow.actions.setbrightness": {
|
|
3747
4298
|
readonly name: "is.workflow.actions.setbrightness";
|
|
3748
|
-
readonly params: readonly ["ShowWhenRun"];
|
|
4299
|
+
readonly params: readonly ["WFBrightness", "ShowWhenRun"];
|
|
4300
|
+
readonly output: null;
|
|
4301
|
+
};
|
|
4302
|
+
readonly "is.workflow.actions.setclipboard": {
|
|
4303
|
+
readonly name: "Copy to Clipboard";
|
|
4304
|
+
readonly params: readonly ["WFLocalOnly", "WFExpirationDate", "WFInput"];
|
|
3749
4305
|
readonly output: null;
|
|
3750
4306
|
};
|
|
3751
4307
|
readonly "is.workflow.actions.setitemname": {
|
|
@@ -3818,6 +4374,11 @@ export declare const ACTIONS: {
|
|
|
3818
4374
|
readonly params: readonly ["WFBlindSquareSimulation", "WFInput"];
|
|
3819
4375
|
readonly output: null;
|
|
3820
4376
|
};
|
|
4377
|
+
readonly "is.workflow.actions.showincalendar": {
|
|
4378
|
+
readonly name: "Open in Calendar";
|
|
4379
|
+
readonly params: readonly ["WFEvent"];
|
|
4380
|
+
readonly output: null;
|
|
4381
|
+
};
|
|
3821
4382
|
readonly "is.workflow.actions.showinstore": {
|
|
3822
4383
|
readonly name: "Show in iTunes Store";
|
|
3823
4384
|
readonly params: readonly ["WFProduct"];
|
|
@@ -3835,7 +4396,7 @@ export declare const ACTIONS: {
|
|
|
3835
4396
|
};
|
|
3836
4397
|
readonly "is.workflow.actions.silenceunknowncallers.set": {
|
|
3837
4398
|
readonly name: "is.workflow.actions.silenceunknowncallers.set";
|
|
3838
|
-
readonly params: readonly ["ShowWhenRun"];
|
|
4399
|
+
readonly params: readonly ["operation", "OnValue", "ShowWhenRun"];
|
|
3839
4400
|
readonly output: null;
|
|
3840
4401
|
};
|
|
3841
4402
|
readonly "is.workflow.actions.sirikit.donation.handle": {
|
|
@@ -3855,12 +4416,17 @@ export declare const ACTIONS: {
|
|
|
3855
4416
|
};
|
|
3856
4417
|
readonly "is.workflow.actions.slack.send": {
|
|
3857
4418
|
readonly name: "Post to Slack";
|
|
3858
|
-
readonly params: readonly ["
|
|
4419
|
+
readonly params: readonly ["WFAccount", "WFSlackInput", "SlackChannel"];
|
|
4420
|
+
readonly output: null;
|
|
4421
|
+
};
|
|
4422
|
+
readonly "is.workflow.actions.sleep": {
|
|
4423
|
+
readonly name: "Sleep";
|
|
4424
|
+
readonly params: readonly [];
|
|
3859
4425
|
readonly output: null;
|
|
3860
4426
|
};
|
|
3861
4427
|
readonly "is.workflow.actions.speaktext": {
|
|
3862
4428
|
readonly name: "Speak Text";
|
|
3863
|
-
readonly params: readonly ["WFSpeakTextWait", "WFSpeakTextRate", "WFSpeakTextPitch", "
|
|
4429
|
+
readonly params: readonly ["WFSpeakTextWait", "WFSpeakTextRate", "WFSpeakTextPitch", "WFSpeakTextLanguage", "WFSpeakTextVoice", "WFText"];
|
|
3864
4430
|
readonly output: null;
|
|
3865
4431
|
};
|
|
3866
4432
|
readonly "is.workflow.actions.splitpdf": {
|
|
@@ -3875,12 +4441,12 @@ export declare const ACTIONS: {
|
|
|
3875
4441
|
};
|
|
3876
4442
|
readonly "is.workflow.actions.spotlightsearch": {
|
|
3877
4443
|
readonly name: "Search";
|
|
3878
|
-
readonly params: readonly ["WFInputText", "
|
|
4444
|
+
readonly params: readonly ["WFInputText", "WFSpotlightSearchResultType", "WFSpotlightSearchLimit"];
|
|
3879
4445
|
readonly output: "Results";
|
|
3880
4446
|
};
|
|
3881
4447
|
readonly "is.workflow.actions.stagemanager.set": {
|
|
3882
4448
|
readonly name: "is.workflow.actions.stagemanager.set";
|
|
3883
|
-
readonly params: readonly ["ShowWhenRun"];
|
|
4449
|
+
readonly params: readonly ["operation", "state", "showDock", "showRecentApps", "ShowWhenRun"];
|
|
3884
4450
|
readonly output: null;
|
|
3885
4451
|
};
|
|
3886
4452
|
readonly "is.workflow.actions.startscreensaver": {
|
|
@@ -3893,16 +4459,56 @@ export declare const ACTIONS: {
|
|
|
3893
4459
|
readonly params: readonly ["WFStatisticsOperation", "Input"];
|
|
3894
4460
|
readonly output: "Statistics";
|
|
3895
4461
|
};
|
|
4462
|
+
readonly "is.workflow.actions.takephoto": {
|
|
4463
|
+
readonly name: "Take Photo";
|
|
4464
|
+
readonly params: readonly ["WFCameraCaptureShowPreview", "WFPhotoCount", "WFCameraCaptureDevice"];
|
|
4465
|
+
readonly output: "Photo";
|
|
4466
|
+
};
|
|
4467
|
+
readonly "is.workflow.actions.takescreenshot": {
|
|
4468
|
+
readonly name: "Take Screenshot";
|
|
4469
|
+
readonly params: readonly ["WFTakeScreenshotScreenshotType", "WFTakeScreenshotActionInteractiveSelectionType", "WFTakeScreenshotMainMonitorOnly", "WFTakeScreenshotIgnoreContextualAssistanceLayers"];
|
|
4470
|
+
readonly output: "Screenshot";
|
|
4471
|
+
};
|
|
3896
4472
|
readonly "is.workflow.actions.takevideo": {
|
|
3897
4473
|
readonly name: "Take Video";
|
|
3898
4474
|
readonly params: readonly ["WFCameraCaptureDevice", "WFCameraCaptureQuality", "WFRecordingStart"];
|
|
3899
4475
|
readonly output: "Video";
|
|
3900
4476
|
};
|
|
4477
|
+
readonly "is.workflow.actions.text.changecase": {
|
|
4478
|
+
readonly name: "is.workflow.actions.text.changecase";
|
|
4479
|
+
readonly params: readonly ["text", "WFCaseType", "ShowWhenRun"];
|
|
4480
|
+
readonly output: null;
|
|
4481
|
+
};
|
|
4482
|
+
readonly "is.workflow.actions.text.combine": {
|
|
4483
|
+
readonly name: "is.workflow.actions.text.combine";
|
|
4484
|
+
readonly params: readonly ["text", "WFTextSeparator", "WFTextCustomSeparator", "ShowWhenRun"];
|
|
4485
|
+
readonly output: null;
|
|
4486
|
+
};
|
|
4487
|
+
readonly "is.workflow.actions.text.match": {
|
|
4488
|
+
readonly name: "is.workflow.actions.text.match";
|
|
4489
|
+
readonly params: readonly ["text", "WFMatchTextPattern", "WFMatchTextCaseSensitive", "ShowWhenRun"];
|
|
4490
|
+
readonly output: null;
|
|
4491
|
+
};
|
|
4492
|
+
readonly "is.workflow.actions.text.match.getgroup": {
|
|
4493
|
+
readonly name: "is.workflow.actions.text.match.getgroup";
|
|
4494
|
+
readonly params: readonly ["matches", "WFGetGroupType", "WFGroupIndex", "ShowWhenRun"];
|
|
4495
|
+
readonly output: null;
|
|
4496
|
+
};
|
|
3901
4497
|
readonly "is.workflow.actions.text.replace": {
|
|
3902
4498
|
readonly name: "Replace Text";
|
|
3903
4499
|
readonly params: readonly ["WFReplaceTextFind", "WFReplaceTextReplace", "WFReplaceTextCaseSensitive", "WFReplaceTextRegularExpression", "WFInput"];
|
|
3904
4500
|
readonly output: "Updated Text";
|
|
3905
4501
|
};
|
|
4502
|
+
readonly "is.workflow.actions.text.split": {
|
|
4503
|
+
readonly name: "is.workflow.actions.text.split";
|
|
4504
|
+
readonly params: readonly ["text", "WFTextSeparator", "WFTextCustomSeparator", "ShowWhenRun"];
|
|
4505
|
+
readonly output: null;
|
|
4506
|
+
};
|
|
4507
|
+
readonly "is.workflow.actions.text.translate": {
|
|
4508
|
+
readonly name: "Translate Text";
|
|
4509
|
+
readonly params: readonly ["WFSelectedFromLanguage", "WFSelectedLanguage", "WFInputText"];
|
|
4510
|
+
readonly output: "Translated Text";
|
|
4511
|
+
};
|
|
3906
4512
|
readonly "is.workflow.actions.text.trimwhitespace": {
|
|
3907
4513
|
readonly name: "Trim Whitespace";
|
|
3908
4514
|
readonly params: readonly ["WFInput"];
|
|
@@ -3915,7 +4521,7 @@ export declare const ACTIONS: {
|
|
|
3915
4521
|
};
|
|
3916
4522
|
readonly "is.workflow.actions.todoist.add": {
|
|
3917
4523
|
readonly name: "Add Todoist Item";
|
|
3918
|
-
readonly params: readonly ["WFTodoistContent", "WFTodoistDueDate", "WFTodoistReminder", "WFTodoistReminderType", "WFTodoistPriority", "WFTodoistNotes", "WFTodoistFile"
|
|
4524
|
+
readonly params: readonly ["WFTodoistContent", "WFTodoistProject", "WFTodoistDueDate", "WFTodoistReminder", "WFTodoistReminderType", "WFTodoistPriority", "WFTodoistNotes", "WFTodoistFile"];
|
|
3919
4525
|
readonly output: "Todoist Item";
|
|
3920
4526
|
};
|
|
3921
4527
|
readonly "is.workflow.actions.trello.add.board": {
|
|
@@ -3925,12 +4531,12 @@ export declare const ACTIONS: {
|
|
|
3925
4531
|
};
|
|
3926
4532
|
readonly "is.workflow.actions.trello.add.card": {
|
|
3927
4533
|
readonly name: "Add Trello Card";
|
|
3928
|
-
readonly params: readonly ["WFTrelloName", "
|
|
4534
|
+
readonly params: readonly ["WFTrelloName", "WFTrelloBoard", "WFTrelloList", "WFTrelloDueDate", "WFTrelloCardPosition", "WFTrelloAttachments", "WFTrelloDescription"];
|
|
3929
4535
|
readonly output: "Trello Card";
|
|
3930
4536
|
};
|
|
3931
4537
|
readonly "is.workflow.actions.trello.add.list": {
|
|
3932
4538
|
readonly name: "Create Trello List";
|
|
3933
|
-
readonly params: readonly ["WFTrelloName", "
|
|
4539
|
+
readonly params: readonly ["WFTrelloName", "WFTrelloBoard", "WFTrelloPosition"];
|
|
3934
4540
|
readonly output: "Trello List";
|
|
3935
4541
|
};
|
|
3936
4542
|
readonly "is.workflow.actions.trello.get": {
|
|
@@ -3945,12 +4551,12 @@ export declare const ACTIONS: {
|
|
|
3945
4551
|
};
|
|
3946
4552
|
readonly "is.workflow.actions.truetone.set": {
|
|
3947
4553
|
readonly name: "is.workflow.actions.truetone.set";
|
|
3948
|
-
readonly params: readonly ["ShowWhenRun"];
|
|
4554
|
+
readonly params: readonly ["operation", "OnValue", "ShowWhenRun"];
|
|
3949
4555
|
readonly output: null;
|
|
3950
4556
|
};
|
|
3951
4557
|
readonly "is.workflow.actions.tumblr.post": {
|
|
3952
4558
|
readonly name: "Post to Tumblr";
|
|
3953
|
-
readonly params: readonly ["WFInput", "
|
|
4559
|
+
readonly params: readonly ["WFInput", "WFComposeInApp", "WFBlogName", "WFPostType", "WFPostState", "WFPostTitle", "WFPostSource", "WFPostCaption", "WFPostTags", "WFPostDescription"];
|
|
3954
4560
|
readonly output: "Tumblr Post URL";
|
|
3955
4561
|
};
|
|
3956
4562
|
readonly "is.workflow.actions.tweet": {
|
|
@@ -3963,6 +4569,16 @@ export declare const ACTIONS: {
|
|
|
3963
4569
|
readonly params: readonly ["WFArchive"];
|
|
3964
4570
|
readonly output: "Files";
|
|
3965
4571
|
};
|
|
4572
|
+
readonly "is.workflow.actions.url": {
|
|
4573
|
+
readonly name: "URL";
|
|
4574
|
+
readonly params: readonly ["WFURLActionURL"];
|
|
4575
|
+
readonly output: "URL";
|
|
4576
|
+
};
|
|
4577
|
+
readonly "is.workflow.actions.url.expand": {
|
|
4578
|
+
readonly name: "Expand URL";
|
|
4579
|
+
readonly params: readonly ["URL"];
|
|
4580
|
+
readonly output: "Expanded URL";
|
|
4581
|
+
};
|
|
3966
4582
|
readonly "is.workflow.actions.url.getheaders": {
|
|
3967
4583
|
readonly name: "Get Headers of URL";
|
|
3968
4584
|
readonly params: readonly ["WFInput"];
|
|
@@ -3998,24 +4614,49 @@ export declare const ACTIONS: {
|
|
|
3998
4614
|
readonly params: readonly ["WFInput"];
|
|
3999
4615
|
readonly output: null;
|
|
4000
4616
|
};
|
|
4617
|
+
readonly "is.workflow.actions.vpn.get": {
|
|
4618
|
+
readonly name: "Get Current VPN";
|
|
4619
|
+
readonly params: readonly [];
|
|
4620
|
+
readonly output: "Current VPN";
|
|
4621
|
+
};
|
|
4622
|
+
readonly "is.workflow.actions.vpn.set": {
|
|
4623
|
+
readonly name: "Set VPN";
|
|
4624
|
+
readonly params: readonly ["WFVPNOperation", "WFOnDemandValue", "WFVPN"];
|
|
4625
|
+
readonly output: null;
|
|
4626
|
+
};
|
|
4001
4627
|
readonly "is.workflow.actions.waittoreturn": {
|
|
4002
4628
|
readonly name: "Wait to Return";
|
|
4003
4629
|
readonly params: readonly [];
|
|
4004
4630
|
readonly output: null;
|
|
4005
4631
|
};
|
|
4632
|
+
readonly "is.workflow.actions.wallpaper.set": {
|
|
4633
|
+
readonly name: "Set Wallpaper Photo";
|
|
4634
|
+
readonly params: readonly ["WFInput", "WFWallpaperLocation", "WFWallpaperShowPreview", "WFWallpaperPerspectiveZoom", "WFSelectedPoster", "WFWallpaperSmartCrop", "WFWallpaperLegibilityBlur"];
|
|
4635
|
+
readonly output: "Wallpaper";
|
|
4636
|
+
};
|
|
4006
4637
|
readonly "is.workflow.actions.watchmedo": {
|
|
4007
4638
|
readonly name: "Watch Me Do";
|
|
4008
4639
|
readonly params: readonly ["WFUserEvent", "WFPlaybackSpeed"];
|
|
4009
4640
|
readonly output: null;
|
|
4010
4641
|
};
|
|
4642
|
+
readonly "is.workflow.actions.weather.currentconditions": {
|
|
4643
|
+
readonly name: "Get Current Weather";
|
|
4644
|
+
readonly params: readonly ["WFWeatherCustomLocation"];
|
|
4645
|
+
readonly output: "Weather Conditions";
|
|
4646
|
+
};
|
|
4647
|
+
readonly "is.workflow.actions.weather.forecast": {
|
|
4648
|
+
readonly name: "Get Weather Forecast";
|
|
4649
|
+
readonly params: readonly ["WFWeatherCustomLocation", "WFWeatherForecastType"];
|
|
4650
|
+
readonly output: "Weather Conditions";
|
|
4651
|
+
};
|
|
4011
4652
|
readonly "is.workflow.actions.wifi.set": {
|
|
4012
4653
|
readonly name: "is.workflow.actions.wifi.set";
|
|
4013
|
-
readonly params: readonly [];
|
|
4654
|
+
readonly params: readonly ["operation", "OnValue", "ShowWhenRun"];
|
|
4014
4655
|
readonly output: null;
|
|
4015
4656
|
};
|
|
4016
4657
|
readonly "is.workflow.actions.wordpress.post": {
|
|
4017
4658
|
readonly name: "Post to WordPress";
|
|
4018
|
-
readonly params: readonly ["Blog", "Title", "Type", "Format", "Status", "Categories", "Tags", "Advanced", "AllowComments", "Slug", "Excerpt", "Date", "Template", "ThumbnailImage", "ShowCustomFields", "CustomFields", "WFInput"
|
|
4659
|
+
readonly params: readonly ["WFAccount", "Blog", "Title", "Type", "Format", "Status", "Categories", "Tags", "Advanced", "AllowComments", "Slug", "Excerpt", "Date", "Template", "ThumbnailImage", "ShowCustomFields", "CustomFields", "WFInput"];
|
|
4019
4660
|
readonly output: "WordPress Post URL";
|
|
4020
4661
|
};
|
|
4021
4662
|
readonly "is.workflow.actions.workout.end": {
|
|
@@ -4064,6 +4705,15 @@ export type ParamTypes = {
|
|
|
4064
4705
|
"com.apple.TVRemoteUIService.WakeAppleTVIntent": {
|
|
4065
4706
|
"ShowWhenRun": BoolValue;
|
|
4066
4707
|
};
|
|
4708
|
+
"com.apple.facetime.facetime": {
|
|
4709
|
+
"IntentAppDefinition": AnyValue;
|
|
4710
|
+
"WFFaceTimeType": EnumValue<"Video" | "Audio">;
|
|
4711
|
+
"WFFaceTimeContact": AnyValue;
|
|
4712
|
+
};
|
|
4713
|
+
"com.apple.mobilephone.call": {
|
|
4714
|
+
"IntentAppDefinition": AnyValue;
|
|
4715
|
+
"WFCallContact": AnyValue;
|
|
4716
|
+
};
|
|
4067
4717
|
"com.apple.mobileslideshow.StreamShareService": {
|
|
4068
4718
|
"ImageInput": PickerValue;
|
|
4069
4719
|
};
|
|
@@ -4097,6 +4747,28 @@ export type ParamTypes = {
|
|
|
4097
4747
|
"is.workflow.actions.addnewcalendar": {
|
|
4098
4748
|
"CalendarName": TextValue;
|
|
4099
4749
|
};
|
|
4750
|
+
"is.workflow.actions.addnewcontact": {
|
|
4751
|
+
"WFContactFirstName": TextValue;
|
|
4752
|
+
"WFContactLastName": TextValue;
|
|
4753
|
+
"WFContactCompany": TextValue;
|
|
4754
|
+
"WFContactPhoto": PickerValue;
|
|
4755
|
+
"WFContactPhoneNumbers": AnyValue;
|
|
4756
|
+
"WFContactEmails": AnyValue;
|
|
4757
|
+
"WFContactNotes": TextValue;
|
|
4758
|
+
"ShowWhenRun": BoolValue;
|
|
4759
|
+
};
|
|
4760
|
+
"is.workflow.actions.addnewevent": {
|
|
4761
|
+
"WFCalendarItemTitle": TextValue;
|
|
4762
|
+
"WFCalendarItemLocation": TextValue;
|
|
4763
|
+
"WFCalendarDescriptor": AnyValue;
|
|
4764
|
+
"WFCalendarItemStartDate": TextValue;
|
|
4765
|
+
"WFCalendarItemEndDate": TextValue;
|
|
4766
|
+
"WFCalendarItemAllDay": BoolValue;
|
|
4767
|
+
"WFAlertTime": EnumValue<"None" | "At time of event" | "5 minutes before" | "15 minutes before" | "30 minutes before" | "1 hour before" | "2 hours before" | "1 day before" | "2 days before" | "1 week before" | "Custom">;
|
|
4768
|
+
"WFAlertCustomTime": TextValue;
|
|
4769
|
+
"WFCalendarItemNotes": TextValue;
|
|
4770
|
+
"ShowWhenRun": BoolValue;
|
|
4771
|
+
};
|
|
4100
4772
|
"is.workflow.actions.addnewreminder": {
|
|
4101
4773
|
"WFCalendarItemTitle": TextValue;
|
|
4102
4774
|
"WFCalendarDescriptor": AnyValue;
|
|
@@ -4122,11 +4794,11 @@ export type ParamTypes = {
|
|
|
4122
4794
|
"WFCity": TextValue;
|
|
4123
4795
|
"WFState": TextValue;
|
|
4124
4796
|
"WFPostalCode": TextValue;
|
|
4125
|
-
"WFCountry":
|
|
4797
|
+
"WFCountry": TextValue;
|
|
4126
4798
|
};
|
|
4127
4799
|
"is.workflow.actions.addtoplaylist": {
|
|
4128
|
-
"WFInput": PickerValue;
|
|
4129
4800
|
"WFPlaylistName": AnyValue;
|
|
4801
|
+
"WFInput": PickerValue;
|
|
4130
4802
|
};
|
|
4131
4803
|
"is.workflow.actions.adjustdate": {
|
|
4132
4804
|
"WFDate": TextValue;
|
|
@@ -4137,19 +4809,50 @@ export type ParamTypes = {
|
|
|
4137
4809
|
"WFInput": PickerValue;
|
|
4138
4810
|
};
|
|
4139
4811
|
"is.workflow.actions.airplanemode.set": {
|
|
4812
|
+
"operation": StringValue;
|
|
4813
|
+
"OnValue": BoolValue;
|
|
4814
|
+
"ShowWhenRun": BoolValue;
|
|
4815
|
+
};
|
|
4816
|
+
"is.workflow.actions.alert": {
|
|
4817
|
+
"WFAlertActionTitle": TextValue;
|
|
4818
|
+
"WFAlertActionMessage": TextValue;
|
|
4819
|
+
"WFAlertActionCancelButtonShown": BoolValue;
|
|
4820
|
+
};
|
|
4821
|
+
"is.workflow.actions.announcenotifications.set": {
|
|
4822
|
+
"operation": StringValue;
|
|
4823
|
+
"OnValue": BoolValue;
|
|
4824
|
+
"ShowWhenRun": BoolValue;
|
|
4825
|
+
};
|
|
4826
|
+
"is.workflow.actions.appearance": {
|
|
4827
|
+
"operation": StringValue;
|
|
4828
|
+
"style": StringValue;
|
|
4140
4829
|
"ShowWhenRun": BoolValue;
|
|
4141
4830
|
};
|
|
4142
|
-
"is.workflow.actions.appearance": {};
|
|
4143
4831
|
"is.workflow.actions.appendvariable": {
|
|
4144
4832
|
"WFVariableName": PlainString;
|
|
4145
4833
|
"WFInput": PickerValue;
|
|
4146
4834
|
};
|
|
4835
|
+
"is.workflow.actions.ask": {
|
|
4836
|
+
"WFAskActionPrompt": TextValue;
|
|
4837
|
+
"WFInputType": StringValue;
|
|
4838
|
+
"WFAskActionDefaultAnswer": TextValue;
|
|
4839
|
+
"WFAskActionDefaultAnswerNumber": NumberValue;
|
|
4840
|
+
"urlAnswer": TextValue;
|
|
4841
|
+
"WFAskActionDefaultAnswerURL": TextValue;
|
|
4842
|
+
"WFAskActionDefaultAnswerDate": TextValue;
|
|
4843
|
+
"WFAskActionDefaultAnswerTime": TextValue;
|
|
4844
|
+
"WFAskActionDefaultAnswerDateAndTime": TextValue;
|
|
4845
|
+
"WFAskActionAllowsDecimalNumbers": BoolValue;
|
|
4846
|
+
"WFAskActionAllowsNegativeNumbers": BoolValue;
|
|
4847
|
+
"WFAllowsMultilineText": BoolValue;
|
|
4848
|
+
"ShowWhenRun": BoolValue;
|
|
4849
|
+
};
|
|
4147
4850
|
"is.workflow.actions.askllm": {
|
|
4148
4851
|
"WFLLMModel": StringValue;
|
|
4149
4852
|
"WFLLMPrompt": TextValue;
|
|
4150
4853
|
"WFAllowWebSearch": BoolValue;
|
|
4854
|
+
"WFGenerativeResultType": StringValue;
|
|
4151
4855
|
"FollowUp": BoolValue;
|
|
4152
|
-
"WFGenerativeResultType": AnyValue;
|
|
4153
4856
|
};
|
|
4154
4857
|
"is.workflow.actions.avairyeditphoto": {
|
|
4155
4858
|
"WFDocument": PickerValue;
|
|
@@ -4160,12 +4863,24 @@ export type ParamTypes = {
|
|
|
4160
4863
|
"WFInput": PickerValue;
|
|
4161
4864
|
};
|
|
4162
4865
|
"is.workflow.actions.bluetooth.set": {
|
|
4866
|
+
"operation": StringValue;
|
|
4867
|
+
"OnValue": BoolValue;
|
|
4163
4868
|
"ShowWhenRun": BoolValue;
|
|
4164
4869
|
};
|
|
4165
4870
|
"is.workflow.actions.calculateexpression": {
|
|
4166
4871
|
"Input": TextValue;
|
|
4167
4872
|
};
|
|
4168
|
-
"is.workflow.actions.cellulardata.set": {
|
|
4873
|
+
"is.workflow.actions.cellulardata.set": {
|
|
4874
|
+
"operation": StringValue;
|
|
4875
|
+
"OnValue": BoolValue;
|
|
4876
|
+
"ShowWhenRun": BoolValue;
|
|
4877
|
+
};
|
|
4878
|
+
"is.workflow.actions.choosefromlist": {
|
|
4879
|
+
"WFInput": PickerValue;
|
|
4880
|
+
"WFChooseFromListActionPrompt": TextValue;
|
|
4881
|
+
"WFChooseFromListActionSelectMultiple": BoolValue;
|
|
4882
|
+
"WFChooseFromListActionSelectAll": BoolValue;
|
|
4883
|
+
};
|
|
4169
4884
|
"is.workflow.actions.choosefrommenu": {
|
|
4170
4885
|
"WFMenuPrompt": TextValue;
|
|
4171
4886
|
"WFMenuItems": AnyValue;
|
|
@@ -4202,15 +4917,37 @@ export type ParamTypes = {
|
|
|
4202
4917
|
"is.workflow.actions.contacts": {
|
|
4203
4918
|
"WFContact": AnyValue;
|
|
4204
4919
|
};
|
|
4920
|
+
"is.workflow.actions.converttimezone": {
|
|
4921
|
+
"Date": TextValue;
|
|
4922
|
+
"SourceTimeZone": AnyValue;
|
|
4923
|
+
"DestinationTimeZone": AnyValue;
|
|
4924
|
+
};
|
|
4925
|
+
"is.workflow.actions.correctspelling": {
|
|
4926
|
+
"text": TextValue;
|
|
4927
|
+
"ShowWhenRun": BoolValue;
|
|
4928
|
+
};
|
|
4929
|
+
"is.workflow.actions.count": {
|
|
4930
|
+
"WFCountType": EnumValue<"Items" | "Characters" | "Words" | "Sentences" | "Lines">;
|
|
4931
|
+
"Input": PickerValue;
|
|
4932
|
+
};
|
|
4205
4933
|
"is.workflow.actions.createplaylist": {
|
|
4206
4934
|
"WFPlaylistName": TextValue;
|
|
4207
4935
|
"WFPlaylistAuthor": TextValue;
|
|
4208
4936
|
"WFPlaylistDescription": TextValue;
|
|
4209
4937
|
"WFPlaylistItems": PickerValue;
|
|
4210
4938
|
};
|
|
4939
|
+
"is.workflow.actions.date": {
|
|
4940
|
+
"WFDateActionMode": StringValue;
|
|
4941
|
+
"WFDateActionDate": TextValue;
|
|
4942
|
+
"WFEventOccurrenceMode": EnumValue<"Next Occurrence" | "Specified Year">;
|
|
4943
|
+
"WFEventOccurrenceSpecifiedYear": StringValue;
|
|
4944
|
+
};
|
|
4211
4945
|
"is.workflow.actions.debug.contentattribution": {
|
|
4212
4946
|
"Input": PickerValue;
|
|
4213
4947
|
};
|
|
4948
|
+
"is.workflow.actions.delay": {
|
|
4949
|
+
"WFDelayTime": NumberValue;
|
|
4950
|
+
};
|
|
4214
4951
|
"is.workflow.actions.deletestoredcontent": {
|
|
4215
4952
|
"WFStoredContentKey": TextValue;
|
|
4216
4953
|
"WFStoredContentGlobalValue": BoolValue;
|
|
@@ -4252,14 +4989,19 @@ export type ParamTypes = {
|
|
|
4252
4989
|
"WFInput": TextValue;
|
|
4253
4990
|
};
|
|
4254
4991
|
"is.workflow.actions.dictatetext": {
|
|
4992
|
+
"WFSpeechLanguage": StringValue;
|
|
4255
4993
|
"WFDictateTextStopListening": EnumValue<"After Pause" | "After Short Pause" | "On Tap">;
|
|
4256
|
-
"WFSpeechLanguage": AnyValue;
|
|
4257
4994
|
};
|
|
4258
4995
|
"is.workflow.actions.dictionary": {
|
|
4259
4996
|
"WFItems": DictionaryValue;
|
|
4260
4997
|
};
|
|
4261
4998
|
"is.workflow.actions.dismisssiri": {};
|
|
4262
|
-
"is.workflow.actions.display.always-on.set": {
|
|
4999
|
+
"is.workflow.actions.display.always-on.set": {
|
|
5000
|
+
"operation": StringValue;
|
|
5001
|
+
"OnValue": BoolValue;
|
|
5002
|
+
"ShowWhenRun": BoolValue;
|
|
5003
|
+
};
|
|
5004
|
+
"is.workflow.actions.displaysleep": {};
|
|
4263
5005
|
"is.workflow.actions.dnd.getfocus": {};
|
|
4264
5006
|
"is.workflow.actions.dnd.set": {
|
|
4265
5007
|
"Operation": EnumValue<"Turn" | "Toggle">;
|
|
@@ -4395,7 +5137,7 @@ export type ParamTypes = {
|
|
|
4395
5137
|
};
|
|
4396
5138
|
"is.workflow.actions.file.label": {
|
|
4397
5139
|
"WFInput": AnyValue;
|
|
4398
|
-
"WFLabelColorNumber":
|
|
5140
|
+
"WFLabelColorNumber": NumberValue;
|
|
4399
5141
|
};
|
|
4400
5142
|
"is.workflow.actions.file.move": {
|
|
4401
5143
|
"WFFile": AnyValue;
|
|
@@ -4522,6 +5264,15 @@ export type ParamTypes = {
|
|
|
4522
5264
|
"WFCompoundType": StringValue;
|
|
4523
5265
|
"WFContentItemInputParameter": StringValue;
|
|
4524
5266
|
};
|
|
5267
|
+
"is.workflow.actions.filter.vpns": {
|
|
5268
|
+
"WFContentItemFilter": FilterTemplateValue;
|
|
5269
|
+
"WFContentItemSortProperty": StringValue;
|
|
5270
|
+
"WFContentItemSortOrder": StringValue;
|
|
5271
|
+
"WFContentItemLimitEnabled": BoolValue;
|
|
5272
|
+
"WFContentItemLimitNumber": NumberValue;
|
|
5273
|
+
"WFCompoundType": StringValue;
|
|
5274
|
+
"WFContentItemInputParameter": StringValue;
|
|
5275
|
+
};
|
|
4525
5276
|
"is.workflow.actions.filter.windows": {
|
|
4526
5277
|
"WFContentItemFilter": FilterTemplateValue;
|
|
4527
5278
|
"WFContentItemSortProperty": StringValue;
|
|
@@ -4533,13 +5284,29 @@ export type ParamTypes = {
|
|
|
4533
5284
|
};
|
|
4534
5285
|
"is.workflow.actions.finder.getselectedfiles": {};
|
|
4535
5286
|
"is.workflow.actions.flashlight": {
|
|
5287
|
+
"operation": StringValue;
|
|
5288
|
+
"state": BoolValue;
|
|
5289
|
+
"WFFlashlightLevel": NumberValue;
|
|
4536
5290
|
"ShowWhenRun": BoolValue;
|
|
4537
5291
|
};
|
|
5292
|
+
"is.workflow.actions.format.date": {
|
|
5293
|
+
"WFDateFormatStyle": EnumValue<"None" | "Short" | "Medium" | "Long" | "Relative" | "RFC 2822" | "ISO 8601" | "Custom">;
|
|
5294
|
+
"WFRelativeDateFormatStyle": EnumValue<"Short" | "Medium" | "Long">;
|
|
5295
|
+
"WFTimeFormatStyle": EnumValue<"None" | "Short" | "Medium" | "Long" | "Relative">;
|
|
5296
|
+
"WFISO8601IncludeTime": BoolValue;
|
|
5297
|
+
"WFDateFormat": TextValue;
|
|
5298
|
+
"WFDate": TextValue;
|
|
5299
|
+
"WFLocale": StringValue;
|
|
5300
|
+
};
|
|
4538
5301
|
"is.workflow.actions.format.filesize": {
|
|
4539
5302
|
"WFFileSizeFormat": EnumValue<"Automatic" | "Bytes" | "KB" | "MB" | "GB" | "TB" | "PB" | "EB" | "ZB" | "YB or Higher">;
|
|
4540
5303
|
"WFFileSizeIncludeUnits": BoolValue;
|
|
4541
5304
|
"WFFileSize": NumberValue;
|
|
4542
5305
|
};
|
|
5306
|
+
"is.workflow.actions.format.number": {
|
|
5307
|
+
"WFNumber": NumberValue;
|
|
5308
|
+
"WFNumberFormatDecimalPlaces": NumberValue;
|
|
5309
|
+
};
|
|
4543
5310
|
"is.workflow.actions.generatebarcode": {
|
|
4544
5311
|
"WFText": TextValue;
|
|
4545
5312
|
"WFQRForegroundColor": AnyValue;
|
|
@@ -4553,10 +5320,17 @@ export type ParamTypes = {
|
|
|
4553
5320
|
"is.workflow.actions.getarticle": {
|
|
4554
5321
|
"WFWebPage": TextValue;
|
|
4555
5322
|
};
|
|
5323
|
+
"is.workflow.actions.getbatterylevel": {
|
|
5324
|
+
"Subject": EnumValue<"Battery Level" | "Is Charging" | "Is Connected to Charger" | "Charge Limit">;
|
|
5325
|
+
};
|
|
4556
5326
|
"is.workflow.actions.getclassaction": {
|
|
4557
5327
|
"Class": TextValue;
|
|
4558
5328
|
"Input": PickerValue;
|
|
4559
5329
|
};
|
|
5330
|
+
"is.workflow.actions.getclipboard": {};
|
|
5331
|
+
"is.workflow.actions.getcurrentapp": {
|
|
5332
|
+
"WFVisibleAppScope": EnumValue<"Current" | "Visible">;
|
|
5333
|
+
};
|
|
4560
5334
|
"is.workflow.actions.getcurrentlocation": {
|
|
4561
5335
|
"Accuracy": StringValue;
|
|
4562
5336
|
};
|
|
@@ -4569,8 +5343,8 @@ export type ParamTypes = {
|
|
|
4569
5343
|
"is.workflow.actions.getdirections": {
|
|
4570
5344
|
"WFLocation": AnyValue;
|
|
4571
5345
|
"WFDestination": AnyValue;
|
|
5346
|
+
"WFGetDirectionsActionApp": StringValue;
|
|
4572
5347
|
"WFGetDirectionsActionMode": StringValue;
|
|
4573
|
-
"WFGetDirectionsActionApp": AnyValue;
|
|
4574
5348
|
};
|
|
4575
5349
|
"is.workflow.actions.getdistance": {
|
|
4576
5350
|
"WFGetDirectionsCustomLocation": AnyValue;
|
|
@@ -4578,8 +5352,8 @@ export type ParamTypes = {
|
|
|
4578
5352
|
"WFGetDirectionsActionMode": EnumValue<"Direct" | "Driving" | "Walking" | "Biking">;
|
|
4579
5353
|
"WFAvoidTolls": BoolValue;
|
|
4580
5354
|
"WFAvoidHighways": BoolValue;
|
|
5355
|
+
"WFDistanceUnit": EnumValue<"Miles" | "Kilometers">;
|
|
4581
5356
|
"Accuracy": StringValue;
|
|
4582
|
-
"WFDistanceUnit": AnyValue;
|
|
4583
5357
|
};
|
|
4584
5358
|
"is.workflow.actions.getepisodesforpodcast": {
|
|
4585
5359
|
"WFInput": AnyValue;
|
|
@@ -4644,12 +5418,15 @@ export type ParamTypes = {
|
|
|
4644
5418
|
"is.workflow.actions.getmyworkflows": {
|
|
4645
5419
|
"Folder": AnyValue;
|
|
4646
5420
|
};
|
|
5421
|
+
"is.workflow.actions.getnameofemoji": {
|
|
5422
|
+
"WFInput": TextValue;
|
|
5423
|
+
};
|
|
4647
5424
|
"is.workflow.actions.getonscreencontent": {};
|
|
4648
5425
|
"is.workflow.actions.getonscreencontext": {
|
|
5426
|
+
"WFOnScreenContextResultType": StringValue;
|
|
4649
5427
|
"WFOnScreenContextScope": EnumValue<"All Visible" | "Focused App Only">;
|
|
4650
5428
|
"WFOnScreenContextLimitEnabled": BoolValue;
|
|
4651
5429
|
"WFOnScreenContextLimit": NumberValue;
|
|
4652
|
-
"WFOnScreenContextResultType": AnyValue;
|
|
4653
5430
|
};
|
|
4654
5431
|
"is.workflow.actions.getparentdirectory": {
|
|
4655
5432
|
"WFInput": AnyValue;
|
|
@@ -4677,6 +5454,11 @@ export type ParamTypes = {
|
|
|
4677
5454
|
"WFGetTextFromPDFPageFooter": TextValue;
|
|
4678
5455
|
"WFCombinePages": BoolValue;
|
|
4679
5456
|
};
|
|
5457
|
+
"is.workflow.actions.gettimebetweendates": {
|
|
5458
|
+
"WFTimeUntilFromDate": TextValue;
|
|
5459
|
+
"WFInput": TextValue;
|
|
5460
|
+
"WFTimeUntilUnit": EnumValue<"Total Time" | "Seconds" | "Minutes" | "Hours" | "Days" | "Weeks" | "Months" | "Years">;
|
|
5461
|
+
};
|
|
4680
5462
|
"is.workflow.actions.gettraveltime": {
|
|
4681
5463
|
"WFGetDirectionsCustomLocation": AnyValue;
|
|
4682
5464
|
"WFDestination": AnyValue;
|
|
@@ -4702,6 +5484,11 @@ export type ParamTypes = {
|
|
|
4702
5484
|
"WFURL": TextValue;
|
|
4703
5485
|
"WFURLComponent": EnumValue<"Scheme" | "User" | "Password" | "Host" | "Port" | "Path" | "Query" | "Fragment">;
|
|
4704
5486
|
};
|
|
5487
|
+
"is.workflow.actions.getvalueforkey": {
|
|
5488
|
+
"WFGetDictionaryValueType": EnumValue<"Value" | "All Keys" | "All Values">;
|
|
5489
|
+
"WFDictionaryKey": TextValue;
|
|
5490
|
+
"WFInput": PickerValue;
|
|
5491
|
+
};
|
|
4705
5492
|
"is.workflow.actions.getvariable": {
|
|
4706
5493
|
"WFVariable": PickerValue;
|
|
4707
5494
|
};
|
|
@@ -4709,10 +5496,10 @@ export type ParamTypes = {
|
|
|
4709
5496
|
"WFInput": TextValue;
|
|
4710
5497
|
};
|
|
4711
5498
|
"is.workflow.actions.getwifi": {
|
|
5499
|
+
"WFNetworkDetailsNetwork": StringValue;
|
|
4712
5500
|
"WFWiFiDetail": EnumValue<"Network Name" | "BSSID" | "Wi-Fi Standard" | "RX Rate" | "TX Rate" | "RSSI" | "Noise" | "Channel Number" | "Hardware MAC Address">;
|
|
4713
5501
|
"WFCellularDetail": EnumValue<"Carrier Name" | "Radio Technology" | "Country Code" | "Is Roaming Abroad" | "Number of Signal Bars">;
|
|
4714
5502
|
"WFEthernetDetail": EnumValue<"Interface Name" | "IPv4 Address" | "IPv6 Address" | "Subnet Mask" | "Router IP" | "Is Connected" | "Link Speed" | "Ethernet Standard" | "Hardware MAC Address">;
|
|
4715
|
-
"WFNetworkDetailsNetwork": AnyValue;
|
|
4716
5503
|
};
|
|
4717
5504
|
"is.workflow.actions.giphy": {
|
|
4718
5505
|
"WFGiphyQuery": TextValue;
|
|
@@ -4764,10 +5551,10 @@ export type ParamTypes = {
|
|
|
4764
5551
|
"WFInput": PickerValue;
|
|
4765
5552
|
};
|
|
4766
5553
|
"is.workflow.actions.image.convert": {
|
|
5554
|
+
"WFImageFormat": StringValue;
|
|
4767
5555
|
"WFImageCompressionQuality": NumberValue;
|
|
4768
5556
|
"WFImagePreserveMetadata": BoolValue;
|
|
4769
5557
|
"WFInput": PickerValue;
|
|
4770
|
-
"WFImageFormat": AnyValue;
|
|
4771
5558
|
};
|
|
4772
5559
|
"is.workflow.actions.image.convert.finder": {
|
|
4773
5560
|
"WFPreserveMetadata": BoolValue;
|
|
@@ -4801,6 +5588,10 @@ export type ParamTypes = {
|
|
|
4801
5588
|
"WFImageResizeLength": NumberValue;
|
|
4802
5589
|
"WFImage": PickerValue;
|
|
4803
5590
|
};
|
|
5591
|
+
"is.workflow.actions.image.rotate": {
|
|
5592
|
+
"WFImageRotateAmount": NumberValue;
|
|
5593
|
+
"WFImage": PickerValue;
|
|
5594
|
+
};
|
|
4804
5595
|
"is.workflow.actions.imgur.upload": {
|
|
4805
5596
|
"WFInput": PickerValue;
|
|
4806
5597
|
"WFImgurAnonymous": BoolValue;
|
|
@@ -4825,6 +5616,10 @@ export type ParamTypes = {
|
|
|
4825
5616
|
"WFAskForType": EnumValue<"Files" | "Text" | "Date" | "Photos" | "Contacts" | "Email Address" | "Music" | "Phone Number">;
|
|
4826
5617
|
"WFPickingMode": StringValue;
|
|
4827
5618
|
"SelectMultiple": BoolValue;
|
|
5619
|
+
"WFDateActionMode": StringValue;
|
|
5620
|
+
"WFDateActionDate": TextValue;
|
|
5621
|
+
"WFEventOccurrenceMode": StringValue;
|
|
5622
|
+
"WFEventOccurrenceSpecifiedYear": StringValue;
|
|
4828
5623
|
"WFPhotoPickerTypes": StringValue;
|
|
4829
5624
|
"WFSelectMultiplePhotos": BoolValue;
|
|
4830
5625
|
"WFSelectMultiple": BoolValue;
|
|
@@ -4838,23 +5633,37 @@ export type ParamTypes = {
|
|
|
4838
5633
|
"WFInstapaperFolder": StringValue;
|
|
4839
5634
|
"WFBookmarkCount": NumberValue;
|
|
4840
5635
|
};
|
|
5636
|
+
"is.workflow.actions.intercom": {
|
|
5637
|
+
"WFHome": AnyValue;
|
|
5638
|
+
"WFInput": TextValue;
|
|
5639
|
+
};
|
|
4841
5640
|
"is.workflow.actions.lightroom.import": {
|
|
4842
5641
|
"applyPreset": BoolValue;
|
|
4843
5642
|
"presetGroup": EnumValue<"B&W" | "Color" | "Creative" | "Curve" | "Grain" | "Sharpening" | "Vignetting">;
|
|
4844
|
-
"WFInput": PickerValue;
|
|
4845
5643
|
"preset": AnyValue;
|
|
5644
|
+
"WFInput": PickerValue;
|
|
4846
5645
|
};
|
|
4847
5646
|
"is.workflow.actions.list": {
|
|
4848
5647
|
"WFItems": AnyValue;
|
|
4849
5648
|
};
|
|
4850
5649
|
"is.workflow.actions.listeningmode.set": {
|
|
4851
5650
|
"WFRoute": AnyValue;
|
|
4852
|
-
"WFListeningMode":
|
|
5651
|
+
"WFListeningMode": StringValue;
|
|
4853
5652
|
};
|
|
4854
5653
|
"is.workflow.actions.location": {
|
|
4855
5654
|
"WFLocation": AnyValue;
|
|
4856
5655
|
};
|
|
4857
|
-
"is.workflow.actions.
|
|
5656
|
+
"is.workflow.actions.lock.app": {
|
|
5657
|
+
"WFLockAppOperation": EnumValue<"Lock" | "Unlock" | "Toggle">;
|
|
5658
|
+
"WFApp": AnyValue;
|
|
5659
|
+
};
|
|
5660
|
+
"is.workflow.actions.lockscreen": {};
|
|
5661
|
+
"is.workflow.actions.logout": {};
|
|
5662
|
+
"is.workflow.actions.lowpowermode.set": {
|
|
5663
|
+
"operation": StringValue;
|
|
5664
|
+
"OnValue": BoolValue;
|
|
5665
|
+
"ShowWhenRun": BoolValue;
|
|
5666
|
+
};
|
|
4858
5667
|
"is.workflow.actions.makediskimage": {
|
|
4859
5668
|
"WFInput": AnyValue;
|
|
4860
5669
|
"VolumeName": TextValue;
|
|
@@ -4873,9 +5682,9 @@ export type ParamTypes = {
|
|
|
4873
5682
|
};
|
|
4874
5683
|
"is.workflow.actions.makeimagefrompdfpage": {
|
|
4875
5684
|
"WFInput": PickerValue;
|
|
5685
|
+
"WFMakeImageFromPDFPageImageFormat": StringValue;
|
|
5686
|
+
"WFMakeImageFromPDFPageColorspace": StringValue;
|
|
4876
5687
|
"WFMakeImageFromPDFPageResolution": NumberValue;
|
|
4877
|
-
"WFMakeImageFromPDFPageImageFormat": AnyValue;
|
|
4878
|
-
"WFMakeImageFromPDFPageColorspace": AnyValue;
|
|
4879
5688
|
};
|
|
4880
5689
|
"is.workflow.actions.makeimagefromrichtext": {
|
|
4881
5690
|
"WFInput": PickerValue;
|
|
@@ -4895,8 +5704,8 @@ export type ParamTypes = {
|
|
|
4895
5704
|
"WFInput": TextValue;
|
|
4896
5705
|
"WFSpeakTextRate": NumberValue;
|
|
4897
5706
|
"WFSpeakTextPitch": NumberValue;
|
|
4898
|
-
"WFSpeakTextLanguage":
|
|
4899
|
-
"WFSpeakTextVoice":
|
|
5707
|
+
"WFSpeakTextLanguage": StringValue;
|
|
5708
|
+
"WFSpeakTextVoice": StringValue;
|
|
4900
5709
|
};
|
|
4901
5710
|
"is.workflow.actions.makevideofromgif": {
|
|
4902
5711
|
"WFMakeVideoFromGIFActionLoopCount": NumberValue;
|
|
@@ -4904,24 +5713,24 @@ export type ParamTypes = {
|
|
|
4904
5713
|
};
|
|
4905
5714
|
"is.workflow.actions.makezip": {
|
|
4906
5715
|
"WFZIPName": TextValue;
|
|
4907
|
-
"WFInput": PickerValue;
|
|
4908
5716
|
"WFArchiveFormat": AnyValue;
|
|
5717
|
+
"WFInput": PickerValue;
|
|
4909
5718
|
};
|
|
4910
5719
|
"is.workflow.actions.math": {
|
|
4911
5720
|
"WFInput": NumberValue;
|
|
4912
|
-
"WFMathOperation": EnumValue<"+" | "-" | "
|
|
4913
|
-
"WFScientificMathOperation": EnumValue<"Modulus" | "x^2" | "x^3" | "x^y" | "e^x" | "10^x" | "ln(x)" | "log(x)" | "
|
|
5721
|
+
"WFMathOperation": EnumValue<"+" | "-" | "×" | "÷" | "…">;
|
|
5722
|
+
"WFScientificMathOperation": EnumValue<"Modulus" | "x^2" | "x^3" | "x^y" | "e^x" | "10^x" | "ln(x)" | "log(x)" | "√x" | "∛x" | "x!" | "sin(x)" | "cos(x)" | "tan(x)" | "abs(x)">;
|
|
4914
5723
|
"WFMathOperand": NumberValue;
|
|
4915
5724
|
"WFScientificMathOperand": NumberValue;
|
|
4916
5725
|
};
|
|
4917
5726
|
"is.workflow.actions.measurement.convert": {
|
|
5727
|
+
"WFMeasurementUnitType": StringValue;
|
|
4918
5728
|
"WFMeasurementUnit": AnyValue;
|
|
4919
5729
|
"WFInput": PickerValue;
|
|
4920
|
-
"WFMeasurementUnitType": AnyValue;
|
|
4921
5730
|
};
|
|
4922
5731
|
"is.workflow.actions.measurement.create": {
|
|
5732
|
+
"WFMeasurementUnitType": StringValue;
|
|
4923
5733
|
"WFMeasurementUnit": QuantityValue;
|
|
4924
|
-
"WFMeasurementUnitType": AnyValue;
|
|
4925
5734
|
};
|
|
4926
5735
|
"is.workflow.actions.mountdiskimage": {
|
|
4927
5736
|
"WFInput": AnyValue;
|
|
@@ -4935,6 +5744,8 @@ export type ParamTypes = {
|
|
|
4935
5744
|
"Display": AnyValue;
|
|
4936
5745
|
};
|
|
4937
5746
|
"is.workflow.actions.nightshift.set": {
|
|
5747
|
+
"operation": StringValue;
|
|
5748
|
+
"OnValue": BoolValue;
|
|
4938
5749
|
"ShowWhenRun": BoolValue;
|
|
4939
5750
|
};
|
|
4940
5751
|
"is.workflow.actions.nothing": {};
|
|
@@ -4962,6 +5773,9 @@ export type ParamTypes = {
|
|
|
4962
5773
|
"WFAppName": TextValue;
|
|
4963
5774
|
"WFInput": AnyValue;
|
|
4964
5775
|
};
|
|
5776
|
+
"is.workflow.actions.openpasswords": {
|
|
5777
|
+
"WFShowPasswordsSearchTerm": TextValue;
|
|
5778
|
+
};
|
|
4965
5779
|
"is.workflow.actions.openurl": {
|
|
4966
5780
|
"WFInput": TextValue;
|
|
4967
5781
|
};
|
|
@@ -4974,7 +5788,11 @@ export type ParamTypes = {
|
|
|
4974
5788
|
"WFXCallbackCustomSuccessURL": TextValue;
|
|
4975
5789
|
"WFXCallbackURL": TextValue;
|
|
4976
5790
|
};
|
|
4977
|
-
"is.workflow.actions.orientationlock.set": {
|
|
5791
|
+
"is.workflow.actions.orientationlock.set": {
|
|
5792
|
+
"operation": StringValue;
|
|
5793
|
+
"OnValue": BoolValue;
|
|
5794
|
+
"ShowWhenRun": BoolValue;
|
|
5795
|
+
};
|
|
4978
5796
|
"is.workflow.actions.output": {
|
|
4979
5797
|
"WFOutput": TextValue;
|
|
4980
5798
|
"WFNoOutputSurfaceBehavior": EnumValue<"Respond" | "Do Nothing" | "Copy to Clipboard">;
|
|
@@ -5020,7 +5838,13 @@ export type ParamTypes = {
|
|
|
5020
5838
|
"WFPlayPauseBehavior": EnumValue<"Play/Pause" | "Play" | "Pause">;
|
|
5021
5839
|
"WFMediaRoute": AnyValue;
|
|
5022
5840
|
};
|
|
5841
|
+
"is.workflow.actions.personalhotspot.password.get": {};
|
|
5842
|
+
"is.workflow.actions.personalhotspot.password.set": {
|
|
5843
|
+
"WFInput": TextValue;
|
|
5844
|
+
};
|
|
5023
5845
|
"is.workflow.actions.personalhotspot.set": {
|
|
5846
|
+
"operation": StringValue;
|
|
5847
|
+
"OnValue": BoolValue;
|
|
5024
5848
|
"ShowWhenRun": BoolValue;
|
|
5025
5849
|
};
|
|
5026
5850
|
"is.workflow.actions.phonenumber": {
|
|
@@ -5048,8 +5872,8 @@ export type ParamTypes = {
|
|
|
5048
5872
|
"WFPlayMusicActionRepeat": EnumValue<"None" | "One" | "All">;
|
|
5049
5873
|
};
|
|
5050
5874
|
"is.workflow.actions.playpodcast": {
|
|
5051
|
-
"WFPodcastPlaybackOrder": EnumValue<"Default" | "Newest First" | "Oldest First">;
|
|
5052
5875
|
"WFPodcastShow": AnyValue;
|
|
5876
|
+
"WFPodcastPlaybackOrder": EnumValue<"Default" | "Newest First" | "Oldest First">;
|
|
5053
5877
|
};
|
|
5054
5878
|
"is.workflow.actions.playsound": {
|
|
5055
5879
|
"WFInput": PickerValue;
|
|
@@ -5067,6 +5891,12 @@ export type ParamTypes = {
|
|
|
5067
5891
|
"is.workflow.actions.podcasts.subscribe": {
|
|
5068
5892
|
"WFInput": TextValue;
|
|
5069
5893
|
};
|
|
5894
|
+
"is.workflow.actions.posters.get": {
|
|
5895
|
+
"WFPosterType": EnumValue<"All" | "Current">;
|
|
5896
|
+
};
|
|
5897
|
+
"is.workflow.actions.posters.switch": {
|
|
5898
|
+
"WFPoster": AnyValue;
|
|
5899
|
+
};
|
|
5070
5900
|
"is.workflow.actions.postonfacebook": {
|
|
5071
5901
|
"FacebookContent": PickerValue;
|
|
5072
5902
|
};
|
|
@@ -5077,7 +5907,10 @@ export type ParamTypes = {
|
|
|
5077
5907
|
"is.workflow.actions.print": {
|
|
5078
5908
|
"WFInput": PickerValue;
|
|
5079
5909
|
};
|
|
5080
|
-
"is.workflow.actions.properties.appearance": {
|
|
5910
|
+
"is.workflow.actions.properties.appearance": {
|
|
5911
|
+
"WFContentItemPropertyName": StringValue;
|
|
5912
|
+
"WFInput": PickerValue;
|
|
5913
|
+
};
|
|
5081
5914
|
"is.workflow.actions.properties.appstore": {
|
|
5082
5915
|
"WFContentItemPropertyName": StringValue;
|
|
5083
5916
|
"WFInput": PickerValue;
|
|
@@ -5123,8 +5956,14 @@ export type ParamTypes = {
|
|
|
5123
5956
|
"WFContentItemPropertyName": StringValue;
|
|
5124
5957
|
"WFInput": PickerValue;
|
|
5125
5958
|
};
|
|
5126
|
-
"is.workflow.actions.properties.parkedcar": {
|
|
5127
|
-
|
|
5959
|
+
"is.workflow.actions.properties.parkedcar": {
|
|
5960
|
+
"WFContentItemPropertyName": StringValue;
|
|
5961
|
+
"WFInput": PickerValue;
|
|
5962
|
+
};
|
|
5963
|
+
"is.workflow.actions.properties.podcast": {
|
|
5964
|
+
"WFContentItemPropertyName": StringValue;
|
|
5965
|
+
"WFInput": PickerValue;
|
|
5966
|
+
};
|
|
5128
5967
|
"is.workflow.actions.properties.podcastshow": {
|
|
5129
5968
|
"WFContentItemPropertyName": StringValue;
|
|
5130
5969
|
"WFInput": PickerValue;
|
|
@@ -5133,15 +5972,30 @@ export type ParamTypes = {
|
|
|
5133
5972
|
"WFContentItemPropertyName": StringValue;
|
|
5134
5973
|
"WFInput": PickerValue;
|
|
5135
5974
|
};
|
|
5136
|
-
"is.workflow.actions.properties.ridestatus": {
|
|
5975
|
+
"is.workflow.actions.properties.ridestatus": {
|
|
5976
|
+
"WFContentItemPropertyName": StringValue;
|
|
5977
|
+
"WFInput": PickerValue;
|
|
5978
|
+
};
|
|
5137
5979
|
"is.workflow.actions.properties.safariwebpage": {
|
|
5138
5980
|
"WFContentItemPropertyName": StringValue;
|
|
5139
5981
|
"WFInput": PickerValue;
|
|
5140
5982
|
};
|
|
5141
|
-
"is.workflow.actions.properties.shazam": {
|
|
5142
|
-
|
|
5143
|
-
|
|
5144
|
-
|
|
5983
|
+
"is.workflow.actions.properties.shazam": {
|
|
5984
|
+
"WFContentItemPropertyName": StringValue;
|
|
5985
|
+
"WFInput": PickerValue;
|
|
5986
|
+
};
|
|
5987
|
+
"is.workflow.actions.properties.trello": {
|
|
5988
|
+
"WFContentItemPropertyName": StringValue;
|
|
5989
|
+
"WFInput": PickerValue;
|
|
5990
|
+
};
|
|
5991
|
+
"is.workflow.actions.properties.ulysses.sheet": {
|
|
5992
|
+
"WFContentItemPropertyName": StringValue;
|
|
5993
|
+
"WFInput": PickerValue;
|
|
5994
|
+
};
|
|
5995
|
+
"is.workflow.actions.properties.weather.conditions": {
|
|
5996
|
+
"WFContentItemPropertyName": StringValue;
|
|
5997
|
+
"WFInput": PickerValue;
|
|
5998
|
+
};
|
|
5145
5999
|
"is.workflow.actions.properties.workflow": {
|
|
5146
6000
|
"WFContentItemPropertyName": StringValue;
|
|
5147
6001
|
"WFInput": PickerValue;
|
|
@@ -5155,6 +6009,9 @@ export type ParamTypes = {
|
|
|
5155
6009
|
"is.workflow.actions.readinglist": {
|
|
5156
6010
|
"WFURL": TextValue;
|
|
5157
6011
|
};
|
|
6012
|
+
"is.workflow.actions.reboot": {
|
|
6013
|
+
"WFShutdownMode": EnumValue<"Shut Down" | "Restart">;
|
|
6014
|
+
};
|
|
5158
6015
|
"is.workflow.actions.recordaudio": {
|
|
5159
6016
|
"WFRecordingCompression": EnumValue<"Normal" | "Very High">;
|
|
5160
6017
|
"WFRecordingStart": EnumValue<"On Tap" | "Immediately">;
|
|
@@ -5169,8 +6026,8 @@ export type ParamTypes = {
|
|
|
5169
6026
|
"WFInputEvents": PickerValue;
|
|
5170
6027
|
};
|
|
5171
6028
|
"is.workflow.actions.removefromalbum": {
|
|
5172
|
-
"WFInput": PickerValue;
|
|
5173
6029
|
"WFRemoveAlbumSelectedGroup": AnyValue;
|
|
6030
|
+
"WFInput": PickerValue;
|
|
5174
6031
|
};
|
|
5175
6032
|
"is.workflow.actions.removereminders": {
|
|
5176
6033
|
"WFInputReminders": PickerValue;
|
|
@@ -5193,9 +6050,9 @@ export type ParamTypes = {
|
|
|
5193
6050
|
"IntentAppDefinition": AnyValue;
|
|
5194
6051
|
"PickupLocation": AnyValue;
|
|
5195
6052
|
"DropOffLocation": AnyValue;
|
|
6053
|
+
"RideOption": AnyValue;
|
|
5196
6054
|
"PaymentMethod": AnyValue;
|
|
5197
6055
|
"PartySize": NumberValue;
|
|
5198
|
-
"RideOption": AnyValue;
|
|
5199
6056
|
};
|
|
5200
6057
|
"is.workflow.actions.round": {
|
|
5201
6058
|
"WFInput": NumberValue;
|
|
@@ -5240,8 +6097,8 @@ export type ParamTypes = {
|
|
|
5240
6097
|
"WFSSHUser": TextValue;
|
|
5241
6098
|
"WFSSHAuthenticationType": EnumValue<"Password" | "SSH Key">;
|
|
5242
6099
|
"WFSSHPassword": TextValue;
|
|
5243
|
-
"WFInput": PickerValue;
|
|
5244
6100
|
"WFSSHKey": AnyValue;
|
|
6101
|
+
"WFInput": PickerValue;
|
|
5245
6102
|
};
|
|
5246
6103
|
"is.workflow.actions.runworkflow": {
|
|
5247
6104
|
"WFWorkflow": AnyValue;
|
|
@@ -5249,40 +6106,40 @@ export type ParamTypes = {
|
|
|
5249
6106
|
};
|
|
5250
6107
|
"is.workflow.actions.safari.geturl": {};
|
|
5251
6108
|
"is.workflow.actions.savetocameraroll": {
|
|
5252
|
-
"WFInput": PickerValue;
|
|
5253
6109
|
"WFCameraRollSelectedGroup": AnyValue;
|
|
6110
|
+
"WFInput": PickerValue;
|
|
5254
6111
|
};
|
|
5255
6112
|
"is.workflow.actions.searchappstore": {
|
|
5256
6113
|
"WFSearchTerm": TextValue;
|
|
5257
6114
|
"WFAttribute": StringValue;
|
|
5258
6115
|
"WFEntity": StringValue;
|
|
5259
|
-
"WFItemLimit": NumberValue;
|
|
5260
6116
|
"WFCountry": AnyValue;
|
|
6117
|
+
"WFItemLimit": NumberValue;
|
|
5261
6118
|
};
|
|
5262
6119
|
"is.workflow.actions.searchitunes": {
|
|
5263
6120
|
"WFSearchTerm": TextValue;
|
|
5264
6121
|
"WFMediaType": StringValue;
|
|
5265
6122
|
"WFAttribute": StringValue;
|
|
5266
6123
|
"WFEntity": StringValue;
|
|
5267
|
-
"WFItemLimit": NumberValue;
|
|
5268
6124
|
"WFCountry": AnyValue;
|
|
6125
|
+
"WFItemLimit": NumberValue;
|
|
5269
6126
|
};
|
|
5270
6127
|
"is.workflow.actions.searchlocalbusinesses": {
|
|
5271
6128
|
"WFInput": AnyValue;
|
|
5272
6129
|
"WFSearchQuery": TextValue;
|
|
6130
|
+
"WFSearchRadius": QuantityValue;
|
|
5273
6131
|
"WFSearchSortOrder": EnumValue<"Relevance" | "Distance">;
|
|
5274
|
-
"WFSearchRadius": AnyValue;
|
|
5275
6132
|
};
|
|
5276
6133
|
"is.workflow.actions.searchmaps": {
|
|
5277
6134
|
"WFInput": AnyValue;
|
|
5278
|
-
"WFSearchMapsActionApp":
|
|
6135
|
+
"WFSearchMapsActionApp": StringValue;
|
|
5279
6136
|
};
|
|
5280
6137
|
"is.workflow.actions.searchpodcasts": {
|
|
5281
6138
|
"WFSearchTerm": TextValue;
|
|
5282
6139
|
"WFAttribute": StringValue;
|
|
5283
6140
|
"WFEntity": StringValue;
|
|
5284
|
-
"WFItemLimit": NumberValue;
|
|
5285
6141
|
"WFCountry": AnyValue;
|
|
6142
|
+
"WFItemLimit": NumberValue;
|
|
5286
6143
|
};
|
|
5287
6144
|
"is.workflow.actions.searchweb": {
|
|
5288
6145
|
"WFSearchWebDestination": EnumValue<"Amazon" | "Bing" | "DuckDuckGo" | "eBay" | "Google" | "Reddit" | "Twitter" | "Yahoo!" | "YouTube">;
|
|
@@ -5303,6 +6160,7 @@ export type ParamTypes = {
|
|
|
5303
6160
|
"WFSelectMultiplePhotos": BoolValue;
|
|
5304
6161
|
};
|
|
5305
6162
|
"is.workflow.actions.sendemail": {
|
|
6163
|
+
"WFEmailAccountActionSelectedAccount": StringValue;
|
|
5306
6164
|
"WFSendEmailActionFrom": TextValue;
|
|
5307
6165
|
"WFSendEmailActionToRecipients": AnyValue;
|
|
5308
6166
|
"WFSendEmailActionCcRecipients": AnyValue;
|
|
@@ -5311,7 +6169,6 @@ export type ParamTypes = {
|
|
|
5311
6169
|
"WFSendEmailActionInputAttachments": TextValue;
|
|
5312
6170
|
"WFSendEmailActionSaveAsDraft": BoolValue;
|
|
5313
6171
|
"WFSendEmailActionShowComposeSheet": BoolValue;
|
|
5314
|
-
"WFEmailAccountActionSelectedAccount": AnyValue;
|
|
5315
6172
|
};
|
|
5316
6173
|
"is.workflow.actions.sendmessage": {
|
|
5317
6174
|
"IntentAppDefinition": AnyValue;
|
|
@@ -5320,9 +6177,18 @@ export type ParamTypes = {
|
|
|
5320
6177
|
"WFSendMessageContent": TextValue;
|
|
5321
6178
|
"WFSendMessagePrefix": TextValue;
|
|
5322
6179
|
};
|
|
6180
|
+
"is.workflow.actions.setairdropreceiving": {
|
|
6181
|
+
"WFAirDropState": StringValue;
|
|
6182
|
+
};
|
|
5323
6183
|
"is.workflow.actions.setbrightness": {
|
|
6184
|
+
"WFBrightness": NumberValue;
|
|
5324
6185
|
"ShowWhenRun": BoolValue;
|
|
5325
6186
|
};
|
|
6187
|
+
"is.workflow.actions.setclipboard": {
|
|
6188
|
+
"WFLocalOnly": BoolValue;
|
|
6189
|
+
"WFExpirationDate": TextValue;
|
|
6190
|
+
"WFInput": PickerValue;
|
|
6191
|
+
};
|
|
5326
6192
|
"is.workflow.actions.setitemname": {
|
|
5327
6193
|
"WFName": TextValue;
|
|
5328
6194
|
"WFDontIncludeFileExtension": BoolValue;
|
|
@@ -5433,6 +6299,9 @@ export type ParamTypes = {
|
|
|
5433
6299
|
"WFBlindSquareSimulation": BoolValue;
|
|
5434
6300
|
"WFInput": AnyValue;
|
|
5435
6301
|
};
|
|
6302
|
+
"is.workflow.actions.showincalendar": {
|
|
6303
|
+
"WFEvent": PickerValue;
|
|
6304
|
+
};
|
|
5436
6305
|
"is.workflow.actions.showinstore": {
|
|
5437
6306
|
"WFProduct": PickerValue;
|
|
5438
6307
|
};
|
|
@@ -5444,6 +6313,8 @@ export type ParamTypes = {
|
|
|
5444
6313
|
"WFURL": TextValue;
|
|
5445
6314
|
};
|
|
5446
6315
|
"is.workflow.actions.silenceunknowncallers.set": {
|
|
6316
|
+
"operation": StringValue;
|
|
6317
|
+
"OnValue": BoolValue;
|
|
5447
6318
|
"ShowWhenRun": BoolValue;
|
|
5448
6319
|
};
|
|
5449
6320
|
"is.workflow.actions.sirikit.donation.handle": {
|
|
@@ -5457,17 +6328,18 @@ export type ParamTypes = {
|
|
|
5457
6328
|
"WFMediaRoute": AnyValue;
|
|
5458
6329
|
};
|
|
5459
6330
|
"is.workflow.actions.slack.send": {
|
|
6331
|
+
"WFAccount": StringValue;
|
|
5460
6332
|
"WFSlackInput": PickerValue;
|
|
5461
|
-
"WFAccount": AnyValue;
|
|
5462
6333
|
"SlackChannel": AnyValue;
|
|
5463
6334
|
};
|
|
6335
|
+
"is.workflow.actions.sleep": {};
|
|
5464
6336
|
"is.workflow.actions.speaktext": {
|
|
5465
6337
|
"WFSpeakTextWait": BoolValue;
|
|
5466
6338
|
"WFSpeakTextRate": NumberValue;
|
|
5467
6339
|
"WFSpeakTextPitch": NumberValue;
|
|
6340
|
+
"WFSpeakTextLanguage": StringValue;
|
|
6341
|
+
"WFSpeakTextVoice": StringValue;
|
|
5468
6342
|
"WFText": TextValue;
|
|
5469
|
-
"WFSpeakTextLanguage": AnyValue;
|
|
5470
|
-
"WFSpeakTextVoice": AnyValue;
|
|
5471
6343
|
};
|
|
5472
6344
|
"is.workflow.actions.splitpdf": {
|
|
5473
6345
|
"WFInput": AnyValue;
|
|
@@ -5475,14 +6347,18 @@ export type ParamTypes = {
|
|
|
5475
6347
|
"is.workflow.actions.splitscreen": {
|
|
5476
6348
|
"WFPrimaryAppIdentifier": AnyValue;
|
|
5477
6349
|
"WFSecondaryAppIdentifier": AnyValue;
|
|
5478
|
-
"WFAppRatio": EnumValue<"
|
|
6350
|
+
"WFAppRatio": EnumValue<"½ + ½" | "⅔ + ⅓">;
|
|
5479
6351
|
};
|
|
5480
6352
|
"is.workflow.actions.spotlightsearch": {
|
|
5481
6353
|
"WFInputText": TextValue;
|
|
6354
|
+
"WFSpotlightSearchResultType": StringValue;
|
|
5482
6355
|
"WFSpotlightSearchLimit": NumberValue;
|
|
5483
|
-
"WFSpotlightSearchResultType": AnyValue;
|
|
5484
6356
|
};
|
|
5485
6357
|
"is.workflow.actions.stagemanager.set": {
|
|
6358
|
+
"operation": StringValue;
|
|
6359
|
+
"state": BoolValue;
|
|
6360
|
+
"showDock": BoolValue;
|
|
6361
|
+
"showRecentApps": BoolValue;
|
|
5486
6362
|
"ShowWhenRun": BoolValue;
|
|
5487
6363
|
};
|
|
5488
6364
|
"is.workflow.actions.startscreensaver": {};
|
|
@@ -5490,11 +6366,45 @@ export type ParamTypes = {
|
|
|
5490
6366
|
"WFStatisticsOperation": EnumValue<"Average" | "Minimum" | "Maximum" | "Sum" | "Median" | "Mode" | "Range" | "Standard Deviation">;
|
|
5491
6367
|
"Input": PickerValue;
|
|
5492
6368
|
};
|
|
6369
|
+
"is.workflow.actions.takephoto": {
|
|
6370
|
+
"WFCameraCaptureShowPreview": BoolValue;
|
|
6371
|
+
"WFPhotoCount": NumberValue;
|
|
6372
|
+
"WFCameraCaptureDevice": EnumValue<"Front" | "Back">;
|
|
6373
|
+
};
|
|
6374
|
+
"is.workflow.actions.takescreenshot": {
|
|
6375
|
+
"WFTakeScreenshotScreenshotType": EnumValue<"Full Screen" | "Interactive">;
|
|
6376
|
+
"WFTakeScreenshotActionInteractiveSelectionType": EnumValue<"Window" | "Custom">;
|
|
6377
|
+
"WFTakeScreenshotMainMonitorOnly": BoolValue;
|
|
6378
|
+
"WFTakeScreenshotIgnoreContextualAssistanceLayers": BoolValue;
|
|
6379
|
+
};
|
|
5493
6380
|
"is.workflow.actions.takevideo": {
|
|
5494
6381
|
"WFCameraCaptureDevice": EnumValue<"Front" | "Back">;
|
|
5495
6382
|
"WFCameraCaptureQuality": EnumValue<"Low" | "Medium" | "High">;
|
|
5496
6383
|
"WFRecordingStart": EnumValue<"On Tap" | "Immediately">;
|
|
5497
6384
|
};
|
|
6385
|
+
"is.workflow.actions.text.changecase": {
|
|
6386
|
+
"text": TextValue;
|
|
6387
|
+
"WFCaseType": StringValue;
|
|
6388
|
+
"ShowWhenRun": BoolValue;
|
|
6389
|
+
};
|
|
6390
|
+
"is.workflow.actions.text.combine": {
|
|
6391
|
+
"text": TextValue;
|
|
6392
|
+
"WFTextSeparator": StringValue;
|
|
6393
|
+
"WFTextCustomSeparator": TextValue;
|
|
6394
|
+
"ShowWhenRun": BoolValue;
|
|
6395
|
+
};
|
|
6396
|
+
"is.workflow.actions.text.match": {
|
|
6397
|
+
"text": TextValue;
|
|
6398
|
+
"WFMatchTextPattern": TextValue;
|
|
6399
|
+
"WFMatchTextCaseSensitive": BoolValue;
|
|
6400
|
+
"ShowWhenRun": BoolValue;
|
|
6401
|
+
};
|
|
6402
|
+
"is.workflow.actions.text.match.getgroup": {
|
|
6403
|
+
"matches": PickerValue;
|
|
6404
|
+
"WFGetGroupType": StringValue;
|
|
6405
|
+
"WFGroupIndex": NumberValue;
|
|
6406
|
+
"ShowWhenRun": BoolValue;
|
|
6407
|
+
};
|
|
5498
6408
|
"is.workflow.actions.text.replace": {
|
|
5499
6409
|
"WFReplaceTextFind": TextValue;
|
|
5500
6410
|
"WFReplaceTextReplace": TextValue;
|
|
@@ -5502,6 +6412,17 @@ export type ParamTypes = {
|
|
|
5502
6412
|
"WFReplaceTextRegularExpression": BoolValue;
|
|
5503
6413
|
"WFInput": TextValue;
|
|
5504
6414
|
};
|
|
6415
|
+
"is.workflow.actions.text.split": {
|
|
6416
|
+
"text": TextValue;
|
|
6417
|
+
"WFTextSeparator": StringValue;
|
|
6418
|
+
"WFTextCustomSeparator": TextValue;
|
|
6419
|
+
"ShowWhenRun": BoolValue;
|
|
6420
|
+
};
|
|
6421
|
+
"is.workflow.actions.text.translate": {
|
|
6422
|
+
"WFSelectedFromLanguage": StringValue;
|
|
6423
|
+
"WFSelectedLanguage": StringValue;
|
|
6424
|
+
"WFInputText": TextValue;
|
|
6425
|
+
};
|
|
5505
6426
|
"is.workflow.actions.text.trimwhitespace": {
|
|
5506
6427
|
"WFInput": TextValue;
|
|
5507
6428
|
};
|
|
@@ -5511,13 +6432,13 @@ export type ParamTypes = {
|
|
|
5511
6432
|
};
|
|
5512
6433
|
"is.workflow.actions.todoist.add": {
|
|
5513
6434
|
"WFTodoistContent": TextValue;
|
|
6435
|
+
"WFTodoistProject": StringValue;
|
|
5514
6436
|
"WFTodoistDueDate": TextValue;
|
|
5515
6437
|
"WFTodoistReminder": TextValue;
|
|
5516
6438
|
"WFTodoistReminderType": EnumValue<"Email" | "Push Notification" | "Text Message">;
|
|
5517
6439
|
"WFTodoistPriority": EnumValue<"4" | "3" | "2" | "1">;
|
|
5518
6440
|
"WFTodoistNotes": TextValue;
|
|
5519
6441
|
"WFTodoistFile": PickerValue;
|
|
5520
|
-
"WFTodoistProject": AnyValue;
|
|
5521
6442
|
};
|
|
5522
6443
|
"is.workflow.actions.trello.add.board": {
|
|
5523
6444
|
"WFTrelloName": TextValue;
|
|
@@ -5525,17 +6446,17 @@ export type ParamTypes = {
|
|
|
5525
6446
|
};
|
|
5526
6447
|
"is.workflow.actions.trello.add.card": {
|
|
5527
6448
|
"WFTrelloName": TextValue;
|
|
6449
|
+
"WFTrelloBoard": AnyValue;
|
|
6450
|
+
"WFTrelloList": AnyValue;
|
|
5528
6451
|
"WFTrelloDueDate": TextValue;
|
|
5529
6452
|
"WFTrelloCardPosition": EnumValue<"Top" | "Bottom">;
|
|
5530
6453
|
"WFTrelloAttachments": PickerValue;
|
|
5531
6454
|
"WFTrelloDescription": TextValue;
|
|
5532
|
-
"WFTrelloBoard": AnyValue;
|
|
5533
|
-
"WFTrelloList": AnyValue;
|
|
5534
6455
|
};
|
|
5535
6456
|
"is.workflow.actions.trello.add.list": {
|
|
5536
6457
|
"WFTrelloName": TextValue;
|
|
5537
|
-
"WFTrelloPosition": EnumValue<"Top" | "Bottom">;
|
|
5538
6458
|
"WFTrelloBoard": AnyValue;
|
|
6459
|
+
"WFTrelloPosition": EnumValue<"Top" | "Bottom">;
|
|
5539
6460
|
};
|
|
5540
6461
|
"is.workflow.actions.trello.get": {
|
|
5541
6462
|
"WFTrelloItemType": EnumValue<"Boards" | "Lists" | "Cards">;
|
|
@@ -5546,10 +6467,14 @@ export type ParamTypes = {
|
|
|
5546
6467
|
"WFInputMedia": PickerValue;
|
|
5547
6468
|
};
|
|
5548
6469
|
"is.workflow.actions.truetone.set": {
|
|
6470
|
+
"operation": StringValue;
|
|
6471
|
+
"OnValue": BoolValue;
|
|
5549
6472
|
"ShowWhenRun": BoolValue;
|
|
5550
6473
|
};
|
|
5551
6474
|
"is.workflow.actions.tumblr.post": {
|
|
5552
6475
|
"WFInput": PickerValue;
|
|
6476
|
+
"WFComposeInApp": BoolValue;
|
|
6477
|
+
"WFBlogName": AnyValue;
|
|
5553
6478
|
"WFPostType": StringValue;
|
|
5554
6479
|
"WFPostState": EnumValue<"Post Now" | "Add to Queue" | "Save as Draft" | "Post Privately">;
|
|
5555
6480
|
"WFPostTitle": TextValue;
|
|
@@ -5557,8 +6482,6 @@ export type ParamTypes = {
|
|
|
5557
6482
|
"WFPostCaption": TextValue;
|
|
5558
6483
|
"WFPostTags": TextValue;
|
|
5559
6484
|
"WFPostDescription": TextValue;
|
|
5560
|
-
"WFComposeInApp": AnyValue;
|
|
5561
|
-
"WFBlogName": AnyValue;
|
|
5562
6485
|
};
|
|
5563
6486
|
"is.workflow.actions.tweet": {
|
|
5564
6487
|
"TweetInput": TextValue;
|
|
@@ -5566,6 +6489,12 @@ export type ParamTypes = {
|
|
|
5566
6489
|
"is.workflow.actions.unzip": {
|
|
5567
6490
|
"WFArchive": PickerValue;
|
|
5568
6491
|
};
|
|
6492
|
+
"is.workflow.actions.url": {
|
|
6493
|
+
"WFURLActionURL": TextValue;
|
|
6494
|
+
};
|
|
6495
|
+
"is.workflow.actions.url.expand": {
|
|
6496
|
+
"URL": TextValue;
|
|
6497
|
+
};
|
|
5569
6498
|
"is.workflow.actions.url.getheaders": {
|
|
5570
6499
|
"WFInput": TextValue;
|
|
5571
6500
|
};
|
|
@@ -5595,13 +6524,40 @@ export type ParamTypes = {
|
|
|
5595
6524
|
"is.workflow.actions.viewresult": {
|
|
5596
6525
|
"WFInput": PickerValue;
|
|
5597
6526
|
};
|
|
6527
|
+
"is.workflow.actions.vpn.get": {};
|
|
6528
|
+
"is.workflow.actions.vpn.set": {
|
|
6529
|
+
"WFVPNOperation": EnumValue<"Connect" | "Disconnect" | "Toggle" | "Set On Demand" | "Toggle On Demand">;
|
|
6530
|
+
"WFOnDemandValue": BoolValue;
|
|
6531
|
+
"WFVPN": AnyValue;
|
|
6532
|
+
};
|
|
5598
6533
|
"is.workflow.actions.waittoreturn": {};
|
|
6534
|
+
"is.workflow.actions.wallpaper.set": {
|
|
6535
|
+
"WFInput": PickerValue;
|
|
6536
|
+
"WFWallpaperLocation": EnumValue<"Lock Screen" | "Home Screen">;
|
|
6537
|
+
"WFWallpaperShowPreview": BoolValue;
|
|
6538
|
+
"WFWallpaperPerspectiveZoom": BoolValue;
|
|
6539
|
+
"WFSelectedPoster": AnyValue;
|
|
6540
|
+
"WFWallpaperSmartCrop": BoolValue;
|
|
6541
|
+
"WFWallpaperLegibilityBlur": BoolValue;
|
|
6542
|
+
};
|
|
5599
6543
|
"is.workflow.actions.watchmedo": {
|
|
5600
6544
|
"WFUserEvent": AnyValue;
|
|
5601
6545
|
"WFPlaybackSpeed": NumberValue;
|
|
5602
6546
|
};
|
|
5603
|
-
"is.workflow.actions.
|
|
6547
|
+
"is.workflow.actions.weather.currentconditions": {
|
|
6548
|
+
"WFWeatherCustomLocation": AnyValue;
|
|
6549
|
+
};
|
|
6550
|
+
"is.workflow.actions.weather.forecast": {
|
|
6551
|
+
"WFWeatherCustomLocation": AnyValue;
|
|
6552
|
+
"WFWeatherForecastType": EnumValue<"Hourly" | "Daily">;
|
|
6553
|
+
};
|
|
6554
|
+
"is.workflow.actions.wifi.set": {
|
|
6555
|
+
"operation": StringValue;
|
|
6556
|
+
"OnValue": BoolValue;
|
|
6557
|
+
"ShowWhenRun": BoolValue;
|
|
6558
|
+
};
|
|
5604
6559
|
"is.workflow.actions.wordpress.post": {
|
|
6560
|
+
"WFAccount": StringValue;
|
|
5605
6561
|
"Blog": StringValue;
|
|
5606
6562
|
"Title": TextValue;
|
|
5607
6563
|
"Type": StringValue;
|
|
@@ -5619,7 +6575,6 @@ export type ParamTypes = {
|
|
|
5619
6575
|
"ShowCustomFields": PlainNumber;
|
|
5620
6576
|
"CustomFields": DictionaryValue;
|
|
5621
6577
|
"WFInput": PickerValue;
|
|
5622
|
-
"WFAccount": AnyValue;
|
|
5623
6578
|
};
|
|
5624
6579
|
"is.workflow.actions.workout.end": {
|
|
5625
6580
|
"IntentAppDefinition": AnyValue;
|