1 | type Stripe = { |
2 | token: string; |
3 | }; |
4 | |
5 | * Post terminal locations |
6 | * Creates a new Location object. |
7 | For further details, including which address fields are required in each country, see the Manage locations guide. |
8 | */ |
9 | export async function main( |
10 | auth: Stripe, |
11 | body: { |
12 | address: { |
13 | city?: string; |
14 | country: string; |
15 | line1?: string; |
16 | line2?: string; |
17 | postal_code?: string; |
18 | state?: string; |
19 | [k: string]: unknown; |
20 | }; |
21 | configuration_overrides?: string; |
22 | display_name: string; |
23 | expand?: string[]; |
24 | metadata?: { [k: string]: string } | ""; |
25 | } |
26 | ) { |
27 | const url = new URL(`https://api.stripe.com/v1/terminal/locations`); |
28 |
|
29 | const response = await fetch(url, { |
30 | method: "POST", |
31 | headers: { |
32 | "Content-Type": "application/x-www-form-urlencoded", |
33 | Authorization: "Bearer " + auth.token, |
34 | }, |
35 | body: encodeParams(body), |
36 | }); |
37 | if (!response.ok) { |
38 | const text = await response.text(); |
39 | throw new Error(`${response.status} ${text}`); |
40 | } |
41 | return await response.json(); |
42 | } |
43 |
|
44 | function encodeParams(o: any) { |
45 | function iter(o: any, path: string) { |
46 | if (Array.isArray(o)) { |
47 | o.forEach(function (a) { |
48 | iter(a, path + "[]"); |
49 | }); |
50 | return; |
51 | } |
52 | if (o !== null && typeof o === "object") { |
53 | Object.keys(o).forEach(function (k) { |
54 | iter(o[k], path + "[" + k + "]"); |
55 | }); |
56 | return; |
57 | } |
58 | data.push(path + "=" + o); |
59 | } |
60 | const data: string[] = []; |
61 | Object.keys(o).forEach(function (k) { |
62 | if (o[k] !== undefined) { |
63 | iter(o[k], k); |
64 | } |
65 | }); |
66 | return new URLSearchParams(data.join("&")); |
67 | } |
68 |
|