Skip to content

Commit 979ff2c

Browse files
box-sdk-buildbox-sdk-build
and
box-sdk-build
authored
fix: handle list of strings in metadata filter (box/box-codegen#716) (#597)
Co-authored-by: box-sdk-build <[email protected]>
1 parent 4e26899 commit 979ff2c

4 files changed

+103
-99
lines changed

.codegen.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ "engineHash": "5f0371b", "specHash": "f737b7b", "version": "1.15.1" }
1+
{ "engineHash": "42b7a5b", "specHash": "f737b7b", "version": "1.15.1" }

package-lock.json

+97-96
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/networking/boxNetworkClient.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ export class BoxNetworkClient implements NetworkClient {
212212

213213
if (!ignoreResponseBody) {
214214
if (options.responseFormat === 'binary') {
215-
content = response.body as ByteStream;
215+
content = response.body as unknown as ByteStream;
216216
responseBytesBuffer = new Uint8Array();
217217
} else if (options.responseFormat === 'json') {
218218
responseBytesBuffer = await response.arrayBuffer();

0 commit comments

Comments
 (0)