Skip to content

Commit

Permalink
build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MrRefactoring committed Oct 14, 2023
1 parent 257585b commit 6925e66
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
5 changes: 4 additions & 1 deletion src/version2/avatars.ts
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,10 @@ export class Avatars {
* - For custom issue type avatars, _Browse projects_ [project permission](https://confluence.atlassian.com/x/yodKLg)
* for at least one project the issue type is used in.
*/
async getAvatarImageByOwner<T = Models.AvatarWithDetails>(parameters: Parameters.GetAvatarImageByOwner, callback?: never): Promise<T>;
async getAvatarImageByOwner<T = Models.AvatarWithDetails>(
parameters: Parameters.GetAvatarImageByOwner,
callback?: never,
): Promise<T>;
async getAvatarImageByOwner<T = Models.AvatarWithDetails>(
parameters: Parameters.GetAvatarImageByOwner,
callback?: Callback<T>,
Expand Down
1 change: 1 addition & 0 deletions src/version2/parameters/getPrecomputations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ export interface GetPrecomputations {
* - `created` Sorts by the created timestamp.
* - `updated` Sorts by the updated timestamp.
*/
filter?: string;
orderBy?:
| 'functionKey'
| 'used'
Expand Down
1 change: 1 addition & 0 deletions src/version2/parameters/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ export * from './bulkGetUsers';
export * from './bulkGetUsersMigration';
export * from './bulkSetIssuePropertiesByIssue';
export * from './bulkSetIssueProperty';
export * from './bulkSetIssuesProperties';
export * from './cancelTask';
export * from './changeFilterOwner';
export * from './copyDashboard';
Expand Down
2 changes: 0 additions & 2 deletions src/version2/users.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@ export class Users {
method: 'GET',
params: {
accountId: parameters?.accountId,
username: parameters?.username,
key: parameters?.key,
expand: parameters?.expand,
},
};
Expand Down
5 changes: 4 additions & 1 deletion src/version3/avatars.ts
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,10 @@ export class Avatars {
* - For custom issue type avatars, _Browse projects_ [project permission](https://confluence.atlassian.com/x/yodKLg)
* for at least one project the issue type is used in.
*/
async getAvatarImageByOwner<T = Models.AvatarWithDetails>(parameters: Parameters.GetAvatarImageByOwner, callback?: never): Promise<T>;
async getAvatarImageByOwner<T = Models.AvatarWithDetails>(
parameters: Parameters.GetAvatarImageByOwner,
callback?: never,
): Promise<T>;
async getAvatarImageByOwner<T = Models.AvatarWithDetails>(
parameters: Parameters.GetAvatarImageByOwner,
callback?: Callback<T>,
Expand Down

0 comments on commit 6925e66

Please sign in to comment.