interface JiraProps {
alwaysOutputData?: boolean;
disabled?: boolean;
executeOnce?: boolean;
jiraSoftwareCloudApiCredentials?: Credentials<
JiraSoftwareCloudApiCredentials,
>;
jiraSoftwareCloudOAuth2ApiCredentials?: Credentials<
JiraSoftwareCloudOAuth2ApiCredentials,
>;
jiraSoftwareServerApiCredentials?: Credentials<
JiraSoftwareServerApiCredentials,
>;
jiraSoftwareServerPatApiCredentials?: Credentials<
JiraSoftwareServerPatApiCredentials,
>;
label?: string;
maxTries?: number;
notes?: string;
notesInFlow?: boolean;
onError?: | "continueRegularOutput"
| "continueErrorOutput";
outputSchema?: Type<unknown, {}>;
parameters?: JiraNodeParameters;
position?: NodePosition;
retryOnFail?: boolean;
}
Properties§
§
§
§
§
§
§
§
always Output Data?: boolean
§disabled?: boolean
execute Once?: boolean
If active, the node executes only once, with data from the first item it receives
readonly jira Software Cloud Api Credentials?: Credentials<JiraSoftwareCloudApiCredentials>
§readonly jira Software Cloud OAuth 2 Api Credentials?: Credentials<JiraSoftwareCloudOAuth2ApiCredentials>
§readonly jira Software Server Api Credentials?: Credentials<JiraSoftwareServerApiCredentials>
§readonly jira Software Server Pat Api Credentials?: Credentials<JiraSoftwareServerPatApiCredentials>
§label?: string
§max Tries?: number
Number of times to attempt to execute the node before failing the execution
Enabled if retryOnFail is true
notes?: string
Optional note to save with the node
notes In Flow?: boolean
§on Error?: "continueRegularOutput" | "continueErrorOutput"
Action to take when the node execution fails When undefined, an error will stop the workflow execution
readonly output Schema?: Type<unknown, {}>
{@inheritDoc OutputSchema}
readonly parameters?: JiraNodeParameters
§position?: NodePosition
§retry On Fail?: boolean
If active, the node tries to execute again when it fails
If true, the node won't run but subsequent nodes WILL be executed