Skip to content

Neon PostgreSQL - New Components #16685

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 14 commits into from
May 20, 2025
Merged
Prev Previous commit
Next Next commit
fix keys
  • Loading branch information
michelle0927 committed May 15, 2025
commit ea358dfe1cc1b0297eb8abaa35e08e37363acbe6
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import neon from "../../neon_postgres.app.mjs";

export default {
name: "Delete Row(s)",
key: "neon_api_keys-delete-rows",
key: "neon_postgres-delete-rows",
description: "Deletes a row or rows from a table. [See the documentation](https://node-postgres.com/features/queries)",
version: "0.0.1",
type: "action",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import neon from "../../neon_postgres.app.mjs";

export default {
key: "neon_api_keys-execute-custom-query",
key: "neon_postgres-execute-custom-query",
name: "Execute SQL Query",
description: "Execute a custom PostgreSQL query. See [our docs](https://pipedream.com/docs/databases/working-with-sql) to learn more about working with SQL in Pipedream.",
version: "0.0.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import neon from "../../neon_postgres.app.mjs";

export default {
name: "Find Row With Custom Query",
key: "neon_api_keys-find-row-custom-query",
key: "neon_postgres-find-row-custom-query",
description: "Finds a row in a table via a custom query. [See the documentation](https://node-postgres.com/features/queries)",
version: "0.0.1",
type: "action",
Expand Down
2 changes: 1 addition & 1 deletion components/neon_postgres/actions/find-row/find-row.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import neon from "../../neon_postgres.app.mjs";

export default {
name: "Find Row",
key: "neon_api_keys-find-row",
key: "neon_postgres-find-row",
description: "Finds a row in a table via a lookup column. [See the documentation](https://node-postgres.com/features/queries)",
version: "0.0.1",
type: "action",
Expand Down
2 changes: 1 addition & 1 deletion components/neon_postgres/actions/insert-row/insert-row.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import neon from "../../neon_postgres.app.mjs";

export default {
name: "Insert Row",
key: "neon_api_keys-insert-row",
key: "neon_postgres-insert-row",
description: "Adds a new row. [See the documentation](https://node-postgres.com/features/queries)",
version: "0.0.1",
type: "action",
Expand Down
2 changes: 1 addition & 1 deletion components/neon_postgres/actions/update-row/update-row.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import neon from "../../neon_postgres.app.mjs";

export default {
name: "Update Row",
key: "neon_api_keys-update-row",
key: "neon_postgres-update-row",
description: "Updates an existing row. [See the documentation](https://node-postgres.com/features/queries)",
version: "0.0.1",
type: "action",
Expand Down
2 changes: 1 addition & 1 deletion components/neon_postgres/sources/new-column/new-column.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import common from "../common/common.mjs";
export default {
...common,
name: "New Column",
key: "neon_api_keys-new-column",
key: "neon_postgres-new-column",
description: "Emit new event when a new column is added to a table. [See the documentation](https://node-postgres.com/features/queries)",
version: "0.0.1",
type: "source",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import common from "../common/common.mjs";
export default {
...common,
name: "New or Updated Row",
key: "neon_api_keys-new-or-updated-row",
key: "neon_postgres-new-or-updated-row",
description: "Emit new event when a row is added or modified. [See the documentation](https://node-postgres.com/features/queries)",
version: "0.0.1",
type: "source",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import common from "../common/common.mjs";
export default {
...common,
name: "New Row Custom Query",
key: "neon_api_keys-new-row-custom-query",
key: "neon_postgres-new-row-custom-query",
description: "Emit new event when new rows are returned from a custom query that you provide. [See the documentation](https://node-postgres.com/features/queries)",
version: "0.0.1",
type: "source",
Expand Down
2 changes: 1 addition & 1 deletion components/neon_postgres/sources/new-table/new-table.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import common from "../common/common.mjs";
export default {
...common,
name: "New Table",
key: "neon_api_keys-new-table",
key: "neon_postgres-new-table",
description: "Emit new event when a new table is added to the database. [See the documentation](https://node-postgres.com/features/queries)",
version: "0.0.1",
type: "source",
Expand Down
Loading