Skip to content

Commit e43fb7a

Browse files
feat(quick-actions): add quick actions
feat(quick-actions): add quick actions
2 parents 88bc262 + b219736 commit e43fb7a

17 files changed

+23
-18
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ The Decodo node has been developed and tested with:
174174
## Resources
175175

176176
- [n8n community nodes documentation](https://docs.n8n.io/integrations/#community-nodes)
177-
- [Decodo Scraper API documentation](https://help.decodo.com/docs/web-scraping-api-introduction)
177+
- [Decodo's Web Scraping API documentation](https://help.decodo.com/docs/web-scraping-api-introduction)
178178

179179
## Further reading
180180

nodes/Decodo/Decodo.node.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export class Decodo implements INodeType {
1919
name: 'decodo',
2020
group: ['transform'],
2121
version: 1,
22-
description: "Decodo's Scraper API",
22+
description: "Decodo's Web Scraping API",
2323
icon: 'file:decodo.svg',
2424
defaults: {
2525
name: Decodo.NAME,

nodes/Decodo/properties/geo.property.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ export class GeoProperty {
1010
type: 'string',
1111
default: '',
1212
required: false,
13-
displayOptions: { show: { target: GEO_TARGETS } },
13+
displayOptions: { show: { operation: GEO_TARGETS } },
1414
} satisfies INodeProperties;
1515
}

nodes/Decodo/properties/headless.property.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ export class HeadlessProperty {
99
type: 'boolean',
1010
default: true,
1111
required: true,
12-
displayOptions: { show: { target: HEADLESS_TARGETS } },
12+
displayOptions: { show: { operation: HEADLESS_TARGETS } },
1313
} satisfies INodeProperties;
1414
}

nodes/Decodo/properties/language-code.property.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ export class LanguageCodeProperty {
1010
type: 'string',
1111
default: '',
1212
required: true,
13-
displayOptions: { show: { target: [TARGET.YOUTUBE_TRANSCRIPT] } },
13+
displayOptions: { show: { operation: [TARGET.YOUTUBE_TRANSCRIPT] } },
1414
} satisfies INodeProperties;
1515
}

nodes/Decodo/properties/limit.property.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export class LimitProperty {
1414
maxValue: 100,
1515
},
1616
displayOptions: {
17-
show: { target: [TARGET.GOOGLE_SEARCH] },
17+
show: { operation: [TARGET.GOOGLE_SEARCH] },
1818
},
1919
} satisfies INodeProperties;
2020
}

nodes/Decodo/properties/locale.property.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export class LocaleProperty {
1111
default: '',
1212
required: false,
1313
displayOptions: {
14-
show: { target: LOCALE_TARGETS },
14+
show: { operation: LOCALE_TARGETS },
1515
},
1616
} satisfies INodeProperties;
1717
}

nodes/Decodo/properties/parse.property.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export class ParseProperty {
1111
default: true,
1212
required: false,
1313
displayOptions: {
14-
show: { target: PARSE_TARGETS },
14+
show: { operation: PARSE_TARGETS },
1515
},
1616
} satisfies INodeProperties;
1717
}

nodes/Decodo/properties/query.property.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ export class QueryProperty {
99
type: 'string',
1010
default: '',
1111
required: true,
12-
displayOptions: { show: { target: QUERY_TARGETS } },
12+
displayOptions: { show: { operation: QUERY_TARGETS } },
1313
} satisfies INodeProperties;
1414
}

nodes/Decodo/properties/reddit-sort.property.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ export class RedditSortProperty {
1717
{ name: 'Rising', value: 'rising' },
1818
{ name: 'Top', value: 'top' },
1919
],
20-
displayOptions: { show: { target: [TARGET.REDDIT_SUBDREDDIT] } },
20+
displayOptions: { show: { operation: [TARGET.REDDIT_SUBDREDDIT] } },
2121
} satisfies INodeProperties;
2222
}

0 commit comments

Comments
 (0)