n8n/packages/nodes-base/nodes/HaloPSA/descriptions/SiteDescription.ts

315 lines
6.2 KiB
TypeScript
Raw Normal View History

:sparkles: Add HaloPSA node (#2620) * added node ui * wip problems with auth * updated authentication * fixed linter error * added haloPSA request function * removed any return type * fixed linter errors * added CRUD functionalities * updating branch from master * updated create case for clients resource, added limit to getAll operation * added required fields when creating clients and sites, added methods for fetching data to dynamicly populate options when creating site or client * added required fields for users and invoices when operation is create * :hammer: Removed some commented code * :bug: Fix bug in url formating * :hammer: fixed plural resources, fixed main for loop * :hammer: fix trailing coma * :hammer: fix for wrong resource endpoints * :hammer: fixed linter complain in Jenkings node * :hammer: replace custom fields with predefined * :hammer: updating resources optional fields * :zap: Small improvement * :hammer: replaced fixedCollection to collection in resources description * :hammer: updated site and ticket descriptions, code clean up * :hammer: fixed accordingly to PR review * :zap: Improvements * :zap: Improvements * :zap: Fix capitalization * :shirt: Fix trailing comma * :construction: node changes accordingly to review * :zap: lint errors fix * :zap: Activate simplify option by default * :zap: Fix some more issues Co-authored-by: ricardo <ricardoespinoza105@gmail.com> Co-authored-by: Iván Ovejero <ivov.src@gmail.com> Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
2022-02-11 10:00:30 -08:00
import { INodeProperties } from 'n8n-workflow';
export const siteOperations: INodeProperties[] = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
displayOptions: {
show: {
resource: ['site'],
},
},
options: [
{
name: 'Create',
value: 'create',
description: 'Create a site',
},
{
name: 'Delete',
value: 'delete',
description: 'Delete a site',
},
{
name: 'Get',
value: 'get',
description: 'Get a site',
},
{
name: 'Get All',
value: 'getAll',
description: 'Get all sites',
},
{
name: 'Update',
value: 'update',
description: 'Update a site',
},
],
default: 'create',
},
];
export const siteFields: INodeProperties[] = [
/* -------------------------------------------------------------------------- */
/* site:create */
/* -------------------------------------------------------------------------- */
{
displayName: 'Name',
name: 'siteName',
type: 'string',
default: '',
required: true,
displayOptions: {
show: {
resource: ['site'],
operation: ['create'],
},
},
description: 'Enter site name',
},
{
displayName: 'Select Client by ID',
name: 'selectOption',
type: 'boolean',
default: false,
description: 'Whether client can be selected by ID',
:sparkles: Add HaloPSA node (#2620) * added node ui * wip problems with auth * updated authentication * fixed linter error * added haloPSA request function * removed any return type * fixed linter errors * added CRUD functionalities * updating branch from master * updated create case for clients resource, added limit to getAll operation * added required fields when creating clients and sites, added methods for fetching data to dynamicly populate options when creating site or client * added required fields for users and invoices when operation is create * :hammer: Removed some commented code * :bug: Fix bug in url formating * :hammer: fixed plural resources, fixed main for loop * :hammer: fix trailing coma * :hammer: fix for wrong resource endpoints * :hammer: fixed linter complain in Jenkings node * :hammer: replace custom fields with predefined * :hammer: updating resources optional fields * :zap: Small improvement * :hammer: replaced fixedCollection to collection in resources description * :hammer: updated site and ticket descriptions, code clean up * :hammer: fixed accordingly to PR review * :zap: Improvements * :zap: Improvements * :zap: Fix capitalization * :shirt: Fix trailing comma * :construction: node changes accordingly to review * :zap: lint errors fix * :zap: Activate simplify option by default * :zap: Fix some more issues Co-authored-by: ricardo <ricardoespinoza105@gmail.com> Co-authored-by: Iván Ovejero <ivov.src@gmail.com> Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
2022-02-11 10:00:30 -08:00
displayOptions: {
show: {
resource: ['site'],
operation: ['create'],
},
},
},
{
displayName: 'Client ID',
name: 'clientId',
type: 'string',
default: '',
required: true,
displayOptions: {
show: {
resource: ['site'],
operation: ['create'],
selectOption: [true],
},
},
},
{
displayName: 'Client Name',
name: 'clientId',
type: 'options',
default: '',
required: true,
typeOptions: {
loadOptionsMethod: 'getHaloPSAClients',
},
displayOptions: {
show: {
resource: ['site'],
operation: ['create'],
selectOption: [false],
},
},
},
{
displayName: 'Additional Fields',
name: 'additionalFields',
type: 'collection',
default: {},
placeholder: 'Add Field',
displayOptions: {
show: {
resource: ['site'],
operation: ['create'],
},
},
options: [
{
displayName: 'Main Contact',
name: 'maincontact_name',
type: 'string',
default: '',
},
{
displayName: 'Notes',
name: 'notes',
type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '',
},
{
displayName: 'Phone Number',
name: 'phonenumber',
type: 'string',
default: '',
},
],
},
/* -------------------------------------------------------------------------- */
/* site:get */
/* -------------------------------------------------------------------------- */
{
displayName: 'Site ID',
name: 'siteId',
type: 'string',
required: true,
default: '',
displayOptions: {
show: {
resource: ['site'],
operation: ['delete', 'get'],
},
},
},
{
displayName: 'Simplify Output',
name: 'simplify',
type: 'boolean',
default: true,
description: 'Whether output should be simplified',
displayOptions: {
show: {
resource: ['site'],
operation: ['get', 'getAll'],
},
},
},
/* -------------------------------------------------------------------------- */
/* site:getAll */
/* -------------------------------------------------------------------------- */
{
displayName: 'Return All',
name: 'returnAll',
type: 'boolean',
displayOptions: {
show: {
resource: ['site'],
operation: ['getAll'],
},
},
default: false,
description: 'Whether to return all results or only up to a given limit',
},
{
displayName: 'Limit',
name: 'limit',
type: 'number',
default: 50,
displayOptions: {
show: {
resource: ['site'],
operation: ['getAll'],
returnAll: [false],
},
},
typeOptions: {
minValue: 1,
maxValue: 1000,
},
description: 'Max number of results to return',
},
{
displayName: 'Filters',
name: 'filters',
type: 'collection',
default: {},
placeholder: 'Add Field',
displayOptions: {
show: {
resource: ['site'],
operation: ['getAll'],
},
},
options: [
{
displayName: 'Active Status',
name: 'activeStatus',
type: 'options',
default: 'all',
options: [
{
name: 'Active only',
value: 'active',
description: 'Whether to include active sites in the response',
},
{
name: 'All',
value: 'all',
description: 'Whether to include active and inactive sites in the response',
},
{
name: 'Inactive only',
value: 'inactive',
description: 'Whether to include inactive sites in the response',
},
],
},
{
displayName: 'Text To Filter By',
name: 'search',
type: 'string',
default: '',
description: 'Filter sites by your search string',
},
],
},
/* -------------------------------------------------------------------------- */
/* site:update */
/* -------------------------------------------------------------------------- */
{
displayName: 'Site ID',
name: 'siteId',
type: 'string',
default: '',
displayOptions: {
show: {
resource: ['site'],
operation: ['update'],
},
},
},
{
displayName: 'Update Fields',
name: 'updateFields',
type: 'collection',
default: {},
placeholder: 'Add Field',
displayOptions: {
show: {
resource: ['site'],
operation: ['update'],
},
},
options: [
{
displayName: 'Client ID',
name: 'client_id',
type: 'string',
default: '',
},
{
displayName: 'Main Contact',
name: 'maincontact_name',
type: 'string',
default: '',
},
{
displayName: 'Name',
name: 'name',
type: 'string',
default: '',
description: 'Enter site name',
},
{
displayName: 'Notes',
name: 'notes',
type: 'string',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '',
},
{
displayName: 'Phone Number',
name: 'phonenumber',
type: 'string',
default: '',
},
],
},
];