@eka-care/ekascribe-ts-sdk 3.0.28 → 3.0.29

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.mjs +2 -2
  2. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -4975,7 +4975,7 @@ class Jl {
4975
4975
  try {
4976
4976
  const r = n ? `?${n}` : "", s = await this.transport.request({
4977
4977
  method: "GET",
4978
- url: `${this.hosts.voiceV1}/documents/${e}/${r}`
4978
+ url: `${this.hosts.voiceV1}/documents/${e}${r}`
4979
4979
  });
4980
4980
  return { ...s.data, status_code: s.status };
4981
4981
  } catch (r) {
@@ -5022,7 +5022,7 @@ class Jl {
5022
5022
  try {
5023
5023
  const c = await this.transport.request({
5024
5024
  method: "POST",
5025
- url: `${this.hosts.voiceV1}/documents/${a ? `?${a}` : ""}`,
5025
+ url: `${this.hosts.voiceV1}/documents${a ? `?${a}` : ""}`,
5026
5026
  body: {
5027
5027
  session_id: e,
5028
5028
  type: r,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eka-care/ekascribe-ts-sdk",
3
- "version": "3.0.28",
3
+ "version": "3.0.29",
4
4
  "description": "EkaScribe TypeScript SDK - Modern ES2020 build",
5
5
  "main": "dist/index.mjs",
6
6
  "module": "dist/index.mjs",