@mixedbread/sdk 0.1.0-alpha.9 → 0.2.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 (103) hide show
  1. package/CHANGELOG.md +391 -0
  2. package/README.md +4 -4
  3. package/_shims/index.d.ts +2 -0
  4. package/_shims/index.js +5 -1
  5. package/_shims/index.mjs +5 -1
  6. package/core.d.ts +11 -0
  7. package/core.d.ts.map +1 -1
  8. package/core.js +5 -2
  9. package/core.js.map +1 -1
  10. package/core.mjs +6 -3
  11. package/core.mjs.map +1 -1
  12. package/index.d.mts +28 -7
  13. package/index.d.ts +28 -7
  14. package/index.d.ts.map +1 -1
  15. package/index.js +32 -8
  16. package/index.js.map +1 -1
  17. package/index.mjs +32 -8
  18. package/index.mjs.map +1 -1
  19. package/package.json +8 -29
  20. package/resources/embeddings.d.ts +45 -0
  21. package/resources/embeddings.d.ts.map +1 -0
  22. package/resources/embeddings.js +20 -0
  23. package/resources/embeddings.js.map +1 -0
  24. package/resources/embeddings.mjs +16 -0
  25. package/resources/embeddings.mjs.map +1 -0
  26. package/resources/extractions/content.d.ts +2 -2
  27. package/resources/extractions/content.d.ts.map +1 -1
  28. package/resources/extractions/jobs.d.ts +3 -3
  29. package/resources/extractions/jobs.d.ts.map +1 -1
  30. package/resources/extractions/schema.d.ts +5 -5
  31. package/resources/extractions/schema.d.ts.map +1 -1
  32. package/resources/extractions.d.ts +2 -0
  33. package/resources/extractions.d.ts.map +1 -0
  34. package/resources/extractions.js +19 -0
  35. package/resources/extractions.js.map +1 -0
  36. package/resources/extractions.mjs +3 -0
  37. package/resources/extractions.mjs.map +1 -0
  38. package/resources/index.d.ts +2 -1
  39. package/resources/index.d.ts.map +1 -1
  40. package/resources/index.js +3 -1
  41. package/resources/index.js.map +1 -1
  42. package/resources/index.mjs +1 -0
  43. package/resources/index.mjs.map +1 -1
  44. package/resources/parsing/jobs.d.ts +8 -0
  45. package/resources/parsing/jobs.d.ts.map +1 -1
  46. package/resources/parsing/jobs.js.map +1 -1
  47. package/resources/parsing/jobs.mjs.map +1 -1
  48. package/resources/parsing.d.ts +2 -0
  49. package/resources/parsing.d.ts.map +1 -0
  50. package/resources/parsing.js +19 -0
  51. package/resources/parsing.js.map +1 -0
  52. package/resources/parsing.mjs +3 -0
  53. package/resources/parsing.mjs.map +1 -0
  54. package/resources/shared.d.ts +14 -0
  55. package/resources/shared.d.ts.map +1 -1
  56. package/resources/top-level.d.ts +174 -1
  57. package/resources/top-level.d.ts.map +1 -1
  58. package/resources/vector-stores/files.d.ts +12 -0
  59. package/resources/vector-stores/files.d.ts.map +1 -1
  60. package/resources/vector-stores/files.js.map +1 -1
  61. package/resources/vector-stores/files.mjs.map +1 -1
  62. package/resources/vector-stores/vector-stores.d.ts +4 -0
  63. package/resources/vector-stores/vector-stores.d.ts.map +1 -1
  64. package/resources/vector-stores/vector-stores.js.map +1 -1
  65. package/resources/vector-stores/vector-stores.mjs.map +1 -1
  66. package/resources/vector-stores.d.ts +2 -0
  67. package/resources/vector-stores.d.ts.map +1 -0
  68. package/resources/vector-stores.js +19 -0
  69. package/resources/vector-stores.js.map +1 -0
  70. package/resources/vector-stores.mjs +3 -0
  71. package/resources/vector-stores.mjs.map +1 -0
  72. package/resources.d.ts +2 -0
  73. package/resources.d.ts.map +1 -0
  74. package/resources.js +18 -0
  75. package/resources.js.map +1 -0
  76. package/resources.mjs +2 -0
  77. package/resources.mjs.map +1 -0
  78. package/src/_shims/index.d.ts +2 -0
  79. package/src/_shims/index.js +5 -1
  80. package/src/_shims/index.mjs +5 -1
  81. package/src/core.ts +23 -4
  82. package/src/index.ts +72 -21
  83. package/src/resources/embeddings.ts +67 -0
  84. package/src/resources/extractions/content.ts +2 -2
  85. package/src/resources/extractions/jobs.ts +3 -3
  86. package/src/resources/extractions/schema.ts +5 -5
  87. package/src/resources/extractions.ts +3 -0
  88. package/src/resources/index.ts +10 -1
  89. package/src/resources/parsing/jobs.ts +10 -0
  90. package/src/resources/parsing.ts +3 -0
  91. package/src/resources/shared.ts +17 -0
  92. package/src/resources/top-level.ts +260 -1
  93. package/src/resources/vector-stores/files.ts +15 -0
  94. package/src/resources/vector-stores/vector-stores.ts +5 -0
  95. package/src/resources/vector-stores.ts +3 -0
  96. package/src/resources.ts +1 -0
  97. package/src/version.ts +1 -1
  98. package/version.d.ts +1 -1
  99. package/version.d.ts.map +1 -1
  100. package/version.js +1 -1
  101. package/version.js.map +1 -1
  102. package/version.mjs +1 -1
  103. package/version.mjs.map +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,396 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.2.0 (2025-04-03)
