Skip to content

Commit db4d075

Browse files
committed
lint fix
1 parent 75eb754 commit db4d075

8 files changed

+41
-36
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
/**
22
* A list of issue IDs and the value to update a custom field to. */
33
export interface CustomFieldValueUpdate {
4-
/**The list of issue IDs.*/
5-
issueIds: number[];
6-
/**The value for the custom field. The value must be compatible with the [custom field type](https://developer.atlassian.com/platform/forge/manifest-reference/modules/#data-types) as follows:
7-
4+
/** The list of issue IDs. */
5+
issueIds: number[];
6+
/** The value for the custom field. The value must be compatible with the [custom field type](https://developer.atlassian.com/platform/forge/manifest-reference/modules/#data-types) as follows:
7+
88
* `string` – the value must be a string.
99
* `number` – the value must be a number.
1010
* `datetime` – the value must be a string that represents a date in the ISO format, for example `"2021-01-18T12:00:00-03:00"`.
1111
* `user` – the value must be an object that contains the `accountId` field.
1212
* `group` – the value must be an object that contains the group `name` field.
13-
14-
A list of appropriate values must be provided if the field is of the `list` [collection type](https://developer.atlassian.com/platform/forge/manifest-reference/modules/#collection-types).*/
15-
value: any;
16-
}
13+
14+
A list of appropriate values must be provided if the field is of the `list` [collection type](https://developer.atlassian.com/platform/forge/manifest-reference/modules/#collection-types). */
15+
value: any;
16+
}
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
import { CustomFieldValueUpdate } from "./customFieldValueUpdate";
1+
import { CustomFieldValueUpdate } from './customFieldValueUpdate';
2+
23
/**
34
* Details of updates for a custom field. */
45
export interface CustomFieldValueUpdateRequest {
5-
/**The list of custom field update details.*/
6-
updates?: CustomFieldValueUpdate[];
7-
}
6+
/** The list of custom field update details. */
7+
updates?: CustomFieldValueUpdate[];
8+
}

src/version2/models/license.ts

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
import { LicensedApplication } from "./licensedApplication";
1+
import { LicensedApplication } from './licensedApplication';
2+
23
/**
34
* Details about a license for the Jira instance. */
45
export interface License {
5-
/**The applications under this license.*/
6-
applications: LicensedApplication[];
7-
}
6+
/** The applications under this license. */
7+
applications: LicensedApplication[];
8+
}
+5-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
22
* Details about a licensed Jira application. */
33
export interface LicensedApplication {
4-
/**The ID of the application.*/
5-
id: string;
6-
/**The licensing plan.*/
7-
plan: string;
8-
}
4+
/** The ID of the application. */
5+
id: string;
6+
/** The licensing plan. */
7+
plan: string;
8+
}
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
import { ProjectFeature } from "./projectFeature";
1+
import { ProjectFeature } from './projectFeature';
2+
23
/**
34
* Container for the list of features on the project. */
45
export interface ProjectFeaturesResponse {
5-
/**The list of features on the project.*/
6-
features?: ProjectFeature[];
7-
}
6+
/** The list of features on the project. */
7+
features?: ProjectFeature[];
8+
}
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
22
* Details of how to filter and list search auto complete information. */
33
export interface SearchAutoCompleteFilter {
4-
/**List of project IDs used to filter the visible field details returned.*/
5-
projectIds?: number[];
6-
/**Include collapsed fields for fields that have non-unique names.*/
7-
includeCollapsedFields?: boolean;
8-
}
4+
/** List of project IDs used to filter the visible field details returned. */
5+
projectIds?: number[];
6+
/** Include collapsed fields for fields that have non-unique names. */
7+
includeCollapsedFields?: boolean;
8+
}
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1-
import { WorkflowSchemeProjectAssociation } from "../models";
1+
import { WorkflowSchemeProjectAssociation } from '../models';
2+
23
export interface AssignSchemeToProject extends WorkflowSchemeProjectAssociation {
3-
}
4+
}
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
import { CustomFieldValueUpdateRequest } from "../models";
1+
import { CustomFieldValueUpdateRequest } from '../models';
2+
23
export interface UpdateCustomFieldValue extends CustomFieldValueUpdateRequest {
3-
/**The ID or key of the custom field. For example, `customfield_10010`.*/
4-
fieldIdOrKey: string;
5-
}
4+
/** The ID or key of the custom field. For example, `customfield_10010`. */
5+
fieldIdOrKey: string;
6+
}

0 commit comments

Comments
 (0)