prelude-sdk 0.1.0.pre.alpha.2
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.
- checksums.yaml +7 -0
- data/.ignore +2 -0
- data/CHANGELOG.md +352 -0
- data/README.md +217 -0
- data/SECURITY.md +27 -0
- data/lib/prelude_sdk/client.rb +87 -0
- data/lib/prelude_sdk/errors.rb +214 -0
- data/lib/prelude_sdk/file_part.rb +55 -0
- data/lib/prelude_sdk/internal/transport/base_client.rb +555 -0
- data/lib/prelude_sdk/internal/transport/pooled_net_requester.rb +209 -0
- data/lib/prelude_sdk/internal/type/array_of.rb +167 -0
- data/lib/prelude_sdk/internal/type/base_model.rb +536 -0
- data/lib/prelude_sdk/internal/type/base_page.rb +55 -0
- data/lib/prelude_sdk/internal/type/boolean.rb +77 -0
- data/lib/prelude_sdk/internal/type/converter.rb +300 -0
- data/lib/prelude_sdk/internal/type/enum.rb +131 -0
- data/lib/prelude_sdk/internal/type/file_input.rb +108 -0
- data/lib/prelude_sdk/internal/type/hash_of.rb +187 -0
- data/lib/prelude_sdk/internal/type/request_parameters.rb +42 -0
- data/lib/prelude_sdk/internal/type/union.rb +235 -0
- data/lib/prelude_sdk/internal/type/unknown.rb +81 -0
- data/lib/prelude_sdk/internal/util.rb +914 -0
- data/lib/prelude_sdk/internal.rb +20 -0
- data/lib/prelude_sdk/models/lookup_lookup_params.rb +37 -0
- data/lib/prelude_sdk/models/lookup_lookup_response.rb +236 -0
- data/lib/prelude_sdk/models/transactional_send_params.rb +84 -0
- data/lib/prelude_sdk/models/transactional_send_response.rb +81 -0
- data/lib/prelude_sdk/models/verification_check_params.rb +69 -0
- data/lib/prelude_sdk/models/verification_check_response.rb +67 -0
- data/lib/prelude_sdk/models/verification_create_params.rb +388 -0
- data/lib/prelude_sdk/models/verification_create_response.rb +148 -0
- data/lib/prelude_sdk/models/watch_predict_params.rb +191 -0
- data/lib/prelude_sdk/models/watch_predict_response.rb +50 -0
- data/lib/prelude_sdk/models/watch_send_events_params.rb +100 -0
- data/lib/prelude_sdk/models/watch_send_events_response.rb +41 -0
- data/lib/prelude_sdk/models/watch_send_feedbacks_params.rb +229 -0
- data/lib/prelude_sdk/models/watch_send_feedbacks_response.rb +41 -0
- data/lib/prelude_sdk/models.rb +55 -0
- data/lib/prelude_sdk/request_options.rb +77 -0
- data/lib/prelude_sdk/resources/lookup.rb +42 -0
- data/lib/prelude_sdk/resources/transactional.rb +53 -0
- data/lib/prelude_sdk/resources/verification.rb +76 -0
- data/lib/prelude_sdk/resources/watch.rb +91 -0
- data/lib/prelude_sdk/version.rb +5 -0
- data/lib/prelude_sdk.rb +71 -0
- data/manifest.yaml +15 -0
- data/rbi/prelude_sdk/client.rbi +59 -0
- data/rbi/prelude_sdk/errors.rbi +178 -0
- data/rbi/prelude_sdk/file_part.rbi +37 -0
- data/rbi/prelude_sdk/internal/transport/base_client.rbi +296 -0
- data/rbi/prelude_sdk/internal/transport/pooled_net_requester.rbi +80 -0
- data/rbi/prelude_sdk/internal/type/array_of.rbi +104 -0
- data/rbi/prelude_sdk/internal/type/base_model.rbi +304 -0
- data/rbi/prelude_sdk/internal/type/base_page.rbi +42 -0
- data/rbi/prelude_sdk/internal/type/boolean.rbi +58 -0
- data/rbi/prelude_sdk/internal/type/converter.rbi +162 -0
- data/rbi/prelude_sdk/internal/type/enum.rbi +82 -0
- data/rbi/prelude_sdk/internal/type/file_input.rbi +59 -0
- data/rbi/prelude_sdk/internal/type/hash_of.rbi +104 -0
- data/rbi/prelude_sdk/internal/type/request_parameters.rbi +29 -0
- data/rbi/prelude_sdk/internal/type/union.rbi +121 -0
- data/rbi/prelude_sdk/internal/type/unknown.rbi +58 -0
- data/rbi/prelude_sdk/internal/util.rbi +487 -0
- data/rbi/prelude_sdk/internal.rbi +18 -0
- data/rbi/prelude_sdk/models/lookup_lookup_params.rbi +78 -0
- data/rbi/prelude_sdk/models/lookup_lookup_response.rbi +520 -0
- data/rbi/prelude_sdk/models/transactional_send_params.rbi +126 -0
- data/rbi/prelude_sdk/models/transactional_send_response.rbi +113 -0
- data/rbi/prelude_sdk/models/verification_check_params.rbi +140 -0
- data/rbi/prelude_sdk/models/verification_check_response.rbi +149 -0
- data/rbi/prelude_sdk/models/verification_create_params.rbi +805 -0
- data/rbi/prelude_sdk/models/verification_create_response.rbi +336 -0
- data/rbi/prelude_sdk/models/watch_predict_params.rbi +382 -0
- data/rbi/prelude_sdk/models/watch_predict_response.rbi +96 -0
- data/rbi/prelude_sdk/models/watch_send_events_params.rbi +245 -0
- data/rbi/prelude_sdk/models/watch_send_events_response.rbi +82 -0
- data/rbi/prelude_sdk/models/watch_send_feedbacks_params.rbi +500 -0
- data/rbi/prelude_sdk/models/watch_send_feedbacks_response.rbi +86 -0
- data/rbi/prelude_sdk/models.rbi +17 -0
- data/rbi/prelude_sdk/request_options.rbi +59 -0
- data/rbi/prelude_sdk/resources/lookup.rbi +33 -0
- data/rbi/prelude_sdk/resources/transactional.rbi +50 -0
- data/rbi/prelude_sdk/resources/verification.rbi +61 -0
- data/rbi/prelude_sdk/resources/watch.rbi +67 -0
- data/rbi/prelude_sdk/version.rbi +5 -0
- data/sig/prelude_sdk/client.rbs +32 -0
- data/sig/prelude_sdk/errors.rbs +110 -0
- data/sig/prelude_sdk/file_part.rbs +21 -0
- data/sig/prelude_sdk/internal/transport/base_client.rbs +131 -0
- data/sig/prelude_sdk/internal/transport/pooled_net_requester.rbs +45 -0
- data/sig/prelude_sdk/internal/type/array_of.rbs +48 -0
- data/sig/prelude_sdk/internal/type/base_model.rbs +102 -0
- data/sig/prelude_sdk/internal/type/base_page.rbs +24 -0
- data/sig/prelude_sdk/internal/type/boolean.rbs +26 -0
- data/sig/prelude_sdk/internal/type/converter.rbs +62 -0
- data/sig/prelude_sdk/internal/type/enum.rbs +32 -0
- data/sig/prelude_sdk/internal/type/file_input.rbs +25 -0
- data/sig/prelude_sdk/internal/type/hash_of.rbs +48 -0
- data/sig/prelude_sdk/internal/type/request_parameters.rbs +19 -0
- data/sig/prelude_sdk/internal/type/union.rbs +52 -0
- data/sig/prelude_sdk/internal/type/unknown.rbs +26 -0
- data/sig/prelude_sdk/internal/util.rbs +185 -0
- data/sig/prelude_sdk/internal.rbs +9 -0
- data/sig/prelude_sdk/models/lookup_lookup_params.rbs +38 -0
- data/sig/prelude_sdk/models/lookup_lookup_response.rbs +179 -0
- data/sig/prelude_sdk/models/transactional_send_params.rbs +73 -0
- data/sig/prelude_sdk/models/transactional_send_response.rbs +66 -0
- data/sig/prelude_sdk/models/verification_check_params.rbs +61 -0
- data/sig/prelude_sdk/models/verification_check_response.rbs +67 -0
- data/sig/prelude_sdk/models/verification_create_params.rbs +345 -0
- data/sig/prelude_sdk/models/verification_create_response.rbs +136 -0
- data/sig/prelude_sdk/models/watch_predict_params.rbs +180 -0
- data/sig/prelude_sdk/models/watch_predict_response.rbs +41 -0
- data/sig/prelude_sdk/models/watch_send_events_params.rbs +98 -0
- data/sig/prelude_sdk/models/watch_send_events_response.rbs +35 -0
- data/sig/prelude_sdk/models/watch_send_feedbacks_params.rbs +211 -0
- data/sig/prelude_sdk/models/watch_send_feedbacks_response.rbs +35 -0
- data/sig/prelude_sdk/models.rbs +15 -0
- data/sig/prelude_sdk/request_options.rbs +36 -0
- data/sig/prelude_sdk/resources/lookup.rbs +13 -0
- data/sig/prelude_sdk/resources/transactional.rbs +19 -0
- data/sig/prelude_sdk/resources/verification.rbs +22 -0
- data/sig/prelude_sdk/resources/watch.rbs +25 -0
- data/sig/prelude_sdk/version.rbs +3 -0
- metadata +182 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 12b02adb152b32c9bd2e7dd2587ddbd3c2cd0852b00af005c6227a938276e997
|
4
|
+
data.tar.gz: 4c62e71aa6241371ba0547bc643d51bb73c5193bac70725f073e3c8b5f3949c1
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: eeb2a335540419f67629c0cfbf9d9dd0cc357cb174f0e5a4c309a6afc681cc1aa088cf3852c20b60b46bed5939a8b4d2af33de1b1e9d17af6f5c42e69911da0f
|
7
|
+
data.tar.gz: 7970fd85651bc993d6a8f9305118e5966c86558a79026a6279a9a9686b023a12dfcb962e12073a8ffc6cc4cd1fbd142398443b084a00bb40421f60df5e43ceed
|
data/.ignore
ADDED
data/CHANGELOG.md
ADDED
@@ -0,0 +1,352 @@
|
|
1
|
+
# Changelog
|
2
|
+
|
3
|
+
## 0.1.0-alpha.2 (2025-06-27)
|
4
|
+
|
5
|
+
Full Changelog: [v0.1.0-alpha.1...v0.1.0-alpha.2](https://github.com/prelude-so/ruby-sdk/compare/v0.1.0-alpha.1...v0.1.0-alpha.2)
|
6
|
+
|
7
|
+
### ⚠ BREAKING CHANGES
|
8
|
+
|
9
|
+
* bump min supported ruby version to 3.1 (oldest non-EOL) ([#222](https://github.com/prelude-so/ruby-sdk/issues/222))
|
10
|
+
* remove top level type aliases to relocated classes ([#221](https://github.com/prelude-so/ruby-sdk/issues/221))
|
11
|
+
* use tagged enums in sorbet type definitions ([#190](https://github.com/prelude-so/ruby-sdk/issues/190))
|
12
|
+
* support `for item in stream` style iteration on `Stream`s ([#188](https://github.com/prelude-so/ruby-sdk/issues/188))
|
13
|
+
* **model:** base model should recursively store coerced base models ([#178](https://github.com/prelude-so/ruby-sdk/issues/178))
|
14
|
+
* encode objects in multipart encoding as JSON ([#97](https://github.com/prelude-so/ruby-sdk/issues/97))
|
15
|
+
* base page should be module instead of class ([#91](https://github.com/prelude-so/ruby-sdk/issues/91))
|
16
|
+
* breaking change - improved request options signatures ([#85](https://github.com/prelude-so/ruby-sdk/issues/85))
|
17
|
+
|
18
|
+
### Features
|
19
|
+
|
20
|
+
* add deprecation notice to enum members and resources ([#133](https://github.com/prelude-so/ruby-sdk/issues/133)) ([f6f8ae3](https://github.com/prelude-so/ruby-sdk/commit/f6f8ae3237da39de7c086de4c6a8a489beb02814))
|
21
|
+
* add jsonl support ([#148](https://github.com/prelude-so/ruby-sdk/issues/148)) ([cafe22a](https://github.com/prelude-so/ruby-sdk/commit/cafe22ac9cd043042c95ed9a5284ce3b9e336dc1))
|
22
|
+
* add reference links in yard ([#212](https://github.com/prelude-so/ruby-sdk/issues/212)) ([aaf287c](https://github.com/prelude-so/ruby-sdk/commit/aaf287ca199b70195765c33457176aa26057b7a2))
|
23
|
+
* add SKIP_BREW env var to ./scripts/bootstrap ([#152](https://github.com/prelude-so/ruby-sdk/issues/152)) ([7b3a590](https://github.com/prelude-so/ruby-sdk/commit/7b3a590461acee3a4189b5a2597069565a1ddf37))
|
24
|
+
* allow all valid `JSON` types to be encoded ([#232](https://github.com/prelude-so/ruby-sdk/issues/232)) ([4e4f6fb](https://github.com/prelude-so/ruby-sdk/commit/4e4f6fb758b7a18796ea51ca9d7284dd6ffead89))
|
25
|
+
* **api:** update via SDK Studio ([41cbb9f](https://github.com/prelude-so/ruby-sdk/commit/41cbb9f1c96f67989cb520b4d270ac4bd03e8381))
|
26
|
+
* **api:** update via SDK Studio ([3ddcd49](https://github.com/prelude-so/ruby-sdk/commit/3ddcd4966158a8ad3e9df700b2ec2486f03f167b))
|
27
|
+
* **api:** update via SDK Studio ([1451f92](https://github.com/prelude-so/ruby-sdk/commit/1451f92b4f8b8f6faf4b6fbab769a84729537a2f))
|
28
|
+
* **api:** update via SDK Studio ([4ad8817](https://github.com/prelude-so/ruby-sdk/commit/4ad88170cd346d531959d23072cb303ad7258332))
|
29
|
+
* **api:** update via SDK Studio ([#157](https://github.com/prelude-so/ruby-sdk/issues/157)) ([b71bb76](https://github.com/prelude-so/ruby-sdk/commit/b71bb76f96614b3e0a9dd3c4d389d74be87bb4c4))
|
30
|
+
* **api:** update via SDK Studio ([#70](https://github.com/prelude-so/ruby-sdk/issues/70)) ([ca6e228](https://github.com/prelude-so/ruby-sdk/commit/ca6e22894e72a9407455a73f4dfdf22962b49b70))
|
31
|
+
* **api:** update via SDK Studio ([#74](https://github.com/prelude-so/ruby-sdk/issues/74)) ([6a68e49](https://github.com/prelude-so/ruby-sdk/commit/6a68e49cfd09c95b4930765f5c9ebeedc134ad94))
|
32
|
+
* **api:** update via SDK Studio ([#92](https://github.com/prelude-so/ruby-sdk/issues/92)) ([6707265](https://github.com/prelude-so/ruby-sdk/commit/6707265de2fcecbc716a50a37e5c4de43a510c62))
|
33
|
+
* breaking change - improved request options signatures ([#85](https://github.com/prelude-so/ruby-sdk/issues/85)) ([4385257](https://github.com/prelude-so/ruby-sdk/commit/4385257e3047f1524fbdc90f714fccc9bcc78068))
|
34
|
+
* bump default connection pool size limit to minimum of 99 ([ba2eaa9](https://github.com/prelude-so/ruby-sdk/commit/ba2eaa93a5521e90873ee9c005ec76c502f30959))
|
35
|
+
* bump min supported ruby version to 3.1 (oldest non-EOL) ([#222](https://github.com/prelude-so/ruby-sdk/issues/222)) ([ebad6d8](https://github.com/prelude-so/ruby-sdk/commit/ebad6d8a017be26861a1cffdfa0f80635a1996da))
|
36
|
+
* bundle typing manifests with gem release ([#108](https://github.com/prelude-so/ruby-sdk/issues/108)) ([8ba7589](https://github.com/prelude-so/ruby-sdk/commit/8ba7589eeabd5c6304887d70ada5ef34a12a7d09))
|
37
|
+
* **client:** enable setting base URL from environment variable ([74f81c5](https://github.com/prelude-so/ruby-sdk/commit/74f81c591164077fb133d26fdfd8f641169823be))
|
38
|
+
* **client:** send `X-Stainless-Read-Timeout` header ([#98](https://github.com/prelude-so/ruby-sdk/issues/98)) ([4917c8e](https://github.com/prelude-so/ruby-sdk/commit/4917c8ea67c77cdeda57ddcd435b2d45d2050ad5))
|
39
|
+
* consistently accept `AnyHash` types in parameter positions in sorbet ([#195](https://github.com/prelude-so/ruby-sdk/issues/195)) ([dc28b6d](https://github.com/prelude-so/ruby-sdk/commit/dc28b6df9df9f6387b6cbf5860d1aff2c61ba1a5))
|
40
|
+
* escape path params ([#58](https://github.com/prelude-so/ruby-sdk/issues/58)) ([770f9f3](https://github.com/prelude-so/ruby-sdk/commit/770f9f3d6b365b6c1ef4a735f268ab90d88bd2cc))
|
41
|
+
* examples for working with discriminated unions ([#71](https://github.com/prelude-so/ruby-sdk/issues/71)) ([42d52cd](https://github.com/prelude-so/ruby-sdk/commit/42d52cdec8dbd358170e4ce50579bac55edecb9a))
|
42
|
+
* exercise connection pool in tests ([#60](https://github.com/prelude-so/ruby-sdk/issues/60)) ([6ef2d3c](https://github.com/prelude-so/ruby-sdk/commit/6ef2d3c6e5f44e4dd6d3c9f318f836c2ee4c46ea))
|
43
|
+
* expose base client options as read only attributes ([397ae23](https://github.com/prelude-so/ruby-sdk/commit/397ae23f3142b5bae21f0b6e3834194a44c22f75))
|
44
|
+
* expose recursive `#to_h` conversion ([28070c1](https://github.com/prelude-so/ruby-sdk/commit/28070c1e8b9c84a8db990be89594e1b686e89274))
|
45
|
+
* generate enum examples ([#38](https://github.com/prelude-so/ruby-sdk/issues/38)) ([7f5df13](https://github.com/prelude-so/ruby-sdk/commit/7f5df13d2baf801a06cad3439c2b27fa83fd0e8d))
|
46
|
+
* generate enum examples ([#45](https://github.com/prelude-so/ruby-sdk/issues/45)) ([8c350e5](https://github.com/prelude-so/ruby-sdk/commit/8c350e5a7d242d532002a2655b61d1c8ba7bd91e))
|
47
|
+
* generate enum examples ([#49](https://github.com/prelude-so/ruby-sdk/issues/49)) ([5ed025f](https://github.com/prelude-so/ruby-sdk/commit/5ed025f03750023f097fb548ebf9ab36e9f64cd7))
|
48
|
+
* generate nested intersections classes ([#41](https://github.com/prelude-so/ruby-sdk/issues/41)) ([83eb830](https://github.com/prelude-so/ruby-sdk/commit/83eb830ee4b7e14fa6690db04922dad104c10355))
|
49
|
+
* generate some omitted class names in doc comments ([#48](https://github.com/prelude-so/ruby-sdk/issues/48)) ([6b57ba5](https://github.com/prelude-so/ruby-sdk/commit/6b57ba544b32b76d638d548353888818dd41b824))
|
50
|
+
* implement `#hash` for data containers ([4df687e](https://github.com/prelude-so/ruby-sdk/commit/4df687e67fe794475aa7c769397688037ab0384d))
|
51
|
+
* implement `to_json` for base model ([#218](https://github.com/prelude-so/ruby-sdk/issues/218)) ([9186468](https://github.com/prelude-so/ruby-sdk/commit/9186468a2ed116a9b743d2c958fe9816745d4845))
|
52
|
+
* implement subsumption operator for base classes ([#40](https://github.com/prelude-so/ruby-sdk/issues/40)) ([d01e382](https://github.com/prelude-so/ruby-sdk/commit/d01e3820ea38f2890521feb30a5d6b79be24ed01))
|
53
|
+
* implement unions ([#57](https://github.com/prelude-so/ruby-sdk/issues/57)) ([356605b](https://github.com/prelude-so/ruby-sdk/commit/356605b7e6bc63d8e919010071c36eb8ca1aedc8))
|
54
|
+
* improve `ArrayOf` DSL to use `:[]` instead of `.new` ([#36](https://github.com/prelude-so/ruby-sdk/issues/36)) ([38b71ce](https://github.com/prelude-so/ruby-sdk/commit/38b71cebf8efbbd5cad9f735951eb47f2a9cbc75))
|
55
|
+
* improve `ArrayOf` DSL to use `:[]` instead of `.new` ([#39](https://github.com/prelude-so/ruby-sdk/issues/39)) ([8dcaf94](https://github.com/prelude-so/ruby-sdk/commit/8dcaf946fbf6ff4cf00da13c7b53b28426715e61))
|
56
|
+
* improve `ArrayOf` DSL to use `:[]` instead of `.new` ([#46](https://github.com/prelude-so/ruby-sdk/issues/46)) ([f6e37e2](https://github.com/prelude-so/ruby-sdk/commit/f6e37e2445231721ae288643c3c27e62ae0126ca))
|
57
|
+
* improve `ArrayOf` DSL to use `:[]` instead of `.new` ([#51](https://github.com/prelude-so/ruby-sdk/issues/51)) ([0e4e595](https://github.com/prelude-so/ruby-sdk/commit/0e4e595b19e96191bacb5bc554bafc229aac2b52))
|
58
|
+
* improve interface readability, especially in `*.rbi` ([#94](https://github.com/prelude-so/ruby-sdk/issues/94)) ([8be7261](https://github.com/prelude-so/ruby-sdk/commit/8be7261a649e821eafb0969a557968a68f4e76ae))
|
59
|
+
* inline sorbet type aliases ([#104](https://github.com/prelude-so/ruby-sdk/issues/104)) ([4338d86](https://github.com/prelude-so/ruby-sdk/commit/4338d861ad14b580f42437f5a65f135d7c8c4d60))
|
60
|
+
* **internal:** converter interface should recurse without schema ([#203](https://github.com/prelude-so/ruby-sdk/issues/203)) ([bf88e0e](https://github.com/prelude-so/ruby-sdk/commit/bf88e0e526994dc0b5b8072571d8906860b48e40))
|
61
|
+
* **internal:** modified tests for thread and fiber safety ([#140](https://github.com/prelude-so/ruby-sdk/issues/140)) ([c06ec6c](https://github.com/prelude-so/ruby-sdk/commit/c06ec6cc7f20d8464c64ac996bc79cf89563baa5))
|
62
|
+
* isolate platform headers ([#134](https://github.com/prelude-so/ruby-sdk/issues/134)) ([a9b7ea2](https://github.com/prelude-so/ruby-sdk/commit/a9b7ea2dd63492aec0db5d6d26faf15e009614fd))
|
63
|
+
* link response models to their methods in yard doc ([#214](https://github.com/prelude-so/ruby-sdk/issues/214)) ([a8af56e](https://github.com/prelude-so/ruby-sdk/commit/a8af56e4a49277a2c86a422f8e7d88a299849fb7))
|
64
|
+
* make `build_request` overridable ([#128](https://github.com/prelude-so/ruby-sdk/issues/128)) ([726dd54](https://github.com/prelude-so/ruby-sdk/commit/726dd54f2ac020f795f30668f3b39216eb2cf388))
|
65
|
+
* more consistent ArrayOf and HashOf DSL with re: lambda usage ([#72](https://github.com/prelude-so/ruby-sdk/issues/72)) ([f78f172](https://github.com/prelude-so/ruby-sdk/commit/f78f1723b4749eebfbc66a8727b307799ae76b72))
|
66
|
+
* prevent tapioca from introspecting the gem internals ([#194](https://github.com/prelude-so/ruby-sdk/issues/194)) ([c72698b](https://github.com/prelude-so/ruby-sdk/commit/c72698b1c35dc27e80210bacc35e89c00183d16b))
|
67
|
+
* remove top level type aliases to relocated classes ([#221](https://github.com/prelude-so/ruby-sdk/issues/221)) ([f39c6b3](https://github.com/prelude-so/ruby-sdk/commit/f39c6b3e74c122c5336d69fb434a333dcd35b152))
|
68
|
+
* render yard docs with hash and nil? info ([#55](https://github.com/prelude-so/ruby-sdk/issues/55)) ([26d105e](https://github.com/prelude-so/ruby-sdk/commit/26d105e98bef71f6bdfb8e639089e0ca8f68d61c))
|
69
|
+
* ruby add nilability annotations ([#79](https://github.com/prelude-so/ruby-sdk/issues/79)) ([5f18508](https://github.com/prelude-so/ruby-sdk/commit/5f1850870848441bd52900673a05a15084909951))
|
70
|
+
* run rubocop in multiple processes when formatting ([#75](https://github.com/prelude-so/ruby-sdk/issues/75)) ([b93f3fe](https://github.com/prelude-so/ruby-sdk/commit/b93f3fe50c46358e5dbc248d729b145843e8a74e))
|
71
|
+
* support `for item in stream` style iteration on `Stream`s ([#188](https://github.com/prelude-so/ruby-sdk/issues/188)) ([d146304](https://github.com/prelude-so/ruby-sdk/commit/d1463042d75b5f3244c08260c3adaf03a8e6f545))
|
72
|
+
* support client level methods ([#155](https://github.com/prelude-so/ruby-sdk/issues/155)) ([7ff2321](https://github.com/prelude-so/ruby-sdk/commit/7ff2321ed3ed4f91bc7f613e37d3d1e510a5267c))
|
73
|
+
* support const enums ([#84](https://github.com/prelude-so/ruby-sdk/issues/84)) ([b4787b4](https://github.com/prelude-so/ruby-sdk/commit/b4787b4a892d7e8c5e27021deceec6d30f3cd3f8))
|
74
|
+
* support jsonl uploads ([#166](https://github.com/prelude-so/ruby-sdk/issues/166)) ([34c4709](https://github.com/prelude-so/ruby-sdk/commit/34c47091cf1b975a528b5beb226926ac332f167f))
|
75
|
+
* support overlapping HTTP requests in same Fiber ([#119](https://github.com/prelude-so/ruby-sdk/issues/119)) ([439bca7](https://github.com/prelude-so/ruby-sdk/commit/439bca7399d583806bde009929c449c1ca0636d9))
|
76
|
+
* support query, header, and body params that have identical names ([#231](https://github.com/prelude-so/ruby-sdk/issues/231)) ([fa64b8f](https://github.com/prelude-so/ruby-sdk/commit/fa64b8f33a835c118d42b7440e3378414b57029c))
|
77
|
+
* support solargraph generics ([#225](https://github.com/prelude-so/ruby-sdk/issues/225)) ([1336e14](https://github.com/prelude-so/ruby-sdk/commit/1336e14ff156ec78920ce45501798858d7f32da3))
|
78
|
+
* support sorbet aliases at the runtime ([f8a0812](https://github.com/prelude-so/ruby-sdk/commit/f8a0812a8131c6a962ebf43d637758d709966781))
|
79
|
+
* support specifying content-type with FilePart class ([9d73a4b](https://github.com/prelude-so/ruby-sdk/commit/9d73a4ba64e17bba6b2f609b5c30be5570eca600))
|
80
|
+
* support streaming uploads ([#160](https://github.com/prelude-so/ruby-sdk/issues/160)) ([1634acd](https://github.com/prelude-so/ruby-sdk/commit/1634acdf47a7c2014dda83a16fbfb24410f450ed))
|
81
|
+
* support webmock for testing ([f2211db](https://github.com/prelude-so/ruby-sdk/commit/f2211db0b5530f776c549de22762b97f9921d728))
|
82
|
+
* unify param & return types in yard ([#89](https://github.com/prelude-so/ruby-sdk/issues/89)) ([3c2fe3e](https://github.com/prelude-so/ruby-sdk/commit/3c2fe3e04c87b1391e2fc518ab6f1307c9dd4256))
|
83
|
+
* use Pathname alongside raw IO handles for file uploads ([#245](https://github.com/prelude-so/ruby-sdk/issues/245)) ([4a896ed](https://github.com/prelude-so/ruby-sdk/commit/4a896ed8025e9c42a8ca943540bdaa923eaef341))
|
84
|
+
* use tagged enums in sorbet type definitions ([#190](https://github.com/prelude-so/ruby-sdk/issues/190)) ([ef39c87](https://github.com/prelude-so/ruby-sdk/commit/ef39c87691e1c982d83c0c0c588c5e05d0c4ab46))
|
85
|
+
|
86
|
+
|
87
|
+
### Bug Fixes
|
88
|
+
|
89
|
+
* `to_sorbet_type` should not return branded types ([fe642ed](https://github.com/prelude-so/ruby-sdk/commit/fe642ed9fcf0bc32517632602c2634cddb236656))
|
90
|
+
* always send idempotency header when specified as a request option ([980ae78](https://github.com/prelude-so/ruby-sdk/commit/980ae781b6515ec0992210c49aa4afaefac446a8))
|
91
|
+
* bad documentation url for gemdocs.org ([#177](https://github.com/prelude-so/ruby-sdk/issues/177)) ([c71528f](https://github.com/prelude-so/ruby-sdk/commit/c71528f3c10aea180895ed6031e851d7cd7c969c))
|
92
|
+
* base client type annotations ([#100](https://github.com/prelude-so/ruby-sdk/issues/100)) ([834b49a](https://github.com/prelude-so/ruby-sdk/commit/834b49a9fd4d457cf4b0b14c384a8b4745727069))
|
93
|
+
* base page should be module instead of class ([#91](https://github.com/prelude-so/ruby-sdk/issues/91)) ([ba5d54f](https://github.com/prelude-so/ruby-sdk/commit/ba5d54f0533c5a275895d30a7d55c883fce9699f))
|
94
|
+
* better support header parameters ([#141](https://github.com/prelude-so/ruby-sdk/issues/141)) ([dc93295](https://github.com/prelude-so/ruby-sdk/commit/dc93295278daa1361ed3364862ba499a2bc36270))
|
95
|
+
* **ci:** release-doctor — report correct token name ([b6c02d9](https://github.com/prelude-so/ruby-sdk/commit/b6c02d9286b549378bd35199e4125fb5b5203c07))
|
96
|
+
* **client:** send correct HTTP path ([a375a6a](https://github.com/prelude-so/ruby-sdk/commit/a375a6a617d38ad81e1cd4c18f2093c233fb772a))
|
97
|
+
* converter should transform stringio into string where applicable ([#234](https://github.com/prelude-so/ruby-sdk/issues/234)) ([1eeb6b8](https://github.com/prelude-so/ruby-sdk/commit/1eeb6b8fb06e172327b256e6cd1145b95b0c5aec))
|
98
|
+
* correctly annotate nil values in yard ([#63](https://github.com/prelude-so/ruby-sdk/issues/63)) ([a8c4446](https://github.com/prelude-so/ruby-sdk/commit/a8c4446cc1efd8bccd6832596e6232cfab982d4b))
|
99
|
+
* correctly geneate array and map schemas with models ([#54](https://github.com/prelude-so/ruby-sdk/issues/54)) ([4105566](https://github.com/prelude-so/ruby-sdk/commit/4105566fd6972fd705d2027d9226d4bf090eb77c))
|
100
|
+
* correctly instantiate sorbet type aliases for enums and unions ([f68d267](https://github.com/prelude-so/ruby-sdk/commit/f68d267258e10e16c3878a5c578978901ec5ca7e))
|
101
|
+
* correctly mark optional arrays and hashes as nullable ([#95](https://github.com/prelude-so/ruby-sdk/issues/95)) ([753ebb9](https://github.com/prelude-so/ruby-sdk/commit/753ebb9d1e92473b4587f5a39483fbcd4e44c3f4))
|
102
|
+
* correctly mark some error values as optional ([#67](https://github.com/prelude-so/ruby-sdk/issues/67)) ([3426e92](https://github.com/prelude-so/ruby-sdk/commit/3426e920eb58325a6ba9e18a404ff7f85825c80a))
|
103
|
+
* default content-type for text in multi-part formdata uploads should be text/plain ([c4122bf](https://github.com/prelude-so/ruby-sdk/commit/c4122bf55fbb4de6aa18cfaa8a997487fa1223bf))
|
104
|
+
* encode objects in multipart encoding as JSON ([#97](https://github.com/prelude-so/ruby-sdk/issues/97)) ([38350ea](https://github.com/prelude-so/ruby-sdk/commit/38350ea72be2e4511b32320564382a65c7965001))
|
105
|
+
* ensure gem release is unaffected by renaming ([d190dad](https://github.com/prelude-so/ruby-sdk/commit/d190dad48ea81deac8fce6f03d6bda8ee915814e))
|
106
|
+
* enums should only coerce matching symbols into strings ([#161](https://github.com/prelude-so/ruby-sdk/issues/161)) ([e65e1c9](https://github.com/prelude-so/ruby-sdk/commit/e65e1c90e751981420b919c0ab51845d97e234c4))
|
107
|
+
* error classes did not call `.to_s` on error uri ([#61](https://github.com/prelude-so/ruby-sdk/issues/61)) ([f9798ca](https://github.com/prelude-so/ruby-sdk/commit/f9798cadbb003dad9cd95b9d3b7491ed88e50b83))
|
108
|
+
* inaccuracies in the README.md ([493bf9b](https://github.com/prelude-so/ruby-sdk/commit/493bf9bec45a5a6d69b042aa5c30659a423dce2f))
|
109
|
+
* **internal:** ensure formatting always uses c.utf-8 locale ([2124205](https://github.com/prelude-so/ruby-sdk/commit/21242056a47780ff9c4292bf72a3f70fdf43a573))
|
110
|
+
* **internal:** fix formatting script for macos ([7f52102](https://github.com/prelude-so/ruby-sdk/commit/7f52102f181ecbd698b9718c22f0043989ed0872))
|
111
|
+
* **internal:** update gemspec name ([4dab0c8](https://github.com/prelude-so/ruby-sdk/commit/4dab0c822911b8a9cf92f4f50453974a1d327b60))
|
112
|
+
* **internal:** update release-please to use ruby strategy for README.md ([#249](https://github.com/prelude-so/ruby-sdk/issues/249)) ([b5ef517](https://github.com/prelude-so/ruby-sdk/commit/b5ef5179f0e6dee4914c9c99ce04fa884b49e8ba))
|
113
|
+
* issue where we cannot mutate arrays on base model derivatives ([9f3b95a](https://github.com/prelude-so/ruby-sdk/commit/9f3b95a0d90ac21d66358960a70f12416d8d4a26))
|
114
|
+
* label optional keyword arguments in *.rbs type definitions ([#186](https://github.com/prelude-so/ruby-sdk/issues/186)) ([a8a351c](https://github.com/prelude-so/ruby-sdk/commit/a8a351c8769b30aed7f0d37f271230e88008d7ff))
|
115
|
+
* make a typo for `FilePart.content` ([de88a13](https://github.com/prelude-so/ruby-sdk/commit/de88a13840d28db004bbcea68b7426b859774a03))
|
116
|
+
* **model:** base model should recursively store coerced base models ([#178](https://github.com/prelude-so/ruby-sdk/issues/178)) ([b0c3785](https://github.com/prelude-so/ruby-sdk/commit/b0c3785ec865e19a9c9fc4e5c7270b7d2b0be2f6))
|
117
|
+
* path interpolation template strings ([#211](https://github.com/prelude-so/ruby-sdk/issues/211)) ([c687281](https://github.com/prelude-so/ruby-sdk/commit/c6872810c5d603636ab9b14a5c912fcf8538446d))
|
118
|
+
* pre-release version string should match ruby, not semver conventions ([#224](https://github.com/prelude-so/ruby-sdk/issues/224)) ([d847726](https://github.com/prelude-so/ruby-sdk/commit/d847726126befe8a184f9994a4c4d0acdf5cae23))
|
119
|
+
* prevent rubocop from mangling `===` to `is_a?` check ([34836e6](https://github.com/prelude-so/ruby-sdk/commit/34836e6207f747f02785217dc83e23f6c75a25c8))
|
120
|
+
* raise connection error for errors that result from HTTP transports ([#246](https://github.com/prelude-so/ruby-sdk/issues/246)) ([2c0914d](https://github.com/prelude-so/ruby-sdk/commit/2c0914de47ffbbf0cf18b48f2fbcd1d50b6d3c86))
|
121
|
+
* rectify a mistake where wrong lines were chosen during rebase ([#156](https://github.com/prelude-so/ruby-sdk/issues/156)) ([fedcda4](https://github.com/prelude-so/ruby-sdk/commit/fedcda4c27e6614cb13cb76447220e6fa3ef3cff))
|
122
|
+
* resolve tapioca derived sorbet errors ([#189](https://github.com/prelude-so/ruby-sdk/issues/189)) ([ddb842c](https://github.com/prelude-so/ruby-sdk/commit/ddb842ca54d18c95337542ffb344240f0267761d))
|
123
|
+
* sorbet request method signatures should support default values ([#103](https://github.com/prelude-so/ruby-sdk/issues/103)) ([0146ba5](https://github.com/prelude-so/ruby-sdk/commit/0146ba5a66479f330b6de40401bb6dbc23af22d8))
|
124
|
+
* sorbet types for enums, and make tapioca detection ignore `tapioca dsl` ([fda883a](https://github.com/prelude-so/ruby-sdk/commit/fda883af90eafc031881e61c1c1404f4567950e6))
|
125
|
+
* ssl timeout not required when TCP socket open timeout specified ([#120](https://github.com/prelude-so/ruby-sdk/issues/120)) ([6b0e37b](https://github.com/prelude-so/ruby-sdk/commit/6b0e37b0a18ec258b287a8f49f6ca90dd76cba52))
|
126
|
+
* switch to github compatible markdown engine ([#208](https://github.com/prelude-so/ruby-sdk/issues/208)) ([bc81111](https://github.com/prelude-so/ruby-sdk/commit/bc811118eaa4f26e485071cd47f94bfdf2360dcf))
|
127
|
+
* temporarily run CI without bundler cache ([#106](https://github.com/prelude-so/ruby-sdk/issues/106)) ([e1e2cc2](https://github.com/prelude-so/ruby-sdk/commit/e1e2cc2afff0876f05905e19d96eb1e01077d8e7))
|
128
|
+
* **type signature:** remove extraneous `params` from resource methods ([#96](https://github.com/prelude-so/ruby-sdk/issues/96)) ([4005265](https://github.com/prelude-so/ruby-sdk/commit/4005265f9ee7e6d09863d49d5dba6981e8faf41b))
|
129
|
+
* update outdated examples ([#102](https://github.com/prelude-so/ruby-sdk/issues/102)) ([b433b8a](https://github.com/prelude-so/ruby-sdk/commit/b433b8a0333be88238340768ada7c780ac0ad0c7))
|
130
|
+
* yard example tag formatting ([#192](https://github.com/prelude-so/ruby-sdk/issues/192)) ([2653958](https://github.com/prelude-so/ruby-sdk/commit/265395868b6260166fc8de6e2a56104a0ca00ef9))
|
131
|
+
|
132
|
+
|
133
|
+
### Chores
|
134
|
+
|
135
|
+
* `BaseModel` fields that are `BaseModel` typed should also accept `Hash` ([#191](https://github.com/prelude-so/ruby-sdk/issues/191)) ([25bba5d](https://github.com/prelude-so/ruby-sdk/commit/25bba5d9bce169a2c6f370f27579e6247fc7a5d5))
|
136
|
+
* accept all nd-json mimetype variants ([a0666cb](https://github.com/prelude-so/ruby-sdk/commit/a0666cb0ca1dea0e179a06c081443c3d53ac4e83))
|
137
|
+
* add `[@yieldparam](https://github.com/yieldparam)` to yard doc ([#182](https://github.com/prelude-so/ruby-sdk/issues/182)) ([c9f7a9a](https://github.com/prelude-so/ruby-sdk/commit/c9f7a9a26e0f088fc8d61ac25a1b84243ee7ab8b))
|
138
|
+
* add `sorbet` section to README ([#153](https://github.com/prelude-so/ruby-sdk/issues/153)) ([e7f096c](https://github.com/prelude-so/ruby-sdk/commit/e7f096cb80519a1944edd086f313f30ad3a83892))
|
139
|
+
* add example directory ([#185](https://github.com/prelude-so/ruby-sdk/issues/185)) ([8383b4f](https://github.com/prelude-so/ruby-sdk/commit/8383b4f93955360f7b27671c02fef9751c626e28))
|
140
|
+
* add generator safe directory ([41e15a6](https://github.com/prelude-so/ruby-sdk/commit/41e15a682e948b7315fff3e7ec76b786154cc67a))
|
141
|
+
* add more examples to README.md ([#154](https://github.com/prelude-so/ruby-sdk/issues/154)) ([2a34b0f](https://github.com/prelude-so/ruby-sdk/commit/2a34b0fd4fe1df6d7df451face56c0fe1ca9db81))
|
142
|
+
* add more private yard doc annotations ([#52](https://github.com/prelude-so/ruby-sdk/issues/52)) ([89d2c14](https://github.com/prelude-so/ruby-sdk/commit/89d2c147f746e100ecc52475f4690e0734010ede))
|
143
|
+
* add most doc strings to rbi type definitions ([#167](https://github.com/prelude-so/ruby-sdk/issues/167)) ([fa65710](https://github.com/prelude-so/ruby-sdk/commit/fa657101d0fe02a6e0409f5aada47a4447e98b21))
|
144
|
+
* add README docs for using solargraph when installing gem from git ([#244](https://github.com/prelude-so/ruby-sdk/issues/244)) ([a1b7cd4](https://github.com/prelude-so/ruby-sdk/commit/a1b7cd49bc3b46d4ae862387bde7042be5f435f3))
|
145
|
+
* add type annotations for enum and union member listing methods ([#193](https://github.com/prelude-so/ruby-sdk/issues/193)) ([41f7600](https://github.com/prelude-so/ruby-sdk/commit/41f76001a8bdfa5963d430fcc23e74f2e911e5bf))
|
146
|
+
* add type annotations for requester ([#129](https://github.com/prelude-so/ruby-sdk/issues/129)) ([a3df0bb](https://github.com/prelude-so/ruby-sdk/commit/a3df0bb5440894a46d8c7285adcd6a92f2b1e897))
|
147
|
+
* adjust method param class position in yard doc for convenience ([#68](https://github.com/prelude-so/ruby-sdk/issues/68)) ([8253543](https://github.com/prelude-so/ruby-sdk/commit/825354354ca42da449a15f0055bd8afe7d213024))
|
148
|
+
* adjust whitespace in comments ([#64](https://github.com/prelude-so/ruby-sdk/issues/64)) ([f3d8496](https://github.com/prelude-so/ruby-sdk/commit/f3d84960c826c93a36a1ea18a0e543c62651cacc))
|
149
|
+
* always fold up method bodies in sorbet type definitions ([#238](https://github.com/prelude-so/ruby-sdk/issues/238)) ([1001b2b](https://github.com/prelude-so/ruby-sdk/commit/1001b2bf841569bfa5729fc0e18bd5cb2de738d9))
|
150
|
+
* be consistent and use lower case headers everywhere ([#142](https://github.com/prelude-so/ruby-sdk/issues/142)) ([791edfa](https://github.com/prelude-so/ruby-sdk/commit/791edfa611395f61a5dc385913a4c06e61b4c6a7))
|
151
|
+
* broadly detect json family of content-type headers ([6b605ee](https://github.com/prelude-so/ruby-sdk/commit/6b605eeb41ee645b2bd95b57cb5a139d93c9e89f))
|
152
|
+
* bump lockfile ([#123](https://github.com/prelude-so/ruby-sdk/issues/123)) ([db0e1ac](https://github.com/prelude-so/ruby-sdk/commit/db0e1ac0768711ef779b43b4a077a0af480036da))
|
153
|
+
* bump lockfile ([#145](https://github.com/prelude-so/ruby-sdk/issues/145)) ([e97bb56](https://github.com/prelude-so/ruby-sdk/commit/e97bb568ed58198a6693c22e59894fa5d21e4f43))
|
154
|
+
* **ci:** add timeout thresholds for CI jobs ([e3382e8](https://github.com/prelude-so/ruby-sdk/commit/e3382e82f669532f26e5ffbc82449fa1108f5b3f))
|
155
|
+
* **ci:** enable for pull requests ([d24a637](https://github.com/prelude-so/ruby-sdk/commit/d24a6370acbf5c34edc4f07bb96e47dec864f42d))
|
156
|
+
* **ci:** link to correct github repo ([9de03d9](https://github.com/prelude-so/ruby-sdk/commit/9de03d9ba18d2a293cc47a9c0cc936601b469b7c))
|
157
|
+
* **ci:** only run for pushes and fork pull requests ([7ca7f77](https://github.com/prelude-so/ruby-sdk/commit/7ca7f77a9364bd1deb56014ef4e66e543e908523))
|
158
|
+
* **ci:** only use depot for staging repos ([e89de9b](https://github.com/prelude-so/ruby-sdk/commit/e89de9be3723256df40afcf70e6e461dee1c2f10))
|
159
|
+
* **ci:** run on more branches and use depot runners ([0030c93](https://github.com/prelude-so/ruby-sdk/commit/0030c932c677c42cc94220cb956bb882db9fe819))
|
160
|
+
* clamp timeout to range of positive floats ([#99](https://github.com/prelude-so/ruby-sdk/issues/99)) ([82157fb](https://github.com/prelude-so/ruby-sdk/commit/82157fbb877c425e0ca649140c172984e8e0b9c9))
|
161
|
+
* clean up client tests ([#121](https://github.com/prelude-so/ruby-sdk/issues/121)) ([8d3e8b1](https://github.com/prelude-so/ruby-sdk/commit/8d3e8b17f385babf00fb747d3480f7670eb9cbf2))
|
162
|
+
* consistently use string in examples, even for enums ([0bd30ee](https://github.com/prelude-so/ruby-sdk/commit/0bd30ee3b987e68661ae70eb0c81980a1110019b))
|
163
|
+
* demonstrate how to make undocumented requests in README ([#223](https://github.com/prelude-so/ruby-sdk/issues/223)) ([ab1f60c](https://github.com/prelude-so/ruby-sdk/commit/ab1f60cc1c3b082e028cc08f070585c61fca09d2))
|
164
|
+
* disable dangerous rubocop auto correct rule ([#199](https://github.com/prelude-so/ruby-sdk/issues/199)) ([2db2fc3](https://github.com/prelude-so/ruby-sdk/commit/2db2fc30aef614c171d9df970697e1e698da770e))
|
165
|
+
* disable overloads in `*.rbs` definitions for readable LSP errors ([#187](https://github.com/prelude-so/ruby-sdk/issues/187)) ([499d257](https://github.com/prelude-so/ruby-sdk/commit/499d257af3f77194b57926eac6779ab3373ad7fd))
|
166
|
+
* disable unnecessary linter rules for sorbet manifests ([#181](https://github.com/prelude-so/ruby-sdk/issues/181)) ([b46403a](https://github.com/prelude-so/ruby-sdk/commit/b46403af74660473c9c6ff4d8741275d3e9a5d00))
|
167
|
+
* do not git ignore `bin/` ([#107](https://github.com/prelude-so/ruby-sdk/issues/107)) ([aff7a1c](https://github.com/prelude-so/ruby-sdk/commit/aff7a1c018f0f9190786ccad45bea38c00217b05))
|
168
|
+
* do not label modules as abstract ([#176](https://github.com/prelude-so/ruby-sdk/issues/176)) ([d62b943](https://github.com/prelude-so/ruby-sdk/commit/d62b94375820be6e608bfc7707de2d1beeeb811e))
|
169
|
+
* do not use literals for version in type definitions ([#226](https://github.com/prelude-so/ruby-sdk/issues/226)) ([0d1c0cd](https://github.com/prelude-so/ruby-sdk/commit/0d1c0cd66b51e964a7a82545e7feb8cbadb99567))
|
170
|
+
* **docs:** grammar improvements ([1f25e66](https://github.com/prelude-so/ruby-sdk/commit/1f25e6604baf647a2f5f6c2468c3c464709fa117))
|
171
|
+
* document Client's concurrency capability ([#180](https://github.com/prelude-so/ruby-sdk/issues/180)) ([a22ea6d](https://github.com/prelude-so/ruby-sdk/commit/a22ea6d67d5efc0d1618d83536a7dfbfa93ee4fd))
|
172
|
+
* document LSP support in read me ([#230](https://github.com/prelude-so/ruby-sdk/issues/230)) ([e33ffad](https://github.com/prelude-so/ruby-sdk/commit/e33ffada8823ae5317a7648933ddf24b3809486e))
|
173
|
+
* document union variants in yard doc ([#171](https://github.com/prelude-so/ruby-sdk/issues/171)) ([55ac7e7](https://github.com/prelude-so/ruby-sdk/commit/55ac7e796363a959f40936c1dd9944481d822baa))
|
174
|
+
* documentation improvements ([f993f3c](https://github.com/prelude-so/ruby-sdk/commit/f993f3c394d1ad58288a38e287d872c15c85e587))
|
175
|
+
* easier to read examples in README.md ([#241](https://github.com/prelude-so/ruby-sdk/issues/241)) ([9673070](https://github.com/prelude-so/ruby-sdk/commit/9673070bf340ed164858c30a48613705dd2f4f62))
|
176
|
+
* ensure doc strings for rbi method arguments ([#168](https://github.com/prelude-so/ruby-sdk/issues/168)) ([7a08c8d](https://github.com/prelude-so/ruby-sdk/commit/7a08c8d3ad46401c7475ad2e852e6c48f5f3d8d6))
|
177
|
+
* ensure readme.md is bumped when release please updates versions ([#248](https://github.com/prelude-so/ruby-sdk/issues/248)) ([62f0c82](https://github.com/prelude-so/ruby-sdk/commit/62f0c82138f719236d946e60bc5e94245024cbb8))
|
178
|
+
* error fields are now mutable in keeping with rest of SDK ([#170](https://github.com/prelude-so/ruby-sdk/issues/170)) ([16a736b](https://github.com/prelude-so/ruby-sdk/commit/16a736b1ab49468bafd4606250cf8be93199c31d))
|
179
|
+
* explicitly mark apis public under `Internal` module ([f549aac](https://github.com/prelude-so/ruby-sdk/commit/f549aaccff077e04c160f56e9f1048a99acfeb2c))
|
180
|
+
* extract error classes into own module ([#219](https://github.com/prelude-so/ruby-sdk/issues/219)) ([5e21b4f](https://github.com/prelude-so/ruby-sdk/commit/5e21b4fa4f9d4469d6eae8092ca374cb6ec96604))
|
181
|
+
* fix a yard doc comment ([#86](https://github.com/prelude-so/ruby-sdk/issues/86)) ([9288401](https://github.com/prelude-so/ruby-sdk/commit/9288401f3e9a173fda89a4daae362f2cfb97f99e))
|
182
|
+
* fix lsp configuration file for local development ([f42b81e](https://github.com/prelude-so/ruby-sdk/commit/f42b81ea5bd1a248cec227458b7111fccbc9d3f0))
|
183
|
+
* fix misc linting / minor issues ([7adf0f6](https://github.com/prelude-so/ruby-sdk/commit/7adf0f6570af69c38d621fa355401bbf4695ee6e))
|
184
|
+
* fix misc rubocop errors ([#209](https://github.com/prelude-so/ruby-sdk/issues/209)) ([32743b9](https://github.com/prelude-so/ruby-sdk/commit/32743b99b6bc160fb016af751fb6951b07dda978))
|
185
|
+
* force utf-8 locale via `RUBYOPT` when formatting ([aa93887](https://github.com/prelude-so/ruby-sdk/commit/aa93887b9edf8e7f47a3eb446f0e7a2736cfc7c9))
|
186
|
+
* formatting change for `*.rbi` files ([#105](https://github.com/prelude-so/ruby-sdk/issues/105)) ([6ad8061](https://github.com/prelude-so/ruby-sdk/commit/6ad80614d3fbaa6d7d1b3537c9bf34f36ede8bea))
|
187
|
+
* fully qualify `Array` and `Hash` in rbs files to avoid collisions ([#110](https://github.com/prelude-so/ruby-sdk/issues/110)) ([38ab4b5](https://github.com/prelude-so/ruby-sdk/commit/38ab4b5d743fc99aad85efc62ec3f1356cfdddf3))
|
188
|
+
* fused enum should use faster internal iteration by default ([#158](https://github.com/prelude-so/ruby-sdk/issues/158)) ([192338d](https://github.com/prelude-so/ruby-sdk/commit/192338d331982fda6ee28bc9d2a8e067b7c1b21a))
|
189
|
+
* generate better supported rbi signatures ([#150](https://github.com/prelude-so/ruby-sdk/issues/150)) ([41144d1](https://github.com/prelude-so/ruby-sdk/commit/41144d1014acf64d456aa0bb957f5e8920a57990))
|
190
|
+
* ignore some spurious linter warnings and formatting changes ([#179](https://github.com/prelude-so/ruby-sdk/issues/179)) ([9e81ccf](https://github.com/prelude-so/ruby-sdk/commit/9e81ccf8b4b266a72a0ffc783596ed3c000b8b72))
|
191
|
+
* improve documentation ([#159](https://github.com/prelude-so/ruby-sdk/issues/159)) ([d7b346d](https://github.com/prelude-so/ruby-sdk/commit/d7b346d09f515f934e89583a567e624f6f5066ff))
|
192
|
+
* improve uri interpolation internals ([#73](https://github.com/prelude-so/ruby-sdk/issues/73)) ([2aa7a43](https://github.com/prelude-so/ruby-sdk/commit/2aa7a4328580b2c1e0dcbd62ded93c8892a1abef))
|
193
|
+
* improve yard doc folding and reduce repetition ([#83](https://github.com/prelude-so/ruby-sdk/issues/83)) ([840a43a](https://github.com/prelude-so/ruby-sdk/commit/840a43a3d6ace7ea0f01c0d924d8113d78353f5b))
|
194
|
+
* improve yard docs readability ([#213](https://github.com/prelude-so/ruby-sdk/issues/213)) ([b434e18](https://github.com/prelude-so/ruby-sdk/commit/b434e18f4d27560d4fcbb337288616e909c35dff))
|
195
|
+
* **internal:** add sorbet config for SDK local development ([#184](https://github.com/prelude-so/ruby-sdk/issues/184)) ([03b1b56](https://github.com/prelude-so/ruby-sdk/commit/03b1b569a1d44b50ac2fe2c8b67b5cd9725cdae9))
|
196
|
+
* **internal:** add utils methods for parsing SSE ([#143](https://github.com/prelude-so/ruby-sdk/issues/143)) ([67a6004](https://github.com/prelude-so/ruby-sdk/commit/67a600456f93d587d181bfd880c1a623bdffd534))
|
197
|
+
* **internal:** always run post-processing when formatting when syntax_tree ([3ec78ae](https://github.com/prelude-so/ruby-sdk/commit/3ec78aee495d3226f8d4e5d2f26485fd360142c8))
|
198
|
+
* **internal:** annotate request options with type aliases in sorbet ([a6635f1](https://github.com/prelude-so/ruby-sdk/commit/a6635f15668ecef2d3ff10d289ecfff32d696b13))
|
199
|
+
* **internal:** codegen related update ([c5df60f](https://github.com/prelude-so/ruby-sdk/commit/c5df60f92c2bd977467e7b5451fdb53da0a339d8))
|
200
|
+
* **internal:** codegen related update ([5978d73](https://github.com/prelude-so/ruby-sdk/commit/5978d73cd9df88d79d8ee5627c8fc112d970d23a))
|
201
|
+
* **internal:** codegen related update ([0015460](https://github.com/prelude-so/ruby-sdk/commit/0015460e0df0d2cbc0c4aad4cdb5384aacd1d1e8))
|
202
|
+
* **internal:** codegen related update ([#109](https://github.com/prelude-so/ruby-sdk/issues/109)) ([c1d18c0](https://github.com/prelude-so/ruby-sdk/commit/c1d18c0567eaed1f03b259d0767cb5791d4d3f34))
|
203
|
+
* **internal:** codegen related update ([#111](https://github.com/prelude-so/ruby-sdk/issues/111)) ([18acd8a](https://github.com/prelude-so/ruby-sdk/commit/18acd8adae60d1c8738f5ec00cc3848b2bfc9612))
|
204
|
+
* **internal:** codegen related update ([#112](https://github.com/prelude-so/ruby-sdk/issues/112)) ([ac62f9a](https://github.com/prelude-so/ruby-sdk/commit/ac62f9ae5ee2bc88f3cb5f5756fae16ca90e4aa8))
|
205
|
+
* **internal:** codegen related update ([#113](https://github.com/prelude-so/ruby-sdk/issues/113)) ([1492625](https://github.com/prelude-so/ruby-sdk/commit/1492625a539ec4f2737af64a59e41af8e8c5ae28))
|
206
|
+
* **internal:** codegen related update ([#115](https://github.com/prelude-so/ruby-sdk/issues/115)) ([11fa48a](https://github.com/prelude-so/ruby-sdk/commit/11fa48a1392219381cb16145e5f557eaffc44c4e))
|
207
|
+
* **internal:** codegen related update ([#118](https://github.com/prelude-so/ruby-sdk/issues/118)) ([b823494](https://github.com/prelude-so/ruby-sdk/commit/b8234949d99a79ec126b335df9852bdf05eba0d2))
|
208
|
+
* **internal:** codegen related update ([#137](https://github.com/prelude-so/ruby-sdk/issues/137)) ([aeb43d6](https://github.com/prelude-so/ruby-sdk/commit/aeb43d6402e67d4c005b590ad8e1bfa193b8c51d))
|
209
|
+
* **internal:** codegen related update ([#138](https://github.com/prelude-so/ruby-sdk/issues/138)) ([63b9a6a](https://github.com/prelude-so/ruby-sdk/commit/63b9a6aac611bfb7471964df6c093f921ab7f9b8))
|
210
|
+
* **internal:** codegen related update ([#215](https://github.com/prelude-so/ruby-sdk/issues/215)) ([18a2bf7](https://github.com/prelude-so/ruby-sdk/commit/18a2bf7d71362405627e95874f738249a7c3a44c))
|
211
|
+
* **internal:** codegen related update ([#30](https://github.com/prelude-so/ruby-sdk/issues/30)) ([fce8e4e](https://github.com/prelude-so/ruby-sdk/commit/fce8e4ede9f1d5fd86acccc953f0cff7b9ba69bf))
|
212
|
+
* **internal:** codegen related update ([#31](https://github.com/prelude-so/ruby-sdk/issues/31)) ([8b30e12](https://github.com/prelude-so/ruby-sdk/commit/8b30e120e0c90319e138570c53839a58795c6d53))
|
213
|
+
* **internal:** codegen related update ([#32](https://github.com/prelude-so/ruby-sdk/issues/32)) ([08760bf](https://github.com/prelude-so/ruby-sdk/commit/08760bf824d3905c4d5bce789c826b70ccf76d6a))
|
214
|
+
* **internal:** codegen related update ([#33](https://github.com/prelude-so/ruby-sdk/issues/33)) ([3e49b9e](https://github.com/prelude-so/ruby-sdk/commit/3e49b9ea7759648d280f23cd30fcd716d2bed265))
|
215
|
+
* **internal:** codegen related update ([#34](https://github.com/prelude-so/ruby-sdk/issues/34)) ([e53b14d](https://github.com/prelude-so/ruby-sdk/commit/e53b14d3a3f3b4093767c0cf2a8ae9e681638837))
|
216
|
+
* **internal:** codegen related update ([#35](https://github.com/prelude-so/ruby-sdk/issues/35)) ([c84e8fd](https://github.com/prelude-so/ruby-sdk/commit/c84e8fd5455a86fb670e392e6eafa62bc66b03a1))
|
217
|
+
* **internal:** codegen related update ([#37](https://github.com/prelude-so/ruby-sdk/issues/37)) ([f5e2be1](https://github.com/prelude-so/ruby-sdk/commit/f5e2be1664deccd5162c0ed9ebbeb4bb91eaa71c))
|
218
|
+
* **internal:** codegen related update ([#42](https://github.com/prelude-so/ruby-sdk/issues/42)) ([b0b9c79](https://github.com/prelude-so/ruby-sdk/commit/b0b9c790a23f3892ac74ec4ac957f88b6e4196df))
|
219
|
+
* **internal:** codegen related update ([#43](https://github.com/prelude-so/ruby-sdk/issues/43)) ([4e0a150](https://github.com/prelude-so/ruby-sdk/commit/4e0a1508a73310f48696cc2ec318cb0c33e2d6be))
|
220
|
+
* **internal:** codegen related update ([#44](https://github.com/prelude-so/ruby-sdk/issues/44)) ([aa4d832](https://github.com/prelude-so/ruby-sdk/commit/aa4d832530a903a0239b0cf1fa0e9d8facce70fe))
|
221
|
+
* **internal:** codegen related update ([#47](https://github.com/prelude-so/ruby-sdk/issues/47)) ([74b1dfe](https://github.com/prelude-so/ruby-sdk/commit/74b1dfe7db2b38fdd82072f1d48d902e7d42f53f))
|
222
|
+
* **internal:** codegen related update ([#56](https://github.com/prelude-so/ruby-sdk/issues/56)) ([0ebafe6](https://github.com/prelude-so/ruby-sdk/commit/0ebafe63182c0ff32f2ea727fdf26927a72098b0))
|
223
|
+
* **internal:** codegen related update ([#59](https://github.com/prelude-so/ruby-sdk/issues/59)) ([5629580](https://github.com/prelude-so/ruby-sdk/commit/56295805567534074cb44cfa2f053056d464c375))
|
224
|
+
* **internal:** codegen related update ([#62](https://github.com/prelude-so/ruby-sdk/issues/62)) ([df7042a](https://github.com/prelude-so/ruby-sdk/commit/df7042a6a7649d5d19c5e4c32ceed13c1efb9ddd))
|
225
|
+
* **internal:** codegen related update ([#69](https://github.com/prelude-so/ruby-sdk/issues/69)) ([3212dd9](https://github.com/prelude-so/ruby-sdk/commit/3212dd9756c673853b2223fec3787d6af89837a1))
|
226
|
+
* **internal:** codegen related update ([#87](https://github.com/prelude-so/ruby-sdk/issues/87)) ([0dce20b](https://github.com/prelude-so/ruby-sdk/commit/0dce20b573cd779318ef5112eb7f994bb0393046))
|
227
|
+
* **internal:** codegen related update ([#93](https://github.com/prelude-so/ruby-sdk/issues/93)) ([310d0a8](https://github.com/prelude-so/ruby-sdk/commit/310d0a87ce0638be7e8ba6f32024f95377a952ba))
|
228
|
+
* **internal:** contribute.md and contributor QoL improvements ([d7f3a0d](https://github.com/prelude-so/ruby-sdk/commit/d7f3a0df33e7a5c5ed596a2d78ce4ba899d99d58))
|
229
|
+
* **internal:** expand CI branch coverage ([#250](https://github.com/prelude-so/ruby-sdk/issues/250)) ([263020d](https://github.com/prelude-so/ruby-sdk/commit/263020d0297a2856ce165f1188939507bbb34bb1))
|
230
|
+
* **internal:** formatting ([#122](https://github.com/prelude-so/ruby-sdk/issues/122)) ([34a9c09](https://github.com/prelude-so/ruby-sdk/commit/34a9c0948a5fafa65969f6501432f25de28a7831))
|
231
|
+
* **internal:** group related utils together ([#136](https://github.com/prelude-so/ruby-sdk/issues/136)) ([f5b2158](https://github.com/prelude-so/ruby-sdk/commit/f5b2158270550d6d986818d15f4aa854ae317ebd))
|
232
|
+
* **internal:** improve response envelope unwrap functionality ([0312399](https://github.com/prelude-so/ruby-sdk/commit/031239990cf3b3c16b2837e1761f3d754f08cf09))
|
233
|
+
* **internal:** improve sdk internal docs / types ([#66](https://github.com/prelude-so/ruby-sdk/issues/66)) ([82c6527](https://github.com/prelude-so/ruby-sdk/commit/82c65271be6efd77e48a8d7c6db2182c83317a17))
|
234
|
+
* **internal:** loosen internal type restrictions ([aae6132](https://github.com/prelude-so/ruby-sdk/commit/aae613236b3fda2e9f9d8a9f181cd415dd920bfd))
|
235
|
+
* **internal:** minor refactoring of utils ([#202](https://github.com/prelude-so/ruby-sdk/issues/202)) ([6ac6f5d](https://github.com/prelude-so/ruby-sdk/commit/6ac6f5d800dc146bc5b5399afb4eb5f03b8f3290))
|
236
|
+
* **internal:** minor touch ups on sdk internals ([47370b7](https://github.com/prelude-so/ruby-sdk/commit/47370b7621a6b282925d25e85ad71c70a3162bd6))
|
237
|
+
* **internal:** minor type annotation improvements ([34ef6c9](https://github.com/prelude-so/ruby-sdk/commit/34ef6c94b3d09b78f7eec7736c98e937b2d0f046))
|
238
|
+
* **internal:** misc small improvements ([#235](https://github.com/prelude-so/ruby-sdk/issues/235)) ([f5419b8](https://github.com/prelude-so/ruby-sdk/commit/f5419b80e6f905a2a4f6670811916c2a068a274e))
|
239
|
+
* **internal:** more concise handling of parameter naming conflicts ([#240](https://github.com/prelude-so/ruby-sdk/issues/240)) ([f481e73](https://github.com/prelude-so/ruby-sdk/commit/f481e73e3169e8bfe7061d64f5dccdf4e85969f8))
|
240
|
+
* **internal:** mostly README touch ups ([e9cdcfd](https://github.com/prelude-so/ruby-sdk/commit/e9cdcfdf1da34a893f7e7eace5190519ce995ba0))
|
241
|
+
* **internal:** protect SSE parsing pipeline from broken UTF-8 characters ([ab3d5aa](https://github.com/prelude-so/ruby-sdk/commit/ab3d5aa844e16e84b88cccac57781720569f65df))
|
242
|
+
* **internal:** prune unused `extern` references ([#132](https://github.com/prelude-so/ruby-sdk/issues/132)) ([c4203ea](https://github.com/prelude-so/ruby-sdk/commit/c4203eac8495b829ae67ec7c83913688bfa284ef))
|
243
|
+
* **internal:** reduce CI branch coverage ([6bec303](https://github.com/prelude-so/ruby-sdk/commit/6bec30350ed807116ea4ff5d0af0a2625b75d48f))
|
244
|
+
* **internal:** refactor request stack ([#127](https://github.com/prelude-so/ruby-sdk/issues/127)) ([2b9660d](https://github.com/prelude-so/ruby-sdk/commit/2b9660d4975818fda19ca0c3b855231e860c6c1d))
|
245
|
+
* **internal:** remove extra empty newlines ([#164](https://github.com/prelude-so/ruby-sdk/issues/164)) ([fa2e580](https://github.com/prelude-so/ruby-sdk/commit/fa2e580abdb2bee3eb1023e414ca5368729ab04a))
|
246
|
+
* **internal:** remove unnecessary `rbi/lib` folder ([49f6f51](https://github.com/prelude-so/ruby-sdk/commit/49f6f519672d248d98022a088315592b9fce17dd))
|
247
|
+
* **internal:** rubocop rules ([#237](https://github.com/prelude-so/ruby-sdk/issues/237)) ([8881008](https://github.com/prelude-so/ruby-sdk/commit/8881008d2d5817b93742b727d3b34b9f083f0e10))
|
248
|
+
* **internal:** run rubocop linter in parallel ([#236](https://github.com/prelude-so/ruby-sdk/issues/236)) ([64f5897](https://github.com/prelude-so/ruby-sdk/commit/64f5897a79e696820cd13fc47bbca8bd6cd49474))
|
249
|
+
* loosen const and integer coercion rules ([#247](https://github.com/prelude-so/ruby-sdk/issues/247)) ([b19ac54](https://github.com/prelude-so/ruby-sdk/commit/b19ac54096d169cdcb2d62e3b79f95a57fbe1c57))
|
250
|
+
* loosen rubocop rules that don't always make sense ([33609a8](https://github.com/prelude-so/ruby-sdk/commit/33609a864d02e409fe25bcd84b2a621ea72e0256))
|
251
|
+
* make client tests look prettier ([#243](https://github.com/prelude-so/ruby-sdk/issues/243)) ([691a94d](https://github.com/prelude-so/ruby-sdk/commit/691a94de176b9089bd765671e6b61e983d5b6102))
|
252
|
+
* make internal types pretty print ([42c2540](https://github.com/prelude-so/ruby-sdk/commit/42c2540bda20c185f078793e4db90659d2dd15c3))
|
253
|
+
* make MFA optional depending on token ([#125](https://github.com/prelude-so/ruby-sdk/issues/125)) ([7425b56](https://github.com/prelude-so/ruby-sdk/commit/7425b566a2eb4dc949b5b5f45d1ac8443c36d5b5))
|
254
|
+
* make sorbet enums easier to read ([7f29b87](https://github.com/prelude-so/ruby-sdk/commit/7f29b87ea0204a19556247014297ef88b52dcd74))
|
255
|
+
* mark non-inheritable SDK internal classes as final ([#173](https://github.com/prelude-so/ruby-sdk/issues/173)) ([3c22dcb](https://github.com/prelude-so/ruby-sdk/commit/3c22dcbf7620fd1ddb7ba24e51b16ceda22a1c1e))
|
256
|
+
* migrate away from deprecated `JSON#fast_generate` ([b84e8f7](https://github.com/prelude-so/ruby-sdk/commit/b84e8f7e506b6de892864ce0b99fd7cd88f4515b))
|
257
|
+
* migrate to pattern matching for testing ([#53](https://github.com/prelude-so/ruby-sdk/issues/53)) ([c99c3d2](https://github.com/prelude-so/ruby-sdk/commit/c99c3d29e76b3dc2a8d8a3fd23be43cb4b8dde14))
|
258
|
+
* minor scripting improvements ([#65](https://github.com/prelude-so/ruby-sdk/issues/65)) ([9103c80](https://github.com/prelude-so/ruby-sdk/commit/9103c80aebe8118adadac8fb8519a4b2e99375e9))
|
259
|
+
* misc sdk polish ([#229](https://github.com/prelude-so/ruby-sdk/issues/229)) ([a555344](https://github.com/prelude-so/ruby-sdk/commit/a555344a5d6cba204d242490b33665b3223fd1b1))
|
260
|
+
* modify sorbet initializers to better support auto-completion ([#151](https://github.com/prelude-so/ruby-sdk/issues/151)) ([5ad4c86](https://github.com/prelude-so/ruby-sdk/commit/5ad4c86b4c49d598a66a368482d75256df567250))
|
261
|
+
* more accurate type annotations and aliases ([4cf4518](https://github.com/prelude-so/ruby-sdk/commit/4cf4518d19773bdaaee5c08c4bd6277ffd9c1a3a))
|
262
|
+
* more accurate type annotations for SDK internals ([#206](https://github.com/prelude-so/ruby-sdk/issues/206)) ([02f2bc6](https://github.com/prelude-so/ruby-sdk/commit/02f2bc68b4b62eff5ad2f1b379fffbb5a8ade7c1))
|
263
|
+
* more aggressive tapioca detection logic for skipping compiler introspection ([#201](https://github.com/prelude-so/ruby-sdk/issues/201)) ([ff41ec4](https://github.com/prelude-so/ruby-sdk/commit/ff41ec41d0d3f9f2dc325f0aaab4eb1c34711867))
|
264
|
+
* more detailed yard docs for base client ([#81](https://github.com/prelude-so/ruby-sdk/issues/81)) ([5ef8779](https://github.com/prelude-so/ruby-sdk/commit/5ef8779589c1715e818cc3a7c5879c751efbda2c))
|
265
|
+
* more detailed yard docs for sdk utils ([#80](https://github.com/prelude-so/ruby-sdk/issues/80)) ([4439453](https://github.com/prelude-so/ruby-sdk/commit/44394536e395080d9359f69f06e99e931c35bf11))
|
266
|
+
* more readable output when tests fail ([#200](https://github.com/prelude-so/ruby-sdk/issues/200)) ([f6306ad](https://github.com/prelude-so/ruby-sdk/commit/f6306ad4491f0b5a49c2cedb3dd7c90a93201bb7))
|
267
|
+
* move basemodel examples into tests ([#126](https://github.com/prelude-so/ruby-sdk/issues/126)) ([5c3cac2](https://github.com/prelude-so/ruby-sdk/commit/5c3cac257ebf88934cc21001bbd735d2d9458660))
|
268
|
+
* move examples into tests ([#147](https://github.com/prelude-so/ruby-sdk/issues/147)) ([3b51ecb](https://github.com/prelude-so/ruby-sdk/commit/3b51ecb0a32a163c4d782b2c08cb43ffc664793e))
|
269
|
+
* move private classes into internal module ([#220](https://github.com/prelude-so/ruby-sdk/issues/220)) ([62e8a50](https://github.com/prelude-so/ruby-sdk/commit/62e8a5076a895d18584089b3e1d68f4e5d74278b))
|
270
|
+
* order client variables by "importance" ([#217](https://github.com/prelude-so/ruby-sdk/issues/217)) ([33bad53](https://github.com/prelude-so/ruby-sdk/commit/33bad5375e1ca36cbdcdb342c33e01d3de7db4ac))
|
271
|
+
* re-export top level models under library namespace ([cf4db80](https://github.com/prelude-so/ruby-sdk/commit/cf4db800d5ea6c242db032b4bc22087e7bb57f84))
|
272
|
+
* re-order init params in accordance with their optionality ([#78](https://github.com/prelude-so/ruby-sdk/issues/78)) ([a3a23e1](https://github.com/prelude-so/ruby-sdk/commit/a3a23e18cd1a228d28cf38417c80a82c423463a7))
|
273
|
+
* re-order resource classes constructor position ([#76](https://github.com/prelude-so/ruby-sdk/issues/76)) ([cf21aa1](https://github.com/prelude-so/ruby-sdk/commit/cf21aa1b83d5f16d9537467712ba1173fa2e6800))
|
274
|
+
* recursively accept `AnyHash` for `BaseModel`s in arrays and hashes ([#196](https://github.com/prelude-so/ruby-sdk/issues/196)) ([2762ade](https://github.com/prelude-so/ruby-sdk/commit/2762ade46e1768da008db0a58c0e4c0c62f55cb1))
|
275
|
+
* reduce verbosity in type declarations ([#198](https://github.com/prelude-so/ruby-sdk/issues/198)) ([61216ed](https://github.com/prelude-so/ruby-sdk/commit/61216ed91486796d422743677a2565f5b9443c83))
|
276
|
+
* refactor BasePage to have initializer ([#163](https://github.com/prelude-so/ruby-sdk/issues/163)) ([5145d3d](https://github.com/prelude-so/ruby-sdk/commit/5145d3d468faf659449ecdc1fda20602c6f53e84))
|
277
|
+
* refactor util method signatures ([#88](https://github.com/prelude-so/ruby-sdk/issues/88)) ([4697d4b](https://github.com/prelude-so/ruby-sdk/commit/4697d4b94541768b33bc50454b03660e803bb162))
|
278
|
+
* **refactor:** improve requester internals ([#135](https://github.com/prelude-so/ruby-sdk/issues/135)) ([432fffa](https://github.com/prelude-so/ruby-sdk/commit/432fffa31a91c8bf713518a4187c5be5279953f9))
|
279
|
+
* refine `#inspect` and `#to_s` for model classes ([34e8bfe](https://github.com/prelude-so/ruby-sdk/commit/34e8bfee65c9e0c47127111d54c060440d231d6f))
|
280
|
+
* refine Yard and Sorbet types and ensure linting is turned on for examples ([9aa5442](https://github.com/prelude-so/ruby-sdk/commit/9aa54420ca4a668ebc2e90e120b02e928494f751))
|
281
|
+
* relax sorbet enum parameters to allow `String` in addition to `Symbol` ([#216](https://github.com/prelude-so/ruby-sdk/issues/216)) ([7ca2c57](https://github.com/prelude-so/ruby-sdk/commit/7ca2c57836b1f4ffbd61bdc456d8bea78c2675b9))
|
282
|
+
* relocate internal modules ([#205](https://github.com/prelude-so/ruby-sdk/issues/205)) ([a57c98e](https://github.com/prelude-so/ruby-sdk/commit/a57c98e4113764591e57136aa83bf85ff4d78f16))
|
283
|
+
* remove Gemfile.lock during bootstrap ([19d742e](https://github.com/prelude-so/ruby-sdk/commit/19d742ee4a8d9b7540f25572b8cfc7210d9108ea))
|
284
|
+
* remove stale thread local checks ([#162](https://github.com/prelude-so/ruby-sdk/issues/162)) ([54d919b](https://github.com/prelude-so/ruby-sdk/commit/54d919bb54190e54886feaf0495416db77bda139))
|
285
|
+
* remove unnecessary & confusing module ([#204](https://github.com/prelude-so/ruby-sdk/issues/204)) ([cc6d85c](https://github.com/prelude-so/ruby-sdk/commit/cc6d85cbbc18a46e559c337eeb22f7b828b008d6))
|
286
|
+
* rename confusing `Type::BooleanModel` to `Type::Boolean` ([#233](https://github.com/prelude-so/ruby-sdk/issues/233)) ([aa94197](https://github.com/prelude-so/ruby-sdk/commit/aa94197ff414931bb9de157801bd2ed321002387))
|
287
|
+
* rename internal type aliases ([#124](https://github.com/prelude-so/ruby-sdk/issues/124)) ([b979ac0](https://github.com/prelude-so/ruby-sdk/commit/b979ac08f3d68b4b4756c612a9ea04cd0b960e63))
|
288
|
+
* rename misleading variable ([#146](https://github.com/prelude-so/ruby-sdk/issues/146)) ([a5bb0a4](https://github.com/prelude-so/ruby-sdk/commit/a5bb0a4b07503f0cb03e20d936a909f36c16618f))
|
289
|
+
* reorganize import ordering ([#130](https://github.com/prelude-so/ruby-sdk/issues/130)) ([ffcbfd8](https://github.com/prelude-so/ruby-sdk/commit/ffcbfd85ab9778e51b5dc0bd26daed02c55beb1a))
|
290
|
+
* revert ignoring Gemfile.lock ([c36f55d](https://github.com/prelude-so/ruby-sdk/commit/c36f55db6de1bad1af573aec484742dc75d78dbf))
|
291
|
+
* sdk client internal refactoring ([#175](https://github.com/prelude-so/ruby-sdk/issues/175)) ([3804b7d](https://github.com/prelude-so/ruby-sdk/commit/3804b7de00b87709bcbd494fff6587da6013209b))
|
292
|
+
* sdk internal updates ([#165](https://github.com/prelude-so/ruby-sdk/issues/165)) ([413730d](https://github.com/prelude-so/ruby-sdk/commit/413730d968d1f7a2749efe5f9a8fa1c0caade95b))
|
293
|
+
* show truncated parameter docs in yard ([26bbc66](https://github.com/prelude-so/ruby-sdk/commit/26bbc66bd3a0d263cdc2580b3447fa996ef1db7f))
|
294
|
+
* simplify internal utils ([#228](https://github.com/prelude-so/ruby-sdk/issues/228)) ([cda302f](https://github.com/prelude-so/ruby-sdk/commit/cda302f9cd5f4be45019f84b5f90691dc0a1f3e0))
|
295
|
+
* simplify yard annotations by removing most `@!parse` directives ([12477d1](https://github.com/prelude-so/ruby-sdk/commit/12477d1a597566a793cb04c7564ac10cae8155bf))
|
296
|
+
* slightly more consistent type definition layout ([#172](https://github.com/prelude-so/ruby-sdk/issues/172)) ([0795e9b](https://github.com/prelude-so/ruby-sdk/commit/0795e9bf55564372d2efd7ed2023a611d54c3469))
|
297
|
+
* sort imports via topological dependency & file path ([#131](https://github.com/prelude-so/ruby-sdk/issues/131)) ([a12f4c0](https://github.com/prelude-so/ruby-sdk/commit/a12f4c0e97452cdd4b230a42e1b9a94af89e75c2))
|
298
|
+
* support (deprecated) ruby 3.0 as well ([#101](https://github.com/prelude-so/ruby-sdk/issues/101)) ([37adf1a](https://github.com/prelude-so/ruby-sdk/commit/37adf1af4bb9436d7e74828e2c26b83d05e5d345))
|
299
|
+
* support different EOLs in streaming ([#149](https://github.com/prelude-so/ruby-sdk/issues/149)) ([dd6835b](https://github.com/prelude-so/ruby-sdk/commit/dd6835bcfc967a09b037800efb38194548dcc692))
|
300
|
+
* switch to prettier looking sorbet annotations ([#197](https://github.com/prelude-so/ruby-sdk/issues/197)) ([ad156f8](https://github.com/prelude-so/ruby-sdk/commit/ad156f89d15d433ae629bb282a5699f7260d58cc))
|
301
|
+
* touch up sdk usage examples ([#169](https://github.com/prelude-so/ruby-sdk/issues/169)) ([42ed0c6](https://github.com/prelude-so/ruby-sdk/commit/42ed0c69573e13ad7e3b9c5e96ad303eab46bcab))
|
302
|
+
* touch up yard docs with more spec compliant syntax ([#77](https://github.com/prelude-so/ruby-sdk/issues/77)) ([0adca41](https://github.com/prelude-so/ruby-sdk/commit/0adca410a206b6f7e2f75df11d906bd62d56810b))
|
303
|
+
* update custom timeout header name ([#144](https://github.com/prelude-so/ruby-sdk/issues/144)) ([4aa21de](https://github.com/prelude-so/ruby-sdk/commit/4aa21dea94fde02d4ec07a52b9cc4c3a0d0fe5c6))
|
304
|
+
* update readme ([#207](https://github.com/prelude-so/ruby-sdk/issues/207)) ([6c02f85](https://github.com/prelude-so/ruby-sdk/commit/6c02f85566ddfe62472ffa57fa74de689e3de1d3))
|
305
|
+
* update README with recommended editor plugins ([d0c9cec](https://github.com/prelude-so/ruby-sdk/commit/d0c9ceccbc7279edfa576b30daaf6072d148c0e6))
|
306
|
+
* update SDK settings ([#117](https://github.com/prelude-so/ruby-sdk/issues/117)) ([e1ae6d2](https://github.com/prelude-so/ruby-sdk/commit/e1ae6d2fc1e984d3ef021e26e77e7853362cef9a))
|
307
|
+
* update yard comment formatting ([#239](https://github.com/prelude-so/ruby-sdk/issues/239)) ([a705e11](https://github.com/prelude-so/ruby-sdk/commit/a705e11e0b60a3447c1e6286a01b087bfed445e4))
|
308
|
+
* use `@!method` instead of `@!parse` for virtual method type definitions ([62586fd](https://github.com/prelude-so/ruby-sdk/commit/62586fd9ab83a46f5b330d8d6350fc753b43f65a))
|
309
|
+
* use concise syntax for pattern matching ([#114](https://github.com/prelude-so/ruby-sdk/issues/114)) ([4e6b56b](https://github.com/prelude-so/ruby-sdk/commit/4e6b56bc5f40cd995ecd093b2a2d778b99c5de00))
|
310
|
+
* use fully qualified name in sorbet README example ([#210](https://github.com/prelude-so/ruby-sdk/issues/210)) ([44b3f17](https://github.com/prelude-so/ruby-sdk/commit/44b3f177a2f99e0c759dd523dbb42a48199ad8de))
|
311
|
+
* use fully qualified names for yard annotations and rbs aliases ([ff0975f](https://github.com/prelude-so/ruby-sdk/commit/ff0975f5ca87cdd626c0cc4a887d7ae672a610ee))
|
312
|
+
* use generics instead of overloading for sorbet type definitions ([#174](https://github.com/prelude-so/ruby-sdk/issues/174)) ([edf58e2](https://github.com/prelude-so/ruby-sdk/commit/edf58e24a7b79f54d30849ef6a75bde436d36b34))
|
313
|
+
* use more descriptive rubocop output format ([#82](https://github.com/prelude-so/ruby-sdk/issues/82)) ([b8f15eb](https://github.com/prelude-so/ruby-sdk/commit/b8f15eb58db9e5c3f10598c82160e7bfa61c7f1d))
|
314
|
+
* use multi-line formatting style for really long lines ([#183](https://github.com/prelude-so/ruby-sdk/issues/183)) ([52dbd0a](https://github.com/prelude-so/ruby-sdk/commit/52dbd0a3a2cf899e4227c3b74038115a36988852))
|
315
|
+
* use package name for gemspec ([#227](https://github.com/prelude-so/ruby-sdk/issues/227)) ([d3b26a2](https://github.com/prelude-so/ruby-sdk/commit/d3b26a2ba36b344120f8a9113ccb2f189c7a0428))
|
316
|
+
* validate request option coercion correctness ([e1deedb](https://github.com/prelude-so/ruby-sdk/commit/e1deedb5a5e792c8bf87f02d547a28db17d44587))
|
317
|
+
* whitespaces ([fa9d708](https://github.com/prelude-so/ruby-sdk/commit/fa9d708403c183051e5857241b2625008050833e))
|
318
|
+
|
319
|
+
|
320
|
+
### Documentation
|
321
|
+
|
322
|
+
* illustrate environmental defaults for auth variables ([103ac7f](https://github.com/prelude-so/ruby-sdk/commit/103ac7fe70a73edd6a305c56860744500811cdc5))
|
323
|
+
* **readme:** fix typo ([3e0bfd6](https://github.com/prelude-so/ruby-sdk/commit/3e0bfd69f65e5eaaf84d3b9510592fcc7d19273d))
|
324
|
+
* rewrite much of README.md for readability ([d95cef0](https://github.com/prelude-so/ruby-sdk/commit/d95cef0d1ac416f794800d5f82ea856b0ada113e))
|
325
|
+
* update documentation links to be more uniform ([c5d3237](https://github.com/prelude-so/ruby-sdk/commit/c5d3237449ba990137d462907edf9f5bfda28c97))
|
326
|
+
* update URLs from stainlessapi.com to stainless.com ([#139](https://github.com/prelude-so/ruby-sdk/issues/139)) ([fa2156d](https://github.com/prelude-so/ruby-sdk/commit/fa2156d3269f2558ea39c3cc7b768d87fa42ede8))
|
327
|
+
|
328
|
+
|
329
|
+
### Refactors
|
330
|
+
|
331
|
+
* **client:** impose consistent sdk internals layout ([#90](https://github.com/prelude-so/ruby-sdk/issues/90)) ([31d6386](https://github.com/prelude-so/ruby-sdk/commit/31d6386c820042710ff84a248589680ad5b0bdf4))
|
332
|
+
|
333
|
+
## 0.1.0-alpha.1 (2024-11-13)
|
334
|
+
|
335
|
+
Full Changelog: [v0.0.1-alpha.0...v0.1.0-alpha.1](https://github.com/prelude-so/ruby-sdk/compare/v0.0.1-alpha.0...v0.1.0-alpha.1)
|
336
|
+
|
337
|
+
### Features
|
338
|
+
|
339
|
+
* **api:** update via SDK Studio ([fa7b60c](https://github.com/prelude-so/ruby-sdk/commit/fa7b60c021495380fe1c3a369a116e03becf24cd))
|
340
|
+
* **api:** update via SDK Studio ([8c0093a](https://github.com/prelude-so/ruby-sdk/commit/8c0093af8e3686a70e2d10c6750f1f25ca27e8fa))
|
341
|
+
* **api:** update via SDK Studio ([2624388](https://github.com/prelude-so/ruby-sdk/commit/2624388d38aab4f967b4c41f31db0ea69c3bd313))
|
342
|
+
* **api:** update via SDK Studio ([4e94476](https://github.com/prelude-so/ruby-sdk/commit/4e9447620ac20f37b543ea54305b8b783a932586))
|
343
|
+
* **api:** update via SDK Studio ([692fc9f](https://github.com/prelude-so/ruby-sdk/commit/692fc9f206b6ca7098cd711faf26c59c7be75f70))
|
344
|
+
* **api:** update via SDK Studio ([87bb571](https://github.com/prelude-so/ruby-sdk/commit/87bb571bc1ea844e59bccd77dd72f4050a689635))
|
345
|
+
* **api:** update via SDK Studio ([a136325](https://github.com/prelude-so/ruby-sdk/commit/a1363257a339c75d8f28ed54c86033c8a6f6d67c))
|
346
|
+
* **api:** update via SDK Studio ([70d79c3](https://github.com/prelude-so/ruby-sdk/commit/70d79c3e7466ef5c7adffa0eba8c37db0f2135cc))
|
347
|
+
* **api:** update via SDK Studio ([95e9f43](https://github.com/prelude-so/ruby-sdk/commit/95e9f438be3c75d22c6f5933629fb1f7f7cae76e))
|
348
|
+
|
349
|
+
|
350
|
+
### Chores
|
351
|
+
|
352
|
+
* go live ([#1](https://github.com/prelude-so/ruby-sdk/issues/1)) ([93c79ae](https://github.com/prelude-so/ruby-sdk/commit/93c79aec7d576b6dbe15e0238358f33f8b45b67f))
|