4
+
5
+ Full Changelog: [v0.1.0...v0.2.0](https://github.com/mixedbread-ai/mixedbread-ts/compare/v0.1.0...v0.2.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** update via SDK Studio ([#162](https://github.com/mixedbread-ai/mixedbread-ts/issues/162)) ([a688811](https://github.com/mixedbread-ai/mixedbread-ts/commit/a688811eec978decb452ede34111a9e851a351f3))
10
+
11
+ ## 0.1.0 (2025-04-03)
12
+
13
+ Full Changelog: [v0.1.0-alpha.23...v0.1.0](https://github.com/mixedbread-ai/mixedbread-ts/compare/v0.1.0-alpha.23...v0.1.0)
14
+
15
+ ### Features
16
+
17
+ * **api:** update via SDK Studio ([#159](https://github.com/mixedbread-ai/mixedbread-ts/issues/159)) ([88daa77](https://github.com/mixedbread-ai/mixedbread-ts/commit/88daa773184e0b8b90deab97a2fa366883ef4909))
18
+
19
+ ## 0.1.0-alpha.23 (2025-04-03)
20
+
21
+ Full Changelog: [v0.1.0-alpha.22...v0.1.0-alpha.23](https://github.com/mixedbread-ai/mixedbread-ts/compare/v0.1.0-alpha.22...v0.1.0-alpha.23)
22
+
23
+ ### Features
24
+
25
+ * add SKIP_BREW env var to ./scripts/bootstrap ([#106](https://github.com/mixedbread-ai/mixedbread-ts/issues/106)) ([38ade8c](https://github.com/mixedbread-ai/mixedbread-ts/commit/38ade8c9a1ac0dae63948ef6a8980b5f743eb971))
26
+ * add upload and polling support ([#90](https://github.com/mixedbread-ai/mixedbread-ts/issues/90)) ([f280bdf](https://github.com/mixedbread-ai/mixedbread-ts/commit/f280bdfdacabd26cf1b671c1ff0df4524c293675))
27
+ * **api:** update via SDK Studio ([bcf89e0](https://github.com/mixedbread-ai/mixedbread-ts/commit/bcf89e0218cc0e36a847d5c7e3d619c8855f09ee))
28
+ * **api:** update via SDK Studio ([7e8d9ed](https://github.com/mixedbread-ai/mixedbread-ts/commit/7e8d9ed8aba28c03a82f528791c55d3def09c73a))
29
+ * **api:** update via SDK Studio ([f185f78](https://github.com/mixedbread-ai/mixedbread-ts/commit/f185f78efce756c7907a10929f430f9940be1799))
30
+ * **api:** update via SDK Studio ([d3026f3](https://github.com/mixedbread-ai/mixedbread-ts/commit/d3026f34bbbc4902876be26a18b7036ba7e3c041))
31
+ * **api:** update via SDK Studio ([bc02c72](https://github.com/mixedbread-ai/mixedbread-ts/commit/bc02c728e06225e64647409d1f1f2fcb83d40e31))
32
+ * **api:** update via SDK Studio ([59f45f0](https://github.com/mixedbread-ai/mixedbread-ts/commit/59f45f02e40f347b967673ea443526949719e214))
33
+ * **api:** update via SDK Studio ([f85a7cd](https://github.com/mixedbread-ai/mixedbread-ts/commit/f85a7cd5d064913721860d9490532fba5050babc))
34
+ * **api:** update via SDK Studio ([6e64ebf](https://github.com/mixedbread-ai/mixedbread-ts/commit/6e64ebfccab3a4f9cb65e7635989498dc1a1a8c8))
35
+ * **api:** update via SDK Studio ([8d16fdb](https://github.com/mixedbread-ai/mixedbread-ts/commit/8d16fdb4c4975b94f0f09818f5176233c7f4d9a7))
36
+ * **api:** update via SDK Studio ([c41356c](https://github.com/mixedbread-ai/mixedbread-ts/commit/c41356c8370c8ed5962227d104fd444f8cf7f9c6))
37
+ * **api:** update via SDK Studio ([b64471a](https://github.com/mixedbread-ai/mixedbread-ts/commit/b64471a60ffe70bc2ef003387e7a679100ced9a5))
38
+ * **api:** update via SDK Studio ([202fc6b](https://github.com/mixedbread-ai/mixedbread-ts/commit/202fc6b41b760e5673247386c65cb605949695f2))
39
+ * **api:** update via SDK Studio ([d73a27e](https://github.com/mixedbread-ai/mixedbread-ts/commit/d73a27e70d9613289519538c0786208a0a697e41))
40
+ * **api:** update via SDK Studio ([842aae8](https://github.com/mixedbread-ai/mixedbread-ts/commit/842aae80032e93470a32acf6ddb21eea0f1d72de))
41
+ * **api:** update via SDK Studio ([8be8dd3](https://github.com/mixedbread-ai/mixedbread-ts/commit/8be8dd37f2b256167859fc7325b0dacc40955280))
42
+ * **api:** update via SDK Studio ([1d2d97b](https://github.com/mixedbread-ai/mixedbread-ts/commit/1d2d97b2911de73c5e7e33584616ecd6ab00a699))
43
+ * **api:** update via SDK Studio ([ac00668](https://github.com/mixedbread-ai/mixedbread-ts/commit/ac006688e0f2ab1139179b93b3159ecf6ce2bb05))
44
+ * **api:** update via SDK Studio ([692f899](https://github.com/mixedbread-ai/mixedbread-ts/commit/692f899d027cc326639b94f970151a04d36addc1))
45
+ * **api:** update via SDK Studio ([d05c4aa](https://github.com/mixedbread-ai/mixedbread-ts/commit/d05c4aa4662b5b2d1cba0c262a5784b288481ea4))
46
+ * **api:** update via SDK Studio ([25fa28b](https://github.com/mixedbread-ai/mixedbread-ts/commit/25fa28bc675e2408fa504728be8e54f364d6fde2))
47
+ * **api:** update via SDK Studio ([e4aaa60](https://github.com/mixedbread-ai/mixedbread-ts/commit/e4aaa60c10f0f7e1934df187584ec56a6e18088e))
48
+ * **api:** update via SDK Studio ([9c52f8e](https://github.com/mixedbread-ai/mixedbread-ts/commit/9c52f8ea022c339a3fab220c93d76d3fb3aed2b8))
49
+ * **api:** update via SDK Studio ([4352e01](https://github.com/mixedbread-ai/mixedbread-ts/commit/4352e018d18800803413abbd7c6ae4a84cc19789))
50
+ * **api:** update via SDK Studio ([7df8331](https://github.com/mixedbread-ai/mixedbread-ts/commit/7df833128ba477410070b9f7eba7a114665f4a38))
51
+ * **api:** update via SDK Studio ([fd60fcc](https://github.com/mixedbread-ai/mixedbread-ts/commit/fd60fcc1d8a91e94955c35dfa5940939997cb917))
52
+ * **api:** update via SDK Studio ([#102](https://github.com/mixedbread-ai/mixedbread-ts/issues/102)) ([6d6c854](https://github.com/mixedbread-ai/mixedbread-ts/commit/6d6c854cac205772ce1e4449713adb6416d822bd))
53
+ * **api:** update via SDK Studio ([#104](https://github.com/mixedbread-ai/mixedbread-ts/issues/104)) ([dbdaff5](https://github.com/mixedbread-ai/mixedbread-ts/commit/dbdaff5dd3b1c61dd6acf991fb18fc2ffc9d2944))
54
+ * **api:** update via SDK Studio ([#109](https://github.com/mixedbread-ai/mixedbread-ts/issues/109)) ([086653f](https://github.com/mixedbread-ai/mixedbread-ts/commit/086653f61ac55eb7ff4a2fdef504d8e215b18877))
55
+ * **api:** update via SDK Studio ([#110](https://github.com/mixedbread-ai/mixedbread-ts/issues/110)) ([a3100c8](https://github.com/mixedbread-ai/mixedbread-ts/commit/a3100c86966313c3223eaa117dacc16107a7a0dd))
56
+ * **api:** update via SDK Studio ([#12](https://github.com/mixedbread-ai/mixedbread-ts/issues/12)) ([1f3e324](https://github.com/mixedbread-ai/mixedbread-ts/commit/1f3e3240ea3357eed38328fe701b52c2f83f0a5b))
57
+ * **api:** update via SDK Studio ([#12](https://github.com/mixedbread-ai/mixedbread-ts/issues/12)) ([48f2579](https://github.com/mixedbread-ai/mixedbread-ts/commit/48f2579b3888c2c553a207f725ed8c99bcf3b794))
58
+ * **api:** update via SDK Studio ([#124](https://github.com/mixedbread-ai/mixedbread-ts/issues/124)) ([c87bd1f](https://github.com/mixedbread-ai/mixedbread-ts/commit/c87bd1f598bc507a02f7a4090e64a20f0a02a2ff))
59
+ * **api:** update via SDK Studio ([#127](https://github.com/mixedbread-ai/mixedbread-ts/issues/127)) ([52465db](https://github.com/mixedbread-ai/mixedbread-ts/commit/52465dbe297509514797584bafec1b5dc26a5e24))
60
+ * **api:** update via SDK Studio ([#13](https://github.com/mixedbread-ai/mixedbread-ts/issues/13)) ([67bd9fe](https://github.com/mixedbread-ai/mixedbread-ts/commit/67bd9fedaff62a3c39bfa94b05710d7b940bf87c))
61
+ * **api:** update via SDK Studio ([#13](https://github.com/mixedbread-ai/mixedbread-ts/issues/13)) ([8d0d8f4](https://github.com/mixedbread-ai/mixedbread-ts/commit/8d0d8f4c9d8577b7288dac7bbe10ec9cc8ada551))
62
+ * **api:** update via SDK Studio ([#136](https://github.com/mixedbread-ai/mixedbread-ts/issues/136)) ([e188c8e](https://github.com/mixedbread-ai/mixedbread-ts/commit/e188c8ebae474d7437e071f312a868cb8e9eb1a6))
63
+ * **api:** update via SDK Studio ([#139](https://github.com/mixedbread-ai/mixedbread-ts/issues/139)) ([bfd9f66](https://github.com/mixedbread-ai/mixedbread-ts/commit/bfd9f6699336f7373f38090f1a20ce8b23addbdf))
64
+ * **api:** update via SDK Studio ([#14](https://github.com/mixedbread-ai/mixedbread-ts/issues/14)) ([3ca388e](https://github.com/mixedbread-ai/mixedbread-ts/commit/3ca388e56bee4a5545c4f93320a11511ec9d1e3a))
65
+ * **api:** update via SDK Studio ([#14](https://github.com/mixedbread-ai/mixedbread-ts/issues/14)) ([d398bde](https://github.com/mixedbread-ai/mixedbread-ts/commit/d398bde95327e3b10ca858c7ce0dadd51c54d397))
66
+ * **api:** update via SDK Studio ([#142](https://github.com/mixedbread-ai/mixedbread-ts/issues/142)) ([bd41df5](https://github.com/mixedbread-ai/mixedbread-ts/commit/bd41df5f59fa93056b1c05a92de3d582574bf5bf))
67
+ * **api:** update via SDK Studio ([#144](https://github.com/mixedbread-ai/mixedbread-ts/issues/144)) ([7cc740c](https://github.com/mixedbread-ai/mixedbread-ts/commit/7cc740c98ac0da4573a40eb175676f9761777646))
68
+ * **api:** update via SDK Studio ([#145](https://github.com/mixedbread-ai/mixedbread-ts/issues/145)) ([22cb00f](https://github.com/mixedbread-ai/mixedbread-ts/commit/22cb00f008cdcd2889354955e522fadf8fb7518a))
69
+ * **api:** update via SDK Studio ([#146](https://github.com/mixedbread-ai/mixedbread-ts/issues/146)) ([6b73660](https://github.com/mixedbread-ai/mixedbread-ts/commit/6b736606f8545813dbdb0a829d32d7c7210a6549))
70
+ * **api:** update via SDK Studio ([#149](https://github.com/mixedbread-ai/mixedbread-ts/issues/149)) ([9bf0f95](https://github.com/mixedbread-ai/mixedbread-ts/commit/9bf0f95c566c9b6274b26b18aa8accdc6fe7b7b2))
71
+ * **api:** update via SDK Studio ([#15](https://github.com/mixedbread-ai/mixedbread-ts/issues/15)) ([3eb02c2](https://github.com/mixedbread-ai/mixedbread-ts/commit/3eb02c2b3dbf393023acec92621e24265e937218))
72
+ * **api:** update via SDK Studio ([#15](https://github.com/mixedbread-ai/mixedbread-ts/issues/15)) ([e802e36](https://github.com/mixedbread-ai/mixedbread-ts/commit/e802e36324fca1064d2f4f1948b41612837a68be))
73
+ * **api:** update via SDK Studio ([#151](https://github.com/mixedbread-ai/mixedbread-ts/issues/151)) ([e62b0a8](https://github.com/mixedbread-ai/mixedbread-ts/commit/e62b0a8c96675dbb0e50009a9bbfa0e1e754422e))
74
+ * **api:** update via SDK Studio ([#156](https://github.com/mixedbread-ai/mixedbread-ts/issues/156)) ([272cd42](https://github.com/mixedbread-ai/mixedbread-ts/commit/272cd422a6b9fbf51690baff51a986062e03bb1f))
75
+ * **api:** update via SDK Studio ([#16](https://github.com/mixedbread-ai/mixedbread-ts/issues/16)) ([fea9877](https://github.com/mixedbread-ai/mixedbread-ts/commit/fea9877ab387f28aedd7ec9be80d9a66f03a5a62))
76
+ * **api:** update via SDK Studio ([#16](https://github.com/mixedbread-ai/mixedbread-ts/issues/16)) ([545abc5](https://github.com/mixedbread-ai/mixedbread-ts/commit/545abc56a0fb82e52cb2687753d3361873a72818))
77
+ * **api:** update via SDK Studio ([#17](https://github.com/mixedbread-ai/mixedbread-ts/issues/17)) ([4794f71](https://github.com/mixedbread-ai/mixedbread-ts/commit/4794f711ce5602e34b714f8ad248e91a71e29763))
78
+ * **api:** update via SDK Studio ([#17](https://github.com/mixedbread-ai/mixedbread-ts/issues/17)) ([49f9aec](https://github.com/mixedbread-ai/mixedbread-ts/commit/49f9aecaeb5f9906584581d3987cc805407a295e))
79
+ * **api:** update via SDK Studio ([#18](https://github.com/mixedbread-ai/mixedbread-ts/issues/18)) ([36fb2f6](https://github.com/mixedbread-ai/mixedbread-ts/commit/36fb2f685e54442eebe8f3869a3211d2f52a227f))
80
+ * **api:** update via SDK Studio ([#18](https://github.com/mixedbread-ai/mixedbread-ts/issues/18)) ([076b006](https://github.com/mixedbread-ai/mixedbread-ts/commit/076b0064228e4ebf60461a3e65077268f6bc2cce))
81
+ * **api:** update via SDK Studio ([#19](https://github.com/mixedbread-ai/mixedbread-ts/issues/19)) ([711e6f1](https://github.com/mixedbread-ai/mixedbread-ts/commit/711e6f14e08abd5f4d5255fefec9b88a3a9e72fe))
82
+ * **api:** update via SDK Studio ([#19](https://github.com/mixedbread-ai/mixedbread-ts/issues/19)) ([c687999](https://github.com/mixedbread-ai/mixedbread-ts/commit/c6879996532e88f37f29419b3307535f2eb98691))
83
+ * **api:** update via SDK Studio ([#20](https://github.com/mixedbread-ai/mixedbread-ts/issues/20)) ([5a3a09b](https://github.com/mixedbread-ai/mixedbread-ts/commit/5a3a09bbc6e61487940850c0308f7f52fdd2806e))
84
+ * **api:** update via SDK Studio ([#20](https://github.com/mixedbread-ai/mixedbread-ts/issues/20)) ([aa40cda](https://github.com/mixedbread-ai/mixedbread-ts/commit/aa40cdaa87d167feae8adc0162f2fc835756d314))
85
+ * **api:** update via SDK Studio ([#21](https://github.com/mixedbread-ai/mixedbread-ts/issues/21)) ([072fd22](https://github.com/mixedbread-ai/mixedbread-ts/commit/072fd22ae6b3bd82f268b3123e80972bc79ceeee))
86
+ * **api:** update via SDK Studio ([#21](https://github.com/mixedbread-ai/mixedbread-ts/issues/21)) ([76d8d44](https://github.com/mixedbread-ai/mixedbread-ts/commit/76d8d44ddad074705d113532869733d1fa003bb7))
87
+ * **api:** update via SDK Studio ([#22](https://github.com/mixedbread-ai/mixedbread-ts/issues/22)) ([3a6e612](https://github.com/mixedbread-ai/mixedbread-ts/commit/3a6e61273be0129d038582fdd62ab776ae8bcab3))
88
+ * **api:** update via SDK Studio ([#22](https://github.com/mixedbread-ai/mixedbread-ts/issues/22)) ([e728359](https://github.com/mixedbread-ai/mixedbread-ts/commit/e728359c07ddc40ec74b839a8ab1d86dd2c1b833))
89
+ * **api:** update via SDK Studio ([#23](https://github.com/mixedbread-ai/mixedbread-ts/issues/23)) ([e58e2c2](https://github.com/mixedbread-ai/mixedbread-ts/commit/e58e2c2a966b725c2e9afd3b0c7ca518128e8ccb))
90
+ * **api:** update via SDK Studio ([#23](https://github.com/mixedbread-ai/mixedbread-ts/issues/23)) ([2f285d3](https://github.com/mixedbread-ai/mixedbread-ts/commit/2f285d33e2877e992abe248d360ce5c7e1705975))
91
+ * **api:** update via SDK Studio ([#24](https://github.com/mixedbread-ai/mixedbread-ts/issues/24)) ([78be684](https://github.com/mixedbread-ai/mixedbread-ts/commit/78be684d8939f8ebf44f641ee2c8abc1b1b93d2b))
92
+ * **api:** update via SDK Studio ([#24](https://github.com/mixedbread-ai/mixedbread-ts/issues/24)) ([ab2a1a8](https://github.com/mixedbread-ai/mixedbread-ts/commit/ab2a1a82d98bf768ce9b6cfae998dac37c62b8ec))
93
+ * **api:** update via SDK Studio ([#25](https://github.com/mixedbread-ai/mixedbread-ts/issues/25)) ([69d3980](https://github.com/mixedbread-ai/mixedbread-ts/commit/69d3980436d86fccdbd830ca5f176395d9618722))
94
+ * **api:** update via SDK Studio ([#25](https://github.com/mixedbread-ai/mixedbread-ts/issues/25)) ([0b4f3b8](https://github.com/mixedbread-ai/mixedbread-ts/commit/0b4f3b81ff75136a5b420a5c670d647847dcce0d))
95
+ * **api:** update via SDK Studio ([#26](https://github.com/mixedbread-ai/mixedbread-ts/issues/26)) ([0b354c4](https://github.com/mixedbread-ai/mixedbread-ts/commit/0b354c49121c980397a2aec76161b98b648c6abf))
96
+ * **api:** update via SDK Studio ([#26](https://github.com/mixedbread-ai/mixedbread-ts/issues/26)) ([e7d6e03](https://github.com/mixedbread-ai/mixedbread-ts/commit/e7d6e032ed5e453dc7a5ce9d523dba5efbb5d119))
97
+ * **api:** update via SDK Studio ([#27](https://github.com/mixedbread-ai/mixedbread-ts/issues/27)) ([54a6be4](https://github.com/mixedbread-ai/mixedbread-ts/commit/54a6be4cc538b93ac19cbf4f23916524aa1accfd))
98
+ * **api:** update via SDK Studio ([#27](https://github.com/mixedbread-ai/mixedbread-ts/issues/27)) ([b6db9e6](https://github.com/mixedbread-ai/mixedbread-ts/commit/b6db9e66c3040fd5313ee36b9e970e4948a52783))
99
+ * **api:** update via SDK Studio ([#28](https://github.com/mixedbread-ai/mixedbread-ts/issues/28)) ([3f63072](https://github.com/mixedbread-ai/mixedbread-ts/commit/3f63072b210c02e887f13cde9eee4cb21d05182e))
100
+ * **api:** update via SDK Studio ([#28](https://github.com/mixedbread-ai/mixedbread-ts/issues/28)) ([151bed2](https://github.com/mixedbread-ai/mixedbread-ts/commit/151bed201975c79cc0351ace27c0fbc8bf7d7a68))
101
+ * **api:** update via SDK Studio ([#29](https://github.com/mixedbread-ai/mixedbread-ts/issues/29)) ([22d05df](https://github.com/mixedbread-ai/mixedbread-ts/commit/22d05dfccfc6bdf3d62b129529e030bd5e788ad9))
102
+ * **api:** update via SDK Studio ([#29](https://github.com/mixedbread-ai/mixedbread-ts/issues/29)) ([91d6fd6](https://github.com/mixedbread-ai/mixedbread-ts/commit/91d6fd60108212155315f45c1a79b32814754172))
103
+ * **api:** update via SDK Studio ([#30](https://github.com/mixedbread-ai/mixedbread-ts/issues/30)) ([25adb32](https://github.com/mixedbread-ai/mixedbread-ts/commit/25adb3230920a6151b23780ade7fa7ef00488f38))
104
+ * **api:** update via SDK Studio ([#30](https://github.com/mixedbread-ai/mixedbread-ts/issues/30)) ([7066aeb](https://github.com/mixedbread-ai/mixedbread-ts/commit/7066aeb0b187ec9846754f3b0bc5f8f627e9f7de))
105
+ * **api:** update via SDK Studio ([#31](https://github.com/mixedbread-ai/mixedbread-ts/issues/31)) ([f7ae807](https://github.com/mixedbread-ai/mixedbread-ts/commit/f7ae807bf4aa4f30206375fdff024d40631f9059))
106
+ * **api:** update via SDK Studio ([#31](https://github.com/mixedbread-ai/mixedbread-ts/issues/31)) ([38e1de3](https://github.com/mixedbread-ai/mixedbread-ts/commit/38e1de37c65b81cce24049a817f4032977e605ff))
107
+ * **api:** update via SDK Studio ([#33](https://github.com/mixedbread-ai/mixedbread-ts/issues/33)) ([4bee7f5](https://github.com/mixedbread-ai/mixedbread-ts/commit/4bee7f5892e857ace4a2e9a142a46bcf93b8baf9))
108
+ * **api:** update via SDK Studio ([#33](https://github.com/mixedbread-ai/mixedbread-ts/issues/33)) ([3c6e976](https://github.com/mixedbread-ai/mixedbread-ts/commit/3c6e97691a44a1575f256dbcce1cd434dc1645c1))
109
+ * **api:** update via SDK Studio ([#35](https://github.com/mixedbread-ai/mixedbread-ts/issues/35)) ([5a548f4](https://github.com/mixedbread-ai/mixedbread-ts/commit/5a548f4dcd4c7fdbb7400f59119358cd127e1bb3))
110
+ * **api:** update via SDK Studio ([#35](https://github.com/mixedbread-ai/mixedbread-ts/issues/35)) ([11a40d7](https://github.com/mixedbread-ai/mixedbread-ts/commit/11a40d7799259e98d1794227c359785211540075))
111
+ * **api:** update via SDK Studio ([#36](https://github.com/mixedbread-ai/mixedbread-ts/issues/36)) ([60d97b6](https://github.com/mixedbread-ai/mixedbread-ts/commit/60d97b62de33bf5e52ec7ddeedb11ac44d33b129))
112
+ * **api:** update via SDK Studio ([#36](https://github.com/mixedbread-ai/mixedbread-ts/issues/36)) ([ebe12b7](https://github.com/mixedbread-ai/mixedbread-ts/commit/ebe12b7ac5f7f021f95232e7978198cb95be3c74))
113
+ * **api:** update via SDK Studio ([#37](https://github.com/mixedbread-ai/mixedbread-ts/issues/37)) ([282af2d](https://github.com/mixedbread-ai/mixedbread-ts/commit/282af2daf79b4e7f65745bf6afa9ac0f70ca5527))
114
+ * **api:** update via SDK Studio ([#37](https://github.com/mixedbread-ai/mixedbread-ts/issues/37)) ([31d7d42](https://github.com/mixedbread-ai/mixedbread-ts/commit/31d7d42a504f2d9d21b9ff5add3e65d57765c5fb))
115
+ * **api:** update via SDK Studio ([#38](https://github.com/mixedbread-ai/mixedbread-ts/issues/38)) ([8da3fc7](https://github.com/mixedbread-ai/mixedbread-ts/commit/8da3fc7296529c5f016832231baa68fc7172d790))
116
+ * **api:** update via SDK Studio ([#38](https://github.com/mixedbread-ai/mixedbread-ts/issues/38)) ([96d25f2](https://github.com/mixedbread-ai/mixedbread-ts/commit/96d25f214599b20e13fd6f86334c966b7b86d6b4))
117
+ * **api:** update via SDK Studio ([#39](https://github.com/mixedbread-ai/mixedbread-ts/issues/39)) ([df9734f](https://github.com/mixedbread-ai/mixedbread-ts/commit/df9734f0aba464d8ea610429afce585156b88063))
118
+ * **api:** update via SDK Studio ([#39](https://github.com/mixedbread-ai/mixedbread-ts/issues/39)) ([41fd10a](https://github.com/mixedbread-ai/mixedbread-ts/commit/41fd10a85e238e6d4fed929d9c8685bf39007ab0))
119
+ * **api:** update via SDK Studio ([#41](https://github.com/mixedbread-ai/mixedbread-ts/issues/41)) ([8e8b9ce](https://github.com/mixedbread-ai/mixedbread-ts/commit/8e8b9ce6c2314cc74dc2d19944330cd244e56800))
120
+ * **api:** update via SDK Studio ([#41](https://github.com/mixedbread-ai/mixedbread-ts/issues/41)) ([79e0e6e](https://github.com/mixedbread-ai/mixedbread-ts/commit/79e0e6e926889fa0c88c0e975f01d715f63eb854))
121
+ * **api:** update via SDK Studio ([#43](https://github.com/mixedbread-ai/mixedbread-ts/issues/43)) ([d916da1](https://github.com/mixedbread-ai/mixedbread-ts/commit/d916da1f502da90ac3e34979ecc411338b6a1915))
122
+ * **api:** update via SDK Studio ([#43](https://github.com/mixedbread-ai/mixedbread-ts/issues/43)) ([a906ac0](https://github.com/mixedbread-ai/mixedbread-ts/commit/a906ac05c4f6bb5f1e2989c6d3fd138f350322b4))
123
+ * **api:** update via SDK Studio ([#44](https://github.com/mixedbread-ai/mixedbread-ts/issues/44)) ([2e2f74a](https://github.com/mixedbread-ai/mixedbread-ts/commit/2e2f74a928cfd3a5f368e71adc8054c170a3e896))
124
+ * **api:** update via SDK Studio ([#44](https://github.com/mixedbread-ai/mixedbread-ts/issues/44)) ([7329386](https://github.com/mixedbread-ai/mixedbread-ts/commit/73293864e1b4a96125efc9f403ed82c873d35b99))
125
+ * **api:** update via SDK Studio ([#45](https://github.com/mixedbread-ai/mixedbread-ts/issues/45)) ([7b8df8e](https://github.com/mixedbread-ai/mixedbread-ts/commit/7b8df8ea747b379716bd4df7e446dd6086e043a6))
126
+ * **api:** update via SDK Studio ([#45](https://github.com/mixedbread-ai/mixedbread-ts/issues/45)) ([7b7fe62](https://github.com/mixedbread-ai/mixedbread-ts/commit/7b7fe628ca5cb97f99935679110ad43a8b61c3af))
127
+ * **api:** update via SDK Studio ([#46](https://github.com/mixedbread-ai/mixedbread-ts/issues/46)) ([397aa8e](https://github.com/mixedbread-ai/mixedbread-ts/commit/397aa8e60b896dd3186ea8ba81b56fd71318caf3))
128
+ * **api:** update via SDK Studio ([#46](https://github.com/mixedbread-ai/mixedbread-ts/issues/46)) ([3910bfa](https://github.com/mixedbread-ai/mixedbread-ts/commit/3910bfa2404080d227cede9508e47c1bc30236c8))
129
+ * **api:** update via SDK Studio ([#47](https://github.com/mixedbread-ai/mixedbread-ts/issues/47)) ([bc05ae1](https://github.com/mixedbread-ai/mixedbread-ts/commit/bc05ae113a9eb7bce5ad06fa2fc71bb7350c49c7))
130
+ * **api:** update via SDK Studio ([#47](https://github.com/mixedbread-ai/mixedbread-ts/issues/47)) ([809f7e2](https://github.com/mixedbread-ai/mixedbread-ts/commit/809f7e2e83b2068b992bd8e08bd85065c76bbbd2))
131
+ * **api:** update via SDK Studio ([#49](https://github.com/mixedbread-ai/mixedbread-ts/issues/49)) ([65e0eaf](https://github.com/mixedbread-ai/mixedbread-ts/commit/65e0eafccb8797e08d2658431557937a3955a429))
132
+ * **api:** update via SDK Studio ([#49](https://github.com/mixedbread-ai/mixedbread-ts/issues/49)) ([8d910ab](https://github.com/mixedbread-ai/mixedbread-ts/commit/8d910aba69e2d47b4e3791b6f05d154762816f4e))
133
+ * **api:** update via SDK Studio ([#51](https://github.com/mixedbread-ai/mixedbread-ts/issues/51)) ([be98c0d](https://github.com/mixedbread-ai/mixedbread-ts/commit/be98c0db9ad0372fbb25cfa6b945273c372185a1))
134
+ * **api:** update via SDK Studio ([#51](https://github.com/mixedbread-ai/mixedbread-ts/issues/51)) ([eb4a416](https://github.com/mixedbread-ai/mixedbread-ts/commit/eb4a4161ec1ceee312c00bab0a3408e9fad14e7c))
135
+ * **api:** update via SDK Studio ([#52](https://github.com/mixedbread-ai/mixedbread-ts/issues/52)) ([c6bc110](https://github.com/mixedbread-ai/mixedbread-ts/commit/c6bc11082ab5a95effbdc468881a5d466ec54948))
136
+ * **api:** update via SDK Studio ([#52](https://github.com/mixedbread-ai/mixedbread-ts/issues/52)) ([c86b8ac](https://github.com/mixedbread-ai/mixedbread-ts/commit/c86b8acf8b3efec8e5d1de0c68dda73c4c9fdaaf))
137
+ * **api:** update via SDK Studio ([#53](https://github.com/mixedbread-ai/mixedbread-ts/issues/53)) ([1343336](https://github.com/mixedbread-ai/mixedbread-ts/commit/1343336e5a35c02657b43b326f830767ec6874f4))
138
+ * **api:** update via SDK Studio ([#53](https://github.com/mixedbread-ai/mixedbread-ts/issues/53)) ([f3b5fed](https://github.com/mixedbread-ai/mixedbread-ts/commit/f3b5fed4d6a8fd15ecb508f7b4f670667611b83b))
139
+ * **api:** update via SDK Studio ([#54](https://github.com/mixedbread-ai/mixedbread-ts/issues/54)) ([a3efd16](https://github.com/mixedbread-ai/mixedbread-ts/commit/a3efd16a02ea40a208b43fe8d689e536b2ed893b))
140
+ * **api:** update via SDK Studio ([#54](https://github.com/mixedbread-ai/mixedbread-ts/issues/54)) ([9df3af9](https://github.com/mixedbread-ai/mixedbread-ts/commit/9df3af9b8b08e2c0366e986a12e1e639ae1de217))
141
+ * **api:** update via SDK Studio ([#55](https://github.com/mixedbread-ai/mixedbread-ts/issues/55)) ([d9d8b5d](https://github.com/mixedbread-ai/mixedbread-ts/commit/d9d8b5de7faee4341052f7d27bf7fbbd17b8386e))
142
+ * **api:** update via SDK Studio ([#55](https://github.com/mixedbread-ai/mixedbread-ts/issues/55)) ([360fc76](https://github.com/mixedbread-ai/mixedbread-ts/commit/360fc76c7909d1d6ea2f30602da0590b97a7641b))
143
+ * **api:** update via SDK Studio ([#56](https://github.com/mixedbread-ai/mixedbread-ts/issues/56)) ([b749729](https://github.com/mixedbread-ai/mixedbread-ts/commit/b7497296b65c12ee65905026a82f4535312442c7))
144
+ * **api:** update via SDK Studio ([#56](https://github.com/mixedbread-ai/mixedbread-ts/issues/56)) ([e03a5a6](https://github.com/mixedbread-ai/mixedbread-ts/commit/e03a5a6a8e39b5db88faf28dbb415c0cb0880863))
145
+ * **api:** update via SDK Studio ([#58](https://github.com/mixedbread-ai/mixedbread-ts/issues/58)) ([04d015f](https://github.com/mixedbread-ai/mixedbread-ts/commit/04d015fcc8192a09849c20f57d8e1d11ac1d7606))
146
+ * **api:** update via SDK Studio ([#58](https://github.com/mixedbread-ai/mixedbread-ts/issues/58)) ([b0c3bf4](https://github.com/mixedbread-ai/mixedbread-ts/commit/b0c3bf49caddc8999bba5604845cfd0db50e2f7c))
147
+ * **api:** update via SDK Studio ([#61](https://github.com/mixedbread-ai/mixedbread-ts/issues/61)) ([3b25db5](https://github.com/mixedbread-ai/mixedbread-ts/commit/3b25db5c8ac2ce64a34f0815feaf65a9620f13d6))
148
+ * **api:** update via SDK Studio ([#61](https://github.com/mixedbread-ai/mixedbread-ts/issues/61)) ([f90cd9d](https://github.com/mixedbread-ai/mixedbread-ts/commit/f90cd9d47ba62e24d101156438b9cbc9930ddd8a))
149
+ * **api:** update via SDK Studio ([#62](https://github.com/mixedbread-ai/mixedbread-ts/issues/62)) ([bbc690d](https://github.com/mixedbread-ai/mixedbread-ts/commit/bbc690d7531c43dd4dbeff86d550cbff865ba7de))
150
+ * **api:** update via SDK Studio ([#62](https://github.com/mixedbread-ai/mixedbread-ts/issues/62)) ([ecd9cfd](https://github.com/mixedbread-ai/mixedbread-ts/commit/ecd9cfd0ac7e4ce36c23ddf12234804b6e241453))
151
+ * **api:** update via SDK Studio ([#63](https://github.com/mixedbread-ai/mixedbread-ts/issues/63)) ([f3370eb](https://github.com/mixedbread-ai/mixedbread-ts/commit/f3370ebc7fb5fbb666d5495f264c49f3d4c6d911))
152
+ * **api:** update via SDK Studio ([#63](https://github.com/mixedbread-ai/mixedbread-ts/issues/63)) ([d200914](https://github.com/mixedbread-ai/mixedbread-ts/commit/d2009142a8915c0139623108e0b7a856ff714124))
153
+ * **api:** update via SDK Studio ([#66](https://github.com/mixedbread-ai/mixedbread-ts/issues/66)) ([6bbd283](https://github.com/mixedbread-ai/mixedbread-ts/commit/6bbd2832af5ea431ff70b18fa3a35cf67c83fd41))
154
+ * **api:** update via SDK Studio ([#66](https://github.com/mixedbread-ai/mixedbread-ts/issues/66)) ([09d6e77](https://github.com/mixedbread-ai/mixedbread-ts/commit/09d6e773cef1a06b3037580ce65212a6737bf230))
155
+ * **api:** update via SDK Studio ([#67](https://github.com/mixedbread-ai/mixedbread-ts/issues/67)) ([6bdb23e](https://github.com/mixedbread-ai/mixedbread-ts/commit/6bdb23e606239ad3be5f3457d58e57ad59eeea63))
156
+ * **api:** update via SDK Studio ([#67](https://github.com/mixedbread-ai/mixedbread-ts/issues/67)) ([a79c92d](https://github.com/mixedbread-ai/mixedbread-ts/commit/a79c92daeac1d9de18befe0a81fe6e124b085d4d))
157
+ * **api:** update via SDK Studio ([#70](https://github.com/mixedbread-ai/mixedbread-ts/issues/70)) ([eedb911](https://github.com/mixedbread-ai/mixedbread-ts/commit/eedb9116c8706be8bffec69ab872c1adf5c213dc))
158
+ * **api:** update via SDK Studio ([#70](https://github.com/mixedbread-ai/mixedbread-ts/issues/70)) ([14c1c30](https://github.com/mixedbread-ai/mixedbread-ts/commit/14c1c301f30b55e992a3da72b86c0610bcb0a840))
159
+ * **api:** update via SDK Studio ([#71](https://github.com/mixedbread-ai/mixedbread-ts/issues/71)) ([27dcd28](https://github.com/mixedbread-ai/mixedbread-ts/commit/27dcd281b66c84e47f3af715cada670b8223b9ea))
160
+ * **api:** update via SDK Studio ([#71](https://github.com/mixedbread-ai/mixedbread-ts/issues/71)) ([fd43fe0](https://github.com/mixedbread-ai/mixedbread-ts/commit/fd43fe0f4c591ee6c4f5d1208e9e4ad47d2c7c10))
161
+ * **api:** update via SDK Studio ([#73](https://github.com/mixedbread-ai/mixedbread-ts/issues/73)) ([0cb5366](https://github.com/mixedbread-ai/mixedbread-ts/commit/0cb536628ef0a8a46409df0610f878447283a261))
162
+ * **api:** update via SDK Studio ([#73](https://github.com/mixedbread-ai/mixedbread-ts/issues/73)) ([61bb4c8](https://github.com/mixedbread-ai/mixedbread-ts/commit/61bb4c85870a84d7a01af37cb2a635ecbc1d2cc6))
163
+ * **api:** update via SDK Studio ([#74](https://github.com/mixedbread-ai/mixedbread-ts/issues/74)) ([7ccd389](https://github.com/mixedbread-ai/mixedbread-ts/commit/7ccd3898bc9c0b53a7dd55cce73b99dc7fd61a91))
164
+ * **api:** update via SDK Studio ([#74](https://github.com/mixedbread-ai/mixedbread-ts/issues/74)) ([fd95f81](https://github.com/mixedbread-ai/mixedbread-ts/commit/fd95f81f3525fb09b684d1cfea0c65df59de78fe))
165
+ * **api:** update via SDK Studio ([#76](https://github.com/mixedbread-ai/mixedbread-ts/issues/76)) ([4b3e50f](https://github.com/mixedbread-ai/mixedbread-ts/commit/4b3e50f2b2318eb32ea9af7985a1a0d1ad963733))
166
+ * **api:** update via SDK Studio ([#76](https://github.com/mixedbread-ai/mixedbread-ts/issues/76)) ([b6a2460](https://github.com/mixedbread-ai/mixedbread-ts/commit/b6a2460505094e54cc40c2f1496c36e364f49311))
167
+ * **api:** update via SDK Studio ([#77](https://github.com/mixedbread-ai/mixedbread-ts/issues/77)) ([3abbfa5](https://github.com/mixedbread-ai/mixedbread-ts/commit/3abbfa5e95f69da148de159ce2fbb690c8192b9d))
168
+ * **api:** update via SDK Studio ([#77](https://github.com/mixedbread-ai/mixedbread-ts/issues/77)) ([7f9355e](https://github.com/mixedbread-ai/mixedbread-ts/commit/7f9355e32680f42106556e24425b9f2c33f8fcb2))
169
+ * **api:** update via SDK Studio ([#78](https://github.com/mixedbread-ai/mixedbread-ts/issues/78)) ([7475605](https://github.com/mixedbread-ai/mixedbread-ts/commit/747560576c8fd39c5e4bf195ac2158efa0b9772a))
170
+ * **api:** update via SDK Studio ([#78](https://github.com/mixedbread-ai/mixedbread-ts/issues/78)) ([9473102](https://github.com/mixedbread-ai/mixedbread-ts/commit/9473102605914a2d7ee9911281c2c42aee952959))
171
+ * **api:** update via SDK Studio ([#79](https://github.com/mixedbread-ai/mixedbread-ts/issues/79)) ([ea9f249](https://github.com/mixedbread-ai/mixedbread-ts/commit/ea9f249142f8f7232d9cd2a9532dfc72c582a61c))
172
+ * **api:** update via SDK Studio ([#79](https://github.com/mixedbread-ai/mixedbread-ts/issues/79)) ([c3fb0c5](https://github.com/mixedbread-ai/mixedbread-ts/commit/c3fb0c5a7a16111a81751b769fd916686dbb0b85))
173
+ * **api:** update via SDK Studio ([#80](https://github.com/mixedbread-ai/mixedbread-ts/issues/80)) ([87ac329](https://github.com/mixedbread-ai/mixedbread-ts/commit/87ac329d9a646dbcfb9f01e16d5bffe47acd97ec))
174
+ * **api:** update via SDK Studio ([#80](https://github.com/mixedbread-ai/mixedbread-ts/issues/80)) ([97a0bf0](https://github.com/mixedbread-ai/mixedbread-ts/commit/97a0bf0d0a255938457f9fb261425befc8d5b6e9))
175
+ * **api:** update via SDK Studio ([#81](https://github.com/mixedbread-ai/mixedbread-ts/issues/81)) ([e7649cf](https://github.com/mixedbread-ai/mixedbread-ts/commit/e7649cfe5dc89e36fbaaa76c26c4b4777175032d))
176
+ * **api:** update via SDK Studio ([#81](https://github.com/mixedbread-ai/mixedbread-ts/issues/81)) ([76f959d](https://github.com/mixedbread-ai/mixedbread-ts/commit/76f959d94df5ad24d9a570a9381f3a4f4c1a92f3))
177
+ * **api:** update via SDK Studio ([#82](https://github.com/mixedbread-ai/mixedbread-ts/issues/82)) ([339b30b](https://github.com/mixedbread-ai/mixedbread-ts/commit/339b30b232abf2e335e563fc4ac1e0612c005f4d))
178
+ * **api:** update via SDK Studio ([#82](https://github.com/mixedbread-ai/mixedbread-ts/issues/82)) ([069ca0e](https://github.com/mixedbread-ai/mixedbread-ts/commit/069ca0e56138d826b111c2c8cbd98b7c4d6601e1))
179
+ * **api:** update via SDK Studio ([#85](https://github.com/mixedbread-ai/mixedbread-ts/issues/85)) ([d3422c2](https://github.com/mixedbread-ai/mixedbread-ts/commit/d3422c278fa7437d4c60d45dd7aa815df78277a3))
180
+ * **api:** update via SDK Studio ([#85](https://github.com/mixedbread-ai/mixedbread-ts/issues/85)) ([dd394d1](https://github.com/mixedbread-ai/mixedbread-ts/commit/dd394d1835285580988b2b037f6f53572d34fe43))
181
+ * **api:** update via SDK Studio ([#92](https://github.com/mixedbread-ai/mixedbread-ts/issues/92)) ([7293455](https://github.com/mixedbread-ai/mixedbread-ts/commit/729345521ce62b6461bbfbe2325791e8ba7582ed))
182
+ * **client:** accept RFC6838 JSON content types ([#108](https://github.com/mixedbread-ai/mixedbread-ts/issues/108)) ([4684e8f](https://github.com/mixedbread-ai/mixedbread-ts/commit/4684e8f97fbe887c34ff4550b3232c9c10f7d9c4))
183
+ * **client:** send `X-Stainless-Timeout` header ([#84](https://github.com/mixedbread-ai/mixedbread-ts/issues/84)) ([3f4151d](https://github.com/mixedbread-ai/mixedbread-ts/commit/3f4151dddddebfe299f0133999b0f2b20c2a426e))
184
+ * **client:** send `X-Stainless-Timeout` header ([#84](https://github.com/mixedbread-ai/mixedbread-ts/issues/84)) ([c5dfecd](https://github.com/mixedbread-ai/mixedbread-ts/commit/c5dfecd62572f2cd5c869de02ee191e76bd6b4de))
185
+ * feat: add upload and polling support ([#90](https://github.com/mixedbread-ai/mixedbread-ts/issues/90)) ([07a24b4](https://github.com/mixedbread-ai/mixedbread-ts/commit/07a24b4249922dfe7d881d297892e3f1e86470f1))
186
+ * **internal:** make git install file structure match npm ([9db70b1](https://github.com/mixedbread-ai/mixedbread-ts/commit/9db70b1aaf7bfde1d9f3abb264588854dbe6ac23))
187
+ * **internal:** make git install file structure match npm ([5914c3b](https://github.com/mixedbread-ai/mixedbread-ts/commit/5914c3b82b82767ada688b33fccd06211f34e235))
188
+
189
+
190
+ ### Bug Fixes
191
+
192
+ * avoid type error in certain environments ([#119](https://github.com/mixedbread-ai/mixedbread-ts/issues/119)) ([a392d73](https://github.com/mixedbread-ai/mixedbread-ts/commit/a392d731a4279b0d8bf5d9516c5ca2d927d6bb97))
193
+ * **client:** fix export map for index exports ([#86](https://github.com/mixedbread-ai/mixedbread-ts/issues/86)) ([7c1f6f3](https://github.com/mixedbread-ai/mixedbread-ts/commit/7c1f6f3c762278a6e2d11f3d046792cbc52dd0af))
194
+ * **client:** fix export map for index exports ([#86](https://github.com/mixedbread-ai/mixedbread-ts/issues/86)) ([d60aac1](https://github.com/mixedbread-ai/mixedbread-ts/commit/d60aac10f0de683efca8624bd472bbe2a1432f5a))
195
+ * **client:** normalize method ([#7](https://github.com/mixedbread-ai/mixedbread-ts/issues/7)) ([968beb1](https://github.com/mixedbread-ai/mixedbread-ts/commit/968beb1d42b441d01b65957eefbbfad87d10995c))
196
+ * **client:** normalize method ([#7](https://github.com/mixedbread-ai/mixedbread-ts/issues/7)) ([b387796](https://github.com/mixedbread-ai/mixedbread-ts/commit/b387796b99c33e29687b3c1363dddd30b21e2a7e))
197
+ * **client:** send `X-Stainless-Timeout` in seconds ([#130](https://github.com/mixedbread-ai/mixedbread-ts/issues/130)) ([bdf9624](https://github.com/mixedbread-ai/mixedbread-ts/commit/bdf96241c00db1fb0376d225212711aaba30c7a8))
198
+ * **exports:** ensure resource imports don't require /index ([#113](https://github.com/mixedbread-ai/mixedbread-ts/issues/113)) ([88db295](https://github.com/mixedbread-ai/mixedbread-ts/commit/88db2957dccfc02a97071767512c8903a230c29d))
199
+ * **internal:** work around https://github.com/vercel/next.js/issues/76881 ([#121](https://github.com/mixedbread-ai/mixedbread-ts/issues/121)) ([72fe9ec](https://github.com/mixedbread-ai/mixedbread-ts/commit/72fe9ec7777bb8dfa4a5477f31ad9d5a598a1dba))
200
+
201
+
202
+ ### Chores
203
+
204
+ * **client:** simplify `unknown | null` to just `unknown` ([#60](https://github.com/mixedbread-ai/mixedbread-ts/issues/60)) ([b272563](https://github.com/mixedbread-ai/mixedbread-ts/commit/b2725634a61f6057b1c2d2abc0503cb9ea6fe801))
205
+ * **client:** simplify `unknown | null` to just `unknown` ([#60](https://github.com/mixedbread-ai/mixedbread-ts/issues/60)) ([9460488](https://github.com/mixedbread-ai/mixedbread-ts/commit/94604880748ec1085e2bf8e0e02d95fed20add2e))
206
+ * **exports:** cleaner resource index imports ([#116](https://github.com/mixedbread-ai/mixedbread-ts/issues/116)) ([277b860](https://github.com/mixedbread-ai/mixedbread-ts/commit/277b8604e2b1d88457f9425a105a9f3aad804023))
207
+ * **exports:** stop using path fallbacks ([#118](https://github.com/mixedbread-ai/mixedbread-ts/issues/118)) ([47f2596](https://github.com/mixedbread-ai/mixedbread-ts/commit/47f25964719e167fe35f34b8d4adbf610e4d4f61))
208
+ * go live ([#1](https://github.com/mixedbread-ai/mixedbread-ts/issues/1)) ([14b09d3](https://github.com/mixedbread-ai/mixedbread-ts/commit/14b09d37ec2907fbad0a0d43425044899563d864))
209
+ * go live ([#1](https://github.com/mixedbread-ai/mixedbread-ts/issues/1)) ([b73319e](https://github.com/mixedbread-ai/mixedbread-ts/commit/b73319e0b8879c1286e6e6034709cb86bf0f6d07))
210
+ * **internal:** add aliases for Record and Array ([#133](https://github.com/mixedbread-ai/mixedbread-ts/issues/133)) ([5bb9b5d](https://github.com/mixedbread-ai/mixedbread-ts/commit/5bb9b5d43e2c8209649921a22e2ca8aa16f15cba))
211
+ * **internal:** change formatting ([#65](https://github.com/mixedbread-ai/mixedbread-ts/issues/65)) ([a87f9a3](https://github.com/mixedbread-ai/mixedbread-ts/commit/a87f9a36915d7ce507f88a723a6c2462caf6de51))
212
+ * **internal:** change formatting ([#65](https://github.com/mixedbread-ai/mixedbread-ts/issues/65)) ([5c9861d](https://github.com/mixedbread-ai/mixedbread-ts/commit/5c9861d7519f846f5070f09f5f3a5ee7d38d5748))
213
+ * **internal:** codegen related update ([6fae617](https://github.com/mixedbread-ai/mixedbread-ts/commit/6fae6175b6cc9f60c3aaad07b6063abe00c58119))
214
+ * **internal:** codegen related update ([ff83c15](https://github.com/mixedbread-ai/mixedbread-ts/commit/ff83c1551967964f3de60501e37b1d3d41f97eb8))
215
+ * **internal:** codegen related update ([b695f32](https://github.com/mixedbread-ai/mixedbread-ts/commit/b695f3288baf1cbf2ed6b68e766a31111e1ee5d3))
216
+ * **internal:** codegen related update ([648b16d](https://github.com/mixedbread-ai/mixedbread-ts/commit/648b16d6eb0be5fa03502afa1829d22d300d45e0))
217
+ * **internal:** codegen related update ([#11](https://github.com/mixedbread-ai/mixedbread-ts/issues/11)) ([3f90503](https://github.com/mixedbread-ai/mixedbread-ts/commit/3f90503400311bb63548e11a3828b3587a82147a))
218
+ * **internal:** codegen related update ([#11](https://github.com/mixedbread-ai/mixedbread-ts/issues/11)) ([79d3fad](https://github.com/mixedbread-ai/mixedbread-ts/commit/79d3fad938f1687fe71d82a61d92209bd2efa31b))
219
+ * **internal:** codegen related update ([#5](https://github.com/mixedbread-ai/mixedbread-ts/issues/5)) ([a113b42](https://github.com/mixedbread-ai/mixedbread-ts/commit/a113b42aef4ae9bca7262cd4185247fa23454945))
220
+ * **internal:** codegen related update ([#5](https://github.com/mixedbread-ai/mixedbread-ts/issues/5)) ([9b8f9ae](https://github.com/mixedbread-ai/mixedbread-ts/commit/9b8f9ae91430ea58c4eb69989fad11de705725ee))
221
+ * **internal:** codegen related update ([#6](https://github.com/mixedbread-ai/mixedbread-ts/issues/6)) ([ec3b359](https://github.com/mixedbread-ai/mixedbread-ts/commit/ec3b359b889bb9d7f4bd30836324369f80d331ea))
222
+ * **internal:** codegen related update ([#6](https://github.com/mixedbread-ai/mixedbread-ts/issues/6)) ([3453c67](https://github.com/mixedbread-ai/mixedbread-ts/commit/3453c67dd63e2fe09cb3fc877afb8cb52df75b25))
223
+ * **internal:** codegen related update ([#64](https://github.com/mixedbread-ai/mixedbread-ts/issues/64)) ([71be875](https://github.com/mixedbread-ai/mixedbread-ts/commit/71be87582169c5e529c3b82baf5d5d4d377c1ec0))
224
+ * **internal:** codegen related update ([#64](https://github.com/mixedbread-ai/mixedbread-ts/issues/64)) ([9e60e7d](https://github.com/mixedbread-ai/mixedbread-ts/commit/9e60e7d6e5d7a00977a9bdf65643b85cf83e7b28))
225
+ * **internal:** codegen related update ([#69](https://github.com/mixedbread-ai/mixedbread-ts/issues/69)) ([0525fae](https://github.com/mixedbread-ai/mixedbread-ts/commit/0525faeabe130282e753eb2182412bae7fb7656f))
226
+ * **internal:** codegen related update ([#69](https://github.com/mixedbread-ai/mixedbread-ts/issues/69)) ([fff5810](https://github.com/mixedbread-ai/mixedbread-ts/commit/fff581037361c3bd368f625119bff42455f7e6d3))
227
+ * **internal:** codegen related update ([#72](https://github.com/mixedbread-ai/mixedbread-ts/issues/72)) ([baecfbb](https://github.com/mixedbread-ai/mixedbread-ts/commit/baecfbbd84c7dcb390af6e16a7acf577332d8d14))
228
+ * **internal:** codegen related update ([#72](https://github.com/mixedbread-ai/mixedbread-ts/issues/72)) ([b74d28a](https://github.com/mixedbread-ai/mixedbread-ts/commit/b74d28a194b3b9053bc5a146dc869f836942b673))
229
+ * **internal:** codegen related update ([#75](https://github.com/mixedbread-ai/mixedbread-ts/issues/75)) ([13753d1](https://github.com/mixedbread-ai/mixedbread-ts/commit/13753d1b45291c944fbe79d31e269acd7dd4ca2b))
230
+ * **internal:** codegen related update ([#75](https://github.com/mixedbread-ai/mixedbread-ts/issues/75)) ([32c2ed5](https://github.com/mixedbread-ai/mixedbread-ts/commit/32c2ed5e2d82328b49f468c3cc5706a1d126ac64))
231
+ * **internal:** codegen related update ([#8](https://github.com/mixedbread-ai/mixedbread-ts/issues/8)) ([a815e19](https://github.com/mixedbread-ai/mixedbread-ts/commit/a815e195da429108be76d04874c2360b592b619a))
232
+ * **internal:** codegen related update ([#8](https://github.com/mixedbread-ai/mixedbread-ts/issues/8)) ([1f01988](https://github.com/mixedbread-ai/mixedbread-ts/commit/1f01988430ae0f4ef0f07774c48a920a11bc744f))
233
+ * **internal:** codegen related update ([#83](https://github.com/mixedbread-ai/mixedbread-ts/issues/83)) ([8912548](https://github.com/mixedbread-ai/mixedbread-ts/commit/8912548693c1e9504f01914423704ced61528d18))
234
+ * **internal:** codegen related update ([#83](https://github.com/mixedbread-ai/mixedbread-ts/issues/83)) ([4ff8cdc](https://github.com/mixedbread-ai/mixedbread-ts/commit/4ff8cdc8f6c935d85b7cbcb86f96b0421e21ca56))
235
+ * **internal:** codegen related update ([#87](https://github.com/mixedbread-ai/mixedbread-ts/issues/87)) ([d10f797](https://github.com/mixedbread-ai/mixedbread-ts/commit/d10f797b450c6ad54c0ac0b3581a6672511bba46))
236
+ * **internal:** codegen related update ([#87](https://github.com/mixedbread-ai/mixedbread-ts/issues/87)) ([e688325](https://github.com/mixedbread-ai/mixedbread-ts/commit/e6883258384b55391ff4a8531ac8f26c289b532e))
237
+ * **internal:** codegen related update ([#9](https://github.com/mixedbread-ai/mixedbread-ts/issues/9)) ([22e5caf](https://github.com/mixedbread-ai/mixedbread-ts/commit/22e5cafa547ba8ec9bdd74c38b34be081d3f7430))
238
+ * **internal:** codegen related update ([#9](https://github.com/mixedbread-ai/mixedbread-ts/issues/9)) ([d26ab56](https://github.com/mixedbread-ai/mixedbread-ts/commit/d26ab562e7f0c537eec671cb8ca97807efc25986))
239
+ * **internal:** fix devcontainers setup ([#88](https://github.com/mixedbread-ai/mixedbread-ts/issues/88)) ([cb66046](https://github.com/mixedbread-ai/mixedbread-ts/commit/cb66046261467f402339c69f6c68e61759795e4d))
240
+ * **internal:** fix devcontainers setup ([#88](https://github.com/mixedbread-ai/mixedbread-ts/issues/88)) ([1bfb850](https://github.com/mixedbread-ai/mixedbread-ts/commit/1bfb8502b4c34d5c1055f911b82b2233996b9605))
241
+ * **internal:** fix some typos ([f884909](https://github.com/mixedbread-ai/mixedbread-ts/commit/f884909fac6e880cbdc2a34b776fa54ac73ec44b))
242
+ * **internal:** fix some typos ([2cd8b66](https://github.com/mixedbread-ai/mixedbread-ts/commit/2cd8b665c3da8cbdf088e57a9792af3ca18b4faf))
243
+ * **internal:** remove unnecessary getRequestClient function ([7a0a341](https://github.com/mixedbread-ai/mixedbread-ts/commit/7a0a3413a3bbaddbc2fbf1c431bfadd531c527d5))
244
+ * **internal:** remove unnecessary getRequestClient function ([3b4d730](https://github.com/mixedbread-ai/mixedbread-ts/commit/3b4d730d04c30eb83bbd8d73bad6111fc9a9b7c4))
245
+ * **internal:** update isAbsoluteURL ([80f0860](https://github.com/mixedbread-ai/mixedbread-ts/commit/80f08604abda0cb97ea01503c8207e3d881d178d))
246
+ * **internal:** update isAbsoluteURL ([7f74ae4](https://github.com/mixedbread-ai/mixedbread-ts/commit/7f74ae4dad8dfb5a7258c8010813c5eca5deb254))
247
+ * **internal:** version bump ([#3](https://github.com/mixedbread-ai/mixedbread-ts/issues/3)) ([e796953](https://github.com/mixedbread-ai/mixedbread-ts/commit/e79695348fd0ecc7a3b49dbea7c093ebf52635fd))
248
+ * **internal:** version bump ([#32](https://github.com/mixedbread-ai/mixedbread-ts/issues/32)) ([a6fd1aa](https://github.com/mixedbread-ai/mixedbread-ts/commit/a6fd1aaab999ee27e6fe87eb1866ce9c2a5de0f1))
249
+ * **internal:** version bump ([#40](https://github.com/mixedbread-ai/mixedbread-ts/issues/40)) ([dde7ca4](https://github.com/mixedbread-ai/mixedbread-ts/commit/dde7ca46065873bc8ce4f763bdb8ced1b1c1b424))
250
+ * **internal:** version bump ([#48](https://github.com/mixedbread-ai/mixedbread-ts/issues/48)) ([25101da](https://github.com/mixedbread-ai/mixedbread-ts/commit/25101dad0bbdb6a9fa0d8b006a918d3cd6566db0))
251
+ * **internal:** version bump ([#57](https://github.com/mixedbread-ai/mixedbread-ts/issues/57)) ([4884a2f](https://github.com/mixedbread-ai/mixedbread-ts/commit/4884a2f5f167ae73b8cf2a15753f38bd45680b63))
252
+ * **internal:** version bump ([#93](https://github.com/mixedbread-ai/mixedbread-ts/issues/93)) ([1526f41](https://github.com/mixedbread-ai/mixedbread-ts/commit/1526f4104bb8465c0692ce3ed50b9c0e8b33a86a))
253
+ * rebuild project due to codegen change ([d949b92](https://github.com/mixedbread-ai/mixedbread-ts/commit/d949b92ba5c74f565751c31ab528f8c7d851613a))
254
+ * rebuild project due to codegen change ([f1a7e67](https://github.com/mixedbread-ai/mixedbread-ts/commit/f1a7e674e0a5c86d6d28169e5c80894f7e142f0f))
255
+ * rebuild project due to codegen change ([a744e93](https://github.com/mixedbread-ai/mixedbread-ts/commit/a744e93f73f2420d1202df087b4a701a2112c625))
256
+ * rebuild project due to codegen change ([c2239bc](https://github.com/mixedbread-ai/mixedbread-ts/commit/c2239bcc3861fcf032080010c3139822086ad673))
257
+ * rebuild project due to codegen change ([8af98f9](https://github.com/mixedbread-ai/mixedbread-ts/commit/8af98f9c75c0ef51664ee722d055a15b92941dd7))
258
+ * rebuild project due to codegen change ([5db633e](https://github.com/mixedbread-ai/mixedbread-ts/commit/5db633edb66af3fe2be219ffdb138e029cd3a51a))
259
+ * rebuild project due to codegen change ([abd02f4](https://github.com/mixedbread-ai/mixedbread-ts/commit/abd02f414396611c37b629654a71d8297dec14b9))
260
+ * rebuild project due to codegen change ([2fb89e4](https://github.com/mixedbread-ai/mixedbread-ts/commit/2fb89e427d2a6c34d9851f02b115bd96050818a0))
261
+ * remove redundant word in comment ([955943e](https://github.com/mixedbread-ai/mixedbread-ts/commit/955943e7f18464c7968c11e1b0c2ffc3133c1a30))
262
+ * remove redundant word in comment ([68cd107](https://github.com/mixedbread-ai/mixedbread-ts/commit/68cd10732e7d1bfd123db9cb449e328ffd8f4a67))
263
+ * **types:** nicer error class types + jsdocs ([6297491](https://github.com/mixedbread-ai/mixedbread-ts/commit/629749122f00f0fb702b51e986f67bb054a24f22))
264
+ * **types:** nicer error class types + jsdocs ([62e83d4](https://github.com/mixedbread-ai/mixedbread-ts/commit/62e83d4bde35eec9c87ed006f27eb15951b3a45d))
265
+ * update SDK settings ([#96](https://github.com/mixedbread-ai/mixedbread-ts/issues/96)) ([533fba0](https://github.com/mixedbread-ai/mixedbread-ts/commit/533fba0dc62bf6166edfcab81e60d8314a678e00))
266
+
267
+
268
+ ### Documentation
269
+
270
+ * minor formatting changes ([#10](https://github.com/mixedbread-ai/mixedbread-ts/issues/10)) ([9f9bcb6](https://github.com/mixedbread-ai/mixedbread-ts/commit/9f9bcb60b61442a45bac486fbc33f99614e4fed5))
271
+ * minor formatting changes ([#10](https://github.com/mixedbread-ai/mixedbread-ts/issues/10)) ([dfe3173](https://github.com/mixedbread-ai/mixedbread-ts/commit/dfe317364f673ac3941f4268a2703b08e88f8db4))
272
+ * remove suggestion to use `npm` call out ([8fcfb6b](https://github.com/mixedbread-ai/mixedbread-ts/commit/8fcfb6bf5b8bcb979a7f2670421d96a21fefe78b))
273
+ * remove suggestion to use `npm` call out ([596a0a6](https://github.com/mixedbread-ai/mixedbread-ts/commit/596a0a6c6e374fd6911fa50767547c2fdcdb0b93))
274
+ * update URLs from stainlessapi.com to stainless.com ([#89](https://github.com/mixedbread-ai/mixedbread-ts/issues/89)) ([d20385b](https://github.com/mixedbread-ai/mixedbread-ts/commit/d20385b85e6a0dc4095f8f98f13fe3d318f82384))
275
+ * update URLs from stainlessapi.com to stainless.com ([#89](https://github.com/mixedbread-ai/mixedbread-ts/issues/89)) ([9d38cd7](https://github.com/mixedbread-ai/mixedbread-ts/commit/9d38cd7c1a8158c1fd6f3cc99b004928f7ea7051))
276
+
277
+ ## 0.1.0-alpha.22 (2025-04-03)
278
+
279
+ Full Changelog: [v0.1.0-alpha.21...v0.1.0-alpha.22](https://github.com/mixedbread-ai/mixedbread-ts/compare/v0.1.0-alpha.21...v0.1.0-alpha.22)
280
+
281
+ ### Features
282
+
283
+ * **api:** update via SDK Studio ([bcf89e0](https://github.com/mixedbread-ai/mixedbread-ts/commit/bcf89e0218cc0e36a847d5c7e3d619c8855f09ee))
284
+
285
+ ## 0.1.0-alpha.21 (2025-04-03)
286
+
287
+ Full Changelog: [v0.1.0-alpha.20...v0.1.0-alpha.21](https://github.com/mixedbread-ai/mixedbread-ts/compare/v0.1.0-alpha.20...v0.1.0-alpha.21)
288
+
289
+ ### Features
290
+
291
+ * **api:** update via SDK Studio ([#149](https://github.com/mixedbread-ai/mixedbread-ts/issues/149)) ([5048518](https://github.com/mixedbread-ai/mixedbread-ts/commit/5048518c96fac491d49ce442776d8de093fcfe21))
292
+ * **api:** update via SDK Studio ([#151](https://github.com/mixedbread-ai/mixedbread-ts/issues/151)) ([78a5d80](https://github.com/mixedbread-ai/mixedbread-ts/commit/78a5d808466fecfe8632e812b56fbeba30d8d480))
293
+
294
+ ## 0.1.0-alpha.20 (2025-04-03)
295
+
296
+ Full Changelog: [v0.1.0-alpha.19...v0.1.0-alpha.20](https://github.com/mixedbread-ai/mixedbread-ts/compare/v0.1.0-alpha.19...v0.1.0-alpha.20)
297
+
298
+ ### Features
299
+
300
+ * **api:** update via SDK Studio ([#142](https://github.com/mixedbread-ai/mixedbread-ts/issues/142)) ([be169e6](https://github.com/mixedbread-ai/mixedbread-ts/commit/be169e6a64cbce82591d93f02f327f353769ad19))
301
+ * **api:** update via SDK Studio ([#144](https://github.com/mixedbread-ai/mixedbread-ts/issues/144)) ([ac3c4cf](https://github.com/mixedbread-ai/mixedbread-ts/commit/ac3c4cfe303837b1789c9b727e393c5888a93808))
302
+ * **api:** update via SDK Studio ([#145](https://github.com/mixedbread-ai/mixedbread-ts/issues/145)) ([d5f14db](https://github.com/mixedbread-ai/mixedbread-ts/commit/d5f14db8a4e9c5d2e4feba5e81a68b3cc9a09f29))
303
+ * **api:** update via SDK Studio ([#146](https://github.com/mixedbread-ai/mixedbread-ts/issues/146)) ([c3c2adb](https://github.com/mixedbread-ai/mixedbread-ts/commit/c3c2adbab2fbddf1a4ed814d1b6aeb9b39c5277f))
304
+
305
+ ## 0.1.0-alpha.19 (2025-04-03)
306
+
307
+ Full Changelog: [v0.1.0-alpha.18...v0.1.0-alpha.19](https://github.com/mixedbread-ai/mixedbread-ts/compare/v0.1.0-alpha.18...v0.1.0-alpha.19)
308
+
309
+ ### Features
310
+
311
+ * **api:** update via SDK Studio ([#139](https://github.com/mixedbread-ai/mixedbread-ts/issues/139)) ([915da64](https://github.com/mixedbread-ai/mixedbread-ts/commit/915da6413235e6fec5593fd134fa638296b3f388))
312
+
313
+ ## 0.1.0-alpha.18 (2025-04-03)
314
+
315
+ Full Changelog: [v0.1.0-alpha.17...v0.1.0-alpha.18](https://github.com/mixedbread-ai/mixedbread-ts/compare/v0.1.0-alpha.17...v0.1.0-alpha.18)
316
+
317
+ ### Features
318
+
319
+ * **api:** update via SDK Studio ([#136](https://github.com/mixedbread-ai/mixedbread-ts/issues/136)) ([3140f53](https://github.com/mixedbread-ai/mixedbread-ts/commit/3140f5344c5e7569978112c78f9c092c5b2de491))
320
+
321
+ ## 0.1.0-alpha.17 (2025-04-03)
322
+
323
+ Full Changelog: [v0.1.0-alpha.16...v0.1.0-alpha.17](https://github.com/mixedbread-ai/mixedbread-ts/compare/v0.1.0-alpha.16...v0.1.0-alpha.17)
324
+
325
+ ### Chores
326
+
327
+ * **internal:** add aliases for Record and Array ([#133](https://github.com/mixedbread-ai/mixedbread-ts/issues/133)) ([5bb9b5d](https://github.com/mixedbread-ai/mixedbread-ts/commit/5bb9b5d43e2c8209649921a22e2ca8aa16f15cba))
328
+
329
+ ## 0.1.0-alpha.16 (2025-04-03)
330
+
331
+ Full Changelog: [v0.1.0-alpha.15...v0.1.0-alpha.16](https://github.com/mixedbread-ai/mixedbread-ts/compare/v0.1.0-alpha.15...v0.1.0-alpha.16)
332
+
333
+ ### Bug Fixes
334
+
335
+ * **client:** send `X-Stainless-Timeout` in seconds ([#130](https://github.com/mixedbread-ai/mixedbread-ts/issues/130)) ([4ebe2fe](https://github.com/mixedbread-ai/mixedbread-ts/commit/4ebe2febdc5bdd944494078403b88a153205fe11))
336
+
337
+ ## 0.1.0-alpha.15 (2025-03-29)
338
+
339
+ Full Changelog: [v0.1.0-alpha.14...v0.1.0-alpha.15](https://github.com/mixedbread-ai/mixedbread-ts/compare/v0.1.0-alpha.14...v0.1.0-alpha.15)
340
+
341
+ ### Features
342
+
343
+ * **api:** update via SDK Studio ([#127](https://github.com/mixedbread-ai/mixedbread-ts/issues/127)) ([ee0b498](https://github.com/mixedbread-ai/mixedbread-ts/commit/ee0b4984abb7423e9932c113c2672bcf8a0c83b7))
344
+
345
+ ## 0.1.0-alpha.14 (2025-03-28)
346
+
347
+ Full Changelog: [v0.1.0-alpha.13...v0.1.0-alpha.14](https://github.com/mixedbread-ai/mixedbread-ts/compare/v0.1.0-alpha.13...v0.1.0-alpha.14)
348
+
349
+ ### Features
350
+
351
+ * **api:** update via SDK Studio ([#124](https://github.com/mixedbread-ai/mixedbread-ts/issues/124)) ([234befb](https://github.com/mixedbread-ai/mixedbread-ts/commit/234befb663d534fe216ad69afcea55c440567c8b))
352
+
353
+ ## 0.1.0-alpha.13 (2025-03-28)
354
+
355
+ Full Changelog: [v0.1.0-alpha.12...v0.1.0-alpha.13](https://github.com/mixedbread-ai/mixedbread-ts/compare/v0.1.0-alpha.12...v0.1.0-alpha.13)
356
+
357
+ ### Bug Fixes
358
+
359
+ * **internal:** work around https://github.com/vercel/next.js/issues/76881 ([#121](https://github.com/mixedbread-ai/mixedbread-ts/issues/121)) ([ffd2773](https://github.com/mixedbread-ai/mixedbread-ts/commit/ffd27730a228b0c91ec90fb1516a3caa950afa6f))
360
+
361
+ ## 0.1.0-alpha.12 (2025-03-22)
362
+
363
+ Full Changelog: [v0.1.0-alpha.11...v0.1.0-alpha.12](https://github.com/mixedbread-ai/mixedbread-ts/compare/v0.1.0-alpha.11...v0.1.0-alpha.12)
364
+
365
+ ### Bug Fixes
366
+
367
+ * avoid type error in certain environments ([#119](https://github.com/mixedbread-ai/mixedbread-ts/issues/119)) ([1c9ab47](https://github.com/mixedbread-ai/mixedbread-ts/commit/1c9ab47e707373bc020cefbf1b2a2ae6e90a43c4))
368
+
369
+
370
+ ### Chores
371
+
372
+ * **exports:** cleaner resource index imports ([#116](https://github.com/mixedbread-ai/mixedbread-ts/issues/116)) ([1bd865d](https://github.com/mixedbread-ai/mixedbread-ts/commit/1bd865d735d2ae8a24cd538f55670b062c3fcce9))
373
+ * **exports:** stop using path fallbacks ([#118](https://github.com/mixedbread-ai/mixedbread-ts/issues/118)) ([95652e8](https://github.com/mixedbread-ai/mixedbread-ts/commit/95652e8fd9b81e48f9c82fbcd8a6e049b1429d5c))
374
+
375
+ ## 0.1.0-alpha.11 (2025-03-14)
376
+
377
+ Full Changelog: [v0.1.0-alpha.10...v0.1.0-alpha.11](https://github.com/mixedbread-ai/mixedbread-ts/compare/v0.1.0-alpha.10...v0.1.0-alpha.11)
378
+
379
+ ### Bug Fixes
380
+
381
+ * **exports:** ensure resource imports don't require /index ([#113](https://github.com/mixedbread-ai/mixedbread-ts/issues/113)) ([4b6fc86](https://github.com/mixedbread-ai/mixedbread-ts/commit/4b6fc864964a628fae802991a6b85634cb20cbd1))
382
+
383
+ ## 0.1.0-alpha.10 (2025-03-12)
384
+
385
+ Full Changelog: [v0.1.0-alpha.9...v0.1.0-alpha.10](https://github.com/mixedbread-ai/mixedbread-ts/compare/v0.1.0-alpha.9...v0.1.0-alpha.10)
386
+
387
+ ### Features
388
+
389
+ * add SKIP_BREW env var to ./scripts/bootstrap ([#106](https://github.com/mixedbread-ai/mixedbread-ts/issues/106)) ([38ade8c](https://github.com/mixedbread-ai/mixedbread-ts/commit/38ade8c9a1ac0dae63948ef6a8980b5f743eb971))
390
+ * **api:** update via SDK Studio ([#109](https://github.com/mixedbread-ai/mixedbread-ts/issues/109)) ([086653f](https://github.com/mixedbread-ai/mixedbread-ts/commit/086653f61ac55eb7ff4a2fdef504d8e215b18877))
391
+ * **api:** update via SDK Studio ([#110](https://github.com/mixedbread-ai/mixedbread-ts/issues/110)) ([a3100c8](https://github.com/mixedbread-ai/mixedbread-ts/commit/a3100c86966313c3223eaa117dacc16107a7a0dd))
392
+ * **client:** accept RFC6838 JSON content types ([#108](https://github.com/mixedbread-ai/mixedbread-ts/issues/108)) ([4684e8f](https://github.com/mixedbread-ai/mixedbread-ts/commit/4684e8f97fbe887c34ff4550b3232c9c10f7d9c4))
393
+
3
394
  ## 0.1.0-alpha.9 (2025-03-07)
4
395
 
5
396
  Full Changelog: [v0.1.0-alpha.8...v0.1.0-alpha.9](https://github.com/mixedbread-ai/mixedbread-ts/compare/v0.1.0-alpha.8...v0.1.0-alpha.9)
package/README.md CHANGED
@@ -1,10 +1,10 @@
1
- # Mixedbread Node API Library
1
+ # Mixedbread API Node/TypeScript SDK API Library
2
2
 
3
3
  [![NPM version](https://img.shields.io/npm/v/@mixedbread/sdk.svg)](https://npmjs.org/package/@mixedbread/sdk) ![npm bundle size](https://img.shields.io/bundlephobia/minzip/@mixedbread/sdk)
4
4
 
5
5
  This library provides convenient access to the Mixedbread REST API from server-side TypeScript or JavaScript.
6
6
 
7
- The REST API documentation can be found on [mixedbread.ai](https://mixedbread.ai/docs). The full API of this library can be found in [api.md](api.md).
7
+ The REST API documentation can be found on [mixedbread.com](https://mixedbread.com/docs). The full API of this library can be found in [api.md](api.md).
8
8
 
9
9
  It is generated with [Stainless](https://www.stainless.com/).
10
10
 
@@ -23,7 +23,7 @@ The full API of this library can be found in [api.md](api.md).
23
23
  import Mixedbread from '@mixedbread/sdk';
24
24
 
25
25
  const client = new Mixedbread({
26
- apiKey: process.env['MXBAI_API_KEY'], // This is the default and can be omitted
26
+ apiKey: process.env['MIXEDBREAD_API_KEY'], // This is the default and can be omitted
27
27
  environment: 'local', // defaults to 'production'
28
28
  });
29
29
 
@@ -45,7 +45,7 @@ This library includes TypeScript definitions for all request params and response
45
45
  import Mixedbread from '@mixedbread/sdk';
46
46
 
47
47
  const client = new Mixedbread({
48
- apiKey: process.env['MXBAI_API_KEY'], // This is the default and can be omitted
48
+ apiKey: process.env['MIXEDBREAD_API_KEY'], // This is the default and can be omitted
49
49
  environment: 'local', // defaults to 'production'
50
50
  });
51
51
 
package/_shims/index.d.ts CHANGED
@@ -79,3 +79,5 @@ export function fileFromPath(path: string, options?: FileFromPathOptions): Promi
79
79
  export function fileFromPath(path: string, filename?: string, options?: FileFromPathOptions): Promise<File>;
80
80
 
81
81
  export function isFsReadStream(value: any): value is FsReadStream;
82
+
83
+ export const init: () => void;
package/_shims/index.js CHANGED
@@ -3,7 +3,9 @@
3
3
  */
4
4
  const shims = require('./registry');
5
5
  const auto = require('@mixedbread/sdk/_shims/auto/runtime');
6
- if (!shims.kind) shims.setShims(auto.getRuntime(), { auto: true });
6
+ exports.init = () => {
7
+ if (!shims.kind) shims.setShims(auto.getRuntime(), { auto: true });
8
+ };
7
9
  for (const property of Object.keys(shims)) {
8
10
  Object.defineProperty(exports, property, {
9
11
  get() {
@@ -11,3 +13,5 @@ for (const property of Object.keys(shims)) {
11
13
  },
12
14
  });
13
15
  }
16
+
17
+ exports.init();
package/_shims/index.mjs CHANGED
@@ -3,5 +3,9 @@
3
3
  */
4
4
  import * as shims from './registry.mjs';
5
5
  import * as auto from '@mixedbread/sdk/_shims/auto/runtime';
6
- if (!shims.kind) shims.setShims(auto.getRuntime(), { auto: true });
6
+ export const init = () => {
7
+ if (!shims.kind) shims.setShims(auto.getRuntime(), { auto: true });
8
+ };
7
9
  export * from './registry.mjs';
10
+
11
+ init();
package/core.d.ts CHANGED
@@ -6,6 +6,17 @@ export { type Response };
6
6
  import { BlobLike } from "./uploads.js";
7
7
  export { maybeMultipartFormRequestOptions, multipartFormRequestOptions, createForm, type Uploadable, } from "./uploads.js";
8
8
  export type Fetch = (url: RequestInfo, init?: RequestInit) => Promise<Response>;
9
+ /**
10
+ * An alias to the builtin `Array` type so we can
11
+ * easily alias it in import statements if there are name clashes.
12
+ */
13
+ type _Array<T> = Array<T>;
14
+ /**
15
+ * An alias to the builtin `Record` type so we can
16
+ * easily alias it in import statements if there are name clashes.
17
+ */
18
+ type _Record<K extends keyof any, T> = Record<K, T>;
19
+ export type { _Array as Array, _Record as Record };
9
20
  type PromiseOrValue<T> = T | Promise<T>;
10
21
  type APIResponseProps = {
11
22
  response: Response;
package/core.d.ts.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"core.d.ts","sourceRoot":"","sources":["src/core.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"core.d.ts","sourceRoot":"","sources":["src/core.ts"],"names":[],"mappings":"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"}