n8n/packages/nodes-base/nodes/Freshservice/descriptions/ProductDescription.ts
Iván Ovejero 6f95121fac
refactor: Add action to all operations on all nodes (#3655)
* 👕 Add `action` to `INodePropertyOptions`

* 👕 Apply `node-param-operation-option-without-action`

* ✏️ Fix add/remove phrasing

* ✏️ Fix email template phrasing

* ✏️ Fix add/remove phrasing

* ✏️ Fix custom fields phrasing

* ✏️ Fix job report phrasing

* ✏️ Fix query phrasing

* ✏️ Various phrasing fixes

* ✏️ Fix final phrasings

* ✏️ Remove `conversation`

* ✏️ Fix plural
2022-07-10 23:50:51 +03:00

367 lines
6.3 KiB
TypeScript

import {
INodeProperties,
} from 'n8n-workflow';
export const productOperations: INodeProperties[] = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
noDataExpression: true,
displayOptions: {
show: {
resource: [
'product',
],
},
},
options: [
{
name: 'Create',
value: 'create',
description: 'Create a product',
action: 'Create a product',
},
{
name: 'Delete',
value: 'delete',
description: 'Delete a product',
action: 'Delete a product',
},
{
name: 'Get',
value: 'get',
description: 'Retrieve a product',
action: 'Get a product',
},
{
name: 'Get All',
value: 'getAll',
description: 'Retrieve all products',
action: 'Get all products',
},
{
name: 'Update',
value: 'update',
description: 'Update a product',
action: 'Update a product',
},
],
default: 'create',
},
];
export const productFields: INodeProperties[] = [
// ----------------------------------------
// product: create
// ----------------------------------------
{
displayName: 'Asset Type Name or ID',
name: 'assetTypeId',
type: 'options',
description: 'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>',
required: true,
default: '',
typeOptions: {
loadOptionsMethod: 'getAssetTypes',
},
displayOptions: {
show: {
resource: [
'product',
],
operation: [
'create',
],
},
},
},
{
displayName: 'Name',
name: 'name',
type: 'string',
required: true,
default: '',
displayOptions: {
show: {
resource: [
'product',
],
operation: [
'create',
],
},
},
},
{
displayName: 'Additional Fields',
name: 'additionalFields',
type: 'collection',
placeholder: 'Add Field',
default: {},
displayOptions: {
show: {
resource: [
'product',
],
operation: [
'create',
],
},
},
options: [
{
displayName: 'Description',
name: 'description',
type: 'string',
default: '',
description: 'HTML supported',
},
{
displayName: 'Manufacturer',
name: 'manufacturer',
type: 'string',
default: '',
},
{
displayName: 'Mode of Procurement',
name: 'mode_of_procurement',
type: 'options',
default: 'Buy',
options: [
{
name: 'Buy',
value: 'Buy',
},
{
name: 'Lease',
value: 'Lease',
},
{
name: 'Both',
value: 'Both',
},
],
},
{
displayName: 'Status',
name: 'status',
type: 'options',
default: 'In Production',
options: [
{
name: 'In Production',
value: 'In Production',
},
{
name: 'In Pipeline',
value: 'In Pipeline',
},
{
name: 'Retired',
value: 'Retired',
},
],
},
],
},
// ----------------------------------------
// product: delete
// ----------------------------------------
{
displayName: 'Product ID',
name: 'productId',
description: 'ID of the product to delete',
type: 'string',
required: true,
default: '',
displayOptions: {
show: {
resource: [
'product',
],
operation: [
'delete',
],
},
},
},
// ----------------------------------------
// product: get
// ----------------------------------------
{
displayName: 'Product ID',
name: 'productId',
description: 'ID of the product to retrieve',
type: 'string',
required: true,
default: '',
displayOptions: {
show: {
resource: [
'product',
],
operation: [
'get',
],
},
},
},
// ----------------------------------------
// product: getAll
// ----------------------------------------
{
displayName: 'Return All',
name: 'returnAll',
type: 'boolean',
default: false,
description: 'Whether to return all results or only up to a given limit',
displayOptions: {
show: {
resource: [
'product',
],
operation: [
'getAll',
],
},
},
},
{
displayName: 'Limit',
name: 'limit',
type: 'number',
default: 50,
description: 'Max number of results to return',
typeOptions: {
minValue: 1,
},
displayOptions: {
show: {
resource: [
'product',
],
operation: [
'getAll',
],
returnAll: [
false,
],
},
},
},
// ----------------------------------------
// product: update
// ----------------------------------------
{
displayName: 'Product ID',
name: 'productId',
description: 'ID of the product to update',
type: 'string',
required: true,
default: '',
displayOptions: {
show: {
resource: [
'product',
],
operation: [
'update',
],
},
},
},
{
displayName: 'Update Fields',
name: 'updateFields',
type: 'collection',
placeholder: 'Add Field',
default: {},
displayOptions: {
show: {
resource: [
'product',
],
operation: [
'update',
],
},
},
options: [
{
displayName: 'Asset Type Name or ID',
name: 'asset_type_id',
type: 'options',
description: 'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>',
default: '',
typeOptions: {
loadOptionsMethod: 'getAssetTypes',
},
},
{
displayName: 'Description',
name: 'description',
type: 'string',
default: '',
description: 'HTML supported',
},
{
displayName: 'Manufacturer',
name: 'manufacturer',
type: 'string',
default: '',
},
{
displayName: 'Mode of Procurement',
name: 'mode_of_procurement',
type: 'options',
default: 'Buy',
options: [
{
name: 'Buy',
value: 'Buy',
},
{
name: 'Lease',
value: 'Lease',
},
{
name: 'Both',
value: 'Both',
},
],
},
{
displayName: 'Name',
name: 'name',
type: 'string',
default: '',
},
{
displayName: 'Status',
name: 'status',
type: 'options',
default: 'In Production',
options: [
{
name: 'In Production',
value: 'In Production',
},
{
name: 'In Pipeline',
value: 'In Pipeline',
},
{
name: 'Retired',
value: 'Retired',
},
],
},
],
},
];