2021-07-15 10:30:59 -07:00
import {
INodeProperties ,
} from 'n8n-workflow' ;
2021-12-03 00:44:16 -08:00
export const dictionaryOperations : INodeProperties [ ] = [
2021-07-15 10:30:59 -07:00
{
displayName : 'Operation' ,
name : 'operation' ,
type : 'options' ,
2022-04-02 08:22:13 -07:00
noDataExpression : true ,
2021-07-15 10:30:59 -07:00
displayOptions : {
show : {
resource : [
'dictionary' ,
] ,
} ,
} ,
options : [
{
name : 'Get All' ,
value : 'getAll' ,
2022-07-10 13:50:51 -07:00
action : 'Get all dictionaries' ,
2021-07-15 10:30:59 -07:00
} ,
] ,
default : 'getAll' ,
} ,
2021-12-03 00:44:16 -08:00
] ;
2021-07-15 10:30:59 -07:00
2021-12-03 00:44:16 -08:00
export const dictionaryFields : INodeProperties [ ] = [
2021-07-15 10:30:59 -07:00
/* -------------------------------------------------------------------------- */
/* dictionary:getAll */
/* -------------------------------------------------------------------------- */
{
displayName : 'Return All' ,
name : 'returnAll' ,
type : 'boolean' ,
displayOptions : {
show : {
operation : [
'getAll' ,
] ,
resource : [
'dictionary' ,
] ,
} ,
} ,
default : false ,
2022-04-02 08:22:13 -07:00
description : 'Whether to return all results or only up to a given limit' ,
2021-07-15 10:30:59 -07:00
} ,
{
displayName : 'Limit' ,
name : 'limit' ,
type : 'number' ,
displayOptions : {
show : {
operation : [
'getAll' ,
] ,
resource : [
'dictionary' ,
] ,
returnAll : [
false ,
] ,
} ,
} ,
typeOptions : {
minValue : 1 ,
maxValue : 500 ,
} ,
default : 50 ,
2022-05-06 14:01:25 -07:00
description : 'Max number of results to return' ,
2021-07-15 10:30:59 -07:00
} ,
{
displayName : 'Options' ,
name : 'options' ,
type : 'collection' ,
placeholder : 'Add Field' ,
displayOptions : {
show : {
resource : [
'dictionary' ,
] ,
operation : [
'getAll' ,
] ,
} ,
} ,
default : { } ,
options : [
{
displayName : 'Exclude Reference Link' ,
name : 'sysparm_exclude_reference_link' ,
type : 'boolean' ,
default : false ,
description : 'Whether to exclude Table API links for reference fields' ,
} ,
{
2022-06-20 07:54:01 -07:00
displayName : 'Field Names or IDs' ,
2021-07-15 10:30:59 -07:00
name : 'sysparm_fields' ,
type : 'multiOptions' ,
typeOptions : {
2022-04-02 08:22:13 -07:00
// nodelinter-ignore-next-line
2021-07-15 10:30:59 -07:00
loadOptionsMethod : 'getColumns' ,
} ,
2022-04-02 08:22:13 -07:00
default : [ ] ,
2022-07-14 13:05:11 -07:00
description : 'A list of fields to return. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2022-04-02 08:22:13 -07:00
hint : 'String of comma separated values or an array of strings can be set in an expression' ,
2021-07-15 10:30:59 -07:00
} ,
{
displayName : 'Filter' ,
name : 'sysparm_query' ,
type : 'string' ,
default : '' ,
2022-04-02 08:22:13 -07:00
description : 'An encoded query string used to filter the results. <a href="https://developer.servicenow.com/dev.do#!/learn/learning-plans/quebec/servicenow_application_developer/app_store_learnv2_rest_quebec_more_about_query_parameters">More info</a>.' ,
2021-07-15 10:30:59 -07:00
} ,
{
displayName : 'Return Values' ,
name : 'sysparm_display_value' ,
type : 'options' ,
options : [
{
name : 'Actual Values' ,
value : 'false' ,
} ,
{
name : 'Both' ,
value : 'all' ,
} ,
{
name : 'Display Values' ,
value : 'true' ,
} ,
] ,
default : 'false' ,
description : 'Choose which values to return' ,
} ,
] ,
} ,
2021-12-03 00:44:16 -08:00
] ;