mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-26 12:01:16 -08:00
🎨 added line breaks
This commit is contained in:
parent
8ca31db0aa
commit
28cb10df3a
|
@ -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<br/>
|
||||
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<br/>
|
||||
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.<br/>
|
||||
This parameter accepts a comma-separated list.<br/>
|
||||
Use it to retrieve a subset of fields. Allowed values:<br/>
|
||||
*all Returns all fields.<br/>
|
||||
*navigable Returns navigable fields.<br/>
|
||||
Any issue field, prefixed with a minus to exclude.<br/>`
|
||||
},
|
||||
{
|
||||
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.<br/>
|
||||
This parameter is useful where fields have been added by a connect app and a field's key<br/>
|
||||
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.<br/>
|
||||
This parameter accepts a comma-separated list. Expand options include:<br/>
|
||||
renderedFields Returns field values rendered in HTML format.<br/>
|
||||
names Returns the display name of each field.<br/>
|
||||
schema Returns the schema describing a field type.<br/>
|
||||
transitions Returns all possible transitions for the issue.<br/>
|
||||
editmeta Returns information about how each field can be edited.<br/>
|
||||
changelog Returns a list of recent updates to an issue, sorted by date, starting from the most recent.<br/>
|
||||
versionedRepresentations Returns a JSON array for each version of a field's value, with the highest number<br/>
|
||||
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.<br/>
|
||||
This parameter accepts a comma-separated list. Allowed values:<br/>
|
||||
*all Returns all issue properties.<br/>
|
||||
Any issue property key, prefixed with a minus to exclude.<br/>
|
||||
Examples:<br/>
|
||||
*all Returns all properties.<br/>
|
||||
*all,-prop1 Returns all properties except prop1.<br/>
|
||||
prop1,prop2 Returns prop1 and prop2 properties.<br/>
|
||||
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.<br/>
|
||||
This parameter accepts transitions.fields, which returns information about the fields in the<br/>
|
||||
transition screen for each transition. Fields hidden from the screen are not returned. Use this<br/>
|
||||
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<br/>
|
||||
From User Condition are included in the response.`,
|
||||
},
|
||||
],
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue