retell-sdk 5.7.0 → 5.9.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.
- package/CHANGELOG.md +441 -0
- package/README.md +2 -2
- package/client.d.mts.map +1 -1
- package/client.d.ts.map +1 -1
- package/client.js +6 -5
- package/client.js.map +1 -1
- package/client.mjs +6 -5
- package/client.mjs.map +1 -1
- package/internal/uploads.js +12 -2
- package/internal/uploads.js.map +1 -1
- package/internal/uploads.mjs +12 -2
- package/internal/uploads.mjs.map +1 -1
- package/package.json +12 -1
- package/resources/agent.d.mts +72 -12
- package/resources/agent.d.mts.map +1 -1
- package/resources/agent.d.ts +72 -12
- package/resources/agent.d.ts.map +1 -1
- package/resources/batch-call.d.mts +26 -6
- package/resources/batch-call.d.mts.map +1 -1
- package/resources/batch-call.d.ts +26 -6
- package/resources/batch-call.d.ts.map +1 -1
- package/resources/call.d.mts +78 -18
- package/resources/call.d.mts.map +1 -1
- package/resources/call.d.ts +78 -18
- package/resources/call.d.ts.map +1 -1
- package/resources/chat-agent.d.mts +66 -6
- package/resources/chat-agent.d.mts.map +1 -1
- package/resources/chat-agent.d.ts +66 -6
- package/resources/chat-agent.d.ts.map +1 -1
- package/resources/conversation-flow-component.d.mts +225 -15
- package/resources/conversation-flow-component.d.mts.map +1 -1
- package/resources/conversation-flow-component.d.ts +225 -15
- package/resources/conversation-flow-component.d.ts.map +1 -1
- package/resources/conversation-flow.d.mts +453 -33
- package/resources/conversation-flow.d.mts.map +1 -1
- package/resources/conversation-flow.d.ts +453 -33
- package/resources/conversation-flow.d.ts.map +1 -1
- package/resources/llm.d.mts +213 -3
- package/resources/llm.d.mts.map +1 -1
- package/resources/llm.d.ts +213 -3
- package/resources/llm.d.ts.map +1 -1
- package/resources/tests.d.mts +3 -3
- package/resources/tests.d.mts.map +1 -1
- package/resources/tests.d.ts +3 -3
- package/resources/tests.d.ts.map +1 -1
- package/src/client.ts +6 -5
- package/src/internal/uploads.ts +12 -4
- package/src/resources/agent.ts +84 -6
- package/src/resources/batch-call.ts +30 -2
- package/src/resources/call.ts +90 -6
- package/src/resources/chat-agent.ts +78 -3
- package/src/resources/conversation-flow-component.ts +267 -0
- package/src/resources/conversation-flow.ts +537 -0
- package/src/resources/llm.ts +255 -0
- package/src/resources/tests.ts +3 -0
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,446 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 5.9.0 (2026-03-13)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v5.8.1...v5.9.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v5.8.1...v5.9.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([2baea6c](https://github.com/RetellAI/retell-typescript-sdk/commit/2baea6c9800fb817ba52bd14348433ccb5d36839))
|
|
10
|
+
* **api:** api update ([4d95861](https://github.com/RetellAI/retell-typescript-sdk/commit/4d9586176043b1410cfd6a34d56b67a837310457))
|
|
11
|
+
* **api:** api update ([ec07491](https://github.com/RetellAI/retell-typescript-sdk/commit/ec0749158a48494b37cff4a5c43bb92543cc7051))
|
|
12
|
+
* **api:** api update ([fc0a060](https://github.com/RetellAI/retell-typescript-sdk/commit/fc0a0603ffdfb19d64ba83da83232078da5ccdbb))
|
|
13
|
+
* **api:** api update ([fd6c91b](https://github.com/RetellAI/retell-typescript-sdk/commit/fd6c91bc4d099960ce990d91601f681e85b36377))
|
|
14
|
+
* **api:** api update ([cd1cff9](https://github.com/RetellAI/retell-typescript-sdk/commit/cd1cff9305247a34bba8a9fe8e8ebbf475083c66))
|
|
15
|
+
* **api:** api update ([8f3fe29](https://github.com/RetellAI/retell-typescript-sdk/commit/8f3fe296814fdfce878dd4db1bc9ab183ddd2e34))
|
|
16
|
+
* **api:** api update ([9f48d44](https://github.com/RetellAI/retell-typescript-sdk/commit/9f48d44ba57c26a242742e7e15568f3588d415a8))
|
|
17
|
+
* **api:** api update ([d347942](https://github.com/RetellAI/retell-typescript-sdk/commit/d34794297ded8fa0d5967aa1df60a005f2d7b186))
|
|
18
|
+
* **api:** api update ([fde4d61](https://github.com/RetellAI/retell-typescript-sdk/commit/fde4d611de57b53d830fe51f48b6b3674c9e3f56))
|
|
19
|
+
* **api:** api update ([70e3707](https://github.com/RetellAI/retell-typescript-sdk/commit/70e370778d203a379b7a4b2d21d5733079a9e739))
|
|
20
|
+
* **api:** api update ([cabb40c](https://github.com/RetellAI/retell-typescript-sdk/commit/cabb40c63143c01da4b3cad116d697138b1c9a52))
|
|
21
|
+
* **api:** api update ([13c9b38](https://github.com/RetellAI/retell-typescript-sdk/commit/13c9b38e9ebff1ed669be69b86c49795223760df))
|
|
22
|
+
* **api:** api update ([34e150c](https://github.com/RetellAI/retell-typescript-sdk/commit/34e150c77d93e5b8b1cc64b97de7d0e2a3f0aac9))
|
|
23
|
+
* **api:** api update ([b79d975](https://github.com/RetellAI/retell-typescript-sdk/commit/b79d9756a14a3e96ad34424235678dd027e440c3))
|
|
24
|
+
* **api:** api update ([1e54b3d](https://github.com/RetellAI/retell-typescript-sdk/commit/1e54b3d4daa75a7b8b04e6d1cb59e4d220faf7fa))
|
|
25
|
+
* **api:** api update ([2a5bb73](https://github.com/RetellAI/retell-typescript-sdk/commit/2a5bb73cff382245dde01999a4bf2c362a609d55))
|
|
26
|
+
* **api:** api update ([a4cc206](https://github.com/RetellAI/retell-typescript-sdk/commit/a4cc2060fbe26359fc250f130b08ccf72801d1f0))
|
|
27
|
+
* **api:** api update ([4f3f668](https://github.com/RetellAI/retell-typescript-sdk/commit/4f3f6686cb0deb6f6891c3db86bbc5676c91aa35))
|
|
28
|
+
* **api:** api update ([c22abed](https://github.com/RetellAI/retell-typescript-sdk/commit/c22abed8603551069de546bf9301520b8cd28ae1))
|
|
29
|
+
* **api:** api update ([1ea57d6](https://github.com/RetellAI/retell-typescript-sdk/commit/1ea57d6303c14afd292f799c4a96b364e5f442aa))
|
|
30
|
+
* **api:** api update ([2d3e11e](https://github.com/RetellAI/retell-typescript-sdk/commit/2d3e11ed1ddc8bfc4601b6c86eaa2ac8c81ac406))
|
|
31
|
+
* **api:** api update ([c2fb7d0](https://github.com/RetellAI/retell-typescript-sdk/commit/c2fb7d03c1b52b403d6718205b1968c7c19065a5))
|
|
32
|
+
* **api:** api update ([7ee6688](https://github.com/RetellAI/retell-typescript-sdk/commit/7ee668867350bdb6e47d04552e65ec4b04abf09a))
|
|
33
|
+
* **api:** api update ([65fa185](https://github.com/RetellAI/retell-typescript-sdk/commit/65fa18528feec5506bba140cc2b92aadbac8d75e))
|
|
34
|
+
* **api:** api update ([52ee3d0](https://github.com/RetellAI/retell-typescript-sdk/commit/52ee3d0d153e43302f1d0ff74ec8f9250b969b5a))
|
|
35
|
+
* **api:** api update ([38c6494](https://github.com/RetellAI/retell-typescript-sdk/commit/38c6494566a07c618732c6ecce5d1535c7a9e53a))
|
|
36
|
+
* **api:** api update ([f37a14e](https://github.com/RetellAI/retell-typescript-sdk/commit/f37a14ee8f5d15d9efd8c782a93ff09a1075abb1))
|
|
37
|
+
* **api:** api update ([2074bad](https://github.com/RetellAI/retell-typescript-sdk/commit/2074badcfaecd562fad28ca5fdff84791ec488af))
|
|
38
|
+
* **api:** api update ([e2ca555](https://github.com/RetellAI/retell-typescript-sdk/commit/e2ca55563a3aeba9b36404d62f14f57456b5c042))
|
|
39
|
+
* **api:** api update ([74fe44c](https://github.com/RetellAI/retell-typescript-sdk/commit/74fe44c476b2a2b85ed518a46fa7e554c108fde6))
|
|
40
|
+
* **api:** api update ([28c94ce](https://github.com/RetellAI/retell-typescript-sdk/commit/28c94ce926382c660cc34ed5079ef6857a0fb085))
|
|
41
|
+
* **api:** api update ([1a7352f](https://github.com/RetellAI/retell-typescript-sdk/commit/1a7352f30631011d29ce3fe06ffa12f7c22d038c))
|
|
42
|
+
* **api:** api update ([0315747](https://github.com/RetellAI/retell-typescript-sdk/commit/0315747397129ed30d28399f9ad3ef6e88359224))
|
|
43
|
+
* **api:** api update ([a58b7d1](https://github.com/RetellAI/retell-typescript-sdk/commit/a58b7d1b0e0c02b6dab2932bebabcac55dba4756))
|
|
44
|
+
* **api:** api update ([51d5e80](https://github.com/RetellAI/retell-typescript-sdk/commit/51d5e80d8ad240ae1cd57f7abd47b1d249549745))
|
|
45
|
+
* **api:** api update ([aaf0b08](https://github.com/RetellAI/retell-typescript-sdk/commit/aaf0b08ecbc1de93c5ae1410f7693c75b08a0fb9))
|
|
46
|
+
* **api:** api update ([a68e6bc](https://github.com/RetellAI/retell-typescript-sdk/commit/a68e6bcc2fd159af261cb9296f904c99094b262e))
|
|
47
|
+
* **api:** api update ([6590d7d](https://github.com/RetellAI/retell-typescript-sdk/commit/6590d7d9efc3c6ce1129730174ee1378237b1145))
|
|
48
|
+
* **api:** api update ([0cbbff2](https://github.com/RetellAI/retell-typescript-sdk/commit/0cbbff28c0eb7912a3e6149eccf998a8706d74ed))
|
|
49
|
+
* **api:** api update ([be8a7bb](https://github.com/RetellAI/retell-typescript-sdk/commit/be8a7bbc0990c691e80047fd50d95c829d9df9be))
|
|
50
|
+
* **api:** api update ([87ab721](https://github.com/RetellAI/retell-typescript-sdk/commit/87ab7210d50e0eb8af166a5fe96d473e6ff0266f))
|
|
51
|
+
* **api:** api update ([ecc1ee5](https://github.com/RetellAI/retell-typescript-sdk/commit/ecc1ee5c0be1435eb91c05077d7a7f8355a06f7d))
|
|
52
|
+
* **api:** api update ([254b12a](https://github.com/RetellAI/retell-typescript-sdk/commit/254b12a5b24020b014d076c6661b43ab2b250a63))
|
|
53
|
+
* **api:** api update ([a06f51d](https://github.com/RetellAI/retell-typescript-sdk/commit/a06f51d13f1165ebe1ae2e6dc6f3adad19cc6db7))
|
|
54
|
+
* **api:** api update ([c8c0832](https://github.com/RetellAI/retell-typescript-sdk/commit/c8c0832badb2ddaeb1fe11246d680531a03994b6))
|
|
55
|
+
* **api:** api update ([dcde1b2](https://github.com/RetellAI/retell-typescript-sdk/commit/dcde1b21d94faae3b749865e7edab3da09755c34))
|
|
56
|
+
* **api:** api update ([e1dbb59](https://github.com/RetellAI/retell-typescript-sdk/commit/e1dbb590d5ef7f7d0b8b575dee41cc032ae582e2))
|
|
57
|
+
* **api:** api update ([d56c0d3](https://github.com/RetellAI/retell-typescript-sdk/commit/d56c0d32b07f1ba571db7b03fd42920b3299c29f))
|
|
58
|
+
* **api:** api update ([300cdbf](https://github.com/RetellAI/retell-typescript-sdk/commit/300cdbf72296402f87862671b83ad34314cd5ffc))
|
|
59
|
+
* **api:** api update ([2368c29](https://github.com/RetellAI/retell-typescript-sdk/commit/2368c29564eeee1f85a8ab0b3a66a455909e54c5))
|
|
60
|
+
* **api:** api update ([d5af562](https://github.com/RetellAI/retell-typescript-sdk/commit/d5af562af6da340d443abfb641949c3a33e7a292))
|
|
61
|
+
* **api:** api update ([b0bfc55](https://github.com/RetellAI/retell-typescript-sdk/commit/b0bfc55574fecffbccedae4a4e251a7826ac186a))
|
|
62
|
+
* **api:** api update ([7b5450a](https://github.com/RetellAI/retell-typescript-sdk/commit/7b5450a3e9015cbe75cd9ad0ed46e215c62769e8))
|
|
63
|
+
* **api:** api update ([f46d009](https://github.com/RetellAI/retell-typescript-sdk/commit/f46d009f02a1271ff9b298246e8d05b340dd40e7))
|
|
64
|
+
* **api:** api update ([db229c5](https://github.com/RetellAI/retell-typescript-sdk/commit/db229c5f5f87e7803cf0391d119d7da1c8897285))
|
|
65
|
+
* **api:** api update ([3f27260](https://github.com/RetellAI/retell-typescript-sdk/commit/3f27260e0f5793e34a621f19a3258cbaf18112f7))
|
|
66
|
+
* **api:** api update ([200378b](https://github.com/RetellAI/retell-typescript-sdk/commit/200378bc84aad2dd20e598bf9c00ebcae1327128))
|
|
67
|
+
* **api:** api update ([1080b97](https://github.com/RetellAI/retell-typescript-sdk/commit/1080b97827cc17ff217c54a5654ed2498de71151))
|
|
68
|
+
* **api:** api update ([04e6dd8](https://github.com/RetellAI/retell-typescript-sdk/commit/04e6dd8e4f4e4a81cbcc0c5387068b4ac1914f05))
|
|
69
|
+
* **api:** api update ([755b3ef](https://github.com/RetellAI/retell-typescript-sdk/commit/755b3ef117d140e4b14ac19ffa06a9e8eaa63de9))
|
|
70
|
+
* **api:** api update ([37b1315](https://github.com/RetellAI/retell-typescript-sdk/commit/37b13151f5f531002a7c4995c00fac97cb3faba8))
|
|
71
|
+
* **api:** api update ([71002e2](https://github.com/RetellAI/retell-typescript-sdk/commit/71002e27db08fb3f0922105b2152bc706e57a9fc))
|
|
72
|
+
* **api:** api update ([7198e58](https://github.com/RetellAI/retell-typescript-sdk/commit/7198e5821311a46e2298a6137e3a2e3eb1ab3aef))
|
|
73
|
+
* **api:** api update ([92aa974](https://github.com/RetellAI/retell-typescript-sdk/commit/92aa974b51cde8589f9e6361ac431be87c130317))
|
|
74
|
+
* **api:** api update ([a7c74e1](https://github.com/RetellAI/retell-typescript-sdk/commit/a7c74e16b5a6590088bdbbc172106818adaa6f0d))
|
|
75
|
+
* **api:** api update ([e1fa09d](https://github.com/RetellAI/retell-typescript-sdk/commit/e1fa09ddf80f0f6448d771e510d8bcc872bf6ecd))
|
|
76
|
+
* **api:** api update ([bfa8680](https://github.com/RetellAI/retell-typescript-sdk/commit/bfa8680bb6b7fe626b8b7284f920946f9326b496))
|
|
77
|
+
* **api:** api update ([678c466](https://github.com/RetellAI/retell-typescript-sdk/commit/678c466d0bd15a06373a0bd8b2fc8caffa7579c3))
|
|
78
|
+
* **api:** api update ([a7edd63](https://github.com/RetellAI/retell-typescript-sdk/commit/a7edd63bc8a997c884419b988e009eed2e6d0865))
|
|
79
|
+
* **api:** api update ([304e551](https://github.com/RetellAI/retell-typescript-sdk/commit/304e551e16612b1964b3ffec568a3cc7d72b110c))
|
|
80
|
+
* **api:** api update ([4309811](https://github.com/RetellAI/retell-typescript-sdk/commit/4309811291b3ada64c1e47a3ae1c5737366e8ed6))
|
|
81
|
+
* **api:** api update ([c5ab329](https://github.com/RetellAI/retell-typescript-sdk/commit/c5ab329eb5b1530a0f6323ac3e287f75c629e1da))
|
|
82
|
+
* **api:** api update ([5d0730e](https://github.com/RetellAI/retell-typescript-sdk/commit/5d0730e7c5211d29b9d390c9111016515f71685f))
|
|
83
|
+
* **api:** api update ([31cdaf8](https://github.com/RetellAI/retell-typescript-sdk/commit/31cdaf8c18ad68dcd6f59b3fe7d8c8f8654d823d))
|
|
84
|
+
* **api:** api update ([ab38081](https://github.com/RetellAI/retell-typescript-sdk/commit/ab38081bd4eb3814585c0628c64233dd11adfcd2))
|
|
85
|
+
* **api:** api update ([0eeba10](https://github.com/RetellAI/retell-typescript-sdk/commit/0eeba10d9343ffa400dad3b6fc1837a76f1de354))
|
|
86
|
+
* **api:** api update ([97e8a8d](https://github.com/RetellAI/retell-typescript-sdk/commit/97e8a8dc656364a0a95ef2464d414bdeafba6438))
|
|
87
|
+
* **api:** api update ([757e15e](https://github.com/RetellAI/retell-typescript-sdk/commit/757e15e6338baaf63ef41b5d2a11a3ac37f96c11))
|
|
88
|
+
* **api:** api update ([59eb1ce](https://github.com/RetellAI/retell-typescript-sdk/commit/59eb1ce3f86d705b0d1f86a1bbe29ce810d78a8f))
|
|
89
|
+
* **api:** api update ([07fe7d2](https://github.com/RetellAI/retell-typescript-sdk/commit/07fe7d2354a93ea8dc4fca8186e935fc8f5ea95a))
|
|
90
|
+
* **api:** api update ([8b16279](https://github.com/RetellAI/retell-typescript-sdk/commit/8b162792e7178d7929fb717eceb50b66d3ba21e7))
|
|
91
|
+
* **api:** api update ([8a4a778](https://github.com/RetellAI/retell-typescript-sdk/commit/8a4a778bb6e0d93e25839ced5027e12cb108d49c))
|
|
92
|
+
* **api:** api update ([42afcb7](https://github.com/RetellAI/retell-typescript-sdk/commit/42afcb780b91d9d4758c60c9b2fd4c775df3c8f7))
|
|
93
|
+
* **api:** api update ([742f928](https://github.com/RetellAI/retell-typescript-sdk/commit/742f92868799e7ed6478cc65ed9b2ff20c575ac3))
|
|
94
|
+
* **api:** api update ([25ce6a5](https://github.com/RetellAI/retell-typescript-sdk/commit/25ce6a546fff5a7d3fd4660ee254bf827ae7fde8))
|
|
95
|
+
* **api:** api update ([dd41629](https://github.com/RetellAI/retell-typescript-sdk/commit/dd4162972dc95cb208d1a6062af2784cdcf9c517))
|
|
96
|
+
* **api:** api update ([2ac2e1c](https://github.com/RetellAI/retell-typescript-sdk/commit/2ac2e1cc86fcd9eb6961f7df8a298ff1dac1e4df))
|
|
97
|
+
* **api:** api update ([de72d25](https://github.com/RetellAI/retell-typescript-sdk/commit/de72d257d1637e7d8b89f455041594276b826ddd))
|
|
98
|
+
* **api:** api update ([69ff272](https://github.com/RetellAI/retell-typescript-sdk/commit/69ff2721bbb2dd212e30a40dab996a15e6ca2389))
|
|
99
|
+
* **api:** api update ([952933a](https://github.com/RetellAI/retell-typescript-sdk/commit/952933a077a96d8ab0c96ba4ad3f943e38a9d94c))
|
|
100
|
+
* **api:** api update ([61ffd2c](https://github.com/RetellAI/retell-typescript-sdk/commit/61ffd2cc7be57d5a8e7ec99e9a904ff81151120a))
|
|
101
|
+
* **api:** api update ([bd2c1fa](https://github.com/RetellAI/retell-typescript-sdk/commit/bd2c1fa9a47078eceebc2dfbcc396763a69d068c))
|
|
102
|
+
* **api:** api update ([cca90be](https://github.com/RetellAI/retell-typescript-sdk/commit/cca90be461e627f16174ce57dd47fc4f7f665a63))
|
|
103
|
+
* **api:** api update ([6ae1c5f](https://github.com/RetellAI/retell-typescript-sdk/commit/6ae1c5fabad1f77818abd43e9189f1733245f92f))
|
|
104
|
+
* **api:** api update ([0c63f31](https://github.com/RetellAI/retell-typescript-sdk/commit/0c63f31f34875f568829806965aaa17e9638565c))
|
|
105
|
+
* **api:** api update ([2606d0d](https://github.com/RetellAI/retell-typescript-sdk/commit/2606d0d393e676acecb32ba6bc53807dea5a414b))
|
|
106
|
+
* **api:** api update ([46c8648](https://github.com/RetellAI/retell-typescript-sdk/commit/46c8648ea2fa65bf910733887ac1423a787df3ed))
|
|
107
|
+
* **api:** api update ([be1eebf](https://github.com/RetellAI/retell-typescript-sdk/commit/be1eebfc82c9388e9531765fb87a91c62e7247f1))
|
|
108
|
+
* **api:** api update ([d160248](https://github.com/RetellAI/retell-typescript-sdk/commit/d1602488c5fe14b7627f9b38c029751f648c4b6b))
|
|
109
|
+
* **api:** api update ([9a718b9](https://github.com/RetellAI/retell-typescript-sdk/commit/9a718b9dff4e53b76f09d98efb7641e6c26d7b3a))
|
|
110
|
+
* **api:** api update ([1b3da08](https://github.com/RetellAI/retell-typescript-sdk/commit/1b3da0895257c3e2a19b01f427d4aa63326eb95f))
|
|
111
|
+
* **api:** api update ([fe0958f](https://github.com/RetellAI/retell-typescript-sdk/commit/fe0958f7b237e3cad14a40f82c45e495c7228b37))
|
|
112
|
+
* **api:** api update ([74f2352](https://github.com/RetellAI/retell-typescript-sdk/commit/74f2352b32cc83d8d5a5382e5e2b8b0d43668e92))
|
|
113
|
+
* **api:** api update ([2180c2c](https://github.com/RetellAI/retell-typescript-sdk/commit/2180c2cdeb53efac15ee8c1f898cb1a2e7eb6d14))
|
|
114
|
+
* **api:** api update ([2733586](https://github.com/RetellAI/retell-typescript-sdk/commit/27335864766a88b06640e594d9990f81107dbe60))
|
|
115
|
+
* **api:** api update ([89ad1db](https://github.com/RetellAI/retell-typescript-sdk/commit/89ad1db5c4e10b24d52df3dd2a67c54117af3eb5))
|
|
116
|
+
* **api:** api update ([24a8feb](https://github.com/RetellAI/retell-typescript-sdk/commit/24a8feb61adea92ec2d6bb352cea218dec5ee56e))
|
|
117
|
+
* **api:** api update ([c98d913](https://github.com/RetellAI/retell-typescript-sdk/commit/c98d913529faf666bafe408f98e8a5d236d83308))
|
|
118
|
+
* **api:** api update ([3e25b7e](https://github.com/RetellAI/retell-typescript-sdk/commit/3e25b7e1cedf8841a1556ff1e297e7b1c609b6fd))
|
|
119
|
+
* **api:** api update ([a47993c](https://github.com/RetellAI/retell-typescript-sdk/commit/a47993cbfd7a2bcded1220ec932ee03f49c1a73c))
|
|
120
|
+
* **api:** api update ([1f3b3e3](https://github.com/RetellAI/retell-typescript-sdk/commit/1f3b3e3590abb0b77431b89a91c6da82f0ba8ed0))
|
|
121
|
+
* **api:** api update ([397bdf0](https://github.com/RetellAI/retell-typescript-sdk/commit/397bdf013dbcebff1b75329d9855d83c139aab5f))
|
|
122
|
+
* **api:** api update ([a74e7bd](https://github.com/RetellAI/retell-typescript-sdk/commit/a74e7bd24f9654dfc36b694ffbb3fa138ee8a1b3))
|
|
123
|
+
* **api:** api update ([4d474bd](https://github.com/RetellAI/retell-typescript-sdk/commit/4d474bd69ba13622738a001ec879dbcbe8a7370a))
|
|
124
|
+
* **api:** api update ([ca2e08b](https://github.com/RetellAI/retell-typescript-sdk/commit/ca2e08b1daee6db444caf0a729dc9ba60f7e54dc))
|
|
125
|
+
* **api:** api update ([c4a2766](https://github.com/RetellAI/retell-typescript-sdk/commit/c4a2766d3a75d7cacfaac72485513c13436c7993))
|
|
126
|
+
* **api:** api update ([dca0ee6](https://github.com/RetellAI/retell-typescript-sdk/commit/dca0ee697a906c7646c57623101a20d5590f13bf))
|
|
127
|
+
* **api:** api update ([434bf73](https://github.com/RetellAI/retell-typescript-sdk/commit/434bf73b9f2e3da8fcf2913f0d1cb7c5846da418))
|
|
128
|
+
* **api:** api update ([b1368a8](https://github.com/RetellAI/retell-typescript-sdk/commit/b1368a8f252e7f4fad172b875daae2442aa167cf))
|
|
129
|
+
* **api:** api update ([c368819](https://github.com/RetellAI/retell-typescript-sdk/commit/c36881925b1ad17364267b59a98ecaf743399c76))
|
|
130
|
+
* **api:** api update ([4edbd26](https://github.com/RetellAI/retell-typescript-sdk/commit/4edbd26024a4aec27b767ef333d0d6165eecec64))
|
|
131
|
+
* **api:** api update ([b1d6c3b](https://github.com/RetellAI/retell-typescript-sdk/commit/b1d6c3b5d705c55e08f17cb558a7815f22800a71))
|
|
132
|
+
* **api:** api update ([d163d35](https://github.com/RetellAI/retell-typescript-sdk/commit/d163d35387cf32bf88b5a89db3e3752660a24c03))
|
|
133
|
+
* **client:** add support for endpoint-specific base URLs ([eaeabe7](https://github.com/RetellAI/retell-typescript-sdk/commit/eaeabe731d1eafd3681d8a4aa537b53e23a3d9b7))
|
|
134
|
+
* **webhooks:** add client-level verify and sign functions. ([59d9d0b](https://github.com/RetellAI/retell-typescript-sdk/commit/59d9d0ba8a7bdaec88d93c4b64b3d4ff7c642696))
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
### Bug Fixes
|
|
138
|
+
|
|
139
|
+
* **ci:** release-doctor — report correct token name ([381c609](https://github.com/RetellAI/retell-typescript-sdk/commit/381c609079d059d309d3020121a96f699048ce4e))
|
|
140
|
+
* **client:** don't send `Content-Type` for bodyless methods ([86aa850](https://github.com/RetellAI/retell-typescript-sdk/commit/86aa850130f91a16283d9dfc1c5e7cfc1e8682c4))
|
|
141
|
+
* **client:** preserve URL params already embedded in path ([62f7eec](https://github.com/RetellAI/retell-typescript-sdk/commit/62f7eec03122905a1232e5d44717c031661035e6))
|
|
142
|
+
* coerce nullable values to undefined ([3d5ddab](https://github.com/RetellAI/retell-typescript-sdk/commit/3d5ddab956ce7bbdb53b2ad7883759f0e7786fe2))
|
|
143
|
+
* **docs/contributing:** correct pnpm link command ([72520eb](https://github.com/RetellAI/retell-typescript-sdk/commit/72520ebd565992efc46e4c41cb8bb8da51ce227e))
|
|
144
|
+
* **mcp:** add missing import in server.ts ([3b77c8b](https://github.com/RetellAI/retell-typescript-sdk/commit/3b77c8b0686f5878377dc1541e23791166720e7e))
|
|
145
|
+
* publish script — handle NPM errors correctly ([74e157b](https://github.com/RetellAI/retell-typescript-sdk/commit/74e157beca1fb029c18aa6878639c1ed172e3690))
|
|
146
|
+
* **tests:** fix invalid test value ([3c3999f](https://github.com/RetellAI/retell-typescript-sdk/commit/3c3999f867dd3a6dea595b80d80c3d95690f2975))
|
|
147
|
+
* **uploads:** JSON-stringify non-file arrays/objects in multipart form data ([3c7ec88](https://github.com/RetellAI/retell-typescript-sdk/commit/3c7ec88357f0b9189162b59bdcc8501c50063a34))
|
|
148
|
+
|
|
149
|
+
|
|
150
|
+
### Performance Improvements
|
|
151
|
+
|
|
152
|
+
* faster formatting ([1f72e9f](https://github.com/RetellAI/retell-typescript-sdk/commit/1f72e9ff921a2ff4198451a9b4a4112705088a9b))
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
### Chores
|
|
156
|
+
|
|
157
|
+
* break long lines in snippets into multiline ([7b3fb89](https://github.com/RetellAI/retell-typescript-sdk/commit/7b3fb895144e2ab9764d002ef4fccbddaec3d28f))
|
|
158
|
+
* ci build action ([14b63f9](https://github.com/RetellAI/retell-typescript-sdk/commit/14b63f99c7333510d50aa4c1ca391e3384875528))
|
|
159
|
+
* **ci:** bump node version for release workflows ([7947f74](https://github.com/RetellAI/retell-typescript-sdk/commit/7947f74e5f0f55713ebee3759e84cf6c92c57bb7))
|
|
160
|
+
* **ci:** enable for pull requests ([7fdd99b](https://github.com/RetellAI/retell-typescript-sdk/commit/7fdd99bba7522e2144f0331e19b63d5ce4b99854))
|
|
161
|
+
* **ci:** only run for pushes and fork pull requests ([1572bc0](https://github.com/RetellAI/retell-typescript-sdk/commit/1572bc037d23bae149d1a3926317d4b45f16f916))
|
|
162
|
+
* **ci:** skip uploading artifacts on stainless-internal branches ([ed577aa](https://github.com/RetellAI/retell-typescript-sdk/commit/ed577aaa80b30058f9c88667e4ba353f12eb0649))
|
|
163
|
+
* **ci:** upgrade `actions/github-script` ([6912978](https://github.com/RetellAI/retell-typescript-sdk/commit/6912978cda7b6bea7b7772b2c7178194c222cdb4))
|
|
164
|
+
* **client:** do not parse responses with empty content-length ([8d4c4ef](https://github.com/RetellAI/retell-typescript-sdk/commit/8d4c4ef3c0b9ed126d3792e59062bcaac435dea3))
|
|
165
|
+
* configure new SDK language ([98e2855](https://github.com/RetellAI/retell-typescript-sdk/commit/98e2855f4c6ca5f131c2aaa31f759452cccf23ab))
|
|
166
|
+
* **deps:** update dependency node-fetch to v2.6.13 ([5fd4292](https://github.com/RetellAI/retell-typescript-sdk/commit/5fd4292f057355fe2971677c81b9e80f8175c774))
|
|
167
|
+
* do not install brew dependencies in ./scripts/bootstrap by default ([779bd74](https://github.com/RetellAI/retell-typescript-sdk/commit/779bd740209327997ec1338738101fa65d6fe112))
|
|
168
|
+
* **docs:** grammar improvements ([907a718](https://github.com/RetellAI/retell-typescript-sdk/commit/907a7182ca7ea5b6c6da906836d0ecfc2c13949b))
|
|
169
|
+
* **docs:** use top-level-await in example snippets ([5796338](https://github.com/RetellAI/retell-typescript-sdk/commit/579633888761a2171676253a067a1f7616cc9d2d))
|
|
170
|
+
* improve publish-npm script --latest tag logic ([91b5313](https://github.com/RetellAI/retell-typescript-sdk/commit/91b5313504566820da426276dc487edb123c22d9))
|
|
171
|
+
* **internal:** bump @modelcontextprotocol/sdk, @hono/node-server, and minimatch ([2365185](https://github.com/RetellAI/retell-typescript-sdk/commit/2365185039625e654c002c34f21e61ea875cc3fb))
|
|
172
|
+
* **internal:** codegen related update ([63cba93](https://github.com/RetellAI/retell-typescript-sdk/commit/63cba9340a76fdd2b4b1609f20adbc72c4eaeff7))
|
|
173
|
+
* **internal:** codegen related update ([c760731](https://github.com/RetellAI/retell-typescript-sdk/commit/c760731408ee2f81c788f182bae288ddedeee5f0))
|
|
174
|
+
* **internal:** codegen related update ([978c3f8](https://github.com/RetellAI/retell-typescript-sdk/commit/978c3f8f4fcb4603f521c08220c2227deb83d80a))
|
|
175
|
+
* **internal:** configure MCP Server hosting ([b56cb80](https://github.com/RetellAI/retell-typescript-sdk/commit/b56cb80fbc44f96062f58378b5fc421608bb29a6))
|
|
176
|
+
* **internal:** fix incremental formatting in some cases ([f390932](https://github.com/RetellAI/retell-typescript-sdk/commit/f390932c746402e93b69fb52be36f2a869d1dded))
|
|
177
|
+
* **internal:** formatting change ([5f6c667](https://github.com/RetellAI/retell-typescript-sdk/commit/5f6c667d3717341484f03464c40e1617d7927b59))
|
|
178
|
+
* **internal:** ignore .eslintcache ([786157f](https://github.com/RetellAI/retell-typescript-sdk/commit/786157ffd64047b53761f824a1a38c5cedb65131))
|
|
179
|
+
* **internal:** make base APIResource abstract ([0d933ef](https://github.com/RetellAI/retell-typescript-sdk/commit/0d933ef59161679e93fbe5766a33f6e9f118241f))
|
|
180
|
+
* **internal:** move publish config ([9e4f257](https://github.com/RetellAI/retell-typescript-sdk/commit/9e4f25739c62bd58b6ebf23a591740fc00f463dd))
|
|
181
|
+
* **internal:** move stringifyQuery implementation to internal function ([5a2ed72](https://github.com/RetellAI/retell-typescript-sdk/commit/5a2ed72501742ee2136be6c6b8cc50223c0af973))
|
|
182
|
+
* **internal:** remove .eslintcache ([3df6057](https://github.com/RetellAI/retell-typescript-sdk/commit/3df60572f0b8b9a368779ab104a4075d92ace35e))
|
|
183
|
+
* **internal:** remove deprecated `compilerOptions.baseUrl` from tsconfig.json ([1509c31](https://github.com/RetellAI/retell-typescript-sdk/commit/1509c3139278aaad2d0bf34d55c2819cfde1f17d))
|
|
184
|
+
* **internal:** remove mock server code ([d00f4a5](https://github.com/RetellAI/retell-typescript-sdk/commit/d00f4a58901d6de131379a8fc071182f8dee2f08))
|
|
185
|
+
* **internal:** remove redundant imports config ([ced1122](https://github.com/RetellAI/retell-typescript-sdk/commit/ced112282ea4205ebada372b0b1fcfc8b57ba825))
|
|
186
|
+
* **internal:** update `actions/checkout` version ([9dec125](https://github.com/RetellAI/retell-typescript-sdk/commit/9dec1251e28ffd2ef643ea12d17873aa0853ba94))
|
|
187
|
+
* **internal:** update comment in script ([8843d03](https://github.com/RetellAI/retell-typescript-sdk/commit/8843d03acfa578f94d6413422e216abd5b583140))
|
|
188
|
+
* **internal:** update dependencies to address dependabot vulnerabilities ([d752a7b](https://github.com/RetellAI/retell-typescript-sdk/commit/d752a7b6f72c4f1f0bf53c985c118ac2deda6c74))
|
|
189
|
+
* **internal:** use npm pack for build uploads ([fcbadcf](https://github.com/RetellAI/retell-typescript-sdk/commit/fcbadcfdeec94d9befcb31dd1e8b1f92e96b0097))
|
|
190
|
+
* make some internal functions async ([6a01ac6](https://github.com/RetellAI/retell-typescript-sdk/commit/6a01ac612f855e1c5489631c63667c716cb4692a))
|
|
191
|
+
* **mcp-server:** improve instructions ([e8c90ca](https://github.com/RetellAI/retell-typescript-sdk/commit/e8c90ca8ffe74eb9bf0ba74d156cb31d4c2b61f4))
|
|
192
|
+
* mention unit type in timeout docs ([cdbafef](https://github.com/RetellAI/retell-typescript-sdk/commit/cdbafef4a2b97417116dea9ff3416ac9df3a0712))
|
|
193
|
+
* sync repo ([f0f6d67](https://github.com/RetellAI/retell-typescript-sdk/commit/f0f6d67d11686a6b127705bba44be00dc41e055f))
|
|
194
|
+
* **tests:** disable tests with false negative ([82c6830](https://github.com/RetellAI/retell-typescript-sdk/commit/82c6830d67959c6ca5ccc4cdf42e9006b6dbd248))
|
|
195
|
+
* update @stainless-api/prism-cli to v5.15.0 ([4305fa0](https://github.com/RetellAI/retell-typescript-sdk/commit/4305fa07ac5a9ccb84314d60c1999bcc454138a0))
|
|
196
|
+
* update CI script ([b39561c](https://github.com/RetellAI/retell-typescript-sdk/commit/b39561c5380e94ab63a80b6b7beec93171847544))
|
|
197
|
+
* update mock server docs ([d2b8c9a](https://github.com/RetellAI/retell-typescript-sdk/commit/d2b8c9acc1e02b3b87a14317f7d7955dc43897c2))
|
|
198
|
+
* update placeholder string ([f88e427](https://github.com/RetellAI/retell-typescript-sdk/commit/f88e4271fed575b0e847d5916ebf667c3f83f1e8))
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
### Documentation
|
|
202
|
+
|
|
203
|
+
* add examples to tsdocs ([ddddc01](https://github.com/RetellAI/retell-typescript-sdk/commit/ddddc01844b95a96f34119e902711a7a72684c10))
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
### Refactors
|
|
207
|
+
|
|
208
|
+
* **types:** replace Record with mapped types ([55f2a96](https://github.com/RetellAI/retell-typescript-sdk/commit/55f2a9672b2d3a70bf6cd8aa16eb57811cf127b7))
|
|
209
|
+
|
|
210
|
+
## 5.8.1 (2026-03-12)
|
|
211
|
+
|
|
212
|
+
Full Changelog: [v5.8.0...v5.8.1](https://github.com/RetellAI/retell-typescript-sdk/compare/v5.8.0...v5.8.1)
|
|
213
|
+
|
|
214
|
+
### Chores
|
|
215
|
+
|
|
216
|
+
* **internal:** bump @modelcontextprotocol/sdk, @hono/node-server, and minimatch ([2365185](https://github.com/RetellAI/retell-typescript-sdk/commit/2365185039625e654c002c34f21e61ea875cc3fb))
|
|
217
|
+
* **internal:** configure MCP Server hosting ([b56cb80](https://github.com/RetellAI/retell-typescript-sdk/commit/b56cb80fbc44f96062f58378b5fc421608bb29a6))
|
|
218
|
+
* **internal:** update dependencies to address dependabot vulnerabilities ([d752a7b](https://github.com/RetellAI/retell-typescript-sdk/commit/d752a7b6f72c4f1f0bf53c985c118ac2deda6c74))
|
|
219
|
+
|
|
220
|
+
## 5.8.0 (2026-03-09)
|
|
221
|
+
|
|
222
|
+
Full Changelog: [v5.7.1...v5.8.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v5.7.1...v5.8.0)
|
|
223
|
+
|
|
224
|
+
### Features
|
|
225
|
+
|
|
226
|
+
* **api:** api update ([8e7cad1](https://github.com/RetellAI/retell-typescript-sdk/commit/8e7cad1af73b0e2a981731662aaa2aeab1717145))
|
|
227
|
+
* **api:** api update ([4d95861](https://github.com/RetellAI/retell-typescript-sdk/commit/4d9586176043b1410cfd6a34d56b67a837310457))
|
|
228
|
+
* **api:** api update ([ec07491](https://github.com/RetellAI/retell-typescript-sdk/commit/ec0749158a48494b37cff4a5c43bb92543cc7051))
|
|
229
|
+
* **api:** api update ([fc0a060](https://github.com/RetellAI/retell-typescript-sdk/commit/fc0a0603ffdfb19d64ba83da83232078da5ccdbb))
|
|
230
|
+
* **api:** api update ([fd6c91b](https://github.com/RetellAI/retell-typescript-sdk/commit/fd6c91bc4d099960ce990d91601f681e85b36377))
|
|
231
|
+
* **api:** api update ([cd1cff9](https://github.com/RetellAI/retell-typescript-sdk/commit/cd1cff9305247a34bba8a9fe8e8ebbf475083c66))
|
|
232
|
+
* **api:** api update ([8f3fe29](https://github.com/RetellAI/retell-typescript-sdk/commit/8f3fe296814fdfce878dd4db1bc9ab183ddd2e34))
|
|
233
|
+
* **api:** api update ([9f48d44](https://github.com/RetellAI/retell-typescript-sdk/commit/9f48d44ba57c26a242742e7e15568f3588d415a8))
|
|
234
|
+
* **api:** api update ([d347942](https://github.com/RetellAI/retell-typescript-sdk/commit/d34794297ded8fa0d5967aa1df60a005f2d7b186))
|
|
235
|
+
* **api:** api update ([fde4d61](https://github.com/RetellAI/retell-typescript-sdk/commit/fde4d611de57b53d830fe51f48b6b3674c9e3f56))
|
|
236
|
+
* **api:** api update ([70e3707](https://github.com/RetellAI/retell-typescript-sdk/commit/70e370778d203a379b7a4b2d21d5733079a9e739))
|
|
237
|
+
* **api:** api update ([cabb40c](https://github.com/RetellAI/retell-typescript-sdk/commit/cabb40c63143c01da4b3cad116d697138b1c9a52))
|
|
238
|
+
* **api:** api update ([13c9b38](https://github.com/RetellAI/retell-typescript-sdk/commit/13c9b38e9ebff1ed669be69b86c49795223760df))
|
|
239
|
+
* **api:** api update ([34e150c](https://github.com/RetellAI/retell-typescript-sdk/commit/34e150c77d93e5b8b1cc64b97de7d0e2a3f0aac9))
|
|
240
|
+
* **api:** api update ([b79d975](https://github.com/RetellAI/retell-typescript-sdk/commit/b79d9756a14a3e96ad34424235678dd027e440c3))
|
|
241
|
+
* **api:** api update ([1e54b3d](https://github.com/RetellAI/retell-typescript-sdk/commit/1e54b3d4daa75a7b8b04e6d1cb59e4d220faf7fa))
|
|
242
|
+
* **api:** api update ([2a5bb73](https://github.com/RetellAI/retell-typescript-sdk/commit/2a5bb73cff382245dde01999a4bf2c362a609d55))
|
|
243
|
+
* **api:** api update ([a4cc206](https://github.com/RetellAI/retell-typescript-sdk/commit/a4cc2060fbe26359fc250f130b08ccf72801d1f0))
|
|
244
|
+
* **api:** api update ([4f3f668](https://github.com/RetellAI/retell-typescript-sdk/commit/4f3f6686cb0deb6f6891c3db86bbc5676c91aa35))
|
|
245
|
+
* **api:** api update ([c22abed](https://github.com/RetellAI/retell-typescript-sdk/commit/c22abed8603551069de546bf9301520b8cd28ae1))
|
|
246
|
+
* **api:** api update ([1ea57d6](https://github.com/RetellAI/retell-typescript-sdk/commit/1ea57d6303c14afd292f799c4a96b364e5f442aa))
|
|
247
|
+
* **api:** api update ([2d3e11e](https://github.com/RetellAI/retell-typescript-sdk/commit/2d3e11ed1ddc8bfc4601b6c86eaa2ac8c81ac406))
|
|
248
|
+
* **api:** api update ([c2fb7d0](https://github.com/RetellAI/retell-typescript-sdk/commit/c2fb7d03c1b52b403d6718205b1968c7c19065a5))
|
|
249
|
+
* **api:** api update ([7ee6688](https://github.com/RetellAI/retell-typescript-sdk/commit/7ee668867350bdb6e47d04552e65ec4b04abf09a))
|
|
250
|
+
* **api:** api update ([65fa185](https://github.com/RetellAI/retell-typescript-sdk/commit/65fa18528feec5506bba140cc2b92aadbac8d75e))
|
|
251
|
+
* **api:** api update ([52ee3d0](https://github.com/RetellAI/retell-typescript-sdk/commit/52ee3d0d153e43302f1d0ff74ec8f9250b969b5a))
|
|
252
|
+
* **api:** api update ([38c6494](https://github.com/RetellAI/retell-typescript-sdk/commit/38c6494566a07c618732c6ecce5d1535c7a9e53a))
|
|
253
|
+
* **api:** api update ([f37a14e](https://github.com/RetellAI/retell-typescript-sdk/commit/f37a14ee8f5d15d9efd8c782a93ff09a1075abb1))
|
|
254
|
+
* **api:** api update ([2074bad](https://github.com/RetellAI/retell-typescript-sdk/commit/2074badcfaecd562fad28ca5fdff84791ec488af))
|
|
255
|
+
* **api:** api update ([e2ca555](https://github.com/RetellAI/retell-typescript-sdk/commit/e2ca55563a3aeba9b36404d62f14f57456b5c042))
|
|
256
|
+
* **api:** api update ([74fe44c](https://github.com/RetellAI/retell-typescript-sdk/commit/74fe44c476b2a2b85ed518a46fa7e554c108fde6))
|
|
257
|
+
* **api:** api update ([28c94ce](https://github.com/RetellAI/retell-typescript-sdk/commit/28c94ce926382c660cc34ed5079ef6857a0fb085))
|
|
258
|
+
* **api:** api update ([1a7352f](https://github.com/RetellAI/retell-typescript-sdk/commit/1a7352f30631011d29ce3fe06ffa12f7c22d038c))
|
|
259
|
+
* **api:** api update ([0315747](https://github.com/RetellAI/retell-typescript-sdk/commit/0315747397129ed30d28399f9ad3ef6e88359224))
|
|
260
|
+
* **api:** api update ([a58b7d1](https://github.com/RetellAI/retell-typescript-sdk/commit/a58b7d1b0e0c02b6dab2932bebabcac55dba4756))
|
|
261
|
+
* **api:** api update ([51d5e80](https://github.com/RetellAI/retell-typescript-sdk/commit/51d5e80d8ad240ae1cd57f7abd47b1d249549745))
|
|
262
|
+
* **api:** api update ([aaf0b08](https://github.com/RetellAI/retell-typescript-sdk/commit/aaf0b08ecbc1de93c5ae1410f7693c75b08a0fb9))
|
|
263
|
+
* **api:** api update ([a68e6bc](https://github.com/RetellAI/retell-typescript-sdk/commit/a68e6bcc2fd159af261cb9296f904c99094b262e))
|
|
264
|
+
* **api:** api update ([6590d7d](https://github.com/RetellAI/retell-typescript-sdk/commit/6590d7d9efc3c6ce1129730174ee1378237b1145))
|
|
265
|
+
* **api:** api update ([0cbbff2](https://github.com/RetellAI/retell-typescript-sdk/commit/0cbbff28c0eb7912a3e6149eccf998a8706d74ed))
|
|
266
|
+
* **api:** api update ([be8a7bb](https://github.com/RetellAI/retell-typescript-sdk/commit/be8a7bbc0990c691e80047fd50d95c829d9df9be))
|
|
267
|
+
* **api:** api update ([87ab721](https://github.com/RetellAI/retell-typescript-sdk/commit/87ab7210d50e0eb8af166a5fe96d473e6ff0266f))
|
|
268
|
+
* **api:** api update ([ecc1ee5](https://github.com/RetellAI/retell-typescript-sdk/commit/ecc1ee5c0be1435eb91c05077d7a7f8355a06f7d))
|
|
269
|
+
* **api:** api update ([254b12a](https://github.com/RetellAI/retell-typescript-sdk/commit/254b12a5b24020b014d076c6661b43ab2b250a63))
|
|
270
|
+
* **api:** api update ([a06f51d](https://github.com/RetellAI/retell-typescript-sdk/commit/a06f51d13f1165ebe1ae2e6dc6f3adad19cc6db7))
|
|
271
|
+
* **api:** api update ([c8c0832](https://github.com/RetellAI/retell-typescript-sdk/commit/c8c0832badb2ddaeb1fe11246d680531a03994b6))
|
|
272
|
+
* **api:** api update ([dcde1b2](https://github.com/RetellAI/retell-typescript-sdk/commit/dcde1b21d94faae3b749865e7edab3da09755c34))
|
|
273
|
+
* **api:** api update ([e1dbb59](https://github.com/RetellAI/retell-typescript-sdk/commit/e1dbb590d5ef7f7d0b8b575dee41cc032ae582e2))
|
|
274
|
+
* **api:** api update ([d56c0d3](https://github.com/RetellAI/retell-typescript-sdk/commit/d56c0d32b07f1ba571db7b03fd42920b3299c29f))
|
|
275
|
+
* **api:** api update ([300cdbf](https://github.com/RetellAI/retell-typescript-sdk/commit/300cdbf72296402f87862671b83ad34314cd5ffc))
|
|
276
|
+
* **api:** api update ([2368c29](https://github.com/RetellAI/retell-typescript-sdk/commit/2368c29564eeee1f85a8ab0b3a66a455909e54c5))
|
|
277
|
+
* **api:** api update ([d5af562](https://github.com/RetellAI/retell-typescript-sdk/commit/d5af562af6da340d443abfb641949c3a33e7a292))
|
|
278
|
+
* **api:** api update ([b0bfc55](https://github.com/RetellAI/retell-typescript-sdk/commit/b0bfc55574fecffbccedae4a4e251a7826ac186a))
|
|
279
|
+
* **api:** api update ([7b5450a](https://github.com/RetellAI/retell-typescript-sdk/commit/7b5450a3e9015cbe75cd9ad0ed46e215c62769e8))
|
|
280
|
+
* **api:** api update ([f46d009](https://github.com/RetellAI/retell-typescript-sdk/commit/f46d009f02a1271ff9b298246e8d05b340dd40e7))
|
|
281
|
+
* **api:** api update ([db229c5](https://github.com/RetellAI/retell-typescript-sdk/commit/db229c5f5f87e7803cf0391d119d7da1c8897285))
|
|
282
|
+
* **api:** api update ([3f27260](https://github.com/RetellAI/retell-typescript-sdk/commit/3f27260e0f5793e34a621f19a3258cbaf18112f7))
|
|
283
|
+
* **api:** api update ([200378b](https://github.com/RetellAI/retell-typescript-sdk/commit/200378bc84aad2dd20e598bf9c00ebcae1327128))
|
|
284
|
+
* **api:** api update ([1080b97](https://github.com/RetellAI/retell-typescript-sdk/commit/1080b97827cc17ff217c54a5654ed2498de71151))
|
|
285
|
+
* **api:** api update ([04e6dd8](https://github.com/RetellAI/retell-typescript-sdk/commit/04e6dd8e4f4e4a81cbcc0c5387068b4ac1914f05))
|
|
286
|
+
* **api:** api update ([755b3ef](https://github.com/RetellAI/retell-typescript-sdk/commit/755b3ef117d140e4b14ac19ffa06a9e8eaa63de9))
|
|
287
|
+
* **api:** api update ([37b1315](https://github.com/RetellAI/retell-typescript-sdk/commit/37b13151f5f531002a7c4995c00fac97cb3faba8))
|
|
288
|
+
* **api:** api update ([71002e2](https://github.com/RetellAI/retell-typescript-sdk/commit/71002e27db08fb3f0922105b2152bc706e57a9fc))
|
|
289
|
+
* **api:** api update ([7198e58](https://github.com/RetellAI/retell-typescript-sdk/commit/7198e5821311a46e2298a6137e3a2e3eb1ab3aef))
|
|
290
|
+
* **api:** api update ([92aa974](https://github.com/RetellAI/retell-typescript-sdk/commit/92aa974b51cde8589f9e6361ac431be87c130317))
|
|
291
|
+
* **api:** api update ([a7c74e1](https://github.com/RetellAI/retell-typescript-sdk/commit/a7c74e16b5a6590088bdbbc172106818adaa6f0d))
|
|
292
|
+
* **api:** api update ([e1fa09d](https://github.com/RetellAI/retell-typescript-sdk/commit/e1fa09ddf80f0f6448d771e510d8bcc872bf6ecd))
|
|
293
|
+
* **api:** api update ([bfa8680](https://github.com/RetellAI/retell-typescript-sdk/commit/bfa8680bb6b7fe626b8b7284f920946f9326b496))
|
|
294
|
+
* **api:** api update ([678c466](https://github.com/RetellAI/retell-typescript-sdk/commit/678c466d0bd15a06373a0bd8b2fc8caffa7579c3))
|
|
295
|
+
* **api:** api update ([a7edd63](https://github.com/RetellAI/retell-typescript-sdk/commit/a7edd63bc8a997c884419b988e009eed2e6d0865))
|
|
296
|
+
* **api:** api update ([304e551](https://github.com/RetellAI/retell-typescript-sdk/commit/304e551e16612b1964b3ffec568a3cc7d72b110c))
|
|
297
|
+
* **api:** api update ([4309811](https://github.com/RetellAI/retell-typescript-sdk/commit/4309811291b3ada64c1e47a3ae1c5737366e8ed6))
|
|
298
|
+
* **api:** api update ([c5ab329](https://github.com/RetellAI/retell-typescript-sdk/commit/c5ab329eb5b1530a0f6323ac3e287f75c629e1da))
|
|
299
|
+
* **api:** api update ([5d0730e](https://github.com/RetellAI/retell-typescript-sdk/commit/5d0730e7c5211d29b9d390c9111016515f71685f))
|
|
300
|
+
* **api:** api update ([31cdaf8](https://github.com/RetellAI/retell-typescript-sdk/commit/31cdaf8c18ad68dcd6f59b3fe7d8c8f8654d823d))
|
|
301
|
+
* **api:** api update ([ab38081](https://github.com/RetellAI/retell-typescript-sdk/commit/ab38081bd4eb3814585c0628c64233dd11adfcd2))
|
|
302
|
+
* **api:** api update ([0eeba10](https://github.com/RetellAI/retell-typescript-sdk/commit/0eeba10d9343ffa400dad3b6fc1837a76f1de354))
|
|
303
|
+
* **api:** api update ([97e8a8d](https://github.com/RetellAI/retell-typescript-sdk/commit/97e8a8dc656364a0a95ef2464d414bdeafba6438))
|
|
304
|
+
* **api:** api update ([757e15e](https://github.com/RetellAI/retell-typescript-sdk/commit/757e15e6338baaf63ef41b5d2a11a3ac37f96c11))
|
|
305
|
+
* **api:** api update ([59eb1ce](https://github.com/RetellAI/retell-typescript-sdk/commit/59eb1ce3f86d705b0d1f86a1bbe29ce810d78a8f))
|
|
306
|
+
* **api:** api update ([07fe7d2](https://github.com/RetellAI/retell-typescript-sdk/commit/07fe7d2354a93ea8dc4fca8186e935fc8f5ea95a))
|
|
307
|
+
* **api:** api update ([8b16279](https://github.com/RetellAI/retell-typescript-sdk/commit/8b162792e7178d7929fb717eceb50b66d3ba21e7))
|
|
308
|
+
* **api:** api update ([8a4a778](https://github.com/RetellAI/retell-typescript-sdk/commit/8a4a778bb6e0d93e25839ced5027e12cb108d49c))
|
|
309
|
+
* **api:** api update ([42afcb7](https://github.com/RetellAI/retell-typescript-sdk/commit/42afcb780b91d9d4758c60c9b2fd4c775df3c8f7))
|
|
310
|
+
* **api:** api update ([742f928](https://github.com/RetellAI/retell-typescript-sdk/commit/742f92868799e7ed6478cc65ed9b2ff20c575ac3))
|
|
311
|
+
* **api:** api update ([25ce6a5](https://github.com/RetellAI/retell-typescript-sdk/commit/25ce6a546fff5a7d3fd4660ee254bf827ae7fde8))
|
|
312
|
+
* **api:** api update ([dd41629](https://github.com/RetellAI/retell-typescript-sdk/commit/dd4162972dc95cb208d1a6062af2784cdcf9c517))
|
|
313
|
+
* **api:** api update ([2ac2e1c](https://github.com/RetellAI/retell-typescript-sdk/commit/2ac2e1cc86fcd9eb6961f7df8a298ff1dac1e4df))
|
|
314
|
+
* **api:** api update ([de72d25](https://github.com/RetellAI/retell-typescript-sdk/commit/de72d257d1637e7d8b89f455041594276b826ddd))
|
|
315
|
+
* **api:** api update ([69ff272](https://github.com/RetellAI/retell-typescript-sdk/commit/69ff2721bbb2dd212e30a40dab996a15e6ca2389))
|
|
316
|
+
* **api:** api update ([952933a](https://github.com/RetellAI/retell-typescript-sdk/commit/952933a077a96d8ab0c96ba4ad3f943e38a9d94c))
|
|
317
|
+
* **api:** api update ([61ffd2c](https://github.com/RetellAI/retell-typescript-sdk/commit/61ffd2cc7be57d5a8e7ec99e9a904ff81151120a))
|
|
318
|
+
* **api:** api update ([bd2c1fa](https://github.com/RetellAI/retell-typescript-sdk/commit/bd2c1fa9a47078eceebc2dfbcc396763a69d068c))
|
|
319
|
+
* **api:** api update ([cca90be](https://github.com/RetellAI/retell-typescript-sdk/commit/cca90be461e627f16174ce57dd47fc4f7f665a63))
|
|
320
|
+
* **api:** api update ([6ae1c5f](https://github.com/RetellAI/retell-typescript-sdk/commit/6ae1c5fabad1f77818abd43e9189f1733245f92f))
|
|
321
|
+
* **api:** api update ([0c63f31](https://github.com/RetellAI/retell-typescript-sdk/commit/0c63f31f34875f568829806965aaa17e9638565c))
|
|
322
|
+
* **api:** api update ([2606d0d](https://github.com/RetellAI/retell-typescript-sdk/commit/2606d0d393e676acecb32ba6bc53807dea5a414b))
|
|
323
|
+
* **api:** api update ([46c8648](https://github.com/RetellAI/retell-typescript-sdk/commit/46c8648ea2fa65bf910733887ac1423a787df3ed))
|
|
324
|
+
* **api:** api update ([be1eebf](https://github.com/RetellAI/retell-typescript-sdk/commit/be1eebfc82c9388e9531765fb87a91c62e7247f1))
|
|
325
|
+
* **api:** api update ([d160248](https://github.com/RetellAI/retell-typescript-sdk/commit/d1602488c5fe14b7627f9b38c029751f648c4b6b))
|
|
326
|
+
* **api:** api update ([9a718b9](https://github.com/RetellAI/retell-typescript-sdk/commit/9a718b9dff4e53b76f09d98efb7641e6c26d7b3a))
|
|
327
|
+
* **api:** api update ([1b3da08](https://github.com/RetellAI/retell-typescript-sdk/commit/1b3da0895257c3e2a19b01f427d4aa63326eb95f))
|
|
328
|
+
* **api:** api update ([fe0958f](https://github.com/RetellAI/retell-typescript-sdk/commit/fe0958f7b237e3cad14a40f82c45e495c7228b37))
|
|
329
|
+
* **api:** api update ([74f2352](https://github.com/RetellAI/retell-typescript-sdk/commit/74f2352b32cc83d8d5a5382e5e2b8b0d43668e92))
|
|
330
|
+
* **api:** api update ([2180c2c](https://github.com/RetellAI/retell-typescript-sdk/commit/2180c2cdeb53efac15ee8c1f898cb1a2e7eb6d14))
|
|
331
|
+
* **api:** api update ([2733586](https://github.com/RetellAI/retell-typescript-sdk/commit/27335864766a88b06640e594d9990f81107dbe60))
|
|
332
|
+
* **api:** api update ([89ad1db](https://github.com/RetellAI/retell-typescript-sdk/commit/89ad1db5c4e10b24d52df3dd2a67c54117af3eb5))
|
|
333
|
+
* **api:** api update ([24a8feb](https://github.com/RetellAI/retell-typescript-sdk/commit/24a8feb61adea92ec2d6bb352cea218dec5ee56e))
|
|
334
|
+
* **api:** api update ([c98d913](https://github.com/RetellAI/retell-typescript-sdk/commit/c98d913529faf666bafe408f98e8a5d236d83308))
|
|
335
|
+
* **api:** api update ([3e25b7e](https://github.com/RetellAI/retell-typescript-sdk/commit/3e25b7e1cedf8841a1556ff1e297e7b1c609b6fd))
|
|
336
|
+
* **api:** api update ([a47993c](https://github.com/RetellAI/retell-typescript-sdk/commit/a47993cbfd7a2bcded1220ec932ee03f49c1a73c))
|
|
337
|
+
* **api:** api update ([1f3b3e3](https://github.com/RetellAI/retell-typescript-sdk/commit/1f3b3e3590abb0b77431b89a91c6da82f0ba8ed0))
|
|
338
|
+
* **api:** api update ([397bdf0](https://github.com/RetellAI/retell-typescript-sdk/commit/397bdf013dbcebff1b75329d9855d83c139aab5f))
|
|
339
|
+
* **api:** api update ([a74e7bd](https://github.com/RetellAI/retell-typescript-sdk/commit/a74e7bd24f9654dfc36b694ffbb3fa138ee8a1b3))
|
|
340
|
+
* **api:** api update ([4d474bd](https://github.com/RetellAI/retell-typescript-sdk/commit/4d474bd69ba13622738a001ec879dbcbe8a7370a))
|
|
341
|
+
* **api:** api update ([ca2e08b](https://github.com/RetellAI/retell-typescript-sdk/commit/ca2e08b1daee6db444caf0a729dc9ba60f7e54dc))
|
|
342
|
+
* **api:** api update ([c4a2766](https://github.com/RetellAI/retell-typescript-sdk/commit/c4a2766d3a75d7cacfaac72485513c13436c7993))
|
|
343
|
+
* **api:** api update ([dca0ee6](https://github.com/RetellAI/retell-typescript-sdk/commit/dca0ee697a906c7646c57623101a20d5590f13bf))
|
|
344
|
+
* **api:** api update ([434bf73](https://github.com/RetellAI/retell-typescript-sdk/commit/434bf73b9f2e3da8fcf2913f0d1cb7c5846da418))
|
|
345
|
+
* **api:** api update ([b1368a8](https://github.com/RetellAI/retell-typescript-sdk/commit/b1368a8f252e7f4fad172b875daae2442aa167cf))
|
|
346
|
+
* **api:** api update ([c368819](https://github.com/RetellAI/retell-typescript-sdk/commit/c36881925b1ad17364267b59a98ecaf743399c76))
|
|
347
|
+
* **api:** api update ([4edbd26](https://github.com/RetellAI/retell-typescript-sdk/commit/4edbd26024a4aec27b767ef333d0d6165eecec64))
|
|
348
|
+
* **api:** api update ([b1d6c3b](https://github.com/RetellAI/retell-typescript-sdk/commit/b1d6c3b5d705c55e08f17cb558a7815f22800a71))
|
|
349
|
+
* **api:** api update ([d163d35](https://github.com/RetellAI/retell-typescript-sdk/commit/d163d35387cf32bf88b5a89db3e3752660a24c03))
|
|
350
|
+
* **api:** api update ([b9972c0](https://github.com/RetellAI/retell-typescript-sdk/commit/b9972c0e8c880f6b6a11f1133a587a244c24071d))
|
|
351
|
+
* **api:** api update ([45934c8](https://github.com/RetellAI/retell-typescript-sdk/commit/45934c838c3d6580f812159bc4b4c02df291aadc))
|
|
352
|
+
* **api:** api update ([fd4bed5](https://github.com/RetellAI/retell-typescript-sdk/commit/fd4bed5d0164cf8acda62e75967645c096c257f4))
|
|
353
|
+
* **api:** api update ([18725eb](https://github.com/RetellAI/retell-typescript-sdk/commit/18725ebcc5929d41583468bbaabd8148a23087df))
|
|
354
|
+
* **client:** add support for endpoint-specific base URLs ([eaeabe7](https://github.com/RetellAI/retell-typescript-sdk/commit/eaeabe731d1eafd3681d8a4aa537b53e23a3d9b7))
|
|
355
|
+
* **webhooks:** add client-level verify and sign functions. ([59d9d0b](https://github.com/RetellAI/retell-typescript-sdk/commit/59d9d0ba8a7bdaec88d93c4b64b3d4ff7c642696))
|
|
356
|
+
|
|
357
|
+
|
|
358
|
+
### Bug Fixes
|
|
359
|
+
|
|
360
|
+
* **ci:** release-doctor — report correct token name ([381c609](https://github.com/RetellAI/retell-typescript-sdk/commit/381c609079d059d309d3020121a96f699048ce4e))
|
|
361
|
+
* **client:** don't send `Content-Type` for bodyless methods ([86aa850](https://github.com/RetellAI/retell-typescript-sdk/commit/86aa850130f91a16283d9dfc1c5e7cfc1e8682c4))
|
|
362
|
+
* **client:** preserve URL params already embedded in path ([62f7eec](https://github.com/RetellAI/retell-typescript-sdk/commit/62f7eec03122905a1232e5d44717c031661035e6))
|
|
363
|
+
* coerce nullable values to undefined ([3d5ddab](https://github.com/RetellAI/retell-typescript-sdk/commit/3d5ddab956ce7bbdb53b2ad7883759f0e7786fe2))
|
|
364
|
+
* **docs/contributing:** correct pnpm link command ([72520eb](https://github.com/RetellAI/retell-typescript-sdk/commit/72520ebd565992efc46e4c41cb8bb8da51ce227e))
|
|
365
|
+
* **mcp:** add missing import in server.ts ([3b77c8b](https://github.com/RetellAI/retell-typescript-sdk/commit/3b77c8b0686f5878377dc1541e23791166720e7e))
|
|
366
|
+
* publish script — handle NPM errors correctly ([74e157b](https://github.com/RetellAI/retell-typescript-sdk/commit/74e157beca1fb029c18aa6878639c1ed172e3690))
|
|
367
|
+
* **tests:** fix invalid test value ([3c3999f](https://github.com/RetellAI/retell-typescript-sdk/commit/3c3999f867dd3a6dea595b80d80c3d95690f2975))
|
|
368
|
+
* **uploads:** JSON-stringify non-file arrays/objects in multipart form data ([3c7ec88](https://github.com/RetellAI/retell-typescript-sdk/commit/3c7ec88357f0b9189162b59bdcc8501c50063a34))
|
|
369
|
+
|
|
370
|
+
|
|
371
|
+
### Performance Improvements
|
|
372
|
+
|
|
373
|
+
* faster formatting ([1f72e9f](https://github.com/RetellAI/retell-typescript-sdk/commit/1f72e9ff921a2ff4198451a9b4a4112705088a9b))
|
|
374
|
+
|
|
375
|
+
|
|
376
|
+
### Chores
|
|
377
|
+
|
|
378
|
+
* break long lines in snippets into multiline ([7b3fb89](https://github.com/RetellAI/retell-typescript-sdk/commit/7b3fb895144e2ab9764d002ef4fccbddaec3d28f))
|
|
379
|
+
* ci build action ([14b63f9](https://github.com/RetellAI/retell-typescript-sdk/commit/14b63f99c7333510d50aa4c1ca391e3384875528))
|
|
380
|
+
* **ci:** bump node version for release workflows ([7947f74](https://github.com/RetellAI/retell-typescript-sdk/commit/7947f74e5f0f55713ebee3759e84cf6c92c57bb7))
|
|
381
|
+
* **ci:** enable for pull requests ([7fdd99b](https://github.com/RetellAI/retell-typescript-sdk/commit/7fdd99bba7522e2144f0331e19b63d5ce4b99854))
|
|
382
|
+
* **ci:** only run for pushes and fork pull requests ([1572bc0](https://github.com/RetellAI/retell-typescript-sdk/commit/1572bc037d23bae149d1a3926317d4b45f16f916))
|
|
383
|
+
* **ci:** skip uploading artifacts on stainless-internal branches ([ed577aa](https://github.com/RetellAI/retell-typescript-sdk/commit/ed577aaa80b30058f9c88667e4ba353f12eb0649))
|
|
384
|
+
* **ci:** upgrade `actions/github-script` ([6912978](https://github.com/RetellAI/retell-typescript-sdk/commit/6912978cda7b6bea7b7772b2c7178194c222cdb4))
|
|
385
|
+
* **client:** do not parse responses with empty content-length ([8d4c4ef](https://github.com/RetellAI/retell-typescript-sdk/commit/8d4c4ef3c0b9ed126d3792e59062bcaac435dea3))
|
|
386
|
+
* configure new SDK language ([98e2855](https://github.com/RetellAI/retell-typescript-sdk/commit/98e2855f4c6ca5f131c2aaa31f759452cccf23ab))
|
|
387
|
+
* **deps:** update dependency node-fetch to v2.6.13 ([5fd4292](https://github.com/RetellAI/retell-typescript-sdk/commit/5fd4292f057355fe2971677c81b9e80f8175c774))
|
|
388
|
+
* do not install brew dependencies in ./scripts/bootstrap by default ([779bd74](https://github.com/RetellAI/retell-typescript-sdk/commit/779bd740209327997ec1338738101fa65d6fe112))
|
|
389
|
+
* **docs:** grammar improvements ([907a718](https://github.com/RetellAI/retell-typescript-sdk/commit/907a7182ca7ea5b6c6da906836d0ecfc2c13949b))
|
|
390
|
+
* **docs:** use top-level-await in example snippets ([5796338](https://github.com/RetellAI/retell-typescript-sdk/commit/579633888761a2171676253a067a1f7616cc9d2d))
|
|
391
|
+
* improve publish-npm script --latest tag logic ([91b5313](https://github.com/RetellAI/retell-typescript-sdk/commit/91b5313504566820da426276dc487edb123c22d9))
|
|
392
|
+
* **internal:** codegen related update ([63cba93](https://github.com/RetellAI/retell-typescript-sdk/commit/63cba9340a76fdd2b4b1609f20adbc72c4eaeff7))
|
|
393
|
+
* **internal:** codegen related update ([c760731](https://github.com/RetellAI/retell-typescript-sdk/commit/c760731408ee2f81c788f182bae288ddedeee5f0))
|
|
394
|
+
* **internal:** codegen related update ([978c3f8](https://github.com/RetellAI/retell-typescript-sdk/commit/978c3f8f4fcb4603f521c08220c2227deb83d80a))
|
|
395
|
+
* **internal:** fix incremental formatting in some cases ([f390932](https://github.com/RetellAI/retell-typescript-sdk/commit/f390932c746402e93b69fb52be36f2a869d1dded))
|
|
396
|
+
* **internal:** formatting change ([5f6c667](https://github.com/RetellAI/retell-typescript-sdk/commit/5f6c667d3717341484f03464c40e1617d7927b59))
|
|
397
|
+
* **internal:** ignore .eslintcache ([786157f](https://github.com/RetellAI/retell-typescript-sdk/commit/786157ffd64047b53761f824a1a38c5cedb65131))
|
|
398
|
+
* **internal:** make base APIResource abstract ([0d933ef](https://github.com/RetellAI/retell-typescript-sdk/commit/0d933ef59161679e93fbe5766a33f6e9f118241f))
|
|
399
|
+
* **internal:** move publish config ([9e4f257](https://github.com/RetellAI/retell-typescript-sdk/commit/9e4f25739c62bd58b6ebf23a591740fc00f463dd))
|
|
400
|
+
* **internal:** move stringifyQuery implementation to internal function ([5a2ed72](https://github.com/RetellAI/retell-typescript-sdk/commit/5a2ed72501742ee2136be6c6b8cc50223c0af973))
|
|
401
|
+
* **internal:** remove .eslintcache ([3df6057](https://github.com/RetellAI/retell-typescript-sdk/commit/3df60572f0b8b9a368779ab104a4075d92ace35e))
|
|
402
|
+
* **internal:** remove deprecated `compilerOptions.baseUrl` from tsconfig.json ([1509c31](https://github.com/RetellAI/retell-typescript-sdk/commit/1509c3139278aaad2d0bf34d55c2819cfde1f17d))
|
|
403
|
+
* **internal:** remove mock server code ([d00f4a5](https://github.com/RetellAI/retell-typescript-sdk/commit/d00f4a58901d6de131379a8fc071182f8dee2f08))
|
|
404
|
+
* **internal:** remove redundant imports config ([ced1122](https://github.com/RetellAI/retell-typescript-sdk/commit/ced112282ea4205ebada372b0b1fcfc8b57ba825))
|
|
405
|
+
* **internal:** update `actions/checkout` version ([9dec125](https://github.com/RetellAI/retell-typescript-sdk/commit/9dec1251e28ffd2ef643ea12d17873aa0853ba94))
|
|
406
|
+
* **internal:** update comment in script ([8843d03](https://github.com/RetellAI/retell-typescript-sdk/commit/8843d03acfa578f94d6413422e216abd5b583140))
|
|
407
|
+
* **internal:** use npm pack for build uploads ([fcbadcf](https://github.com/RetellAI/retell-typescript-sdk/commit/fcbadcfdeec94d9befcb31dd1e8b1f92e96b0097))
|
|
408
|
+
* make some internal functions async ([6a01ac6](https://github.com/RetellAI/retell-typescript-sdk/commit/6a01ac612f855e1c5489631c63667c716cb4692a))
|
|
409
|
+
* **mcp-server:** improve instructions ([f320dd5](https://github.com/RetellAI/retell-typescript-sdk/commit/f320dd52695c1080b72f7238c16981b01f73701a))
|
|
410
|
+
* mention unit type in timeout docs ([cdbafef](https://github.com/RetellAI/retell-typescript-sdk/commit/cdbafef4a2b97417116dea9ff3416ac9df3a0712))
|
|
411
|
+
* sync repo ([f0f6d67](https://github.com/RetellAI/retell-typescript-sdk/commit/f0f6d67d11686a6b127705bba44be00dc41e055f))
|
|
412
|
+
* **tests:** disable tests with false negative ([82c6830](https://github.com/RetellAI/retell-typescript-sdk/commit/82c6830d67959c6ca5ccc4cdf42e9006b6dbd248))
|
|
413
|
+
* update @stainless-api/prism-cli to v5.15.0 ([4305fa0](https://github.com/RetellAI/retell-typescript-sdk/commit/4305fa07ac5a9ccb84314d60c1999bcc454138a0))
|
|
414
|
+
* update CI script ([b39561c](https://github.com/RetellAI/retell-typescript-sdk/commit/b39561c5380e94ab63a80b6b7beec93171847544))
|
|
415
|
+
* update mock server docs ([d2b8c9a](https://github.com/RetellAI/retell-typescript-sdk/commit/d2b8c9acc1e02b3b87a14317f7d7955dc43897c2))
|
|
416
|
+
* update placeholder string ([f88e427](https://github.com/RetellAI/retell-typescript-sdk/commit/f88e4271fed575b0e847d5916ebf667c3f83f1e8))
|
|
417
|
+
|
|
418
|
+
|
|
419
|
+
### Documentation
|
|
420
|
+
|
|
421
|
+
* add examples to tsdocs ([ddddc01](https://github.com/RetellAI/retell-typescript-sdk/commit/ddddc01844b95a96f34119e902711a7a72684c10))
|
|
422
|
+
* **readme:** fix typo ([e0035e6](https://github.com/RetellAI/retell-typescript-sdk/commit/e0035e67eccfa4d8b9c2bb96476e4e628ed573f1))
|
|
423
|
+
|
|
424
|
+
|
|
425
|
+
### Refactors
|
|
426
|
+
|
|
427
|
+
* **types:** replace Record with mapped types ([55f2a96](https://github.com/RetellAI/retell-typescript-sdk/commit/55f2a9672b2d3a70bf6cd8aa16eb57811cf127b7))
|
|
428
|
+
|
|
429
|
+
## 5.7.1 (2026-03-07)
|
|
430
|
+
|
|
431
|
+
Full Changelog: [v5.7.0...v5.7.1](https://github.com/RetellAI/retell-typescript-sdk/compare/v5.7.0...v5.7.1)
|
|
432
|
+
|
|
433
|
+
### Bug Fixes
|
|
434
|
+
|
|
435
|
+
* **client:** preserve URL params already embedded in path ([e18ae2f](https://github.com/RetellAI/retell-typescript-sdk/commit/e18ae2f3cae23dc9452a69a0b8ae6c57b196b5e1))
|
|
436
|
+
|
|
437
|
+
|
|
438
|
+
### Chores
|
|
439
|
+
|
|
440
|
+
* **ci:** skip uploading artifacts on stainless-internal branches ([ed05dfc](https://github.com/RetellAI/retell-typescript-sdk/commit/ed05dfc0b06be01fe715c4428f0c19923dace6fa))
|
|
441
|
+
* **internal:** codegen related update ([63f6b0b](https://github.com/RetellAI/retell-typescript-sdk/commit/63f6b0bf0a1aec6a57ba46543b91455dbd8a8e19))
|
|
442
|
+
* update placeholder string ([a92fc9e](https://github.com/RetellAI/retell-typescript-sdk/commit/a92fc9ecdce486dd2e83342e30e370a2093fbbdc))
|
|
443
|
+
|
|
3
444
|
## 5.7.0 (2026-03-05)
|
|
4
445
|
|
|
5
446
|
Full Changelog: [v5.6.0...v5.7.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v5.6.0...v5.7.0)
|
package/README.md
CHANGED
|
@@ -10,8 +10,8 @@ The REST API documentation can be found on [docs.retellai.com](https://docs.rete
|
|
|
10
10
|
|
|
11
11
|
Use the Retell MCP Server to enable AI assistants to interact with this API, allowing them to explore endpoints, make test requests, and use documentation to help integrate this SDK into your application.
|
|
12
12
|
|
|
13
|
-
[](https://cursor.com/en-US/install-mcp?name=%40retell-ai%2Fmcp-server&config=
|
|
14
|
-
[](https://vscode.stainless.com/mcp/%7B%22name%22%3A%22%40retell-ai%2Fmcp-server%22%2C%
|
|
13
|
+
[](https://cursor.com/en-US/install-mcp?name=%40retell-ai%2Fmcp-server&config=eyJuYW1lIjoiQHJldGVsbC1haS9tY3Atc2VydmVyIiwidHJhbnNwb3J0IjoiaHR0cCIsInVybCI6Imh0dHBzOi8vcmV0ZWxsLnN0bG1jcC5jb20ifQ)
|
|
14
|
+
[](https://vscode.stainless.com/mcp/%7B%22name%22%3A%22%40retell-ai%2Fmcp-server%22%2C%22type%22%3A%22http%22%2C%22url%22%3A%22https%3A%2F%2Fretell.stlmcp.com%22%7D)
|
|
15
15
|
|
|
16
16
|
> Note: You may need to set environment variables in your MCP client.
|
|
17
17
|
|
package/client.d.mts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client.d.mts","sourceRoot":"","sources":["src/client.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"client.d.mts","sourceRoot":"","sources":["src/client.ts"],"names":[],"mappings":"OAEO,KAAK,EAAE,WAAW,EAAE,WAAW,EAAY;OAC3C,KAAK,EAAc,cAAc,EAAE,iBAAiB,EAAE,oBAAoB,EAAE;YAIvE,EAAE,MAAM,EAAE,QAAQ,EAAE;OAKzB,KAAK,IAAI;OAGT,KAAK,MAAM;OACX,KAAK,OAAO;OAEZ,KAAK,GAAG;OACR,EAAE,UAAU,EAAE;OACd,EACL,KAAK,EACL,iBAAiB,EACjB,wBAAwB,EACxB,eAAe,EACf,iBAAiB,EACjB,aAAa,EACb,mBAAmB,EACnB,iBAAiB,EAClB;OACM,EAAE,SAAS,EAAE,8BAA8B,EAAE,iBAAiB,EAAE;OAChE,EACL,IAAI,EACJ,yBAAyB,EACzB,uBAAuB,EACvB,cAAc,EACd,gBAAgB,EAChB,2BAA2B,EAC3B,YAAY,EACZ,gBAAgB,EAChB,iBAAiB,EACjB,eAAe,EAChB;OACM,EACL,IAAI,EACJ,8BAA8B,EAC9B,gCAAgC,EAChC,gBAAgB,EAChB,uBAAuB,EACvB,cAAc,EACd,gBAAgB,EAChB,YAAY,EACZ,gBAAgB,EACjB;OACM,EACL,SAAS,EACT,qBAAqB,EACrB,4BAA4B,EAC5B,mBAAmB,EACnB,qBAAqB,EACrB,iBAAiB,EACjB,uBAAuB,EACvB,qBAAqB,EACtB;OACM,EAAE,WAAW,EAAE,2BAA2B,EAAE;OAC5C,EACL,gBAAgB,EAChB,4BAA4B,EAC5B,0BAA0B,EAC1B,4BAA4B,EAC5B,wBAAwB,EACxB,8BAA8B,EAC9B,4BAA4B,EAC7B;OACM,EACL,yBAAyB,EACzB,qCAAqC,EACrC,qCAAqC,EACrC,iCAAiC,EACjC,qCAAqC,EACtC;OACM,EACL,aAAa,EACb,6BAA6B,EAC7B,yBAAyB,EACzB,+BAA+B,EAC/B,yBAAyB,EACzB,qBAAqB,EACtB;OACM,EACL,GAAG,EACH,eAAe,EACf,aAAa,EACb,eAAe,EACf,WAAW,EACX,iBAAiB,EACjB,eAAe,EAChB;OACM,EACL,OAAO,EACP,iBAAiB,EACjB,wBAAwB,EACxB,0BAA0B,EAC3B;OACM,EACL,WAAW,EACX,uBAAuB,EACvB,uBAAuB,EACvB,uBAAuB,EACvB,mBAAmB,EACnB,uBAAuB,EACxB;OACM,EACL,iBAAiB,EACjB,0BAA0B,EAC1B,mBAAmB,EACnB,yBAAyB,EACzB,kCAAkC,EAClC,wBAAwB,EACxB,0BAA0B,EAC1B,iCAAiC,EACjC,mCAAmC,EACnC,wBAAwB,EACxB,kCAAkC,EAClC,KAAK,EACN;OACM,EACL,KAAK,EACL,sBAAsB,EACtB,gBAAgB,EAChB,iBAAiB,EACjB,aAAa,EACb,iBAAiB,EACjB,mBAAmB,EACpB;OACM,EAAE,KAAK,KAAK,EAAE;OACd,EAAE,WAAW,EAAE,eAAe,EAAgB;OAC9C,EAAE,mBAAmB,EAAE,cAAc,EAAE;OAEvC,EACL,KAAK,QAAQ,EACb,KAAK,MAAM,EAIZ;AAGD,MAAM,WAAW,aAAa;IAC5B,MAAM,EAAE,MAAM,CAAC;IAEf;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;IAEpC;;;;;;;;OAQG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC7B;;;OAGG;IACH,YAAY,CAAC,EAAE,iBAAiB,GAAG,SAAS,CAAC;IAE7C;;;;OAIG;IACH,KAAK,CAAC,EAAE,KAAK,GAAG,SAAS,CAAC;IAE1B;;;;;OAKG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAEhC;;;;;OAKG;IACH,cAAc,CAAC,EAAE,WAAW,GAAG,SAAS,CAAC;IAEzC;;;;;OAKG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,SAAS,CAAC,GAAG,SAAS,CAAC;IAE9D;;;;OAIG;IACH,QAAQ,CAAC,EAAE,QAAQ,GAAG,SAAS,CAAC;IAEhC;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CAC7B;AAED;;GAEG;AACH,qBAAa,MAAM;;IACjB,MAAM,EAAE,MAAM,CAAC;IAEf,OAAO,EAAE,MAAM,CAAC;IAChB,UAAU,EAAE,MAAM,CAAC;IACnB,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,QAAQ,GAAG,SAAS,CAAC;IAC/B,YAAY,EAAE,iBAAiB,GAAG,SAAS,CAAC;IAE5C,OAAO,CAAC,KAAK,CAAQ;IAErB,SAAS,CAAC,iBAAiB,CAAC,EAAE,MAAM,CAAC;IACrC,OAAO,CAAC,QAAQ,CAAgB;IAEhC;;;;;;;;;;;OAWG;gBACS,EAAE,OAAoC,EAAE,MAAM,EAAE,GAAG,IAAI,EAAE,EAAE,aAAa;IAiCpF;;OAEG;IACH,WAAW,CAAC,OAAO,EAAE,OAAO,CAAC,aAAa,CAAC,GAAG,IAAI;IAuBlD,SAAS,CAAC,YAAY,IAAI,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,SAAS,CAAC,GAAG,SAAS;IAIxE,SAAS,CAAC,eAAe,CAAC,EAAE,MAAM,EAAE,KAAK,EAAE,EAAE,eAAe;cAI5C,WAAW,CAAC,IAAI,EAAE,mBAAmB,GAAG,OAAO,CAAC,eAAe,GAAG,SAAS,CAAC;IAI5F;;OAEG;IACH,SAAS,CAAC,cAAc,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,MAAM;IAIzE,OAAO,CAAC,YAAY;IAIpB,SAAS,CAAC,qBAAqB,IAAI,MAAM;IAIzC,SAAS,CAAC,eAAe,CACvB,MAAM,EAAE,MAAM,EACd,KAAK,EAAE,MAAM,EACb,OAAO,EAAE,MAAM,GAAG,SAAS,EAC3B,OAAO,EAAE,OAAO,GACf,MAAM,CAAC,QAAQ;IAIlB,QAAQ,CACN,IAAI,EAAE,MAAM,EACZ,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,IAAI,GAAG,SAAS,EACjD,cAAc,CAAC,EAAE,MAAM,GAAG,SAAS,GAClC,MAAM;IAoBT;;OAEG;cACa,cAAc,CAAC,OAAO,EAAE,mBAAmB,GAAG,OAAO,CAAC,IAAI,CAAC;IAE3E;;;;;OAKG;cACa,cAAc,CAC5B,OAAO,EAAE,WAAW,EACpB,EAAE,GAAG,EAAE,OAAO,EAAE,EAAE;QAAE,GAAG,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,mBAAmB,CAAA;KAAE,GAC9D,OAAO,CAAC,IAAI,CAAC;IAEhB,GAAG,CAAC,GAAG,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,cAAc,CAAC,cAAc,CAAC,GAAG,UAAU,CAAC,GAAG,CAAC;IAI9E,IAAI,CAAC,GAAG,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,cAAc,CAAC,cAAc,CAAC,GAAG,UAAU,CAAC,GAAG,CAAC;IAI/E,KAAK,CAAC,GAAG,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,cAAc,CAAC,cAAc,CAAC,GAAG,UAAU,CAAC,GAAG,CAAC;IAIhF,GAAG,CAAC,GAAG,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,cAAc,CAAC,cAAc,CAAC,GAAG,UAAU,CAAC,GAAG,CAAC;IAI9E,MAAM,CAAC,GAAG,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,cAAc,CAAC,cAAc,CAAC,GAAG,UAAU,CAAC,GAAG,CAAC;IAIjF,OAAO,CAAC,aAAa;IAYrB,OAAO,CAAC,GAAG,EACT,OAAO,EAAE,cAAc,CAAC,mBAAmB,CAAC,EAC5C,gBAAgB,GAAE,MAAM,GAAG,IAAW,GACrC,UAAU,CAAC,GAAG,CAAC;YAIJ,WAAW;IA6JnB,gBAAgB,CACpB,GAAG,EAAE,WAAW,EAChB,IAAI,EAAE,WAAW,GAAG,SAAS,EAC7B,EAAE,EAAE,MAAM,EACV,UAAU,EAAE,eAAe,GAC1B,OAAO,CAAC,QAAQ,CAAC;YA+BN,WAAW;YAuBX,YAAY;IAuC1B,OAAO,CAAC,kCAAkC;IAepC,YAAY,CAChB,YAAY,EAAE,mBAAmB,EACjC,EAAE,UAAc,EAAE,GAAE;QAAE,UAAU,CAAC,EAAE,MAAM,CAAA;KAAO,GAC/C,OAAO,CAAC;QAAE,GAAG,EAAE,oBAAoB,CAAC;QAAC,GAAG,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,MAAM,CAAA;KAAE,CAAC;YAwBzD,YAAY;IAqC1B,OAAO,CAAC,UAAU;IAMlB,OAAO,CAAC,SAAS;IA6CjB,MAAM,CAAC,MAAM,gBAAQ;IACrB,MAAM,CAAC,eAAe,SAAS;IAE/B,MAAM,CAAC,WAAW,4BAAsB;IACxC,MAAM,CAAC,QAAQ,yBAAmB;IAClC,MAAM,CAAC,kBAAkB,mCAA6B;IACtD,MAAM,CAAC,yBAAyB,0CAAoC;IACpE,MAAM,CAAC,iBAAiB,kCAA4B;IACpD,MAAM,CAAC,aAAa,8BAAwB;IAC5C,MAAM,CAAC,aAAa,8BAAwB;IAC5C,MAAM,CAAC,cAAc,+BAAyB;IAC9C,MAAM,CAAC,eAAe,gCAA0B;IAChD,MAAM,CAAC,mBAAmB,oCAA8B;IACxD,MAAM,CAAC,mBAAmB,oCAA8B;IACxD,MAAM,CAAC,qBAAqB,sCAAgC;IAC5D,MAAM,CAAC,wBAAwB,yCAAmC;IAElE,MAAM,CAAC,MAAM,wBAAkB;IAE/B,MAAM,CAAC,MAAM,wEAAmB;IAChC,MAAM,CAAC,IAAI,oDAAiB;IAE5B,IAAI,EAAE,GAAG,CAAC,IAAI,CAAsB;IACpC,IAAI,EAAE,GAAG,CAAC,IAAI,CAAsB;IACpC,WAAW,EAAE,GAAG,CAAC,WAAW,CAA6B;IACzD,KAAK,EAAE,GAAG,CAAC,KAAK,CAAuB;IACvC,SAAS,EAAE,GAAG,CAAC,SAAS,CAA2B;IACnD,GAAG,EAAE,GAAG,CAAC,GAAG,CAAqB;IACjC,gBAAgB,EAAE,GAAG,CAAC,gBAAgB,CAAkC;IACxE,yBAAyB,EAAE,GAAG,CAAC,yBAAyB,CAA2C;IACnG,aAAa,EAAE,GAAG,CAAC,aAAa,CAA+B;IAC/D,KAAK,EAAE,GAAG,CAAC,KAAK,CAAuB;IACvC,WAAW,EAAE,GAAG,CAAC,WAAW,CAA6B;IACzD,SAAS,EAAE,GAAG,CAAC,SAAS,CAA2B;IACnD,KAAK,EAAE,GAAG,CAAC,KAAK,CAAuB;IACvC,OAAO,EAAE,GAAG,CAAC,OAAO,CAAyB;CAC9C;AAiBD,MAAM,CAAC,OAAO,WAAW,MAAM,CAAC;IAC9B,MAAM,MAAM,cAAc,GAAG,IAAI,CAAC,cAAc,CAAC;IAEjD,OAAO,EACL,IAAI,IAAI,IAAI,EACZ,KAAK,YAAY,IAAI,YAAY,EACjC,KAAK,iBAAiB,IAAI,iBAAiB,EAC3C,KAAK,eAAe,IAAI,eAAe,EACvC,KAAK,gBAAgB,IAAI,gBAAgB,EACzC,KAAK,gBAAgB,IAAI,gBAAgB,EACzC,KAAK,cAAc,IAAI,cAAc,EACrC,KAAK,yBAAyB,IAAI,yBAAyB,EAC3D,KAAK,uBAAuB,IAAI,uBAAuB,EACvD,KAAK,2BAA2B,IAAI,2BAA2B,GAChE,CAAC;IAEF,OAAO,EACL,IAAI,IAAI,IAAI,EACZ,KAAK,YAAY,IAAI,YAAY,EACjC,KAAK,gBAAgB,IAAI,gBAAgB,EACzC,KAAK,gCAAgC,IAAI,gCAAgC,EACzE,KAAK,gBAAgB,IAAI,gBAAgB,EACzC,KAAK,gBAAgB,IAAI,gBAAgB,EACzC,KAAK,cAAc,IAAI,cAAc,EACrC,KAAK,8BAA8B,IAAI,8BAA8B,EACrE,KAAK,uBAAuB,IAAI,uBAAuB,GACxD,CAAC;IAEF,OAAO,EACL,WAAW,IAAI,WAAW,EAC1B,KAAK,mBAAmB,IAAI,mBAAmB,EAC/C,KAAK,uBAAuB,IAAI,uBAAuB,EACvD,KAAK,uBAAuB,IAAI,uBAAuB,EACvD,KAAK,uBAAuB,IAAI,uBAAuB,EACvD,KAAK,uBAAuB,IAAI,uBAAuB,GACxD,CAAC;IAEF,OAAO,EACL,KAAK,IAAI,KAAK,EACd,KAAK,aAAa,IAAI,aAAa,EACnC,KAAK,iBAAiB,IAAI,iBAAiB,EAC3C,KAAK,wBAAwB,IAAI,wBAAwB,EACzD,KAAK,iBAAiB,IAAI,iBAAiB,EAC3C,KAAK,mBAAmB,IAAI,mBAAmB,EAC/C,KAAK,iBAAiB,IAAI,iBAAiB,EAC3C,KAAK,eAAe,IAAI,eAAe,GACxC,CAAC;IAEF,OAAO,EACL,SAAS,IAAI,SAAS,EACtB,KAAK,iBAAiB,IAAI,iBAAiB,EAC3C,KAAK,qBAAqB,IAAI,qBAAqB,EACnD,KAAK,4BAA4B,IAAI,4BAA4B,EACjE,KAAK,qBAAqB,IAAI,qBAAqB,EACnD,KAAK,uBAAuB,IAAI,uBAAuB,EACvD,KAAK,qBAAqB,IAAI,qBAAqB,EACnD,KAAK,mBAAmB,IAAI,mBAAmB,GAChD,CAAC;IAEF,OAAO,EACL,GAAG,IAAI,GAAG,EACV,KAAK,WAAW,IAAI,WAAW,EAC/B,KAAK,eAAe,IAAI,eAAe,EACvC,KAAK,eAAe,IAAI,eAAe,EACvC,KAAK,iBAAiB,IAAI,iBAAiB,EAC3C,KAAK,eAAe,IAAI,eAAe,EACvC,KAAK,aAAa,IAAI,aAAa,GACpC,CAAC;IAEF,OAAO,EACL,gBAAgB,IAAI,gBAAgB,EACpC,KAAK,wBAAwB,IAAI,wBAAwB,EACzD,KAAK,4BAA4B,IAAI,4BAA4B,EACjE,KAAK,4BAA4B,IAAI,4BAA4B,EACjE,KAAK,8BAA8B,IAAI,8BAA8B,EACrE,KAAK,4BAA4B,IAAI,4BAA4B,EACjE,KAAK,0BAA0B,IAAI,0BAA0B,GAC9D,CAAC;IAEF,OAAO,EACL,yBAAyB,IAAI,yBAAyB,EACtD,KAAK,iCAAiC,IAAI,iCAAiC,EAC3E,KAAK,qCAAqC,IAAI,qCAAqC,EACnF,KAAK,qCAAqC,IAAI,qCAAqC,EACnF,KAAK,qCAAqC,IAAI,qCAAqC,GACpF,CAAC;IAEF,OAAO,EACL,aAAa,IAAI,aAAa,EAC9B,KAAK,qBAAqB,IAAI,qBAAqB,EACnD,KAAK,yBAAyB,IAAI,yBAAyB,EAC3D,KAAK,yBAAyB,IAAI,yBAAyB,EAC3D,KAAK,6BAA6B,IAAI,6BAA6B,EACnE,KAAK,+BAA+B,IAAI,+BAA+B,GACxE,CAAC;IAEF,OAAO,EACL,KAAK,IAAI,KAAK,EACd,KAAK,aAAa,IAAI,aAAa,EACnC,KAAK,iBAAiB,IAAI,iBAAiB,EAC3C,KAAK,mBAAmB,IAAI,mBAAmB,EAC/C,KAAK,sBAAsB,IAAI,sBAAsB,EACrD,KAAK,gBAAgB,IAAI,gBAAgB,EACzC,KAAK,iBAAiB,IAAI,iBAAiB,GAC5C,CAAC;IAEF,OAAO,EAAE,WAAW,IAAI,WAAW,EAAE,KAAK,2BAA2B,IAAI,2BAA2B,EAAE,CAAC;IAEvG,OAAO,EACL,SAAS,IAAI,SAAS,EACtB,KAAK,iBAAiB,IAAI,iBAAiB,EAC3C,KAAK,8BAA8B,IAAI,8BAA8B,GACtE,CAAC;IAEF,OAAO,EACL,KAAK,IAAI,KAAK,EACd,KAAK,iBAAiB,IAAI,iBAAiB,EAC3C,KAAK,0BAA0B,IAAI,0BAA0B,EAC7D,KAAK,mBAAmB,IAAI,mBAAmB,EAC/C,KAAK,0BAA0B,IAAI,0BAA0B,EAC7D,KAAK,mCAAmC,IAAI,mCAAmC,EAC/E,KAAK,wBAAwB,IAAI,wBAAwB,EACzD,KAAK,yBAAyB,IAAI,yBAAyB,EAC3D,KAAK,kCAAkC,IAAI,kCAAkC,EAC7E,KAAK,wBAAwB,IAAI,wBAAwB,EACzD,KAAK,iCAAiC,IAAI,iCAAiC,EAC3E,KAAK,kCAAkC,IAAI,kCAAkC,GAC9E,CAAC;IAEF,OAAO,EACL,OAAO,IAAI,OAAO,EAClB,KAAK,iBAAiB,IAAI,iBAAiB,EAC3C,KAAK,0BAA0B,IAAI,0BAA0B,EAC7D,KAAK,wBAAwB,IAAI,wBAAwB,GAC1D,CAAC;CACH"}
|
package/client.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client.d.ts","sourceRoot":"","sources":["src/client.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"client.d.ts","sourceRoot":"","sources":["src/client.ts"],"names":[],"mappings":"OAEO,KAAK,EAAE,WAAW,EAAE,WAAW,EAAY;OAC3C,KAAK,EAAc,cAAc,EAAE,iBAAiB,EAAE,oBAAoB,EAAE;YAIvE,EAAE,MAAM,EAAE,QAAQ,EAAE;OAKzB,KAAK,IAAI;OAGT,KAAK,MAAM;OACX,KAAK,OAAO;OAEZ,KAAK,GAAG;OACR,EAAE,UAAU,EAAE;OACd,EACL,KAAK,EACL,iBAAiB,EACjB,wBAAwB,EACxB,eAAe,EACf,iBAAiB,EACjB,aAAa,EACb,mBAAmB,EACnB,iBAAiB,EAClB;OACM,EAAE,SAAS,EAAE,8BAA8B,EAAE,iBAAiB,EAAE;OAChE,EACL,IAAI,EACJ,yBAAyB,EACzB,uBAAuB,EACvB,cAAc,EACd,gBAAgB,EAChB,2BAA2B,EAC3B,YAAY,EACZ,gBAAgB,EAChB,iBAAiB,EACjB,eAAe,EAChB;OACM,EACL,IAAI,EACJ,8BAA8B,EAC9B,gCAAgC,EAChC,gBAAgB,EAChB,uBAAuB,EACvB,cAAc,EACd,gBAAgB,EAChB,YAAY,EACZ,gBAAgB,EACjB;OACM,EACL,SAAS,EACT,qBAAqB,EACrB,4BAA4B,EAC5B,mBAAmB,EACnB,qBAAqB,EACrB,iBAAiB,EACjB,uBAAuB,EACvB,qBAAqB,EACtB;OACM,EAAE,WAAW,EAAE,2BAA2B,EAAE;OAC5C,EACL,gBAAgB,EAChB,4BAA4B,EAC5B,0BAA0B,EAC1B,4BAA4B,EAC5B,wBAAwB,EACxB,8BAA8B,EAC9B,4BAA4B,EAC7B;OACM,EACL,yBAAyB,EACzB,qCAAqC,EACrC,qCAAqC,EACrC,iCAAiC,EACjC,qCAAqC,EACtC;OACM,EACL,aAAa,EACb,6BAA6B,EAC7B,yBAAyB,EACzB,+BAA+B,EAC/B,yBAAyB,EACzB,qBAAqB,EACtB;OACM,EACL,GAAG,EACH,eAAe,EACf,aAAa,EACb,eAAe,EACf,WAAW,EACX,iBAAiB,EACjB,eAAe,EAChB;OACM,EACL,OAAO,EACP,iBAAiB,EACjB,wBAAwB,EACxB,0BAA0B,EAC3B;OACM,EACL,WAAW,EACX,uBAAuB,EACvB,uBAAuB,EACvB,uBAAuB,EACvB,mBAAmB,EACnB,uBAAuB,EACxB;OACM,EACL,iBAAiB,EACjB,0BAA0B,EAC1B,mBAAmB,EACnB,yBAAyB,EACzB,kCAAkC,EAClC,wBAAwB,EACxB,0BAA0B,EAC1B,iCAAiC,EACjC,mCAAmC,EACnC,wBAAwB,EACxB,kCAAkC,EAClC,KAAK,EACN;OACM,EACL,KAAK,EACL,sBAAsB,EACtB,gBAAgB,EAChB,iBAAiB,EACjB,aAAa,EACb,iBAAiB,EACjB,mBAAmB,EACpB;OACM,EAAE,KAAK,KAAK,EAAE;OACd,EAAE,WAAW,EAAE,eAAe,EAAgB;OAC9C,EAAE,mBAAmB,EAAE,cAAc,EAAE;OAEvC,EACL,KAAK,QAAQ,EACb,KAAK,MAAM,EAIZ;AAGD,MAAM,WAAW,aAAa;IAC5B,MAAM,EAAE,MAAM,CAAC;IAEf;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;IAEpC;;;;;;;;OAQG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC7B;;;OAGG;IACH,YAAY,CAAC,EAAE,iBAAiB,GAAG,SAAS,CAAC;IAE7C;;;;OAIG;IACH,KAAK,CAAC,EAAE,KAAK,GAAG,SAAS,CAAC;IAE1B;;;;;OAKG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAEhC;;;;;OAKG;IACH,cAAc,CAAC,EAAE,WAAW,GAAG,SAAS,CAAC;IAEzC;;;;;OAKG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,SAAS,CAAC,GAAG,SAAS,CAAC;IAE9D;;;;OAIG;IACH,QAAQ,CAAC,EAAE,QAAQ,GAAG,SAAS,CAAC;IAEhC;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CAC7B;AAED;;GAEG;AACH,qBAAa,MAAM;;IACjB,MAAM,EAAE,MAAM,CAAC;IAEf,OAAO,EAAE,MAAM,CAAC;IAChB,UAAU,EAAE,MAAM,CAAC;IACnB,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,QAAQ,GAAG,SAAS,CAAC;IAC/B,YAAY,EAAE,iBAAiB,GAAG,SAAS,CAAC;IAE5C,OAAO,CAAC,KAAK,CAAQ;IAErB,SAAS,CAAC,iBAAiB,CAAC,EAAE,MAAM,CAAC;IACrC,OAAO,CAAC,QAAQ,CAAgB;IAEhC;;;;;;;;;;;OAWG;gBACS,EAAE,OAAoC,EAAE,MAAM,EAAE,GAAG,IAAI,EAAE,EAAE,aAAa;IAiCpF;;OAEG;IACH,WAAW,CAAC,OAAO,EAAE,OAAO,CAAC,aAAa,CAAC,GAAG,IAAI;IAuBlD,SAAS,CAAC,YAAY,IAAI,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,SAAS,CAAC,GAAG,SAAS;IAIxE,SAAS,CAAC,eAAe,CAAC,EAAE,MAAM,EAAE,KAAK,EAAE,EAAE,eAAe;cAI5C,WAAW,CAAC,IAAI,EAAE,mBAAmB,GAAG,OAAO,CAAC,eAAe,GAAG,SAAS,CAAC;IAI5F;;OAEG;IACH,SAAS,CAAC,cAAc,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,MAAM;IAIzE,OAAO,CAAC,YAAY;IAIpB,SAAS,CAAC,qBAAqB,IAAI,MAAM;IAIzC,SAAS,CAAC,eAAe,CACvB,MAAM,EAAE,MAAM,EACd,KAAK,EAAE,MAAM,EACb,OAAO,EAAE,MAAM,GAAG,SAAS,EAC3B,OAAO,EAAE,OAAO,GACf,MAAM,CAAC,QAAQ;IAIlB,QAAQ,CACN,IAAI,EAAE,MAAM,EACZ,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,IAAI,GAAG,SAAS,EACjD,cAAc,CAAC,EAAE,MAAM,GAAG,SAAS,GAClC,MAAM;IAoBT;;OAEG;cACa,cAAc,CAAC,OAAO,EAAE,mBAAmB,GAAG,OAAO,CAAC,IAAI,CAAC;IAE3E;;;;;OAKG;cACa,cAAc,CAC5B,OAAO,EAAE,WAAW,EACpB,EAAE,GAAG,EAAE,OAAO,EAAE,EAAE;QAAE,GAAG,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,mBAAmB,CAAA;KAAE,GAC9D,OAAO,CAAC,IAAI,CAAC;IAEhB,GAAG,CAAC,GAAG,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,cAAc,CAAC,cAAc,CAAC,GAAG,UAAU,CAAC,GAAG,CAAC;IAI9E,IAAI,CAAC,GAAG,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,cAAc,CAAC,cAAc,CAAC,GAAG,UAAU,CAAC,GAAG,CAAC;IAI/E,KAAK,CAAC,GAAG,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,cAAc,CAAC,cAAc,CAAC,GAAG,UAAU,CAAC,GAAG,CAAC;IAIhF,GAAG,CAAC,GAAG,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,cAAc,CAAC,cAAc,CAAC,GAAG,UAAU,CAAC,GAAG,CAAC;IAI9E,MAAM,CAAC,GAAG,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,cAAc,CAAC,cAAc,CAAC,GAAG,UAAU,CAAC,GAAG,CAAC;IAIjF,OAAO,CAAC,aAAa;IAYrB,OAAO,CAAC,GAAG,EACT,OAAO,EAAE,cAAc,CAAC,mBAAmB,CAAC,EAC5C,gBAAgB,GAAE,MAAM,GAAG,IAAW,GACrC,UAAU,CAAC,GAAG,CAAC;YAIJ,WAAW;IA6JnB,gBAAgB,CACpB,GAAG,EAAE,WAAW,EAChB,IAAI,EAAE,WAAW,GAAG,SAAS,EAC7B,EAAE,EAAE,MAAM,EACV,UAAU,EAAE,eAAe,GAC1B,OAAO,CAAC,QAAQ,CAAC;YA+BN,WAAW;YAuBX,YAAY;IAuC1B,OAAO,CAAC,kCAAkC;IAepC,YAAY,CAChB,YAAY,EAAE,mBAAmB,EACjC,EAAE,UAAc,EAAE,GAAE;QAAE,UAAU,CAAC,EAAE,MAAM,CAAA;KAAO,GAC/C,OAAO,CAAC;QAAE,GAAG,EAAE,oBAAoB,CAAC;QAAC,GAAG,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,MAAM,CAAA;KAAE,CAAC;YAwBzD,YAAY;IAqC1B,OAAO,CAAC,UAAU;IAMlB,OAAO,CAAC,SAAS;IA6CjB,MAAM,CAAC,MAAM,gBAAQ;IACrB,MAAM,CAAC,eAAe,SAAS;IAE/B,MAAM,CAAC,WAAW,4BAAsB;IACxC,MAAM,CAAC,QAAQ,yBAAmB;IAClC,MAAM,CAAC,kBAAkB,mCAA6B;IACtD,MAAM,CAAC,yBAAyB,0CAAoC;IACpE,MAAM,CAAC,iBAAiB,kCAA4B;IACpD,MAAM,CAAC,aAAa,8BAAwB;IAC5C,MAAM,CAAC,aAAa,8BAAwB;IAC5C,MAAM,CAAC,cAAc,+BAAyB;IAC9C,MAAM,CAAC,eAAe,gCAA0B;IAChD,MAAM,CAAC,mBAAmB,oCAA8B;IACxD,MAAM,CAAC,mBAAmB,oCAA8B;IACxD,MAAM,CAAC,qBAAqB,sCAAgC;IAC5D,MAAM,CAAC,wBAAwB,yCAAmC;IAElE,MAAM,CAAC,MAAM,wBAAkB;IAE/B,MAAM,CAAC,MAAM,wEAAmB;IAChC,MAAM,CAAC,IAAI,oDAAiB;IAE5B,IAAI,EAAE,GAAG,CAAC,IAAI,CAAsB;IACpC,IAAI,EAAE,GAAG,CAAC,IAAI,CAAsB;IACpC,WAAW,EAAE,GAAG,CAAC,WAAW,CAA6B;IACzD,KAAK,EAAE,GAAG,CAAC,KAAK,CAAuB;IACvC,SAAS,EAAE,GAAG,CAAC,SAAS,CAA2B;IACnD,GAAG,EAAE,GAAG,CAAC,GAAG,CAAqB;IACjC,gBAAgB,EAAE,GAAG,CAAC,gBAAgB,CAAkC;IACxE,yBAAyB,EAAE,GAAG,CAAC,yBAAyB,CAA2C;IACnG,aAAa,EAAE,GAAG,CAAC,aAAa,CAA+B;IAC/D,KAAK,EAAE,GAAG,CAAC,KAAK,CAAuB;IACvC,WAAW,EAAE,GAAG,CAAC,WAAW,CAA6B;IACzD,SAAS,EAAE,GAAG,CAAC,SAAS,CAA2B;IACnD,KAAK,EAAE,GAAG,CAAC,KAAK,CAAuB;IACvC,OAAO,EAAE,GAAG,CAAC,OAAO,CAAyB;CAC9C;AAiBD,MAAM,CAAC,OAAO,WAAW,MAAM,CAAC;IAC9B,MAAM,MAAM,cAAc,GAAG,IAAI,CAAC,cAAc,CAAC;IAEjD,OAAO,EACL,IAAI,IAAI,IAAI,EACZ,KAAK,YAAY,IAAI,YAAY,EACjC,KAAK,iBAAiB,IAAI,iBAAiB,EAC3C,KAAK,eAAe,IAAI,eAAe,EACvC,KAAK,gBAAgB,IAAI,gBAAgB,EACzC,KAAK,gBAAgB,IAAI,gBAAgB,EACzC,KAAK,cAAc,IAAI,cAAc,EACrC,KAAK,yBAAyB,IAAI,yBAAyB,EAC3D,KAAK,uBAAuB,IAAI,uBAAuB,EACvD,KAAK,2BAA2B,IAAI,2BAA2B,GAChE,CAAC;IAEF,OAAO,EACL,IAAI,IAAI,IAAI,EACZ,KAAK,YAAY,IAAI,YAAY,EACjC,KAAK,gBAAgB,IAAI,gBAAgB,EACzC,KAAK,gCAAgC,IAAI,gCAAgC,EACzE,KAAK,gBAAgB,IAAI,gBAAgB,EACzC,KAAK,gBAAgB,IAAI,gBAAgB,EACzC,KAAK,cAAc,IAAI,cAAc,EACrC,KAAK,8BAA8B,IAAI,8BAA8B,EACrE,KAAK,uBAAuB,IAAI,uBAAuB,GACxD,CAAC;IAEF,OAAO,EACL,WAAW,IAAI,WAAW,EAC1B,KAAK,mBAAmB,IAAI,mBAAmB,EAC/C,KAAK,uBAAuB,IAAI,uBAAuB,EACvD,KAAK,uBAAuB,IAAI,uBAAuB,EACvD,KAAK,uBAAuB,IAAI,uBAAuB,EACvD,KAAK,uBAAuB,IAAI,uBAAuB,GACxD,CAAC;IAEF,OAAO,EACL,KAAK,IAAI,KAAK,EACd,KAAK,aAAa,IAAI,aAAa,EACnC,KAAK,iBAAiB,IAAI,iBAAiB,EAC3C,KAAK,wBAAwB,IAAI,wBAAwB,EACzD,KAAK,iBAAiB,IAAI,iBAAiB,EAC3C,KAAK,mBAAmB,IAAI,mBAAmB,EAC/C,KAAK,iBAAiB,IAAI,iBAAiB,EAC3C,KAAK,eAAe,IAAI,eAAe,GACxC,CAAC;IAEF,OAAO,EACL,SAAS,IAAI,SAAS,EACtB,KAAK,iBAAiB,IAAI,iBAAiB,EAC3C,KAAK,qBAAqB,IAAI,qBAAqB,EACnD,KAAK,4BAA4B,IAAI,4BAA4B,EACjE,KAAK,qBAAqB,IAAI,qBAAqB,EACnD,KAAK,uBAAuB,IAAI,uBAAuB,EACvD,KAAK,qBAAqB,IAAI,qBAAqB,EACnD,KAAK,mBAAmB,IAAI,mBAAmB,GAChD,CAAC;IAEF,OAAO,EACL,GAAG,IAAI,GAAG,EACV,KAAK,WAAW,IAAI,WAAW,EAC/B,KAAK,eAAe,IAAI,eAAe,EACvC,KAAK,eAAe,IAAI,eAAe,EACvC,KAAK,iBAAiB,IAAI,iBAAiB,EAC3C,KAAK,eAAe,IAAI,eAAe,EACvC,KAAK,aAAa,IAAI,aAAa,GACpC,CAAC;IAEF,OAAO,EACL,gBAAgB,IAAI,gBAAgB,EACpC,KAAK,wBAAwB,IAAI,wBAAwB,EACzD,KAAK,4BAA4B,IAAI,4BAA4B,EACjE,KAAK,4BAA4B,IAAI,4BAA4B,EACjE,KAAK,8BAA8B,IAAI,8BAA8B,EACrE,KAAK,4BAA4B,IAAI,4BAA4B,EACjE,KAAK,0BAA0B,IAAI,0BAA0B,GAC9D,CAAC;IAEF,OAAO,EACL,yBAAyB,IAAI,yBAAyB,EACtD,KAAK,iCAAiC,IAAI,iCAAiC,EAC3E,KAAK,qCAAqC,IAAI,qCAAqC,EACnF,KAAK,qCAAqC,IAAI,qCAAqC,EACnF,KAAK,qCAAqC,IAAI,qCAAqC,GACpF,CAAC;IAEF,OAAO,EACL,aAAa,IAAI,aAAa,EAC9B,KAAK,qBAAqB,IAAI,qBAAqB,EACnD,KAAK,yBAAyB,IAAI,yBAAyB,EAC3D,KAAK,yBAAyB,IAAI,yBAAyB,EAC3D,KAAK,6BAA6B,IAAI,6BAA6B,EACnE,KAAK,+BAA+B,IAAI,+BAA+B,GACxE,CAAC;IAEF,OAAO,EACL,KAAK,IAAI,KAAK,EACd,KAAK,aAAa,IAAI,aAAa,EACnC,KAAK,iBAAiB,IAAI,iBAAiB,EAC3C,KAAK,mBAAmB,IAAI,mBAAmB,EAC/C,KAAK,sBAAsB,IAAI,sBAAsB,EACrD,KAAK,gBAAgB,IAAI,gBAAgB,EACzC,KAAK,iBAAiB,IAAI,iBAAiB,GAC5C,CAAC;IAEF,OAAO,EAAE,WAAW,IAAI,WAAW,EAAE,KAAK,2BAA2B,IAAI,2BAA2B,EAAE,CAAC;IAEvG,OAAO,EACL,SAAS,IAAI,SAAS,EACtB,KAAK,iBAAiB,IAAI,iBAAiB,EAC3C,KAAK,8BAA8B,IAAI,8BAA8B,GACtE,CAAC;IAEF,OAAO,EACL,KAAK,IAAI,KAAK,EACd,KAAK,iBAAiB,IAAI,iBAAiB,EAC3C,KAAK,0BAA0B,IAAI,0BAA0B,EAC7D,KAAK,mBAAmB,IAAI,mBAAmB,EAC/C,KAAK,0BAA0B,IAAI,0BAA0B,EAC7D,KAAK,mCAAmC,IAAI,mCAAmC,EAC/E,KAAK,wBAAwB,IAAI,wBAAwB,EACzD,KAAK,yBAAyB,IAAI,yBAAyB,EAC3D,KAAK,kCAAkC,IAAI,kCAAkC,EAC7E,KAAK,wBAAwB,IAAI,wBAAwB,EACzD,KAAK,iCAAiC,IAAI,iCAAiC,EAC3E,KAAK,kCAAkC,IAAI,kCAAkC,GAC9E,CAAC;IAEF,OAAO,EACL,OAAO,IAAI,OAAO,EAClB,KAAK,iBAAiB,IAAI,iBAAiB,EAC3C,KAAK,0BAA0B,IAAI,0BAA0B,EAC7D,KAAK,wBAAwB,IAAI,wBAAwB,GAC1D,CAAC;CACH"}
|