@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.
9 lines (7 loc) • 309 B
text/typescript
import type { RolePayload } from './rolePayload';
export interface RolesCapabilityPayload {
/** A map of role PCRI (can be ID or REF) to a list of user or group PCRI IDs to associate with the role and project. */
roleToProjectActors?: {};
/** The list of roles to create. */
roles?: RolePayload[];
}