File tree Expand file tree Collapse file tree 3 files changed +6
-7
lines changed Expand file tree Collapse file tree 3 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ const resourceLocatorProperty: INodeProperties = {
29
29
properties : {
30
30
// https://console.apify.com/actors/AtBpiepuIUNs2k2ku/input
31
31
// https://console.apify.com/actors/AtBpiepuIUNs2k2ku
32
- regex : 'https://console.apify.com/actors/([a-zA-Z0-9]+)(/input)? ' ,
32
+ regex : 'https://console.apify.com/actors/([a-zA-Z0-9]+).* ' ,
33
33
errorMessage : 'Not a valid Actor URL' ,
34
34
} ,
35
35
} ,
@@ -38,7 +38,7 @@ const resourceLocatorProperty: INodeProperties = {
38
38
type : 'regex' ,
39
39
// https://console.apify.com/actors/AtBpiepuIUNs2k2ku/input -> AtBpiepuIUNs2k2ku
40
40
// https://console.apify.com/actors/AtBpiepuIUNs2k2ku -> AtBpiepuIUNs2k2ku
41
- regex : `https://console.apify.com/actors/([a-zA-Z0-9]+)` ,
41
+ regex : `https://console.apify.com/actors/([a-zA-Z0-9]+).* ` ,
42
42
} ,
43
43
} ,
44
44
{
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ const resourceLocatorProperty: INodeProperties = {
29
29
properties : {
30
30
// https://console.apify.com/actors/tasks/WAtmhr6rhfBnwqKDY/input
31
31
// https://console.apify.com/actors/tasks/WAtmhr6rhfBnwqKDY
32
- regex : 'https://console.apify.com/actors/tasks/([a-zA-Z0-9]+)(/input)? ' ,
32
+ regex : 'https://console.apify.com/actors/tasks/([a-zA-Z0-9]+).* ' ,
33
33
errorMessage : 'Not a valid Apify Actor Task URL' ,
34
34
} ,
35
35
} ,
@@ -38,7 +38,7 @@ const resourceLocatorProperty: INodeProperties = {
38
38
type : 'regex' ,
39
39
// https://console.apify.com/actors/tasks/WAtmhr6rhfBnwqKDY/input -> WAtmhr6rhfBnwqKDY
40
40
// https://console.apify.com/actors/tasks/WAtmhr6rhfBnwqKDY -> WAtmhr6rhfBnwqKDY
41
- regex : 'https://console.apify.com/actors/tasks/([a-zA-Z0-9]+)' ,
41
+ regex : 'https://console.apify.com/actors/tasks/([a-zA-Z0-9]+).* ' ,
42
42
} ,
43
43
} ,
44
44
{
Original file line number Diff line number Diff line change @@ -28,16 +28,15 @@ const resourceLocatorProperty: INodeProperties = {
28
28
type : 'regex' ,
29
29
properties : {
30
30
// https://console.apify.com/actors/runs/RDfcScrqIYHW0jfNF#output
31
- regex :
32
- 'https://console.apify.com/actors(/[a-zA-Z0-9]+)?/runs/([a-zA-Z0-9]+)(#(output|log))?' ,
31
+ regex : 'https://console.apify.com/actors(/[a-zA-Z0-9]+)?/runs/([a-zA-Z0-9]+).*' ,
33
32
errorMessage : 'Not a valid Apify Actor Run URL' ,
34
33
} ,
35
34
} ,
36
35
] ,
37
36
extractValue : {
38
37
type : 'regex' ,
39
38
// https://console.apify.com/actors/runs/RDfcScrqIYHW0jfNF#output -> RDfcScrqIYHW0jfNF
40
- regex : 'https://console.apify.com/actors(?:/[a-zA-Z0-9]+)?/runs/([a-zA-Z0-9]+)' ,
39
+ regex : 'https://console.apify.com/actors(?:/[a-zA-Z0-9]+)?/runs/([a-zA-Z0-9]+).* ' ,
41
40
} ,
42
41
} ,
43
42
{
You can’t perform that action at this time.
0 commit comments