Skip to content

Commit 8df4f0f

Browse files
feat(api): update via SDK Studio (#28)
1 parent 0af6a97 commit 8df4f0f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ async function main() {
2929
read: ['A1', 'Sheet2!B3', '=SUM(A1:A4)'],
3030
});
3131

32-
console.log(response.apply);
32+
console.log(response.read);
3333
}
3434

3535
main();
@@ -237,7 +237,7 @@ const { data: response, response: raw } = await client.workbooks
237237
.query('YOUR_WORKBOOK_ID', { read: ['A1', 'Sheet2!B3', '=SUM(A1:A4)'] })
238238
.withResponse();
239239
console.log(raw.headers.get('X-My-Header'));
240-
console.log(response.apply);
240+
console.log(response.read);
241241
```
242242

243243
### Logging

0 commit comments

Comments
 (0)