1 | |
2 | type Square = { |
3 | token: string; |
4 | }; |
5 | |
6 | * ListTeamMemberBookingProfiles |
7 | * Lists booking profiles for team members. |
8 | */ |
9 | export async function main( |
10 | auth: Square, |
11 | bookable_only: string | undefined, |
12 | limit: string | undefined, |
13 | cursor: string | undefined, |
14 | location_id: string | undefined, |
15 | ) { |
16 | const url = new URL( |
17 | `https://connect.squareup.com/v2/bookings/team-member-booking-profiles`, |
18 | ); |
19 | for (const [k, v] of [ |
20 | ["bookable_only", bookable_only], |
21 | ["limit", limit], |
22 | ["cursor", cursor], |
23 | ["location_id", location_id], |
24 | ]) { |
25 | if (v !== undefined && v !== "" && k !== undefined) { |
26 | url.searchParams.append(k, v); |
27 | } |
28 | } |
29 | const response = await fetch(url, { |
30 | method: "GET", |
31 | headers: { |
32 | Authorization: "Bearer " + auth.token, |
33 | }, |
34 | body: undefined, |
35 | }); |
36 | if (!response.ok) { |
37 | const text = await response.text(); |
38 | throw new Error(`${response.status} ${text}`); |
39 | } |
40 | return await response.json(); |
41 | } |
42 |
|