From 28cb10df3aefd9cebe6e59edbe2b5d865d1416a7 Mon Sep 17 00:00:00 2001 From: Ricardo Espinoza Date: Mon, 2 Dec 2019 09:15:03 -0500 Subject: [PATCH] :art: added line breaks --- .../nodes-base/nodes/Jira/IssueDescription.ts | 65 ++++++++++--------- 1 file changed, 35 insertions(+), 30 deletions(-) diff --git a/packages/nodes-base/nodes/Jira/IssueDescription.ts b/packages/nodes-base/nodes/Jira/IssueDescription.ts index 1a8de91435..eb9079603e 100644 --- a/packages/nodes-base/nodes/Jira/IssueDescription.ts +++ b/packages/nodes-base/nodes/Jira/IssueDescription.ts @@ -41,7 +41,8 @@ export const issueOpeations = [ { name: 'Transitions', value: 'transitions', - description: `Returns either all transitions or a transition that can be performed by the user on an issue, based on the issue's status.`, + description: `Returns either all transitions or a transition that can be performed by
+ the user on an issue, based on the issue's status.`, }, { name: 'Delete', @@ -189,7 +190,8 @@ export const issueFields = [ type: 'boolean', default: false, required : false, - description: `Whether the project in which the issue is created is added to the user's Recently viewed project list, as shown under Projects in Jira.`, + description: `Whether the project in which the issue is created is added to the user's
+ Recently viewed project list, as shown under Projects in Jira.`, }, ], }, @@ -387,11 +389,12 @@ export const issueFields = [ type: 'string', required: false, default: '', - description: `A list of fields to return for the issue. This parameter accepts a comma-separated list. - Use it to retrieve a subset of fields. Allowed values: - *all Returns all fields. - *navigable Returns navigable fields. - Any issue field, prefixed with a minus to exclude.` + description: `A list of fields to return for the issue.
+ This parameter accepts a comma-separated list.
+ Use it to retrieve a subset of fields. Allowed values:
+ *all Returns all fields.
+ *navigable Returns navigable fields.
+ Any issue field, prefixed with a minus to exclude.
` }, { displayName: 'Fields By Key', @@ -399,8 +402,8 @@ export const issueFields = [ type: 'boolean', required: false, default: false, - description: `Indicates whether fields in fields are referenced by keys rather than IDs. - This parameter is useful where fields have been added by a connect app and a field's key + description: `Indicates whether fields in fields are referenced by keys rather than IDs.
+ This parameter is useful where fields have been added by a connect app and a field's key
may differ from its ID.`, }, { @@ -409,15 +412,16 @@ export const issueFields = [ type: 'string', required: false, default: '', - description: `Use expand to include additional information about the issues in the response. - This parameter accepts a comma-separated list. Expand options include: - renderedFields Returns field values rendered in HTML format. - names Returns the display name of each field. - schema Returns the schema describing a field type. - transitions Returns all possible transitions for the issue. - editmeta Returns information about how each field can be edited. - changelog Returns a list of recent updates to an issue, sorted by date, starting from the most recent. - versionedRepresentations Returns a JSON array for each version of a field's value, with the highest number representing the most recent version. Note: When included in the request, the fields parameter is ignored.` + description: `Use expand to include additional information about the issues in the response.
+ This parameter accepts a comma-separated list. Expand options include:
+ renderedFields Returns field values rendered in HTML format.
+ names Returns the display name of each field.
+ schema Returns the schema describing a field type.
+ transitions Returns all possible transitions for the issue.
+ editmeta Returns information about how each field can be edited.
+ changelog Returns a list of recent updates to an issue, sorted by date, starting from the most recent.
+ versionedRepresentations Returns a JSON array for each version of a field's value, with the highest number
+ representing the most recent version. Note: When included in the request, the fields parameter is ignored.` }, { displayName: 'Properties', @@ -425,14 +429,14 @@ export const issueFields = [ type: 'string', required: false, default: '', - description: `A list of issue properties to return for the issue. - This parameter accepts a comma-separated list. Allowed values: - *all Returns all issue properties. - Any issue property key, prefixed with a minus to exclude. - Examples: - *all Returns all properties. - *all,-prop1 Returns all properties except prop1. - prop1,prop2 Returns prop1 and prop2 properties. + description: `A list of issue properties to return for the issue.
+ This parameter accepts a comma-separated list. Allowed values:
+ *all Returns all issue properties.
+ Any issue property key, prefixed with a minus to exclude.
+ Examples:
+ *all Returns all properties.
+ *all,-prop1 Returns all properties except prop1.
+ prop1,prop2 Returns prop1 and prop2 properties.
This parameter may be specified multiple times. For example, properties=prop1,prop2& properties=prop3.` }, { @@ -826,9 +830,9 @@ export const issueFields = [ type: 'string', required: false, default: '', - description: `Use expand to include additional information about transitions in the response. - This parameter accepts transitions.fields, which returns information about the fields in the - transition screen for each transition. Fields hidden from the screen are not returned. Use this + description: `Use expand to include additional information about transitions in the response.
+ This parameter accepts transitions.fields, which returns information about the fields in the
+ transition screen for each transition. Fields hidden from the screen are not returned. Use this
information to populate the fields and update fields in Transition issue.` }, { @@ -845,7 +849,8 @@ export const issueFields = [ type: 'boolean', required: false, default: false, - description: 'Indicates whether transitions with the condition Hide From User Condition are included in the response.', + description: `Indicates whether transitions with the condition Hide
+ From User Condition are included in the response.`, }, ], },