Skip to content

Commit 48aa81a

Browse files
committed
fix sources
1 parent c7bc976 commit 48aa81a

File tree

6 files changed

+19
-17
lines changed

6 files changed

+19
-17
lines changed

components/microsoft_outlook_calendar/package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
"access": "public"
1616
},
1717
"dependencies": {
18+
"@pipedream/microsoft_outlook": "^1.7.3",
19+
"@pipedream/pipedream": "^0.4.2",
1820
"@pipedream/platform": "^3.0.3"
1921
}
2022
}

components/microsoft_outlook_calendar/sources/common.mjs

Lines changed: 0 additions & 10 deletions
This file was deleted.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import microsoftOutlook from "../../microsoft_outlook_calendar.app.mjs";
2+
import common from "@pipedream/microsoft_outlook/sources/common/common.mjs";
3+
4+
export default {
5+
...common,
6+
props: {
7+
...common.props,
8+
microsoftOutlook,
9+
},
10+
};

components/microsoft_outlook_calendar/sources/new-calendar-event/new-calendar-event.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
import common from "../common.mjs";
1+
import common from "../common/common.mjs";
22

33
export default {
44
...common,
55
key: "microsoft_outlook_calendar-new-calendar-event",
66
name: "New Calendar Event (Instant)",
77
description: "Emit new event when a new Calendar event is created",
8-
version: "0.0.7",
8+
version: "0.0.8",
99
type: "source",
1010
hooks: {
1111
...common.hooks,

components/microsoft_outlook_calendar/sources/new-upcoming-event/new-upcoming-event.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
import common from "../common.mjs";
2-
import taskScheduler from "../../../pipedream/sources/new-scheduled-tasks/new-scheduled-tasks.mjs";
1+
import common from "../common/common.mjs";
2+
import taskScheduler from "@pipedream/pipedream/sources/new-scheduled-tasks/new-scheduled-tasks.mjs";
33

44
export default {
55
...common,
66
key: "microsoft_outlook_calendar-new-upcoming-event",
77
name: "New Upcoming Calendar Event",
88
description: "Emit new event when a Calendar event is upcoming, this source is using `reminderMinutesBeforeStart` property of the event to determine the time it should emit.",
9-
version: "0.0.3",
9+
version: "0.0.4",
1010
type: "source",
1111
props: {
1212
...common.props,

components/microsoft_outlook_calendar/sources/updated-calendar-event/updated-calendar-event.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
import common from "../common.mjs";
1+
import common from "../common/common.mjs";
22

33
export default {
44
...common,
55
key: "microsoft_outlook_calendar-updated-calendar-event",
66
name: "New Calendar Event Update (Instant)",
77
description: "Emit new event when a Calendar event is updated",
8-
version: "0.0.7",
8+
version: "0.0.8",
99
type: "source",
1010
hooks: {
1111
...common.hooks,

0 commit comments

Comments
 (0)