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/smartsuite/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/smartsuite",
"version": "0.1.0",
"version": "0.1.1",
"description": "Pipedream SmartSuite Components",
"main": "smartsuite.app.mjs",
"keywords": [
Expand Down
8 changes: 8 additions & 0 deletions components/smartsuite/sources/common/base.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ export default {
smartsuite,
db: "$.service.db",
http: "$.interface.http",
timer: {
label: "Webhook renewal schedule",
description: "The SmartSuite API requires occasional renewal of webhooks. **This runs in the background, so you should not need to modify this schedule**.",
type: "$.interface.timer",
static: {
intervalSeconds: 24 * 60 * 60, // once per day
},
},
solutionId: {
propDefinition: [
smartsuite,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default {
key: "smartsuite-new-record-created-instant",
name: "New Record Created (Instant)",
description: "Emit new event when a new record is created",
version: "0.0.1",
version: "0.0.2",
type: "source",
dedupe: "unique",
methods: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default {
key: "smartsuite-record-updated-instant",
name: "Record Updated (Instant)",
description: "Emit new event when an existing record is updated",
version: "0.0.1",
version: "0.0.2",
type: "source",
dedupe: "unique",
methods: {
Expand Down
Loading