mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
⚡ Improvements on Sentry Node
This commit is contained in:
@@ -20,6 +20,11 @@ export const projectOperations = [
|
||||
value: 'create',
|
||||
description: 'Create a new project',
|
||||
},
|
||||
{
|
||||
name: 'Delete',
|
||||
value: 'delete',
|
||||
description: 'Delete a project',
|
||||
},
|
||||
{
|
||||
name: 'Get',
|
||||
value: 'get',
|
||||
@@ -35,11 +40,6 @@ export const projectOperations = [
|
||||
value: 'update',
|
||||
description: 'Update a project',
|
||||
},
|
||||
{
|
||||
name: 'Delete',
|
||||
value: 'delete',
|
||||
description: 'Delete a project',
|
||||
},
|
||||
],
|
||||
default: 'get',
|
||||
description: 'The operation to perform',
|
||||
@@ -164,6 +164,7 @@ export const projectFields = [
|
||||
},
|
||||
],
|
||||
},
|
||||
|
||||
/* -------------------------------------------------------------------------- */
|
||||
/* project:getAll */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
@@ -208,6 +209,7 @@ export const projectFields = [
|
||||
default: 100,
|
||||
description: 'How many results to return.',
|
||||
},
|
||||
|
||||
/* -------------------------------------------------------------------------- */
|
||||
/* project:update */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
@@ -274,11 +276,25 @@ export const projectFields = [
|
||||
},
|
||||
options: [
|
||||
{
|
||||
displayName: 'Team',
|
||||
name: 'team',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'The new team name.',
|
||||
displayName: 'Bookmarked',
|
||||
name: 'isBookmarked',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'The new platform for the updated project.',
|
||||
},
|
||||
{
|
||||
displayName: 'Digests Maximum Delay',
|
||||
name: 'digestsMaxDelay',
|
||||
type: 'number',
|
||||
default: 1800,
|
||||
description: 'Maximum interval to digest alerts.',
|
||||
},
|
||||
{
|
||||
displayName: 'Digests Minimun Delay',
|
||||
name: 'digestsMinDelay',
|
||||
type: 'number',
|
||||
default: 60,
|
||||
description: 'Minium interval to digest alerts.',
|
||||
},
|
||||
{
|
||||
displayName: 'Name',
|
||||
@@ -294,6 +310,13 @@ export const projectFields = [
|
||||
default: '',
|
||||
description: 'The new slug for the updated project.',
|
||||
},
|
||||
{
|
||||
displayName: 'Team',
|
||||
name: 'team',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'The new team name.',
|
||||
},
|
||||
{
|
||||
displayName: 'Platform',
|
||||
name: 'platform',
|
||||
@@ -301,29 +324,9 @@ export const projectFields = [
|
||||
default: '',
|
||||
description: 'The new platform for the updated project.',
|
||||
},
|
||||
{
|
||||
displayName: 'Bookmarked',
|
||||
name: 'isBookmarked',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'The new platform for the updated project.',
|
||||
},
|
||||
{
|
||||
displayName: 'Digests Minimun Delay',
|
||||
name: 'digestsMinDelay',
|
||||
type: 'number',
|
||||
default: 60,
|
||||
description: 'Minium interval to digest alerts.',
|
||||
},
|
||||
{
|
||||
displayName: 'Digests Maximum Delay',
|
||||
name: 'digestsMaxDelay',
|
||||
type: 'number',
|
||||
default: 1800,
|
||||
description: 'Maximum interval to digest alerts.',
|
||||
},
|
||||
],
|
||||
},
|
||||
|
||||
/* -------------------------------------------------------------------------- */
|
||||
/* project:delete */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
|
||||
Reference in New Issue
Block a user