2022-08-17 08:50:24 -07:00
import { INodeProperties } from 'n8n-workflow' ;
2021-07-14 15:02:30 -07:00
2021-12-03 00:44:16 -08:00
export const issueOperations : INodeProperties [ ] = [
2021-07-14 15:02:30 -07:00
{
displayName : 'Operation' ,
name : 'operation' ,
type : 'options' ,
2022-05-20 14:47:24 -07:00
noDataExpression : true ,
2021-07-14 15:02:30 -07:00
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'issue' ] ,
2021-07-14 15:02:30 -07:00
} ,
} ,
options : [
{
name : 'Create' ,
value : 'create' ,
description : 'Create an issue' ,
2022-07-10 13:50:51 -07:00
action : 'Create an issue' ,
2021-07-14 15:02:30 -07:00
} ,
{
name : 'Delete' ,
value : 'delete' ,
description : 'Delete an issue' ,
2022-07-10 13:50:51 -07:00
action : 'Delete an issue' ,
2021-07-14 15:02:30 -07:00
} ,
{
name : 'Get' ,
value : 'get' ,
description : 'Get an issue' ,
2022-07-10 13:50:51 -07:00
action : 'Get an issue' ,
2021-07-14 15:02:30 -07:00
} ,
{
2022-09-07 07:51:14 -07:00
name : 'Get Many' ,
2021-07-14 15:02:30 -07:00
value : 'getAll' ,
description : 'Get all issues' ,
2022-09-08 08:10:13 -07:00
action : 'Get many issues' ,
2021-07-14 15:02:30 -07:00
} ,
{
name : 'Update' ,
value : 'update' ,
description : 'Update an issue' ,
2022-07-10 13:50:51 -07:00
action : 'Update an issue' ,
2021-07-14 15:02:30 -07:00
} ,
] ,
default : 'create' ,
} ,
2021-12-03 00:44:16 -08:00
] ;
2021-07-14 15:02:30 -07:00
2021-12-03 00:44:16 -08:00
export const issueFields : INodeProperties [ ] = [
2021-07-14 15:02:30 -07:00
// ----------------------------------------
// issue: create
// ----------------------------------------
{
2022-06-03 10:23:49 -07:00
displayName : 'Project Name or ID' ,
2021-07-14 15:02:30 -07:00
name : 'projectId' ,
2022-08-17 08:50:24 -07:00
description :
'ID of the project to which the issue belongs. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-07-14 15:02:30 -07:00
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getProjects' ,
} ,
required : true ,
default : '' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'issue' ] ,
operation : [ 'create' ] ,
2021-07-14 15:02:30 -07:00
} ,
} ,
} ,
{
displayName : 'Subject' ,
name : 'subject' ,
type : 'string' ,
required : true ,
default : '' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'issue' ] ,
operation : [ 'create' ] ,
2021-07-14 15:02:30 -07:00
} ,
} ,
} ,
{
displayName : 'Additional Fields' ,
name : 'additionalFields' ,
type : 'collection' ,
placeholder : 'Add Field' ,
default : { } ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'issue' ] ,
operation : [ 'create' ] ,
2021-07-14 15:02:30 -07:00
} ,
} ,
options : [
{
2022-06-03 10:23:49 -07:00
// eslint-disable-next-line n8n-nodes-base/node-param-display-name-wrong-for-dynamic-options
displayName : 'Asignee Name or ID' ,
2021-07-14 15:02:30 -07:00
name : 'assigned_to' ,
type : 'options' ,
typeOptions : {
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'projectId' ] ,
2021-07-14 15:02:30 -07:00
loadOptionsMethod : 'getUsers' ,
} ,
default : '' ,
2022-08-17 08:50:24 -07:00
description :
'ID of the user to whom the issue is assigned. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-07-14 15:02:30 -07:00
} ,
{
displayName : 'Blocked Note' ,
name : 'blocked_note' ,
type : 'string' ,
default : '' ,
2022-04-22 09:29:51 -07:00
description : 'Reason why the issue is blocked. Requires "Is Blocked" toggle to be enabled.' ,
2021-07-14 15:02:30 -07:00
} ,
{
displayName : 'Description' ,
name : 'description' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'Is Blocked' ,
name : 'is_blocked' ,
type : 'boolean' ,
default : false ,
description : 'Whether the issue is blocked' ,
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Milestone (Sprint) Name or ID' ,
2021-07-14 15:02:30 -07:00
name : 'milestone' ,
type : 'options' ,
typeOptions : {
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'projectId' ] ,
2021-07-14 15:02:30 -07:00
loadOptionsMethod : 'getMilestones' ,
} ,
default : '' ,
2022-08-17 08:50:24 -07:00
description :
'ID of the milestone of the issue. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-07-14 15:02:30 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Priority Name or ID' ,
2021-07-14 15:02:30 -07:00
name : 'priority' ,
type : 'options' ,
2022-08-17 08:50:24 -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-07-14 15:02:30 -07:00
typeOptions : {
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'projectId' ] ,
2021-07-14 15:02:30 -07:00
loadOptionsMethod : 'getPriorities' ,
} ,
default : '' ,
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Severity Name or ID' ,
2021-07-14 15:02:30 -07:00
name : 'severity' ,
type : 'options' ,
2022-08-17 08:50:24 -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-07-14 15:02:30 -07:00
typeOptions : {
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'projectId' ] ,
2021-07-14 15:02:30 -07:00
loadOptionsMethod : 'getSeverities' ,
} ,
default : '' ,
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Status Name or ID' ,
2021-07-14 15:02:30 -07:00
name : 'status' ,
type : 'options' ,
typeOptions : {
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'projectId' ] ,
2021-07-14 15:02:30 -07:00
loadOptionsMethod : 'getIssueStatuses' ,
} ,
default : '' ,
2022-08-17 08:50:24 -07:00
description :
'ID of the status of the issue. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-07-14 15:02:30 -07:00
} ,
{
2022-06-20 07:54:01 -07:00
displayName : 'Tag Names or IDs' ,
2021-07-14 15:02:30 -07:00
name : 'tags' ,
type : 'multiOptions' ,
2022-08-17 08:50:24 -07:00
description :
'Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>' ,
2021-07-14 15:02:30 -07:00
typeOptions : {
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'projectId' ] ,
2021-07-14 15:02:30 -07:00
loadOptionsMethod : 'getTags' ,
} ,
default : [ ] ,
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Type Name or ID' ,
2021-07-14 15:02:30 -07:00
name : 'type' ,
type : 'options' ,
2022-08-17 08:50:24 -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-07-14 15:02:30 -07:00
typeOptions : {
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'projectId' ] ,
2021-07-14 15:02:30 -07:00
loadOptionsMethod : 'getTypes' ,
} ,
default : '' ,
} ,
] ,
} ,
// ----------------------------------------
// issue: delete
// ----------------------------------------
{
displayName : 'Issue ID' ,
name : 'issueId' ,
description : 'ID of the issue to delete' ,
type : 'string' ,
required : true ,
default : '' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'issue' ] ,
operation : [ 'delete' ] ,
2021-07-14 15:02:30 -07:00
} ,
} ,
} ,
// ----------------------------------------
// issue: get
// ----------------------------------------
{
displayName : 'Issue ID' ,
name : 'issueId' ,
description : 'ID of the issue to retrieve' ,
type : 'string' ,
required : true ,
default : '' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'issue' ] ,
operation : [ 'get' ] ,
2021-07-14 15:02:30 -07:00
} ,
} ,
} ,
// ----------------------------------------
// issue: getAll
// ----------------------------------------
{
2022-06-03 10:23:49 -07:00
displayName : 'Project Name or ID' ,
2021-07-14 15:02:30 -07:00
name : 'projectId' ,
2022-08-17 08:50:24 -07:00
description :
'ID of the project to which the issue belongs. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-07-14 15:02:30 -07:00
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getProjects' ,
} ,
required : true ,
default : '' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'issue' ] ,
operation : [ 'getAll' ] ,
2021-07-14 15:02:30 -07:00
} ,
} ,
} ,
{
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-17 08:50:24 -07:00
resource : [ 'issue' ] ,
operation : [ 'getAll' ] ,
2021-07-14 15:02:30 -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-07-14 15:02:30 -07:00
typeOptions : {
minValue : 1 ,
} ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'issue' ] ,
operation : [ 'getAll' ] ,
returnAll : [ false ] ,
2021-07-14 15:02:30 -07:00
} ,
} ,
} ,
{
displayName : 'Filters' ,
name : 'filters' ,
type : 'collection' ,
placeholder : 'Add Filter' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'issue' ] ,
operation : [ 'getAll' ] ,
2021-07-14 15:02:30 -07:00
} ,
} ,
default : { } ,
options : [
{
2022-06-03 10:23:49 -07:00
displayName : 'Asignee Name or ID' ,
2021-07-14 15:02:30 -07:00
name : 'assigned_to' ,
2022-08-17 08:50:24 -07:00
description :
'ID of the user to assign the issue to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-07-14 15:02:30 -07:00
type : 'options' ,
typeOptions : {
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'projectId' ] ,
2021-07-14 15:02:30 -07:00
loadOptionsMethod : 'getUsers' ,
} ,
default : '' ,
} ,
{
displayName : 'Order By' ,
name : 'orderBy' ,
description : 'Field to order the issues by' ,
type : 'options' ,
options : [
{
name : 'Assigned To' ,
value : 'assigned_to' ,
} ,
{
name : 'Created Date' ,
value : 'created_date' ,
} ,
{
name : 'Modified Date' ,
value : 'modified_date' ,
} ,
{
name : 'Owner' ,
value : 'owner' ,
} ,
{
name : 'Priority' ,
value : 'priority' ,
} ,
{
name : 'Severity' ,
value : 'severity' ,
} ,
{
name : 'Status' ,
value : 'status' ,
} ,
{
name : 'Subject' ,
value : 'subject' ,
} ,
{
name : 'Type' ,
value : 'type' ,
} ,
] ,
default : 'assigned_to' ,
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Owner Name or ID' ,
2021-07-14 15:02:30 -07:00
name : 'owner' ,
2022-08-17 08:50:24 -07:00
description :
'ID of the owner of the issue. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-07-14 15:02:30 -07:00
type : 'options' ,
typeOptions : {
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'projectId' ] ,
2021-07-14 15:02:30 -07:00
loadOptionsMethod : 'getUsers' ,
} ,
default : '' ,
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Priority Name or ID' ,
2021-07-14 15:02:30 -07:00
name : 'priority' ,
type : 'options' ,
2022-08-17 08:50:24 -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-07-14 15:02:30 -07:00
typeOptions : {
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'projectId' ] ,
2021-07-14 15:02:30 -07:00
loadOptionsMethod : 'getPriorities' ,
} ,
default : '' ,
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Role Name or ID' ,
2021-07-14 15:02:30 -07:00
name : 'role' ,
type : 'options' ,
2022-08-17 08:50:24 -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-07-14 15:02:30 -07:00
typeOptions : {
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'projectId' ] ,
2021-07-14 15:02:30 -07:00
loadOptionsMethod : 'getRoles' ,
} ,
default : '' ,
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Severity Name or ID' ,
2021-07-14 15:02:30 -07:00
name : 'severity' ,
type : 'options' ,
2022-08-17 08:50:24 -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-07-14 15:02:30 -07:00
typeOptions : {
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'projectId' ] ,
2021-07-14 15:02:30 -07:00
loadOptionsMethod : 'getSeverities' ,
} ,
default : '' ,
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Status Name or ID' ,
2021-07-14 15:02:30 -07:00
name : 'status' ,
2022-08-17 08:50:24 -07:00
description :
'ID of the status of the issue. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-07-14 15:02:30 -07:00
type : 'options' ,
typeOptions : {
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'projectId' ] ,
2021-07-14 15:02:30 -07:00
loadOptionsMethod : 'getIssueStatuses' ,
} ,
default : '' ,
} ,
{
2022-06-20 07:54:01 -07:00
displayName : 'Tag Names or IDs' ,
2021-07-14 15:02:30 -07:00
name : 'tags' ,
type : 'multiOptions' ,
2022-08-17 08:50:24 -07:00
description :
'Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>' ,
2021-07-14 15:02:30 -07:00
typeOptions : {
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'projectId' ] ,
2021-07-14 15:02:30 -07:00
loadOptionsMethod : 'getTags' ,
} ,
default : [ ] ,
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Type Name or ID' ,
2021-07-14 15:02:30 -07:00
name : 'type' ,
type : 'options' ,
2022-08-17 08:50:24 -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-07-14 15:02:30 -07:00
typeOptions : {
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'projectId' ] ,
2021-07-14 15:02:30 -07:00
loadOptionsMethod : 'getTypes' ,
} ,
default : '' ,
} ,
] ,
} ,
// ----------------------------------------
// issue: update
// ----------------------------------------
{
2022-06-03 10:23:49 -07:00
displayName : 'Project Name or ID' ,
2021-07-14 15:02:30 -07:00
name : 'projectId' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getProjects' ,
} ,
default : '' ,
2022-08-17 08:50:24 -07:00
description :
'ID of the project to set the issue to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-07-14 15:02:30 -07:00
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'issue' ] ,
operation : [ 'update' ] ,
2021-07-14 15:02:30 -07:00
} ,
} ,
} ,
{
displayName : 'Issue ID' ,
name : 'issueId' ,
description : 'ID of the issue to update' ,
type : 'string' ,
required : true ,
default : '' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'issue' ] ,
operation : [ 'update' ] ,
2021-07-14 15:02:30 -07:00
} ,
} ,
} ,
{
displayName : 'Update Fields' ,
name : 'updateFields' ,
type : 'collection' ,
placeholder : 'Add Field' ,
default : { } ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'issue' ] ,
operation : [ 'update' ] ,
2021-07-14 15:02:30 -07:00
} ,
} ,
options : [
{
2022-06-03 10:23:49 -07:00
displayName : 'Asignee Name or ID' ,
2021-07-14 15:02:30 -07:00
name : 'assigned_to' ,
type : 'options' ,
typeOptions : {
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'projectId' ] ,
2021-07-14 15:02:30 -07:00
loadOptionsMethod : 'getUsers' ,
} ,
default : '' ,
2022-08-17 08:50:24 -07:00
description :
'ID of the user whom the issue is assigned to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-07-14 15:02:30 -07:00
} ,
{
displayName : 'Blocked Note' ,
name : 'blocked_note' ,
type : 'string' ,
default : '' ,
2022-04-22 09:29:51 -07:00
description : 'Reason why the issue is blocked. Requires "Is Blocked" toggle to be enabled.' ,
2021-07-14 15:02:30 -07:00
} ,
{
displayName : 'Description' ,
name : 'description' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'Is Blocked' ,
name : 'is_blocked' ,
type : 'boolean' ,
default : false ,
description : 'Whether the issue is blocked' ,
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Milestone (Sprint) Name or ID' ,
2021-07-14 15:02:30 -07:00
name : 'milestone' ,
type : 'options' ,
typeOptions : {
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'projectId' ] ,
2021-07-14 15:02:30 -07:00
loadOptionsMethod : 'getMilestones' ,
} ,
default : '' ,
2022-08-17 08:50:24 -07:00
description :
'ID of the milestone of the issue. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-07-14 15:02:30 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Priority Name or ID' ,
2021-07-14 15:02:30 -07:00
name : 'priority' ,
type : 'options' ,
2022-08-17 08:50:24 -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-07-14 15:02:30 -07:00
typeOptions : {
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'projectId' ] ,
2021-07-14 15:02:30 -07:00
loadOptionsMethod : 'getPriorities' ,
} ,
default : '' ,
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Severity Name or ID' ,
2021-07-14 15:02:30 -07:00
name : 'severity' ,
type : 'options' ,
2022-08-17 08:50:24 -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-07-14 15:02:30 -07:00
typeOptions : {
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'projectId' ] ,
2021-07-14 15:02:30 -07:00
loadOptionsMethod : 'getSeverities' ,
} ,
default : '' ,
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Status Name or ID' ,
2021-07-14 15:02:30 -07:00
name : 'status' ,
type : 'options' ,
typeOptions : {
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'projectId' ] ,
2021-07-14 15:02:30 -07:00
loadOptionsMethod : 'getIssueStatuses' ,
} ,
default : '' ,
2022-08-17 08:50:24 -07:00
description :
'ID of the status of the issue. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-07-14 15:02:30 -07:00
} ,
{
displayName : 'Subject' ,
name : 'subject' ,
type : 'string' ,
default : '' ,
} ,
{
2022-06-20 07:54:01 -07:00
displayName : 'Tag Names or IDs' ,
2021-07-14 15:02:30 -07:00
name : 'tags' ,
type : 'multiOptions' ,
2022-08-17 08:50:24 -07:00
description :
'Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>' ,
2021-07-14 15:02:30 -07:00
typeOptions : {
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'projectId' ] ,
2021-07-14 15:02:30 -07:00
loadOptionsMethod : 'getTags' ,
} ,
default : [ ] ,
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Type Name or ID' ,
2021-07-14 15:02:30 -07:00
name : 'type' ,
type : 'options' ,
2022-08-17 08:50:24 -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-07-14 15:02:30 -07:00
typeOptions : {
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'projectId' ] ,
2021-07-14 15:02:30 -07:00
loadOptionsMethod : 'getTypes' ,
} ,
default : '' ,
} ,
] ,
} ,
2021-12-03 00:44:16 -08:00
] ;