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