-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtasks.ts
75 lines (57 loc) · 1.56 KB
/
tasks.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from '../resource';
import { APIPromise } from '../api-promise';
import { buildHeaders } from '../internal/headers';
import { RequestOptions } from '../internal/request-options';
import { path } from '../internal/utils/path';
export class Tasks extends APIResource {
/**
* Add a new task
*/
create(body: TaskCreateParams, options?: RequestOptions): APIPromise<void> {
return this._client.post('/tasks', {
body,
...options,
headers: buildHeaders([{ Accept: '*/*' }, options?.headers]),
});
}
/**
* Update a task
*/
update(taskID: number, body: TaskUpdateParams, options?: RequestOptions): APIPromise<Task> {
return this._client.put(path`/tasks/${taskID}`, { body, ...options });
}
/**
* Get all tasks
*/
list(options?: RequestOptions): APIPromise<TaskListResponse> {
return this._client.get('/tasks', options);
}
}
export interface Task {
id?: number;
projectId?: number;
status?: string;
title?: string;
}
export type TaskListResponse = Array<Task>;
export interface TaskCreateParams {
id?: number;
projectId?: number;
status?: string;
title?: string;
}
export interface TaskUpdateParams {
id?: number;
projectId?: number;
status?: string;
title?: string;
}
export declare namespace Tasks {
export {
type Task as Task,
type TaskListResponse as TaskListResponse,
type TaskCreateParams as TaskCreateParams,
type TaskUpdateParams as TaskUpdateParams,
};
}