2022-08-01 13:47:55 -07:00
import { INodeProperties } from 'n8n-workflow' ;
2021-09-05 10:24:56 -07:00
2021-12-03 00:44:16 -08:00
export const assetOperations : INodeProperties [ ] = [
2021-09-05 10:24:56 -07:00
{
displayName : 'Operation' ,
name : 'operation' ,
type : 'options' ,
2022-05-20 14:47:24 -07:00
noDataExpression : true ,
2021-09-05 10:24:56 -07:00
displayOptions : {
show : {
2022-08-01 13:47:55 -07:00
resource : [ 'asset' ] ,
2021-09-05 10:24:56 -07:00
} ,
} ,
options : [
{
name : 'Create' ,
value : 'create' ,
description : 'Create an asset' ,
2022-07-10 13:50:51 -07:00
action : 'Create an asset' ,
2021-09-05 10:24:56 -07:00
} ,
{
name : 'Delete' ,
value : 'delete' ,
description : 'Delete an asset' ,
2022-07-10 13:50:51 -07:00
action : 'Delete an asset' ,
2021-09-05 10:24:56 -07:00
} ,
{
name : 'Get' ,
value : 'get' ,
description : 'Retrieve an asset' ,
2022-07-10 13:50:51 -07:00
action : 'Get an asset' ,
2021-09-05 10:24:56 -07:00
} ,
{
name : 'Get All' ,
value : 'getAll' ,
description : 'Retrieve all assets' ,
2022-07-10 13:50:51 -07:00
action : 'Get all assets' ,
2021-09-05 10:24:56 -07:00
} ,
{
name : 'Update' ,
value : 'update' ,
description : 'Update an asset' ,
2022-07-10 13:50:51 -07:00
action : 'Update an asset' ,
2021-09-05 10:24:56 -07:00
} ,
] ,
default : 'create' ,
} ,
2021-12-03 00:44:16 -08:00
] ;
2021-09-05 10:24:56 -07:00
2021-12-03 00:44:16 -08:00
export const assetFields : INodeProperties [ ] = [
2021-09-05 10:24:56 -07:00
// ----------------------------------------
// asset: create
// ----------------------------------------
{
displayName : 'Asset Name' ,
name : 'name' ,
type : 'string' ,
required : true ,
default : '' ,
displayOptions : {
show : {
2022-08-01 13:47:55 -07:00
resource : [ 'asset' ] ,
operation : [ 'create' ] ,
2021-09-05 10:24:56 -07:00
} ,
} ,
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Asset Type Name or ID' ,
2021-09-05 10:24:56 -07:00
name : 'assetTypeId' ,
type : 'options' ,
2022-08-01 13:47:55 -07:00
description :
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>' ,
2021-09-05 10:24:56 -07:00
required : true ,
default : '' ,
typeOptions : {
2021-12-03 00:44:16 -08:00
loadOptionsMethod : 'getAssetTypes' ,
2021-09-05 10:24:56 -07:00
} ,
displayOptions : {
show : {
2022-08-01 13:47:55 -07:00
resource : [ 'asset' ] ,
operation : [ 'create' ] ,
2021-09-05 10:24:56 -07:00
} ,
} ,
} ,
{
displayName : 'Asset Fields' ,
name : 'assetFieldsUi' ,
placeholder : 'Add Asset Field' ,
type : 'fixedCollection' ,
typeOptions : {
multipleValues : true ,
} ,
displayOptions : {
show : {
2022-08-01 13:47:55 -07:00
resource : [ 'asset' ] ,
operation : [ 'create' ] ,
2021-09-05 10:24:56 -07:00
} ,
} ,
default : { } ,
options : [
{
name : 'assetFieldValue' ,
displayName : 'Asset Field' ,
values : [
{
2022-06-03 10:23:49 -07:00
displayName : 'Name or ID' ,
2021-09-05 10:24:56 -07:00
name : 'name' ,
type : 'options' ,
typeOptions : {
2022-08-01 13:47:55 -07:00
loadOptionsDependsOn : [ 'assetTypeId' ] ,
2021-09-05 10:24:56 -07:00
loadOptionsMethod : 'getAssetTypeFields' ,
} ,
default : '' ,
2022-08-01 13:47:55 -07:00
description :
'The ID of the field to add custom field to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-09-05 10:24:56 -07:00
} ,
{
displayName : 'Value' ,
name : 'value' ,
type : 'string' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'The value to set on custom field' ,
2021-09-05 10:24:56 -07:00
} ,
] ,
} ,
] ,
} ,
// ----------------------------------------
// asset: delete
// ----------------------------------------
{
displayName : 'Asset Display ID' ,
name : 'assetDisplayId' ,
description : 'Display ID of the asset to delete. Do not confuse with asset ID.' ,
type : 'string' ,
required : true ,
default : '' ,
displayOptions : {
show : {
2022-08-01 13:47:55 -07:00
resource : [ 'asset' ] ,
operation : [ 'delete' ] ,
2021-09-05 10:24:56 -07:00
} ,
} ,
} ,
// ----------------------------------------
// asset: get
// ----------------------------------------
{
displayName : 'Asset Display ID' ,
name : 'assetDisplayId' ,
description : 'Display ID of the asset to retrieve. Do not confuse with asset ID.' ,
type : 'string' ,
required : true ,
default : '' ,
displayOptions : {
show : {
2022-08-01 13:47:55 -07:00
resource : [ 'asset' ] ,
operation : [ 'get' ] ,
2021-09-05 10:24:56 -07:00
} ,
} ,
} ,
// ----------------------------------------
// asset: 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 : {
2022-08-01 13:47:55 -07:00
resource : [ 'asset' ] ,
operation : [ 'getAll' ] ,
2021-09-05 10:24:56 -07:00
} ,
} ,
} ,
{
displayName : 'Limit' ,
name : 'limit' ,
type : 'number' ,
default : 50 ,
2022-05-06 14:01:25 -07:00
description : 'Max number of results to return' ,
2021-09-05 10:24:56 -07:00
typeOptions : {
minValue : 1 ,
} ,
displayOptions : {
show : {
2022-08-01 13:47:55 -07:00
resource : [ 'asset' ] ,
operation : [ 'getAll' ] ,
returnAll : [ false ] ,
2021-09-05 10:24:56 -07:00
} ,
} ,
} ,
{
displayName : 'Filters' ,
name : 'filters' ,
type : 'collection' ,
placeholder : 'Add Filter' ,
default : { } ,
displayOptions : {
show : {
2022-08-01 13:47:55 -07:00
resource : [ 'asset' ] ,
operation : [ 'getAll' ] ,
2021-09-05 10:24:56 -07:00
} ,
} ,
options : [
{
2022-06-03 10:23:49 -07:00
displayName : 'Agent Name or ID' ,
2021-09-05 10:24:56 -07:00
name : 'agent_id' ,
type : 'options' ,
default : '' ,
2022-08-01 13:47:55 -07:00
description :
'ID of the agent by whom the asset is managed. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-09-05 10:24:56 -07:00
typeOptions : {
2021-12-03 00:44:16 -08:00
loadOptionsMethod : 'getAgents' ,
2021-09-05 10:24:56 -07:00
} ,
} ,
{
displayName : 'Asset State' ,
name : 'asset_state' ,
type : 'string' ,
default : '' ,
description : 'Status of the asset to filter by. For example, "In use".' ,
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Asset Type Name or ID' ,
2021-09-05 10:24:56 -07:00
name : 'asset_type_id' ,
type : 'options' ,
default : '' ,
2022-08-01 13:47:55 -07:00
description :
'ID of the asset type to filter by. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-09-05 10:24:56 -07:00
typeOptions : {
2021-12-03 00:44:16 -08:00
loadOptionsMethod : 'getAssetTypes' ,
2021-09-05 10:24:56 -07:00
} ,
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Department Name or ID' ,
2021-09-05 10:24:56 -07:00
name : 'department_id' ,
type : 'options' ,
default : '' ,
2022-08-01 13:47:55 -07:00
description :
'ID of the department to which the asset belongs. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-09-05 10:24:56 -07:00
typeOptions : {
2021-12-03 00:44:16 -08:00
loadOptionsMethod : 'getDepartments' ,
2021-09-05 10:24:56 -07:00
} ,
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Location Name or ID' ,
2021-09-05 10:24:56 -07:00
name : 'location_id' ,
type : 'options' ,
default : '' ,
2022-08-01 13:47:55 -07:00
description :
'ID of the location to filter by. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-09-05 10:24:56 -07:00
typeOptions : {
2021-12-03 00:44:16 -08:00
loadOptionsMethod : 'getLocations' ,
2021-09-05 10:24:56 -07:00
} ,
} ,
{
displayName : 'Name' ,
name : 'name' ,
type : 'string' ,
default : '' ,
description : 'Display name of the asset to filter by' ,
} ,
] ,
} ,
// ----------------------------------------
// asset: update
// ----------------------------------------
{
displayName : 'Asset Display ID' ,
name : 'assetDisplayId' ,
description : 'Display ID of the asset to update. Do not confuse with asset ID.' ,
type : 'string' ,
required : true ,
default : '' ,
displayOptions : {
show : {
2022-08-01 13:47:55 -07:00
resource : [ 'asset' ] ,
operation : [ 'update' ] ,
2021-09-05 10:24:56 -07:00
} ,
} ,
} ,
{
displayName : 'Asset Fields' ,
name : 'assetFieldsUi' ,
placeholder : 'Add Asset Field' ,
type : 'fixedCollection' ,
typeOptions : {
multipleValues : true ,
} ,
displayOptions : {
show : {
2022-08-01 13:47:55 -07:00
resource : [ 'asset' ] ,
operation : [ 'update' ] ,
2021-09-05 10:24:56 -07:00
} ,
} ,
default : { } ,
options : [
{
name : 'assetFieldValue' ,
displayName : 'Asset Field' ,
values : [
{
2022-06-03 10:23:49 -07:00
displayName : 'Name or ID' ,
2021-09-05 10:24:56 -07:00
name : 'name' ,
type : 'options' ,
typeOptions : {
2022-08-01 13:47:55 -07:00
loadOptionsDependsOn : [ 'assetTypeId' ] ,
2021-09-05 10:24:56 -07:00
loadOptionsMethod : 'getAssetTypeFields' ,
} ,
default : '' ,
2022-08-01 13:47:55 -07:00
description :
'The ID of the field to add custom field to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-09-05 10:24:56 -07:00
} ,
{
displayName : 'Value' ,
name : 'value' ,
type : 'string' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'The value to set on custom field' ,
2021-09-05 10:24:56 -07:00
} ,
] ,
} ,
] ,
} ,
2021-12-03 00:44:16 -08:00
] ;