@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.
174 lines (164 loc) • 7.99 kB
text/typescript
import type * as Models from './models';
import type * as Parameters from './parameters';
import type { Client } from '../clients';
import type { Callback } from '../callback';
import type { RequestConfig } from '../requestConfig';
export class IssueTypeProperties {
constructor(private client: Client) {}
/**
* Returns all the [issue type
* property](https://developer.atlassian.com/cloud/jira/platform/storing-data-without-a-database/#a-id-jira-entity-properties-a-jira-entity-properties)
* keys of the issue type.
*
* This operation can be accessed anonymously.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v3/intro/#permissions) required:**
*
* - _Administer Jira_ [global permission](https://confluence.atlassian.com/x/x4dKLg) to get the property keys of any
* issue type.
* - _Browse projects_ [project permission](https://confluence.atlassian.com/x/yodKLg) to get the property keys of any
* issue types associated with the projects the user has permission to browse.
*/
async getIssueTypePropertyKeys<T = Models.PropertyKeys>(
parameters: Parameters.GetIssueTypePropertyKeys,
callback: Callback<T>,
): Promise<void>;
/**
* Returns all the [issue type
* property](https://developer.atlassian.com/cloud/jira/platform/storing-data-without-a-database/#a-id-jira-entity-properties-a-jira-entity-properties)
* keys of the issue type.
*
* This operation can be accessed anonymously.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v3/intro/#permissions) required:**
*
* - _Administer Jira_ [global permission](https://confluence.atlassian.com/x/x4dKLg) to get the property keys of any
* issue type.
* - _Browse projects_ [project permission](https://confluence.atlassian.com/x/yodKLg) to get the property keys of any
* issue types associated with the projects the user has permission to browse.
*/
async getIssueTypePropertyKeys<T = Models.PropertyKeys>(
parameters: Parameters.GetIssueTypePropertyKeys,
callback?: never,
): Promise<T>;
async getIssueTypePropertyKeys<T = Models.PropertyKeys>(
parameters: Parameters.GetIssueTypePropertyKeys,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: `/rest/api/3/issuetype/${parameters.issueTypeId}/properties`,
method: 'GET',
};
return this.client.sendRequest(config, callback);
}
/**
* Returns the key and value of the [issue type
* property](https://developer.atlassian.com/cloud/jira/platform/storing-data-without-a-database/#a-id-jira-entity-properties-a-jira-entity-properties).
*
* This operation can be accessed anonymously.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v3/intro/#permissions) required:**
*
* - _Administer Jira_ [global permission](https://confluence.atlassian.com/x/x4dKLg) to get the details of any issue
* type.
* - _Browse projects_ [project permission](https://confluence.atlassian.com/x/yodKLg) to get the details of any issue
* types associated with the projects the user has permission to browse.
*/
async getIssueTypeProperty<T = Models.EntityProperty>(
parameters: Parameters.GetIssueTypeProperty,
callback: Callback<T>,
): Promise<void>;
/**
* Returns the key and value of the [issue type
* property](https://developer.atlassian.com/cloud/jira/platform/storing-data-without-a-database/#a-id-jira-entity-properties-a-jira-entity-properties).
*
* This operation can be accessed anonymously.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v3/intro/#permissions) required:**
*
* - _Administer Jira_ [global permission](https://confluence.atlassian.com/x/x4dKLg) to get the details of any issue
* type.
* - _Browse projects_ [project permission](https://confluence.atlassian.com/x/yodKLg) to get the details of any issue
* types associated with the projects the user has permission to browse.
*/
async getIssueTypeProperty<T = Models.EntityProperty>(
parameters: Parameters.GetIssueTypeProperty,
callback?: never,
): Promise<T>;
async getIssueTypeProperty<T = Models.EntityProperty>(
parameters: Parameters.GetIssueTypeProperty,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: `/rest/api/3/issuetype/${parameters.issueTypeId}/properties/${parameters.propertyKey}`,
method: 'GET',
};
return this.client.sendRequest(config, callback);
}
/**
* Creates or updates the value of the [issue type
* property](https://developer.atlassian.com/cloud/jira/platform/storing-data-without-a-database/#a-id-jira-entity-properties-a-jira-entity-properties).
* Use this resource to store and update data against an issue type.
*
* The value of the request body must be a [valid](http://tools.ietf.org/html/rfc4627), non-empty JSON blob. The
* maximum length is 32768 characters.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v3/intro/#permissions) required:**
* _Administer Jira_ [global permission](https://confluence.atlassian.com/x/x4dKLg).
*/
async setIssueTypeProperty<T = unknown>(
parameters: Parameters.SetIssueTypeProperty,
callback: Callback<T>,
): Promise<void>;
/**
* Creates or updates the value of the [issue type
* property](https://developer.atlassian.com/cloud/jira/platform/storing-data-without-a-database/#a-id-jira-entity-properties-a-jira-entity-properties).
* Use this resource to store and update data against an issue type.
*
* The value of the request body must be a [valid](http://tools.ietf.org/html/rfc4627), non-empty JSON blob. The
* maximum length is 32768 characters.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v3/intro/#permissions) required:**
* _Administer Jira_ [global permission](https://confluence.atlassian.com/x/x4dKLg).
*/
async setIssueTypeProperty<T = unknown>(parameters: Parameters.SetIssueTypeProperty, callback?: never): Promise<T>;
async setIssueTypeProperty<T = unknown>(
parameters: Parameters.SetIssueTypeProperty,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: `/rest/api/3/issuetype/${parameters.issueTypeId}/properties/${parameters.propertyKey}`,
method: 'PUT',
};
return this.client.sendRequest(config, callback);
}
/**
* Deletes the [issue type
* property](https://developer.atlassian.com/cloud/jira/platform/storing-data-without-a-database/#a-id-jira-entity-properties-a-jira-entity-properties).
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v3/intro/#permissions) required:**
* _Administer Jira_ [global permission](https://confluence.atlassian.com/x/x4dKLg).
*/
async deleteIssueTypeProperty<T = void>(
parameters: Parameters.DeleteIssueTypeProperty,
callback: Callback<T>,
): Promise<void>;
/**
* Deletes the [issue type
* property](https://developer.atlassian.com/cloud/jira/platform/storing-data-without-a-database/#a-id-jira-entity-properties-a-jira-entity-properties).
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v3/intro/#permissions) required:**
* _Administer Jira_ [global permission](https://confluence.atlassian.com/x/x4dKLg).
*/
async deleteIssueTypeProperty<T = void>(parameters: Parameters.DeleteIssueTypeProperty, callback?: never): Promise<T>;
async deleteIssueTypeProperty<T = void>(
parameters: Parameters.DeleteIssueTypeProperty,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: `/rest/api/3/issuetype/${parameters.issueTypeId}/properties/${parameters.propertyKey}`,
method: 'DELETE',
};
return this.client.sendRequest(config, callback);
}
}