1 | |
2 | |
3 | * Update a timesheet entry |
4 | * Update a single timesheet entry. |
5 | **Token scopes**: `timesheets:write` |
6 | */ |
7 | export async function main(auth: RT.Deel, id: string, body: Body) { |
8 | const url = new URL(`https://api.letsdeel.com/rest/v2/timesheets/${id}`) |
9 |
|
10 | const response = await fetch(url, { |
11 | method: 'PATCH', |
12 | headers: { |
13 | 'Content-Type': 'application/json', |
14 | Authorization: 'Bearer ' + auth.apiKey |
15 | }, |
16 | body: JSON.stringify(body) |
17 | }) |
18 | if (!response.ok) { |
19 | const text = await response.text() |
20 | throw new Error(`${response.status} ${text}`) |
21 | } |
22 | return await response.json() |
23 | } |
24 |
|
25 | |
26 | |
27 | * This file was automatically generated by json-schema-to-typescript. |
28 | * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, |
29 | * and run json-schema-to-typescript to regenerate this file. |
30 | */ |
31 |
|
32 | |
33 | * Details of the timesheet to update. Both a client or a contractor may update a timesheet. |
34 | */ |
35 | export interface Body { |
36 | data: { |
37 | quantity: number |
38 | description: string |
39 | |
40 | * Id of an existing timesheets preset. Created through /rest/v2/timesheets/presets |
41 | */ |
42 | hourly_report_preset_id?: string |
43 | [k: string]: unknown |
44 | } |
45 | [k: string]: unknown |
46 | } |
47 |
|