@pipedream/jira_service_desk 0.1.0 → 0.1.2
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/README.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# Overview
|
|
2
|
+
|
|
3
|
+
The Jira Service Desk API allows you to interact programmatically with your support ticket system, enabling the creation, updating, and management of tickets, customers, and service desk configurations. With Pipedream's integration, you can automate workflows by connecting Jira Service Desk to 3,000+ other apps, listen to webhooks for real-time triggers, and execute custom logic.
|
|
4
|
+
|
|
5
|
+
# Example Use Cases
|
|
6
|
+
|
|
7
|
+
- **Automate Ticket Creation from Emails**: Create Jira Service Desk tickets automatically when an email is received in a connected mailbox service like Gmail. Use this to ensure requests are logged and actioned quickly.
|
|
8
|
+
|
|
9
|
+
- **Sync Support Tickets with a CRM**: Maintain alignment between your customer support and sales by syncing new Jira Service Desk tickets with CRM tools like Salesforce. This can help provide sales with visibility into customer issues.
|
|
10
|
+
|
|
11
|
+
- **Slack Notifications for High Priority Tickets**: Get instant alerts in a designated Slack channel when high priority tickets are logged in Jira Service Desk. This helps your support team to respond rapidly to critical issues.
|
|
@@ -4,7 +4,12 @@ export default {
|
|
|
4
4
|
key: "jira_service_desk-create-comment-on-request",
|
|
5
5
|
name: "Create Comment on Request",
|
|
6
6
|
description: "Create a comment on a customer request. [See the documentation](https://developer.atlassian.com/cloud/jira/service-desk/rest/api-group-request/#api-rest-servicedeskapi-request-issueidorkey-comment-post)",
|
|
7
|
-
version: "0.0.
|
|
7
|
+
version: "0.0.2",
|
|
8
|
+
annotations: {
|
|
9
|
+
destructiveHint: false,
|
|
10
|
+
openWorldHint: true,
|
|
11
|
+
readOnlyHint: false,
|
|
12
|
+
},
|
|
8
13
|
type: "action",
|
|
9
14
|
props: {
|
|
10
15
|
jiraServiceDesk,
|
|
@@ -5,7 +5,12 @@ export default {
|
|
|
5
5
|
name: "Create Request",
|
|
6
6
|
description:
|
|
7
7
|
"Creates a new customer request. [See the documentation](https://docs.atlassian.com/jira-servicedesk/REST/3.6.2/#servicedeskapi/request-createCustomerRequest)",
|
|
8
|
-
version: "0.
|
|
8
|
+
version: "0.1.1",
|
|
9
|
+
annotations: {
|
|
10
|
+
destructiveHint: false,
|
|
11
|
+
openWorldHint: true,
|
|
12
|
+
readOnlyHint: false,
|
|
13
|
+
},
|
|
9
14
|
type: "action",
|
|
10
15
|
props: {
|
|
11
16
|
jiraServiceDesk,
|
|
@@ -41,7 +46,14 @@ export default {
|
|
|
41
46
|
type: "string[]",
|
|
42
47
|
label: "Request Participants",
|
|
43
48
|
description:
|
|
44
|
-
"Not available to users who only have the Service Desk
|
|
49
|
+
"Not available to users who only have the Service Desk Customer permission or if the feature is turned off for customers..",
|
|
50
|
+
optional: true,
|
|
51
|
+
},
|
|
52
|
+
raiseOnBehalfOf: {
|
|
53
|
+
type: "string",
|
|
54
|
+
label: "Raise On Behalf Of",
|
|
55
|
+
description:
|
|
56
|
+
"Not available to users who only have the Service Desk Customer permission.",
|
|
45
57
|
optional: true,
|
|
46
58
|
},
|
|
47
59
|
},
|
|
@@ -83,6 +95,7 @@ Field description: "${field.description}"`
|
|
|
83
95
|
serviceDeskId,
|
|
84
96
|
requestTypeId,
|
|
85
97
|
requestParticipants,
|
|
98
|
+
raiseOnBehalfOf,
|
|
86
99
|
...requestFieldValues
|
|
87
100
|
} = this;
|
|
88
101
|
|
|
@@ -107,6 +120,7 @@ Field description: "${field.description}"`
|
|
|
107
120
|
requestTypeId,
|
|
108
121
|
requestFieldValues,
|
|
109
122
|
requestParticipants,
|
|
123
|
+
raiseOnBehalfOf,
|
|
110
124
|
},
|
|
111
125
|
});
|
|
112
126
|
$.export("$summary", "Successfully created request");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pipedream/jira_service_desk",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Pipedream Jira Service Desk Components",
|
|
5
5
|
"main": "jira_service_desk.app.mjs",
|
|
6
6
|
"keywords": [
|
|
@@ -13,6 +13,6 @@
|
|
|
13
13
|
"access": "public"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@pipedream/platform": "^1.
|
|
16
|
+
"@pipedream/platform": "^1.6.8"
|
|
17
17
|
}
|
|
18
18
|
}
|