@esm-js/jira.js
Version:
A comprehensive JavaScript/TypeScript library designed for both Node.JS and browsers, facilitating seamless interaction with the Atlassian Jira API.
22 lines (21 loc) • 676 B
text/typescript
/** The Connect provided ecosystem rules available. */
export interface AvailableWorkflowConnectRule {
/** The add-on providing the rule. */
addonKey?: string;
/** The URL creation path segment defined in the Connect module. */
createUrl?: string;
/** The rule description. */
description?: string;
/** The URL edit path segment defined in the Connect module. */
editUrl?: string;
/** The module providing the rule. */
moduleKey?: string;
/** The rule name. */
name?: string;
/** The rule key. */
ruleKey?: string;
/** The rule type. */
ruleType?: string;
/** The URL view path segment defined in the Connect module. */
viewUrl?: string;
}