mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-11 07:04:06 -08:00
0448feec56
* ⚡ Initial setup
* 👕 Update `.eslintignore`
* 👕 Autofix node-param-default-missing (#3173)
* 🔥 Remove duplicate key
* 👕 Add exceptions
* 📦 Update package-lock.json
* 👕 Apply `node-class-description-inputs-wrong-trigger-node` (#3176)
* 👕 Apply `node-class-description-inputs-wrong-regular-node` (#3177)
* 👕 Apply `node-class-description-outputs-wrong` (#3178)
* 👕 Apply `node-execute-block-double-assertion-for-items` (#3179)
* 👕 Apply `node-param-default-wrong-for-collection` (#3180)
* 👕 Apply node-param-default-wrong-for-boolean (#3181)
* Autofixed default missing
* Autofixed booleans, worked well
* ⚡ Fix params
* ⏪ Undo exempted autofixes
* 📦 Update package-lock.json
* 👕 Apply node-class-description-missing-subtitle (#3182)
* ⚡ Fix missing comma
* 👕 Apply `node-param-default-wrong-for-fixed-collection` (#3184)
* 👕 Add exception for `node-class-description-missing-subtitle`
* 👕 Apply `node-param-default-wrong-for-multi-options` (#3185)
* 👕 Apply `node-param-collection-type-unsorted-items` (#3186)
* Missing coma
* 👕 Apply `node-param-default-wrong-for-simplify` (#3187)
* 👕 Apply `node-param-description-comma-separated-hyphen` (#3190)
* 👕 Apply `node-param-description-empty-string` (#3189)
* 👕 Apply `node-param-description-excess-inner-whitespace` (#3191)
* Rule looks good
* Add whitespace rule in eslint config
* :zao: fix
* 👕 Apply `node-param-description-identical-to-display-name` (#3193)
* 👕 Apply `node-param-description-missing-for-ignore-ssl-issues` (#3195)
* ⏪ Revert ":zao: fix"
This reverts commit ef8a76f3df
.
* 👕 Apply `node-param-description-missing-for-simplify` (#3196)
* 👕 Apply `node-param-description-missing-final-period` (#3194)
* Rule working as intended
* Add rule to eslint
* 👕 Apply node-param-description-missing-for-return-all (#3197)
* ⚡ Restore `lintfix` command
Co-authored-by: agobrech <45268029+agobrech@users.noreply.github.com>
Co-authored-by: Omar Ajoue <krynble@gmail.com>
Co-authored-by: agobrech <ael.gobrecht@gmail.com>
Co-authored-by: Michael Kret <michael.k@radency.com>
693 lines
14 KiB
TypeScript
693 lines
14 KiB
TypeScript
import {
|
|
INodeProperties,
|
|
} from 'n8n-workflow';
|
|
|
|
export const incidentOperations: INodeProperties[] = [
|
|
{
|
|
displayName: 'Operation',
|
|
name: 'operation',
|
|
type: 'options',
|
|
noDataExpression: true,
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'incident',
|
|
],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
name: 'Create',
|
|
value: 'create',
|
|
},
|
|
{
|
|
name: 'Delete',
|
|
value: 'delete',
|
|
},
|
|
{
|
|
name: 'Get',
|
|
value: 'get',
|
|
},
|
|
{
|
|
name: 'Get All',
|
|
value: 'getAll',
|
|
},
|
|
{
|
|
name: 'Update',
|
|
value: 'update',
|
|
},
|
|
],
|
|
default: 'get',
|
|
},
|
|
];
|
|
|
|
export const incidentFields: INodeProperties[] = [
|
|
/* -------------------------------------------------------------------------- */
|
|
/* incident:create */
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
{
|
|
displayName: 'Short Description',
|
|
name: 'short_description',
|
|
type: 'string',
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'incident',
|
|
],
|
|
operation: [
|
|
'create',
|
|
],
|
|
},
|
|
},
|
|
required: true,
|
|
description: 'Short description of the incident',
|
|
},
|
|
{
|
|
displayName: 'Additional Fields',
|
|
name: 'additionalFields',
|
|
type: 'collection',
|
|
placeholder: 'Add Field',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'incident',
|
|
],
|
|
operation: [
|
|
'create',
|
|
],
|
|
},
|
|
},
|
|
default: {},
|
|
options: [
|
|
{
|
|
displayName: 'Assigned To',
|
|
name: 'assigned_to',
|
|
type: 'options',
|
|
typeOptions: {
|
|
// nodelinter-ignore-next-line
|
|
loadOptionsMethod: 'getUsers',
|
|
loadOptionsDependsOn: [
|
|
'additionalFields.assignment_group',
|
|
],
|
|
},
|
|
default: '',
|
|
description: 'Which user is the incident assigned to. Requires the selection of an assignment group.',
|
|
},
|
|
{
|
|
displayName: 'Assignment Group',
|
|
name: 'assignment_group',
|
|
type: 'options',
|
|
typeOptions: {
|
|
// nodelinter-ignore-next-line
|
|
loadOptionsMethod: 'getAssignmentGroups',
|
|
},
|
|
default: '',
|
|
description: 'The assignment group of the incident',
|
|
},
|
|
{
|
|
displayName: 'Business Service',
|
|
name: 'business_service',
|
|
type: 'options',
|
|
typeOptions: {
|
|
// nodelinter-ignore-next-line
|
|
loadOptionsMethod: 'getBusinessServices',
|
|
},
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Caller ID',
|
|
name: 'caller_id',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'The unique identifier of the caller of the incident',
|
|
},
|
|
{
|
|
displayName: 'Category',
|
|
name: 'category',
|
|
type: 'options',
|
|
typeOptions: {
|
|
// nodelinter-ignore-next-line
|
|
loadOptionsMethod: 'getIncidentCategories',
|
|
},
|
|
default: '',
|
|
description: 'The category of the incident',
|
|
},
|
|
{
|
|
displayName: 'Close Notes',
|
|
name: 'close_notes',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'The close notes for the incident',
|
|
},
|
|
{
|
|
displayName: 'Configuration Items',
|
|
name: 'cmdb_ci',
|
|
type: 'multiOptions',
|
|
typeOptions: {
|
|
// nodelinter-ignore-next-line
|
|
loadOptionsMethod: 'getConfigurationItems',
|
|
},
|
|
default: [],
|
|
description: 'Configuration Items, \'cmdb_ci\' in metadata',
|
|
},
|
|
{
|
|
displayName: 'Contact Type',
|
|
name: 'contact_type',
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
name: 'Email',
|
|
value: 'email',
|
|
},
|
|
{
|
|
name: 'Phone',
|
|
value: 'phone',
|
|
},
|
|
{
|
|
name: 'Self Service',
|
|
value: 'self-service',
|
|
},
|
|
{
|
|
name: 'Walk In',
|
|
value: 'walk-in',
|
|
},
|
|
],
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Description',
|
|
name: 'description',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'The description of the incident',
|
|
},
|
|
{
|
|
displayName: 'Impact',
|
|
name: 'impact',
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
name: 'Low',
|
|
value: 3,
|
|
},
|
|
{
|
|
name: 'Medium',
|
|
value: 2,
|
|
},
|
|
{
|
|
name: 'High',
|
|
value: 1,
|
|
},
|
|
],
|
|
default: 1,
|
|
description: 'The impact of the incident',
|
|
},
|
|
{
|
|
displayName: 'Resolution Code',
|
|
name: 'close_code',
|
|
type: 'options',
|
|
typeOptions: {
|
|
// nodelinter-ignore-next-line
|
|
loadOptionsMethod: 'getIncidentResolutionCodes',
|
|
},
|
|
default: '',
|
|
description: 'The resolution code of the incident, \'close_code\' in metadata',
|
|
},
|
|
{
|
|
displayName: 'State',
|
|
name: 'state',
|
|
type: 'options',
|
|
typeOptions: {
|
|
// nodelinter-ignore-next-line
|
|
loadOptionsMethod: 'getIncidentStates',
|
|
},
|
|
default: '',
|
|
description: 'The state of the incident',
|
|
},
|
|
{
|
|
displayName: 'Subcategory',
|
|
name: 'subcategory',
|
|
type: 'options',
|
|
typeOptions: {
|
|
// nodelinter-ignore-next-line
|
|
loadOptionsMethod: 'getIncidentSubcategories',
|
|
loadOptionsDependsOn: [
|
|
'additionalFields.category',
|
|
],
|
|
},
|
|
default: '',
|
|
description: 'The subcategory of the incident',
|
|
},
|
|
{
|
|
displayName: 'Urgency',
|
|
name: 'urgency',
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
name: 'Low',
|
|
value: 3,
|
|
},
|
|
{
|
|
name: 'Medium',
|
|
value: 2,
|
|
},
|
|
{
|
|
name: 'High',
|
|
value: 1,
|
|
},
|
|
],
|
|
default: 1,
|
|
description: 'The urgency of the incident',
|
|
},
|
|
],
|
|
},
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
/* incident:getAll */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'Return All',
|
|
name: 'returnAll',
|
|
type: 'boolean',
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'getAll',
|
|
],
|
|
resource: [
|
|
'incident',
|
|
],
|
|
},
|
|
},
|
|
default: false,
|
|
description: 'Whether to return all results or only up to a given limit',
|
|
},
|
|
{
|
|
displayName: 'Limit',
|
|
name: 'limit',
|
|
type: 'number',
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'getAll',
|
|
],
|
|
resource: [
|
|
'incident',
|
|
],
|
|
returnAll: [
|
|
false,
|
|
],
|
|
},
|
|
},
|
|
typeOptions: {
|
|
minValue: 1,
|
|
maxValue: 500,
|
|
},
|
|
default: 50,
|
|
description: 'The max number of results to return',
|
|
},
|
|
{
|
|
displayName: 'Options',
|
|
name: 'options',
|
|
type: 'collection',
|
|
placeholder: 'Add Option',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'incident',
|
|
],
|
|
operation: [
|
|
'getAll',
|
|
],
|
|
},
|
|
},
|
|
default: {},
|
|
options: [
|
|
{
|
|
displayName: 'Exclude Reference Link',
|
|
name: 'sysparm_exclude_reference_link',
|
|
type: 'boolean',
|
|
default: false,
|
|
description: 'Whether to exclude Table API links for reference fields',
|
|
},
|
|
{
|
|
displayName: 'Fields',
|
|
name: 'sysparm_fields',
|
|
type: 'multiOptions',
|
|
typeOptions: {
|
|
// nodelinter-ignore-next-line
|
|
loadOptionsMethod: 'getColumns',
|
|
},
|
|
default: [],
|
|
description: 'A list of fields to return',
|
|
hint: 'String of comma separated values or an array of strings can be set in an expression',
|
|
},
|
|
{
|
|
displayName: 'Filter',
|
|
name: 'sysparm_query',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'An encoded query string used to filter the results. <a href="https://developer.servicenow.com/dev.do#!/learn/learning-plans/quebec/servicenow_application_developer/app_store_learnv2_rest_quebec_more_about_query_parameters">More info</a>.',
|
|
},
|
|
{
|
|
displayName: 'Return Values',
|
|
name: 'sysparm_display_value',
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
name: 'Actual Values',
|
|
value: 'false',
|
|
},
|
|
{
|
|
name: 'Both',
|
|
value: 'all',
|
|
},
|
|
{
|
|
name: 'Display Values',
|
|
value: 'true',
|
|
},
|
|
],
|
|
default: 'false',
|
|
description: 'Choose which values to return',
|
|
},
|
|
],
|
|
},
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
/* incident:get/delete */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'Incident ID',
|
|
name: 'id',
|
|
type: 'string',
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'incident',
|
|
],
|
|
operation: [
|
|
'delete',
|
|
'get',
|
|
],
|
|
},
|
|
},
|
|
required: true,
|
|
description: 'Unique identifier of the incident',
|
|
},
|
|
{
|
|
displayName: 'Options',
|
|
name: 'options',
|
|
type: 'collection',
|
|
placeholder: 'Add Option',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'incident',
|
|
],
|
|
operation: [
|
|
'get',
|
|
],
|
|
},
|
|
},
|
|
default: {},
|
|
options: [
|
|
{
|
|
displayName: 'Exclude Reference Link',
|
|
name: 'sysparm_exclude_reference_link',
|
|
type: 'boolean',
|
|
default: false,
|
|
description: 'Whether to exclude Table API links for reference fields',
|
|
},
|
|
{
|
|
displayName: 'Fields',
|
|
name: 'sysparm_fields',
|
|
type: 'multiOptions',
|
|
typeOptions: {
|
|
// nodelinter-ignore-next-line
|
|
loadOptionsMethod: 'getColumns',
|
|
},
|
|
default: [],
|
|
description: 'A list of fields to return',
|
|
hint: 'String of comma separated values or an array of strings can be set in an expression',
|
|
},
|
|
{
|
|
displayName: 'Return Values',
|
|
name: 'sysparm_display_value',
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
name: 'Actual Values',
|
|
value: 'false',
|
|
},
|
|
{
|
|
name: 'Both',
|
|
value: 'all',
|
|
},
|
|
{
|
|
name: 'Display Values',
|
|
value: 'true',
|
|
},
|
|
],
|
|
default: 'false',
|
|
description: 'Choose which values to return',
|
|
},
|
|
],
|
|
},
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
/* incident:update */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'Incident ID',
|
|
name: 'id',
|
|
type: 'string',
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'incident',
|
|
],
|
|
operation: [
|
|
'update',
|
|
],
|
|
},
|
|
},
|
|
required: true,
|
|
description: 'Unique identifier of the incident',
|
|
},
|
|
{
|
|
displayName: 'Update Fields',
|
|
name: 'updateFields',
|
|
type: 'collection',
|
|
placeholder: 'Add Field',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'incident',
|
|
],
|
|
operation: [
|
|
'update',
|
|
],
|
|
},
|
|
},
|
|
default: {},
|
|
options: [
|
|
{
|
|
displayName: 'Assigned To',
|
|
name: 'assigned_to',
|
|
type: 'options',
|
|
typeOptions: {
|
|
// nodelinter-ignore-next-line
|
|
loadOptionsMethod: 'getUsers',
|
|
loadOptionsDependsOn: [
|
|
'additionalFields.assignment_group',
|
|
],
|
|
},
|
|
default: '',
|
|
description: 'Which user is the incident assigned to. Requires the selection of an assignment group.',
|
|
},
|
|
{
|
|
displayName: 'Assignment Group',
|
|
name: 'assignment_group',
|
|
type: 'options',
|
|
typeOptions: {
|
|
// nodelinter-ignore-next-line
|
|
loadOptionsMethod: 'getAssignmentGroups',
|
|
},
|
|
default: '',
|
|
description: 'The assignment group of the incident',
|
|
},
|
|
{
|
|
displayName: 'Business Service',
|
|
name: 'business_service',
|
|
type: 'options',
|
|
typeOptions: {
|
|
// nodelinter-ignore-next-line
|
|
loadOptionsMethod: 'getBusinessServices',
|
|
},
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Caller ID',
|
|
name: 'caller_id',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'The unique identifier of the caller of the incident',
|
|
},
|
|
{
|
|
displayName: 'Category',
|
|
name: 'category',
|
|
type: 'options',
|
|
typeOptions: {
|
|
// nodelinter-ignore-next-line
|
|
loadOptionsMethod: 'getIncidentCategories',
|
|
},
|
|
default: '',
|
|
description: 'The category of the incident',
|
|
},
|
|
{
|
|
displayName: 'Close Notes',
|
|
name: 'close_notes',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'The close notes for the incident',
|
|
},
|
|
{
|
|
displayName: 'Configuration Items',
|
|
name: 'cmdb_ci',
|
|
type: 'multiOptions',
|
|
typeOptions: {
|
|
// nodelinter-ignore-next-line
|
|
loadOptionsMethod: 'getConfigurationItems',
|
|
},
|
|
default: [],
|
|
description: 'Configuration Items, \'cmdb_ci\' in metadata',
|
|
},
|
|
{
|
|
displayName: 'Contact Type',
|
|
name: 'contact_type',
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
name: 'Email',
|
|
value: 'email',
|
|
},
|
|
{
|
|
name: 'Phone',
|
|
value: 'phone',
|
|
},
|
|
{
|
|
name: 'Self Service',
|
|
value: 'self-service',
|
|
},
|
|
{
|
|
name: 'Walk In',
|
|
value: 'walk-in',
|
|
},
|
|
],
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Description',
|
|
name: 'description',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'The description of the incident',
|
|
},
|
|
{
|
|
displayName: 'Impact',
|
|
name: 'impact',
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
name: 'Low',
|
|
value: 3,
|
|
},
|
|
{
|
|
name: 'Medium',
|
|
value: 2,
|
|
},
|
|
{
|
|
name: 'High',
|
|
value: 1,
|
|
},
|
|
],
|
|
default: 1,
|
|
description: 'The impact of the incident',
|
|
},
|
|
{
|
|
displayName: 'Resolution Code',
|
|
name: 'close_code',
|
|
type: 'options',
|
|
typeOptions: {
|
|
// nodelinter-ignore-next-line
|
|
loadOptionsMethod: 'getIncidentResolutionCodes',
|
|
},
|
|
default: '',
|
|
// nodelinter-ignore-next-line
|
|
description: 'The resolution code of the incident. \'close_code\' in metadata.',
|
|
},
|
|
{
|
|
displayName: 'On Hold Reason',
|
|
name: 'hold_reason',
|
|
type: 'options',
|
|
typeOptions: {
|
|
// nodelinter-ignore-next-line
|
|
loadOptionsMethod: 'getIncidentHoldReasons',
|
|
},
|
|
default: '',
|
|
description: 'The on hold reason for the incident. It applies if the state is <code>On Hold</code>',
|
|
},
|
|
{
|
|
displayName: 'State',
|
|
name: 'state',
|
|
type: 'options',
|
|
typeOptions: {
|
|
// nodelinter-ignore-next-line
|
|
loadOptionsMethod: 'getIncidentStates',
|
|
},
|
|
default: '',
|
|
description: 'The state of the incident',
|
|
},
|
|
{
|
|
displayName: 'Subcategory',
|
|
name: 'subcategory',
|
|
type: 'options',
|
|
typeOptions: {
|
|
// nodelinter-ignore-next-line
|
|
loadOptionsMethod: 'getIncidentSubcategories',
|
|
loadOptionsDependsOn: [
|
|
'additionalFields.category',
|
|
],
|
|
},
|
|
default: '',
|
|
description: 'The subcategory of the incident',
|
|
},
|
|
{
|
|
displayName: 'Urgency',
|
|
name: 'urgency',
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
name: 'Low',
|
|
value: 3,
|
|
},
|
|
{
|
|
name: 'Medium',
|
|
value: 2,
|
|
},
|
|
{
|
|
name: 'High',
|
|
value: 1,
|
|
},
|
|
],
|
|
default: 1,
|
|
description: 'The urgency of the incident',
|
|
},
|
|
],
|
|
},
|
|
];
|