retell-sdk 4.66.0 → 5.0.0

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 (550) hide show
  1. package/CHANGELOG.md +4 -1346
  2. package/LICENSE +1 -1
  3. package/README.md +120 -44
  4. package/api-promise.d.mts +2 -0
  5. package/api-promise.d.mts.map +1 -0
  6. package/api-promise.d.ts +2 -0
  7. package/api-promise.d.ts.map +1 -0
  8. package/api-promise.js +6 -0
  9. package/api-promise.js.map +1 -0
  10. package/api-promise.mjs +2 -0
  11. package/api-promise.mjs.map +1 -0
  12. package/client.d.mts +217 -0
  13. package/client.d.mts.map +1 -0
  14. package/client.d.ts +217 -0
  15. package/client.d.ts.map +1 -0
  16. package/client.js +513 -0
  17. package/client.js.map +1 -0
  18. package/client.mjs +509 -0
  19. package/client.mjs.map +1 -0
  20. package/core/api-promise.d.mts +46 -0
  21. package/core/api-promise.d.mts.map +1 -0
  22. package/core/api-promise.d.ts +46 -0
  23. package/core/api-promise.d.ts.map +1 -0
  24. package/core/api-promise.js +74 -0
  25. package/core/api-promise.js.map +1 -0
  26. package/core/api-promise.mjs +70 -0
  27. package/core/api-promise.mjs.map +1 -0
  28. package/core/error.d.mts +46 -0
  29. package/core/error.d.mts.map +1 -0
  30. package/core/error.d.ts +46 -0
  31. package/core/error.d.ts.map +1 -0
  32. package/core/error.js +113 -0
  33. package/core/error.js.map +1 -0
  34. package/core/error.mjs +97 -0
  35. package/core/error.mjs.map +1 -0
  36. package/core/resource.d.mts +6 -0
  37. package/core/resource.d.mts.map +1 -0
  38. package/core/resource.d.ts +6 -0
  39. package/core/resource.d.ts.map +1 -0
  40. package/core/resource.js +11 -0
  41. package/core/resource.js.map +1 -0
  42. package/core/resource.mjs +7 -0
  43. package/core/resource.mjs.map +1 -0
  44. package/core/uploads.d.mts +3 -0
  45. package/core/uploads.d.mts.map +1 -0
  46. package/core/uploads.d.ts +3 -0
  47. package/core/uploads.d.ts.map +1 -0
  48. package/core/uploads.js +6 -0
  49. package/core/uploads.js.map +1 -0
  50. package/core/uploads.mjs +2 -0
  51. package/core/uploads.mjs.map +1 -0
  52. package/error.d.mts +2 -0
  53. package/error.d.mts.map +1 -0
  54. package/error.d.ts +1 -46
  55. package/error.d.ts.map +1 -1
  56. package/error.js +3 -110
  57. package/error.js.map +1 -1
  58. package/error.mjs +1 -96
  59. package/error.mjs.map +1 -1
  60. package/index.d.mts +6 -151
  61. package/index.d.mts.map +1 -0
  62. package/index.d.ts +5 -150
  63. package/index.d.ts.map +1 -1
  64. package/index.js +12 -150
  65. package/index.js.map +1 -1
  66. package/index.mjs +5 -123
  67. package/index.mjs.map +1 -1
  68. package/internal/builtin-types.d.mts +73 -0
  69. package/internal/builtin-types.d.mts.map +1 -0
  70. package/internal/builtin-types.d.ts +73 -0
  71. package/internal/builtin-types.d.ts.map +1 -0
  72. package/internal/builtin-types.js +4 -0
  73. package/internal/builtin-types.js.map +1 -0
  74. package/internal/builtin-types.mjs +3 -0
  75. package/internal/builtin-types.mjs.map +1 -0
  76. package/internal/detect-platform.d.mts +15 -0
  77. package/internal/detect-platform.d.mts.map +1 -0
  78. package/internal/detect-platform.d.ts +15 -0
  79. package/internal/detect-platform.d.ts.map +1 -0
  80. package/internal/detect-platform.js +162 -0
  81. package/internal/detect-platform.js.map +1 -0
  82. package/internal/detect-platform.mjs +157 -0
  83. package/internal/detect-platform.mjs.map +1 -0
  84. package/internal/errors.d.mts +3 -0
  85. package/internal/errors.d.mts.map +1 -0
  86. package/internal/errors.d.ts +3 -0
  87. package/internal/errors.d.ts.map +1 -0
  88. package/internal/errors.js +41 -0
  89. package/internal/errors.js.map +1 -0
  90. package/internal/errors.mjs +36 -0
  91. package/internal/errors.mjs.map +1 -0
  92. package/internal/headers.d.mts +20 -0
  93. package/internal/headers.d.mts.map +1 -0
  94. package/internal/headers.d.ts +20 -0
  95. package/internal/headers.d.ts.map +1 -0
  96. package/internal/headers.js +79 -0
  97. package/internal/headers.js.map +1 -0
  98. package/internal/headers.mjs +74 -0
  99. package/internal/headers.mjs.map +1 -0
  100. package/internal/parse.d.mts +12 -0
  101. package/internal/parse.d.mts.map +1 -0
  102. package/internal/parse.d.ts +12 -0
  103. package/internal/parse.d.ts.map +1 -0
  104. package/internal/parse.js +40 -0
  105. package/internal/parse.js.map +1 -0
  106. package/internal/parse.mjs +37 -0
  107. package/internal/parse.mjs.map +1 -0
  108. package/internal/request-options.d.mts +75 -0
  109. package/internal/request-options.d.mts.map +1 -0
  110. package/internal/request-options.d.ts +75 -0
  111. package/internal/request-options.d.ts.map +1 -0
  112. package/internal/request-options.js +14 -0
  113. package/internal/request-options.js.map +1 -0
  114. package/internal/request-options.mjs +10 -0
  115. package/internal/request-options.mjs.map +1 -0
  116. package/internal/shim-types.d.mts +17 -0
  117. package/internal/shim-types.d.mts.map +1 -0
  118. package/internal/shim-types.d.ts +17 -0
  119. package/internal/shim-types.d.ts.map +1 -0
  120. package/internal/shim-types.js +4 -0
  121. package/internal/shim-types.js.map +1 -0
  122. package/internal/shim-types.mjs +3 -0
  123. package/internal/shim-types.mjs.map +1 -0
  124. package/internal/shims.d.mts +20 -0
  125. package/internal/shims.d.mts.map +1 -0
  126. package/internal/shims.d.ts +20 -0
  127. package/internal/shims.d.ts.map +1 -0
  128. package/internal/shims.js +92 -0
  129. package/internal/shims.js.map +1 -0
  130. package/internal/shims.mjs +85 -0
  131. package/internal/shims.mjs.map +1 -0
  132. package/internal/to-file.d.mts +45 -0
  133. package/internal/to-file.d.mts.map +1 -0
  134. package/internal/to-file.d.ts +45 -0
  135. package/internal/to-file.d.ts.map +1 -0
  136. package/internal/to-file.js +91 -0
  137. package/internal/to-file.js.map +1 -0
  138. package/internal/to-file.mjs +88 -0
  139. package/internal/to-file.mjs.map +1 -0
  140. package/internal/tslib.js +81 -0
  141. package/internal/tslib.mjs +17 -0
  142. package/internal/types.d.mts +69 -0
  143. package/internal/types.d.mts.map +1 -0
  144. package/internal/types.d.ts +69 -0
  145. package/internal/types.d.ts.map +1 -0
  146. package/internal/types.js +4 -0
  147. package/internal/types.js.map +1 -0
  148. package/internal/types.mjs +3 -0
  149. package/internal/types.mjs.map +1 -0
  150. package/internal/uploads.d.mts +42 -0
  151. package/internal/uploads.d.mts.map +1 -0
  152. package/internal/uploads.d.ts +42 -0
  153. package/internal/uploads.d.ts.map +1 -0
  154. package/internal/uploads.js +141 -0
  155. package/internal/uploads.js.map +1 -0
  156. package/internal/uploads.mjs +131 -0
  157. package/internal/uploads.mjs.map +1 -0
  158. package/internal/utils/base64.d.mts +3 -0
  159. package/internal/utils/base64.d.mts.map +1 -0
  160. package/internal/utils/base64.d.ts +3 -0
  161. package/internal/utils/base64.d.ts.map +1 -0
  162. package/internal/utils/base64.js +38 -0
  163. package/internal/utils/base64.js.map +1 -0
  164. package/internal/utils/base64.mjs +33 -0
  165. package/internal/utils/base64.mjs.map +1 -0
  166. package/internal/utils/bytes.d.mts +4 -0
  167. package/internal/utils/bytes.d.mts.map +1 -0
  168. package/internal/utils/bytes.d.ts +4 -0
  169. package/internal/utils/bytes.d.ts.map +1 -0
  170. package/internal/utils/bytes.js +31 -0
  171. package/internal/utils/bytes.js.map +1 -0
  172. package/internal/utils/bytes.mjs +26 -0
  173. package/internal/utils/bytes.mjs.map +1 -0
  174. package/internal/utils/env.d.mts +9 -0
  175. package/internal/utils/env.d.mts.map +1 -0
  176. package/internal/utils/env.d.ts +9 -0
  177. package/internal/utils/env.d.ts.map +1 -0
  178. package/internal/utils/env.js +22 -0
  179. package/internal/utils/env.js.map +1 -0
  180. package/internal/utils/env.mjs +18 -0
  181. package/internal/utils/env.mjs.map +1 -0
  182. package/internal/utils/log.d.mts +37 -0
  183. package/internal/utils/log.d.mts.map +1 -0
  184. package/internal/utils/log.d.ts +37 -0
  185. package/internal/utils/log.d.ts.map +1 -0
  186. package/internal/utils/log.js +85 -0
  187. package/internal/utils/log.js.map +1 -0
  188. package/internal/utils/log.mjs +79 -0
  189. package/internal/utils/log.mjs.map +1 -0
  190. package/internal/utils/path.d.mts +15 -0
  191. package/internal/utils/path.d.mts.map +1 -0
  192. package/internal/utils/path.d.ts +15 -0
  193. package/internal/utils/path.d.ts.map +1 -0
  194. package/internal/utils/path.js +79 -0
  195. package/internal/utils/path.js.map +1 -0
  196. package/internal/utils/path.mjs +74 -0
  197. package/internal/utils/path.mjs.map +1 -0
  198. package/internal/utils/sleep.d.mts +2 -0
  199. package/internal/utils/sleep.d.mts.map +1 -0
  200. package/internal/utils/sleep.d.ts +2 -0
  201. package/internal/utils/sleep.d.ts.map +1 -0
  202. package/internal/utils/sleep.js +7 -0
  203. package/internal/utils/sleep.js.map +1 -0
  204. package/internal/utils/sleep.mjs +3 -0
  205. package/internal/utils/sleep.mjs.map +1 -0
  206. package/internal/utils/uuid.d.mts +5 -0
  207. package/internal/utils/uuid.d.mts.map +1 -0
  208. package/internal/utils/uuid.d.ts +5 -0
  209. package/internal/utils/uuid.d.ts.map +1 -0
  210. package/internal/utils/uuid.js +19 -0
  211. package/internal/utils/uuid.js.map +1 -0
  212. package/internal/utils/uuid.mjs +15 -0
  213. package/internal/utils/uuid.mjs.map +1 -0
  214. package/internal/utils/values.d.mts +18 -0
  215. package/internal/utils/values.d.mts.map +1 -0
  216. package/internal/utils/values.d.ts +18 -0
  217. package/internal/utils/values.d.ts.map +1 -0
  218. package/internal/utils/values.js +112 -0
  219. package/internal/utils/values.js.map +1 -0
  220. package/internal/utils/values.mjs +94 -0
  221. package/internal/utils/values.mjs.map +1 -0
  222. package/internal/utils.d.mts +7 -0
  223. package/internal/utils.d.mts.map +1 -0
  224. package/internal/utils.d.ts +7 -0
  225. package/internal/utils.d.ts.map +1 -0
  226. package/internal/utils.js +11 -0
  227. package/internal/utils.js.map +1 -0
  228. package/internal/utils.mjs +8 -0
  229. package/internal/utils.mjs.map +1 -0
  230. package/package.json +101 -65
  231. package/resource.d.mts +2 -0
  232. package/resource.d.mts.map +1 -0
  233. package/resource.d.ts +1 -5
  234. package/resource.d.ts.map +1 -1
  235. package/resource.js +3 -8
  236. package/resource.js.map +1 -1
  237. package/resource.mjs +1 -6
  238. package/resource.mjs.map +1 -1
  239. package/resources/agent.d.mts +1803 -0
  240. package/resources/agent.d.mts.map +1 -0
  241. package/resources/agent.d.ts +374 -78
  242. package/resources/agent.d.ts.map +1 -1
  243. package/resources/agent.js +33 -20
  244. package/resources/agent.js.map +1 -1
  245. package/resources/agent.mjs +33 -20
  246. package/resources/agent.mjs.map +1 -1
  247. package/resources/batch-call.d.mts +926 -0
  248. package/resources/batch-call.d.mts.map +1 -0
  249. package/resources/batch-call.d.ts +219 -27
  250. package/resources/batch-call.d.ts.map +1 -1
  251. package/resources/batch-call.js +6 -2
  252. package/resources/batch-call.js.map +1 -1
  253. package/resources/batch-call.mjs +6 -2
  254. package/resources/batch-call.mjs.map +1 -1
  255. package/resources/call.d.mts +4280 -0
  256. package/resources/call.d.mts.map +1 -0
  257. package/resources/call.d.ts +553 -107
  258. package/resources/call.d.ts.map +1 -1
  259. package/resources/call.js +20 -10
  260. package/resources/call.js.map +1 -1
  261. package/resources/call.mjs +20 -10
  262. package/resources/call.mjs.map +1 -1
  263. package/resources/chat-agent.d.mts +836 -0
  264. package/resources/chat-agent.d.mts.map +1 -0
  265. package/resources/chat-agent.d.ts +118 -23
  266. package/resources/chat-agent.d.ts.map +1 -1
  267. package/resources/chat-agent.js +33 -20
  268. package/resources/chat-agent.js.map +1 -1
  269. package/resources/chat-agent.mjs +33 -20
  270. package/resources/chat-agent.mjs.map +1 -1
  271. package/resources/chat.d.mts +607 -0
  272. package/resources/chat.d.mts.map +1 -0
  273. package/resources/chat.d.ts +82 -30
  274. package/resources/chat.d.ts.map +1 -1
  275. package/resources/chat.js +21 -11
  276. package/resources/chat.js.map +1 -1
  277. package/resources/chat.mjs +21 -11
  278. package/resources/chat.mjs.map +1 -1
  279. package/resources/concurrency.d.mts +51 -0
  280. package/resources/concurrency.d.mts.map +1 -0
  281. package/resources/concurrency.d.ts +14 -3
  282. package/resources/concurrency.d.ts.map +1 -1
  283. package/resources/concurrency.js +1 -1
  284. package/resources/concurrency.js.map +1 -1
  285. package/resources/concurrency.mjs +1 -1
  286. package/resources/concurrency.mjs.map +1 -1
  287. package/resources/conversation-flow-component.d.mts +11838 -0
  288. package/resources/conversation-flow-component.d.mts.map +1 -0
  289. package/resources/conversation-flow-component.d.ts +6600 -2597
  290. package/resources/conversation-flow-component.d.ts.map +1 -1
  291. package/resources/conversation-flow-component.js +10 -8
  292. package/resources/conversation-flow-component.js.map +1 -1
  293. package/resources/conversation-flow-component.mjs +10 -8
  294. package/resources/conversation-flow-component.mjs.map +1 -1
  295. package/resources/conversation-flow.d.mts +23851 -0
  296. package/resources/conversation-flow.d.mts.map +1 -0
  297. package/resources/conversation-flow.d.ts +15877 -7958
  298. package/resources/conversation-flow.d.ts.map +1 -1
  299. package/resources/conversation-flow.js +30 -15
  300. package/resources/conversation-flow.js.map +1 -1
  301. package/resources/conversation-flow.mjs +30 -15
  302. package/resources/conversation-flow.mjs.map +1 -1
  303. package/resources/index.d.mts +15 -0
  304. package/resources/index.d.mts.map +1 -0
  305. package/resources/index.d.ts +4 -4
  306. package/resources/index.d.ts.map +1 -1
  307. package/resources/index.js.map +1 -1
  308. package/resources/index.mjs +2 -2
  309. package/resources/index.mjs.map +1 -1
  310. package/resources/knowledge-base.d.mts +228 -0
  311. package/resources/knowledge-base.d.mts.map +1 -0
  312. package/resources/knowledge-base.d.ts +23 -14
  313. package/resources/knowledge-base.d.ts.map +1 -1
  314. package/resources/knowledge-base.js +16 -36
  315. package/resources/knowledge-base.js.map +1 -1
  316. package/resources/knowledge-base.mjs +16 -13
  317. package/resources/knowledge-base.mjs.map +1 -1
  318. package/resources/llm.d.mts +5306 -0
  319. package/resources/llm.d.mts.map +1 -0
  320. package/resources/llm.d.ts +1189 -477
  321. package/resources/llm.d.ts.map +1 -1
  322. package/resources/llm.js +28 -15
  323. package/resources/llm.js.map +1 -1
  324. package/resources/llm.mjs +28 -15
  325. package/resources/llm.mjs.map +1 -1
  326. package/resources/mcp-tool.d.mts +45 -0
  327. package/resources/mcp-tool.d.mts.map +1 -0
  328. package/resources/mcp-tool.d.ts +8 -3
  329. package/resources/mcp-tool.d.ts.map +1 -1
  330. package/resources/mcp-tool.js +4 -3
  331. package/resources/mcp-tool.js.map +1 -1
  332. package/resources/mcp-tool.mjs +4 -3
  333. package/resources/mcp-tool.mjs.map +1 -1
  334. package/resources/phone-number.d.mts +595 -0
  335. package/resources/phone-number.d.mts.map +1 -0
  336. package/resources/phone-number.d.ts +332 -13
  337. package/resources/phone-number.d.ts.map +1 -1
  338. package/resources/phone-number.js +7 -5
  339. package/resources/phone-number.js.map +1 -1
  340. package/resources/phone-number.mjs +7 -5
  341. package/resources/phone-number.mjs.map +1 -1
  342. package/resources/tests.d.mts +561 -0
  343. package/resources/tests.d.mts.map +1 -0
  344. package/resources/tests.d.ts +437 -7
  345. package/resources/tests.d.ts.map +1 -1
  346. package/resources/tests.js +60 -1
  347. package/resources/tests.js.map +1 -1
  348. package/resources/tests.mjs +60 -1
  349. package/resources/tests.mjs.map +1 -1
  350. package/resources/voice.d.mts +130 -0
  351. package/resources/voice.d.mts.map +1 -0
  352. package/resources/voice.d.ts +89 -6
  353. package/resources/voice.d.ts.map +1 -1
  354. package/resources/voice.js +23 -3
  355. package/resources/voice.js.map +1 -1
  356. package/resources/voice.mjs +23 -3
  357. package/resources/voice.mjs.map +1 -1
  358. package/resources.d.mts +2 -0
  359. package/resources.d.mts.map +1 -0
  360. package/resources.d.ts.map +1 -1
  361. package/resources.js +2 -15
  362. package/resources.js.map +1 -1
  363. package/src/api-promise.ts +2 -0
  364. package/src/client.ts +1005 -0
  365. package/src/core/README.md +3 -0
  366. package/src/core/api-promise.ts +92 -0
  367. package/src/core/error.ts +130 -0
  368. package/src/core/resource.ts +11 -0
  369. package/src/core/uploads.ts +2 -0
  370. package/src/error.ts +2 -130
  371. package/src/index.ts +5 -405
  372. package/src/internal/README.md +3 -0
  373. package/src/internal/builtin-types.ts +93 -0
  374. package/src/internal/detect-platform.ts +196 -0
  375. package/src/internal/errors.ts +33 -0
  376. package/src/internal/headers.ts +97 -0
  377. package/src/internal/parse.ts +56 -0
  378. package/src/internal/request-options.ts +91 -0
  379. package/src/internal/shim-types.ts +26 -0
  380. package/src/internal/shims.ts +107 -0
  381. package/src/internal/to-file.ts +154 -0
  382. package/src/internal/types.ts +95 -0
  383. package/src/internal/uploads.ts +187 -0
  384. package/src/internal/utils/base64.ts +40 -0
  385. package/src/internal/utils/bytes.ts +32 -0
  386. package/src/internal/utils/env.ts +18 -0
  387. package/src/internal/utils/log.ts +126 -0
  388. package/src/internal/utils/path.ts +88 -0
  389. package/src/internal/utils/sleep.ts +3 -0
  390. package/src/internal/utils/uuid.ts +17 -0
  391. package/src/internal/utils/values.ts +105 -0
  392. package/src/internal/utils.ts +8 -0
  393. package/src/resource.ts +2 -11
  394. package/src/resources/agent.ts +529 -95
  395. package/src/resources/batch-call.ts +291 -24
  396. package/src/resources/call.ts +754 -105
  397. package/src/resources/chat-agent.ts +191 -41
  398. package/src/resources/chat.ts +108 -40
  399. package/src/resources/concurrency.ts +16 -3
  400. package/src/resources/conversation-flow-component.ts +9469 -4285
  401. package/src/resources/conversation-flow.ts +21572 -11318
  402. package/src/resources/index.ts +25 -2
  403. package/src/resources/knowledge-base.ts +40 -28
  404. package/src/resources/llm.ts +1422 -599
  405. package/src/resources/mcp-tool.ts +13 -6
  406. package/src/resources/phone-number.ts +410 -18
  407. package/src/resources/tests.ts +608 -9
  408. package/src/resources/voice.ts +122 -7
  409. package/src/tsconfig.json +2 -2
  410. package/src/uploads.ts +2 -259
  411. package/src/version.ts +1 -1
  412. package/uploads.d.mts +2 -0
  413. package/uploads.d.mts.map +1 -0
  414. package/uploads.d.ts +1 -74
  415. package/uploads.d.ts.map +1 -1
  416. package/uploads.js +3 -175
  417. package/uploads.js.map +1 -1
  418. package/uploads.mjs +1 -164
  419. package/uploads.mjs.map +1 -1
  420. package/version.d.mts +2 -0
  421. package/version.d.mts.map +1 -0
  422. package/version.d.ts +1 -1
  423. package/version.d.ts.map +1 -1
  424. package/version.js +1 -1
  425. package/version.js.map +1 -1
  426. package/version.mjs +1 -1
  427. package/version.mjs.map +1 -1
  428. package/_shims/MultipartBody.d.ts +0 -9
  429. package/_shims/MultipartBody.d.ts.map +0 -1
  430. package/_shims/MultipartBody.js +0 -16
  431. package/_shims/MultipartBody.js.map +0 -1
  432. package/_shims/MultipartBody.mjs +0 -12
  433. package/_shims/MultipartBody.mjs.map +0 -1
  434. package/_shims/README.md +0 -46
  435. package/_shims/auto/runtime-bun.d.ts +0 -5
  436. package/_shims/auto/runtime-bun.d.ts.map +0 -1
  437. package/_shims/auto/runtime-bun.js +0 -21
  438. package/_shims/auto/runtime-bun.js.map +0 -1
  439. package/_shims/auto/runtime-bun.mjs +0 -2
  440. package/_shims/auto/runtime-bun.mjs.map +0 -1
  441. package/_shims/auto/runtime-node.d.ts +0 -5
  442. package/_shims/auto/runtime-node.d.ts.map +0 -1
  443. package/_shims/auto/runtime-node.js +0 -21
  444. package/_shims/auto/runtime-node.js.map +0 -1
  445. package/_shims/auto/runtime-node.mjs +0 -2
  446. package/_shims/auto/runtime-node.mjs.map +0 -1
  447. package/_shims/auto/runtime.d.ts +0 -5
  448. package/_shims/auto/runtime.d.ts.map +0 -1
  449. package/_shims/auto/runtime.js +0 -21
  450. package/_shims/auto/runtime.js.map +0 -1
  451. package/_shims/auto/runtime.mjs +0 -2
  452. package/_shims/auto/runtime.mjs.map +0 -1
  453. package/_shims/auto/types-node.d.ts +0 -5
  454. package/_shims/auto/types-node.d.ts.map +0 -1
  455. package/_shims/auto/types-node.js +0 -21
  456. package/_shims/auto/types-node.js.map +0 -1
  457. package/_shims/auto/types-node.mjs +0 -2
  458. package/_shims/auto/types-node.mjs.map +0 -1
  459. package/_shims/auto/types.d.ts +0 -101
  460. package/_shims/auto/types.js +0 -3
  461. package/_shims/auto/types.mjs +0 -3
  462. package/_shims/bun-runtime.d.ts +0 -6
  463. package/_shims/bun-runtime.d.ts.map +0 -1
  464. package/_shims/bun-runtime.js +0 -14
  465. package/_shims/bun-runtime.js.map +0 -1
  466. package/_shims/bun-runtime.mjs +0 -10
  467. package/_shims/bun-runtime.mjs.map +0 -1
  468. package/_shims/index.d.ts +0 -83
  469. package/_shims/index.js +0 -17
  470. package/_shims/index.mjs +0 -11
  471. package/_shims/manual-types.d.ts +0 -12
  472. package/_shims/manual-types.js +0 -3
  473. package/_shims/manual-types.mjs +0 -3
  474. package/_shims/node-runtime.d.ts +0 -3
  475. package/_shims/node-runtime.d.ts.map +0 -1
  476. package/_shims/node-runtime.js +0 -89
  477. package/_shims/node-runtime.js.map +0 -1
  478. package/_shims/node-runtime.mjs +0 -56
  479. package/_shims/node-runtime.mjs.map +0 -1
  480. package/_shims/node-types.d.ts +0 -42
  481. package/_shims/node-types.js +0 -3
  482. package/_shims/node-types.mjs +0 -3
  483. package/_shims/registry.d.ts +0 -37
  484. package/_shims/registry.d.ts.map +0 -1
  485. package/_shims/registry.js +0 -41
  486. package/_shims/registry.js.map +0 -1
  487. package/_shims/registry.mjs +0 -37
  488. package/_shims/registry.mjs.map +0 -1
  489. package/_shims/web-runtime.d.ts +0 -5
  490. package/_shims/web-runtime.d.ts.map +0 -1
  491. package/_shims/web-runtime.js +0 -78
  492. package/_shims/web-runtime.js.map +0 -1
  493. package/_shims/web-runtime.mjs +0 -71
  494. package/_shims/web-runtime.mjs.map +0 -1
  495. package/_shims/web-types.d.ts +0 -83
  496. package/_shims/web-types.js +0 -3
  497. package/_shims/web-types.mjs +0 -3
  498. package/core.d.ts +0 -255
  499. package/core.d.ts.map +0 -1
  500. package/core.js +0 -924
  501. package/core.js.map +0 -1
  502. package/core.mjs +0 -892
  503. package/core.mjs.map +0 -1
  504. package/lib/webhook_auth.d.ts +0 -27
  505. package/lib/webhook_auth.d.ts.map +0 -1
  506. package/lib/webhook_auth.js +0 -50
  507. package/lib/webhook_auth.js.map +0 -1
  508. package/lib/webhook_auth.mjs +0 -45
  509. package/lib/webhook_auth.mjs.map +0 -1
  510. package/shims/node.d.ts +0 -30
  511. package/shims/node.d.ts.map +0 -1
  512. package/shims/node.js +0 -31
  513. package/shims/node.js.map +0 -1
  514. package/shims/node.mjs +0 -5
  515. package/shims/node.mjs.map +0 -1
  516. package/shims/web.d.ts +0 -26
  517. package/shims/web.d.ts.map +0 -1
  518. package/shims/web.js +0 -31
  519. package/shims/web.js.map +0 -1
  520. package/shims/web.mjs +0 -5
  521. package/shims/web.mjs.map +0 -1
  522. package/src/_shims/MultipartBody.ts +0 -9
  523. package/src/_shims/README.md +0 -46
  524. package/src/_shims/auto/runtime-bun.ts +0 -4
  525. package/src/_shims/auto/runtime-node.ts +0 -4
  526. package/src/_shims/auto/runtime.ts +0 -4
  527. package/src/_shims/auto/types-node.ts +0 -4
  528. package/src/_shims/auto/types.d.ts +0 -101
  529. package/src/_shims/auto/types.js +0 -3
  530. package/src/_shims/auto/types.mjs +0 -3
  531. package/src/_shims/bun-runtime.ts +0 -14
  532. package/src/_shims/index.d.ts +0 -83
  533. package/src/_shims/index.js +0 -17
  534. package/src/_shims/index.mjs +0 -11
  535. package/src/_shims/manual-types.d.ts +0 -12
  536. package/src/_shims/manual-types.js +0 -3
  537. package/src/_shims/manual-types.mjs +0 -3
  538. package/src/_shims/node-runtime.ts +0 -81
  539. package/src/_shims/node-types.d.ts +0 -42
  540. package/src/_shims/node-types.js +0 -3
  541. package/src/_shims/node-types.mjs +0 -3
  542. package/src/_shims/registry.ts +0 -67
  543. package/src/_shims/web-runtime.ts +0 -103
  544. package/src/_shims/web-types.d.ts +0 -83
  545. package/src/_shims/web-types.js +0 -3
  546. package/src/_shims/web-types.mjs +0 -3
  547. package/src/core.ts +0 -1236
  548. package/src/lib/webhook_auth.ts +0 -69
  549. package/src/shims/node.ts +0 -50
  550. package/src/shims/web.ts +0 -50
