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
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default {
name: "Execute Query",
description: "Executes a SQL query and returns the results. [See the documentation](https://learn.microsoft.com/en-us/sql/t-sql/queries/select-transact-sql?view=azuresqldb-current)",
type: "action",
version: "0.0.4",
version: "0.0.5",
props: {
app,
query: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default {
name: "Execute SQL Query",
description: "Execute a custom SQL query. See [our docs](https://pipedream.com/docs/databases/working-with-sql) to learn more about working with SQL in Pipedream.",
type: "action",
version: "0.0.3",
version: "0.0.4",
props: {
app,
// eslint-disable-next-line pipedream/props-description
Expand Down
2 changes: 1 addition & 1 deletion components/azure_sql/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: "azure_sql-insert-row",
name: "Insert Row",
description: "Inserts a new row in a table. [See the documentation](https://learn.microsoft.com/en-us/sql/t-sql/statements/insert-transact-sql?view=azuresqldb-current)",
version: "0.0.4",
version: "0.0.5",
type: "action",
props: {
app,
Expand Down
1 change: 1 addition & 0 deletions components/azure_sql/azure_sql.app.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ export default {
options: {
encrypt: true,
port: Number(port),
requestTimeout: 60000,
},
};
},
Expand Down
2 changes: 1 addition & 1 deletion components/azure_sql/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/azure_sql",
"version": "0.1.3",
"version": "0.1.4",
"description": "Pipedream Microsoft Azure SQL Database Components",
"main": "azure_sql.app.mjs",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion components/azure_sql/sources/new-column/new-column.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default {
name: "New Column",
description: "Triggers when a new column is added to a table.",
type: "source",
version: "0.0.4",
version: "0.0.5",
dedupe: "unique",
props: {
...common.props,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default {
name: "New or Updated Row",
description: "Triggers when a new row is added or an existing row is updated.",
type: "source",
version: "0.0.4",
version: "0.0.5",
dedupe: "unique",
props: {
...common.props,
Expand Down
Loading