Add update/delete to Team, Release and Project in SentryIo node (#1605)

* Add update/delete to Team, Release and Project in SentryIo node

* Add create/delete:Project in SentryIo node

* Minor fix

* Fix descriptions & display names

* Fix casing in descriptions

* Add getTeams load function & Update operations fields

* Change 'Additional Field' to 'Update Fields' for Team,Release,Project & Organization operations
This commit is contained in:
MedAliMarz
2021-04-24 00:37:37 +02:00
committed by GitHub
parent 35e790b8dd
commit a3c5f41b0f
8 changed files with 821 additions and 94 deletions

View File

@@ -54,7 +54,7 @@ export const eventFields = [
},
},
required: true,
description: 'The slug of the organization the events belong to',
description: 'The slug of the organization the events belong to.',
},
{
displayName: 'Project Slug',
@@ -78,7 +78,7 @@ export const eventFields = [
},
},
required: true,
description: 'The slug of the project the events belong to',
description: 'The slug of the project the events belong to.',
},
{
displayName: 'Full',
@@ -95,7 +95,7 @@ export const eventFields = [
],
},
},
description: 'If this is set to true, then the event payload will include the full event body, including the stack trace',
description: 'If this is set to true, then the event payload will include the full event body, including the stack trace.',
},
{
displayName: 'Return All',
@@ -112,7 +112,7 @@ export const eventFields = [
},
},
default: false,
description: 'If all results should be returned or only up to a given limit',
description: 'If all results should be returned or only up to a given limit.',
},
{
displayName: 'Limit',
@@ -136,7 +136,7 @@ export const eventFields = [
maxValue: 500,
},
default: 100,
description: 'How many results to return',
description: 'How many results to return.',
},
/* -------------------------------------------------------------------------- */
/* event:get */
@@ -160,7 +160,7 @@ export const eventFields = [
},
},
required: true,
description: 'The slug of the organization the events belong to',
description: 'The slug of the organization the events belong to.',
},
{
displayName: 'Project Slug',
@@ -181,7 +181,7 @@ export const eventFields = [
},
},
required: true,
description: 'The slug of the project the events belong to',
description: 'The slug of the project the events belong to.',
},
{
displayName: 'Event ID',
@@ -199,6 +199,6 @@ export const eventFields = [
},
},
required: true,
description: 'The id of the event to retrieve (either the numeric primary-key or the hexadecimal id as reported by the raven client).',
description: 'The ID of the event to retrieve (either the numeric primary-key or the hexadecimal ID as reported by the raven client).',
},
] as INodeProperties[];