Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion components/supabase/actions/delete-row/delete-row.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default {
key: "supabase-delete-row",
name: "Delete Row",
type: "action",
version: "0.1.1",
version: "0.1.2",
description: "Deletes row(s) in a database. [See the docs here](https://supabase.com/docs/reference/javascript/delete)",
props: {
supabase,
Expand Down
2 changes: 1 addition & 1 deletion components/supabase/actions/insert-row/insert-row.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default {
key: "supabase-insert-row",
name: "Insert Row",
type: "action",
version: "0.1.1",
version: "0.1.2",
description: "Inserts a new row into a database. [See the docs here](https://supabase.com/docs/reference/javascript/insert)",
props: {
supabase,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default {
key: "supabase-remote-procedure-call",
name: "Remote Procedure Call",
type: "action",
version: "0.1.1",
version: "0.1.2",
description: "Call a Postgres function in a database. [See the docs here](https://supabase.com/docs/reference/javascript/rpc)",
props: {
supabase,
Expand Down
2 changes: 1 addition & 1 deletion components/supabase/actions/select-row/select-row.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default {
key: "supabase-select-row",
name: "Select Row",
type: "action",
version: "0.1.1",
version: "0.1.2",
description: "Selects row(s) in a database. [See the docs here](https://supabase.com/docs/reference/javascript/select)",
props: {
supabase,
Expand Down
2 changes: 1 addition & 1 deletion components/supabase/actions/update-row/update-row.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default {
key: "supabase-update-row",
name: "Update Row",
type: "action",
version: "0.1.1",
version: "0.1.2",
description: "Updates row(s) in a database. [See the docs here](https://supabase.com/docs/reference/javascript/update)",
props: {
supabase,
Expand Down
2 changes: 1 addition & 1 deletion components/supabase/actions/upsert-row/upsert-row.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default {
key: "supabase-upsert-row",
name: "Upsert Row",
type: "action",
version: "0.1.1",
version: "0.1.2",
description: "Updates a row in a database or inserts new row if not found. [See the docs here](https://supabase.com/docs/reference/javascript/upsert)",
props: {
supabase,
Expand Down
4 changes: 2 additions & 2 deletions components/supabase/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/supabase",
"version": "0.2.1",
"version": "0.2.2",
"description": "Pipedream Supabase Components",
"main": "supabase.app.mjs",
"keywords": [
Expand All @@ -14,6 +14,6 @@
},
"dependencies": {
"@pipedream/platform": "^1.2.1",
"@supabase/supabase-js": "^2.39.0"
"@supabase/supabase-js": "^2.45.6"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export default {
key: "supabase-new-row-added",
name: "New Row Added",
description: "Emit new event for every new row added in a table. [See documentation here](https://supabase.com/docs/reference/javascript/select)",
version: "0.0.3",
version: "0.0.4",
type: "source",
props: {
...base.props,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default {
key: "supabase-new-webhook-event",
name: "New Webhook Event (Instant)",
description: "Emit new event for every `insert`, `update`, or `delete` operation in a table. This source requires user configuration using the Supabase website. More information in the README. [Also see documentation here](https://supabase.com/docs/guides/database/webhooks#creating-a-webhook)",
version: "0.0.4",
version: "0.0.5",
type: "source",
props: {
...base.props,
Expand Down
2 changes: 1 addition & 1 deletion components/supabase/supabase.app.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { createClient } from "@supabase/supabase-js@2.39.8";
import { createClient } from "@supabase/supabase-js";
import constants from "./common/constants.mjs";

export default {
Expand Down
95 changes: 57 additions & 38 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading