Skip to content

Commit 6856cc4

Browse files
fix key
1 parent 11c813c commit 6856cc4

File tree

22 files changed

+22
-22
lines changed

22 files changed

+22
-22
lines changed

components/pipedream_utils/actions/add-subtract-time/add-subtract-time.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export default {
1414
...commonDateTime,
1515
name: "Formatting - [Date/Time] Add/Subtract Time",
1616
description: "Add or subtract time from a given input",
17-
key: "formatting-add-subtract-time",
17+
key: "pipedream_utils-add-subtract-time",
1818
version: "0.0.5",
1919
type: "action",
2020
props: {

components/pipedream_utils/actions/compare-dates/compare-dates.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
...commonDateTime,
66
name: "Formatting - [Date/Time] Compare Dates",
77
description: "Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.",
8-
key: "formatting-compare-dates",
8+
key: "pipedream_utils-compare-dates",
99
version: "0.0.5",
1010
type: "action",
1111
props: {

components/pipedream_utils/actions/convert-html-to-markdown/convert-html-to-markdown.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import pipedream_utils from "../../pipedream_utils.app.mjs";
44
export default {
55
name: "Formatting - [Text] Convert HTML to Markdown",
66
description: "Convert valid HTML to Markdown text",
7-
key: "formatting-convert-html-to-markdown",
7+
key: "pipedream_utils-convert-html-to-markdown",
88
version: "0.0.6",
99
type: "action",
1010
props: {

components/pipedream_utils/actions/convert-html-to-text/convert-html-to-text.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import pipedream_utils from "../../pipedream_utils.app.mjs";
33
export default {
44
name: "Formatting - [Text] Convert HTML to text",
55
description: "Convert valid HTML to text",
6-
key: "formatting-convert-html-to-text",
6+
key: "pipedream_utils-convert-html-to-text",
77
version: "0.0.4",
88
type: "action",
99
props: {

components/pipedream_utils/actions/convert-json-to-string/convert-json-to-string.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import pipedream_utils from "../../pipedream_utils.app.mjs";
22
export default {
33
name: "Formatting - [Data] Convert JSON to String",
44
description: "Convert an object to a JSON format string",
5-
key: "formatting-convert-json-to-string",
5+
key: "pipedream_utils-convert-json-to-string",
66
version: "0.0.5",
77
type: "action",
88
props: {

components/pipedream_utils/actions/convert-markdown-to-html/convert-markdown-to-html.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import pipedream_utils from "../../pipedream_utils.app.mjs";
44
export default {
55
name: "Formatting - [Text] Convert Markdown to HTML",
66
description: "Convert Markdown text to HTML",
7-
key: "formatting-convert-markdown-to-html",
7+
key: "pipedream_utils-convert-markdown-to-html",
88
version: "0.0.6",
99
type: "action",
1010
props: {

components/pipedream_utils/actions/date-time-format/date-time-format.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default {
77
...commonDateTime,
88
name: "Formatting - [Date/Time] Format",
99
description: "Format a date string to another date string. For more examples on formatting, see the [Sugar Date Format](https://sugarjs.com/dates/#/Formatting) documentation.",
10-
key: "formatting-date-time-format",
10+
key: "pipedream_utils-date-time-format",
1111
version: "0.0.6",
1212
type: "action",
1313
props: {

components/pipedream_utils/actions/extract-by-regular-expression/extract-by-regular-expression.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import pipedream_utils from "../../pipedream_utils.app.mjs";
33
export default {
44
name: "Formatting - [Text] Extract by Regular Expression",
55
description: "Find a match for a regular expression pattern. Returns all matched groups with start and end position.",
6-
key: "formatting-extract-by-regular-expression",
6+
key: "pipedream_utils-extract-by-regular-expression",
77
version: "0.0.5",
88
type: "action",
99
props: {

components/pipedream_utils/actions/extract-email-address/extract-email-address.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ export default {
33
...commonExtractText,
44
name: "Formatting - [Text] Extract Email Address",
55
description: "Find an email address out of a text field. Finds the first email address only.",
6-
key: "formatting-extract-email-address",
6+
key: "pipedream_utils-extract-email-address",
77
version: "0.0.6",
88
type: "action",
99
props: {

components/pipedream_utils/actions/extract-number/extract-number.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ export default {
33
...commonExtractText,
44
name: "Formatting - [Text] Extract Number",
55
description: "Find a number out of a text field. Finds the first number only.",
6-
key: "formatting-extract-number",
6+
key: "pipedream_utils-extract-number",
77
version: "0.0.5",
88
type: "action",
99
props: {

0 commit comments

Comments
 (0)