Skip to content

Commit

Permalink
fix: add session id to method GetValue
Browse files Browse the repository at this point in the history
  • Loading branch information
pawel-id committed Dec 31, 2023
1 parent d1ab293 commit 49cdc93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bir.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export default class Bir {
*/
async value(value: string) {
const body = await template('GetValue', { value })
const response = await this.api({ body })
const response = await this.api({ headers: { sid: this.sid }, body })
return soapResult(response.body)
}

Expand Down

0 comments on commit 49cdc93

Please sign in to comment.