@pipedream/jira_service_desk 0.1.0 → 0.1.1

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.
@@ -5,7 +5,7 @@ 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.0.1",
8
+ version: "0.1.0",
9
9
  type: "action",
10
10
  props: {
11
11
  jiraServiceDesk,
@@ -41,7 +41,14 @@ export default {
41
41
  type: "string[]",
42
42
  label: "Request Participants",
43
43
  description:
44
- "Not available to users who only have the Service Desk customer permission.",
44
+ "Not available to users who only have the Service Desk Customer permission or if the feature is turned off for customers..",
45
+ optional: true,
46
+ },
47
+ raiseOnBehalfOf: {
48
+ type: "string",
49
+ label: "Raise On Behalf Of",
50
+ description:
51
+ "Not available to users who only have the Service Desk Customer permission.",
45
52
  optional: true,
46
53
  },
47
54
  },
@@ -83,6 +90,7 @@ Field description: "${field.description}"`
83
90
  serviceDeskId,
84
91
  requestTypeId,
85
92
  requestParticipants,
93
+ raiseOnBehalfOf,
86
94
  ...requestFieldValues
87
95
  } = this;
88
96
 
@@ -107,6 +115,7 @@ Field description: "${field.description}"`
107
115
  requestTypeId,
108
116
  requestFieldValues,
109
117
  requestParticipants,
118
+ raiseOnBehalfOf,
110
119
  },
111
120
  });
112
121
  $.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.0",
3
+ "version": "0.1.1",
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.5.1"
16
+ "@pipedream/platform": "^1.6.0"
17
17
  }
18
18
  }