@pipedream/microsoft_outlook_calendar 8.3.0 → 8.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/actions/accept-event/accept-event.mjs +61 -0
- package/actions/create-calendar-event/create-calendar-event.mjs +1 -1
- package/actions/decline-event/decline-event.mjs +77 -0
- package/actions/delete-calendar-event/delete-calendar-event.mjs +1 -1
- package/actions/delete-recurring-event-instance/delete-recurring-event-instance.mjs +1 -1
- package/actions/find-meeting-times/find-meeting-times.mjs +1 -1
- package/actions/get-current-user/get-current-user.mjs +1 -1
- package/actions/get-event/get-event.mjs +1 -1
- package/actions/get-schedule/get-schedule.mjs +1 -1
- package/actions/list-events/list-events.mjs +1 -1
- package/actions/list-time-zone-options/list-time-zone-options.mjs +1 -1
- package/actions/search-contacts/search-contacts.mjs +1 -1
- package/actions/search-people/search-people.mjs +1 -1
- package/actions/tentatively-accept-event/tentatively-accept-event.mjs +77 -0
- package/actions/update-calendar-event/update-calendar-event.mjs +1 -1
- package/actions/update-recurring-event-instance/update-recurring-event-instance.mjs +1 -1
- package/microsoft_outlook_calendar.app.mjs +31 -0
- package/package.json +1 -1
- package/sources/new-calendar-event/new-calendar-event.mjs +1 -1
- package/sources/new-upcoming-event/new-upcoming-event.mjs +1 -1
- package/sources/new-upcoming-event-polling/new-upcoming-event-polling.mjs +1 -1
- package/sources/updated-calendar-event/updated-calendar-event.mjs +1 -1
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import microsoftOutlook from "../../microsoft_outlook_calendar.app.mjs";
|
|
2
|
+
|
|
3
|
+
export default {
|
|
4
|
+
key: "microsoft_outlook_calendar-accept-event",
|
|
5
|
+
name: "Accept Event",
|
|
6
|
+
description:
|
|
7
|
+
"Accept a calendar event invitation and optionally send a response to the organizer."
|
|
8
|
+
+ " Use **List Events** or **Get Event** to find the event ID."
|
|
9
|
+
+ " [See the documentation](https://learn.microsoft.com/en-us/graph/api/event-accept?view=graph-rest-1.0&tabs=http)",
|
|
10
|
+
version: "0.0.1",
|
|
11
|
+
type: "action",
|
|
12
|
+
annotations: {
|
|
13
|
+
destructiveHint: false,
|
|
14
|
+
openWorldHint: true,
|
|
15
|
+
readOnlyHint: false,
|
|
16
|
+
},
|
|
17
|
+
props: {
|
|
18
|
+
microsoftOutlook,
|
|
19
|
+
eventId: {
|
|
20
|
+
propDefinition: [
|
|
21
|
+
microsoftOutlook,
|
|
22
|
+
"eventId",
|
|
23
|
+
],
|
|
24
|
+
},
|
|
25
|
+
comment: {
|
|
26
|
+
propDefinition: [
|
|
27
|
+
microsoftOutlook,
|
|
28
|
+
"comment",
|
|
29
|
+
],
|
|
30
|
+
},
|
|
31
|
+
sendResponse: {
|
|
32
|
+
propDefinition: [
|
|
33
|
+
microsoftOutlook,
|
|
34
|
+
"sendResponse",
|
|
35
|
+
],
|
|
36
|
+
},
|
|
37
|
+
},
|
|
38
|
+
async run({ $ }) {
|
|
39
|
+
const event = await this.microsoftOutlook.getCalendarEvent({
|
|
40
|
+
eventId: this.eventId,
|
|
41
|
+
});
|
|
42
|
+
|
|
43
|
+
const data = {
|
|
44
|
+
comment: this.comment,
|
|
45
|
+
sendResponse: this.sendResponse ?? true,
|
|
46
|
+
};
|
|
47
|
+
|
|
48
|
+
await this.microsoftOutlook.acceptCalendarEvent({
|
|
49
|
+
eventId: this.eventId,
|
|
50
|
+
data,
|
|
51
|
+
});
|
|
52
|
+
|
|
53
|
+
const subject = event?.subject ?? this.eventId;
|
|
54
|
+
$.export("$summary", `Accepted event "${subject}"`);
|
|
55
|
+
return {
|
|
56
|
+
success: true,
|
|
57
|
+
eventId: this.eventId,
|
|
58
|
+
subject,
|
|
59
|
+
};
|
|
60
|
+
},
|
|
61
|
+
};
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
import { ConfigurationError } from "@pipedream/platform";
|
|
2
|
+
import microsoftOutlook from "../../microsoft_outlook_calendar.app.mjs";
|
|
3
|
+
|
|
4
|
+
export default {
|
|
5
|
+
key: "microsoft_outlook_calendar-decline-event",
|
|
6
|
+
name: "Decline Event",
|
|
7
|
+
description:
|
|
8
|
+
"Decline a calendar event invitation and optionally propose an alternate time."
|
|
9
|
+
+ " Use **List Events** or **Get Event** to find the event ID."
|
|
10
|
+
+ " To propose a new time, pass `proposedNewTime` as a JSON string with `start` and `end` objects (each with `dateTime` in ISO 8601 format and `timeZone` as a Windows timezone name, e.g. `\"Pacific Standard Time\"`). Alternate-time proposals are only valid when the event has `allowNewTimeProposals: true` and `sendResponse` is `true`."
|
|
11
|
+
+ " [See the documentation](https://learn.microsoft.com/en-us/graph/api/event-decline?view=graph-rest-1.0&tabs=http)",
|
|
12
|
+
version: "0.0.1",
|
|
13
|
+
type: "action",
|
|
14
|
+
annotations: {
|
|
15
|
+
destructiveHint: false,
|
|
16
|
+
openWorldHint: true,
|
|
17
|
+
readOnlyHint: false,
|
|
18
|
+
},
|
|
19
|
+
props: {
|
|
20
|
+
microsoftOutlook,
|
|
21
|
+
eventId: {
|
|
22
|
+
propDefinition: [
|
|
23
|
+
microsoftOutlook,
|
|
24
|
+
"eventId",
|
|
25
|
+
],
|
|
26
|
+
},
|
|
27
|
+
comment: {
|
|
28
|
+
propDefinition: [
|
|
29
|
+
microsoftOutlook,
|
|
30
|
+
"comment",
|
|
31
|
+
],
|
|
32
|
+
},
|
|
33
|
+
sendResponse: {
|
|
34
|
+
propDefinition: [
|
|
35
|
+
microsoftOutlook,
|
|
36
|
+
"sendResponse",
|
|
37
|
+
],
|
|
38
|
+
},
|
|
39
|
+
proposedNewTime: {
|
|
40
|
+
type: "string",
|
|
41
|
+
label: "Proposed New Time",
|
|
42
|
+
description: "Optional alternate time to propose. JSON string with `start` and `end` objects, each having `dateTime` (ISO 8601) and `timeZone` (Windows timezone name). Example: `{\"start\":{\"dateTime\":\"2024-03-15T14:00:00\",\"timeZone\":\"Pacific Standard Time\"},\"end\":{\"dateTime\":\"2024-03-15T15:00:00\",\"timeZone\":\"Pacific Standard Time\"}}`. Only valid when the event allows new time proposals and `sendResponse` is `true`.",
|
|
43
|
+
optional: true,
|
|
44
|
+
},
|
|
45
|
+
},
|
|
46
|
+
async run({ $ }) {
|
|
47
|
+
const event = await this.microsoftOutlook.getCalendarEvent({
|
|
48
|
+
eventId: this.eventId,
|
|
49
|
+
});
|
|
50
|
+
|
|
51
|
+
const data = {
|
|
52
|
+
comment: this.comment,
|
|
53
|
+
sendResponse: this.sendResponse ?? true,
|
|
54
|
+
};
|
|
55
|
+
|
|
56
|
+
if (this.proposedNewTime) {
|
|
57
|
+
try {
|
|
58
|
+
data.proposedNewTime = JSON.parse(this.proposedNewTime);
|
|
59
|
+
} catch (err) {
|
|
60
|
+
throw new ConfigurationError(`Invalid JSON for proposedNewTime: ${err.message}`);
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
await this.microsoftOutlook.declineCalendarEvent({
|
|
65
|
+
eventId: this.eventId,
|
|
66
|
+
data,
|
|
67
|
+
});
|
|
68
|
+
|
|
69
|
+
const subject = event?.subject ?? this.eventId;
|
|
70
|
+
$.export("$summary", `Declined event "${subject}"`);
|
|
71
|
+
return {
|
|
72
|
+
success: true,
|
|
73
|
+
eventId: this.eventId,
|
|
74
|
+
subject,
|
|
75
|
+
};
|
|
76
|
+
},
|
|
77
|
+
};
|
|
@@ -3,7 +3,7 @@ import microsoftOutlook from "../../microsoft_outlook_calendar.app.mjs";
|
|
|
3
3
|
export default {
|
|
4
4
|
type: "action",
|
|
5
5
|
key: "microsoft_outlook_calendar-delete-calendar-event",
|
|
6
|
-
version: "0.0.
|
|
6
|
+
version: "0.0.11",
|
|
7
7
|
annotations: {
|
|
8
8
|
destructiveHint: true,
|
|
9
9
|
openWorldHint: true,
|
|
@@ -4,7 +4,7 @@ import { ConfigurationError } from "@pipedream/platform";
|
|
|
4
4
|
export default {
|
|
5
5
|
type: "action",
|
|
6
6
|
key: "microsoft_outlook_calendar-delete-recurring-event-instance",
|
|
7
|
-
version: "0.0.
|
|
7
|
+
version: "0.0.8",
|
|
8
8
|
annotations: {
|
|
9
9
|
destructiveHint: true,
|
|
10
10
|
openWorldHint: true,
|
|
@@ -6,7 +6,7 @@ export default {
|
|
|
6
6
|
key: "microsoft_outlook_calendar-find-meeting-times",
|
|
7
7
|
name: "Find Meeting Times",
|
|
8
8
|
description: "Suggest meeting times and locations based on organizer and attendee availability. [See the documentation](https://learn.microsoft.com/en-us/graph/api/user-findmeetingtimes?view=graph-rest-1.0)",
|
|
9
|
-
version: "0.0.
|
|
9
|
+
version: "0.0.3",
|
|
10
10
|
type: "action",
|
|
11
11
|
annotations: {
|
|
12
12
|
destructiveHint: false,
|
|
@@ -4,7 +4,7 @@ export default {
|
|
|
4
4
|
key: "microsoft_outlook_calendar-get-current-user",
|
|
5
5
|
name: "Get Current User",
|
|
6
6
|
description: "Returns the authenticated Microsoft user's ID, display name, email, and principal name via Microsoft Graph. Call this first when the user says 'my calendar', 'my events', or needs to identify themselves as organizer/attendee. Use `id` or `mail` to filter results from **List Events** or set the organizer in **Create Calendar Event**. [See the documentation](https://learn.microsoft.com/en-us/graph/api/user-get).",
|
|
7
|
-
version: "0.0.
|
|
7
|
+
version: "0.0.4",
|
|
8
8
|
type: "action",
|
|
9
9
|
annotations: {
|
|
10
10
|
destructiveHint: false,
|
|
@@ -5,7 +5,7 @@ export default {
|
|
|
5
5
|
key: "microsoft_outlook_calendar-get-event",
|
|
6
6
|
name: "Get Event",
|
|
7
7
|
description: "Retrieve a calendar event by its Microsoft Graph event ID. Pass the `id` from **List Events** when you need full details (for example `body`, `attendees`, or `recurrence`) that list responses may omit or truncate. [See the documentation](https://learn.microsoft.com/en-us/graph/api/event-get?view=graph-rest-1.0&tabs=http)",
|
|
8
|
-
version: "0.0.
|
|
8
|
+
version: "0.0.3",
|
|
9
9
|
annotations: {
|
|
10
10
|
destructiveHint: false,
|
|
11
11
|
openWorldHint: true,
|
|
@@ -8,7 +8,7 @@ export default {
|
|
|
8
8
|
key: "microsoft_outlook_calendar-get-schedule",
|
|
9
9
|
name: "Get Free/Busy Schedule",
|
|
10
10
|
description: "Get the free/busy availability information for a collection of users, distributions lists, or resources (rooms or equipment) for a specified time period. [See the documentation](https://learn.microsoft.com/en-us/graph/api/calendar-getschedule)",
|
|
11
|
-
version: "0.0.
|
|
11
|
+
version: "0.0.13",
|
|
12
12
|
annotations: {
|
|
13
13
|
destructiveHint: false,
|
|
14
14
|
openWorldHint: true,
|
|
@@ -7,7 +7,7 @@ export default {
|
|
|
7
7
|
key: "microsoft_outlook_calendar-list-events",
|
|
8
8
|
name: "List Events",
|
|
9
9
|
description: "Get a list of event objects in the user's mailbox. [See the documentation](https://learn.microsoft.com/en-us/graph/api/user-list-events)",
|
|
10
|
-
version: "0.1.
|
|
10
|
+
version: "0.1.1",
|
|
11
11
|
annotations: {
|
|
12
12
|
destructiveHint: false,
|
|
13
13
|
openWorldHint: true,
|
|
@@ -4,7 +4,7 @@ export default {
|
|
|
4
4
|
key: "microsoft_outlook_calendar-list-time-zone-options",
|
|
5
5
|
name: "List Time Zone Options",
|
|
6
6
|
description: "Retrieves available options for the Time Zone field.",
|
|
7
|
-
version: "0.0.
|
|
7
|
+
version: "0.0.2",
|
|
8
8
|
type: "action",
|
|
9
9
|
annotations: {
|
|
10
10
|
destructiveHint: false,
|
|
@@ -4,7 +4,7 @@ export default {
|
|
|
4
4
|
key: "microsoft_outlook_calendar-search-contacts",
|
|
5
5
|
name: "Search Contacts",
|
|
6
6
|
description: "Search for contacts by name from your saved contacts list and retrieve their email addresses. [See the documentation](https://learn.microsoft.com/en-us/graph/api/user-list-contacts)",
|
|
7
|
-
version: "0.0.
|
|
7
|
+
version: "0.0.7",
|
|
8
8
|
type: "action",
|
|
9
9
|
annotations: {
|
|
10
10
|
destructiveHint: false,
|
|
@@ -4,7 +4,7 @@ export default {
|
|
|
4
4
|
key: "microsoft_outlook_calendar-search-people",
|
|
5
5
|
name: "Search People",
|
|
6
6
|
description: "Retrieve a collection of person objects ordered by their relevance to the user, based on communication and collaboration patterns and business relationships. [See the documentation](https://learn.microsoft.com/en-us/graph/api/user-list-people)",
|
|
7
|
-
version: "0.0.
|
|
7
|
+
version: "0.0.7",
|
|
8
8
|
type: "action",
|
|
9
9
|
annotations: {
|
|
10
10
|
destructiveHint: false,
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
import { ConfigurationError } from "@pipedream/platform";
|
|
2
|
+
import microsoftOutlook from "../../microsoft_outlook_calendar.app.mjs";
|
|
3
|
+
|
|
4
|
+
export default {
|
|
5
|
+
key: "microsoft_outlook_calendar-tentatively-accept-event",
|
|
6
|
+
name: "Tentatively Accept Event",
|
|
7
|
+
description:
|
|
8
|
+
"Tentatively accept a calendar event invitation and optionally propose an alternate time."
|
|
9
|
+
+ " Use **List Events** or **Get Event** to find the event ID."
|
|
10
|
+
+ " To propose a new time, pass `proposedNewTime` as a JSON string with `start` and `end` objects (each with `dateTime` in ISO 8601 format and `timeZone` as a Windows timezone name, e.g. `\"Pacific Standard Time\"`). Alternate-time proposals are only valid when the event has `allowNewTimeProposals: true` and `sendResponse` is `true`."
|
|
11
|
+
+ " [See the documentation](https://learn.microsoft.com/en-us/graph/api/event-tentativelyaccept?view=graph-rest-1.0&tabs=http)",
|
|
12
|
+
version: "0.0.1",
|
|
13
|
+
type: "action",
|
|
14
|
+
annotations: {
|
|
15
|
+
destructiveHint: false,
|
|
16
|
+
openWorldHint: true,
|
|
17
|
+
readOnlyHint: false,
|
|
18
|
+
},
|
|
19
|
+
props: {
|
|
20
|
+
microsoftOutlook,
|
|
21
|
+
eventId: {
|
|
22
|
+
propDefinition: [
|
|
23
|
+
microsoftOutlook,
|
|
24
|
+
"eventId",
|
|
25
|
+
],
|
|
26
|
+
},
|
|
27
|
+
comment: {
|
|
28
|
+
propDefinition: [
|
|
29
|
+
microsoftOutlook,
|
|
30
|
+
"comment",
|
|
31
|
+
],
|
|
32
|
+
},
|
|
33
|
+
sendResponse: {
|
|
34
|
+
propDefinition: [
|
|
35
|
+
microsoftOutlook,
|
|
36
|
+
"sendResponse",
|
|
37
|
+
],
|
|
38
|
+
},
|
|
39
|
+
proposedNewTime: {
|
|
40
|
+
type: "string",
|
|
41
|
+
label: "Proposed New Time",
|
|
42
|
+
description: "Optional alternate time to propose. JSON string with `start` and `end` objects, each having `dateTime` (ISO 8601) and `timeZone` (Windows timezone name). Example: `{\"start\":{\"dateTime\":\"2024-03-15T14:00:00\",\"timeZone\":\"Pacific Standard Time\"},\"end\":{\"dateTime\":\"2024-03-15T15:00:00\",\"timeZone\":\"Pacific Standard Time\"}}`. Only valid when the event allows new time proposals and `sendResponse` is `true`.",
|
|
43
|
+
optional: true,
|
|
44
|
+
},
|
|
45
|
+
},
|
|
46
|
+
async run({ $ }) {
|
|
47
|
+
const event = await this.microsoftOutlook.getCalendarEvent({
|
|
48
|
+
eventId: this.eventId,
|
|
49
|
+
});
|
|
50
|
+
|
|
51
|
+
const data = {
|
|
52
|
+
comment: this.comment,
|
|
53
|
+
sendResponse: this.sendResponse ?? true,
|
|
54
|
+
};
|
|
55
|
+
|
|
56
|
+
if (this.proposedNewTime) {
|
|
57
|
+
try {
|
|
58
|
+
data.proposedNewTime = JSON.parse(this.proposedNewTime);
|
|
59
|
+
} catch (err) {
|
|
60
|
+
throw new ConfigurationError(`Invalid JSON for proposedNewTime: ${err.message}`);
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
await this.microsoftOutlook.tentativelyAcceptCalendarEvent({
|
|
65
|
+
eventId: this.eventId,
|
|
66
|
+
data,
|
|
67
|
+
});
|
|
68
|
+
|
|
69
|
+
const subject = event?.subject ?? this.eventId;
|
|
70
|
+
$.export("$summary", `Tentatively accepted event "${subject}"`);
|
|
71
|
+
return {
|
|
72
|
+
success: true,
|
|
73
|
+
eventId: this.eventId,
|
|
74
|
+
subject,
|
|
75
|
+
};
|
|
76
|
+
},
|
|
77
|
+
};
|
|
@@ -3,7 +3,7 @@ import microsoftOutlook from "../../microsoft_outlook_calendar.app.mjs";
|
|
|
3
3
|
export default {
|
|
4
4
|
type: "action",
|
|
5
5
|
key: "microsoft_outlook_calendar-update-calendar-event",
|
|
6
|
-
version: "0.0.
|
|
6
|
+
version: "0.0.11",
|
|
7
7
|
annotations: {
|
|
8
8
|
destructiveHint: true,
|
|
9
9
|
openWorldHint: true,
|
|
@@ -4,7 +4,7 @@ import { ConfigurationError } from "@pipedream/platform";
|
|
|
4
4
|
export default {
|
|
5
5
|
type: "action",
|
|
6
6
|
key: "microsoft_outlook_calendar-update-recurring-event-instance",
|
|
7
|
-
version: "0.0.
|
|
7
|
+
version: "0.0.8",
|
|
8
8
|
annotations: {
|
|
9
9
|
destructiveHint: false,
|
|
10
10
|
openWorldHint: true,
|
|
@@ -199,6 +199,19 @@ export default {
|
|
|
199
199
|
optional: true,
|
|
200
200
|
min: 1,
|
|
201
201
|
},
|
|
202
|
+
comment: {
|
|
203
|
+
label: "Comment",
|
|
204
|
+
description: "An optional message to include with the RSVP response sent to the organizer.",
|
|
205
|
+
type: "string",
|
|
206
|
+
optional: true,
|
|
207
|
+
},
|
|
208
|
+
sendResponse: {
|
|
209
|
+
label: "Send Response to Organizer",
|
|
210
|
+
description: "Whether to send an email response to the organizer (default `true`).",
|
|
211
|
+
type: "boolean",
|
|
212
|
+
optional: true,
|
|
213
|
+
default: true,
|
|
214
|
+
},
|
|
202
215
|
},
|
|
203
216
|
methods: {
|
|
204
217
|
client() {
|
|
@@ -299,5 +312,23 @@ export default {
|
|
|
299
312
|
}
|
|
300
313
|
return await request.post(data);
|
|
301
314
|
},
|
|
315
|
+
async acceptCalendarEvent({
|
|
316
|
+
eventId, data = {},
|
|
317
|
+
} = {}) {
|
|
318
|
+
return await this.client().api(`/me/events/${eventId}/accept`)
|
|
319
|
+
.post(data);
|
|
320
|
+
},
|
|
321
|
+
async declineCalendarEvent({
|
|
322
|
+
eventId, data = {},
|
|
323
|
+
} = {}) {
|
|
324
|
+
return await this.client().api(`/me/events/${eventId}/decline`)
|
|
325
|
+
.post(data);
|
|
326
|
+
},
|
|
327
|
+
async tentativelyAcceptCalendarEvent({
|
|
328
|
+
eventId, data = {},
|
|
329
|
+
} = {}) {
|
|
330
|
+
return await this.client().api(`/me/events/${eventId}/tentativelyAccept`)
|
|
331
|
+
.post(data);
|
|
332
|
+
},
|
|
302
333
|
},
|
|
303
334
|
};
|
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@ export default {
|
|
|
5
5
|
key: "microsoft_outlook_calendar-new-calendar-event",
|
|
6
6
|
name: "New Calendar Event (Instant)",
|
|
7
7
|
description: "Emit new event when a new Calendar event is created",
|
|
8
|
-
version: "0.0.
|
|
8
|
+
version: "0.0.16",
|
|
9
9
|
type: "source",
|
|
10
10
|
hooks: {
|
|
11
11
|
...common.hooks,
|
|
@@ -6,7 +6,7 @@ export default {
|
|
|
6
6
|
key: "microsoft_outlook_calendar-new-upcoming-event",
|
|
7
7
|
name: "New Upcoming Calendar Event",
|
|
8
8
|
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.
|
|
9
|
+
version: "0.0.12",
|
|
10
10
|
type: "source",
|
|
11
11
|
props: {
|
|
12
12
|
...common.props,
|
|
@@ -5,7 +5,7 @@ export default {
|
|
|
5
5
|
key: "microsoft_outlook_calendar-new-upcoming-event-polling",
|
|
6
6
|
name: "New Upcoming Calendar Event (Polling)",
|
|
7
7
|
description: "Emit new event based on a time interval before an upcoming calendar event. [See the documentation](https://docs.microsoft.com/en-us/graph/api/user-list-events)",
|
|
8
|
-
version: "0.0.
|
|
8
|
+
version: "0.0.8",
|
|
9
9
|
type: "source",
|
|
10
10
|
dedupe: "unique",
|
|
11
11
|
props: {
|
|
@@ -5,7 +5,7 @@ export default {
|
|
|
5
5
|
key: "microsoft_outlook_calendar-updated-calendar-event",
|
|
6
6
|
name: "New Calendar Event Update (Instant)",
|
|
7
7
|
description: "Emit new event when a Calendar event is updated",
|
|
8
|
-
version: "0.0.
|
|
8
|
+
version: "0.0.16",
|
|
9
9
|
type: "source",
|
|
10
10
|
hooks: {
|
|
11
11
|
...common.hooks,
|