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
4 changes: 2 additions & 2 deletions components/vbout/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/vbout",
"version": "0.0.3",
"version": "0.1.0",
"description": "Pipedream VBOUT Components",
"main": "vbout.app.mjs",
"keywords": [
Expand All @@ -13,7 +13,7 @@
"homepage": "https://pipedream.com/apps/vbout",
"author": "Pipedream <support@pipedream.com> (https://pipedream.com/)",
"dependencies": {
"@pipedream/platform": "^1.6.8",
"@pipedream/platform": "^3.1.1",
"moment": "^2.29.4"
},
"publishConfig": {
Expand Down
4 changes: 2 additions & 2 deletions components/vbout/sources/common/base.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { DEFAULT_POLLING_SOURCE_TIMER_INTERVAL } from "@pipedream/platform";
import moment from "moment";
import vbout from "../../vbout.app.mjs";
import { DEFAULT_POLLING_SOURCE_TIMER_INTERVAL } from "@pipedream/platform";

export default {
props: {
Expand Down Expand Up @@ -46,7 +46,7 @@ export default {
},
},
hooks: {
async activate() {
async deploy() {
const datetimeField = this.getDatetimeField();
let lastDatetime = this._getLastTime();
const items = await this.vbout.fetchItems({
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import vbout from "../../vbout.app.mjs";
import { DEFAULT_POLLING_SOURCE_TIMER_INTERVAL } from "@pipedream/platform";
import vbout from "../../vbout.app.mjs";

export default {
type: "source",
name: "New Contact Property Change",
key: "vbout-new-contact-property-change",
description: "Emit new event for each new property changed in a specific contact. [See docs here](https://developers.vbout.com/docs#emailmarketing_getcontact)",
version: "0.0.3",
version: "0.0.4",
props: {
vbout,
db: "$.service.db",
Expand Down
2 changes: 1 addition & 1 deletion components/vbout/sources/new-contact/new-contact.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default {
name: "New Contact",
key: "vbout-new-contact",
description: "Emit new event for each new contact. [See docs here](https://developers.vbout.com/docs#emailmarketing_getcontacts)",
version: "0.0.3",
version: "0.0.4",
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 Email Campaign",
key: "vbout-new-email-campaign",
description: "Emit new event for each new email campaign. [See docs here](https://developers.vbout.com/docs#emailmarketing_campaigns)",
version: "0.0.3",
version: "0.0.4",
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 Social Media Message",
key: "vbout-new-social-media-message",
description: "Emit new event for each new social media message. [See docs here](https://api.vbout.com/1/socialmedia/stats)",
version: "0.0.3",
version: "0.0.4",
dedupe: "unique",
props: {
...common.props,
Expand Down
4 changes: 2 additions & 2 deletions components/visitor_queue/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/visitor_queue",
"version": "0.0.4",
"version": "0.1.0",
"description": "Pipedream Visitor Queue Components",
"main": "visitor_queue.app.mjs",
"keywords": [
Expand All @@ -13,7 +13,7 @@
"homepage": "https://pipedream.com/apps/visitor-queue",
"author": "Pipedream <support@pipedream.com> (https://pipedream.com/)",
"dependencies": {
"@pipedream/platform": "^1.6.8",
"@pipedream/platform": "^3.1.1",
"moment": "^2.29.4"
},
"publishConfig": {
Expand Down
6 changes: 3 additions & 3 deletions components/visitor_queue/sources/new-lead/new-lead.mjs
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { DEFAULT_POLLING_SOURCE_TIMER_INTERVAL } from "@pipedream/platform";
import moment from "moment";
import visitor_queue from "../../visitor_queue.app.mjs";
import { DEFAULT_POLLING_SOURCE_TIMER_INTERVAL } from "@pipedream/platform";

export default {
key: "visitor_queue-new-lead",
name: "New Lead",
description: "Emit new event when a new Waiver sign is received. [See docs here](https://docs.visitorqueue.com/#4f021159-baae-e19d-bb7f-91a915e5b4ea)",
version: "0.0.3",
version: "0.0.4",
dedupe: "unique",
type: "source",
props: {
Expand Down Expand Up @@ -60,7 +60,7 @@ export default {
},
},
hooks: {
async activate() {
async deploy() {
const lastTime = this._getLastTime();
const leads = await this.visitor_queue.listLeads({
params: {
Expand Down
8 changes: 4 additions & 4 deletions pnpm-lock.yaml

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

Loading