package/CHANGELOG.md CHANGED
@@ -1,1356 +1,14 @@
1
1
  # Changelog
2
2
 
3
- ## 4.66.0 (2025-12-08)
3
+ ## 5.0.0 (2026-02-17)
4
4
 
5
- Full Changelog: [v4.65.0...v4.66.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.65.0...v4.66.0)
5
+ Full Changelog: [v4.78.0...v5.0.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.78.0...v5.0.0)
6
6
 
7
7
  ### Features
8
8
 
9
- * **api:** api update ([49835e9](https://github.com/RetellAI/retell-typescript-sdk/commit/49835e946cdc51b67da9b14043685b3a6f08bb8a))
10
-
11
-
12
- ### Bug Fixes
13
-
14
- * **mcp:** correct code tool API endpoint ([70f0530](https://github.com/RetellAI/retell-typescript-sdk/commit/70f05302c067868f33e177f989eacf6e63bbc5bf))
15
- * **mcp:** return correct lines on typescript errors ([87ddc78](https://github.com/RetellAI/retell-typescript-sdk/commit/87ddc784cbf9e2a584d6818781910fab4968e904))
16
-
17
-
18
- ### Chores
19
-
20
- * **internal:** codegen related update ([952282d](https://github.com/RetellAI/retell-typescript-sdk/commit/952282d2523940386915af18180950dbd4a6a51f))
21
- * **internal:** codegen related update ([bae0a2b](https://github.com/RetellAI/retell-typescript-sdk/commit/bae0a2bd1bb3e419d447f64849bf870b4493629b))
22
-
23
- ## 4.65.0 (2025-12-04)
24
-
25
- Full Changelog: [v4.64.0...v4.65.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.64.0...v4.65.0)
26
-
27
- ### Features
28
-
29
- * **api:** api update ([38c6494](https://github.com/RetellAI/retell-typescript-sdk/commit/38c6494566a07c618732c6ecce5d1535c7a9e53a))
30
-
31
- ## 4.64.0 (2025-12-03)
32
-
33
- Full Changelog: [v4.63.0...v4.64.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.63.0...v4.64.0)
34
-
35
- ### Features
36
-
37
- * **api:** api update ([96cb7f0](https://github.com/RetellAI/retell-typescript-sdk/commit/96cb7f0e950ceb7b34fa9b2c28def1ed41e3ea48))
38
-
39
- ## 4.63.0 (2025-12-02)
40
-
41
- Full Changelog: [v4.62.0...v4.63.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.62.0...v4.63.0)
42
-
43
- ### Features
44
-
45
- * **api:** api update ([2074bad](https://github.com/RetellAI/retell-typescript-sdk/commit/2074badcfaecd562fad28ca5fdff84791ec488af))
46
-
47
- ## 4.62.0 (2025-12-02)
48
-
49
- Full Changelog: [v4.61.0...v4.62.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.61.0...v4.62.0)
50
-
51
- ### Features
52
-
53
- * **api:** api update ([e2ca555](https://github.com/RetellAI/retell-typescript-sdk/commit/e2ca55563a3aeba9b36404d62f14f57456b5c042))
54
- * **api:** api update ([74fe44c](https://github.com/RetellAI/retell-typescript-sdk/commit/74fe44c476b2a2b85ed518a46fa7e554c108fde6))
55
- * **api:** api update ([28c94ce](https://github.com/RetellAI/retell-typescript-sdk/commit/28c94ce926382c660cc34ed5079ef6857a0fb085))
56
-
57
- ## 4.61.0 (2025-11-26)
58
-
59
- Full Changelog: [v4.60.0...v4.61.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.60.0...v4.61.0)
60
-
61
- ### Features
62
-
63
- * **api:** api update ([1a7352f](https://github.com/RetellAI/retell-typescript-sdk/commit/1a7352f30631011d29ce3fe06ffa12f7c22d038c))
64
-
65
- ## 4.60.0 (2025-11-26)
66
-
67
- Full Changelog: [v4.59.0...v4.60.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.59.0...v4.60.0)
68
-
69
- ### Features
70
-
71
- * **api:** api update ([0315747](https://github.com/RetellAI/retell-typescript-sdk/commit/0315747397129ed30d28399f9ad3ef6e88359224))
72
- * **api:** api update ([a58b7d1](https://github.com/RetellAI/retell-typescript-sdk/commit/a58b7d1b0e0c02b6dab2932bebabcac55dba4756))
73
- * **api:** api update ([51d5e80](https://github.com/RetellAI/retell-typescript-sdk/commit/51d5e80d8ad240ae1cd57f7abd47b1d249549745))
74
- * **api:** api update ([aaf0b08](https://github.com/RetellAI/retell-typescript-sdk/commit/aaf0b08ecbc1de93c5ae1410f7693c75b08a0fb9))
75
-
76
- ## 4.59.0 (2025-11-21)
77
-
78
- Full Changelog: [v4.58.0...v4.59.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.58.0...v4.59.0)
79
-
80
- ### Features
81
-
82
- * **api:** api update ([bfb4458](https://github.com/RetellAI/retell-typescript-sdk/commit/bfb4458eb99c1dfda0c89ade4f63b7512da4d26f))
83
- * **api:** api update ([6f40b11](https://github.com/RetellAI/retell-typescript-sdk/commit/6f40b1179b9ab4b61f551592e13cdd6a2b671eec))
84
- * **api:** api update ([cbf5fa9](https://github.com/RetellAI/retell-typescript-sdk/commit/cbf5fa9b1240f3dbf79fec5c5ca18533b0505b45))
85
-
86
- ## 4.58.0 (2025-11-14)
87
-
88
- Full Changelog: [v4.57.0...v4.58.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.57.0...v4.58.0)
89
-
90
- ### Features
91
-
92
- * **api:** api update ([3ec56c2](https://github.com/RetellAI/retell-typescript-sdk/commit/3ec56c2c88ada6afd1f903607b05aaf1141918bb))
93
- * **api:** api update ([3379794](https://github.com/RetellAI/retell-typescript-sdk/commit/3379794bd7687f35faef897bafa15ad9ace3f037))
94
-
95
- ## 4.57.0 (2025-11-05)
96
-
97
- Full Changelog: [v4.56.0...v4.57.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.56.0...v4.57.0)
98
-
99
- ### Features
100
-
101
- * **api:** api update ([a68e6bc](https://github.com/RetellAI/retell-typescript-sdk/commit/a68e6bcc2fd159af261cb9296f904c99094b262e))
102
- * **api:** api update ([6590d7d](https://github.com/RetellAI/retell-typescript-sdk/commit/6590d7d9efc3c6ce1129730174ee1378237b1145))
103
- * **api:** api update ([0cbbff2](https://github.com/RetellAI/retell-typescript-sdk/commit/0cbbff28c0eb7912a3e6149eccf998a8706d74ed))
104
- * **api:** api update ([be8a7bb](https://github.com/RetellAI/retell-typescript-sdk/commit/be8a7bbc0990c691e80047fd50d95c829d9df9be))
105
-
106
- ## 4.56.0 (2025-10-29)
107
-
108
- Full Changelog: [v4.55.0...v4.56.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.55.0...v4.56.0)
109
-
110
- ### Features
111
-
112
- * **api:** api update ([87ab721](https://github.com/RetellAI/retell-typescript-sdk/commit/87ab7210d50e0eb8af166a5fe96d473e6ff0266f))
113
-
114
- ## 4.55.0 (2025-10-23)
115
-
116
- Full Changelog: [v4.54.0...v4.55.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.54.0...v4.55.0)
117
-
118
- ### Features
119
-
120
- * **api:** api update ([ecc1ee5](https://github.com/RetellAI/retell-typescript-sdk/commit/ecc1ee5c0be1435eb91c05077d7a7f8355a06f7d))
121
-
122
- ## 4.54.0 (2025-10-22)
123
-
124
- Full Changelog: [v4.53.0...v4.54.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.53.0...v4.54.0)
125
-
126
- ### Features
127
-
128
- * **api:** api update ([254b12a](https://github.com/RetellAI/retell-typescript-sdk/commit/254b12a5b24020b014d076c6661b43ab2b250a63))
129
- * **api:** api update ([a06f51d](https://github.com/RetellAI/retell-typescript-sdk/commit/a06f51d13f1165ebe1ae2e6dc6f3adad19cc6db7))
130
-
131
- ## 4.53.0 (2025-10-19)
132
-
133
- Full Changelog: [v4.52.0...v4.53.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.52.0...v4.53.0)
134
-
135
- ### Features
136
-
137
- * **api:** api update ([c8c0832](https://github.com/RetellAI/retell-typescript-sdk/commit/c8c0832badb2ddaeb1fe11246d680531a03994b6))
138
-
139
- ## 4.52.0 (2025-10-19)
140
-
141
- Full Changelog: [v4.51.0...v4.52.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.51.0...v4.52.0)
142
-
143
- ### Features
144
-
145
- * **api:** api update ([dcde1b2](https://github.com/RetellAI/retell-typescript-sdk/commit/dcde1b21d94faae3b749865e7edab3da09755c34))
146
-
147
- ## 4.51.0 (2025-10-19)
148
-
149
- Full Changelog: [v4.50.0...v4.51.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.50.0...v4.51.0)
150
-
151
- ### Features
152
-
153
- * **api:** api update ([e1dbb59](https://github.com/RetellAI/retell-typescript-sdk/commit/e1dbb590d5ef7f7d0b8b575dee41cc032ae582e2))
154
- * **api:** api update ([d56c0d3](https://github.com/RetellAI/retell-typescript-sdk/commit/d56c0d32b07f1ba571db7b03fd42920b3299c29f))
155
- * **api:** api update ([300cdbf](https://github.com/RetellAI/retell-typescript-sdk/commit/300cdbf72296402f87862671b83ad34314cd5ffc))
156
- * **api:** api update ([2368c29](https://github.com/RetellAI/retell-typescript-sdk/commit/2368c29564eeee1f85a8ab0b3a66a455909e54c5))
157
-
158
- ## 4.50.0 (2025-10-13)
159
-
160
- Full Changelog: [v4.49.0...v4.50.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.49.0...v4.50.0)
161
-
162
- ### Features
163
-
164
- * **api:** api update ([8989832](https://github.com/RetellAI/retell-typescript-sdk/commit/898983213f4f7e0d90e47a663de22eb52a7b09f3))
165
- * **api:** api update ([51a3d02](https://github.com/RetellAI/retell-typescript-sdk/commit/51a3d020f1591f8c44d94841d725c7c10fa34942))
166
- * **api:** api update ([0b46faa](https://github.com/RetellAI/retell-typescript-sdk/commit/0b46faaa5a52b244a3c571313d357644417b3157))
167
- * **api:** api update ([365cbec](https://github.com/RetellAI/retell-typescript-sdk/commit/365cbec1e5514a23bd91f64c92a7c5ecf89bca6e))
168
- * **api:** api update ([624c79c](https://github.com/RetellAI/retell-typescript-sdk/commit/624c79c89036d588399a4afadd9e61ca82d4cd23))
169
-
170
-
171
- ### Performance Improvements
172
-
173
- * faster formatting ([b719dd8](https://github.com/RetellAI/retell-typescript-sdk/commit/b719dd8dfe9315a09104a4e4b6282e3bca522625))
174
-
175
-
176
- ### Chores
177
-
178
- * **internal:** codegen related update ([5f24457](https://github.com/RetellAI/retell-typescript-sdk/commit/5f2445765caaf36ecb08d19093ae939f9fa50a2e))
179
- * **internal:** fix incremental formatting in some cases ([c32aca7](https://github.com/RetellAI/retell-typescript-sdk/commit/c32aca702d5807e8dcb8933e665c0544a855b68b))
180
- * **internal:** ignore .eslintcache ([683b130](https://github.com/RetellAI/retell-typescript-sdk/commit/683b130c62d6e83ff578486289ab85d1349185d5))
181
- * **internal:** remove .eslintcache ([adc1f24](https://github.com/RetellAI/retell-typescript-sdk/commit/adc1f24d7670cb0b1e97bae9adecec24e412b4bd))
182
- * **internal:** remove deprecated `compilerOptions.baseUrl` from tsconfig.json ([751dd50](https://github.com/RetellAI/retell-typescript-sdk/commit/751dd50445ab8fcd5abcb112e500c8b57684d834))
183
- * **internal:** use npm pack for build uploads ([2de8f44](https://github.com/RetellAI/retell-typescript-sdk/commit/2de8f44f9c6db9515d0c09dfaf11529888ea0f3c))
184
- * **tests:** disable tests with false negative ([3299eb0](https://github.com/RetellAI/retell-typescript-sdk/commit/3299eb054dbc6d797bc94ade5d20a1358ca8eb97))
185
-
186
- ## 4.49.0 (2025-09-24)
187
-
188
- Full Changelog: [v4.48.0...v4.49.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.48.0...v4.49.0)
189
-
190
- ### Features
191
-
192
- * **api:** api update ([7abc1b2](https://github.com/RetellAI/retell-typescript-sdk/commit/7abc1b2183f9712918750b2aa301d813c5d0176b))
193
-
194
-
195
- ### Chores
196
-
197
- * do not install brew dependencies in ./scripts/bootstrap by default ([9475f5d](https://github.com/RetellAI/retell-typescript-sdk/commit/9475f5d33ff68c03c2d2e972893122c40bf0937b))
198
-
199
- ## 4.48.0 (2025-09-18)
200
-
201
- Full Changelog: [v4.47.0...v4.48.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.47.0...v4.48.0)
202
-
203
- ### Features
204
-
205
- * **api:** api update ([586b083](https://github.com/RetellAI/retell-typescript-sdk/commit/586b0833dc380381b8d699c70111f26e3d49b4a0))
206
- * **api:** api update ([c965bd9](https://github.com/RetellAI/retell-typescript-sdk/commit/c965bd9e50577e173c347c34307650263d1aee8e))
207
-
208
-
209
- ### Bug Fixes
210
-
211
- * coerce nullable values to undefined ([89f8c50](https://github.com/RetellAI/retell-typescript-sdk/commit/89f8c503f4a5e4efa64af9321b8865157cbae804))
212
-
213
-
214
- ### Chores
215
-
216
- * ci build action ([65e6f62](https://github.com/RetellAI/retell-typescript-sdk/commit/65e6f627dc34bbd063242aaeb0df93531c25b083))
217
-
218
- ## 4.47.0 (2025-09-08)
219
-
220
- Full Changelog: [v4.46.0...v4.47.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.46.0...v4.47.0)
221
-
222
- ### Features
223
-
224
- * **api:** api update ([04e6dd8](https://github.com/RetellAI/retell-typescript-sdk/commit/04e6dd8e4f4e4a81cbcc0c5387068b4ac1914f05))
225
- * **api:** api update ([755b3ef](https://github.com/RetellAI/retell-typescript-sdk/commit/755b3ef117d140e4b14ac19ffa06a9e8eaa63de9))
226
-
227
- ## 4.46.0 (2025-09-05)
228
-
229
- Full Changelog: [v4.45.0...v4.46.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.45.0...v4.46.0)
230
-
231
- ### Features
232
-
233
- * **api:** api update ([1e8bb19](https://github.com/RetellAI/retell-typescript-sdk/commit/1e8bb19d24b2fd1054dc43d317a2fef04f365204))
234
- * **api:** api update ([e675008](https://github.com/RetellAI/retell-typescript-sdk/commit/e67500834bc100b9d4478486de77eecc5982c2d2))
235
-
236
- ## 4.45.0 (2025-09-04)
237
-
238
- Full Changelog: [v4.44.0...v4.45.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.44.0...v4.45.0)
239
-
240
- ### Features
241
-
242
- * **api:** api update ([7198e58](https://github.com/RetellAI/retell-typescript-sdk/commit/7198e5821311a46e2298a6137e3a2e3eb1ab3aef))
243
- * **api:** api update ([92aa974](https://github.com/RetellAI/retell-typescript-sdk/commit/92aa974b51cde8589f9e6361ac431be87c130317))
244
-
245
- ## 4.44.0 (2025-09-03)
246
-
247
- Full Changelog: [v4.43.0...v4.44.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.43.0...v4.44.0)
248
-
249
- ### Features
250
-
251
- * **api:** api update ([654dd48](https://github.com/RetellAI/retell-typescript-sdk/commit/654dd4809036eba84cbab538bd19a96f2e46a5a3))
252
- * **api:** api update ([d9be269](https://github.com/RetellAI/retell-typescript-sdk/commit/d9be2696ed88e1d52c42ef08161b7f88f0d0a835))
253
- * **api:** api update ([d3bff2b](https://github.com/RetellAI/retell-typescript-sdk/commit/d3bff2b30e139886a25a8307c8e28e5984e7daa0))
254
- * **api:** api update ([5cc8838](https://github.com/RetellAI/retell-typescript-sdk/commit/5cc88381bfa32136d7c61629f0c3bc149e402bfd))
255
- * **api:** api update ([aa286ab](https://github.com/RetellAI/retell-typescript-sdk/commit/aa286abadcac34f64bc95ba0a4a348414a3371de))
256
- * **api:** api update ([53ed7af](https://github.com/RetellAI/retell-typescript-sdk/commit/53ed7af88a1dc2bfefc90a400174b2dfab8e70bf))
257
- * **api:** api update ([452654a](https://github.com/RetellAI/retell-typescript-sdk/commit/452654ac93e172b4d88da10e404cad7f8e14c0b1))
258
- * **api:** api update ([f3ac79b](https://github.com/RetellAI/retell-typescript-sdk/commit/f3ac79b4d4f5487aca9ae84747665b497bc47291))
259
- * **api:** api update ([3241b89](https://github.com/RetellAI/retell-typescript-sdk/commit/3241b892991484dbc9d03b3c93eb3d45c0b0d18a))
260
- * **api:** api update ([09e69f0](https://github.com/RetellAI/retell-typescript-sdk/commit/09e69f0d60b2c2c590af7235ead3f0cfde013dca))
261
- * **api:** api update ([35de543](https://github.com/RetellAI/retell-typescript-sdk/commit/35de5431dbaccc3071e3a98acc7de086b5a7b05d))
262
- * **api:** api update ([b4b555c](https://github.com/RetellAI/retell-typescript-sdk/commit/b4b555c818e9aed5368c4b62161840b17071bde0))
263
- * **api:** api update ([4768384](https://github.com/RetellAI/retell-typescript-sdk/commit/47683843f5fa5e34415fc77074c925ec021a7947))
264
- * **api:** api update ([6f07b9a](https://github.com/RetellAI/retell-typescript-sdk/commit/6f07b9aa37715966a398fab09fe3045cdf0272ad))
265
- * **api:** api update ([94a49eb](https://github.com/RetellAI/retell-typescript-sdk/commit/94a49eba38c2a773d50b888aa73eb40e349ccd74))
266
-
267
-
268
- ### Bug Fixes
269
-
270
- * **tests:** fix invalid test value ([9b9ae07](https://github.com/RetellAI/retell-typescript-sdk/commit/9b9ae0749cf6aba9f31b00cf109f3dd6a33cccb1))
271
-
272
-
273
- ### Chores
274
-
275
- * update CI script ([096f620](https://github.com/RetellAI/retell-typescript-sdk/commit/096f6209200daeead513cd1c0578c6c86758d47c))
276
-
277
- ## 4.43.0 (2025-08-17)
278
-
279
- Full Changelog: [v4.42.0...v4.43.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.42.0...v4.43.0)
280
-
281
- ### Features
282
-
283
- * **api:** api update ([07fe7d2](https://github.com/RetellAI/retell-typescript-sdk/commit/07fe7d2354a93ea8dc4fca8186e935fc8f5ea95a))
284
-
285
-
286
- ### Chores
287
-
288
- * **deps:** update dependency node-fetch to v2.6.13 ([5fd4292](https://github.com/RetellAI/retell-typescript-sdk/commit/5fd4292f057355fe2971677c81b9e80f8175c774))
289
- * **internal:** formatting change ([5f6c667](https://github.com/RetellAI/retell-typescript-sdk/commit/5f6c667d3717341484f03464c40e1617d7927b59))
290
-
291
- ## 4.42.0 (2025-08-12)
292
-
293
- Full Changelog: [v4.41.0...v4.42.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.41.0...v4.42.0)
294
-
295
- ### Features
296
-
297
- * **api:** api update ([8b16279](https://github.com/RetellAI/retell-typescript-sdk/commit/8b162792e7178d7929fb717eceb50b66d3ba21e7))
298
-
299
-
300
- ### Chores
301
-
302
- * **internal:** move publish config ([9e4f257](https://github.com/RetellAI/retell-typescript-sdk/commit/9e4f25739c62bd58b6ebf23a591740fc00f463dd))
303
- * **internal:** update comment in script ([8843d03](https://github.com/RetellAI/retell-typescript-sdk/commit/8843d03acfa578f94d6413422e216abd5b583140))
304
- * update @stainless-api/prism-cli to v5.15.0 ([4305fa0](https://github.com/RetellAI/retell-typescript-sdk/commit/4305fa07ac5a9ccb84314d60c1999bcc454138a0))
305
-
306
- ## 4.41.0 (2025-07-30)
307
-
308
- Full Changelog: [v4.40.0...v4.41.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.40.0...v4.41.0)
309
-
310
- ### Features
311
-
312
- * **api:** api update ([8a4a778](https://github.com/RetellAI/retell-typescript-sdk/commit/8a4a778bb6e0d93e25839ced5027e12cb108d49c))
313
- * **api:** api update ([42afcb7](https://github.com/RetellAI/retell-typescript-sdk/commit/42afcb780b91d9d4758c60c9b2fd4c775df3c8f7))
314
- * **api:** api update ([742f928](https://github.com/RetellAI/retell-typescript-sdk/commit/742f92868799e7ed6478cc65ed9b2ff20c575ac3))
315
- * **api:** api update ([25ce6a5](https://github.com/RetellAI/retell-typescript-sdk/commit/25ce6a546fff5a7d3fd4660ee254bf827ae7fde8))
316
- * **api:** api update ([dd41629](https://github.com/RetellAI/retell-typescript-sdk/commit/dd4162972dc95cb208d1a6062af2784cdcf9c517))
317
-
318
-
319
- ### Chores
320
-
321
- * **internal:** remove redundant imports config ([ced1122](https://github.com/RetellAI/retell-typescript-sdk/commit/ced112282ea4205ebada372b0b1fcfc8b57ba825))
322
-
323
- ## 4.40.0 (2025-07-21)
324
-
325
- Full Changelog: [v4.39.0...v4.40.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.39.0...v4.40.0)
326
-
327
- ### Features
328
-
329
- * **api:** api update ([2ac2e1c](https://github.com/RetellAI/retell-typescript-sdk/commit/2ac2e1cc86fcd9eb6961f7df8a298ff1dac1e4df))
330
- * **api:** api update ([de72d25](https://github.com/RetellAI/retell-typescript-sdk/commit/de72d257d1637e7d8b89f455041594276b826ddd))
331
-
332
-
333
- ### Bug Fixes
334
-
335
- * **client:** don't send `Content-Type` for bodyless methods ([86aa850](https://github.com/RetellAI/retell-typescript-sdk/commit/86aa850130f91a16283d9dfc1c5e7cfc1e8682c4))
336
-
337
-
338
- ### Chores
339
-
340
- * make some internal functions async ([6a01ac6](https://github.com/RetellAI/retell-typescript-sdk/commit/6a01ac612f855e1c5489631c63667c716cb4692a))
341
- * mention unit type in timeout docs ([cdbafef](https://github.com/RetellAI/retell-typescript-sdk/commit/cdbafef4a2b97417116dea9ff3416ac9df3a0712))
342
-
343
- ## 4.39.0 (2025-07-02)
344
-
345
- Full Changelog: [v4.38.0...v4.39.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.38.0...v4.39.0)
346
-
347
- ### Features
348
-
349
- * **api:** api update ([dca6d28](https://github.com/RetellAI/retell-typescript-sdk/commit/dca6d281fccb22d19044b15a76b50264f1f15528))
350
- * **api:** api update ([4a4b72e](https://github.com/RetellAI/retell-typescript-sdk/commit/4a4b72e56da0cc2a36d8ac6c2f90ff26e05d84bd))
351
-
352
- ## 4.38.0 (2025-06-29)
353
-
354
- Full Changelog: [v4.37.0...v4.38.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.37.0...v4.38.0)
355
-
356
- ### Features
357
-
358
- * **api:** api update ([23024dd](https://github.com/RetellAI/retell-typescript-sdk/commit/23024dd4391b45e14b9ccffa2fe99ece946dcad7))
359
- * **api:** api update ([700e7d7](https://github.com/RetellAI/retell-typescript-sdk/commit/700e7d768d50007456e0545b51bfbd110bc51346))
360
- * **api:** api update ([7a4652e](https://github.com/RetellAI/retell-typescript-sdk/commit/7a4652e99b4b2d643ab95c448dfda75154c563e8))
361
- * **api:** api update ([54adbc3](https://github.com/RetellAI/retell-typescript-sdk/commit/54adbc3eeb77c7791fbcbb09ca32b7c851112eee))
362
- * **api:** api update ([e940672](https://github.com/RetellAI/retell-typescript-sdk/commit/e940672ca6424031270818e3007f684965776797))
363
- * **api:** api update ([4c41d15](https://github.com/RetellAI/retell-typescript-sdk/commit/4c41d15ecefcebd2948c74c0c04d50213da3d317))
364
- * **api:** api update ([78d4e81](https://github.com/RetellAI/retell-typescript-sdk/commit/78d4e8163ed88665897383a3451120540aa4b8b8))
365
- * **api:** api update ([0f0e31b](https://github.com/RetellAI/retell-typescript-sdk/commit/0f0e31bf5338193f05cfa5578d27b1955af3e195))
366
- * **client:** add support for endpoint-specific base URLs ([a4a67f3](https://github.com/RetellAI/retell-typescript-sdk/commit/a4a67f36865085c7bcf7bac3b7cb19dd27f594ff))
367
-
368
-
369
- ### Bug Fixes
370
-
371
- * **ci:** release-doctor — report correct token name ([88287e5](https://github.com/RetellAI/retell-typescript-sdk/commit/88287e5f2fbf6316d7a3feca6ec24897ac13c6c9))
372
-
373
-
374
- ### Chores
375
-
376
- * **ci:** enable for pull requests ([a70cbc3](https://github.com/RetellAI/retell-typescript-sdk/commit/a70cbc3f897d349319fc865c63387fd9ec05f751))
377
- * **ci:** only run for pushes and fork pull requests ([c02cb26](https://github.com/RetellAI/retell-typescript-sdk/commit/c02cb268c080463ab5b6462e6f1281fe3d782601))
378
-
379
-
380
- ### Refactors
381
-
382
- * **types:** replace Record with mapped types ([f13a1bc](https://github.com/RetellAI/retell-typescript-sdk/commit/f13a1bcd686c2dbded1b00e92331c5542824204d))
383
-
384
- ## 4.37.0 (2025-06-16)
385
-
386
- Full Changelog: [v4.36.0...v4.37.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.36.0...v4.37.0)
387
-
388
- ### Features
389
-
390
- * **api:** api update ([d160248](https://github.com/RetellAI/retell-typescript-sdk/commit/d1602488c5fe14b7627f9b38c029751f648c4b6b))
391
-
392
- ## 4.36.0 (2025-06-13)
393
-
394
- Full Changelog: [v4.35.0...v4.36.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.35.0...v4.36.0)
395
-
396
- ### Features
397
-
398
- * **api:** api update ([9a718b9](https://github.com/RetellAI/retell-typescript-sdk/commit/9a718b9dff4e53b76f09d98efb7641e6c26d7b3a))
399
- * **api:** api update ([1b3da08](https://github.com/RetellAI/retell-typescript-sdk/commit/1b3da0895257c3e2a19b01f427d4aa63326eb95f))
400
-
401
-
402
- ### Bug Fixes
403
-
404
- * publish script — handle NPM errors correctly ([74e157b](https://github.com/RetellAI/retell-typescript-sdk/commit/74e157beca1fb029c18aa6878639c1ed172e3690))
405
-
406
-
407
- ### Chores
408
-
409
- * **internal:** make base APIResource abstract ([0d933ef](https://github.com/RetellAI/retell-typescript-sdk/commit/0d933ef59161679e93fbe5766a33f6e9f118241f))
410
-
411
- ## 4.35.0 (2025-06-11)
412
-
413
- Full Changelog: [v4.34.0...v4.35.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.34.0...v4.35.0)
414
-
415
- ### Features
416
-
417
- * **api:** api update ([fe0958f](https://github.com/RetellAI/retell-typescript-sdk/commit/fe0958f7b237e3cad14a40f82c45e495c7228b37))
418
-
419
- ## 4.34.0 (2025-06-11)
420
-
421
- Full Changelog: [v4.33.0...v4.34.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.33.0...v4.34.0)
422
-
423
- ### Features
424
-
425
- * **api:** api update ([4ba8f6c](https://github.com/RetellAI/retell-typescript-sdk/commit/4ba8f6c12d35433a34a9e31cbd33a43f6a74ce3b))
426
- * **api:** api update ([c13b763](https://github.com/RetellAI/retell-typescript-sdk/commit/c13b763fb734701929d3aac14a82efa059997b2f))
427
- * **api:** api update ([1ff268c](https://github.com/RetellAI/retell-typescript-sdk/commit/1ff268c492546ce61a058ba491615dd8bc6fbf82))
428
- * **api:** api update ([ac151cb](https://github.com/RetellAI/retell-typescript-sdk/commit/ac151cb692f6f65dd3a6b2edfcbf7bf5d9f7e0a1))
429
- * **api:** api update ([c495c80](https://github.com/RetellAI/retell-typescript-sdk/commit/c495c8068b52498745fa8c0c97a30f9b729b6e01))
430
- * **api:** api update ([0e4d14b](https://github.com/RetellAI/retell-typescript-sdk/commit/0e4d14b18afea372090bfd3db1c59fe8bd4a1a46))
431
- * **api:** api update ([49f721a](https://github.com/RetellAI/retell-typescript-sdk/commit/49f721a2b49a56b9406a92e2bc5c4d74080d8090))
432
-
433
-
434
- ### Chores
435
-
436
- * **internal:** codegen related update ([6563e68](https://github.com/RetellAI/retell-typescript-sdk/commit/6563e68aaf6ea72e06c2a4af8ad55fd28594ef48))
437
- * **internal:** codegen related update ([b648dbc](https://github.com/RetellAI/retell-typescript-sdk/commit/b648dbcb1a97977b1b83bdd2082bb67dab770f73))
438
-
439
- ## 4.33.0 (2025-06-04)
440
-
441
- Full Changelog: [v4.32.0...v4.33.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.32.0...v4.33.0)
442
-
443
- ### Features
444
-
445
- * **api:** api update ([a47993c](https://github.com/RetellAI/retell-typescript-sdk/commit/a47993cbfd7a2bcded1220ec932ee03f49c1a73c))
446
- * **api:** api update ([1f3b3e3](https://github.com/RetellAI/retell-typescript-sdk/commit/1f3b3e3590abb0b77431b89a91c6da82f0ba8ed0))
447
- * **api:** api update ([397bdf0](https://github.com/RetellAI/retell-typescript-sdk/commit/397bdf013dbcebff1b75329d9855d83c139aab5f))
448
- * **api:** api update ([a74e7bd](https://github.com/RetellAI/retell-typescript-sdk/commit/a74e7bd24f9654dfc36b694ffbb3fa138ee8a1b3))
449
- * **api:** api update ([4d474bd](https://github.com/RetellAI/retell-typescript-sdk/commit/4d474bd69ba13622738a001ec879dbcbe8a7370a))
450
- * **api:** api update ([ca2e08b](https://github.com/RetellAI/retell-typescript-sdk/commit/ca2e08b1daee6db444caf0a729dc9ba60f7e54dc))
451
-
452
-
453
- ### Chores
454
-
455
- * **docs:** use top-level-await in example snippets ([5796338](https://github.com/RetellAI/retell-typescript-sdk/commit/579633888761a2171676253a067a1f7616cc9d2d))
456
- * improve publish-npm script --latest tag logic ([91b5313](https://github.com/RetellAI/retell-typescript-sdk/commit/91b5313504566820da426276dc487edb123c22d9))
457
-
458
- ## 4.32.0 (2025-05-26)
459
-
460
- Full Changelog: [v4.31.0...v4.32.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.31.0...v4.32.0)
461
-
462
- ### Features
463
-
464
- * **api:** api update ([c4a2766](https://github.com/RetellAI/retell-typescript-sdk/commit/c4a2766d3a75d7cacfaac72485513c13436c7993))
465
- * **api:** api update ([dca0ee6](https://github.com/RetellAI/retell-typescript-sdk/commit/dca0ee697a906c7646c57623101a20d5590f13bf))
466
-
467
- ## 4.31.0 (2025-05-22)
468
-
469
- Full Changelog: [v4.30.0...v4.31.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.30.0...v4.31.0)
470
-
471
- ### Features
472
-
473
- * **api:** api update ([434bf73](https://github.com/RetellAI/retell-typescript-sdk/commit/434bf73b9f2e3da8fcf2913f0d1cb7c5846da418))
474
-
475
-
476
- ### Chores
477
-
478
- * **docs:** grammar improvements ([907a718](https://github.com/RetellAI/retell-typescript-sdk/commit/907a7182ca7ea5b6c6da906836d0ecfc2c13949b))
479
-
480
- ## 4.30.0 (2025-05-15)
481
-
482
- Full Changelog: [v4.29.0...v4.30.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.29.0...v4.30.0)
483
-
484
- ### Features
485
-
486
- * **api:** api update ([b1368a8](https://github.com/RetellAI/retell-typescript-sdk/commit/b1368a8f252e7f4fad172b875daae2442aa167cf))
487
-
488
- ## 4.29.0 (2025-05-14)
489
-
490
- Full Changelog: [v4.28.0...v4.29.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.28.0...v4.29.0)
491
-
492
- ### Features
493
-
494
- * **api:** api update ([c368819](https://github.com/RetellAI/retell-typescript-sdk/commit/c36881925b1ad17364267b59a98ecaf743399c76))
495
- * **api:** api update ([4edbd26](https://github.com/RetellAI/retell-typescript-sdk/commit/4edbd26024a4aec27b767ef333d0d6165eecec64))
496
- * **api:** api update ([b1d6c3b](https://github.com/RetellAI/retell-typescript-sdk/commit/b1d6c3b5d705c55e08f17cb558a7815f22800a71))
497
- * **api:** api update ([d163d35](https://github.com/RetellAI/retell-typescript-sdk/commit/d163d35387cf32bf88b5a89db3e3752660a24c03))
498
- * **api:** api update ([b9972c0](https://github.com/RetellAI/retell-typescript-sdk/commit/b9972c0e8c880f6b6a11f1133a587a244c24071d))
499
- * **api:** api update ([45934c8](https://github.com/RetellAI/retell-typescript-sdk/commit/45934c838c3d6580f812159bc4b4c02df291aadc))
500
-
501
-
502
- ### Chores
503
-
504
- * **ci:** bump node version for release workflows ([7947f74](https://github.com/RetellAI/retell-typescript-sdk/commit/7947f74e5f0f55713ebee3759e84cf6c92c57bb7))
505
- * **internal:** codegen related update ([978c3f8](https://github.com/RetellAI/retell-typescript-sdk/commit/978c3f8f4fcb4603f521c08220c2227deb83d80a))
506
-
507
-
508
- ### Documentation
509
-
510
- * add examples to tsdocs ([ddddc01](https://github.com/RetellAI/retell-typescript-sdk/commit/ddddc01844b95a96f34119e902711a7a72684c10))
511
-
512
- ## 4.28.0 (2025-04-30)
513
-
514
- Full Changelog: [v4.27.0...v4.28.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.27.0...v4.28.0)
515
-
516
- ### Features
517
-
518
- * **api:** api update ([409ffb7](https://github.com/RetellAI/retell-typescript-sdk/commit/409ffb70fc9178b645fc18377e48934c244da9b9))
519
- * **api:** api update ([05b8160](https://github.com/RetellAI/retell-typescript-sdk/commit/05b81604ef0268b561ecccaa0fbd68b1503ad523))
520
- * **api:** api update ([649f890](https://github.com/RetellAI/retell-typescript-sdk/commit/649f89096a6951d7f67551b5b965daa593b97535))
521
- * **api:** api update ([d1e681d](https://github.com/RetellAI/retell-typescript-sdk/commit/d1e681df930da0d72fedc64dab2986aac5734c73))
522
-
523
-
524
- ### Bug Fixes
525
-
526
- * **tests:** skip unsupported test failure ([004c2cc](https://github.com/RetellAI/retell-typescript-sdk/commit/004c2cc51c3da4628154868ef0fb2b777aaedafb))
527
-
528
-
529
- ### Chores
530
-
531
- * **ci:** add timeout thresholds for CI jobs ([343018e](https://github.com/RetellAI/retell-typescript-sdk/commit/343018ec69a9a4b42ff0a2e91cca20088799e7ee))
532
- * **ci:** only use depot for staging repos ([101074a](https://github.com/RetellAI/retell-typescript-sdk/commit/101074ab41ca76af42fa71acf2883596e2105a32))
533
- * **ci:** run on more branches and use depot runners ([0dfabce](https://github.com/RetellAI/retell-typescript-sdk/commit/0dfabceeccedc37dea61735290fcc63bdaecd77d))
534
-
535
-
536
- ### Documentation
537
-
538
- * **readme:** fix typo ([8ef3b01](https://github.com/RetellAI/retell-typescript-sdk/commit/8ef3b0178f03e8fded149067fa047d1a5c81fd2d))
539
-
540
- ## 4.27.0 (2025-04-17)
541
-
542
- Full Changelog: [v4.26.0...v4.27.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.26.0...v4.27.0)
543
-
544
- ### Features
545
-
546
- * **api:** api update ([13e72e5](https://github.com/RetellAI/retell-typescript-sdk/commit/13e72e585d70720614471f1a80f324d31cb6c4a6))
547
-
548
- ## 4.26.0 (2025-04-16)
549
-
550
- Full Changelog: [v4.25.0...v4.26.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.25.0...v4.26.0)
551
-
552
- ### Features
553
-
554
- * **api:** api update ([ad06b5b](https://github.com/RetellAI/retell-typescript-sdk/commit/ad06b5b8dfafd64737231b3d9a9c2b0e82fef606))
555
- * **api:** api update ([b250262](https://github.com/RetellAI/retell-typescript-sdk/commit/b250262a7f9a4c01f7c2b1f60aaea4a41867f067))
556
-
557
-
558
- ### Chores
559
-
560
- * **client:** minor internal fixes ([e1d3ddb](https://github.com/RetellAI/retell-typescript-sdk/commit/e1d3ddbd7be3a811af8001423d457f1c30b664f0))
561
-
562
- ## 4.25.0 (2025-04-10)
563
-
564
- Full Changelog: [v4.24.0...v4.25.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.24.0...v4.25.0)
565
-
566
- ### Features
567
-
568
- * **api:** api update ([8d71723](https://github.com/RetellAI/retell-typescript-sdk/commit/8d71723de2bc32d612429cd6d285a70304e8e315))
569
-
570
-
571
- ### Chores
572
-
573
- * **internal:** reduce CI branch coverage ([86caec4](https://github.com/RetellAI/retell-typescript-sdk/commit/86caec47f43c3095c59154eaf2ea820abf552232))
574
- * **internal:** upload builds and expand CI branch coverage ([#301](https://github.com/RetellAI/retell-typescript-sdk/issues/301)) ([72c4e4e](https://github.com/RetellAI/retell-typescript-sdk/commit/72c4e4e1717cbc341ed02e696d575531f33fd98b))
575
-
576
- ## 4.24.0 (2025-04-06)
577
-
578
- Full Changelog: [v4.23.0...v4.24.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.23.0...v4.24.0)
579
-
580
- ### Features
581
-
582
- * **api:** api update ([#299](https://github.com/RetellAI/retell-typescript-sdk/issues/299)) ([681dddf](https://github.com/RetellAI/retell-typescript-sdk/commit/681dddf380ae70a8c62788505cb58e201d9c3831))
583
-
584
-
585
- ### Bug Fixes
586
-
587
- * **mcp:** remove unused tools.ts ([#297](https://github.com/RetellAI/retell-typescript-sdk/issues/297)) ([79a6a2c](https://github.com/RetellAI/retell-typescript-sdk/commit/79a6a2cd38d524f6820c8e8a5b2435b5e12c4788))
588
-
589
- ## 4.23.0 (2025-04-04)
590
-
591
- Full Changelog: [v4.22.0...v4.23.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.22.0...v4.23.0)
592
-
593
- ### Features
594
-
595
- * **api:** api update ([#292](https://github.com/RetellAI/retell-typescript-sdk/issues/292)) ([6e20bed](https://github.com/RetellAI/retell-typescript-sdk/commit/6e20bedf809bef74e18d2922eb79ceb24ab2f8d9))
596
- * **api:** api update ([#295](https://github.com/RetellAI/retell-typescript-sdk/issues/295)) ([c0fc421](https://github.com/RetellAI/retell-typescript-sdk/commit/c0fc421d3515ab796bb915228026c900474e7f9a))
597
-
598
-
599
- ### Bug Fixes
600
-
601
- * **api:** improve type resolution when importing as a package ([#294](https://github.com/RetellAI/retell-typescript-sdk/issues/294)) ([104f5e7](https://github.com/RetellAI/retell-typescript-sdk/commit/104f5e78ea2d8df9fedfbd0aa8c58fb7064d1eca))
602
- * avoid type error in certain environments ([#289](https://github.com/RetellAI/retell-typescript-sdk/issues/289)) ([262d7eb](https://github.com/RetellAI/retell-typescript-sdk/commit/262d7ebaa42a39e848dcb78ac9d5b997abebfdbf))
603
- * **client:** send `X-Stainless-Timeout` in seconds ([#291](https://github.com/RetellAI/retell-typescript-sdk/issues/291)) ([fbe29cb](https://github.com/RetellAI/retell-typescript-sdk/commit/fbe29cb4a427255a999db18e369825cd123127e5))
604
- * **internal:** work around https://github.com/vercel/next.js/issues/76881 ([#290](https://github.com/RetellAI/retell-typescript-sdk/issues/290)) ([92597b2](https://github.com/RetellAI/retell-typescript-sdk/commit/92597b29fb583e5dfc400cc2f957eebdb035102a))
605
-
606
-
607
- ### Chores
608
-
609
- * **exports:** cleaner resource index imports ([#286](https://github.com/RetellAI/retell-typescript-sdk/issues/286)) ([4ad50d5](https://github.com/RetellAI/retell-typescript-sdk/commit/4ad50d536a2b8c7852328fef938113965f298ba2))
610
- * **exports:** stop using path fallbacks ([#288](https://github.com/RetellAI/retell-typescript-sdk/issues/288)) ([44f9f50](https://github.com/RetellAI/retell-typescript-sdk/commit/44f9f50138e5d97828315d4426069f538f9fb93f))
611
- * **internal:** add aliases for Record and Array ([#293](https://github.com/RetellAI/retell-typescript-sdk/issues/293)) ([1bf2347](https://github.com/RetellAI/retell-typescript-sdk/commit/1bf2347ca9a086bd77627e030f0520930456f1d3))
612
-
613
- ## 4.22.0 (2025-03-18)
614
-
615
- Full Changelog: [v4.21.0...v4.22.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.21.0...v4.22.0)
616
-
617
- ### Features
618
-
619
- * **api:** api update ([#284](https://github.com/RetellAI/retell-typescript-sdk/issues/284)) ([3d87549](https://github.com/RetellAI/retell-typescript-sdk/commit/3d8754970d19895c3a74a9906e86fc809c9ee5a2))
620
- * **client:** accept RFC6838 JSON content types ([#281](https://github.com/RetellAI/retell-typescript-sdk/issues/281)) ([1b4d836](https://github.com/RetellAI/retell-typescript-sdk/commit/1b4d8366fb89c085125e1f72a1ec952cad59057c))
621
-
622
-
623
- ### Chores
624
-
625
- * **internal:** remove extra empty newlines ([#283](https://github.com/RetellAI/retell-typescript-sdk/issues/283)) ([41bf84a](https://github.com/RetellAI/retell-typescript-sdk/commit/41bf84ab0efd94bdda6466b7bba46f95e7c1216e))
626
-
627
- ## 4.21.0 (2025-03-09)
628
-
629
- Full Changelog: [v4.20.0...v4.21.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.20.0...v4.21.0)
630
-
631
- ### Features
632
-
633
- * add SKIP_BREW env var to ./scripts/bootstrap ([#276](https://github.com/RetellAI/retell-typescript-sdk/issues/276)) ([697642e](https://github.com/RetellAI/retell-typescript-sdk/commit/697642e1061034316bfa6ae99a938285ac56217d))
634
- * **api:** api update ([#272](https://github.com/RetellAI/retell-typescript-sdk/issues/272)) ([c6145a0](https://github.com/RetellAI/retell-typescript-sdk/commit/c6145a0170d581b14eee12d145ee7b01509fff56))
635
- * **api:** api update ([#277](https://github.com/RetellAI/retell-typescript-sdk/issues/277)) ([1b15300](https://github.com/RetellAI/retell-typescript-sdk/commit/1b153009c5918e979f4bce86e8eb303692bbb5c1))
636
- * **api:** api update ([#278](https://github.com/RetellAI/retell-typescript-sdk/issues/278)) ([6d4b6c2](https://github.com/RetellAI/retell-typescript-sdk/commit/6d4b6c25399aa9aa7eb2ed306be5d7d38e9c895c))
637
- * **api:** api update ([#279](https://github.com/RetellAI/retell-typescript-sdk/issues/279)) ([cf00af5](https://github.com/RetellAI/retell-typescript-sdk/commit/cf00af5e4705703abd11be8e9311e3137c966a5a))
638
-
639
-
640
- ### Documentation
641
-
642
- * update URLs from stainlessapi.com to stainless.com ([#274](https://github.com/RetellAI/retell-typescript-sdk/issues/274)) ([e8c21b0](https://github.com/RetellAI/retell-typescript-sdk/commit/e8c21b0eb31d984909f61f6ca62c696f6d071b0b))
643
-
644
- ## 4.20.0 (2025-02-25)
645
-
646
- Full Changelog: [v4.19.0...v4.20.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.19.0...v4.20.0)
647
-
648
- ### Features
649
-
650
- * **api:** api update ([#266](https://github.com/RetellAI/retell-typescript-sdk/issues/266)) ([17c419d](https://github.com/RetellAI/retell-typescript-sdk/commit/17c419d90dff23219128ea23366b22acea840f81))
651
- * **api:** api update ([#267](https://github.com/RetellAI/retell-typescript-sdk/issues/267)) ([94c940b](https://github.com/RetellAI/retell-typescript-sdk/commit/94c940bb0daee1c3f64737f352c4c2a7c78772b4))
652
- * **api:** api update ([#269](https://github.com/RetellAI/retell-typescript-sdk/issues/269)) ([d16b37d](https://github.com/RetellAI/retell-typescript-sdk/commit/d16b37db6d7d82a620fefe7331f169c85b90e9b5))
653
- * **api:** api update ([#270](https://github.com/RetellAI/retell-typescript-sdk/issues/270)) ([9b4ea79](https://github.com/RetellAI/retell-typescript-sdk/commit/9b4ea79a1d42790835cf8803e14aab44fbc8afb4))
654
-
655
-
656
- ### Bug Fixes
657
-
658
- * **client:** fix export map for index exports ([#264](https://github.com/RetellAI/retell-typescript-sdk/issues/264)) ([8511aa4](https://github.com/RetellAI/retell-typescript-sdk/commit/8511aa4cb326bd0e828ec900a376a7028b424bd1))
659
-
660
-
661
- ### Chores
662
-
663
- * **internal:** fix devcontainers setup ([#268](https://github.com/RetellAI/retell-typescript-sdk/issues/268)) ([81281d5](https://github.com/RetellAI/retell-typescript-sdk/commit/81281d57ef24c84385a735cc3581c8ab6e3628e2))
664
-
665
- ## 4.19.0 (2025-02-08)
666
-
667
- Full Changelog: [v4.18.0...v4.19.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.18.0...v4.19.0)
668
-
669
- ### Features
670
-
671
- * **api:** api update ([#258](https://github.com/RetellAI/retell-typescript-sdk/issues/258)) ([cbdceaa](https://github.com/RetellAI/retell-typescript-sdk/commit/cbdceaab363a837b9050f8041e383e5de4300a0b))
672
- * **api:** api update ([#261](https://github.com/RetellAI/retell-typescript-sdk/issues/261)) ([aa2f038](https://github.com/RetellAI/retell-typescript-sdk/commit/aa2f03841a274f34c630d9ea1c897f15649fd592))
673
- * **api:** api update ([#262](https://github.com/RetellAI/retell-typescript-sdk/issues/262)) ([e6d6fc3](https://github.com/RetellAI/retell-typescript-sdk/commit/e6d6fc3a0b7a807cc9791f3d3762669d05b32026))
674
- * **client:** send `X-Stainless-Timeout` header ([#260](https://github.com/RetellAI/retell-typescript-sdk/issues/260)) ([0cf7ef4](https://github.com/RetellAI/retell-typescript-sdk/commit/0cf7ef4863c8025988b7acfd0a8f4f2d3295b976))
675
-
676
- ## 4.18.0 (2025-01-31)
677
-
678
- Full Changelog: [v4.17.0...v4.18.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.17.0...v4.18.0)
679
-
680
- ### Features
681
-
682
- * **api:** api update ([#254](https://github.com/RetellAI/retell-typescript-sdk/issues/254)) ([9b5e326](https://github.com/RetellAI/retell-typescript-sdk/commit/9b5e326893765786ad72c321c7b36fa3d9b382c5))
683
- * **api:** api update ([#256](https://github.com/RetellAI/retell-typescript-sdk/issues/256)) ([7203ecf](https://github.com/RetellAI/retell-typescript-sdk/commit/7203ecf4f97895df2b7b45c59fd16594b81f886b))
684
-
685
- ## 4.17.0 (2025-01-31)
686
-
687
- Full Changelog: [v4.16.0...v4.17.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.16.0...v4.17.0)
688
-
689
- ### Features
690
-
691
- * **api:** api update ([#251](https://github.com/RetellAI/retell-typescript-sdk/issues/251)) ([5795afb](https://github.com/RetellAI/retell-typescript-sdk/commit/5795afb3a2595d06297536494f431d2c8bbeedcb))
692
-
693
- ## 4.16.0 (2025-01-30)
694
-
695
- Full Changelog: [v4.15.0...v4.16.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.15.0...v4.16.0)
696
-
697
- ### Features
698
-
699
- * **api:** api update ([#248](https://github.com/RetellAI/retell-typescript-sdk/issues/248)) ([ef1d20c](https://github.com/RetellAI/retell-typescript-sdk/commit/ef1d20cad79071fc6252e0805fc5f9cb6c47a929))
700
-
701
- ## 4.15.0 (2025-01-28)
702
-
703
- Full Changelog: [v4.14.0...v4.15.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.14.0...v4.15.0)
704
-
705
- ### Features
706
-
707
- * **api:** api update ([#246](https://github.com/RetellAI/retell-typescript-sdk/issues/246)) ([446fdce](https://github.com/RetellAI/retell-typescript-sdk/commit/446fdcef8b124c9599f590bfde78a9b0b418d95f))
708
-
709
- ## 4.14.0 (2025-01-28)
710
-
711
- Full Changelog: [v4.13.0...v4.14.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.13.0...v4.14.0)
712
-
713
- ### Features
714
-
715
- * **api:** api update ([#234](https://github.com/RetellAI/retell-typescript-sdk/issues/234)) ([89e7eb2](https://github.com/RetellAI/retell-typescript-sdk/commit/89e7eb26c31aa4febbdcce6aaa892bb60686401b))
716
- * **api:** api update ([#236](https://github.com/RetellAI/retell-typescript-sdk/issues/236)) ([23055a5](https://github.com/RetellAI/retell-typescript-sdk/commit/23055a530cbde8ae8e711fe04a70d421c048a357))
717
- * **api:** api update ([#242](https://github.com/RetellAI/retell-typescript-sdk/issues/242)) ([fc1f7ba](https://github.com/RetellAI/retell-typescript-sdk/commit/fc1f7ba797d3b83742cba019c7dfcac70f2f65da))
718
- * **api:** api update ([#244](https://github.com/RetellAI/retell-typescript-sdk/issues/244)) ([78afa9d](https://github.com/RetellAI/retell-typescript-sdk/commit/78afa9dd77919aa3652cceded18214d06439b991))
719
-
720
-
721
- ### Chores
722
-
723
- * **internal:** add test ([#241](https://github.com/RetellAI/retell-typescript-sdk/issues/241)) ([03a4b2a](https://github.com/RetellAI/retell-typescript-sdk/commit/03a4b2a354a3fdb7616296282263ea8236495582))
724
- * **internal:** codegen related update ([#237](https://github.com/RetellAI/retell-typescript-sdk/issues/237)) ([1bf38bb](https://github.com/RetellAI/retell-typescript-sdk/commit/1bf38bb73327a1d9af74efb078fc950269e7c5d2))
725
- * **types:** add `| undefined` to client options properties ([#240](https://github.com/RetellAI/retell-typescript-sdk/issues/240)) ([16e2b39](https://github.com/RetellAI/retell-typescript-sdk/commit/16e2b399cd16c05587be66a3a3681ad9a4eeb409))
726
-
727
- ## 4.13.0 (2025-01-03)
728
-
729
- Full Changelog: [v4.12.0...v4.13.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.12.0...v4.13.0)
730
-
731
- ### Features
732
-
733
- * **api:** api update ([#233](https://github.com/RetellAI/retell-typescript-sdk/issues/233)) ([ca61fda](https://github.com/RetellAI/retell-typescript-sdk/commit/ca61fda84b097e898e821134fb1c5362d4556fad))
734
-
735
-
736
- ### Chores
737
-
738
- * **internal:** codegen related update ([#231](https://github.com/RetellAI/retell-typescript-sdk/issues/231)) ([babc4ff](https://github.com/RetellAI/retell-typescript-sdk/commit/babc4ffb19fe20979bcad4c5428ab537cfd0bc01))
739
-
740
- ## 4.12.0 (2024-12-27)
741
-
742
- Full Changelog: [v4.11.0...v4.12.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.11.0...v4.12.0)
743
-
744
- ### Features
745
-
746
- * **api:** api update ([#225](https://github.com/RetellAI/retell-typescript-sdk/issues/225)) ([9609f88](https://github.com/RetellAI/retell-typescript-sdk/commit/9609f888110b5bd5616d5b094950c9c4ae36deff))
747
- * **api:** api update ([#228](https://github.com/RetellAI/retell-typescript-sdk/issues/228)) ([6287a06](https://github.com/RetellAI/retell-typescript-sdk/commit/6287a0632f60cabbaccc000e39845d00e5b20036))
748
- * **api:** api update ([#229](https://github.com/RetellAI/retell-typescript-sdk/issues/229)) ([d1bb0b4](https://github.com/RetellAI/retell-typescript-sdk/commit/d1bb0b4dfde26e3fe8b47b98c7e0a98b9dc981b2))
749
- * Update index.test.ts ([05e658a](https://github.com/RetellAI/retell-typescript-sdk/commit/05e658a3c0e363a77d78a7f3c7bb7b28f51f2559))
750
-
751
-
752
- ### Bug Fixes
753
-
754
- * **client:** normalize method ([#226](https://github.com/RetellAI/retell-typescript-sdk/issues/226)) ([756d74e](https://github.com/RetellAI/retell-typescript-sdk/commit/756d74e87f0da01d7ec7acbd160aafd05ee38f04))
755
-
756
-
757
- ### Chores
758
-
759
- * **internal:** bump cross-spawn to v7.0.6 ([#221](https://github.com/RetellAI/retell-typescript-sdk/issues/221)) ([2f13650](https://github.com/RetellAI/retell-typescript-sdk/commit/2f13650004113a9c144541b47f9a8785dfe70811))
760
- * **internal:** codegen related update ([#224](https://github.com/RetellAI/retell-typescript-sdk/issues/224)) ([29f3060](https://github.com/RetellAI/retell-typescript-sdk/commit/29f3060fbed7edfe0edd48f6d9ea621dc3712571))
761
- * **internal:** remove unnecessary getRequestClient function ([#220](https://github.com/RetellAI/retell-typescript-sdk/issues/220)) ([6796a4a](https://github.com/RetellAI/retell-typescript-sdk/commit/6796a4ad9d3e425709c4d6c0b7c457a7caf7f53a))
762
- * **internal:** update isAbsoluteURL ([#223](https://github.com/RetellAI/retell-typescript-sdk/issues/223)) ([1265bce](https://github.com/RetellAI/retell-typescript-sdk/commit/1265bceb81a9b6d023616095c82a75544ce40723))
763
- * **types:** nicer error class types + jsdocs ([#222](https://github.com/RetellAI/retell-typescript-sdk/issues/222)) ([fc53c20](https://github.com/RetellAI/retell-typescript-sdk/commit/fc53c208532d127a8ff4ce257950abfdd14d8501))
764
-
765
-
766
- ### Documentation
767
-
768
- * minor formatting changes ([#227](https://github.com/RetellAI/retell-typescript-sdk/issues/227)) ([18892ca](https://github.com/RetellAI/retell-typescript-sdk/commit/18892ca63a0465d3213ff9d2d3b4fc065fc1942d))
769
-
770
- ## 4.11.0 (2024-11-29)
771
-
772
- Full Changelog: [v4.10.0...v4.11.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.10.0...v4.11.0)
773
-
774
- ### Features
775
-
776
- * **api:** api update ([#215](https://github.com/RetellAI/retell-typescript-sdk/issues/215)) ([f7f2c8f](https://github.com/RetellAI/retell-typescript-sdk/commit/f7f2c8feb54ca8fcf7f35b88bf9937143cabdfdd))
777
-
778
- ## 4.10.0 (2024-11-29)
779
-
780
- Full Changelog: [v4.9.0...v4.10.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.9.0...v4.10.0)
781
-
782
- ### Features
783
-
784
- * **api:** api update ([#204](https://github.com/RetellAI/retell-typescript-sdk/issues/204)) ([92d9151](https://github.com/RetellAI/retell-typescript-sdk/commit/92d9151d9df218b9e8651e817d4929cc6d9e6f7c))
785
- * **api:** api update ([#213](https://github.com/RetellAI/retell-typescript-sdk/issues/213)) ([a5ecc43](https://github.com/RetellAI/retell-typescript-sdk/commit/a5ecc437af1923021d6578b02aafbec94b2d7e0a))
786
- * fix: knowledge base api ([d0997b9](https://github.com/RetellAI/retell-typescript-sdk/commit/d0997b95db8b46476685d74e2b8fa1514af98e7d))
787
- * **internal:** make git install file structure match npm ([#212](https://github.com/RetellAI/retell-typescript-sdk/issues/212)) ([3b91c22](https://github.com/RetellAI/retell-typescript-sdk/commit/3b91c22b28c1afcfaa4821c1f09605ab5dd2bc3b))
788
-
789
-
790
- ### Chores
791
-
792
- * rebuild project due to codegen change ([#206](https://github.com/RetellAI/retell-typescript-sdk/issues/206)) ([85beb82](https://github.com/RetellAI/retell-typescript-sdk/commit/85beb828da33ab12dda8c57a9a8d739e1fe72685))
793
- * rebuild project due to codegen change ([#207](https://github.com/RetellAI/retell-typescript-sdk/issues/207)) ([bff45a1](https://github.com/RetellAI/retell-typescript-sdk/commit/bff45a19fa776fd27d9b61768c3b4673daee5ce6))
794
- * rebuild project due to codegen change ([#208](https://github.com/RetellAI/retell-typescript-sdk/issues/208)) ([f0a57e0](https://github.com/RetellAI/retell-typescript-sdk/commit/f0a57e0e60be74417b01bc67229dfb2fb9e192d6))
795
- * rebuild project due to codegen change ([#209](https://github.com/RetellAI/retell-typescript-sdk/issues/209)) ([91b8218](https://github.com/RetellAI/retell-typescript-sdk/commit/91b8218bb1fd38be92c5537d332baa776c4bc651))
796
- * remove redundant word in comment ([#211](https://github.com/RetellAI/retell-typescript-sdk/issues/211)) ([76aea44](https://github.com/RetellAI/retell-typescript-sdk/commit/76aea444971b3352145ab82b5dbdba5abca4731c))
797
-
798
-
799
- ### Documentation
800
-
801
- * remove suggestion to use `npm` call out ([#210](https://github.com/RetellAI/retell-typescript-sdk/issues/210)) ([64fbf4c](https://github.com/RetellAI/retell-typescript-sdk/commit/64fbf4cf0f54b9aa844a70e73bd78d8c34a3d120))
802
-
803
- ## 4.9.0 (2024-11-03)
804
-
805
- Full Changelog: [v4.8.0...v4.9.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.8.0...v4.9.0)
806
-
807
- ### Features
808
-
809
- * **api:** api update ([#200](https://github.com/RetellAI/retell-typescript-sdk/issues/200)) ([e67a0e2](https://github.com/RetellAI/retell-typescript-sdk/commit/e67a0e27340cbf1a479deb2e6485bb4a8184ab75))
810
-
811
- ## 4.8.0 (2024-10-31)
812
-
813
- Full Changelog: [v4.7.0...v4.8.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.7.0...v4.8.0)
814
-
815
- ### Features
816
-
817
- * **api:** api update ([#195](https://github.com/RetellAI/retell-typescript-sdk/issues/195)) ([b5870b0](https://github.com/RetellAI/retell-typescript-sdk/commit/b5870b0ccd8fa3216a4eff2836ad5e3ce8a6ac1d))
818
- * **api:** api update ([#196](https://github.com/RetellAI/retell-typescript-sdk/issues/196)) ([187b89c](https://github.com/RetellAI/retell-typescript-sdk/commit/187b89ccf6043d5b40cb4c1b97645788d8f45e69))
819
- * **api:** api update ([#197](https://github.com/RetellAI/retell-typescript-sdk/issues/197)) ([780459e](https://github.com/RetellAI/retell-typescript-sdk/commit/780459e30111b1f71b004f1d5f2fb4bb06c9481b))
820
- * **api:** api update ([#198](https://github.com/RetellAI/retell-typescript-sdk/issues/198)) ([bb51a00](https://github.com/RetellAI/retell-typescript-sdk/commit/bb51a0089b342ddf13cfc3e3202a8b917475509a))
821
- * **api:** OpenAPI spec update via Stainless API ([#193](https://github.com/RetellAI/retell-typescript-sdk/issues/193)) ([4718fb3](https://github.com/RetellAI/retell-typescript-sdk/commit/4718fb3a7717d6a386b1c61db1350fe62e783730))
822
-
823
-
824
- ### Chores
825
-
826
- * **internal:** codegen related update ([#191](https://github.com/RetellAI/retell-typescript-sdk/issues/191)) ([359d82e](https://github.com/RetellAI/retell-typescript-sdk/commit/359d82ef2cf0ff0d9d0be6acad998b845f76db8d))
827
- * **internal:** codegen related update ([#194](https://github.com/RetellAI/retell-typescript-sdk/issues/194)) ([4aef21a](https://github.com/RetellAI/retell-typescript-sdk/commit/4aef21a6b13548a33d613bf0539f92dfa7cf40cf))
828
-
829
- ## 4.7.0 (2024-09-24)
830
-
831
- Full Changelog: [v4.6.0...v4.7.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.6.0...v4.7.0)
832
-
833
- ### Features
834
-
835
- * remove crypto ([6c74580](https://github.com/RetellAI/retell-typescript-sdk/commit/6c74580db3eb6c295e99177d85849b2e17a2704c))
836
-
837
-
838
- ### Documentation
839
-
840
- * update CONTRIBUTING.md ([#186](https://github.com/RetellAI/retell-typescript-sdk/issues/186)) ([ef11ad5](https://github.com/RetellAI/retell-typescript-sdk/commit/ef11ad5e49196189eb3fc7683ae4abfe10c1973e))
841
-
842
- ## 4.6.0 (2024-09-17)
843
-
844
- Full Changelog: [v4.5.0...v4.6.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.5.0...v4.6.0)
845
-
846
- ### Features
847
-
848
- * **api:** OpenAPI spec update via Stainless API ([#178](https://github.com/RetellAI/retell-typescript-sdk/issues/178)) ([d771a48](https://github.com/RetellAI/retell-typescript-sdk/commit/d771a4875c9a02634659421820e6869304ac08ff))
849
- * **api:** OpenAPI spec update via Stainless API ([#184](https://github.com/RetellAI/retell-typescript-sdk/issues/184)) ([b1f7f80](https://github.com/RetellAI/retell-typescript-sdk/commit/b1f7f8017f953873174773f76a655aa4f70c1a60))
850
-
851
-
852
- ### Bug Fixes
853
-
854
- * **errors:** pass message through to APIConnectionError ([#182](https://github.com/RetellAI/retell-typescript-sdk/issues/182)) ([ad6947f](https://github.com/RetellAI/retell-typescript-sdk/commit/ad6947ffbd1f9b7f4a48c3e6ae6717aeae325853))
855
- * **uploads:** avoid making redundant memory copies ([#175](https://github.com/RetellAI/retell-typescript-sdk/issues/175)) ([2a8f98b](https://github.com/RetellAI/retell-typescript-sdk/commit/2a8f98b64e3c7bf7258ed1a2bad0ab6bd954480d))
856
-
857
-
858
- ### Chores
859
-
860
- * better object fallback behaviour for casting errors ([#183](https://github.com/RetellAI/retell-typescript-sdk/issues/183)) ([01c9728](https://github.com/RetellAI/retell-typescript-sdk/commit/01c9728a888e85ba4c2981b8194e6bb4b69ae498))
861
- * **internal:** codegen related update ([#177](https://github.com/RetellAI/retell-typescript-sdk/issues/177)) ([b03ae81](https://github.com/RetellAI/retell-typescript-sdk/commit/b03ae81b9637786e600b781f233c7178bdc06857))
862
- * **internal:** codegen related update ([#179](https://github.com/RetellAI/retell-typescript-sdk/issues/179)) ([e79a065](https://github.com/RetellAI/retell-typescript-sdk/commit/e79a065202da3b27c0056026fbbbcdb85f34b1e5))
863
- * **internal:** codegen related update ([#180](https://github.com/RetellAI/retell-typescript-sdk/issues/180)) ([aceb32f](https://github.com/RetellAI/retell-typescript-sdk/commit/aceb32facc57c84ef8e3f4a23219a1bcbbccdee2))
864
-
865
- ## 4.5.0 (2024-09-10)
866
-
867
- Full Changelog: [v4.4.0...v4.5.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.4.0...v4.5.0)
868
-
869
- ### Features
870
-
871
- * **api:** OpenAPI spec update via Stainless API ([#172](https://github.com/RetellAI/retell-typescript-sdk/issues/172)) ([ac68e97](https://github.com/RetellAI/retell-typescript-sdk/commit/ac68e979327fe1709db7390ef0708b1383dc8107))
872
-
873
-
874
- ### Bug Fixes
875
-
876
- * **client:** correct File construction from node-fetch Responses ([#171](https://github.com/RetellAI/retell-typescript-sdk/issues/171)) ([d5dc735](https://github.com/RetellAI/retell-typescript-sdk/commit/d5dc735b6415f512fe1429cb11beff723a35f398))
877
-
878
-
879
- ### Chores
880
-
881
- * **ci:** install deps via ./script/bootstrap ([#170](https://github.com/RetellAI/retell-typescript-sdk/issues/170)) ([c2e6309](https://github.com/RetellAI/retell-typescript-sdk/commit/c2e630979ccc475f6997c932ba9939042626fbca))
882
- * **internal:** codegen related update ([#173](https://github.com/RetellAI/retell-typescript-sdk/issues/173)) ([c7d3da1](https://github.com/RetellAI/retell-typescript-sdk/commit/c7d3da1cd07a3b8f4a8050dc4fa4c3aab086fa6d))
883
- * run tsc as part of lint script ([#168](https://github.com/RetellAI/retell-typescript-sdk/issues/168)) ([37f22b9](https://github.com/RetellAI/retell-typescript-sdk/commit/37f22b94544eec59f215fe87492281dd243fe306))
884
-
885
- ## 4.4.0 (2024-09-04)
886
-
887
- Full Changelog: [v4.3.0...v4.4.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.3.0...v4.4.0)
888
-
889
- ### Features
890
-
891
- * **api:** OpenAPI spec update via Stainless API ([#164](https://github.com/RetellAI/retell-typescript-sdk/issues/164)) ([5c2077b](https://github.com/RetellAI/retell-typescript-sdk/commit/5c2077bc6517a98cbfb88c14cbf6b47a15482bff))
892
-
893
-
894
- ### Chores
895
-
896
- * **internal:** codegen related update ([#166](https://github.com/RetellAI/retell-typescript-sdk/issues/166)) ([a526fa7](https://github.com/RetellAI/retell-typescript-sdk/commit/a526fa7a61f2c8a782dac5be9c5be625c5dd84a0))
897
-
898
- ## 4.3.0 (2024-08-16)
899
-
900
- Full Changelog: [v4.2.0...v4.3.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.2.0...v4.3.0)
901
-
902
- ### Features
903
-
904
- * **api:** OpenAPI spec update via Stainless API ([#149](https://github.com/RetellAI/retell-typescript-sdk/issues/149)) ([2485f5e](https://github.com/RetellAI/retell-typescript-sdk/commit/2485f5eebec8c31051635f46eb746d937456db6d))
905
- * **api:** OpenAPI spec update via Stainless API ([#151](https://github.com/RetellAI/retell-typescript-sdk/issues/151)) ([0d5f872](https://github.com/RetellAI/retell-typescript-sdk/commit/0d5f87234847c7bfcdf1c4d3ff2518706a73ab70))
906
- * **api:** OpenAPI spec update via Stainless API ([#155](https://github.com/RetellAI/retell-typescript-sdk/issues/155)) ([65c2ffa](https://github.com/RetellAI/retell-typescript-sdk/commit/65c2ffa4ecaec7f2f36932814d8285d0ab360812))
907
- * **api:** OpenAPI spec update via Stainless API ([#158](https://github.com/RetellAI/retell-typescript-sdk/issues/158)) ([df74b3a](https://github.com/RetellAI/retell-typescript-sdk/commit/df74b3af215074d37ca08b8bfc6be4d4cd648c66))
908
- * **api:** OpenAPI spec update via Stainless API ([#160](https://github.com/RetellAI/retell-typescript-sdk/issues/160)) ([aa759e6](https://github.com/RetellAI/retell-typescript-sdk/commit/aa759e6f2e2653c67c5f8e8487f100f51d447724))
909
-
910
-
911
- ### Chores
912
-
913
- * **ci:** bump prism mock server version ([#154](https://github.com/RetellAI/retell-typescript-sdk/issues/154)) ([1f3cb2b](https://github.com/RetellAI/retell-typescript-sdk/commit/1f3cb2b8afdf51cd65d50095753cb4ebefef364a))
914
- * **ci:** minor changes ([#153](https://github.com/RetellAI/retell-typescript-sdk/issues/153)) ([61535c3](https://github.com/RetellAI/retell-typescript-sdk/commit/61535c3bea3519067b765490f0babd05afc2cefc))
915
- * **examples:** minor formatting changes ([#157](https://github.com/RetellAI/retell-typescript-sdk/issues/157)) ([f8e67f6](https://github.com/RetellAI/retell-typescript-sdk/commit/f8e67f6c9282930bbd7d838e214a87e0783689f1))
916
- * force eslint to use non flat config ([#152](https://github.com/RetellAI/retell-typescript-sdk/issues/152)) ([89cf413](https://github.com/RetellAI/retell-typescript-sdk/commit/89cf4139b39dd4b6b556890ded6d5779919119a0))
917
- * **internal:** codegen related update ([#156](https://github.com/RetellAI/retell-typescript-sdk/issues/156)) ([1ab3138](https://github.com/RetellAI/retell-typescript-sdk/commit/1ab31381c62b673d81dfa72595b045bcf15288b5))
918
- * **internal:** codegen related update ([#161](https://github.com/RetellAI/retell-typescript-sdk/issues/161)) ([64b6a52](https://github.com/RetellAI/retell-typescript-sdk/commit/64b6a528d15e29a81bfd213c447b94d4f83aa820))
919
-
920
- ## 4.2.0 (2024-08-07)
921
-
922
- Full Changelog: [v4.1.0...v4.2.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.1.0...v4.2.0)
923
-
924
- ### Features
925
-
926
- * **api:** OpenAPI spec update via Stainless API ([#145](https://github.com/RetellAI/retell-typescript-sdk/issues/145)) ([063409b](https://github.com/RetellAI/retell-typescript-sdk/commit/063409b406e742ae8847bddc04cd0c23e5367981))
927
-
928
-
929
- ### Chores
930
-
931
- * **internal:** codegen related update ([#147](https://github.com/RetellAI/retell-typescript-sdk/issues/147)) ([13b344e](https://github.com/RetellAI/retell-typescript-sdk/commit/13b344ec84db7119a5113262836ddcb56c69a065))
932
-
933
- ## 4.1.0 (2024-07-31)
934
-
935
- Full Changelog: [v4.0.0...v4.1.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.0.0...v4.1.0)
936
-
937
- ### Features
938
-
939
- * **api:** OpenAPI spec update via Stainless API ([#136](https://github.com/RetellAI/retell-typescript-sdk/issues/136)) ([ce869a2](https://github.com/RetellAI/retell-typescript-sdk/commit/ce869a272af5c906ea1cbba50acf26cea93d1f4f))
940
- * **api:** OpenAPI spec update via Stainless API ([#141](https://github.com/RetellAI/retell-typescript-sdk/issues/141)) ([68c7d0c](https://github.com/RetellAI/retell-typescript-sdk/commit/68c7d0c1c29cd782cd39d176030eb8893ab8526b))
941
-
942
-
943
- ### Bug Fixes
944
-
945
- * **compat:** remove ReadableStream polyfill redundant since node v16 ([#140](https://github.com/RetellAI/retell-typescript-sdk/issues/140)) ([2651490](https://github.com/RetellAI/retell-typescript-sdk/commit/265149053e326a9d8f89214406888258c63a47ba))
946
-
947
-
948
- ### Chores
949
-
950
- * **docs:** fix incorrect client var names ([#142](https://github.com/RetellAI/retell-typescript-sdk/issues/142)) ([168ceaa](https://github.com/RetellAI/retell-typescript-sdk/commit/168ceaa1f9732f7aa45a2f40cc4f38dc600dd4f8))
951
- * **internal:** add constant for default timeout ([#143](https://github.com/RetellAI/retell-typescript-sdk/issues/143)) ([61cc95c](https://github.com/RetellAI/retell-typescript-sdk/commit/61cc95c57dc96fcd90d8172cb2aea24b47bdc773))
952
- * **internal:** codegen related update ([#138](https://github.com/RetellAI/retell-typescript-sdk/issues/138)) ([b713b4d](https://github.com/RetellAI/retell-typescript-sdk/commit/b713b4d5527b975df071363f30b3dc9f75db6ef9))
953
- * **tests:** update prism version ([#139](https://github.com/RetellAI/retell-typescript-sdk/issues/139)) ([d2418bf](https://github.com/RetellAI/retell-typescript-sdk/commit/d2418bfc215c69cb1d96c36ce3914041f8361aba))
954
-
955
- ## 4.0.0 (2024-07-08)
956
-
957
- Full Changelog: [v3.20.0...v4.0.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v3.20.0...v4.0.0)
958
-
959
- ### Features
960
-
961
- * **api:** OpenAPI spec update via Stainless API ([#134](https://github.com/RetellAI/retell-typescript-sdk/issues/134)) ([e5bd0c7](https://github.com/RetellAI/retell-typescript-sdk/commit/e5bd0c7a241c320862d823adad9ddb980b279fed))
962
-
963
- ## 3.20.0 (2024-07-01)
964
-
965
- Full Changelog: [v3.19.0...v3.20.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v3.19.0...v3.20.0)
966
-
967
- ### Features
968
-
969
- * **api:** manual updates ([#129](https://github.com/RetellAI/retell-typescript-sdk/issues/129)) ([c10af49](https://github.com/RetellAI/retell-typescript-sdk/commit/c10af4913e64a5855a9f4fc277a78c4833d215e1))
970
- * **api:** manual updates ([#131](https://github.com/RetellAI/retell-typescript-sdk/issues/131)) ([920a637](https://github.com/RetellAI/retell-typescript-sdk/commit/920a63769f0113633076a12e724980b5e58cc356))
971
- * **api:** OpenAPI spec update via Stainless API ([#132](https://github.com/RetellAI/retell-typescript-sdk/issues/132)) ([88a4db6](https://github.com/RetellAI/retell-typescript-sdk/commit/88a4db6fb8fc6677439e8eaf908f52f246d233ad))
972
-
973
- ## 3.19.0 (2024-07-01)
974
-
975
- Full Changelog: [v3.18.0...v3.19.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v3.18.0...v3.19.0)
976
-
977
- ### Features
978
-
979
- * **api:** OpenAPI spec update via Stainless API ([#117](https://github.com/RetellAI/retell-typescript-sdk/issues/117)) ([2fed267](https://github.com/RetellAI/retell-typescript-sdk/commit/2fed2673e191a0b157a63810ddb71e96f746d226))
980
- * **api:** OpenAPI spec update via Stainless API ([#119](https://github.com/RetellAI/retell-typescript-sdk/issues/119)) ([ea54301](https://github.com/RetellAI/retell-typescript-sdk/commit/ea543015ae0380ee53e3a0dbe5146a1b7d670231))
981
- * **api:** OpenAPI spec update via Stainless API ([#120](https://github.com/RetellAI/retell-typescript-sdk/issues/120)) ([e3e2485](https://github.com/RetellAI/retell-typescript-sdk/commit/e3e24856bf3ff36f4333a39f387b4f56f902c3e1))
982
- * **api:** OpenAPI spec update via Stainless API ([#121](https://github.com/RetellAI/retell-typescript-sdk/issues/121)) ([fb89b35](https://github.com/RetellAI/retell-typescript-sdk/commit/fb89b3581dbdd5e611bbbd21d7605e7c1ffa4d8e))
983
- * **api:** OpenAPI spec update via Stainless API ([#122](https://github.com/RetellAI/retell-typescript-sdk/issues/122)) ([f84a73f](https://github.com/RetellAI/retell-typescript-sdk/commit/f84a73f006585fd269fbf508a8e4c3ac16a76479))
984
- * **api:** OpenAPI spec update via Stainless API ([#123](https://github.com/RetellAI/retell-typescript-sdk/issues/123)) ([65cdc49](https://github.com/RetellAI/retell-typescript-sdk/commit/65cdc4954852e75b5c87fd66644e0ed67238e5e9))
985
- * **api:** OpenAPI spec update via Stainless API ([#124](https://github.com/RetellAI/retell-typescript-sdk/issues/124)) ([9544e85](https://github.com/RetellAI/retell-typescript-sdk/commit/9544e85dfbfbd03cd7d4b61251b921725bf82e4d))
986
- * **api:** OpenAPI spec update via Stainless API ([#125](https://github.com/RetellAI/retell-typescript-sdk/issues/125)) ([104e45e](https://github.com/RetellAI/retell-typescript-sdk/commit/104e45e93be273476b0c56185835eb962e31e4e1))
987
- * **api:** OpenAPI spec update via Stainless API ([#126](https://github.com/RetellAI/retell-typescript-sdk/issues/126)) ([ca5e90f](https://github.com/RetellAI/retell-typescript-sdk/commit/ca5e90f1269be470b095e54b1ff929f27a1e38ee))
988
- * **api:** OpenAPI spec update via Stainless API ([#127](https://github.com/RetellAI/retell-typescript-sdk/issues/127)) ([5976dbe](https://github.com/RetellAI/retell-typescript-sdk/commit/5976dbe45a723a2e94f2a4e29dd8c3c71f593b66))
989
-
990
- ## 3.18.0 (2024-06-06)
991
-
992
- Full Changelog: [v3.17.0...v3.18.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v3.17.0...v3.18.0)
993
-
994
- ### Features
995
-
996
- * **api:** OpenAPI spec update via Stainless API ([#106](https://github.com/RetellAI/retell-typescript-sdk/issues/106)) ([c30b7b4](https://github.com/RetellAI/retell-typescript-sdk/commit/c30b7b4069684efb5221c7916a7d61a6d5d6a5c9))
997
- * **api:** OpenAPI spec update via Stainless API ([#108](https://github.com/RetellAI/retell-typescript-sdk/issues/108)) ([9b9fc9a](https://github.com/RetellAI/retell-typescript-sdk/commit/9b9fc9a0b4bc192f6b939c344472b2f95bdc3b13))
998
- * **api:** OpenAPI spec update via Stainless API ([#109](https://github.com/RetellAI/retell-typescript-sdk/issues/109)) ([aac2ebc](https://github.com/RetellAI/retell-typescript-sdk/commit/aac2ebc03d2e42f715131cc472059261a1988180))
999
- * **api:** OpenAPI spec update via Stainless API ([#110](https://github.com/RetellAI/retell-typescript-sdk/issues/110)) ([862d144](https://github.com/RetellAI/retell-typescript-sdk/commit/862d144e9fb4b978d699684ac492524142ead7f1))
1000
- * **api:** OpenAPI spec update via Stainless API ([#111](https://github.com/RetellAI/retell-typescript-sdk/issues/111)) ([db01c46](https://github.com/RetellAI/retell-typescript-sdk/commit/db01c46df479caa366da7be75adaec9475ed0e14))
1001
- * **api:** OpenAPI spec update via Stainless API ([#112](https://github.com/RetellAI/retell-typescript-sdk/issues/112)) ([6793250](https://github.com/RetellAI/retell-typescript-sdk/commit/679325061156b6fa3fadd0721f508a2de5c0f407))
1002
- * **api:** OpenAPI spec update via Stainless API ([#113](https://github.com/RetellAI/retell-typescript-sdk/issues/113)) ([bb64484](https://github.com/RetellAI/retell-typescript-sdk/commit/bb64484b74477a109c74b4f558fac9f1e78da4f9))
1003
- * **api:** OpenAPI spec update via Stainless API ([#114](https://github.com/RetellAI/retell-typescript-sdk/issues/114)) ([2254212](https://github.com/RetellAI/retell-typescript-sdk/commit/22542122cb8f2b3c842e6a9c6374fbca288a1d20))
1004
-
1005
- ## 3.17.0 (2024-06-02)
1006
-
1007
- Full Changelog: [v3.16.0...v3.17.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v3.16.0...v3.17.0)
1008
-
1009
- ### Features
1010
-
1011
- * **api:** manual updates ([#104](https://github.com/RetellAI/retell-typescript-sdk/issues/104)) ([45f8db7](https://github.com/RetellAI/retell-typescript-sdk/commit/45f8db71463fa390b55531f83a19d85b8fcdf227))
1012
- * **api:** OpenAPI spec update via Stainless API ([#102](https://github.com/RetellAI/retell-typescript-sdk/issues/102)) ([d3ee731](https://github.com/RetellAI/retell-typescript-sdk/commit/d3ee7312a17069f9fed3f3deb5e1eab510974d7f))
1013
-
1014
- ## 3.16.0 (2024-06-02)
1015
-
1016
- Full Changelog: [v3.15.1...v3.16.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v3.15.1...v3.16.0)
1017
-
1018
- ### Features
1019
-
1020
- * **api:** manual updates ([#100](https://github.com/RetellAI/retell-typescript-sdk/issues/100)) ([0105ba3](https://github.com/RetellAI/retell-typescript-sdk/commit/0105ba35988162092e3fbd7dc91660e2ecf7eb59))
1021
- * **api:** manual updates ([#96](https://github.com/RetellAI/retell-typescript-sdk/issues/96)) ([c2152ab](https://github.com/RetellAI/retell-typescript-sdk/commit/c2152ab895a88254683698e7e5f01ebdc188c959))
1022
- * **api:** OpenAPI spec update via Stainless API ([#94](https://github.com/RetellAI/retell-typescript-sdk/issues/94)) ([1060aa4](https://github.com/RetellAI/retell-typescript-sdk/commit/1060aa41165c9c8bb55a1dad3979222e9e5c0068))
1023
- * **api:** OpenAPI spec update via Stainless API ([#97](https://github.com/RetellAI/retell-typescript-sdk/issues/97)) ([e46a226](https://github.com/RetellAI/retell-typescript-sdk/commit/e46a2261919171598e8a9e3bd729b89ed27cab3e))
1024
- * **api:** OpenAPI spec update via Stainless API ([#98](https://github.com/RetellAI/retell-typescript-sdk/issues/98)) ([e94c425](https://github.com/RetellAI/retell-typescript-sdk/commit/e94c42546a1104575c4a2404148297fd8ec6e315))
1025
- * **api:** OpenAPI spec update via Stainless API ([#99](https://github.com/RetellAI/retell-typescript-sdk/issues/99)) ([8b8f7bd](https://github.com/RetellAI/retell-typescript-sdk/commit/8b8f7bd31309e264da1da64104d8266fa9c34cff))
1026
-
1027
- ## 3.15.1 (2024-05-20)
1028
-
1029
- Full Changelog: [v3.15.0...v3.15.1](https://github.com/RetellAI/retell-typescript-sdk/compare/v3.15.0...v3.15.1)
1030
-
1031
- ### Bug Fixes
1032
-
1033
- * **client:** correct formatting of array query params ([eb54ecd](https://github.com/RetellAI/retell-typescript-sdk/commit/eb54ecdceda4336c0ffb72b46bc56b3cf7f73f4e))
1034
-
1035
- ## 3.15.0 (2024-05-20)
1036
-
1037
- Full Changelog: [v3.14.0...v3.15.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v3.14.0...v3.15.0)
1038
-
1039
- ### Features
1040
-
1041
- * **api:** OpenAPI spec update via Stainless API ([#85](https://github.com/RetellAI/retell-typescript-sdk/issues/85)) ([0d2d105](https://github.com/RetellAI/retell-typescript-sdk/commit/0d2d105dd1b27f315f330b0801db0c6007d38141))
1042
- * **api:** OpenAPI spec update via Stainless API ([#87](https://github.com/RetellAI/retell-typescript-sdk/issues/87)) ([6abc5e9](https://github.com/RetellAI/retell-typescript-sdk/commit/6abc5e96e60d68bf63ffe95e5f753e7a9cf3ab4a))
1043
-
1044
-
1045
- ### Bug Fixes
1046
-
1047
- * **client:** correct array format for query strings ([7d4b48f](https://github.com/RetellAI/retell-typescript-sdk/commit/7d4b48fcd6b5d3264cf2713ac21b0775a2306543))
1048
-
1049
-
1050
- ### Chores
1051
-
1052
- * **internal:** format webhook file ([467b8b5](https://github.com/RetellAI/retell-typescript-sdk/commit/467b8b5ccc0424de70f810077d2c840b2075e00f))
1053
-
1054
- ## 3.14.0 (2024-05-12)
1055
-
1056
- Full Changelog: [v3.13.0...v3.14.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v3.13.0...v3.14.0)
1057
-
1058
- ### Features
1059
-
1060
- * **api:** OpenAPI spec update via Stainless API ([#83](https://github.com/RetellAI/retell-typescript-sdk/issues/83)) ([4141a43](https://github.com/RetellAI/retell-typescript-sdk/commit/4141a4351cdde5140ccbfae0518d019377bf7820))
1061
-
1062
- ## 3.13.0 (2024-05-11)
1063
-
1064
- Full Changelog: [v3.12.0...v3.13.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v3.12.0...v3.13.0)
1065
-
1066
- ### Features
1067
-
1068
- * **api:** manual updates ([#76](https://github.com/RetellAI/retell-typescript-sdk/issues/76)) ([d0b96a3](https://github.com/RetellAI/retell-typescript-sdk/commit/d0b96a38a50af83513f9a6d55e23983904e07015))
1069
- * **api:** manual updates ([#81](https://github.com/RetellAI/retell-typescript-sdk/issues/81)) ([e78d79d](https://github.com/RetellAI/retell-typescript-sdk/commit/e78d79d5f081bc38e64de12b61b9ffc7a8d89e38))
1070
- * **api:** manual updates ([#82](https://github.com/RetellAI/retell-typescript-sdk/issues/82)) ([aab3174](https://github.com/RetellAI/retell-typescript-sdk/commit/aab3174b42ff0eee33f5885902ecf555899ed87e))
1071
- * **api:** OpenAPI spec update via Stainless API ([#78](https://github.com/RetellAI/retell-typescript-sdk/issues/78)) ([ae65e67](https://github.com/RetellAI/retell-typescript-sdk/commit/ae65e67d9fc167ded24fe5e826cf4de5a1cdbacb))
1072
- * **api:** OpenAPI spec update via Stainless API ([#79](https://github.com/RetellAI/retell-typescript-sdk/issues/79)) ([5605f64](https://github.com/RetellAI/retell-typescript-sdk/commit/5605f64be83378862c8a1ae6d81b9fd82acd39db))
1073
- * **api:** OpenAPI spec update via Stainless API ([#80](https://github.com/RetellAI/retell-typescript-sdk/issues/80)) ([8c06dc8](https://github.com/RetellAI/retell-typescript-sdk/commit/8c06dc884304e36d5b3ecb70ed8c2cb43a07d316))
1074
-
1075
- ## 3.12.0 (2024-04-30)
1076
-
1077
- Full Changelog: [v3.11.0...v3.12.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v3.11.0...v3.12.0)
1078
-
1079
- ### Features
1080
-
1081
- * **api:** OpenAPI spec update via Stainless API ([#74](https://github.com/RetellAI/retell-typescript-sdk/issues/74)) ([26022e1](https://github.com/RetellAI/retell-typescript-sdk/commit/26022e12ce4cc4ad8bf8b44db7ac89f08043c0f1))
1082
- * **api:** OpenAPI spec update via Stainless API ([#75](https://github.com/RetellAI/retell-typescript-sdk/issues/75)) ([90c570c](https://github.com/RetellAI/retell-typescript-sdk/commit/90c570cdaed1e4e6904689bc2b21883264c690c6))
1083
-
1084
- ## 3.11.0 (2024-04-26)
1085
-
1086
- Full Changelog: [v3.10.0...v3.11.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v3.10.0...v3.11.0)
1087
-
1088
- ### Features
1089
-
1090
- * **api:** OpenAPI spec update via Stainless API ([#71](https://github.com/RetellAI/retell-typescript-sdk/issues/71)) ([a90064f](https://github.com/RetellAI/retell-typescript-sdk/commit/a90064faab3fb56385a26a34b85fd79d7772a168))
1091
-
1092
- ## 3.10.0 (2024-04-26)
1093
-
1094
- Full Changelog: [v3.9.0...v3.10.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v3.9.0...v3.10.0)
1095
-
1096
- ### Features
1097
-
1098
- * **api:** OpenAPI spec update via Stainless API ([#67](https://github.com/RetellAI/retell-typescript-sdk/issues/67)) ([81ff1b7](https://github.com/RetellAI/retell-typescript-sdk/commit/81ff1b7369b1205054d8e5258f534b02e8d1edcf))
1099
- * **api:** OpenAPI spec update via Stainless API ([#69](https://github.com/RetellAI/retell-typescript-sdk/issues/69)) ([ef27155](https://github.com/RetellAI/retell-typescript-sdk/commit/ef27155283164ae7a0353f25b2eae79422c19293))
1100
- * **api:** OpenAPI spec update via Stainless API ([#70](https://github.com/RetellAI/retell-typescript-sdk/issues/70)) ([c3a30ab](https://github.com/RetellAI/retell-typescript-sdk/commit/c3a30ab4a1b268a6bceef66626333ada9c1a1717))
1101
-
1102
- ## 3.9.0 (2024-04-24)
1103
-
1104
- Full Changelog: [v3.8.0...v3.9.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v3.8.0...v3.9.0)
1105
-
1106
- ### Features
1107
-
1108
- * **api:** OpenAPI spec update via Stainless API ([#61](https://github.com/RetellAI/retell-typescript-sdk/issues/61)) ([7439431](https://github.com/RetellAI/retell-typescript-sdk/commit/7439431773de5d6095be811b1d8c80d94aa05f12))
1109
- * **api:** OpenAPI spec update via Stainless API ([#62](https://github.com/RetellAI/retell-typescript-sdk/issues/62)) ([e306f52](https://github.com/RetellAI/retell-typescript-sdk/commit/e306f5297ecf3c4df5f0f0eb18d2b85cbbb27020))
1110
- * **api:** update via SDK Studio ([#58](https://github.com/RetellAI/retell-typescript-sdk/issues/58)) ([bd1dfdc](https://github.com/RetellAI/retell-typescript-sdk/commit/bd1dfdc2ead997e38d3043a502f0a14b49b3fbce))
1111
- * **api:** update via SDK Studio ([#60](https://github.com/RetellAI/retell-typescript-sdk/issues/60)) ([530ecb2](https://github.com/RetellAI/retell-typescript-sdk/commit/530ecb27c6f1bcf7c5880ebbb8ea39b70ad45ce9))
1112
- * **api:** update via SDK Studio ([#63](https://github.com/RetellAI/retell-typescript-sdk/issues/63)) ([28cdc27](https://github.com/RetellAI/retell-typescript-sdk/commit/28cdc27632b7940651f73f46db7eed9f474b0c13))
1113
- * **api:** update via SDK Studio ([#64](https://github.com/RetellAI/retell-typescript-sdk/issues/64)) ([a555e7f](https://github.com/RetellAI/retell-typescript-sdk/commit/a555e7fc41320e80612408b0d2ab069bb1c4994a))
1114
- * **api:** update via SDK Studio ([#65](https://github.com/RetellAI/retell-typescript-sdk/issues/65)) ([2a7b667](https://github.com/RetellAI/retell-typescript-sdk/commit/2a7b667c38ae48f6e8b82b96f08545665c7dcaf9))
1115
- * **api:** update via SDK Studio ([#66](https://github.com/RetellAI/retell-typescript-sdk/issues/66)) ([3fbaa13](https://github.com/RetellAI/retell-typescript-sdk/commit/3fbaa13d05d545eb7ec93f4afe97cc64e5e737c7))
1116
-
1117
- ## 3.8.0 (2024-04-21)
1118
-
1119
- Full Changelog: [v3.7.0...v3.8.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v3.7.0...v3.8.0)
1120
-
1121
- ### Features
1122
-
1123
- * **api:** update via SDK Studio ([#56](https://github.com/RetellAI/retell-typescript-sdk/issues/56)) ([9925297](https://github.com/RetellAI/retell-typescript-sdk/commit/9925297fc89f41ae891a2a38db565d220164537c))
1124
-
1125
- ## 3.7.0 (2024-04-20)
1126
-
1127
- Full Changelog: [v3.6.0...v3.7.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v3.6.0...v3.7.0)
1128
-
1129
- ### Features
1130
-
1131
- * **api:** OpenAPI spec update via Stainless API ([#54](https://github.com/RetellAI/retell-typescript-sdk/issues/54)) ([796989e](https://github.com/RetellAI/retell-typescript-sdk/commit/796989ebca33ea23e8d67c0230f07904094858d3))
1132
-
1133
- ## 3.6.0 (2024-04-16)
1134
-
1135
- Full Changelog: [v3.5.0...v3.6.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v3.5.0...v3.6.0)
1136
-
1137
- ### Features
1138
-
1139
- * **api:** OpenAPI spec update via Stainless API ([#51](https://github.com/RetellAI/retell-typescript-sdk/issues/51)) ([4320089](https://github.com/RetellAI/retell-typescript-sdk/commit/4320089df31b3de08419e14fddcc3e5d514d99de))
1140
- * **api:** OpenAPI spec update via Stainless API ([#53](https://github.com/RetellAI/retell-typescript-sdk/issues/53)) ([4b61b84](https://github.com/RetellAI/retell-typescript-sdk/commit/4b61b84801d539e8c399678d88d4804276872c56))
1141
-
1142
- ## 3.5.0 (2024-04-09)
1143
-
1144
- Full Changelog: [v3.4.0...v3.5.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v3.4.0...v3.5.0)
1145
-
1146
- ### Features
1147
-
1148
- * **api:** OpenAPI spec update via Stainless API ([#40](https://github.com/RetellAI/retell-typescript-sdk/issues/40)) ([573694f](https://github.com/RetellAI/retell-typescript-sdk/commit/573694f47507c8266ee021c05acf46a5d2531d2f))
1149
- * **api:** OpenAPI spec update via Stainless API ([#41](https://github.com/RetellAI/retell-typescript-sdk/issues/41)) ([7d6138e](https://github.com/RetellAI/retell-typescript-sdk/commit/7d6138eb57e9be11bce23b7d8fe7b6ef64f56cb2))
1150
- * **api:** OpenAPI spec update via Stainless API ([#43](https://github.com/RetellAI/retell-typescript-sdk/issues/43)) ([44d11c7](https://github.com/RetellAI/retell-typescript-sdk/commit/44d11c7131a2a8f22b4571e288c778edb07aeb42))
1151
- * **api:** OpenAPI spec update via Stainless API ([#45](https://github.com/RetellAI/retell-typescript-sdk/issues/45)) ([4148b6e](https://github.com/RetellAI/retell-typescript-sdk/commit/4148b6e5a0911e7634c8906726cfad00a4cb33bb))
1152
- * **api:** OpenAPI spec update via Stainless API ([#47](https://github.com/RetellAI/retell-typescript-sdk/issues/47)) ([e033032](https://github.com/RetellAI/retell-typescript-sdk/commit/e03303295cbc93a01f7b71f00c9967a28c7d212d))
1153
- * **api:** OpenAPI spec update via Stainless API ([#48](https://github.com/RetellAI/retell-typescript-sdk/issues/48)) ([85b916c](https://github.com/RetellAI/retell-typescript-sdk/commit/85b916c367188a08d3f16145ee6afd0942be4b73))
1154
- * **api:** OpenAPI spec update via Stainless API ([#49](https://github.com/RetellAI/retell-typescript-sdk/issues/49)) ([e2ced52](https://github.com/RetellAI/retell-typescript-sdk/commit/e2ced5200c3ec83e021bbcafd84b60b0929727fd))
1155
- * **api:** OpenAPI spec update via Stainless API ([#50](https://github.com/RetellAI/retell-typescript-sdk/issues/50)) ([f8a7baf](https://github.com/RetellAI/retell-typescript-sdk/commit/f8a7baf5cf0fd405143c46c66ad904fce886b753))
1156
- * **api:** update via SDK Studio ([#38](https://github.com/RetellAI/retell-typescript-sdk/issues/38)) ([aec1cdf](https://github.com/RetellAI/retell-typescript-sdk/commit/aec1cdffb779946e39acfa87bdd6f3f64e063663))
1157
- * **api:** update via SDK Studio ([#42](https://github.com/RetellAI/retell-typescript-sdk/issues/42)) ([6548c0c](https://github.com/RetellAI/retell-typescript-sdk/commit/6548c0cf43e14d14791a68ab25f52dceee3a65ea))
1158
- * **api:** update via SDK Studio ([#44](https://github.com/RetellAI/retell-typescript-sdk/issues/44)) ([50dff67](https://github.com/RetellAI/retell-typescript-sdk/commit/50dff67a6bfd1f6316ed62a6c7e8c2ed01e77c2b))
1159
- * **api:** update via SDK Studio ([#46](https://github.com/RetellAI/retell-typescript-sdk/issues/46)) ([b682ffd](https://github.com/RetellAI/retell-typescript-sdk/commit/b682ffd5bdaca72a4d2122c3341c22258b7af3f3))
1160
-
1161
- ## 3.4.0 (2024-04-05)
1162
-
1163
- Full Changelog: [v3.3.0...v3.4.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v3.3.0...v3.4.0)
1164
-
1165
- ### Features
1166
-
1167
- * **api:** OpenAPI spec update via Stainless API ([#34](https://github.com/RetellAI/retell-typescript-sdk/issues/34)) ([6eee7ab](https://github.com/RetellAI/retell-typescript-sdk/commit/6eee7ab8421a4bfd8a7be2eab9625085ec7647a5))
1168
- * **api:** OpenAPI spec update via Stainless API ([#36](https://github.com/RetellAI/retell-typescript-sdk/issues/36)) ([d3f77ca](https://github.com/RetellAI/retell-typescript-sdk/commit/d3f77ca21657801f4a22ecff1cd51bb0627543f3))
1169
- * **api:** OpenAPI spec update via Stainless API ([#37](https://github.com/RetellAI/retell-typescript-sdk/issues/37)) ([6a5ee66](https://github.com/RetellAI/retell-typescript-sdk/commit/6a5ee66e4f1020b9e7038494f905e7c5a6385bce))
1170
-
1171
- ## 3.3.0 (2024-03-29)
1172
-
1173
- Full Changelog: [v3.2.0...v3.3.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v3.2.0...v3.3.0)
1174
-
1175
- ### Features
1176
-
1177
- * **api:** OpenAPI spec update via Stainless API ([#32](https://github.com/RetellAI/retell-typescript-sdk/issues/32)) ([0f70eeb](https://github.com/RetellAI/retell-typescript-sdk/commit/0f70eeb5c376fa03820e3c9efb5fa5ab29c9f775))
1178
-
1179
- ## 3.2.0 (2024-03-28)
1180
-
1181
- Full Changelog: [v3.1.0...v3.2.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v3.1.0...v3.2.0)
1182
-
1183
- ### Features
1184
-
1185
- * **api:** OpenAPI spec update via Stainless API ([#22](https://github.com/RetellAI/retell-typescript-sdk/issues/22)) ([a56af5d](https://github.com/RetellAI/retell-typescript-sdk/commit/a56af5de57cdf020c331fa26165ed5309ba74145))
1186
- * **api:** OpenAPI spec update via Stainless API ([#30](https://github.com/RetellAI/retell-typescript-sdk/issues/30)) ([a3abc2b](https://github.com/RetellAI/retell-typescript-sdk/commit/a3abc2b2cc79e534513b98c74af79e2fdb4d0f8d))
1187
- * **api:** OpenAPI spec update via Stainless API ([#31](https://github.com/RetellAI/retell-typescript-sdk/issues/31)) ([95c3939](https://github.com/RetellAI/retell-typescript-sdk/commit/95c3939379c7f4a353a9edb358a63de302ba374e))
1188
- * **api:** update via SDK Studio ([1614607](https://github.com/RetellAI/retell-typescript-sdk/commit/1614607dffbe911dd19b9bbfd0248d29cc0b8c30))
1189
- * **api:** update via SDK Studio ([3576d16](https://github.com/RetellAI/retell-typescript-sdk/commit/3576d168f3fc3aae7b36119560e41b15419b48b3))
1190
- * **api:** update via SDK Studio ([c29f76a](https://github.com/RetellAI/retell-typescript-sdk/commit/c29f76a2deadedcea16f4aa83b46742f0ab4247e))
1191
- * **api:** update via SDK Studio ([1e2cbc1](https://github.com/RetellAI/retell-typescript-sdk/commit/1e2cbc1ee834c3c2617a45f51ca8eaad0b3a97ef))
1192
- * **api:** update via SDK Studio ([188c5f4](https://github.com/RetellAI/retell-typescript-sdk/commit/188c5f44c567165f3fc1172088ba35a29504aadc))
1193
- * **api:** update via SDK Studio ([d21433a](https://github.com/RetellAI/retell-typescript-sdk/commit/d21433afb30037ffb13815c0b02a6371123abb3c))
1194
- * **api:** update via SDK Studio ([6afcd3e](https://github.com/RetellAI/retell-typescript-sdk/commit/6afcd3e804f7f822af2ae166948854ca01c9d284))
1195
- * **api:** update via SDK Studio ([6ace945](https://github.com/RetellAI/retell-typescript-sdk/commit/6ace9459ee1ec355d5bc193686351ea929cb0deb))
1196
- * **api:** update via SDK Studio ([712f143](https://github.com/RetellAI/retell-typescript-sdk/commit/712f1430c7b215d3b4f018bad7d73b255edca08f))
1197
- * **api:** update via SDK Studio ([e61829c](https://github.com/RetellAI/retell-typescript-sdk/commit/e61829c09ee3bb28a474c0398c2dda1dd8278378))
1198
- * **api:** update via SDK Studio ([5c6cbec](https://github.com/RetellAI/retell-typescript-sdk/commit/5c6cbecd3cd92874168166baea184d948a5e69f0))
1199
- * **api:** update via SDK Studio ([b244e2e](https://github.com/RetellAI/retell-typescript-sdk/commit/b244e2e0c99764973cde94821777d1e397385e2e))
1200
- * **api:** update via SDK Studio ([2257bc1](https://github.com/RetellAI/retell-typescript-sdk/commit/2257bc1b8574204208cc91dad52f31ba02fc50e4))
1201
- * **api:** update via SDK Studio ([8c76b67](https://github.com/RetellAI/retell-typescript-sdk/commit/8c76b67dc29708abd9662151667fbeb0fe89a041))
1202
- * **api:** update via SDK Studio ([9c66392](https://github.com/RetellAI/retell-typescript-sdk/commit/9c663928a353f7c90cdc2c91e3275b5a99531add))
1203
- * **api:** update via SDK Studio ([28aa126](https://github.com/RetellAI/retell-typescript-sdk/commit/28aa12632624be0807063daab7b76dd652e634a7))
1204
- * **api:** update via SDK Studio ([078bacb](https://github.com/RetellAI/retell-typescript-sdk/commit/078bacbb9e2fc64e0b7f24e0327633355e5ae6f6))
1205
- * **api:** update via SDK Studio ([0949fbf](https://github.com/RetellAI/retell-typescript-sdk/commit/0949fbf650bc1d8a4cd2f042921ccfa9ba07d6c0))
1206
- * **api:** update via SDK Studio ([7673999](https://github.com/RetellAI/retell-typescript-sdk/commit/7673999591b3f27b809c9ea81c989326738657c8))
1207
- * **api:** update via SDK Studio ([b8670d8](https://github.com/RetellAI/retell-typescript-sdk/commit/b8670d8cd0da051e98d5cd9bb05a4eb4b5f01590))
1208
- * **api:** update via SDK Studio ([67ab827](https://github.com/RetellAI/retell-typescript-sdk/commit/67ab827c80de041cb5bef9269c3a76af4c154cfe))
1209
- * **api:** update via SDK Studio ([f1b2902](https://github.com/RetellAI/retell-typescript-sdk/commit/f1b29025c66e398b4f3221070d4286d42738c022))
1210
- * **api:** update via SDK Studio ([d03fc13](https://github.com/RetellAI/retell-typescript-sdk/commit/d03fc137cfe67e1d21bdeec62932ba5a9c77ec36))
1211
- * **api:** update via SDK Studio ([b2bce78](https://github.com/RetellAI/retell-typescript-sdk/commit/b2bce7875aeea5ce82e5480b6f1c40ada05e298f))
1212
- * **api:** update via SDK Studio ([0910f8c](https://github.com/RetellAI/retell-typescript-sdk/commit/0910f8ca902fa086256fad51d29f33ba5405eee1))
1213
- * **api:** update via SDK Studio ([eef1272](https://github.com/RetellAI/retell-typescript-sdk/commit/eef1272b7e3c23c7a2d540f46843d17f5071816e))
1214
- * **api:** update via SDK Studio ([4f87791](https://github.com/RetellAI/retell-typescript-sdk/commit/4f877919cdac165d3ecb99f1c6d30077d62c5e63))
1215
- * **api:** update via SDK Studio ([baa6a6a](https://github.com/RetellAI/retell-typescript-sdk/commit/baa6a6ad0a766a804e406ea67b8633120cea5034))
1216
- * **api:** update via SDK Studio ([0967b9b](https://github.com/RetellAI/retell-typescript-sdk/commit/0967b9beb4725fff6c0c56d3ffff304131eb4efd))
1217
- * **api:** update via SDK Studio ([626f39e](https://github.com/RetellAI/retell-typescript-sdk/commit/626f39e6036e49b3caaa826d12cb3ea00a1942fb))
1218
- * **api:** update via SDK Studio ([cd908dc](https://github.com/RetellAI/retell-typescript-sdk/commit/cd908dca907595aad4a314f7b4362088e0edf889))
1219
- * **api:** update via SDK Studio ([c19fc0c](https://github.com/RetellAI/retell-typescript-sdk/commit/c19fc0c8f7367077bac3c82a143114917ed16c9f))
1220
- * **api:** update via SDK Studio ([2aec9f1](https://github.com/RetellAI/retell-typescript-sdk/commit/2aec9f170a7cd43bf938d8223d1854041552f5a1))
1221
- * **api:** update via SDK Studio ([7738ebc](https://github.com/RetellAI/retell-typescript-sdk/commit/7738ebc5e911878b36ea2bec5362cdd704e85587))
1222
- * **api:** update via SDK Studio ([3083a95](https://github.com/RetellAI/retell-typescript-sdk/commit/3083a951c1cda6e14729cf153a969366d92df9ef))
1223
- * **api:** update via SDK Studio ([978ebfe](https://github.com/RetellAI/retell-typescript-sdk/commit/978ebfe1c261f82fcdcb9bd83124bfd2b7e575ff))
1224
- * **api:** update via SDK Studio ([2819394](https://github.com/RetellAI/retell-typescript-sdk/commit/28193946c384fb423d22e0d07aaca1dda2e2d8b0))
1225
- * **api:** update via SDK Studio ([4c2f56d](https://github.com/RetellAI/retell-typescript-sdk/commit/4c2f56d5c7c6a29172240dd776080ec19a6ecb3e))
1226
- * **api:** update via SDK Studio ([5ec484e](https://github.com/RetellAI/retell-typescript-sdk/commit/5ec484e79628254b8395bf6858345092359c0810))
1227
- * **api:** update via SDK Studio ([f8f89a8](https://github.com/RetellAI/retell-typescript-sdk/commit/f8f89a8905508eb47f007f46d7d665381a39dfa2))
1228
- * **api:** update via SDK Studio ([e9b9dc2](https://github.com/RetellAI/retell-typescript-sdk/commit/e9b9dc2a31701116a6d2c3b119ded5682ab4bc3c))
1229
- * **api:** update via SDK Studio ([c500e08](https://github.com/RetellAI/retell-typescript-sdk/commit/c500e08cd444b6f9e7f6637f1ffc845699beb541))
1230
- * **api:** update via SDK Studio ([c7d20d9](https://github.com/RetellAI/retell-typescript-sdk/commit/c7d20d9a3a0cc3d8d288a1fd902ac1903f240660))
1231
- * **api:** update via SDK Studio ([b549100](https://github.com/RetellAI/retell-typescript-sdk/commit/b54910071617db772a37e784054b6903a549e9f2))
1232
- * **api:** update via SDK Studio ([f83af9e](https://github.com/RetellAI/retell-typescript-sdk/commit/f83af9e27099bfb4b48f38ea07efd27526e6e8f7))
1233
- * **api:** update via SDK Studio ([#10](https://github.com/RetellAI/retell-typescript-sdk/issues/10)) ([2a8479f](https://github.com/RetellAI/retell-typescript-sdk/commit/2a8479f805f95d0b607fc8ae15adc1ed42d362b6))
1234
- * **api:** update via SDK Studio ([#12](https://github.com/RetellAI/retell-typescript-sdk/issues/12)) ([dedc983](https://github.com/RetellAI/retell-typescript-sdk/commit/dedc98381521dbd2cca43f9bfddfe01a5129dd6e))
1235
- * **api:** update via SDK Studio ([#13](https://github.com/RetellAI/retell-typescript-sdk/issues/13)) ([5cc5c8e](https://github.com/RetellAI/retell-typescript-sdk/commit/5cc5c8edd25c963d9ff4f3e55385f8831c56ed35))
1236
- * **api:** update via SDK Studio ([#15](https://github.com/RetellAI/retell-typescript-sdk/issues/15)) ([70b23eb](https://github.com/RetellAI/retell-typescript-sdk/commit/70b23ebc8b688ccff5e3fdbb0a4090a704006074))
1237
- * **api:** update via SDK Studio ([#17](https://github.com/RetellAI/retell-typescript-sdk/issues/17)) ([d3e8a75](https://github.com/RetellAI/retell-typescript-sdk/commit/d3e8a756529fc5f54d62e77525bbc781299c840a))
1238
- * **api:** update via SDK Studio ([#18](https://github.com/RetellAI/retell-typescript-sdk/issues/18)) ([f1cc79e](https://github.com/RetellAI/retell-typescript-sdk/commit/f1cc79ed6e387caa289a26c96c13d310ffc2ddcd))
1239
- * **api:** update via SDK Studio ([#19](https://github.com/RetellAI/retell-typescript-sdk/issues/19)) ([5ed4414](https://github.com/RetellAI/retell-typescript-sdk/commit/5ed44148dfb0fb8bdf45cbfa606cb5da8a826c22))
1240
- * **api:** update via SDK Studio ([#20](https://github.com/RetellAI/retell-typescript-sdk/issues/20)) ([1dd6bc4](https://github.com/RetellAI/retell-typescript-sdk/commit/1dd6bc44088585a85200fe76d678777e4703a9e9))
1241
- * **api:** update via SDK Studio ([#21](https://github.com/RetellAI/retell-typescript-sdk/issues/21)) ([f810f4e](https://github.com/RetellAI/retell-typescript-sdk/commit/f810f4e95f9e62053d817b31f2b731b85aba926a))
1242
- * **api:** update via SDK Studio ([#23](https://github.com/RetellAI/retell-typescript-sdk/issues/23)) ([560bbc5](https://github.com/RetellAI/retell-typescript-sdk/commit/560bbc5498ee98155da9f0caabd0fddf8259e5be))
1243
- * **api:** update via SDK Studio ([#24](https://github.com/RetellAI/retell-typescript-sdk/issues/24)) ([a5c3e28](https://github.com/RetellAI/retell-typescript-sdk/commit/a5c3e283525c1c3e536450e7197eb85a76268c94))
1244
- * **api:** update via SDK Studio ([#25](https://github.com/RetellAI/retell-typescript-sdk/issues/25)) ([c47e029](https://github.com/RetellAI/retell-typescript-sdk/commit/c47e029d8044c9e1260dad8414c7cbb2a7bbd8f2))
1245
- * **api:** update via SDK Studio ([#26](https://github.com/RetellAI/retell-typescript-sdk/issues/26)) ([f60bcd6](https://github.com/RetellAI/retell-typescript-sdk/commit/f60bcd69827051106b867220c2a0fdc755376f2c))
1246
- * **api:** update via SDK Studio ([#27](https://github.com/RetellAI/retell-typescript-sdk/issues/27)) ([477e5ed](https://github.com/RetellAI/retell-typescript-sdk/commit/477e5ed75137e683dc221617be7a9401c242cdee))
1247
- * **api:** update via SDK Studio ([#29](https://github.com/RetellAI/retell-typescript-sdk/issues/29)) ([d1ee65e](https://github.com/RetellAI/retell-typescript-sdk/commit/d1ee65e8c83b89834a7db15fe9c102f9ac1e8f3a))
1248
- * **api:** update via SDK Studio ([#8](https://github.com/RetellAI/retell-typescript-sdk/issues/8)) ([8355959](https://github.com/RetellAI/retell-typescript-sdk/commit/83559595763ec3b8a7500d0ee70262b7e6261ce4))
1249
- * OpenAPI spec update ([4ec746d](https://github.com/RetellAI/retell-typescript-sdk/commit/4ec746df72d500f3881453374228244f824c0a7d))
1250
-
1251
-
1252
- ### Chores
1253
-
1254
- * go live ([#6](https://github.com/RetellAI/retell-typescript-sdk/issues/6)) ([f23ebcd](https://github.com/RetellAI/retell-typescript-sdk/commit/f23ebcde921186a409e12d9dc4882184225639ef))
1255
-
1256
- ## 3.1.0 (2024-03-27)
1257
-
1258
- Full Changelog: [v3.0.0...v3.1.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v3.0.0...v3.1.0)
1259
-
1260
- ### Features
1261
-
1262
- * **api:** OpenAPI spec update via Stainless API ([#22](https://github.com/RetellAI/retell-typescript-sdk/issues/22)) ([a56af5d](https://github.com/RetellAI/retell-typescript-sdk/commit/a56af5de57cdf020c331fa26165ed5309ba74145))
1263
- * **api:** update via SDK Studio ([#15](https://github.com/RetellAI/retell-typescript-sdk/issues/15)) ([70b23eb](https://github.com/RetellAI/retell-typescript-sdk/commit/70b23ebc8b688ccff5e3fdbb0a4090a704006074))
1264
- * **api:** update via SDK Studio ([#17](https://github.com/RetellAI/retell-typescript-sdk/issues/17)) ([d3e8a75](https://github.com/RetellAI/retell-typescript-sdk/commit/d3e8a756529fc5f54d62e77525bbc781299c840a))
1265
- * **api:** update via SDK Studio ([#18](https://github.com/RetellAI/retell-typescript-sdk/issues/18)) ([f1cc79e](https://github.com/RetellAI/retell-typescript-sdk/commit/f1cc79ed6e387caa289a26c96c13d310ffc2ddcd))
1266
- * **api:** update via SDK Studio ([#19](https://github.com/RetellAI/retell-typescript-sdk/issues/19)) ([5ed4414](https://github.com/RetellAI/retell-typescript-sdk/commit/5ed44148dfb0fb8bdf45cbfa606cb5da8a826c22))
1267
- * **api:** update via SDK Studio ([#20](https://github.com/RetellAI/retell-typescript-sdk/issues/20)) ([1dd6bc4](https://github.com/RetellAI/retell-typescript-sdk/commit/1dd6bc44088585a85200fe76d678777e4703a9e9))
1268
- * **api:** update via SDK Studio ([#21](https://github.com/RetellAI/retell-typescript-sdk/issues/21)) ([f810f4e](https://github.com/RetellAI/retell-typescript-sdk/commit/f810f4e95f9e62053d817b31f2b731b85aba926a))
1269
- * **api:** update via SDK Studio ([#23](https://github.com/RetellAI/retell-typescript-sdk/issues/23)) ([560bbc5](https://github.com/RetellAI/retell-typescript-sdk/commit/560bbc5498ee98155da9f0caabd0fddf8259e5be))
1270
- * **api:** update via SDK Studio ([#24](https://github.com/RetellAI/retell-typescript-sdk/issues/24)) ([a5c3e28](https://github.com/RetellAI/retell-typescript-sdk/commit/a5c3e283525c1c3e536450e7197eb85a76268c94))
1271
- * **api:** update via SDK Studio ([#25](https://github.com/RetellAI/retell-typescript-sdk/issues/25)) ([c47e029](https://github.com/RetellAI/retell-typescript-sdk/commit/c47e029d8044c9e1260dad8414c7cbb2a7bbd8f2))
1272
- * **api:** update via SDK Studio ([#26](https://github.com/RetellAI/retell-typescript-sdk/issues/26)) ([f60bcd6](https://github.com/RetellAI/retell-typescript-sdk/commit/f60bcd69827051106b867220c2a0fdc755376f2c))
1273
- * **api:** update via SDK Studio ([#27](https://github.com/RetellAI/retell-typescript-sdk/issues/27)) ([477e5ed](https://github.com/RetellAI/retell-typescript-sdk/commit/477e5ed75137e683dc221617be7a9401c242cdee))
1274
-
1275
- ## 3.0.0 (2024-03-26)
1276
-
1277
- Full Changelog: [v0.1.0-alpha.3...v3.0.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v0.1.0-alpha.3...v3.0.0)
1278
-
1279
- ### Features
1280
-
1281
- * **api:** update via SDK Studio ([#13](https://github.com/RetellAI/retell-typescript-sdk/issues/13)) ([5cc5c8e](https://github.com/RetellAI/retell-typescript-sdk/commit/5cc5c8edd25c963d9ff4f3e55385f8831c56ed35))
1282
-
1283
- ## 0.1.0-alpha.3 (2024-03-26)
1284
-
1285
- Full Changelog: [v0.1.0-alpha.2...v0.1.0-alpha.3](https://github.com/RetellAI/retell-typescript-sdk/compare/v0.1.0-alpha.2...v0.1.0-alpha.3)
1286
-
1287
- ### Features
1288
-
1289
- * **api:** update via SDK Studio ([#10](https://github.com/RetellAI/retell-typescript-sdk/issues/10)) ([2a8479f](https://github.com/RetellAI/retell-typescript-sdk/commit/2a8479f805f95d0b607fc8ae15adc1ed42d362b6))
1290
- * **api:** update via SDK Studio ([#12](https://github.com/RetellAI/retell-typescript-sdk/issues/12)) ([dedc983](https://github.com/RetellAI/retell-typescript-sdk/commit/dedc98381521dbd2cca43f9bfddfe01a5129dd6e))
1291
-
1292
- ## 0.1.0-alpha.2 (2024-03-26)
1293
-
1294
- Full Changelog: [v0.1.0-alpha.1...v0.1.0-alpha.2](https://github.com/RetellAI/retell-typescript-sdk/compare/v0.1.0-alpha.1...v0.1.0-alpha.2)
1295
-
1296
- ### Features
1297
-
1298
- * **api:** update via SDK Studio ([#8](https://github.com/RetellAI/retell-typescript-sdk/issues/8)) ([8355959](https://github.com/RetellAI/retell-typescript-sdk/commit/83559595763ec3b8a7500d0ee70262b7e6261ce4))
1299
-
1300
- ## 0.1.0-alpha.1 (2024-03-26)
1301
-
1302
- Full Changelog: [v0.0.1-alpha.0...v0.1.0-alpha.1](https://github.com/RetellAI/retell-typescript-sdk/compare/v0.0.1-alpha.0...v0.1.0-alpha.1)
1303
-
1304
- ### Features
1305
-
1306
- * **api:** update via SDK Studio ([1614607](https://github.com/RetellAI/retell-typescript-sdk/commit/1614607dffbe911dd19b9bbfd0248d29cc0b8c30))
1307
- * **api:** update via SDK Studio ([3576d16](https://github.com/RetellAI/retell-typescript-sdk/commit/3576d168f3fc3aae7b36119560e41b15419b48b3))
1308
- * **api:** update via SDK Studio ([c29f76a](https://github.com/RetellAI/retell-typescript-sdk/commit/c29f76a2deadedcea16f4aa83b46742f0ab4247e))
1309
- * **api:** update via SDK Studio ([1e2cbc1](https://github.com/RetellAI/retell-typescript-sdk/commit/1e2cbc1ee834c3c2617a45f51ca8eaad0b3a97ef))
1310
- * **api:** update via SDK Studio ([188c5f4](https://github.com/RetellAI/retell-typescript-sdk/commit/188c5f44c567165f3fc1172088ba35a29504aadc))
1311
- * **api:** update via SDK Studio ([d21433a](https://github.com/RetellAI/retell-typescript-sdk/commit/d21433afb30037ffb13815c0b02a6371123abb3c))
1312
- * **api:** update via SDK Studio ([6afcd3e](https://github.com/RetellAI/retell-typescript-sdk/commit/6afcd3e804f7f822af2ae166948854ca01c9d284))
1313
- * **api:** update via SDK Studio ([6ace945](https://github.com/RetellAI/retell-typescript-sdk/commit/6ace9459ee1ec355d5bc193686351ea929cb0deb))
1314
- * **api:** update via SDK Studio ([712f143](https://github.com/RetellAI/retell-typescript-sdk/commit/712f1430c7b215d3b4f018bad7d73b255edca08f))
1315
- * **api:** update via SDK Studio ([e61829c](https://github.com/RetellAI/retell-typescript-sdk/commit/e61829c09ee3bb28a474c0398c2dda1dd8278378))
1316
- * **api:** update via SDK Studio ([5c6cbec](https://github.com/RetellAI/retell-typescript-sdk/commit/5c6cbecd3cd92874168166baea184d948a5e69f0))
1317
- * **api:** update via SDK Studio ([b244e2e](https://github.com/RetellAI/retell-typescript-sdk/commit/b244e2e0c99764973cde94821777d1e397385e2e))
1318
- * **api:** update via SDK Studio ([2257bc1](https://github.com/RetellAI/retell-typescript-sdk/commit/2257bc1b8574204208cc91dad52f31ba02fc50e4))
1319
- * **api:** update via SDK Studio ([8c76b67](https://github.com/RetellAI/retell-typescript-sdk/commit/8c76b67dc29708abd9662151667fbeb0fe89a041))
1320
- * **api:** update via SDK Studio ([9c66392](https://github.com/RetellAI/retell-typescript-sdk/commit/9c663928a353f7c90cdc2c91e3275b5a99531add))
1321
- * **api:** update via SDK Studio ([28aa126](https://github.com/RetellAI/retell-typescript-sdk/commit/28aa12632624be0807063daab7b76dd652e634a7))
1322
- * **api:** update via SDK Studio ([078bacb](https://github.com/RetellAI/retell-typescript-sdk/commit/078bacbb9e2fc64e0b7f24e0327633355e5ae6f6))
1323
- * **api:** update via SDK Studio ([0949fbf](https://github.com/RetellAI/retell-typescript-sdk/commit/0949fbf650bc1d8a4cd2f042921ccfa9ba07d6c0))
1324
- * **api:** update via SDK Studio ([7673999](https://github.com/RetellAI/retell-typescript-sdk/commit/7673999591b3f27b809c9ea81c989326738657c8))
1325
- * **api:** update via SDK Studio ([b8670d8](https://github.com/RetellAI/retell-typescript-sdk/commit/b8670d8cd0da051e98d5cd9bb05a4eb4b5f01590))
1326
- * **api:** update via SDK Studio ([67ab827](https://github.com/RetellAI/retell-typescript-sdk/commit/67ab827c80de041cb5bef9269c3a76af4c154cfe))
1327
- * **api:** update via SDK Studio ([f1b2902](https://github.com/RetellAI/retell-typescript-sdk/commit/f1b29025c66e398b4f3221070d4286d42738c022))
1328
- * **api:** update via SDK Studio ([d03fc13](https://github.com/RetellAI/retell-typescript-sdk/commit/d03fc137cfe67e1d21bdeec62932ba5a9c77ec36))
1329
- * **api:** update via SDK Studio ([b2bce78](https://github.com/RetellAI/retell-typescript-sdk/commit/b2bce7875aeea5ce82e5480b6f1c40ada05e298f))
1330
- * **api:** update via SDK Studio ([0910f8c](https://github.com/RetellAI/retell-typescript-sdk/commit/0910f8ca902fa086256fad51d29f33ba5405eee1))
1331
- * **api:** update via SDK Studio ([eef1272](https://github.com/RetellAI/retell-typescript-sdk/commit/eef1272b7e3c23c7a2d540f46843d17f5071816e))
1332
- * **api:** update via SDK Studio ([4f87791](https://github.com/RetellAI/retell-typescript-sdk/commit/4f877919cdac165d3ecb99f1c6d30077d62c5e63))
1333
- * **api:** update via SDK Studio ([baa6a6a](https://github.com/RetellAI/retell-typescript-sdk/commit/baa6a6ad0a766a804e406ea67b8633120cea5034))
1334
- * **api:** update via SDK Studio ([0967b9b](https://github.com/RetellAI/retell-typescript-sdk/commit/0967b9beb4725fff6c0c56d3ffff304131eb4efd))
1335
- * **api:** update via SDK Studio ([626f39e](https://github.com/RetellAI/retell-typescript-sdk/commit/626f39e6036e49b3caaa826d12cb3ea00a1942fb))
1336
- * **api:** update via SDK Studio ([cd908dc](https://github.com/RetellAI/retell-typescript-sdk/commit/cd908dca907595aad4a314f7b4362088e0edf889))
1337
- * **api:** update via SDK Studio ([c19fc0c](https://github.com/RetellAI/retell-typescript-sdk/commit/c19fc0c8f7367077bac3c82a143114917ed16c9f))
1338
- * **api:** update via SDK Studio ([2aec9f1](https://github.com/RetellAI/retell-typescript-sdk/commit/2aec9f170a7cd43bf938d8223d1854041552f5a1))
1339
- * **api:** update via SDK Studio ([7738ebc](https://github.com/RetellAI/retell-typescript-sdk/commit/7738ebc5e911878b36ea2bec5362cdd704e85587))
1340
- * **api:** update via SDK Studio ([3083a95](https://github.com/RetellAI/retell-typescript-sdk/commit/3083a951c1cda6e14729cf153a969366d92df9ef))
1341
- * **api:** update via SDK Studio ([978ebfe](https://github.com/RetellAI/retell-typescript-sdk/commit/978ebfe1c261f82fcdcb9bd83124bfd2b7e575ff))
1342
- * **api:** update via SDK Studio ([2819394](https://github.com/RetellAI/retell-typescript-sdk/commit/28193946c384fb423d22e0d07aaca1dda2e2d8b0))
1343
- * **api:** update via SDK Studio ([4c2f56d](https://github.com/RetellAI/retell-typescript-sdk/commit/4c2f56d5c7c6a29172240dd776080ec19a6ecb3e))
1344
- * **api:** update via SDK Studio ([5ec484e](https://github.com/RetellAI/retell-typescript-sdk/commit/5ec484e79628254b8395bf6858345092359c0810))
1345
- * **api:** update via SDK Studio ([f8f89a8](https://github.com/RetellAI/retell-typescript-sdk/commit/f8f89a8905508eb47f007f46d7d665381a39dfa2))
1346
- * **api:** update via SDK Studio ([e9b9dc2](https://github.com/RetellAI/retell-typescript-sdk/commit/e9b9dc2a31701116a6d2c3b119ded5682ab4bc3c))
1347
- * **api:** update via SDK Studio ([c500e08](https://github.com/RetellAI/retell-typescript-sdk/commit/c500e08cd444b6f9e7f6637f1ffc845699beb541))
1348
- * **api:** update via SDK Studio ([c7d20d9](https://github.com/RetellAI/retell-typescript-sdk/commit/c7d20d9a3a0cc3d8d288a1fd902ac1903f240660))
1349
- * **api:** update via SDK Studio ([b549100](https://github.com/RetellAI/retell-typescript-sdk/commit/b54910071617db772a37e784054b6903a549e9f2))
1350
- * **api:** update via SDK Studio ([f83af9e](https://github.com/RetellAI/retell-typescript-sdk/commit/f83af9e27099bfb4b48f38ea07efd27526e6e8f7))
1351
- * OpenAPI spec update ([4ec746d](https://github.com/RetellAI/retell-typescript-sdk/commit/4ec746df72d500f3881453374228244f824c0a7d))
9
+ * **api:** api update ([9f48d44](https://github.com/RetellAI/retell-typescript-sdk/commit/9f48d44ba57c26a242742e7e15568f3588d415a8))
1352
10
 
1353
11
 
1354
12
  ### Chores
1355
13
 
1356
- * go live ([#6](https://github.com/RetellAI/retell-typescript-sdk/issues/6)) ([f23ebcd](https://github.com/RetellAI/retell-typescript-sdk/commit/f23ebcde921186a409e12d9dc4882184225639ef))
14
+ * sync repo ([f0f6d67](https://github.com/RetellAI/retell-typescript-sdk/commit/f0f6d67d11686a6b127705bba44be00dc41e055f))