Skip to content

Commit 0d1d43f

Browse files
committed
Fixed issue in compiling sdk ts and gr extension
1 parent 2d414e2 commit 0d1d43f

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1234,7 +1234,8 @@ jobs:
12341234
libclang-dev \
12351235
llvm-dev \
12361236
pkg-config \
1237-
libssl-dev
1237+
libssl-dev \
1238+
libreadline-dev
12381239
12391240
- name: Setup Rust
12401241
uses: dtolnay/rust-toolchain@stable

link/sdks/typescript/tests/readme-examples.test.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ test('README queryWithFiles example posts multipart data with auth header', asyn
251251
assert.equal(fetchCall.options.body.get('params'), JSON.stringify(['att_1']));
252252

253253
const uploaded = fetchCall.options.body.get('file:upload');
254-
assert.ok(uploaded instanceof TestFile);
254+
assert.ok(uploaded instanceof Blob, 'uploaded file should be a Blob');
255255
assert.equal(uploaded.name, 'note.txt');
256256
} finally {
257257
globalThis.fetch = originalFetch;

0 commit comments

Comments
 (0)