Skip to content

Commit

Permalink
Version 8.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bodrovis committed May 23, 2023
1 parent 8bb4191 commit b06f5d6
Show file tree
Hide file tree
Showing 6 changed files with 253 additions and 246 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:
- 14
- 16
- 18
- 20
os:
- ubuntu-latest
env:
Expand Down
14 changes: 9 additions & 5 deletions dist/collections/tasks.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,17 @@ interface ListTaskParams extends ProjectWithPagination {
filter_title?: string;
filter_statuses?: string;
}
type TaskLanguage = {
language_iso: string;
users?: string[] | number[];
groups?: string[] | number[];
};
type CreateTaskParams = {
title: string;
description?: string;
due_date?: string;
keys?: string[] | number[];
languages?: Array<{
language_iso: string;
users?: string[] | number[];
groups?: string[] | number[];
}>;
languages?: Array<TaskLanguage>;
source_language_iso?: string;
auto_close_languages?: boolean;
auto_close_task?: boolean;
Expand All @@ -30,6 +31,9 @@ type CreateTaskParams = {
type UpdateTaskParams = Omit<CreateTaskParams, "title" | "keys" | "source_language_iso" | "task_type" | "parent_task_id" | "custom_translation_status_ids"> & {
title?: string;
close_task?: boolean;
languages?: Array<TaskLanguage & {
close_language?: boolean;
}>;
};
type TaskDeleted = {
project_id: string;
Expand Down
2 changes: 1 addition & 1 deletion dist/collections/tasks.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit b06f5d6

Please sign in to comment.