mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
🎨 added line breaks
This commit is contained in:
parent
8ca31db0aa
commit
28cb10df3a
|
@ -41,7 +41,8 @@ export const issueOpeations = [
|
||||||
{
|
{
|
||||||
name: 'Transitions',
|
name: 'Transitions',
|
||||||
value: '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',
|
name: 'Delete',
|
||||||
|
@ -189,7 +190,8 @@ export const issueFields = [
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
required : 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',
|
type: 'string',
|
||||||
required: false,
|
required: false,
|
||||||
default: '',
|
default: '',
|
||||||
description: `A list of fields to return for the issue. This parameter accepts a comma-separated list.
|
description: `A list of fields to return for the issue.<br/>
|
||||||
Use it to retrieve a subset of fields. Allowed values:
|
This parameter accepts a comma-separated list.<br/>
|
||||||
*all Returns all fields.
|
Use it to retrieve a subset of fields. Allowed values:<br/>
|
||||||
*navigable Returns navigable fields.
|
*all Returns all fields.<br/>
|
||||||
Any issue field, prefixed with a minus to exclude.`
|
*navigable Returns navigable fields.<br/>
|
||||||
|
Any issue field, prefixed with a minus to exclude.<br/>`
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Fields By Key',
|
displayName: 'Fields By Key',
|
||||||
|
@ -399,8 +402,8 @@ export const issueFields = [
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
required: false,
|
required: false,
|
||||||
default: false,
|
default: false,
|
||||||
description: `Indicates whether fields in fields are referenced by keys rather than IDs.
|
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
|
This parameter is useful where fields have been added by a connect app and a field's key<br/>
|
||||||
may differ from its ID.`,
|
may differ from its ID.`,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -409,15 +412,16 @@ export const issueFields = [
|
||||||
type: 'string',
|
type: 'string',
|
||||||
required: false,
|
required: false,
|
||||||
default: '',
|
default: '',
|
||||||
description: `Use expand to include additional information about the issues in the response.
|
description: `Use expand to include additional information about the issues in the response.<br/>
|
||||||
This parameter accepts a comma-separated list. Expand options include:
|
This parameter accepts a comma-separated list. Expand options include:<br/>
|
||||||
renderedFields Returns field values rendered in HTML format.
|
renderedFields Returns field values rendered in HTML format.<br/>
|
||||||
names Returns the display name of each field.
|
names Returns the display name of each field.<br/>
|
||||||
schema Returns the schema describing a field type.
|
schema Returns the schema describing a field type.<br/>
|
||||||
transitions Returns all possible transitions for the issue.
|
transitions Returns all possible transitions for the issue.<br/>
|
||||||
editmeta Returns information about how each field can be edited.
|
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.
|
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 representing the most recent version. Note: When included in the request, the fields parameter is ignored.`
|
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',
|
displayName: 'Properties',
|
||||||
|
@ -425,14 +429,14 @@ export const issueFields = [
|
||||||
type: 'string',
|
type: 'string',
|
||||||
required: false,
|
required: false,
|
||||||
default: '',
|
default: '',
|
||||||
description: `A list of issue properties to return for the issue.
|
description: `A list of issue properties to return for the issue.<br/>
|
||||||
This parameter accepts a comma-separated list. Allowed values:
|
This parameter accepts a comma-separated list. Allowed values:<br/>
|
||||||
*all Returns all issue properties.
|
*all Returns all issue properties.<br/>
|
||||||
Any issue property key, prefixed with a minus to exclude.
|
Any issue property key, prefixed with a minus to exclude.<br/>
|
||||||
Examples:
|
Examples:<br/>
|
||||||
*all Returns all properties.
|
*all Returns all properties.<br/>
|
||||||
*all,-prop1 Returns all properties except prop1.
|
*all,-prop1 Returns all properties except prop1.<br/>
|
||||||
prop1,prop2 Returns prop1 and prop2 properties.
|
prop1,prop2 Returns prop1 and prop2 properties.<br/>
|
||||||
This parameter may be specified multiple times. For example, properties=prop1,prop2& properties=prop3.`
|
This parameter may be specified multiple times. For example, properties=prop1,prop2& properties=prop3.`
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -826,9 +830,9 @@ export const issueFields = [
|
||||||
type: 'string',
|
type: 'string',
|
||||||
required: false,
|
required: false,
|
||||||
default: '',
|
default: '',
|
||||||
description: `Use expand to include additional information about transitions in the response.
|
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
|
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
|
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.`
|
information to populate the fields and update fields in Transition issue.`
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -845,7 +849,8 @@ export const issueFields = [
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
required: false,
|
required: false,
|
||||||
default: 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