We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
querySerializer
1 parent f3947df commit 4304effCopy full SHA for 4304eff
src/kiln.ts
@@ -15,7 +15,11 @@ export class Kiln {
15
client: Client<paths>;
16
17
constructor({ apiToken, baseUrl }: Config) {
18
- const client = createClient<paths>({ baseUrl, headers: { Authorization: `Bearer ${apiToken}` } });
+ const client = createClient<paths>({
19
+ baseUrl,
20
+ headers: { Authorization: `Bearer ${apiToken}` },
21
+ querySerializer: { array: { explode: false, style: 'form' } },
22
+ });
23
this.fireblocks = new FireblocksService(client);
24
this.client = client;
25
}
0 commit comments