@lorikeetai/node-sdk 1.4.0 → 2.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 (640) hide show
  1. package/CHANGELOG.md +55 -713
  2. package/LICENSE +1 -1
  3. package/README.md +125 -49
  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/bin/cli +53 -0
  13. package/bin/migration-config.json +50 -0
  14. package/client.d.mts +197 -0
  15. package/client.d.mts.map +1 -0
  16. package/client.d.ts +197 -0
  17. package/client.d.ts.map +1 -0
  18. package/client.js +504 -0
  19. package/client.js.map +1 -0
  20. package/client.mjs +500 -0
  21. package/client.mjs.map +1 -0
  22. package/core/api-promise.d.mts +46 -0
  23. package/core/api-promise.d.mts.map +1 -0
  24. package/core/api-promise.d.ts +46 -0
  25. package/core/api-promise.d.ts.map +1 -0
  26. package/core/api-promise.js +74 -0
  27. package/core/api-promise.js.map +1 -0
  28. package/core/api-promise.mjs +70 -0
  29. package/core/api-promise.mjs.map +1 -0
  30. package/core/error.d.mts +46 -0
  31. package/core/error.d.mts.map +1 -0
  32. package/core/error.d.ts +46 -0
  33. package/core/error.d.ts.map +1 -0
  34. package/core/error.js +113 -0
  35. package/core/error.js.map +1 -0
  36. package/core/error.mjs +97 -0
  37. package/core/error.mjs.map +1 -0
  38. package/core/resource.d.mts +6 -0
  39. package/core/resource.d.mts.map +1 -0
  40. package/core/resource.d.ts +6 -0
  41. package/core/resource.d.ts.map +1 -0
  42. package/core/resource.js +11 -0
  43. package/core/resource.js.map +1 -0
  44. package/core/resource.mjs +7 -0
  45. package/core/resource.mjs.map +1 -0
  46. package/core/uploads.d.mts +3 -0
  47. package/core/uploads.d.mts.map +1 -0
  48. package/core/uploads.d.ts +3 -0
  49. package/core/uploads.d.ts.map +1 -0
  50. package/core/uploads.js +6 -0
  51. package/core/uploads.js.map +1 -0
  52. package/core/uploads.mjs +2 -0
  53. package/core/uploads.mjs.map +1 -0
  54. package/error.d.mts +2 -0
  55. package/error.d.mts.map +1 -0
  56. package/error.d.ts +1 -46
  57. package/error.d.ts.map +1 -1
  58. package/error.js +3 -110
  59. package/error.js.map +1 -1
  60. package/error.mjs +1 -96
  61. package/error.mjs.map +1 -1
  62. package/index.d.mts +7 -144
  63. package/index.d.mts.map +1 -0
  64. package/index.d.ts +6 -143
  65. package/index.d.ts.map +1 -1
  66. package/index.js +14 -157
  67. package/index.js.map +1 -1
  68. package/index.mjs +6 -129
  69. package/index.mjs.map +1 -1
  70. package/internal/builtin-types.d.mts +73 -0
  71. package/internal/builtin-types.d.mts.map +1 -0
  72. package/internal/builtin-types.d.ts +73 -0
  73. package/internal/builtin-types.d.ts.map +1 -0
  74. package/internal/builtin-types.js +4 -0
  75. package/internal/builtin-types.js.map +1 -0
  76. package/{src/resources/oauth.ts → internal/builtin-types.mjs} +2 -2
  77. package/internal/builtin-types.mjs.map +1 -0
  78. package/internal/detect-platform.d.mts +15 -0
  79. package/internal/detect-platform.d.mts.map +1 -0
  80. package/internal/detect-platform.d.ts +15 -0
  81. package/internal/detect-platform.d.ts.map +1 -0
  82. package/internal/detect-platform.js +162 -0
  83. package/internal/detect-platform.js.map +1 -0
  84. package/internal/detect-platform.mjs +157 -0
  85. package/internal/detect-platform.mjs.map +1 -0
  86. package/internal/errors.d.mts +3 -0
  87. package/internal/errors.d.mts.map +1 -0
  88. package/internal/errors.d.ts +3 -0
  89. package/internal/errors.d.ts.map +1 -0
  90. package/internal/errors.js +41 -0
  91. package/internal/errors.js.map +1 -0
  92. package/internal/errors.mjs +36 -0
  93. package/internal/errors.mjs.map +1 -0
  94. package/internal/headers.d.mts +20 -0
  95. package/internal/headers.d.mts.map +1 -0
  96. package/internal/headers.d.ts +20 -0
  97. package/internal/headers.d.ts.map +1 -0
  98. package/internal/headers.js +79 -0
  99. package/internal/headers.js.map +1 -0
  100. package/internal/headers.mjs +74 -0
  101. package/internal/headers.mjs.map +1 -0
  102. package/internal/parse.d.mts +12 -0
  103. package/internal/parse.d.mts.map +1 -0
  104. package/internal/parse.d.ts +12 -0
  105. package/internal/parse.d.ts.map +1 -0
  106. package/internal/parse.js +40 -0
  107. package/internal/parse.js.map +1 -0
  108. package/internal/parse.mjs +37 -0
  109. package/internal/parse.mjs.map +1 -0
  110. package/internal/request-options.d.mts +75 -0
  111. package/internal/request-options.d.mts.map +1 -0
  112. package/internal/request-options.d.ts +75 -0
  113. package/internal/request-options.d.ts.map +1 -0
  114. package/internal/request-options.js +14 -0
  115. package/internal/request-options.js.map +1 -0
  116. package/internal/request-options.mjs +10 -0
  117. package/internal/request-options.mjs.map +1 -0
  118. package/internal/shim-types.d.mts +17 -0
  119. package/internal/shim-types.d.mts.map +1 -0
  120. package/internal/shim-types.d.ts +17 -0
  121. package/internal/shim-types.d.ts.map +1 -0
  122. package/internal/shim-types.js +4 -0
  123. package/internal/shim-types.js.map +1 -0
  124. package/{resources/top-level.mjs → internal/shim-types.mjs} +1 -1
  125. package/internal/shim-types.mjs.map +1 -0
  126. package/internal/shims.d.mts +20 -0
  127. package/internal/shims.d.mts.map +1 -0
  128. package/internal/shims.d.ts +20 -0
  129. package/internal/shims.d.ts.map +1 -0
  130. package/internal/shims.js +92 -0
  131. package/internal/shims.js.map +1 -0
  132. package/internal/shims.mjs +85 -0
  133. package/internal/shims.mjs.map +1 -0
  134. package/internal/to-file.d.mts +45 -0
  135. package/internal/to-file.d.mts.map +1 -0
  136. package/internal/to-file.d.ts +45 -0
  137. package/internal/to-file.d.ts.map +1 -0
  138. package/internal/to-file.js +92 -0
  139. package/internal/to-file.js.map +1 -0
  140. package/internal/to-file.mjs +89 -0
  141. package/internal/to-file.mjs.map +1 -0
  142. package/internal/tslib.js +81 -0
  143. package/internal/tslib.mjs +17 -0
  144. package/internal/types.d.mts +69 -0
  145. package/internal/types.d.mts.map +1 -0
  146. package/internal/types.d.ts +69 -0
  147. package/internal/types.d.ts.map +1 -0
  148. package/{resources/top-level.js → internal/types.js} +1 -1
  149. package/internal/types.js.map +1 -0
  150. package/{src/resources/top-level.ts → internal/types.mjs} +1 -1
  151. package/internal/types.mjs.map +1 -0
  152. package/internal/uploads.d.mts +42 -0
  153. package/internal/uploads.d.mts.map +1 -0
  154. package/internal/uploads.d.ts +42 -0
  155. package/internal/uploads.d.ts.map +1 -0
  156. package/internal/uploads.js +141 -0
  157. package/internal/uploads.js.map +1 -0
  158. package/internal/uploads.mjs +131 -0
  159. package/internal/uploads.mjs.map +1 -0
  160. package/internal/utils/base64.d.mts +3 -0
  161. package/internal/utils/base64.d.mts.map +1 -0
  162. package/internal/utils/base64.d.ts +3 -0
  163. package/internal/utils/base64.d.ts.map +1 -0
  164. package/internal/utils/base64.js +38 -0
  165. package/internal/utils/base64.js.map +1 -0
  166. package/internal/utils/base64.mjs +33 -0
  167. package/internal/utils/base64.mjs.map +1 -0
  168. package/internal/utils/bytes.d.mts +4 -0
  169. package/internal/utils/bytes.d.mts.map +1 -0
  170. package/internal/utils/bytes.d.ts +4 -0
  171. package/internal/utils/bytes.d.ts.map +1 -0
  172. package/internal/utils/bytes.js +31 -0
  173. package/internal/utils/bytes.js.map +1 -0
  174. package/internal/utils/bytes.mjs +26 -0
  175. package/internal/utils/bytes.mjs.map +1 -0
  176. package/internal/utils/env.d.mts +9 -0
  177. package/internal/utils/env.d.mts.map +1 -0
  178. package/internal/utils/env.d.ts +9 -0
  179. package/internal/utils/env.d.ts.map +1 -0
  180. package/internal/utils/env.js +22 -0
  181. package/internal/utils/env.js.map +1 -0
  182. package/internal/utils/env.mjs +18 -0
  183. package/internal/utils/env.mjs.map +1 -0
  184. package/internal/utils/log.d.mts +37 -0
  185. package/internal/utils/log.d.mts.map +1 -0
  186. package/internal/utils/log.d.ts +37 -0
  187. package/internal/utils/log.d.ts.map +1 -0
  188. package/internal/utils/log.js +86 -0
  189. package/internal/utils/log.js.map +1 -0
  190. package/internal/utils/log.mjs +80 -0
  191. package/internal/utils/log.mjs.map +1 -0
  192. package/internal/utils/path.d.mts +15 -0
  193. package/internal/utils/path.d.mts.map +1 -0
  194. package/internal/utils/path.d.ts +15 -0
  195. package/internal/utils/path.d.ts.map +1 -0
  196. package/internal/utils/path.js +79 -0
  197. package/internal/utils/path.js.map +1 -0
  198. package/internal/utils/path.mjs +74 -0
  199. package/internal/utils/path.mjs.map +1 -0
  200. package/internal/utils/sleep.d.mts +2 -0
  201. package/internal/utils/sleep.d.mts.map +1 -0
  202. package/internal/utils/sleep.d.ts +2 -0
  203. package/internal/utils/sleep.d.ts.map +1 -0
  204. package/internal/utils/sleep.js +7 -0
  205. package/internal/utils/sleep.js.map +1 -0
  206. package/internal/utils/sleep.mjs +3 -0
  207. package/internal/utils/sleep.mjs.map +1 -0
  208. package/internal/utils/uuid.d.mts +5 -0
  209. package/internal/utils/uuid.d.mts.map +1 -0
  210. package/internal/utils/uuid.d.ts +5 -0
  211. package/internal/utils/uuid.d.ts.map +1 -0
  212. package/internal/utils/uuid.js +19 -0
  213. package/internal/utils/uuid.js.map +1 -0
  214. package/internal/utils/uuid.mjs +15 -0
  215. package/internal/utils/uuid.mjs.map +1 -0
  216. package/internal/utils/values.d.mts +18 -0
  217. package/internal/utils/values.d.mts.map +1 -0
  218. package/internal/utils/values.d.ts +18 -0
  219. package/internal/utils/values.d.ts.map +1 -0
  220. package/internal/utils/values.js +112 -0
  221. package/internal/utils/values.js.map +1 -0
  222. package/internal/utils/values.mjs +94 -0
  223. package/internal/utils/values.mjs.map +1 -0
  224. package/internal/utils.d.mts +7 -0
  225. package/internal/utils.d.mts.map +1 -0
  226. package/internal/utils.d.ts +7 -0
  227. package/internal/utils.d.ts.map +1 -0
  228. package/internal/utils.js +11 -0
  229. package/internal/utils.js.map +1 -0
  230. package/internal/utils.mjs +8 -0
  231. package/internal/utils.mjs.map +1 -0
  232. package/lib/generate-signature.d.mts +7 -0
  233. package/lib/generate-signature.d.mts.map +1 -0
  234. package/lib/generate-signature.d.ts +1 -1
  235. package/lib/generate-signature.d.ts.map +1 -1
  236. package/lib/generate-signature.js +3 -3
  237. package/lib/generate-signature.js.map +1 -1
  238. package/lib/generate-signature.mjs +1 -1
  239. package/lib/generate-signature.mjs.map +1 -1
  240. package/lib/poll-until.d.mts +20 -0
  241. package/lib/poll-until.d.mts.map +1 -0
  242. package/lib/poll-until.d.ts.map +1 -1
  243. package/lib/promise.d.mts +55 -0
  244. package/lib/promise.d.mts.map +1 -0
  245. package/package.json +125 -74
  246. package/resource.d.mts +2 -0
  247. package/resource.d.mts.map +1 -0
  248. package/resource.d.ts +1 -5
  249. package/resource.d.ts.map +1 -1
  250. package/resource.js +3 -8
  251. package/resource.js.map +1 -1
  252. package/resource.mjs +1 -6
  253. package/resource.mjs.map +1 -1
  254. package/resources/api-keys.d.mts +130 -0
  255. package/resources/api-keys.d.mts.map +1 -0
  256. package/resources/api-keys.d.ts +130 -0
  257. package/resources/api-keys.d.ts.map +1 -0
  258. package/resources/api-keys.js +63 -0
  259. package/resources/api-keys.js.map +1 -0
  260. package/resources/api-keys.mjs +59 -0
  261. package/resources/api-keys.mjs.map +1 -0
  262. package/resources/conversation/chat.d.mts +312 -0
  263. package/resources/conversation/chat.d.mts.map +1 -0
  264. package/resources/conversation/chat.d.ts +60 -78
  265. package/resources/conversation/chat.d.ts.map +1 -1
  266. package/resources/conversation/chat.js +14 -48
  267. package/resources/conversation/chat.js.map +1 -1
  268. package/resources/conversation/chat.mjs +14 -48
  269. package/resources/conversation/chat.mjs.map +1 -1
  270. package/resources/conversation/conversation.d.mts +77 -0
  271. package/resources/conversation/conversation.d.mts.map +1 -0
  272. package/resources/conversation/conversation.d.ts +2 -59
  273. package/resources/conversation/conversation.d.ts.map +1 -1
  274. package/resources/conversation/conversation.js +5 -63
  275. package/resources/conversation/conversation.js.map +1 -1
  276. package/resources/conversation/conversation.mjs +1 -37
  277. package/resources/conversation/conversation.mjs.map +1 -1
  278. package/resources/conversation/email.d.mts +257 -0
  279. package/resources/conversation/email.d.mts.map +1 -0
  280. package/resources/conversation/email.d.ts +25 -9
  281. package/resources/conversation/email.d.ts.map +1 -1
  282. package/resources/conversation/email.js +6 -6
  283. package/resources/conversation/email.js.map +1 -1
  284. package/resources/conversation/email.mjs +6 -6
  285. package/resources/conversation/email.mjs.map +1 -1
  286. package/resources/conversation/index.d.mts +5 -0
  287. package/resources/conversation/index.d.mts.map +1 -0
  288. package/resources/conversation/index.d.ts +2 -2
  289. package/resources/conversation/index.d.ts.map +1 -1
  290. package/resources/conversation/index.js.map +1 -1
  291. package/resources/conversation/index.mjs +1 -1
  292. package/resources/conversation/index.mjs.map +1 -1
  293. package/resources/conversation/voice.d.mts +45 -0
  294. package/resources/conversation/voice.d.mts.map +1 -0
  295. package/resources/conversation/voice.d.ts +7 -4
  296. package/resources/conversation/voice.d.ts.map +1 -1
  297. package/resources/conversation/voice.js +3 -2
  298. package/resources/conversation/voice.js.map +1 -1
  299. package/resources/conversation/voice.mjs +3 -2
  300. package/resources/conversation/voice.mjs.map +1 -1
  301. package/resources/conversation.d.mts +2 -0
  302. package/resources/conversation.d.mts.map +1 -0
  303. package/resources/conversation.d.ts.map +1 -1
  304. package/resources/conversation.js +2 -15
  305. package/resources/conversation.js.map +1 -1
  306. package/resources/customer/customer.d.mts +333 -0
  307. package/resources/customer/customer.d.mts.map +1 -0
  308. package/resources/customer/customer.d.ts +43 -10
  309. package/resources/customer/customer.d.ts.map +1 -1
  310. package/resources/customer/customer.js +9 -32
  311. package/resources/customer/customer.js.map +1 -1
  312. package/resources/customer/customer.mjs +6 -7
  313. package/resources/customer/customer.mjs.map +1 -1
  314. package/resources/customer/index.d.mts +4 -0
  315. package/resources/customer/index.d.mts.map +1 -0
  316. package/resources/customer/index.d.ts +1 -1
  317. package/resources/customer/index.d.ts.map +1 -1
  318. package/resources/customer/index.js.map +1 -1
  319. package/resources/customer/index.mjs.map +1 -1
  320. package/resources/customer/profile.d.mts +30 -0
  321. package/resources/customer/profile.d.mts.map +1 -0
  322. package/resources/customer/profile.d.ts +7 -48
  323. package/resources/customer/profile.d.ts.map +1 -1
  324. package/resources/customer/profile.js +3 -2
  325. package/resources/customer/profile.js.map +1 -1
  326. package/resources/customer/profile.mjs +3 -2
  327. package/resources/customer/profile.mjs.map +1 -1
  328. package/resources/customer/remote.d.mts +164 -0
  329. package/resources/customer/remote.d.mts.map +1 -0
  330. package/resources/customer/remote.d.ts +17 -4
  331. package/resources/customer/remote.d.ts.map +1 -1
  332. package/resources/customer/remote.js +6 -5
  333. package/resources/customer/remote.js.map +1 -1
  334. package/resources/customer/remote.mjs +6 -5
  335. package/resources/customer/remote.mjs.map +1 -1
  336. package/resources/customer.d.mts +2 -0
  337. package/resources/customer.d.mts.map +1 -0
  338. package/resources/customer.d.ts.map +1 -1
  339. package/resources/customer.js +2 -15
  340. package/resources/customer.js.map +1 -1
  341. package/resources/index.d.mts +5 -0
  342. package/resources/index.d.mts.map +1 -0
  343. package/resources/index.d.ts +4 -8
  344. package/resources/index.d.ts.map +1 -1
  345. package/resources/index.js +3 -11
  346. package/resources/index.js.map +1 -1
  347. package/resources/index.mjs +1 -5
  348. package/resources/index.mjs.map +1 -1
  349. package/resources/ingest.d.mts +27 -0
  350. package/resources/ingest.d.mts.map +1 -0
  351. package/resources/ingest.d.ts +15 -10
  352. package/resources/ingest.d.ts.map +1 -1
  353. package/resources/ingest.js +11 -11
  354. package/resources/ingest.js.map +1 -1
  355. package/resources/ingest.mjs +11 -11
  356. package/resources/ingest.mjs.map +1 -1
  357. package/resources.d.mts +2 -0
  358. package/resources.d.mts.map +1 -0
  359. package/resources.d.ts.map +1 -1
  360. package/resources.js +2 -15
  361. package/resources.js.map +1 -1
  362. package/src/api-promise.ts +2 -0
  363. package/src/client.ts +835 -0
  364. package/src/core/README.md +3 -0
  365. package/src/core/api-promise.ts +92 -0
  366. package/src/core/error.ts +130 -0
  367. package/src/core/resource.ts +11 -0
  368. package/src/core/uploads.ts +2 -0
  369. package/src/error.ts +2 -130
  370. package/src/index.ts +6 -297
  371. package/src/internal/README.md +3 -0
  372. package/src/internal/builtin-types.ts +93 -0
  373. package/src/internal/detect-platform.ts +196 -0
  374. package/src/internal/errors.ts +33 -0
  375. package/src/internal/headers.ts +97 -0
  376. package/src/internal/parse.ts +56 -0
  377. package/src/internal/request-options.ts +91 -0
  378. package/src/internal/shim-types.ts +26 -0
  379. package/src/internal/shims.ts +107 -0
  380. package/src/internal/to-file.ts +156 -0
  381. package/src/internal/types.ts +95 -0
  382. package/src/internal/uploads.ts +187 -0
  383. package/src/internal/utils/base64.ts +40 -0
  384. package/src/internal/utils/bytes.ts +32 -0
  385. package/src/internal/utils/env.ts +18 -0
  386. package/src/internal/utils/log.ts +127 -0
  387. package/src/internal/utils/path.ts +88 -0
  388. package/src/internal/utils/sleep.ts +3 -0
  389. package/src/internal/utils/uuid.ts +17 -0
  390. package/src/internal/utils/values.ts +105 -0
  391. package/src/internal/utils.ts +8 -0
  392. package/src/lib/generate-signature.ts +2 -2
  393. package/src/resource.ts +2 -11
  394. package/src/resources/api-keys.ts +171 -0
  395. package/src/resources/conversation/chat.ts +76 -96
  396. package/src/resources/conversation/conversation.ts +1 -91
  397. package/src/resources/conversation/email.ts +29 -13
  398. package/src/resources/conversation/index.ts +6 -10
  399. package/src/resources/conversation/voice.ts +9 -5
  400. package/src/resources/customer/customer.ts +58 -12
  401. package/src/resources/customer/index.ts +1 -0
  402. package/src/resources/customer/profile.ts +9 -62
  403. package/src/resources/customer/remote.ts +25 -8
  404. package/src/resources/index.ts +9 -10
  405. package/src/resources/ingest.ts +26 -24
  406. package/src/tsconfig.json +2 -2
  407. package/src/uploads.ts +2 -256
  408. package/src/version.ts +1 -1
  409. package/uploads.d.mts +2 -0
  410. package/uploads.d.mts.map +1 -0
  411. package/uploads.d.ts +1 -74
  412. package/uploads.d.ts.map +1 -1
  413. package/uploads.js +3 -167
  414. package/uploads.js.map +1 -1
  415. package/uploads.mjs +1 -156
  416. package/uploads.mjs.map +1 -1
  417. package/version.d.mts +2 -0
  418. package/version.d.mts.map +1 -0
  419. package/version.d.ts +1 -1
  420. package/version.js +1 -1
  421. package/version.mjs +1 -1
  422. package/_shims/MultipartBody.d.ts +0 -9
  423. package/_shims/MultipartBody.d.ts.map +0 -1
  424. package/_shims/MultipartBody.js +0 -16
  425. package/_shims/MultipartBody.js.map +0 -1
  426. package/_shims/MultipartBody.mjs +0 -12
  427. package/_shims/MultipartBody.mjs.map +0 -1
  428. package/_shims/README.md +0 -46
  429. package/_shims/auto/runtime-bun.d.ts +0 -5
  430. package/_shims/auto/runtime-bun.d.ts.map +0 -1
  431. package/_shims/auto/runtime-bun.js +0 -21
  432. package/_shims/auto/runtime-bun.js.map +0 -1
  433. package/_shims/auto/runtime-bun.mjs +0 -2
  434. package/_shims/auto/runtime-bun.mjs.map +0 -1
  435. package/_shims/auto/runtime-node.d.ts +0 -5
  436. package/_shims/auto/runtime-node.d.ts.map +0 -1
  437. package/_shims/auto/runtime-node.js +0 -21
  438. package/_shims/auto/runtime-node.js.map +0 -1
  439. package/_shims/auto/runtime-node.mjs +0 -2
  440. package/_shims/auto/runtime-node.mjs.map +0 -1
  441. package/_shims/auto/runtime.d.ts +0 -5
  442. package/_shims/auto/runtime.d.ts.map +0 -1
  443. package/_shims/auto/runtime.js +0 -21
  444. package/_shims/auto/runtime.js.map +0 -1
  445. package/_shims/auto/runtime.mjs +0 -2
  446. package/_shims/auto/runtime.mjs.map +0 -1
  447. package/_shims/auto/types-node.d.ts +0 -5
  448. package/_shims/auto/types-node.d.ts.map +0 -1
  449. package/_shims/auto/types-node.js +0 -21
  450. package/_shims/auto/types-node.js.map +0 -1
  451. package/_shims/auto/types-node.mjs +0 -2
  452. package/_shims/auto/types-node.mjs.map +0 -1
  453. package/_shims/auto/types.d.ts +0 -101
  454. package/_shims/auto/types.js +0 -3
  455. package/_shims/auto/types.mjs +0 -3
  456. package/_shims/bun-runtime.d.ts +0 -6
  457. package/_shims/bun-runtime.d.ts.map +0 -1
  458. package/_shims/bun-runtime.js +0 -13
  459. package/_shims/bun-runtime.js.map +0 -1
  460. package/_shims/bun-runtime.mjs +0 -10
  461. package/_shims/bun-runtime.mjs.map +0 -1
  462. package/_shims/index.d.ts +0 -83
  463. package/_shims/index.js +0 -17
  464. package/_shims/index.mjs +0 -11
  465. package/_shims/manual-types.d.ts +0 -12
  466. package/_shims/manual-types.js +0 -3
  467. package/_shims/manual-types.mjs +0 -3
  468. package/_shims/node-runtime.d.ts +0 -3
  469. package/_shims/node-runtime.d.ts.map +0 -1
  470. package/_shims/node-runtime.js +0 -88
  471. package/_shims/node-runtime.js.map +0 -1
  472. package/_shims/node-runtime.mjs +0 -56
  473. package/_shims/node-runtime.mjs.map +0 -1
  474. package/_shims/node-types.d.ts +0 -42
  475. package/_shims/node-types.js +0 -3
  476. package/_shims/node-types.mjs +0 -3
  477. package/_shims/registry.d.ts +0 -37
  478. package/_shims/registry.d.ts.map +0 -1
  479. package/_shims/registry.js +0 -41
  480. package/_shims/registry.js.map +0 -1
  481. package/_shims/registry.mjs +0 -37
  482. package/_shims/registry.mjs.map +0 -1
  483. package/_shims/web-runtime.d.ts +0 -5
  484. package/_shims/web-runtime.d.ts.map +0 -1
  485. package/_shims/web-runtime.js +0 -77
  486. package/_shims/web-runtime.js.map +0 -1
  487. package/_shims/web-runtime.mjs +0 -71
  488. package/_shims/web-runtime.mjs.map +0 -1
  489. package/_shims/web-types.d.ts +0 -83
  490. package/_shims/web-types.js +0 -3
  491. package/_shims/web-types.mjs +0 -3
  492. package/core.d.ts +0 -253
  493. package/core.d.ts.map +0 -1
  494. package/core.js +0 -924
  495. package/core.js.map +0 -1
  496. package/core.mjs +0 -892
  497. package/core.mjs.map +0 -1
  498. package/internal/qs/formats.d.ts +0 -6
  499. package/internal/qs/formats.d.ts.map +0 -1
  500. package/internal/qs/formats.js +0 -11
  501. package/internal/qs/formats.js.map +0 -1
  502. package/internal/qs/formats.mjs +0 -8
  503. package/internal/qs/formats.mjs.map +0 -1
  504. package/internal/qs/index.d.ts +0 -10
  505. package/internal/qs/index.d.ts.map +0 -1
  506. package/internal/qs/index.js +0 -14
  507. package/internal/qs/index.js.map +0 -1
  508. package/internal/qs/index.mjs +0 -10
  509. package/internal/qs/index.mjs.map +0 -1
  510. package/internal/qs/stringify.d.ts +0 -3
  511. package/internal/qs/stringify.d.ts.map +0 -1
  512. package/internal/qs/stringify.js +0 -279
  513. package/internal/qs/stringify.js.map +0 -1
  514. package/internal/qs/stringify.mjs +0 -276
  515. package/internal/qs/stringify.mjs.map +0 -1
  516. package/internal/qs/types.d.ts +0 -57
  517. package/internal/qs/types.d.ts.map +0 -1
  518. package/internal/qs/types.js +0 -3
  519. package/internal/qs/types.js.map +0 -1
  520. package/internal/qs/types.mjs +0 -2
  521. package/internal/qs/types.mjs.map +0 -1
  522. package/internal/qs/utils.d.ts +0 -14
  523. package/internal/qs/utils.d.ts.map +0 -1
  524. package/internal/qs/utils.js +0 -229
  525. package/internal/qs/utils.js.map +0 -1
  526. package/internal/qs/utils.mjs +0 -217
  527. package/internal/qs/utils.mjs.map +0 -1
  528. package/resources/file.d.ts +0 -7
  529. package/resources/file.d.ts.map +0 -1
  530. package/resources/file.js +0 -21
  531. package/resources/file.js.map +0 -1
  532. package/resources/file.mjs +0 -17
  533. package/resources/file.mjs.map +0 -1
  534. package/resources/oauth/authorization.d.ts +0 -6
  535. package/resources/oauth/authorization.d.ts.map +0 -1
  536. package/resources/oauth/authorization.js +0 -15
  537. package/resources/oauth/authorization.js.map +0 -1
  538. package/resources/oauth/authorization.mjs +0 -11
  539. package/resources/oauth/authorization.mjs.map +0 -1
  540. package/resources/oauth/index.d.ts +0 -3
  541. package/resources/oauth/index.d.ts.map +0 -1
  542. package/resources/oauth/index.js +0 -9
  543. package/resources/oauth/index.js.map +0 -1
  544. package/resources/oauth/index.mjs +0 -4
  545. package/resources/oauth/index.mjs.map +0 -1
  546. package/resources/oauth/oauth.d.ts +0 -24
  547. package/resources/oauth/oauth.d.ts.map +0 -1
  548. package/resources/oauth/oauth.js +0 -65
  549. package/resources/oauth/oauth.js.map +0 -1
  550. package/resources/oauth/oauth.mjs +0 -38
  551. package/resources/oauth/oauth.mjs.map +0 -1
  552. package/resources/oauth.d.ts +0 -2
  553. package/resources/oauth.d.ts.map +0 -1
  554. package/resources/oauth.js +0 -19
  555. package/resources/oauth.js.map +0 -1
  556. package/resources/oauth.mjs +0 -3
  557. package/resources/oauth.mjs.map +0 -1
  558. package/resources/suggestion.d.ts +0 -7
  559. package/resources/suggestion.d.ts.map +0 -1
  560. package/resources/suggestion.js +0 -21
  561. package/resources/suggestion.js.map +0 -1
  562. package/resources/suggestion.mjs +0 -17
  563. package/resources/suggestion.mjs.map +0 -1
  564. package/resources/ticket.d.ts +0 -14
  565. package/resources/ticket.d.ts.map +0 -1
  566. package/resources/ticket.js +0 -16
  567. package/resources/ticket.js.map +0 -1
  568. package/resources/ticket.mjs +0 -12
  569. package/resources/ticket.mjs.map +0 -1
  570. package/resources/top-level.d.ts +0 -2
  571. package/resources/top-level.d.ts.map +0 -1
  572. package/resources/top-level.js.map +0 -1
  573. package/resources/top-level.mjs.map +0 -1
  574. package/resources/webhooks.d.ts +0 -6
  575. package/resources/webhooks.d.ts.map +0 -1
  576. package/resources/webhooks.js +0 -15
  577. package/resources/webhooks.js.map +0 -1
  578. package/resources/webhooks.mjs +0 -11
  579. package/resources/webhooks.mjs.map +0 -1
  580. package/resources/workflow.d.ts +0 -8
  581. package/resources/workflow.d.ts.map +0 -1
  582. package/resources/workflow.js +0 -21
  583. package/resources/workflow.js.map +0 -1
  584. package/resources/workflow.mjs +0 -17
  585. package/resources/workflow.mjs.map +0 -1
  586. package/shims/node.d.ts +0 -26
  587. package/shims/node.d.ts.map +0 -1
  588. package/shims/node.js +0 -6
  589. package/shims/node.js.map +0 -1
  590. package/shims/node.mjs +0 -4
  591. package/shims/node.mjs.map +0 -1
  592. package/shims/web.d.ts +0 -26
  593. package/shims/web.d.ts.map +0 -1
  594. package/shims/web.js +0 -6
  595. package/shims/web.js.map +0 -1
  596. package/shims/web.mjs +0 -4
  597. package/shims/web.mjs.map +0 -1
  598. package/src/_shims/MultipartBody.ts +0 -9
  599. package/src/_shims/README.md +0 -46
  600. package/src/_shims/auto/runtime-bun.ts +0 -4
  601. package/src/_shims/auto/runtime-node.ts +0 -4
  602. package/src/_shims/auto/runtime.ts +0 -4
  603. package/src/_shims/auto/types-node.ts +0 -4
  604. package/src/_shims/auto/types.d.ts +0 -101
  605. package/src/_shims/auto/types.js +0 -3
  606. package/src/_shims/auto/types.mjs +0 -3
  607. package/src/_shims/bun-runtime.ts +0 -14
  608. package/src/_shims/index.d.ts +0 -83
  609. package/src/_shims/index.js +0 -17
  610. package/src/_shims/index.mjs +0 -11
  611. package/src/_shims/manual-types.d.ts +0 -12
  612. package/src/_shims/manual-types.js +0 -3
  613. package/src/_shims/manual-types.mjs +0 -3
  614. package/src/_shims/node-runtime.ts +0 -81
  615. package/src/_shims/node-types.d.ts +0 -42
  616. package/src/_shims/node-types.js +0 -3
  617. package/src/_shims/node-types.mjs +0 -3
  618. package/src/_shims/registry.ts +0 -67
  619. package/src/_shims/web-runtime.ts +0 -103
  620. package/src/_shims/web-types.d.ts +0 -83
  621. package/src/_shims/web-types.js +0 -3
  622. package/src/_shims/web-types.mjs +0 -3
  623. package/src/core.ts +0 -1236
  624. package/src/internal/qs/LICENSE.md +0 -13
  625. package/src/internal/qs/README.md +0 -3
  626. package/src/internal/qs/formats.ts +0 -9
  627. package/src/internal/qs/index.ts +0 -13
  628. package/src/internal/qs/stringify.ts +0 -388
  629. package/src/internal/qs/types.ts +0 -71
  630. package/src/internal/qs/utils.ts +0 -265
  631. package/src/resources/file.ts +0 -20
  632. package/src/resources/oauth/authorization.ts +0 -13
  633. package/src/resources/oauth/index.ts +0 -4
  634. package/src/resources/oauth/oauth.ts +0 -63
  635. package/src/resources/suggestion.ts +0 -20
  636. package/src/resources/ticket.ts +0 -30
  637. package/src/resources/webhooks.ts +0 -13
  638. package/src/resources/workflow.ts +0 -21
  639. package/src/shims/node.ts +0 -50
  640. package/src/shims/web.ts +0 -50
package/CHANGELOG.md CHANGED
@@ -1,91 +1,37 @@
1
1
  # Changelog
2
2
 
3
- ## 1.4.0 (2025-09-18)
3
+ ## 0.1.0 (2026-02-25)
4
4
 
5
- Full Changelog: [v1.3.0...v1.4.0](https://github.com/optechai/node-sdk/compare/v1.3.0...v1.4.0)
5
+ Full Changelog: [v0.0.1...v0.1.0](https://github.com/optechai/node-sdk/compare/v0.0.1...v0.1.0)
6
6
 
7
7
  ### Features
8
8
 
9
+ * add chat.streamUpdates ([#195](https://github.com/optechai/node-sdk/issues/195)) ([01f0652](https://github.com/optechai/node-sdk/commit/01f065250ade174d27895de0d09588f76a75fbcf))
10
+ * add SKIP_BREW env var to ./scripts/bootstrap ([#163](https://github.com/optechai/node-sdk/issues/163)) ([51a5407](https://github.com/optechai/node-sdk/commit/51a5407f36aea6fd0195cf93191b19596cfa6cd2))
11
+ * **api:** add customer update endpoint ([#107](https://github.com/optechai/node-sdk/issues/107)) ([e7d6625](https://github.com/optechai/node-sdk/commit/e7d66251001a5dd4e175b9b08bf62ecd0b6bdd8d))
12
+ * **api:** api update ([d1bfc51](https://github.com/optechai/node-sdk/commit/d1bfc51b12b8c8a6ce862563512e21a96df8e626))
13
+ * **api:** api update ([bbda9f4](https://github.com/optechai/node-sdk/commit/bbda9f4e42e593b0dea5201964220f898ab339f5))
14
+ * **api:** api update ([340e9f9](https://github.com/optechai/node-sdk/commit/340e9f93d9ae15221e6b2743999057aba9ae3f1d))
15
+ * **api:** api update ([e27110f](https://github.com/optechai/node-sdk/commit/e27110ffd5829c8af150d93b5f0056623b74b69e))
16
+ * **api:** api update ([3baa2a2](https://github.com/optechai/node-sdk/commit/3baa2a2d66d1cfcf8f39b42998e56dec8e782181))
17
+ * **api:** api update ([ab00f2a](https://github.com/optechai/node-sdk/commit/ab00f2ac46881fe6cf90f33260ec8c3bead55867))
18
+ * **api:** api update ([e7e32db](https://github.com/optechai/node-sdk/commit/e7e32db89f223bb856bf3079a0362e3b58378f88))
19
+ * **api:** api update ([73b9c14](https://github.com/optechai/node-sdk/commit/73b9c14deb2722ec7625c7887b80cb6fd13e6ec2))
20
+ * **api:** api update ([34ae930](https://github.com/optechai/node-sdk/commit/34ae930c551c5f115aed57dc596d618ca0481b3e))
21
+ * **api:** api update ([5426fce](https://github.com/optechai/node-sdk/commit/5426fce971eca94c086ddee3d48b9dab40cc6edf))
22
+ * **api:** api update ([9f00cc4](https://github.com/optechai/node-sdk/commit/9f00cc4dface803579093fd9097bf42a82216344))
23
+ * **api:** api update ([7e63c9f](https://github.com/optechai/node-sdk/commit/7e63c9fbe5a495c8601ed10e16028f27c717818b))
24
+ * **api:** api update ([30b1e32](https://github.com/optechai/node-sdk/commit/30b1e32c03ea5819f53540cc4817f9b5788e81be))
25
+ * **api:** api update ([f5ee8a6](https://github.com/optechai/node-sdk/commit/f5ee8a65a45c1db69c0a0249d52a9a8ca982adc2))
26
+ * **api:** api update ([d5e7d62](https://github.com/optechai/node-sdk/commit/d5e7d625ca938f84f6336396edc5dc524b805bb9))
27
+ * **api:** api update ([87c38c0](https://github.com/optechai/node-sdk/commit/87c38c005217778ddef326351a88e5dbef29b677))
28
+ * **api:** api update ([c8e6d7f](https://github.com/optechai/node-sdk/commit/c8e6d7f4f07ebfbc6d2da77e5d467b2ae53c9900))
29
+ * **api:** api update ([6300101](https://github.com/optechai/node-sdk/commit/63001018f8064c354204b3422c36a2066e9ab016))
9
30
  * **api:** api update ([0e0e7aa](https://github.com/optechai/node-sdk/commit/0e0e7aa36649d44b9090a019161ff9f6e8ccee94))
10
-
11
- ## 1.3.0 (2025-09-09)
12
-
13
- Full Changelog: [v1.2.0...v1.3.0](https://github.com/optechai/node-sdk/compare/v1.2.0...v1.3.0)
14
-
15
- ### Features
16
-
17
31
  * **api:** api update ([5bc91e2](https://github.com/optechai/node-sdk/commit/5bc91e24f56e107b836b36728053aef401cbf95e))
18
32
  * **api:** api update ([a404530](https://github.com/optechai/node-sdk/commit/a4045304e2b2db4d5349712d73923f60fd59e0bb))
19
33
  * **api:** api update ([4dc27e2](https://github.com/optechai/node-sdk/commit/4dc27e248829cb96ec0fcb85afafb22e694e4855))
20
34
  * **api:** api update ([f55e849](https://github.com/optechai/node-sdk/commit/f55e8494e37549537b5e7f5b518c7ff18a384548))
21
- * **api:** manual updates ([e3fe8e8](https://github.com/optechai/node-sdk/commit/e3fe8e899e20164c28ff1502a2e4deb0dcc222d6))
22
- * **api:** manual updates ([9c716ef](https://github.com/optechai/node-sdk/commit/9c716ef1faa17cddce7d47870af21fcb7aee6bb2))
23
-
24
-
25
- ### Bug Fixes
26
-
27
- * coerce nullable values to undefined ([160837c](https://github.com/optechai/node-sdk/commit/160837c580daa194a6bb7e84c27a2316fe6d06cb))
28
-
29
-
30
- ### Chores
31
-
32
- * ci build action ([f1307b7](https://github.com/optechai/node-sdk/commit/f1307b7ae2da44702b6393b9fa78ddc1da128752))
33
- * update CI script ([3e47567](https://github.com/optechai/node-sdk/commit/3e47567d38a31ce1e98a43f6d63df0c6a8c301d3))
34
-
35
- ## 1.2.0 (2025-08-21)
36
-
37
- Full Changelog: [v1.1.0...v1.2.0](https://github.com/optechai/node-sdk/compare/v1.1.0...v1.2.0)
38
-
39
- ### Features
40
-
41
- * **api:** add voice outbound endpoint ([0c8e9f3](https://github.com/optechai/node-sdk/commit/0c8e9f3c686dcece0f08b8725b6a503b626e7a22))
42
-
43
- ## 1.1.0 (2025-08-18)
44
-
45
- Full Changelog: [v1.0.2...v1.1.0](https://github.com/optechai/node-sdk/compare/v1.0.2...v1.1.0)
46
-
47
- ### Features
48
-
49
- * add chat.streamUpdates ([#195](https://github.com/optechai/node-sdk/issues/195)) ([01f0652](https://github.com/optechai/node-sdk/commit/01f065250ade174d27895de0d09588f76a75fbcf))
50
-
51
-
52
- ### Chores
53
-
54
- * **deps:** update dependency node-fetch to v2.6.13 ([f49c6fe](https://github.com/optechai/node-sdk/commit/f49c6feffcf84443c4662e94fe3b1345705c2f85))
55
- * **internal:** formatting change ([31f11ec](https://github.com/optechai/node-sdk/commit/31f11ecbc104d2c7f2e3b2c1bc3353b7bc574426))
56
-
57
- ## 1.0.2 (2025-08-12)
58
-
59
- Full Changelog: [v1.0.1...v1.0.2](https://github.com/optechai/node-sdk/compare/v1.0.1...v1.0.2)
60
-
61
- ### Bug Fixes
62
-
63
- * crypto import via named import ([b0fe33c](https://github.com/optechai/node-sdk/commit/b0fe33cbe100f7265efbc22e278c88b431099cbb))
64
-
65
- ## 1.0.1 (2025-08-12)
66
-
67
- Full Changelog: [v1.0.0...v1.0.1](https://github.com/optechai/node-sdk/compare/v1.0.0...v1.0.1)
68
-
69
- ### Features
70
-
71
- * improved example for customer-profile ([0a5a5aa](https://github.com/optechai/node-sdk/commit/0a5a5aa7b094382e2eb1c062e64fbf8f514ffe64))
72
-
73
-
74
- ### Bug Fixes
75
-
76
- * add minimal example for customer profile testing ([fa06b99](https://github.com/optechai/node-sdk/commit/fa06b99a626d5e862003597d94120752ef1ca449))
77
- * remove duplicate signature in SDK ([44da2bc](https://github.com/optechai/node-sdk/commit/44da2bc5e2fc8b7a90d8311527bca37100cb0a4a))
78
-
79
- ## 1.0.0 (2025-08-11)
80
-
81
- Full Changelog: [v0.14.0...v1.0.0](https://github.com/optechai/node-sdk/compare/v0.14.0...v1.0.0)
82
-
83
- ### Features
84
-
85
- * add auth ([d1d8f02](https://github.com/optechai/node-sdk/commit/d1d8f0233915b3b5dd0c04ea4589706418c057cd))
86
- * add SKIP_BREW env var to ./scripts/bootstrap ([#163](https://github.com/optechai/node-sdk/issues/163)) ([51a5407](https://github.com/optechai/node-sdk/commit/51a5407f36aea6fd0195cf93191b19596cfa6cd2))
87
- * adjust signature generation to use raw body ([7998d09](https://github.com/optechai/node-sdk/commit/7998d09ee99fe2fd64be64eb62ab95f05a985797))
88
- * **api:** add customer update endpoint ([#107](https://github.com/optechai/node-sdk/issues/107)) ([e7d6625](https://github.com/optechai/node-sdk/commit/e7d66251001a5dd4e175b9b08bf62ecd0b6bdd8d))
89
35
  * **api:** api update ([0686788](https://github.com/optechai/node-sdk/commit/0686788782b8ee34e9d6192d62d332ecb9801285))
90
36
  * **api:** api update ([1bcbc2b](https://github.com/optechai/node-sdk/commit/1bcbc2b21d4e7ae68e44a2458ba797f38808a1a5))
91
37
  * **api:** api update ([55c8d72](https://github.com/optechai/node-sdk/commit/55c8d7216e51ca78ea3deddd5d34e7e768c39f13))
@@ -106,18 +52,11 @@ Full Changelog: [v0.14.0...v1.0.0](https://github.com/optechai/node-sdk/compare/
106
52
  * **api:** api update ([#157](https://github.com/optechai/node-sdk/issues/157)) ([1a99697](https://github.com/optechai/node-sdk/commit/1a99697aac37e75c479f7935f17a935dc58b4980))
107
53
  * **api:** api update ([#160](https://github.com/optechai/node-sdk/issues/160)) ([fe2e559](https://github.com/optechai/node-sdk/commit/fe2e5591f18fdfa0ded655ee906266fc457c65b8))
108
54
  * **api:** api update ([#162](https://github.com/optechai/node-sdk/issues/162)) ([e3d8dfb](https://github.com/optechai/node-sdk/commit/e3d8dfb7ab81ba8f2ea15b78313a6c3ff350909d))
109
- * **api:** api update ([#20](https://github.com/optechai/node-sdk/issues/20)) ([171a387](https://github.com/optechai/node-sdk/commit/171a387c16ad5b2b54c199c5426382d02b5ae4b5))
110
- * **api:** api update ([#25](https://github.com/optechai/node-sdk/issues/25)) ([486a6de](https://github.com/optechai/node-sdk/commit/486a6dee4c9f3f9fab34cc88ec57263667ae2302))
111
- * **api:** api update ([#39](https://github.com/optechai/node-sdk/issues/39)) ([a5781ce](https://github.com/optechai/node-sdk/commit/a5781ced3ed926d7599619775cb0ab73201b05b5))
112
- * **api:** api update ([#57](https://github.com/optechai/node-sdk/issues/57)) ([d4df811](https://github.com/optechai/node-sdk/commit/d4df8112ccc239964f720ce7579eacac42033807))
113
- * **api:** api update ([#61](https://github.com/optechai/node-sdk/issues/61)) ([73e1cbe](https://github.com/optechai/node-sdk/commit/73e1cbe93af2516a416685314ef04e0165d71a43))
114
- * **api:** api update ([#70](https://github.com/optechai/node-sdk/issues/70)) ([3bd700b](https://github.com/optechai/node-sdk/commit/3bd700b0db3cb8b496af415b341428d83996fc72))
115
- * **api:** api update ([#84](https://github.com/optechai/node-sdk/issues/84)) ([5bbd6f8](https://github.com/optechai/node-sdk/commit/5bbd6f8ef96296dd546a7b0a3c10350362018993))
116
- * **api:** api update ([#86](https://github.com/optechai/node-sdk/issues/86)) ([40ab47e](https://github.com/optechai/node-sdk/commit/40ab47e3f6ebe7ddf6e8acc46a052386e07eb158))
117
- * **api:** api update ([#88](https://github.com/optechai/node-sdk/issues/88)) ([1064286](https://github.com/optechai/node-sdk/commit/10642868394250a1cd542fbd448aa638896df5f7))
118
- * **api:** api update ([#90](https://github.com/optechai/node-sdk/issues/90)) ([6951b44](https://github.com/optechai/node-sdk/commit/6951b443591763648a0db529075c8ec7882313f0))
119
55
  * **api:** api update ([#98](https://github.com/optechai/node-sdk/issues/98)) ([860fd1e](https://github.com/optechai/node-sdk/commit/860fd1ec25a9b85f856fe27ba2a704091c6412ab))
120
- * **api:** fix spec, rename token import ([#72](https://github.com/optechai/node-sdk/issues/72)) ([4259332](https://github.com/optechai/node-sdk/commit/42593324788dce112008f2b23e35d8d2a9c873e2))
56
+ * **api:** manual updates ([54b0f3d](https://github.com/optechai/node-sdk/commit/54b0f3dff9810b5be04baa67cfbfd292bda42984))
57
+ * **api:** manual updates ([fe77492](https://github.com/optechai/node-sdk/commit/fe774920dcd66e48974ad9b99aa6807df2d0dea0))
58
+ * **api:** manual updates ([e3fe8e8](https://github.com/optechai/node-sdk/commit/e3fe8e899e20164c28ff1502a2e4deb0dcc222d6))
59
+ * **api:** manual updates ([9c716ef](https://github.com/optechai/node-sdk/commit/9c716ef1faa17cddce7d47870af21fcb7aee6bb2))
121
60
  * **api:** manual updates ([df27064](https://github.com/optechai/node-sdk/commit/df27064f02f516388c0e095594a56fd71e965b48))
122
61
  * **api:** manual updates ([ea26119](https://github.com/optechai/node-sdk/commit/ea261192b64b5ada9e88aae8d75ef1ccbea36096))
123
62
  * **api:** manual updates ([dccd155](https://github.com/optechai/node-sdk/commit/dccd1552c9cb30b29d457c1177dbff99de04b8c8))
@@ -128,96 +67,76 @@ Full Changelog: [v0.14.0...v1.0.0](https://github.com/optechai/node-sdk/compare/
128
67
  * **api:** manual updates ([5b116a9](https://github.com/optechai/node-sdk/commit/5b116a9203e47b8dab7141ac1232ddebc1caa676))
129
68
  * **api:** manual updates ([20d8d40](https://github.com/optechai/node-sdk/commit/20d8d40e3d90318e4bce5d63ffa24728d3d6ca1a))
130
69
  * **api:** manual updates ([9c670c9](https://github.com/optechai/node-sdk/commit/9c670c9790050208369fafdeced8b3feb33188dd))
131
- * **api:** manual updates / ignore endpoints ([#89](https://github.com/optechai/node-sdk/issues/89)) ([a68b265](https://github.com/optechai/node-sdk/commit/a68b26515443db2c9522f5d6ad8e0c56ccfac5b0))
132
- * chore: account for empty body ([1186ba5](https://github.com/optechai/node-sdk/commit/1186ba5e86f3976fc3949cf1e20c52f45561ee8c))
133
- * chore: add base url ([a4f19e1](https://github.com/optechai/node-sdk/commit/a4f19e18cf9298444a21f375d3d6b35582822692))
134
- * chore: add ubuntu-latest-m ([b46e897](https://github.com/optechai/node-sdk/commit/b46e897b8c1d186f3c4ca85c6aa679955e7578e2))
135
- * chore: adjust generated test ([ab4b394](https://github.com/optechai/node-sdk/commit/ab4b39448fced35c60ff9bffbf714dad2b631e2c))
136
- * chore: fix no git checks ([b937333](https://github.com/optechai/node-sdk/commit/b937333af237ad5b8e9cca9af68ce5087983d1cd))
137
- * chore: format ([12eae60](https://github.com/optechai/node-sdk/commit/12eae60eb0ad49c944bfac52054d940e32ebf8aa))
138
- * chore: further tweak of test ([13c1043](https://github.com/optechai/node-sdk/commit/13c1043da4be0e4817910a12f5f02900aa83f8ee))
139
- * chore: re-add prettier formatting ([4329850](https://github.com/optechai/node-sdk/commit/4329850f92d35ef676d64c716b1a795756d07f81))
140
- * chore: reinstance node-fetch ([c13b575](https://github.com/optechai/node-sdk/commit/c13b5751d2dad94fc2d372fa2bc69264243134e0))
141
- * chore: remove custom runner ([858d6cb](https://github.com/optechai/node-sdk/commit/858d6cb370342f02c305e066d765364f41559568))
70
+ * **api:** move to typescript ([19bc138](https://github.com/optechai/node-sdk/commit/19bc138caa875bfec17c88daf2d4e7550d9a8e44))
142
71
  * chore: rework examples to include events ([8fd630f](https://github.com/optechai/node-sdk/commit/8fd630ffac661e6c9b3278460fb4d76b4b052d48))
143
- * chore: run format ([4a3a193](https://github.com/optechai/node-sdk/commit/4a3a193d1cf2cecfeab8945970cc95afcab8a9a2))
144
- * chore: try this ([679bb85](https://github.com/optechai/node-sdk/commit/679bb85b050cc5980ad3a67170a538900b40032f))
145
- * chore: try this for publish ([53747b7](https://github.com/optechai/node-sdk/commit/53747b7cb8462a2bee382a5cd582e2dff0dbcdb8))
146
72
  * **client:** accept RFC6838 JSON content types ([#164](https://github.com/optechai/node-sdk/issues/164)) ([a4074cb](https://github.com/optechai/node-sdk/commit/a4074cb2241b701a4514d2592c221cdfaefe3b4e))
147
73
  * **client:** add support for endpoint-specific base URLs ([5821bca](https://github.com/optechai/node-sdk/commit/5821bcad776835de82caced0dc7fc50e553baa7f))
148
74
  * **client:** send `X-Stainless-Timeout` header ([#146](https://github.com/optechai/node-sdk/issues/146)) ([d608779](https://github.com/optechai/node-sdk/commit/d608779a9476f22aec184e959c394c3071e9492d))
149
- * enhance chat interaction and update polling mechanism ([00cb380](https://github.com/optechai/node-sdk/commit/00cb3808f258e89151c960d9a7f3286f61311a35))
150
- * feat: add auth ([3e564ab](https://github.com/optechai/node-sdk/commit/3e564abee9abd0168ec7abf891254d26e3831c55))
151
- * feat: adjust signature generation to use raw body ([7db7f2f](https://github.com/optechai/node-sdk/commit/7db7f2f9571ff31bd6c84086d8d10aa0a49beda1))
152
75
  * feat: opt-7145 poll every second ([8d26f49](https://github.com/optechai/node-sdk/commit/8d26f492f08694506c68f9eed504ba4dc0f0bf88))
153
- * fix: add more refined publish npm to always publish next ([68525e9](https://github.com/optechai/node-sdk/commit/68525e9213d289cf167444232ad0aabd534287aa))
154
- * fix: more type fixes ([5aa5680](https://github.com/optechai/node-sdk/commit/5aa5680fe99cc432e64f419c9ad2f3a975640cb7))
155
- * fix: resolve type errors ([d1c689f](https://github.com/optechai/node-sdk/commit/d1c689f57bdfa8e650cae7e8ce988aa5db05b9c5))
156
- * fix: update the way auth headers are constructed ([952d4ed](https://github.com/optechai/node-sdk/commit/952d4ed907c082f37c47b0dac5f5c75889d9d363))
157
76
  * fix: update to better include escalation cases ([432c240](https://github.com/optechai/node-sdk/commit/432c2408b64530c9f2cf19b06dfb614041696fb3))
77
+ * improved example for customer-profile ([0a5a5aa](https://github.com/optechai/node-sdk/commit/0a5a5aa7b094382e2eb1c062e64fbf8f514ffe64))
158
78
  * **internal:** make git install file structure match npm ([#101](https://github.com/optechai/node-sdk/issues/101)) ([3870c33](https://github.com/optechai/node-sdk/commit/3870c334741c6e805070d2c150d14d0351f69537))
159
79
  * opt-7145 poll every second ([544520d](https://github.com/optechai/node-sdk/commit/544520d9935b70721f1594267c8db6dbb03e4b05))
160
- * various codegen changes ([ed11dc6](https://github.com/optechai/node-sdk/commit/ed11dc6b5666384ccd3b7cb9db2d184a8fc4cea4))
161
80
 
162
81
 
163
82
  ### Bug Fixes
164
83
 
165
- * add more refined publish npm to always publish next ([51a4c10](https://github.com/optechai/node-sdk/commit/51a4c10a11d2c9151c6999d6b996b46c6fa07515))
84
+ * add minimal example for customer profile testing ([fa06b99](https://github.com/optechai/node-sdk/commit/fa06b99a626d5e862003597d94120752ef1ca449))
166
85
  * add pending responsing to poll abort case ([3909145](https://github.com/optechai/node-sdk/commit/390914521d79581b8de7f232a0950969b4427ecd))
167
- * add poll ([22f1f28](https://github.com/optechai/node-sdk/commit/22f1f287ba8383b5c129aa7029c36d8a46389499))
168
86
  * **api:** improve type resolution when importing as a package ([#178](https://github.com/optechai/node-sdk/issues/178)) ([18f5358](https://github.com/optechai/node-sdk/commit/18f5358bcfa82f3e5fd9c9b0e6366cbed04c5e67))
169
- * **api:** manual updates ([#46](https://github.com/optechai/node-sdk/issues/46)) ([4d8152d](https://github.com/optechai/node-sdk/commit/4d8152dd020e4d322ab71e78fc7dbd920e31e08c))
170
- * **api:** manual updates ([#62](https://github.com/optechai/node-sdk/issues/62)) ([5e39228](https://github.com/optechai/node-sdk/commit/5e39228db2d8eda672d30975f1fc16e1a5578f13))
171
- * **api:** stainless config updates ([#30](https://github.com/optechai/node-sdk/issues/30)) ([e83c14c](https://github.com/optechai/node-sdk/commit/e83c14c123f2c421a922d4bfe26a2ec84223a6d3))
172
87
  * avoid type error in certain environments ([#172](https://github.com/optechai/node-sdk/issues/172)) ([4531f6f](https://github.com/optechai/node-sdk/commit/4531f6fb26bb73697b786df4f3598b34671c005f))
173
88
  * **ci:** release-doctor — report correct token name ([dc5e3e8](https://github.com/optechai/node-sdk/commit/dc5e3e80153923bba529ce52b5b3bf35491cc8ab))
174
89
  * **client:** don't send `Content-Type` for bodyless methods ([5790bea](https://github.com/optechai/node-sdk/commit/5790bea1b49bd4eb53defc682390907fe390b3cb))
175
90
  * **client:** fix export map for index exports ([#150](https://github.com/optechai/node-sdk/issues/150)) ([b907b3c](https://github.com/optechai/node-sdk/commit/b907b3c5d45e9ecf89b4d6b4330f430b23130b49))
176
91
  * **client:** normalize method ([#124](https://github.com/optechai/node-sdk/issues/124)) ([5322c3a](https://github.com/optechai/node-sdk/commit/5322c3a9dff3fd9f738654595588a096a54d375d))
177
92
  * **client:** send `X-Stainless-Timeout` in seconds ([#176](https://github.com/optechai/node-sdk/issues/176)) ([28805d0](https://github.com/optechai/node-sdk/commit/28805d064e05209c9b6779985277bd651ede188e))
93
+ * coerce nullable values to undefined ([160837c](https://github.com/optechai/node-sdk/commit/160837c580daa194a6bb7e84c27a2316fe6d06cb))
94
+ * crypto import via named import ([b0fe33c](https://github.com/optechai/node-sdk/commit/b0fe33cbe100f7265efbc22e278c88b431099cbb))
95
+ * **docs/contributing:** correct pnpm link command ([8ca026c](https://github.com/optechai/node-sdk/commit/8ca026c9d946200b74167a4978b6f06b1135d819))
178
96
  * **exports:** ensure resource imports don't require /index ([#168](https://github.com/optechai/node-sdk/issues/168)) ([2ff56f7](https://github.com/optechai/node-sdk/commit/2ff56f7f21c2b25d87aa56d78912c159dd2789d3))
179
97
  * further conflicts ([1c40f9c](https://github.com/optechai/node-sdk/commit/1c40f9cc3188e818709e36f88949cb69df025c40))
180
98
  * **internal:** work around https://github.com/vercel/next.js/issues/76881 ([#173](https://github.com/optechai/node-sdk/issues/173)) ([f6b7617](https://github.com/optechai/node-sdk/commit/f6b76174d6af0626865ec727dcff701cc2973901))
181
99
  * **mcp:** remove unused tools.ts ([#179](https://github.com/optechai/node-sdk/issues/179)) ([e677b9d](https://github.com/optechai/node-sdk/commit/e677b9d58e75ba2a028cd9170ffe8eec4207fbc5))
182
- * more type fixes ([bd2c6cb](https://github.com/optechai/node-sdk/commit/bd2c6cb46f3f64bb5b2fe316ad3ba4f59a3aefbd))
183
100
  * pass through timeout options on requests ([329f35a](https://github.com/optechai/node-sdk/commit/329f35a5a0dbcefdbf9a23e5343fa9685fb49d8a))
184
101
  * publish script — handle NPM errors correctly ([0758a1e](https://github.com/optechai/node-sdk/commit/0758a1ef36cffa7956e546d8858c7e811f9cb375))
185
102
  * remove admin resource ([006dcaf](https://github.com/optechai/node-sdk/commit/006dcafb2b119270ce39f671930178e3db7bcae1))
103
+ * remove duplicate signature in SDK ([44da2bc](https://github.com/optechai/node-sdk/commit/44da2bc5e2fc8b7a90d8311527bca37100cb0a4a))
186
104
  * remove sig ([e5e38b7](https://github.com/optechai/node-sdk/commit/e5e38b7ba20edec71ee5f30d53f8f9a5fe9dfd07))
187
105
  * remove slack ([43c728a](https://github.com/optechai/node-sdk/commit/43c728ad4976685a2d7ae34f025bb357b5de6e19))
188
- * resolve type errors ([5f7ae9d](https://github.com/optechai/node-sdk/commit/5f7ae9dbcd945776b0c15c8c0e7f64b5dba506ce))
189
106
  * tests ([01e95b5](https://github.com/optechai/node-sdk/commit/01e95b526f307caa7e693acf86925effb5928e07))
190
107
  * update / resolve old dead files ([c77c20d](https://github.com/optechai/node-sdk/commit/c77c20d970297582e4b8569e7f13e7590d8e17cf))
191
- * update poll interval ([5f785c2](https://github.com/optechai/node-sdk/commit/5f785c28e5392fdd4adc89ceafdf9fff8dce7fa2))
192
- * update the way auth headers are constructed ([5dbe13d](https://github.com/optechai/node-sdk/commit/5dbe13dfd9fae8e55dccd35b6e8450abb3e4d1ea))
193
108
  * update to better include escalation cases ([0d7a920](https://github.com/optechai/node-sdk/commit/0d7a9201c17f3ed2beb180c9c9e116ee7e1c649b))
194
109
  * update version ([8ae9065](https://github.com/optechai/node-sdk/commit/8ae906516a8a5d3d4d4fdbc188c2109ad7a58287))
195
110
 
196
111
 
112
+ ### Performance Improvements
113
+
114
+ * faster formatting ([58731ec](https://github.com/optechai/node-sdk/commit/58731eca80bcff46bba873a1452f11fdb26a4968))
115
+
116
+
197
117
  ### Chores
198
118
 
199
- * account for empty body ([5fa6fb4](https://github.com/optechai/node-sdk/commit/5fa6fb4abe1adba20b2c541cda5f0f0cdca95418))
200
- * add base url ([fc75a4a](https://github.com/optechai/node-sdk/commit/fc75a4add6b14275f4496b6d1d1a4bbd5b6cfbc7))
201
- * add ubuntu-latest-m ([5fef34a](https://github.com/optechai/node-sdk/commit/5fef34a65f9feec78854daaa93ccc1fbf87f8cd7))
202
- * adjust generated test ([262a6ca](https://github.com/optechai/node-sdk/commit/262a6ca34442be8a5c2c37d07113ff0f1093d90c))
203
- * change poll ([2c44dd7](https://github.com/optechai/node-sdk/commit/2c44dd7f628dce381ee2eab272ee7fa10a1b956d))
119
+ * break long lines in snippets into multiline ([5fcd0e8](https://github.com/optechai/node-sdk/commit/5fcd0e801c3bdbe003d509ff1d97d7666b88be85))
120
+ * ci build action ([f1307b7](https://github.com/optechai/node-sdk/commit/f1307b7ae2da44702b6393b9fa78ddc1da128752))
204
121
  * **ci:** add timeout thresholds for CI jobs ([09823a2](https://github.com/optechai/node-sdk/commit/09823a27632df7501f41bad38b65664da3cf22ac))
205
122
  * **ci:** enable for pull requests ([f397f83](https://github.com/optechai/node-sdk/commit/f397f83f863b443f4ad901fcea5050a99110a9b6))
206
123
  * **ci:** only run for pushes and fork pull requests ([0d7c8d5](https://github.com/optechai/node-sdk/commit/0d7c8d5cfc7cd4c5cb2792114566700d82b75afe))
207
124
  * **ci:** only use depot for staging repos ([0085329](https://github.com/optechai/node-sdk/commit/0085329eeabd660b56d32260f12908689f9d1520))
125
+ * **ci:** upgrade `actions/github-script` ([03d6fad](https://github.com/optechai/node-sdk/commit/03d6fad63891042ff279190bb15e650c9858554d))
126
+ * **client:** do not parse responses with empty content-length ([81bb697](https://github.com/optechai/node-sdk/commit/81bb697a22a2db389fba1879fe213aa8cae9beca))
208
127
  * **client:** minor internal fixes ([f662080](https://github.com/optechai/node-sdk/commit/f662080d5c86aac5408d0c5541f16d9b94c6c70a))
209
128
  * delete dead tests ([e537c9e](https://github.com/optechai/node-sdk/commit/e537c9e12e01076f51f02aedb1aa8e55aa630628))
129
+ * do not install brew dependencies in ./scripts/bootstrap by default ([6b8c3d1](https://github.com/optechai/node-sdk/commit/6b8c3d161c8b5ff91273a013affb91b2c5de859d))
210
130
  * docs fix ([26b32f8](https://github.com/optechai/node-sdk/commit/26b32f8399cce4066b3d26424d1733c3b96eea8e))
211
131
  * **docs:** grammar improvements ([ca2c669](https://github.com/optechai/node-sdk/commit/ca2c669cf37cfa44fe82fc85c1d7dfd496f24093))
212
132
  * **docs:** use top-level-await in example snippets ([99e9a35](https://github.com/optechai/node-sdk/commit/99e9a35105db405e92253e5d28ba25a2e2a7de25))
213
133
  * **exports:** cleaner resource index imports ([#170](https://github.com/optechai/node-sdk/issues/170)) ([0caeba2](https://github.com/optechai/node-sdk/commit/0caeba23fd3863bbcd7231a80f924cf2d1f60182))
214
134
  * **exports:** stop using path fallbacks ([#171](https://github.com/optechai/node-sdk/issues/171)) ([4f82b30](https://github.com/optechai/node-sdk/commit/4f82b30de97adf204441916e7383352e7097e89a))
215
- * fix no git checks ([a428a57](https://github.com/optechai/node-sdk/commit/a428a570c516106ed7b6259aa7f2756f73ca2133))
216
- * format ([e968e08](https://github.com/optechai/node-sdk/commit/e968e081bb7d4b7702b4bee128a03fc701041cbb))
217
- * further tweak of test ([47f63ab](https://github.com/optechai/node-sdk/commit/47f63ab0cc1c87c5d920c38179b9cbbec98d305e))
135
+ * fix typo in descriptions ([06a5435](https://github.com/optechai/node-sdk/commit/06a543577ec71ef4835fe822566587b952d03c4f))
218
136
  * improve publish-npm script --latest tag logic ([a463d3e](https://github.com/optechai/node-sdk/commit/a463d3ed516a92a30ceb93882bc715ca446c0765))
219
137
  * include initial message ([ff0a560](https://github.com/optechai/node-sdk/commit/ff0a560221469d121015435bb56c9d6a8f7eef82))
220
138
  * **internal:** add aliases for Record and Array ([#177](https://github.com/optechai/node-sdk/issues/177)) ([31660f2](https://github.com/optechai/node-sdk/commit/31660f2081beadacf9cf9898128690ffcb48a6ed))
139
+ * **internal:** codegen related update ([a824fe9](https://github.com/optechai/node-sdk/commit/a824fe93c31ef9c7de86bf577a07a765fe657757))
221
140
  * **internal:** codegen related update ([01d9699](https://github.com/optechai/node-sdk/commit/01d96997a9ff61f3155be70cba2cb1bb21316356))
222
141
  * **internal:** codegen related update ([16519bd](https://github.com/optechai/node-sdk/commit/16519bd4f2e1c52f1a887bcb9e172b197cceb8b3))
223
142
  * **internal:** codegen related update ([#116](https://github.com/optechai/node-sdk/issues/116)) ([743e222](https://github.com/optechai/node-sdk/commit/743e222028c225f85732862e73a29296de0b6790))
@@ -227,608 +146,31 @@ Full Changelog: [v0.14.0...v1.0.0](https://github.com/optechai/node-sdk/compare/
227
146
  * **internal:** codegen related update ([#136](https://github.com/optechai/node-sdk/issues/136)) ([554c219](https://github.com/optechai/node-sdk/commit/554c219849d9b1c718c9c4148dd918c33c6e73b6))
228
147
  * **internal:** codegen related update ([#137](https://github.com/optechai/node-sdk/issues/137)) ([ebbb7ea](https://github.com/optechai/node-sdk/commit/ebbb7eaffb055271ae5a3ccc0252016ae4f1b283))
229
148
  * **internal:** fix devcontainers setup ([#153](https://github.com/optechai/node-sdk/issues/153)) ([c0b34bb](https://github.com/optechai/node-sdk/commit/c0b34bb780a7438413fc0b0627fa28eacd3dfaa6))
149
+ * **internal:** fix incremental formatting in some cases ([d0e5443](https://github.com/optechai/node-sdk/commit/d0e54432863ed5e2cfd234da821f32f6d066545c))
230
150
  * **internal:** fix some typos ([#121](https://github.com/optechai/node-sdk/issues/121)) ([da09487](https://github.com/optechai/node-sdk/commit/da094874f675024cb18bc0a6f1f0a32ddb909faf))
151
+ * **internal:** ignore .eslintcache ([d2bd2a9](https://github.com/optechai/node-sdk/commit/d2bd2a97be03acd677e5e93df2cd73c0c401031f))
231
152
  * **internal:** make base APIResource abstract ([357ceff](https://github.com/optechai/node-sdk/commit/357ceff9573f17cdfec91b2984532569f790ced0))
232
153
  * **internal:** reduce CI branch coverage ([cc3e9c0](https://github.com/optechai/node-sdk/commit/cc3e9c0f85dcf0a5157286268325e55b5eb6ca2d))
154
+ * **internal:** remove deprecated `compilerOptions.baseUrl` from tsconfig.json ([a21b2f7](https://github.com/optechai/node-sdk/commit/a21b2f7ff523782d66b0e9cdc698dea4d5d49fa2))
233
155
  * **internal:** remove unnecessary getRequestClient function ([#115](https://github.com/optechai/node-sdk/issues/115)) ([58fe3ae](https://github.com/optechai/node-sdk/commit/58fe3ae26058bd94eca16ca8513fd06d6850bfe7))
156
+ * **internal:** update `actions/checkout` version ([8c51643](https://github.com/optechai/node-sdk/commit/8c51643885693683b085883234286281b71f6be0))
234
157
  * **internal:** update isAbsoluteURL ([#119](https://github.com/optechai/node-sdk/issues/119)) ([d1020ed](https://github.com/optechai/node-sdk/commit/d1020ed87895b4b145fb389155e6bf80aec7fc69))
158
+ * **internal:** upgrade babel, qs, js-yaml ([6f7660d](https://github.com/optechai/node-sdk/commit/6f7660d318c7fbb00609d1b8a323c0f6811a8acf))
235
159
  * **internal:** upload builds and expand CI branch coverage ([692e92e](https://github.com/optechai/node-sdk/commit/692e92e7a5a6f24f3c9bd41bd970d6a2f76dcaa0))
236
- * **internal:** version bump ([#48](https://github.com/optechai/node-sdk/issues/48)) ([1f6cf7d](https://github.com/optechai/node-sdk/commit/1f6cf7de5a57381296fde1f73bb2a48cd47ff152))
237
- * **internal:** version bump ([#51](https://github.com/optechai/node-sdk/issues/51)) ([a13fa42](https://github.com/optechai/node-sdk/commit/a13fa426430b92681081e6a066e3b85a11fd2591))
238
- * **internal:** version bump ([#54](https://github.com/optechai/node-sdk/issues/54)) ([87db91f](https://github.com/optechai/node-sdk/commit/87db91fbd67e52ed89fc961c4c276f239bc8404b))
239
- * **internal:** version bump ([#59](https://github.com/optechai/node-sdk/issues/59)) ([a87f7a8](https://github.com/optechai/node-sdk/commit/a87f7a84d223ad786af7bc57bd8c977e397ba646))
240
- * **internal:** version bump ([#66](https://github.com/optechai/node-sdk/issues/66)) ([ceeac75](https://github.com/optechai/node-sdk/commit/ceeac75db5f11ed8d763fd1a73e65a0d310b7313))
241
- * **internal:** version bump ([#80](https://github.com/optechai/node-sdk/issues/80)) ([769ddc7](https://github.com/optechai/node-sdk/commit/769ddc76f3ded51a5615e29ed44d8782f5246a8b))
242
- * **internal:** version bump ([#93](https://github.com/optechai/node-sdk/issues/93)) ([d1dd557](https://github.com/optechai/node-sdk/commit/d1dd55783a548cf6f41c7a2b9e197470406dbf1e))
243
- * little whoopsie ([6ad3de4](https://github.com/optechai/node-sdk/commit/6ad3de4610c7b5639c246fa7e7de3a78ea952089))
160
+ * **internal:** use npm pack for build uploads ([739c566](https://github.com/optechai/node-sdk/commit/739c56602dd8a50c47ca312c3302ccbf34d2961b))
244
161
  * make some internal functions async ([cc81572](https://github.com/optechai/node-sdk/commit/cc81572884870d451f7230093a44c85039becabc))
245
162
  * mention unit type in timeout docs ([1b04e8a](https://github.com/optechai/node-sdk/commit/1b04e8a6c534f45e8951c930d976b9419f2487a5))
246
- * re-add prettier formatting ([fdbaae6](https://github.com/optechai/node-sdk/commit/fdbaae608e3c80f0be78474f2dfba95f7fcb366d))
247
- * rebuild project due to codegen change ([#83](https://github.com/optechai/node-sdk/issues/83)) ([491f0d8](https://github.com/optechai/node-sdk/commit/491f0d82637f8ab76db9c8236b8f4ed2d099d0a6))
248
- * reinstance node-fetch ([3bb8b36](https://github.com/optechai/node-sdk/commit/3bb8b3647d5f9a18c5d66de2a187aae9ac2ad687))
249
- * remove custom runner ([0d9ab8d](https://github.com/optechai/node-sdk/commit/0d9ab8d3a93f11d5a599dc3527e80e550bea3a15))
250
- * remove redundant word in comment ([#95](https://github.com/optechai/node-sdk/issues/95)) ([4e5f199](https://github.com/optechai/node-sdk/commit/4e5f19965cbb44b2e9d58048c1b74cd6ef45e50c))
251
163
  * rework examples to include events ([d8a4365](https://github.com/optechai/node-sdk/commit/d8a4365dd498cd5a0624138c486e26f9bc5c363b))
252
- * run format ([82e0c78](https://github.com/optechai/node-sdk/commit/82e0c7871984c2c3d6812f50008df8866976427f))
164
+ * sync repo ([7fbafe7](https://github.com/optechai/node-sdk/commit/7fbafe7c11a9a8aef5e24312bb17b02d1f4c72bb))
253
165
  * this should be correct ([c07034d](https://github.com/optechai/node-sdk/commit/c07034ded81dccffd35253f75ebed2aeae95aee4))
254
- * try this ([080982e](https://github.com/optechai/node-sdk/commit/080982e826bd54598ed3beef60ad5beeef71e34f))
255
- * try this for publish ([a526ca0](https://github.com/optechai/node-sdk/commit/a526ca0d8f9665cdf699ccbdc47501d83eaa7c36))
256
- * tweak docs example ([302c7e0](https://github.com/optechai/node-sdk/commit/302c7e0a489055456e01adf22d163ed6059135e9))
257
166
  * tweak example ([12ec35d](https://github.com/optechai/node-sdk/commit/12ec35da4e904654b2bd8c71846f64d23715b909))
258
167
  * **types:** nicer error class types + jsdocs ([#118](https://github.com/optechai/node-sdk/issues/118)) ([371255e](https://github.com/optechai/node-sdk/commit/371255e9bb0ac71b11f14c2c2a23a1b3753102f2))
259
- * update ci/actions ([645e253](https://github.com/optechai/node-sdk/commit/645e253adc9448e5ec9a7f7084d59025886fcb61))
260
- * update example script ([deec9f7](https://github.com/optechai/node-sdk/commit/deec9f7353772260ace4b420496e8709443c8c5a))
261
- * update logic for bot response bolling ([3a7ba21](https://github.com/optechai/node-sdk/commit/3a7ba213594537573238a2a450c0d790d991dffc))
262
- * update SDK settings ([#43](https://github.com/optechai/node-sdk/issues/43)) ([c3f8908](https://github.com/optechai/node-sdk/commit/c3f8908963deb21cda480fe348c9b8642e45aeeb))
263
-
264
-
265
- ### Documentation
266
-
267
- * add example ([115fd30](https://github.com/optechai/node-sdk/commit/115fd30d7b09be6d0bd3836d480fe9ae35c568ba))
268
- * add examples to tsdocs ([f295f45](https://github.com/optechai/node-sdk/commit/f295f45abe967a18ef1ac6690b9810856b05b4f6))
269
- * **readme:** fix typo ([11068f9](https://github.com/optechai/node-sdk/commit/11068f9ff3522141b8ae1f5e161ae757d40ae80e))
270
- * update URLs from stainlessapi.com to stainless.com ([#156](https://github.com/optechai/node-sdk/issues/156)) ([93920fa](https://github.com/optechai/node-sdk/commit/93920fa830b33f4d8e522accda6fc2ece62296ca))
271
-
272
- ## 0.14.0 (2025-08-11)
273
-
274
- Full Changelog: [v0.13.2...v0.14.0](https://github.com/optechai/node-sdk/compare/v0.13.2...v0.14.0)
275
-
276
- ### Features
277
-
278
- * **api:** api update ([0686788](https://github.com/optechai/node-sdk/commit/0686788782b8ee34e9d6192d62d332ecb9801285))
279
- * **api:** api update ([1bcbc2b](https://github.com/optechai/node-sdk/commit/1bcbc2b21d4e7ae68e44a2458ba797f38808a1a5))
280
- * **api:** api update ([55c8d72](https://github.com/optechai/node-sdk/commit/55c8d7216e51ca78ea3deddd5d34e7e768c39f13))
281
- * **api:** api update ([99e41d8](https://github.com/optechai/node-sdk/commit/99e41d8014a2d5f8cfdd34c6776e88d3b0bd1681))
282
- * **api:** manual updates ([df27064](https://github.com/optechai/node-sdk/commit/df27064f02f516388c0e095594a56fd71e965b48))
283
- * **api:** manual updates ([ea26119](https://github.com/optechai/node-sdk/commit/ea261192b64b5ada9e88aae8d75ef1ccbea36096))
284
- * **api:** manual updates ([dccd155](https://github.com/optechai/node-sdk/commit/dccd1552c9cb30b29d457c1177dbff99de04b8c8))
285
- * **api:** manual updates ([8b77873](https://github.com/optechai/node-sdk/commit/8b7787303f26e79ef339ff27c4321c359125e854))
286
- * **api:** manual updates ([0070a9b](https://github.com/optechai/node-sdk/commit/0070a9bc039d3c8f58aa2a4bca596cef9c2b5f80))
287
- * **api:** manual updates ([8e21404](https://github.com/optechai/node-sdk/commit/8e214048428d567412f1a88b0bf6b58a16c48a17))
288
- * **api:** manual updates ([947a719](https://github.com/optechai/node-sdk/commit/947a7192cfd0da368e0f1782301996117a9b9da4))
289
- * **api:** manual updates ([5b116a9](https://github.com/optechai/node-sdk/commit/5b116a9203e47b8dab7141ac1232ddebc1caa676))
290
- * **api:** manual updates ([20d8d40](https://github.com/optechai/node-sdk/commit/20d8d40e3d90318e4bce5d63ffa24728d3d6ca1a))
291
- * **api:** manual updates ([9c670c9](https://github.com/optechai/node-sdk/commit/9c670c9790050208369fafdeced8b3feb33188dd))
292
- * **client:** add support for endpoint-specific base URLs ([5821bca](https://github.com/optechai/node-sdk/commit/5821bcad776835de82caced0dc7fc50e553baa7f))
293
-
294
-
295
- ### Bug Fixes
296
-
297
- * **ci:** release-doctor — report correct token name ([dc5e3e8](https://github.com/optechai/node-sdk/commit/dc5e3e80153923bba529ce52b5b3bf35491cc8ab))
298
- * **client:** don't send `Content-Type` for bodyless methods ([5790bea](https://github.com/optechai/node-sdk/commit/5790bea1b49bd4eb53defc682390907fe390b3cb))
299
- * publish script — handle NPM errors correctly ([0758a1e](https://github.com/optechai/node-sdk/commit/0758a1ef36cffa7956e546d8858c7e811f9cb375))
300
-
301
-
302
- ### Chores
303
-
304
- * **ci:** enable for pull requests ([f397f83](https://github.com/optechai/node-sdk/commit/f397f83f863b443f4ad901fcea5050a99110a9b6))
305
- * **ci:** only run for pushes and fork pull requests ([0d7c8d5](https://github.com/optechai/node-sdk/commit/0d7c8d5cfc7cd4c5cb2792114566700d82b75afe))
306
- * **docs:** use top-level-await in example snippets ([99e9a35](https://github.com/optechai/node-sdk/commit/99e9a35105db405e92253e5d28ba25a2e2a7de25))
307
- * improve publish-npm script --latest tag logic ([a463d3e](https://github.com/optechai/node-sdk/commit/a463d3ed516a92a30ceb93882bc715ca446c0765))
308
- * **internal:** make base APIResource abstract ([357ceff](https://github.com/optechai/node-sdk/commit/357ceff9573f17cdfec91b2984532569f790ced0))
309
- * make some internal functions async ([cc81572](https://github.com/optechai/node-sdk/commit/cc81572884870d451f7230093a44c85039becabc))
310
- * mention unit type in timeout docs ([1b04e8a](https://github.com/optechai/node-sdk/commit/1b04e8a6c534f45e8951c930d976b9419f2487a5))
311
-
312
- ## 0.13.2 (2025-07-24)
313
-
314
- Full Changelog: [v0.13.1...v0.13.2](https://github.com/optechai/node-sdk/compare/v0.13.1...v0.13.2)
315
-
316
- ### Chores
317
-
318
- * **docs:** grammar improvements ([ca2c669](https://github.com/optechai/node-sdk/commit/ca2c669cf37cfa44fe82fc85c1d7dfd496f24093))
319
-
320
- ## 0.13.1 (2025-05-19)
321
-
322
- Full Changelog: [v0.13.0...v0.13.1](https://github.com/optechai/node-sdk/compare/v0.13.0...v0.13.1)
323
-
324
- ### Features
325
-
326
- * **api:** api update ([d58730e](https://github.com/optechai/node-sdk/commit/d58730ed9481c311395a306a447ee0df344d6d39))
168
+ * update CI script ([3e47567](https://github.com/optechai/node-sdk/commit/3e47567d38a31ce1e98a43f6d63df0c6a8c301d3))
169
+ * update mock server docs ([1086b28](https://github.com/optechai/node-sdk/commit/1086b2818b2758b2fb2d16c60a6ec9898a6013a2))
327
170
 
328
171
 
329
172
  ### Documentation
330
173
 
331
174
  * add examples to tsdocs ([f295f45](https://github.com/optechai/node-sdk/commit/f295f45abe967a18ef1ac6690b9810856b05b4f6))
332
175
  * **readme:** fix typo ([11068f9](https://github.com/optechai/node-sdk/commit/11068f9ff3522141b8ae1f5e161ae757d40ae80e))
333
-
334
- ## 0.13.0 (2025-04-24)
335
-
336
- Full Changelog: [v0.12.0...v0.13.0](https://github.com/optechai/node-sdk/compare/v0.12.0...v0.13.0)
337
-
338
- ### Features
339
-
340
- * **api:** api update ([38c66cd](https://github.com/optechai/node-sdk/commit/38c66cd0d0be79736c0debc1c479ab82b78134c5))
341
-
342
-
343
- ### Chores
344
-
345
- * **ci:** add timeout thresholds for CI jobs ([09823a2](https://github.com/optechai/node-sdk/commit/09823a27632df7501f41bad38b65664da3cf22ac))
346
- * **ci:** only use depot for staging repos ([0085329](https://github.com/optechai/node-sdk/commit/0085329eeabd660b56d32260f12908689f9d1520))
347
- * **client:** minor internal fixes ([f662080](https://github.com/optechai/node-sdk/commit/f662080d5c86aac5408d0c5541f16d9b94c6c70a))
348
- * **internal:** codegen related update ([01d9699](https://github.com/optechai/node-sdk/commit/01d96997a9ff61f3155be70cba2cb1bb21316356))
349
- * **internal:** codegen related update ([16519bd](https://github.com/optechai/node-sdk/commit/16519bd4f2e1c52f1a887bcb9e172b197cceb8b3))
350
- * **internal:** reduce CI branch coverage ([cc3e9c0](https://github.com/optechai/node-sdk/commit/cc3e9c0f85dcf0a5157286268325e55b5eb6ca2d))
351
- * **internal:** upload builds and expand CI branch coverage ([692e92e](https://github.com/optechai/node-sdk/commit/692e92e7a5a6f24f3c9bd41bd970d6a2f76dcaa0))
352
-
353
- ## 0.12.0 (2025-04-14)
354
-
355
- Full Changelog: [v0.11.1...v0.12.0](https://github.com/optechai/node-sdk/compare/v0.11.1...v0.12.0)
356
-
357
- ### Features
358
-
359
- * fix: update to better include escalation cases ([432c240](https://github.com/optechai/node-sdk/commit/432c2408b64530c9f2cf19b06dfb614041696fb3))
360
-
361
-
362
- ### Bug Fixes
363
-
364
- * **api:** improve type resolution when importing as a package ([#178](https://github.com/optechai/node-sdk/issues/178)) ([18f5358](https://github.com/optechai/node-sdk/commit/18f5358bcfa82f3e5fd9c9b0e6366cbed04c5e67))
365
- * **client:** send `X-Stainless-Timeout` in seconds ([#176](https://github.com/optechai/node-sdk/issues/176)) ([28805d0](https://github.com/optechai/node-sdk/commit/28805d064e05209c9b6779985277bd651ede188e))
366
- * **mcp:** remove unused tools.ts ([#179](https://github.com/optechai/node-sdk/issues/179)) ([e677b9d](https://github.com/optechai/node-sdk/commit/e677b9d58e75ba2a028cd9170ffe8eec4207fbc5))
367
-
368
-
369
- ### Chores
370
-
371
- * **internal:** add aliases for Record and Array ([#177](https://github.com/optechai/node-sdk/issues/177)) ([31660f2](https://github.com/optechai/node-sdk/commit/31660f2081beadacf9cf9898128690ffcb48a6ed))
372
- * tweak example ([12ec35d](https://github.com/optechai/node-sdk/commit/12ec35da4e904654b2bd8c71846f64d23715b909))
373
-
374
- ## 0.11.1 (2025-03-28)
375
-
376
- Full Changelog: [v0.11.0...v0.11.1](https://github.com/optechai/node-sdk/compare/v0.11.0...v0.11.1)
377
-
378
- ### Bug Fixes
379
-
380
- * avoid type error in certain environments ([#172](https://github.com/optechai/node-sdk/issues/172)) ([4531f6f](https://github.com/optechai/node-sdk/commit/4531f6fb26bb73697b786df4f3598b34671c005f))
381
- * **exports:** ensure resource imports don't require /index ([#168](https://github.com/optechai/node-sdk/issues/168)) ([2ff56f7](https://github.com/optechai/node-sdk/commit/2ff56f7f21c2b25d87aa56d78912c159dd2789d3))
382
- * **internal:** work around https://github.com/vercel/next.js/issues/76881 ([#173](https://github.com/optechai/node-sdk/issues/173)) ([f6b7617](https://github.com/optechai/node-sdk/commit/f6b76174d6af0626865ec727dcff701cc2973901))
383
-
384
-
385
- ### Chores
386
-
387
- * **exports:** cleaner resource index imports ([#170](https://github.com/optechai/node-sdk/issues/170)) ([0caeba2](https://github.com/optechai/node-sdk/commit/0caeba23fd3863bbcd7231a80f924cf2d1f60182))
388
- * **exports:** stop using path fallbacks ([#171](https://github.com/optechai/node-sdk/issues/171)) ([4f82b30](https://github.com/optechai/node-sdk/commit/4f82b30de97adf204441916e7383352e7097e89a))
389
-
390
- ## 0.11.0 (2025-03-11)
391
-
392
- Full Changelog: [v0.10.0...v0.11.0](https://github.com/optechai/node-sdk/compare/v0.10.0...v0.11.0)
393
-
394
- ### Features
395
-
396
- * add SKIP_BREW env var to ./scripts/bootstrap ([#163](https://github.com/optechai/node-sdk/issues/163)) ([51a5407](https://github.com/optechai/node-sdk/commit/51a5407f36aea6fd0195cf93191b19596cfa6cd2))
397
- * **api:** api update ([#160](https://github.com/optechai/node-sdk/issues/160)) ([fe2e559](https://github.com/optechai/node-sdk/commit/fe2e5591f18fdfa0ded655ee906266fc457c65b8))
398
- * **api:** api update ([#162](https://github.com/optechai/node-sdk/issues/162)) ([e3d8dfb](https://github.com/optechai/node-sdk/commit/e3d8dfb7ab81ba8f2ea15b78313a6c3ff350909d))
399
- * **client:** accept RFC6838 JSON content types ([#164](https://github.com/optechai/node-sdk/issues/164)) ([a4074cb](https://github.com/optechai/node-sdk/commit/a4074cb2241b701a4514d2592c221cdfaefe3b4e))
400
- * feat: opt-7145 poll every second ([8d26f49](https://github.com/optechai/node-sdk/commit/8d26f492f08694506c68f9eed504ba4dc0f0bf88))
401
-
402
- ## 0.10.0 (2025-03-04)
403
-
404
- Full Changelog: [v0.9.2...v0.10.0](https://github.com/optechai/node-sdk/compare/v0.9.2...v0.10.0)
405
-
406
- ### Features
407
-
408
- * **api:** api update ([#155](https://github.com/optechai/node-sdk/issues/155)) ([8dfa34b](https://github.com/optechai/node-sdk/commit/8dfa34bf5bde64ea5ff93aa9053848ae357e9aa7))
409
- * **api:** api update ([#157](https://github.com/optechai/node-sdk/issues/157)) ([1a99697](https://github.com/optechai/node-sdk/commit/1a99697aac37e75c479f7935f17a935dc58b4980))
410
-
411
-
412
- ### Chores
413
-
414
- * **internal:** fix devcontainers setup ([#153](https://github.com/optechai/node-sdk/issues/153)) ([c0b34bb](https://github.com/optechai/node-sdk/commit/c0b34bb780a7438413fc0b0627fa28eacd3dfaa6))
415
-
416
-
417
- ### Documentation
418
-
419
176
  * update URLs from stainlessapi.com to stainless.com ([#156](https://github.com/optechai/node-sdk/issues/156)) ([93920fa](https://github.com/optechai/node-sdk/commit/93920fa830b33f4d8e522accda6fc2ece62296ca))
420
-
421
- ## 0.9.2 (2025-02-14)
422
-
423
- Full Changelog: [v0.9.1...v0.9.2](https://github.com/optechai/node-sdk/compare/v0.9.1...v0.9.2)
424
-
425
- ### Bug Fixes
426
-
427
- * **client:** fix export map for index exports ([#150](https://github.com/optechai/node-sdk/issues/150)) ([b907b3c](https://github.com/optechai/node-sdk/commit/b907b3c5d45e9ecf89b4d6b4330f430b23130b49))
428
-
429
- ## 0.9.1 (2025-02-05)
430
-
431
- Full Changelog: [v0.9.0...v0.9.1](https://github.com/optechai/node-sdk/compare/v0.9.0...v0.9.1)
432
-
433
- ### Features
434
-
435
- * **api:** supply app link in conversation response ([#148](https://github.com/optechai/node-sdk/issues/148)) ([b69e96d](https://github.com/optechai/node-sdk/commit/b69e96d847b130418c4c8cd7826089f2e4ffccbe))
436
- * **client:** send `X-Stainless-Timeout` header ([#146](https://github.com/optechai/node-sdk/issues/146)) ([d608779](https://github.com/optechai/node-sdk/commit/d608779a9476f22aec184e959c394c3071e9492d))
437
-
438
-
439
- ### Chores
440
-
441
- * docs fix ([26b32f8](https://github.com/optechai/node-sdk/commit/26b32f8399cce4066b3d26424d1733c3b96eea8e))
442
-
443
- ## 0.9.0 (2025-01-30)
444
-
445
- Full Changelog: [v0.8.1...v0.9.0](https://github.com/optechai/node-sdk/compare/v0.8.1...v0.9.0)
446
-
447
- ### Features
448
-
449
- * **api:** api update ([#142](https://github.com/optechai/node-sdk/issues/142)) ([2c26d40](https://github.com/optechai/node-sdk/commit/2c26d409466e11c0921ae58066fdf603f269ed78))
450
-
451
- ## 0.8.1 (2025-01-29)
452
-
453
- Full Changelog: [v0.8.0...v0.8.1](https://github.com/optechai/node-sdk/compare/v0.8.0...v0.8.1)
454
-
455
- ### Features
456
-
457
- * chore: rework examples to include events ([8fd630f](https://github.com/optechai/node-sdk/commit/8fd630ffac661e6c9b3278460fb4d76b4b052d48))
458
-
459
- ## 0.8.0 (2025-01-29)
460
-
461
- Full Changelog: [v0.7.0...v0.8.0](https://github.com/optechai/node-sdk/compare/v0.7.0...v0.8.0)
462
-
463
- ### Features
464
-
465
- * **api:** SDK now returns events with richer information on things like topic matching, and escalations. ([#138](https://github.com/optechai/node-sdk/issues/138)) ([7b994e3](https://github.com/optechai/node-sdk/commit/7b994e3b0f6d4a382246122d528bb88a6cfcfd9a))
466
-
467
-
468
- ### Chores
469
-
470
- * **internal:** codegen related update ([#136](https://github.com/optechai/node-sdk/issues/136)) ([554c219](https://github.com/optechai/node-sdk/commit/554c219849d9b1c718c9c4148dd918c33c6e73b6))
471
- * **internal:** codegen related update ([#137](https://github.com/optechai/node-sdk/issues/137)) ([ebbb7ea](https://github.com/optechai/node-sdk/commit/ebbb7eaffb055271ae5a3ccc0252016ae4f1b283))
472
-
473
- ## 0.7.0 (2025-01-14)
474
-
475
- Full Changelog: [v0.6.3...v0.7.0](https://github.com/optechai/node-sdk/compare/v0.6.3...v0.7.0)
476
-
477
- ### Features
478
-
479
- * **api:** Support for attachments in ticket messages ([#120](https://github.com/optechai/node-sdk/issues/120)) ([16500dd](https://github.com/optechai/node-sdk/commit/16500dd356f213a64749895a870ee17f7085e359))
480
- * **api:** Supports conversation status in response ([#130](https://github.com/optechai/node-sdk/issues/130)) ([231084a](https://github.com/optechai/node-sdk/commit/231084a7d2d3ac077e5518d58bb836e878580c2c))
481
-
482
- #### Conversation status
483
-
484
- * `status` allows users to determine previously opaque aspects of response generation
485
- - `Unprocessed`: We have not done anything to the ticket.
486
- - `Processing`: The ticket is being processed. This includes cases where we are waiting for the customer to reply.
487
- - `Unhandled`: Not enough workflows matched this ticket, so we did nothing.
488
- - `Escalated`: We tried to respond to the ticket, but had to escalate it to a human.
489
- - `Responded`: We have responded to the ticket.
490
- - `Error`: A system error occurred while processing the ticket.
491
-
492
- ### Bug Fixes
493
-
494
- * **client:** normalize method ([#124](https://github.com/optechai/node-sdk/issues/124)) ([5322c3a](https://github.com/optechai/node-sdk/commit/5322c3a9dff3fd9f738654595588a096a54d375d))
495
-
496
-
497
- ### Chores
498
-
499
- * **internal:** codegen related update ([#116](https://github.com/optechai/node-sdk/issues/116)) ([743e222](https://github.com/optechai/node-sdk/commit/743e222028c225f85732862e73a29296de0b6790))
500
- * **internal:** codegen related update ([#125](https://github.com/optechai/node-sdk/issues/125)) ([a4102dc](https://github.com/optechai/node-sdk/commit/a4102dcfd5cb9198ec107cae96fe0a39b730fdd2))
501
- * **internal:** codegen related update ([#128](https://github.com/optechai/node-sdk/issues/128)) ([7f49512](https://github.com/optechai/node-sdk/commit/7f4951278344f7a7b614cf6a089c1ca9e4c1e11d))
502
- * **internal:** codegen related update ([#129](https://github.com/optechai/node-sdk/issues/129)) ([4fab784](https://github.com/optechai/node-sdk/commit/4fab784307d3b38fa248a0ee0ef5b1a71f02dfb4))
503
- * **internal:** fix some typos ([#121](https://github.com/optechai/node-sdk/issues/121)) ([da09487](https://github.com/optechai/node-sdk/commit/da094874f675024cb18bc0a6f1f0a32ddb909faf))
504
- * **internal:** update isAbsoluteURL ([#119](https://github.com/optechai/node-sdk/issues/119)) ([d1020ed](https://github.com/optechai/node-sdk/commit/d1020ed87895b4b145fb389155e6bf80aec7fc69))
505
- * **types:** nicer error class types + jsdocs ([#118](https://github.com/optechai/node-sdk/issues/118)) ([371255e](https://github.com/optechai/node-sdk/commit/371255e9bb0ac71b11f14c2c2a23a1b3753102f2))
506
-
507
- ## 0.6.3 (2024-12-11)
508
-
509
- Full Changelog: [v0.6.2...v0.6.3](https://github.com/optechai/node-sdk/compare/v0.6.2...v0.6.3)
510
-
511
- ### Features
512
-
513
- * **api:** api update ([#114](https://github.com/optechai/node-sdk/issues/114)) ([feb19dc](https://github.com/optechai/node-sdk/commit/feb19dc361072483bbdf0a7aa7470493bce136bd))
514
-
515
-
516
- ### Chores
517
-
518
- * include initial message ([ff0a560](https://github.com/optechai/node-sdk/commit/ff0a560221469d121015435bb56c9d6a8f7eef82))
519
- * **internal:** remove unnecessary getRequestClient function ([#115](https://github.com/optechai/node-sdk/issues/115)) ([58fe3ae](https://github.com/optechai/node-sdk/commit/58fe3ae26058bd94eca16ca8513fd06d6850bfe7))
520
-
521
- ## 0.6.2 (2024-12-09)
522
-
523
- Full Changelog: [v0.6.1...v0.6.2](https://github.com/optechai/node-sdk/compare/v0.6.1...v0.6.2)
524
-
525
- ### Features
526
-
527
- * **api:** api update ([#109](https://github.com/optechai/node-sdk/issues/109)) ([5f2835c](https://github.com/optechai/node-sdk/commit/5f2835c1fc9583190e913b7d9e91685d059e406b))
528
-
529
- ## 0.6.1 (2024-12-08)
530
-
531
- Full Changelog: [v0.6.0...v0.6.1](https://github.com/optechai/node-sdk/compare/v0.6.0...v0.6.1)
532
-
533
- ### Features
534
-
535
- * **api:** add customer update endpoint ([#107](https://github.com/optechai/node-sdk/issues/107)) ([e7d6625](https://github.com/optechai/node-sdk/commit/e7d66251001a5dd4e175b9b08bf62ecd0b6bdd8d))
536
-
537
-
538
- ### Bug Fixes
539
-
540
- * pass through timeout options on requests ([329f35a](https://github.com/optechai/node-sdk/commit/329f35a5a0dbcefdbf9a23e5343fa9685fb49d8a))
541
-
542
- ## 0.6.0 (2024-12-03)
543
-
544
- Full Changelog: [v0.5.0...v0.6.0](https://github.com/optechai/node-sdk/compare/v0.5.0...v0.6.0)
545
-
546
- ### Features
547
-
548
- * **api:** api update ([#103](https://github.com/optechai/node-sdk/issues/103)) ([8d13189](https://github.com/optechai/node-sdk/commit/8d13189d8e121cd012358ad6d91f24113d5ba12e))
549
- * **internal:** make git install file structure match npm ([#101](https://github.com/optechai/node-sdk/issues/101)) ([3870c33](https://github.com/optechai/node-sdk/commit/3870c334741c6e805070d2c150d14d0351f69537))
550
-
551
- ## 0.5.0 (2024-11-22)
552
-
553
- Full Changelog: [v0.4.1...v0.5.0](https://github.com/optechai/node-sdk/compare/v0.4.1...v0.5.0)
554
-
555
- ### Features
556
-
557
- * **api:** api update ([#98](https://github.com/optechai/node-sdk/issues/98)) ([860fd1e](https://github.com/optechai/node-sdk/commit/860fd1ec25a9b85f856fe27ba2a704091c6412ab))
558
-
559
- ## 0.4.1 (2024-11-20)
560
-
561
- Full Changelog: [v0.4.0...v0.4.1](https://github.com/optechai/node-sdk/compare/v0.4.0...v0.4.1)
562
-
563
- ### Chores
564
-
565
- * **internal:** version bump ([#93](https://github.com/optechai/node-sdk/issues/93)) ([d1dd557](https://github.com/optechai/node-sdk/commit/d1dd55783a548cf6f41c7a2b9e197470406dbf1e))
566
- * remove redundant word in comment ([#95](https://github.com/optechai/node-sdk/issues/95)) ([4e5f199](https://github.com/optechai/node-sdk/commit/4e5f19965cbb44b2e9d58048c1b74cd6ef45e50c))
567
- * update logic for bot response bolling ([3a7ba21](https://github.com/optechai/node-sdk/commit/3a7ba213594537573238a2a450c0d790d991dffc))
568
-
569
- ## 0.4.0 (2024-11-19)
570
-
571
- Full Changelog: [v0.3.2...v0.4.0](https://github.com/optechai/node-sdk/compare/v0.3.2...v0.4.0)
572
-
573
- ### Features
574
-
575
- * **api:** api update ([#84](https://github.com/optechai/node-sdk/issues/84)) ([5bbd6f8](https://github.com/optechai/node-sdk/commit/5bbd6f8ef96296dd546a7b0a3c10350362018993))
576
- * **api:** api update ([#86](https://github.com/optechai/node-sdk/issues/86)) ([40ab47e](https://github.com/optechai/node-sdk/commit/40ab47e3f6ebe7ddf6e8acc46a052386e07eb158))
577
- * **api:** api update ([#88](https://github.com/optechai/node-sdk/issues/88)) ([1064286](https://github.com/optechai/node-sdk/commit/10642868394250a1cd542fbd448aa638896df5f7))
578
- * **api:** api update ([#90](https://github.com/optechai/node-sdk/issues/90)) ([6951b44](https://github.com/optechai/node-sdk/commit/6951b443591763648a0db529075c8ec7882313f0))
579
- * **api:** manual updates / ignore endpoints ([#89](https://github.com/optechai/node-sdk/issues/89)) ([a68b265](https://github.com/optechai/node-sdk/commit/a68b26515443db2c9522f5d6ad8e0c56ccfac5b0))
580
-
581
- ## 0.3.2 (2024-11-15)
582
-
583
- Full Changelog: [v0.3.1...v0.3.2](https://github.com/optechai/node-sdk/compare/v0.3.1...v0.3.2)
584
-
585
- ### Chores
586
-
587
- * **internal:** version bump ([#80](https://github.com/optechai/node-sdk/issues/80)) ([769ddc7](https://github.com/optechai/node-sdk/commit/769ddc76f3ded51a5615e29ed44d8782f5246a8b))
588
- * rebuild project due to codegen change ([#83](https://github.com/optechai/node-sdk/issues/83)) ([491f0d8](https://github.com/optechai/node-sdk/commit/491f0d82637f8ab76db9c8236b8f4ed2d099d0a6))
589
- * tweak docs example ([302c7e0](https://github.com/optechai/node-sdk/commit/302c7e0a489055456e01adf22d163ed6059135e9))
590
-
591
- ## 0.3.1 (2024-11-14)
592
-
593
- Full Changelog: [v0.3.0...v0.3.1](https://github.com/optechai/node-sdk/compare/v0.3.0...v0.3.1)
594
-
595
- ### Features
596
-
597
- * **api:** api update ([#75](https://github.com/optechai/node-sdk/issues/75)) ([108e553](https://github.com/optechai/node-sdk/commit/108e55335bea22bc946e43fd7661fd77cafa7d59))
598
- * **api:** api update ([#78](https://github.com/optechai/node-sdk/issues/78)) ([6009b30](https://github.com/optechai/node-sdk/commit/6009b30741c6835942cc1886f5ca9aa53df2e7f0))
599
- * **api:** api update ([#79](https://github.com/optechai/node-sdk/issues/79)) ([381205e](https://github.com/optechai/node-sdk/commit/381205e424f2ea33c6d13da2342d431153319e56))
600
-
601
-
602
- ### Bug Fixes
603
-
604
- * add poll ([22f1f28](https://github.com/optechai/node-sdk/commit/22f1f287ba8383b5c129aa7029c36d8a46389499))
605
-
606
- ## 0.3.0 (2024-11-07)
607
-
608
- Full Changelog: [v0.2.0...v0.3.0](https://github.com/optechai/node-sdk/compare/v0.2.0...v0.3.0)
609
-
610
- ### Features
611
-
612
- * **api:** api update ([#70](https://github.com/optechai/node-sdk/issues/70)) ([c0a94ee](https://github.com/optechai/node-sdk/commit/c0a94ee18502b2e75ebf589751aebac8c320dfcd))
613
- * **api:** fix spec, rename token import ([#72](https://github.com/optechai/node-sdk/issues/72)) ([05f7e25](https://github.com/optechai/node-sdk/commit/05f7e2530ec27260fd864d1de3c4e45e4337ffef))
614
-
615
- ## 0.2.0 (2024-11-07)
616
-
617
- Full Changelog: [v0.1.0...v0.2.0](https://github.com/optechai/node-sdk/compare/v0.1.0...v0.2.0)
618
-
619
- ### Features
620
-
621
- * chore: re-add prettier formatting ([4329850](https://github.com/optechai/node-sdk/commit/4329850f92d35ef676d64c716b1a795756d07f81))
622
- * chore: run format ([4a3a193](https://github.com/optechai/node-sdk/commit/4a3a193d1cf2cecfeab8945970cc95afcab8a9a2))
623
-
624
-
625
- ### Chores
626
-
627
- * **internal:** version bump ([#66](https://github.com/optechai/node-sdk/issues/66)) ([ceeac75](https://github.com/optechai/node-sdk/commit/ceeac75db5f11ed8d763fd1a73e65a0d310b7313))
628
- * little whoopsie ([6ad3de4](https://github.com/optechai/node-sdk/commit/6ad3de4610c7b5639c246fa7e7de3a78ea952089))
629
- * re-add prettier formatting ([fdbaae6](https://github.com/optechai/node-sdk/commit/fdbaae608e3c80f0be78474f2dfba95f7fcb366d))
630
- * run format ([82e0c78](https://github.com/optechai/node-sdk/commit/82e0c7871984c2c3d6812f50008df8866976427f))
631
-
632
-
633
- ### Documentation
634
-
635
- * add example ([115fd30](https://github.com/optechai/node-sdk/commit/115fd30d7b09be6d0bd3836d480fe9ae35c568ba))
636
-
637
- ## 0.1.0 (2024-11-06)
638
-
639
- Full Changelog: [v0.1.0-beta.4...v0.1.0](https://github.com/optechai/node-sdk/compare/v0.1.0-beta.4...v0.1.0)
640
-
641
- ### Features
642
-
643
- * **api:** api update ([#61](https://github.com/optechai/node-sdk/issues/61)) ([73e1cbe](https://github.com/optechai/node-sdk/commit/73e1cbe93af2516a416685314ef04e0165d71a43))
644
-
645
-
646
- ### Bug Fixes
647
-
648
- * **api:** manual updates ([#62](https://github.com/optechai/node-sdk/issues/62)) ([5e39228](https://github.com/optechai/node-sdk/commit/5e39228db2d8eda672d30975f1fc16e1a5578f13))
649
-
650
-
651
- ### Chores
652
-
653
- * **internal:** version bump ([#59](https://github.com/optechai/node-sdk/issues/59)) ([a87f7a8](https://github.com/optechai/node-sdk/commit/a87f7a84d223ad786af7bc57bd8c977e397ba646))
654
-
655
- ## 0.1.0-beta.4 (2024-11-05)
656
-
657
- Full Changelog: [v0.1.0-beta.3...v0.1.0-beta.4](https://github.com/optechai/node-sdk/compare/v0.1.0-beta.3...v0.1.0-beta.4)
658
-
659
- ### Features
660
-
661
- * **api:** api update ([#57](https://github.com/optechai/node-sdk/issues/57)) ([d4df811](https://github.com/optechai/node-sdk/commit/d4df8112ccc239964f720ce7579eacac42033807))
662
-
663
-
664
- ### Chores
665
-
666
- * **internal:** version bump ([#54](https://github.com/optechai/node-sdk/issues/54)) ([87db91f](https://github.com/optechai/node-sdk/commit/87db91fbd67e52ed89fc961c4c276f239bc8404b))
667
-
668
- ## 0.1.0-beta.3 (2024-11-05)
669
-
670
- Full Changelog: [v0.1.0-beta.2...v0.1.0-beta.3](https://github.com/optechai/node-sdk/compare/v0.1.0-beta.2...v0.1.0-beta.3)
671
-
672
- ### Features
673
-
674
- * chore: remove custom runner ([858d6cb](https://github.com/optechai/node-sdk/commit/858d6cb370342f02c305e066d765364f41559568))
675
-
676
-
677
- ### Chores
678
-
679
- * **internal:** version bump ([#51](https://github.com/optechai/node-sdk/issues/51)) ([a13fa42](https://github.com/optechai/node-sdk/commit/a13fa426430b92681081e6a066e3b85a11fd2591))
680
-
681
- ## 0.1.0-beta.2 (2024-11-04)
682
-
683
- Full Changelog: [v0.1.0-beta.1...v0.1.0-beta.2](https://github.com/optechai/node-sdk/compare/v0.1.0-beta.1...v0.1.0-beta.2)
684
-
685
- ### Chores
686
-
687
- * **internal:** version bump ([#48](https://github.com/optechai/node-sdk/issues/48)) ([1f6cf7d](https://github.com/optechai/node-sdk/commit/1f6cf7de5a57381296fde1f73bb2a48cd47ff152))
688
-
689
- ## 0.1.0-beta.1 (2024-11-04)
690
-
691
- Full Changelog: [v0.1.0-alpha.13...v0.1.0-beta.1](https://github.com/optechai/node-sdk/compare/v0.1.0-alpha.13...v0.1.0-beta.1)
692
-
693
- ### Bug Fixes
694
-
695
- * **api:** manual updates ([#46](https://github.com/optechai/node-sdk/issues/46)) ([4d8152d](https://github.com/optechai/node-sdk/commit/4d8152dd020e4d322ab71e78fc7dbd920e31e08c))
696
-
697
-
698
- ### Chores
699
-
700
- * update SDK settings ([#43](https://github.com/optechai/node-sdk/issues/43)) ([c3f8908](https://github.com/optechai/node-sdk/commit/c3f8908963deb21cda480fe348c9b8642e45aeeb))
701
-
702
- ## 0.1.0-alpha.13 (2024-11-01)
703
-
704
- Full Changelog: [v0.1.0-alpha.12...v0.1.0-alpha.13](https://github.com/optechai/node-sdk/compare/v0.1.0-alpha.12...v0.1.0-alpha.13)
705
-
706
- ### Features
707
-
708
- * **api:** api update ([#39](https://github.com/optechai/node-sdk/issues/39)) ([a5781ce](https://github.com/optechai/node-sdk/commit/a5781ced3ed926d7599619775cb0ab73201b05b5))
709
-
710
- ## 0.1.0-alpha.12 (2024-10-31)
711
-
712
- Full Changelog: [v0.1.0-alpha.11...v0.1.0-alpha.12](https://github.com/optechai/node-sdk/compare/v0.1.0-alpha.11...v0.1.0-alpha.12)
713
-
714
- ### Features
715
-
716
- * chore: account for empty body ([1186ba5](https://github.com/optechai/node-sdk/commit/1186ba5e86f3976fc3949cf1e20c52f45561ee8c))
717
- * chore: adjust generated test ([ab4b394](https://github.com/optechai/node-sdk/commit/ab4b39448fced35c60ff9bffbf714dad2b631e2c))
718
- * feat: adjust signature generation to use raw body ([7db7f2f](https://github.com/optechai/node-sdk/commit/7db7f2f9571ff31bd6c84086d8d10aa0a49beda1))
719
-
720
- ## 0.1.0-alpha.11 (2024-10-31)
721
-
722
- Full Changelog: [v0.1.0-alpha.10...v0.1.0-alpha.11](https://github.com/optechai/node-sdk/compare/v0.1.0-alpha.10...v0.1.0-alpha.11)
723
-
724
- ### Features
725
-
726
- * fix: add more refined publish npm to always publish next ([68525e9](https://github.com/optechai/node-sdk/commit/68525e9213d289cf167444232ad0aabd534287aa))
727
-
728
- ## 0.1.0-alpha.10 (2024-10-31)
729
-
730
- Full Changelog: [v0.1.0-alpha.9...v0.1.0-alpha.10](https://github.com/optechai/node-sdk/compare/v0.1.0-alpha.9...v0.1.0-alpha.10)
731
-
732
- ### Features
733
-
734
- * fix: update the way auth headers are constructed ([952d4ed](https://github.com/optechai/node-sdk/commit/952d4ed907c082f37c47b0dac5f5c75889d9d363))
735
-
736
- ## 0.1.0-alpha.9 (2024-10-31)
737
-
738
- Full Changelog: [v0.1.0-alpha.8...v0.1.0-alpha.9](https://github.com/optechai/node-sdk/compare/v0.1.0-alpha.8...v0.1.0-alpha.9)
739
-
740
- ### Bug Fixes
741
-
742
- * **api:** stainless config updates ([#30](https://github.com/optechai/node-sdk/issues/30)) ([e83c14c](https://github.com/optechai/node-sdk/commit/e83c14c123f2c421a922d4bfe26a2ec84223a6d3))
743
-
744
- ## 0.1.0-alpha.8 (2024-10-31)
745
-
746
- Full Changelog: [v0.1.0-alpha.7...v0.1.0-alpha.8](https://github.com/optechai/node-sdk/compare/v0.1.0-alpha.7...v0.1.0-alpha.8)
747
-
748
- ### Features
749
-
750
- * feat: add auth ([3e564ab](https://github.com/optechai/node-sdk/commit/3e564abee9abd0168ec7abf891254d26e3831c55))
751
-
752
- ## 0.1.0-alpha.7 (2024-10-30)
753
-
754
- Full Changelog: [v0.1.0-alpha.6...v0.1.0-alpha.7](https://github.com/optechai/node-sdk/compare/v0.1.0-alpha.6...v0.1.0-alpha.7)
755
-
756
- ### Features
757
-
758
- * **api:** api update ([#25](https://github.com/optechai/node-sdk/issues/25)) ([486a6de](https://github.com/optechai/node-sdk/commit/486a6dee4c9f3f9fab34cc88ec57263667ae2302))
759
-
760
- ## 0.1.0-alpha.6 (2024-10-30)
761
-
762
- Full Changelog: [v0.1.0-alpha.5...v0.1.0-alpha.6](https://github.com/optechai/node-sdk/compare/v0.1.0-alpha.5...v0.1.0-alpha.6)
763
-
764
- ### Features
765
-
766
- * chore: fix no git checks ([b937333](https://github.com/optechai/node-sdk/commit/b937333af237ad5b8e9cca9af68ce5087983d1cd))
767
-
768
- ## 0.1.0-alpha.5 (2024-10-30)
769
-
770
- Full Changelog: [v0.1.0-alpha.4...v0.1.0-alpha.5](https://github.com/optechai/node-sdk/compare/v0.1.0-alpha.4...v0.1.0-alpha.5)
771
-
772
- ### Features
773
-
774
- * **api:** api update ([#20](https://github.com/optechai/node-sdk/issues/20)) ([171a387](https://github.com/optechai/node-sdk/commit/171a387c16ad5b2b54c199c5426382d02b5ae4b5))
775
- * chore: add ubuntu-latest ([b46e897](https://github.com/optechai/node-sdk/commit/b46e897b8c1d186f3c4ca85c6aa679955e7578e2))
776
- * chore: try this ([679bb85](https://github.com/optechai/node-sdk/commit/679bb85b050cc5980ad3a67170a538900b40032f))
777
-
778
- ## 0.1.0-alpha.4 (2024-10-30)
779
-
780
- Full Changelog: [v0.1.0-alpha.3...v0.1.0-alpha.4](https://github.com/optechai/node-sdk/compare/v0.1.0-alpha.3...v0.1.0-alpha.4)
781
-
782
- ### Features
783
-
784
- * chore: try this for publish ([53747b7](https://github.com/optechai/node-sdk/commit/53747b7cb8462a2bee382a5cd582e2dff0dbcdb8))
785
-
786
- ## 0.1.0-alpha.3 (2024-10-30)
787
-
788
- Full Changelog: [v0.1.0-alpha.2...v0.1.0-alpha.3](https://github.com/optechai/node-sdk/compare/v0.1.0-alpha.2...v0.1.0-alpha.3)
789
-
790
- ### Features
791
-
792
- * chore: add base url ([a4f19e1](https://github.com/optechai/node-sdk/commit/a4f19e18cf9298444a21f375d3d6b35582822692))
793
- * chore: format ([12eae60](https://github.com/optechai/node-sdk/commit/12eae60eb0ad49c944bfac52054d940e32ebf8aa))
794
- * chore: further tweak of test ([13c1043](https://github.com/optechai/node-sdk/commit/13c1043da4be0e4817910a12f5f02900aa83f8ee))
795
- * chore: reinstance node-fetch ([c13b575](https://github.com/optechai/node-sdk/commit/c13b5751d2dad94fc2d372fa2bc69264243134e0))
796
- * fix: more type fixes ([5aa5680](https://github.com/optechai/node-sdk/commit/5aa5680fe99cc432e64f419c9ad2f3a975640cb7))
797
- * fix: resolve type errors ([d1c689f](https://github.com/optechai/node-sdk/commit/d1c689f57bdfa8e650cae7e8ce988aa5db05b9c5))
798
- * various codegen changes ([ed11dc6](https://github.com/optechai/node-sdk/commit/ed11dc6b5666384ccd3b7cb9db2d184a8fc4cea4))
799
-
800
-
801
- ### Bug Fixes
802
-
803
- * main branch ([933bfe9](https://github.com/optechai/node-sdk/commit/933bfe984e459281c1e9602695ec898fc9cdab5e))
804
-
805
-
806
- ### Chores
807
-
808
- * update ci/actions ([645e253](https://github.com/optechai/node-sdk/commit/645e253adc9448e5ec9a7f7084d59025886fcb61))
809
-
810
- ## 0.1.0-alpha.2 (2024-10-28)
811
-
812
- Full Changelog: [v0.1.0-alpha.1...v0.1.0-alpha.2](https://github.com/optechai/node-sdk/compare/v0.1.0-alpha.1...v0.1.0-alpha.2)
813
-
814
- ### Features
815
-
816
- * **api:** update via SDK Studio ([#6](https://github.com/optechai/node-sdk/issues/6)) ([3078f36](https://github.com/optechai/node-sdk/commit/3078f360f3957f91352415fa834418c5f8b05b71))
817
- * **api:** update via SDK Studio ([#8](https://github.com/optechai/node-sdk/issues/8)) ([deaf9d5](https://github.com/optechai/node-sdk/commit/deaf9d58eb28691faae681527ec062e29eaa5b9e))
818
-
819
- ## 0.1.0-alpha.1 (2024-10-25)
820
-
821
- Full Changelog: [v0.0.1-alpha.0...v0.1.0-alpha.1](https://github.com/optechai/node-sdk/compare/v0.0.1-alpha.0...v0.1.0-alpha.1)
822
-
823
- ### Features
824
-
825
- * **api:** api update ([7d17dac](https://github.com/optechai/node-sdk/commit/7d17dac88281cbcdaee641610f469ba6dafa3c78))
826
- * **api:** api update ([4c4f7be](https://github.com/optechai/node-sdk/commit/4c4f7be5cf28e9bb19e875d42998b3c68827159e))
827
- * **api:** api update ([#1](https://github.com/optechai/node-sdk/issues/1)) ([49ac420](https://github.com/optechai/node-sdk/commit/49ac420cb091100de72c4be90b9e0e1bc2707330))
828
- * **api:** update via SDK Studio ([314dd07](https://github.com/optechai/node-sdk/commit/314dd07d0dd1b098f4a7c3d8863893ed18cb059d))
829
-
830
-
831
- ### Chores
832
-
833
- * go live ([#4](https://github.com/optechai/node-sdk/issues/4)) ([61188c0](https://github.com/optechai/node-sdk/commit/61188c0f7612cc21cc97d535296d119b19947a1b))
834
- * update SDK settings ([bf60384](https://github.com/optechai/node-sdk/commit/bf6038486cf2767287c54354d1ba6c2e0c4f99a1))