terminal-shop 2.1.2 → 3.5.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.
- checksums.yaml +4 -4
- data/.ignore +2 -0
- data/CHANGELOG.md +674 -0
- data/README.md +88 -28
- data/SECURITY.md +27 -0
- data/lib/{terminal-shop → terminal_shop}/client.rb +19 -24
- data/lib/terminal_shop/errors.rb +192 -0
- data/lib/terminal_shop/file_part.rb +55 -0
- data/lib/terminal_shop/internal/transport/base_client.rb +486 -0
- data/lib/terminal_shop/internal/transport/pooled_net_requester.rb +193 -0
- data/lib/terminal_shop/internal/type/array_of.rb +154 -0
- data/lib/terminal_shop/internal/type/base_model.rb +443 -0
- data/lib/terminal_shop/internal/type/base_page.rb +55 -0
- data/lib/terminal_shop/internal/type/boolean.rb +64 -0
- data/lib/terminal_shop/internal/type/converter.rb +274 -0
- data/lib/terminal_shop/internal/type/enum.rb +133 -0
- data/lib/terminal_shop/internal/type/file_input.rb +96 -0
- data/lib/terminal_shop/internal/type/hash_of.rb +174 -0
- data/lib/terminal_shop/internal/type/request_parameters.rb +48 -0
- data/lib/terminal_shop/internal/type/union.rb +220 -0
- data/lib/terminal_shop/internal/type/unknown.rb +68 -0
- data/lib/terminal_shop/internal/util.rb +790 -0
- data/lib/terminal_shop/internal.rb +11 -0
- data/lib/terminal_shop/models/address.rb +93 -0
- data/lib/terminal_shop/models/address_create_params.rb +78 -0
- data/lib/terminal_shop/models/address_create_response.rb +17 -0
- data/lib/terminal_shop/models/address_delete_params.rb +14 -0
- data/lib/terminal_shop/models/address_delete_response.rb +16 -0
- data/lib/terminal_shop/models/address_get_params.rb +14 -0
- data/lib/{terminal-shop → terminal_shop}/models/address_get_response.rb +4 -7
- data/lib/terminal_shop/models/address_list_params.rb +14 -0
- data/lib/terminal_shop/models/address_list_response.rb +17 -0
- data/lib/{terminal-shop → terminal_shop}/models/app.rb +14 -12
- data/lib/terminal_shop/models/app_create_params.rb +26 -0
- data/lib/{terminal-shop → terminal_shop}/models/app_create_response.rb +10 -15
- data/lib/terminal_shop/models/app_delete_params.rb +14 -0
- data/lib/terminal_shop/models/app_delete_response.rb +16 -0
- data/lib/terminal_shop/models/app_get_params.rb +14 -0
- data/lib/{terminal-shop → terminal_shop}/models/app_get_response.rb +4 -7
- data/lib/terminal_shop/models/app_list_params.rb +14 -0
- data/lib/terminal_shop/models/app_list_response.rb +17 -0
- data/lib/terminal_shop/models/card.rb +75 -0
- data/lib/terminal_shop/models/card_collect_params.rb +14 -0
- data/lib/terminal_shop/models/card_collect_response.rb +36 -0
- data/lib/terminal_shop/models/card_create_params.rb +27 -0
- data/lib/terminal_shop/models/card_create_response.rb +17 -0
- data/lib/terminal_shop/models/card_delete_params.rb +14 -0
- data/lib/terminal_shop/models/card_delete_response.rb +16 -0
- data/lib/terminal_shop/models/card_get_params.rb +14 -0
- data/lib/{terminal-shop → terminal_shop}/models/card_get_response.rb +4 -7
- data/lib/terminal_shop/models/card_list_params.rb +14 -0
- data/lib/terminal_shop/models/card_list_response.rb +17 -0
- data/lib/terminal_shop/models/cart.rb +150 -0
- data/lib/terminal_shop/models/cart_clear_params.rb +14 -0
- data/lib/terminal_shop/models/cart_clear_response.rb +16 -0
- data/lib/terminal_shop/models/cart_convert_params.rb +14 -0
- data/lib/{terminal-shop → terminal_shop}/models/cart_convert_response.rb +4 -7
- data/lib/terminal_shop/models/cart_get_params.rb +14 -0
- data/lib/{terminal-shop → terminal_shop}/models/cart_get_response.rb +4 -7
- data/lib/terminal_shop/models/cart_set_address_params.rb +22 -0
- data/lib/terminal_shop/models/cart_set_address_response.rb +16 -0
- data/lib/terminal_shop/models/cart_set_card_params.rb +22 -0
- data/lib/terminal_shop/models/cart_set_card_response.rb +16 -0
- data/lib/terminal_shop/models/cart_set_item_params.rb +30 -0
- data/lib/{terminal-shop → terminal_shop}/models/cart_set_item_response.rb +4 -7
- data/lib/terminal_shop/models/email_create_params.rb +22 -0
- data/lib/terminal_shop/models/email_create_response.rb +16 -0
- data/lib/terminal_shop/models/order.rb +278 -0
- data/lib/terminal_shop/models/order_create_params.rb +38 -0
- data/lib/terminal_shop/models/order_create_response.rb +17 -0
- data/lib/terminal_shop/models/order_get_params.rb +14 -0
- data/lib/{terminal-shop → terminal_shop}/models/order_get_response.rb +4 -7
- data/lib/terminal_shop/models/order_list_params.rb +14 -0
- data/lib/terminal_shop/models/order_list_response.rb +17 -0
- data/lib/terminal_shop/models/product.rb +125 -0
- data/lib/terminal_shop/models/product_get_params.rb +14 -0
- data/lib/{terminal-shop → terminal_shop}/models/product_get_response.rb +4 -7
- data/lib/terminal_shop/models/product_list_params.rb +14 -0
- data/lib/terminal_shop/models/product_list_response.rb +17 -0
- data/lib/terminal_shop/models/product_variant.rb +84 -0
- data/lib/{terminal-shop → terminal_shop}/models/profile.rb +22 -22
- data/lib/terminal_shop/models/profile_me_params.rb +14 -0
- data/lib/{terminal-shop → terminal_shop}/models/profile_me_response.rb +4 -7
- data/lib/terminal_shop/models/profile_update_params.rb +26 -0
- data/lib/{terminal-shop → terminal_shop}/models/profile_update_response.rb +4 -7
- data/lib/{terminal-shop → terminal_shop}/models/region.rb +4 -6
- data/lib/terminal_shop/models/subscription.rb +125 -0
- data/lib/terminal_shop/models/subscription_create_params.rb +14 -0
- data/lib/terminal_shop/models/subscription_create_response.rb +16 -0
- data/lib/terminal_shop/models/subscription_delete_params.rb +14 -0
- data/lib/terminal_shop/models/subscription_delete_response.rb +16 -0
- data/lib/terminal_shop/models/subscription_get_params.rb +14 -0
- data/lib/{terminal-shop → terminal_shop}/models/subscription_get_response.rb +4 -7
- data/lib/terminal_shop/models/subscription_list_params.rb +14 -0
- data/lib/terminal_shop/models/subscription_list_response.rb +17 -0
- data/lib/terminal_shop/models/subscription_update_params.rb +76 -0
- data/lib/terminal_shop/models/subscription_update_response.rb +17 -0
- data/lib/terminal_shop/models/token.rb +38 -0
- data/lib/terminal_shop/models/token_create_params.rb +14 -0
- data/lib/terminal_shop/models/token_create_response.rb +41 -0
- data/lib/terminal_shop/models/token_delete_params.rb +14 -0
- data/lib/terminal_shop/models/token_delete_response.rb +16 -0
- data/lib/terminal_shop/models/token_get_params.rb +14 -0
- data/lib/terminal_shop/models/token_get_response.rb +22 -0
- data/lib/terminal_shop/models/token_list_params.rb +14 -0
- data/lib/terminal_shop/models/token_list_response.rb +17 -0
- data/lib/terminal_shop/models/view_init_params.rb +14 -0
- data/lib/terminal_shop/models/view_init_response.rb +97 -0
- data/lib/{terminal-shop → terminal_shop}/request_options.rb +14 -15
- data/lib/{terminal-shop → terminal_shop}/resources/address.rb +28 -18
- data/lib/{terminal-shop → terminal_shop}/resources/app.rb +22 -14
- data/lib/{terminal-shop → terminal_shop}/resources/card.rb +30 -15
- data/lib/{terminal-shop → terminal_shop}/resources/cart.rb +30 -16
- data/lib/{terminal-shop → terminal_shop}/resources/email.rb +7 -3
- data/lib/{terminal-shop → terminal_shop}/resources/order.rb +18 -10
- data/lib/{terminal-shop → terminal_shop}/resources/product.rb +11 -5
- data/lib/{terminal-shop → terminal_shop}/resources/profile.rb +12 -8
- data/lib/terminal_shop/resources/subscription.rb +141 -0
- data/lib/{terminal-shop → terminal_shop}/resources/token.rb +20 -10
- data/lib/{terminal-shop → terminal_shop}/resources/view.rb +7 -3
- data/lib/{terminal-shop → terminal_shop}/version.rb +1 -1
- data/lib/terminal_shop.rb +144 -0
- data/rbi/lib/{terminal-shop → terminal_shop}/client.rbi +18 -19
- data/rbi/lib/terminal_shop/errors.rbi +143 -0
- data/rbi/lib/terminal_shop/file_part.rbi +34 -0
- data/rbi/lib/terminal_shop/internal/transport/base_client.rbi +213 -0
- data/rbi/lib/terminal_shop/internal/transport/pooled_net_requester.rbi +60 -0
- data/rbi/lib/terminal_shop/internal/type/array_of.rbi +88 -0
- data/rbi/lib/terminal_shop/internal/type/base_model.rbi +220 -0
- data/rbi/lib/terminal_shop/internal/type/base_page.rbi +38 -0
- data/rbi/lib/terminal_shop/internal/type/boolean.rbi +48 -0
- data/rbi/lib/terminal_shop/internal/type/converter.rbi +120 -0
- data/rbi/lib/terminal_shop/internal/type/enum.rbi +66 -0
- data/rbi/lib/terminal_shop/internal/type/file_input.rbi +50 -0
- data/rbi/lib/terminal_shop/internal/type/hash_of.rbi +88 -0
- data/rbi/lib/terminal_shop/internal/type/request_parameters.rbi +21 -0
- data/rbi/lib/terminal_shop/internal/type/union.rbi +80 -0
- data/rbi/lib/terminal_shop/internal/type/unknown.rbi +40 -0
- data/rbi/lib/terminal_shop/internal/util.rbi +302 -0
- data/rbi/lib/terminal_shop/internal.rbi +11 -0
- data/rbi/lib/{terminal-shop → terminal_shop}/models/address.rbi +30 -6
- data/rbi/lib/{terminal-shop → terminal_shop}/models/address_create_params.rbi +14 -9
- data/rbi/lib/{terminal-shop → terminal_shop}/models/address_create_response.rbi +6 -6
- data/rbi/lib/terminal_shop/models/address_delete_params.rbi +19 -0
- data/rbi/lib/{terminal-shop → terminal_shop}/models/address_delete_response.rbi +3 -5
- data/rbi/lib/terminal_shop/models/address_get_params.rbi +19 -0
- data/rbi/lib/{terminal-shop → terminal_shop}/models/address_get_response.rbi +8 -8
- data/rbi/lib/terminal_shop/models/address_list_params.rbi +19 -0
- data/rbi/lib/{terminal-shop → terminal_shop}/models/address_list_response.rbi +7 -7
- data/rbi/lib/{terminal-shop → terminal_shop}/models/app.rbi +12 -6
- data/rbi/lib/{terminal-shop → terminal_shop}/models/app_create_params.rbi +6 -8
- data/rbi/lib/{terminal-shop → terminal_shop}/models/app_create_response.rbi +13 -13
- data/rbi/lib/terminal_shop/models/app_delete_params.rbi +19 -0
- data/rbi/lib/{terminal-shop → terminal_shop}/models/app_delete_response.rbi +3 -5
- data/rbi/lib/terminal_shop/models/app_get_params.rbi +19 -0
- data/rbi/lib/terminal_shop/models/app_get_response.rbi +25 -0
- data/rbi/lib/terminal_shop/models/app_list_params.rbi +19 -0
- data/rbi/lib/{terminal-shop → terminal_shop}/models/app_list_response.rbi +7 -7
- data/rbi/lib/{terminal-shop → terminal_shop}/models/card.rbi +32 -15
- data/rbi/lib/terminal_shop/models/card_collect_params.rbi +19 -0
- data/rbi/lib/{terminal-shop → terminal_shop}/models/card_collect_response.rbi +16 -15
- data/rbi/lib/terminal_shop/models/card_create_params.rbi +31 -0
- data/rbi/lib/{terminal-shop → terminal_shop}/models/card_create_response.rbi +6 -6
- data/rbi/lib/terminal_shop/models/card_delete_params.rbi +19 -0
- data/rbi/lib/{terminal-shop → terminal_shop}/models/card_delete_response.rbi +3 -5
- data/rbi/lib/terminal_shop/models/card_get_params.rbi +19 -0
- data/rbi/lib/terminal_shop/models/card_get_response.rbi +25 -0
- data/rbi/lib/terminal_shop/models/card_list_params.rbi +19 -0
- data/rbi/lib/{terminal-shop → terminal_shop}/models/card_list_response.rbi +7 -7
- data/rbi/lib/{terminal-shop → terminal_shop}/models/cart.rbi +51 -29
- data/rbi/lib/terminal_shop/models/cart_clear_params.rbi +19 -0
- data/rbi/lib/{terminal-shop → terminal_shop}/models/cart_clear_response.rbi +3 -5
- data/rbi/lib/terminal_shop/models/cart_convert_params.rbi +19 -0
- data/rbi/lib/terminal_shop/models/cart_convert_response.rbi +25 -0
- data/rbi/lib/terminal_shop/models/cart_get_params.rbi +19 -0
- data/rbi/lib/terminal_shop/models/cart_get_response.rbi +25 -0
- data/rbi/lib/{terminal-shop → terminal_shop}/models/cart_set_address_params.rbi +10 -9
- data/rbi/lib/{terminal-shop → terminal_shop}/models/cart_set_address_response.rbi +3 -5
- data/rbi/lib/terminal_shop/models/cart_set_card_params.rbi +29 -0
- data/rbi/lib/{terminal-shop → terminal_shop}/models/cart_set_card_response.rbi +3 -5
- data/rbi/lib/{terminal-shop → terminal_shop}/models/cart_set_item_params.rbi +12 -9
- data/rbi/lib/terminal_shop/models/cart_set_item_response.rbi +25 -0
- data/rbi/lib/terminal_shop/models/email_create_params.rbi +29 -0
- data/rbi/lib/{terminal-shop → terminal_shop}/models/email_create_response.rbi +3 -5
- data/rbi/lib/{terminal-shop → terminal_shop}/models/order.rbi +149 -36
- data/rbi/lib/{terminal-shop → terminal_shop}/models/order_create_params.rbi +14 -9
- data/rbi/lib/{terminal-shop → terminal_shop}/models/order_create_response.rbi +6 -6
- data/rbi/lib/terminal_shop/models/order_get_params.rbi +19 -0
- data/rbi/lib/terminal_shop/models/order_get_response.rbi +25 -0
- data/rbi/lib/terminal_shop/models/order_list_params.rbi +19 -0
- data/rbi/lib/{terminal-shop → terminal_shop}/models/order_list_response.rbi +7 -7
- data/rbi/lib/{terminal-shop → terminal_shop}/models/product.rbi +44 -24
- data/rbi/lib/terminal_shop/models/product_get_params.rbi +19 -0
- data/rbi/lib/{terminal-shop → terminal_shop}/models/product_get_response.rbi +8 -8
- data/rbi/lib/terminal_shop/models/product_list_params.rbi +19 -0
- data/rbi/lib/{terminal-shop → terminal_shop}/models/product_list_response.rbi +7 -7
- data/rbi/lib/terminal_shop/models/product_variant.rbi +109 -0
- data/rbi/lib/{terminal-shop → terminal_shop}/models/profile.rbi +22 -14
- data/rbi/lib/terminal_shop/models/profile_me_params.rbi +19 -0
- data/rbi/lib/{terminal-shop → terminal_shop}/models/profile_me_response.rbi +8 -8
- data/rbi/lib/{terminal-shop → terminal_shop}/models/profile_update_params.rbi +6 -8
- data/rbi/lib/{terminal-shop → terminal_shop}/models/profile_update_response.rbi +8 -8
- data/rbi/lib/{terminal-shop → terminal_shop}/models/region.rbi +4 -4
- data/rbi/lib/{terminal-shop → terminal_shop}/models/subscription.rbi +44 -21
- data/rbi/lib/{terminal-shop → terminal_shop}/models/subscription_create_params.rbi +5 -7
- data/rbi/lib/{terminal-shop → terminal_shop}/models/subscription_create_response.rbi +3 -5
- data/rbi/lib/terminal_shop/models/subscription_delete_params.rbi +19 -0
- data/rbi/lib/{terminal-shop → terminal_shop}/models/subscription_delete_response.rbi +3 -5
- data/rbi/lib/terminal_shop/models/subscription_get_params.rbi +19 -0
- data/rbi/lib/{terminal-shop → terminal_shop}/models/subscription_get_response.rbi +8 -8
- data/rbi/lib/terminal_shop/models/subscription_list_params.rbi +19 -0
- data/rbi/lib/{terminal-shop → terminal_shop}/models/subscription_list_response.rbi +7 -7
- data/rbi/lib/terminal_shop/models/subscription_update_params.rbi +125 -0
- data/rbi/lib/terminal_shop/models/subscription_update_response.rbi +25 -0
- data/rbi/lib/{terminal-shop → terminal_shop}/models/token.rbi +11 -7
- data/rbi/lib/terminal_shop/models/token_create_params.rbi +19 -0
- data/rbi/lib/{terminal-shop → terminal_shop}/models/token_create_response.rbi +15 -14
- data/rbi/lib/terminal_shop/models/token_delete_params.rbi +19 -0
- data/rbi/lib/{terminal-shop → terminal_shop}/models/token_delete_response.rbi +3 -5
- data/rbi/lib/terminal_shop/models/token_get_params.rbi +19 -0
- data/rbi/lib/terminal_shop/models/token_get_response.rbi +27 -0
- data/rbi/lib/terminal_shop/models/token_list_params.rbi +19 -0
- data/rbi/lib/{terminal-shop → terminal_shop}/models/token_list_response.rbi +7 -7
- data/rbi/lib/terminal_shop/models/view_init_params.rbi +19 -0
- data/rbi/lib/{terminal-shop → terminal_shop}/models/view_init_response.rbi +25 -25
- data/rbi/lib/{terminal-shop → terminal_shop}/request_options.rbi +11 -13
- data/rbi/lib/{terminal-shop → terminal_shop}/resources/address.rbi +17 -17
- data/rbi/lib/{terminal-shop → terminal_shop}/resources/app.rbi +17 -16
- data/rbi/lib/{terminal-shop → terminal_shop}/resources/card.rbi +28 -22
- data/rbi/lib/{terminal-shop → terminal_shop}/resources/cart.rbi +35 -23
- data/rbi/lib/{terminal-shop → terminal_shop}/resources/email.rbi +4 -6
- data/rbi/lib/{terminal-shop → terminal_shop}/resources/order.rbi +15 -13
- data/rbi/lib/{terminal-shop → terminal_shop}/resources/product.rbi +13 -9
- data/rbi/lib/{terminal-shop → terminal_shop}/resources/profile.rbi +13 -8
- data/rbi/lib/{terminal-shop → terminal_shop}/resources/subscription.rbi +49 -17
- data/rbi/lib/{terminal-shop → terminal_shop}/resources/token.rbi +24 -16
- data/rbi/lib/{terminal-shop → terminal_shop}/resources/view.rbi +12 -6
- data/rbi/lib/{terminal-shop → terminal_shop}/version.rbi +1 -1
- data/sig/{terminal-shop → terminal_shop}/client.rbs +3 -3
- data/sig/terminal_shop/errors.rbs +101 -0
- data/sig/terminal_shop/file_part.rbs +21 -0
- data/sig/terminal_shop/internal/transport/base_client.rbs +116 -0
- data/sig/terminal_shop/internal/transport/pooled_net_requester.rbs +41 -0
- data/sig/terminal_shop/internal/type/array_of.rbs +45 -0
- data/sig/terminal_shop/internal/type/base_model.rbs +96 -0
- data/sig/terminal_shop/internal/type/base_page.rbs +24 -0
- data/sig/terminal_shop/internal/type/boolean.rbs +23 -0
- data/sig/terminal_shop/internal/type/converter.rbs +54 -0
- data/sig/terminal_shop/internal/type/enum.rbs +29 -0
- data/sig/terminal_shop/internal/type/file_input.rbs +23 -0
- data/sig/terminal_shop/internal/type/hash_of.rbs +45 -0
- data/sig/terminal_shop/internal/type/request_parameters.rbs +15 -0
- data/sig/terminal_shop/internal/type/union.rbs +49 -0
- data/sig/terminal_shop/internal/type/unknown.rbs +23 -0
- data/sig/terminal_shop/internal/util.rbs +158 -0
- data/sig/terminal_shop/internal.rbs +5 -0
- data/sig/{terminal-shop → terminal_shop}/models/address.rbs +5 -1
- data/sig/{terminal-shop → terminal_shop}/models/address_create_params.rbs +4 -4
- data/sig/{terminal-shop → terminal_shop}/models/address_create_response.rbs +1 -1
- data/sig/terminal_shop/models/address_delete_params.rbs +15 -0
- data/sig/{terminal-shop → terminal_shop}/models/address_delete_response.rbs +1 -1
- data/sig/terminal_shop/models/address_get_params.rbs +15 -0
- data/sig/{terminal-shop → terminal_shop}/models/address_get_response.rbs +1 -1
- data/sig/terminal_shop/models/address_list_params.rbs +15 -0
- data/sig/{terminal-shop → terminal_shop}/models/address_list_response.rbs +1 -1
- data/sig/{terminal-shop → terminal_shop}/models/app.rbs +1 -1
- data/sig/{terminal-shop → terminal_shop}/models/app_create_params.rbs +5 -4
- data/sig/{terminal-shop → terminal_shop}/models/app_create_response.rbs +2 -2
- data/sig/terminal_shop/models/app_delete_params.rbs +15 -0
- data/sig/{terminal-shop → terminal_shop}/models/app_delete_response.rbs +1 -1
- data/sig/terminal_shop/models/app_get_params.rbs +15 -0
- data/sig/{terminal-shop → terminal_shop}/models/app_get_response.rbs +1 -1
- data/sig/terminal_shop/models/app_list_params.rbs +15 -0
- data/sig/{terminal-shop → terminal_shop}/models/app_list_response.rbs +1 -1
- data/sig/{terminal-shop → terminal_shop}/models/card.rbs +6 -2
- data/sig/terminal_shop/models/card_collect_params.rbs +15 -0
- data/sig/{terminal-shop → terminal_shop}/models/card_collect_response.rbs +2 -2
- data/sig/{terminal-shop → terminal_shop}/models/card_create_params.rbs +4 -4
- data/sig/{terminal-shop → terminal_shop}/models/card_create_response.rbs +1 -1
- data/sig/terminal_shop/models/card_delete_params.rbs +15 -0
- data/sig/{terminal-shop → terminal_shop}/models/card_delete_response.rbs +1 -1
- data/sig/terminal_shop/models/card_get_params.rbs +15 -0
- data/sig/{terminal-shop → terminal_shop}/models/card_get_response.rbs +1 -1
- data/sig/terminal_shop/models/card_list_params.rbs +15 -0
- data/sig/{terminal-shop → terminal_shop}/models/card_list_response.rbs +1 -1
- data/sig/{terminal-shop → terminal_shop}/models/cart.rbs +4 -4
- data/sig/terminal_shop/models/cart_clear_params.rbs +15 -0
- data/sig/{terminal-shop → terminal_shop}/models/cart_clear_response.rbs +1 -1
- data/sig/terminal_shop/models/cart_convert_params.rbs +15 -0
- data/sig/{terminal-shop → terminal_shop}/models/cart_convert_response.rbs +1 -1
- data/sig/terminal_shop/models/cart_get_params.rbs +15 -0
- data/sig/{terminal-shop → terminal_shop}/models/cart_get_response.rbs +1 -1
- data/sig/{terminal-shop → terminal_shop}/models/cart_set_address_params.rbs +4 -4
- data/sig/{terminal-shop → terminal_shop}/models/cart_set_address_response.rbs +1 -1
- data/sig/{terminal-shop → terminal_shop}/models/cart_set_card_params.rbs +4 -4
- data/sig/{terminal-shop → terminal_shop}/models/cart_set_card_response.rbs +1 -1
- data/sig/{terminal-shop → terminal_shop}/models/cart_set_item_params.rbs +4 -4
- data/sig/{terminal-shop → terminal_shop}/models/cart_set_item_response.rbs +1 -1
- data/sig/{terminal-shop → terminal_shop}/models/email_create_params.rbs +4 -4
- data/sig/{terminal-shop → terminal_shop}/models/email_create_response.rbs +1 -1
- data/sig/{terminal-shop → terminal_shop}/models/order.rbs +51 -6
- data/sig/{terminal-shop → terminal_shop}/models/order_create_params.rbs +4 -4
- data/sig/{terminal-shop → terminal_shop}/models/order_create_response.rbs +1 -1
- data/sig/terminal_shop/models/order_get_params.rbs +15 -0
- data/sig/{terminal-shop → terminal_shop}/models/order_get_response.rbs +1 -1
- data/sig/terminal_shop/models/order_list_params.rbs +15 -0
- data/sig/{terminal-shop → terminal_shop}/models/order_list_response.rbs +1 -1
- data/sig/{terminal-shop → terminal_shop}/models/product.rbs +9 -3
- data/sig/terminal_shop/models/product_get_params.rbs +15 -0
- data/sig/{terminal-shop → terminal_shop}/models/product_get_response.rbs +1 -1
- data/sig/terminal_shop/models/product_list_params.rbs +15 -0
- data/sig/{terminal-shop → terminal_shop}/models/product_list_response.rbs +1 -1
- data/sig/terminal_shop/models/product_variant.rbs +70 -0
- data/sig/{terminal-shop → terminal_shop}/models/profile.rbs +2 -2
- data/sig/terminal_shop/models/profile_me_params.rbs +15 -0
- data/sig/{terminal-shop → terminal_shop}/models/profile_me_response.rbs +1 -1
- data/sig/{terminal-shop → terminal_shop}/models/profile_update_params.rbs +5 -4
- data/sig/{terminal-shop → terminal_shop}/models/profile_update_response.rbs +1 -1
- data/sig/{terminal-shop → terminal_shop}/models/region.rbs +3 -2
- data/sig/{terminal-shop → terminal_shop}/models/subscription.rbs +12 -4
- data/sig/{terminal-shop → terminal_shop}/models/subscription_create_params.rbs +4 -3
- data/sig/{terminal-shop → terminal_shop}/models/subscription_create_response.rbs +1 -1
- data/sig/terminal_shop/models/subscription_delete_params.rbs +15 -0
- data/sig/{terminal-shop → terminal_shop}/models/subscription_delete_response.rbs +1 -1
- data/sig/terminal_shop/models/subscription_get_params.rbs +15 -0
- data/sig/{terminal-shop → terminal_shop}/models/subscription_get_response.rbs +1 -1
- data/sig/terminal_shop/models/subscription_list_params.rbs +15 -0
- data/sig/{terminal-shop → terminal_shop}/models/subscription_list_response.rbs +1 -1
- data/sig/terminal_shop/models/subscription_update_params.rbs +71 -0
- data/sig/terminal_shop/models/subscription_update_response.rbs +14 -0
- data/sig/{terminal-shop → terminal_shop}/models/token.rbs +1 -1
- data/sig/terminal_shop/models/token_create_params.rbs +15 -0
- data/sig/{terminal-shop → terminal_shop}/models/token_create_response.rbs +2 -2
- data/sig/terminal_shop/models/token_delete_params.rbs +15 -0
- data/sig/{terminal-shop → terminal_shop}/models/token_delete_response.rbs +1 -1
- data/sig/terminal_shop/models/token_get_params.rbs +15 -0
- data/sig/{terminal-shop → terminal_shop}/models/token_get_response.rbs +1 -1
- data/sig/terminal_shop/models/token_list_params.rbs +15 -0
- data/sig/{terminal-shop → terminal_shop}/models/token_list_response.rbs +1 -1
- data/sig/terminal_shop/models/view_init_params.rbs +15 -0
- data/sig/{terminal-shop → terminal_shop}/models/view_init_response.rbs +2 -2
- data/sig/{terminal-shop → terminal_shop}/request_options.rbs +1 -1
- data/sig/{terminal-shop → terminal_shop}/resources/subscription.rbs +10 -0
- data/sig/{terminal-shop → terminal_shop}/version.rbs +1 -1
- metadata +354 -339
- data/lib/terminal-shop/errors.rb +0 -183
- data/lib/terminal-shop/models/address.rb +0 -90
- data/lib/terminal-shop/models/address_create_params.rb +0 -86
- data/lib/terminal-shop/models/address_create_response.rb +0 -20
- data/lib/terminal-shop/models/address_delete_params.rb +0 -18
- data/lib/terminal-shop/models/address_delete_response.rb +0 -19
- data/lib/terminal-shop/models/address_get_params.rb +0 -18
- data/lib/terminal-shop/models/address_list_params.rb +0 -18
- data/lib/terminal-shop/models/address_list_response.rb +0 -20
- data/lib/terminal-shop/models/app_create_params.rb +0 -30
- data/lib/terminal-shop/models/app_delete_params.rb +0 -18
- data/lib/terminal-shop/models/app_delete_response.rb +0 -19
- data/lib/terminal-shop/models/app_get_params.rb +0 -18
- data/lib/terminal-shop/models/app_list_params.rb +0 -18
- data/lib/terminal-shop/models/app_list_response.rb +0 -20
- data/lib/terminal-shop/models/card.rb +0 -67
- data/lib/terminal-shop/models/card_collect_params.rb +0 -18
- data/lib/terminal-shop/models/card_collect_response.rb +0 -38
- data/lib/terminal-shop/models/card_create_params.rb +0 -26
- data/lib/terminal-shop/models/card_create_response.rb +0 -20
- data/lib/terminal-shop/models/card_delete_params.rb +0 -18
- data/lib/terminal-shop/models/card_delete_response.rb +0 -19
- data/lib/terminal-shop/models/card_get_params.rb +0 -18
- data/lib/terminal-shop/models/card_list_params.rb +0 -18
- data/lib/terminal-shop/models/card_list_response.rb +0 -20
- data/lib/terminal-shop/models/cart.rb +0 -178
- data/lib/terminal-shop/models/cart_clear_params.rb +0 -18
- data/lib/terminal-shop/models/cart_clear_response.rb +0 -19
- data/lib/terminal-shop/models/cart_convert_params.rb +0 -18
- data/lib/terminal-shop/models/cart_get_params.rb +0 -18
- data/lib/terminal-shop/models/cart_set_address_params.rb +0 -25
- data/lib/terminal-shop/models/cart_set_address_response.rb +0 -19
- data/lib/terminal-shop/models/cart_set_card_params.rb +0 -25
- data/lib/terminal-shop/models/cart_set_card_response.rb +0 -19
- data/lib/terminal-shop/models/cart_set_item_params.rb +0 -32
- data/lib/terminal-shop/models/email_create_params.rb +0 -25
- data/lib/terminal-shop/models/email_create_response.rb +0 -19
- data/lib/terminal-shop/models/order.rb +0 -257
- data/lib/terminal-shop/models/order_create_params.rb +0 -39
- data/lib/terminal-shop/models/order_create_response.rb +0 -20
- data/lib/terminal-shop/models/order_get_params.rb +0 -18
- data/lib/terminal-shop/models/order_list_params.rb +0 -18
- data/lib/terminal-shop/models/order_list_response.rb +0 -20
- data/lib/terminal-shop/models/product.rb +0 -150
- data/lib/terminal-shop/models/product_get_params.rb +0 -18
- data/lib/terminal-shop/models/product_list_params.rb +0 -18
- data/lib/terminal-shop/models/product_list_response.rb +0 -20
- data/lib/terminal-shop/models/product_variant.rb +0 -36
- data/lib/terminal-shop/models/profile_me_params.rb +0 -18
- data/lib/terminal-shop/models/profile_update_params.rb +0 -30
- data/lib/terminal-shop/models/subscription.rb +0 -119
- data/lib/terminal-shop/models/subscription_create_params.rb +0 -18
- data/lib/terminal-shop/models/subscription_create_response.rb +0 -19
- data/lib/terminal-shop/models/subscription_delete_params.rb +0 -18
- data/lib/terminal-shop/models/subscription_delete_response.rb +0 -19
- data/lib/terminal-shop/models/subscription_get_params.rb +0 -18
- data/lib/terminal-shop/models/subscription_list_params.rb +0 -18
- data/lib/terminal-shop/models/subscription_list_response.rb +0 -20
- data/lib/terminal-shop/models/token.rb +0 -37
- data/lib/terminal-shop/models/token_create_params.rb +0 -18
- data/lib/terminal-shop/models/token_create_response.rb +0 -42
- data/lib/terminal-shop/models/token_delete_params.rb +0 -18
- data/lib/terminal-shop/models/token_delete_response.rb +0 -19
- data/lib/terminal-shop/models/token_get_params.rb +0 -18
- data/lib/terminal-shop/models/token_get_response.rb +0 -21
- data/lib/terminal-shop/models/token_list_params.rb +0 -18
- data/lib/terminal-shop/models/token_list_response.rb +0 -20
- data/lib/terminal-shop/models/view_init_params.rb +0 -18
- data/lib/terminal-shop/models/view_init_response.rb +0 -93
- data/lib/terminal-shop/resources/subscription.rb +0 -96
- data/lib/terminal-shop/transport/base_client.rb +0 -459
- data/lib/terminal-shop/transport/pooled_net_requester.rb +0 -182
- data/lib/terminal-shop/type/array_of.rb +0 -112
- data/lib/terminal-shop/type/base_model.rb +0 -364
- data/lib/terminal-shop/type/base_page.rb +0 -61
- data/lib/terminal-shop/type/boolean_model.rb +0 -52
- data/lib/terminal-shop/type/converter.rb +0 -217
- data/lib/terminal-shop/type/enum.rb +0 -101
- data/lib/terminal-shop/type/hash_of.rb +0 -138
- data/lib/terminal-shop/type/request_parameters.rb +0 -38
- data/lib/terminal-shop/type/union.rb +0 -185
- data/lib/terminal-shop/type/unknown.rb +0 -56
- data/lib/terminal-shop/type.rb +0 -23
- data/lib/terminal-shop/util.rb +0 -726
- data/lib/terminal-shop.rb +0 -149
- data/rbi/lib/terminal-shop/errors.rbi +0 -144
- data/rbi/lib/terminal-shop/models/address_delete_params.rbi +0 -21
- data/rbi/lib/terminal-shop/models/address_get_params.rbi +0 -21
- data/rbi/lib/terminal-shop/models/address_list_params.rbi +0 -21
- data/rbi/lib/terminal-shop/models/app_delete_params.rbi +0 -21
- data/rbi/lib/terminal-shop/models/app_get_params.rbi +0 -21
- data/rbi/lib/terminal-shop/models/app_get_response.rbi +0 -22
- data/rbi/lib/terminal-shop/models/app_list_params.rbi +0 -21
- data/rbi/lib/terminal-shop/models/card_collect_params.rbi +0 -21
- data/rbi/lib/terminal-shop/models/card_create_params.rbi +0 -32
- data/rbi/lib/terminal-shop/models/card_delete_params.rbi +0 -21
- data/rbi/lib/terminal-shop/models/card_get_params.rbi +0 -21
- data/rbi/lib/terminal-shop/models/card_get_response.rbi +0 -22
- data/rbi/lib/terminal-shop/models/card_list_params.rbi +0 -21
- data/rbi/lib/terminal-shop/models/cart_clear_params.rbi +0 -21
- data/rbi/lib/terminal-shop/models/cart_convert_params.rbi +0 -21
- data/rbi/lib/terminal-shop/models/cart_convert_response.rbi +0 -22
- data/rbi/lib/terminal-shop/models/cart_get_params.rbi +0 -21
- data/rbi/lib/terminal-shop/models/cart_get_response.rbi +0 -22
- data/rbi/lib/terminal-shop/models/cart_set_card_params.rbi +0 -31
- data/rbi/lib/terminal-shop/models/cart_set_item_response.rbi +0 -22
- data/rbi/lib/terminal-shop/models/email_create_params.rbi +0 -31
- data/rbi/lib/terminal-shop/models/order_get_params.rbi +0 -21
- data/rbi/lib/terminal-shop/models/order_get_response.rbi +0 -22
- data/rbi/lib/terminal-shop/models/order_list_params.rbi +0 -21
- data/rbi/lib/terminal-shop/models/product_get_params.rbi +0 -21
- data/rbi/lib/terminal-shop/models/product_list_params.rbi +0 -21
- data/rbi/lib/terminal-shop/models/product_variant.rbi +0 -28
- data/rbi/lib/terminal-shop/models/profile_me_params.rbi +0 -21
- data/rbi/lib/terminal-shop/models/subscription_delete_params.rbi +0 -21
- data/rbi/lib/terminal-shop/models/subscription_get_params.rbi +0 -21
- data/rbi/lib/terminal-shop/models/subscription_list_params.rbi +0 -21
- data/rbi/lib/terminal-shop/models/token_create_params.rbi +0 -21
- data/rbi/lib/terminal-shop/models/token_delete_params.rbi +0 -21
- data/rbi/lib/terminal-shop/models/token_get_params.rbi +0 -21
- data/rbi/lib/terminal-shop/models/token_get_response.rbi +0 -23
- data/rbi/lib/terminal-shop/models/token_list_params.rbi +0 -21
- data/rbi/lib/terminal-shop/models/view_init_params.rbi +0 -21
- data/rbi/lib/terminal-shop/transport/base_client.rbi +0 -208
- data/rbi/lib/terminal-shop/transport/pooled_net_requester.rbi +0 -64
- data/rbi/lib/terminal-shop/type/array_of.rbi +0 -82
- data/rbi/lib/terminal-shop/type/base_model.rbi +0 -194
- data/rbi/lib/terminal-shop/type/base_page.rbi +0 -38
- data/rbi/lib/terminal-shop/type/boolean_model.rbi +0 -41
- data/rbi/lib/terminal-shop/type/converter.rbi +0 -101
- data/rbi/lib/terminal-shop/type/enum.rbi +0 -58
- data/rbi/lib/terminal-shop/type/hash_of.rbi +0 -85
- data/rbi/lib/terminal-shop/type/request_parameters.rbi +0 -20
- data/rbi/lib/terminal-shop/type/union.rbi +0 -68
- data/rbi/lib/terminal-shop/type/unknown.rbi +0 -37
- data/rbi/lib/terminal-shop/type.rbi +0 -23
- data/rbi/lib/terminal-shop/util.rbi +0 -281
- data/sig/terminal-shop/errors.rbs +0 -99
- data/sig/terminal-shop/models/address_delete_params.rbs +0 -14
- data/sig/terminal-shop/models/address_get_params.rbs +0 -14
- data/sig/terminal-shop/models/address_list_params.rbs +0 -14
- data/sig/terminal-shop/models/app_delete_params.rbs +0 -14
- data/sig/terminal-shop/models/app_get_params.rbs +0 -14
- data/sig/terminal-shop/models/app_list_params.rbs +0 -14
- data/sig/terminal-shop/models/card_collect_params.rbs +0 -14
- data/sig/terminal-shop/models/card_delete_params.rbs +0 -14
- data/sig/terminal-shop/models/card_get_params.rbs +0 -14
- data/sig/terminal-shop/models/card_list_params.rbs +0 -14
- data/sig/terminal-shop/models/cart_clear_params.rbs +0 -14
- data/sig/terminal-shop/models/cart_convert_params.rbs +0 -14
- data/sig/terminal-shop/models/cart_get_params.rbs +0 -14
- data/sig/terminal-shop/models/order_get_params.rbs +0 -14
- data/sig/terminal-shop/models/order_list_params.rbs +0 -14
- data/sig/terminal-shop/models/product_get_params.rbs +0 -14
- data/sig/terminal-shop/models/product_list_params.rbs +0 -14
- data/sig/terminal-shop/models/product_variant.rbs +0 -17
- data/sig/terminal-shop/models/profile_me_params.rbs +0 -14
- data/sig/terminal-shop/models/subscription_delete_params.rbs +0 -14
- data/sig/terminal-shop/models/subscription_get_params.rbs +0 -14
- data/sig/terminal-shop/models/subscription_list_params.rbs +0 -14
- data/sig/terminal-shop/models/token_create_params.rbs +0 -14
- data/sig/terminal-shop/models/token_delete_params.rbs +0 -14
- data/sig/terminal-shop/models/token_get_params.rbs +0 -14
- data/sig/terminal-shop/models/token_list_params.rbs +0 -14
- data/sig/terminal-shop/models/view_init_params.rbs +0 -14
- data/sig/terminal-shop/transport/base_client.rbs +0 -110
- data/sig/terminal-shop/transport/pooled_net_requester.rbs +0 -39
- data/sig/terminal-shop/type/array_of.rbs +0 -36
- data/sig/terminal-shop/type/base_model.rbs +0 -73
- data/sig/terminal-shop/type/base_page.rbs +0 -22
- data/sig/terminal-shop/type/boolean_model.rbs +0 -18
- data/sig/terminal-shop/type/converter.rbs +0 -42
- data/sig/terminal-shop/type/enum.rbs +0 -22
- data/sig/terminal-shop/type/hash_of.rbs +0 -36
- data/sig/terminal-shop/type/request_parameters.rbs +0 -13
- data/sig/terminal-shop/type/union.rbs +0 -40
- data/sig/terminal-shop/type/unknown.rbs +0 -18
- data/sig/terminal-shop/type.rbs +0 -22
- data/sig/terminal-shop/util.rbs +0 -136
- /data/sig/{terminal-shop → terminal_shop}/resources/address.rbs +0 -0
- /data/sig/{terminal-shop → terminal_shop}/resources/app.rbs +0 -0
- /data/sig/{terminal-shop → terminal_shop}/resources/card.rbs +0 -0
- /data/sig/{terminal-shop → terminal_shop}/resources/cart.rbs +0 -0
- /data/sig/{terminal-shop → terminal_shop}/resources/email.rbs +0 -0
- /data/sig/{terminal-shop → terminal_shop}/resources/order.rbs +0 -0
- /data/sig/{terminal-shop → terminal_shop}/resources/product.rbs +0 -0
- /data/sig/{terminal-shop → terminal_shop}/resources/profile.rbs +0 -0
- /data/sig/{terminal-shop → terminal_shop}/resources/token.rbs +0 -0
- /data/sig/{terminal-shop → terminal_shop}/resources/view.rbs +0 -0
data/CHANGELOG.md
ADDED
@@ -0,0 +1,674 @@
|
|
1
|
+
# Changelog
|
2
|
+
|
3
|
+
## 3.5.0 (2025-04-26)
|
4
|
+
|
5
|
+
Full Changelog: [v3.4.0...v3.5.0](https://github.com/terminaldotshop/terminal-sdk-ruby/compare/v3.4.0...v3.5.0)
|
6
|
+
|
7
|
+
### Features
|
8
|
+
|
9
|
+
* support specifying content-type with FilePart class ([60735e1](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/60735e16282c5acd3417b3dc50c5d2898d673425))
|
10
|
+
* support webmock for testing ([ff907ee](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/ff907ee938893c90f26230b95ef2b10077b2f6a3))
|
11
|
+
|
12
|
+
|
13
|
+
### Bug Fixes
|
14
|
+
|
15
|
+
* ensure gem release is unaffected by renaming ([bbc47b4](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/bbc47b4cf411fbc82b4b52399c36ae582d985fc2))
|
16
|
+
* make a typo for `FilePart.content` ([197b7f8](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/197b7f881262ecc8e1580e9d11975b8f41b48461))
|
17
|
+
|
18
|
+
|
19
|
+
### Chores
|
20
|
+
|
21
|
+
* **internal:** codegen related update ([a28dff0](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/a28dff09e0ebf4f05e658fecc3d165ab7b20fc23))
|
22
|
+
* **internal:** improve response envelope unwrap functionality ([b3ceb20](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/b3ceb2025333ebbbf8627fbf527b9178f410b099))
|
23
|
+
* show truncated parameter docs in yard ([ce3d7ce](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/ce3d7ceb66f4f99f0f7b92e2883689805ca492c8))
|
24
|
+
|
25
|
+
## 3.4.0 (2025-04-24)
|
26
|
+
|
27
|
+
Full Changelog: [v3.3.0...v3.4.0](https://github.com/terminaldotshop/terminal-sdk-ruby/compare/v3.3.0...v3.4.0)
|
28
|
+
|
29
|
+
### Features
|
30
|
+
|
31
|
+
* **api:** global region, typed tracking status, variant tags ([736d9ef](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/736d9ef4bd55f6c924cd6706330facd329ef7b72))
|
32
|
+
* **api:** product variant descriptions ([26d7475](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/26d7475117aa2ba4399bc3606ad52a1d69fedb29))
|
33
|
+
|
34
|
+
|
35
|
+
### Chores
|
36
|
+
|
37
|
+
* broadly detect json family of content-type headers ([a9f78b5](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/a9f78b573013f313380503b26cc920f4bc48f158))
|
38
|
+
* **ci:** only use depot for staging repos ([ce5d778](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/ce5d778a7dc8e234d71c7c2f5c8c840058e5a70e))
|
39
|
+
* **internal:** codegen related update ([3a5e9d2](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/3a5e9d28cd56b5060355d5335a564834646fe9b0))
|
40
|
+
* **internal:** codegen related update ([2319933](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/23199337291f66664ed0a101bc7736adbcf44681))
|
41
|
+
|
42
|
+
## 3.3.0 (2025-04-23)
|
43
|
+
|
44
|
+
Full Changelog: [v3.2.0...v3.3.0](https://github.com/terminaldotshop/terminal-sdk-ruby/compare/v3.2.0...v3.3.0)
|
45
|
+
|
46
|
+
### Features
|
47
|
+
|
48
|
+
* **api:** include price on subscriptions ([e21f783](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/e21f78337d549c2516edc753f7bb9e966faa5cc0))
|
49
|
+
* implement `#hash` for data containers ([d954b4f](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/d954b4f956b0a1ed6462a14971e75b1ebeaa0dd9))
|
50
|
+
|
51
|
+
|
52
|
+
### Chores
|
53
|
+
|
54
|
+
* **ci:** add timeout thresholds for CI jobs ([d328298](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/d3282986fd478a2ecabf73cae37d29b244fd9286))
|
55
|
+
* documentation improvements ([0fca24d](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/0fca24d472130a7bb8d7baee00ca8fbedb361b66))
|
56
|
+
* explicitly mark apis public under `Internal` module ([e443174](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/e443174de5585b34511f4d5a0bdac9c722d5df38))
|
57
|
+
* **internal:** minor type annotation improvements ([3291fe9](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/3291fe9f9616128cc38b870dc19d0ef289b0013e))
|
58
|
+
* **internal:** version bump ([e84179a](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/e84179a53013d4ea88339068f8db7df22045b8ed))
|
59
|
+
* make sorbet enums easier to read ([6c9afe1](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/6c9afe1567674eb72881542a3ee40e41b2c46f70))
|
60
|
+
* simplify yard annotations by removing most `@!parse` directives ([d8dd2d0](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/d8dd2d084d85645f3f8340c255385dd4c2596fbb))
|
61
|
+
* update README with recommended editor plugins ([5cc4398](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/5cc4398e382f88834de210d1320e0a757b705221))
|
62
|
+
* use `@!method` instead of `@!parse` for virtual method type definitions ([451b8ca](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/451b8cac439363264e197efeea2e325de1abc6d8))
|
63
|
+
|
64
|
+
## 3.2.0 (2025-04-18)
|
65
|
+
|
66
|
+
Full Changelog: [v3.1.0...v3.2.0](https://github.com/terminaldotshop/terminal-sdk-ruby/compare/v3.1.0...v3.2.0)
|
67
|
+
|
68
|
+
### Features
|
69
|
+
|
70
|
+
* **api:** update subscription route ([0d5b3d8](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/0d5b3d86cd3919012a08160515c10bc7d3e744b3))
|
71
|
+
* **client:** enable setting base URL from environment variable ([152e594](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/152e594ac706d4c052ef1850f9736f86c91ed399))
|
72
|
+
|
73
|
+
|
74
|
+
### Bug Fixes
|
75
|
+
|
76
|
+
* always send idempotency header when specified as a request option ([8624f64](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/8624f6467c342122f7d1d6fcbd72a45e119699d6))
|
77
|
+
* **client:** send correct HTTP path ([b486b77](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/b486b7740724b356beeecbdd129245f34ae87f9d))
|
78
|
+
* restore ability to configure server environment as string during client construction ([2979da0](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/2979da025a61a72e3d8835b96208a00632b23484))
|
79
|
+
|
80
|
+
|
81
|
+
### Chores
|
82
|
+
|
83
|
+
* **internal:** always run post-processing when formatting when syntax_tree ([aeaac06](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/aeaac06a0fe58254350018f32c83706b9ce67284))
|
84
|
+
* **internal:** contribute.md and contributor QoL improvements ([b39f7ab](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/b39f7ab198eeb9671e6205a9016977165d68a48f))
|
85
|
+
* **internal:** loosen internal type restrictions ([ce191f0](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/ce191f00a94e52bc91b03e8ab1ffeb3c2e1bdccd))
|
86
|
+
* **internal:** minor touch ups on sdk internals ([faa1fb2](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/faa1fb292ba88662aafa162ffb7b8db8e70363a1))
|
87
|
+
* **internal:** mostly README touch ups ([34f5447](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/34f544727145d9102afabc3aa585a364ac28e950))
|
88
|
+
* **internal:** protect SSE parsing pipeline from broken UTF-8 characters ([9fbd1a3](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/9fbd1a37d46d3ea29bdfe4309dc34a17809ff579))
|
89
|
+
* **internal:** version bump ([47698cb](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/47698cb7788869fd93d74d471f2bcec023299fe1))
|
90
|
+
* make internal types pretty print ([9c5f191](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/9c5f191c6bbfdea36bf16880232b55199c7f96d0))
|
91
|
+
* refine `#inspect` and `#to_s` for model classes ([2ae0d75](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/2ae0d75d6fe5a47263d3af169bc7b96411bde156))
|
92
|
+
|
93
|
+
|
94
|
+
### Documentation
|
95
|
+
|
96
|
+
* update documentation links to be more uniform ([74468e6](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/74468e675eb30b5b8614c9bcc2dc6d38eff22dbf))
|
97
|
+
|
98
|
+
## 3.1.0 (2025-04-14)
|
99
|
+
|
100
|
+
Full Changelog: [v3.0.0...v3.1.0](https://github.com/terminaldotshop/terminal-sdk-ruby/compare/v3.0.0...v3.1.0)
|
101
|
+
|
102
|
+
### Features
|
103
|
+
|
104
|
+
* **api:** include created timestamps ([31da9d2](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/31da9d2395f580dc5ae3cfe5b6e012f3fde66a2b))
|
105
|
+
|
106
|
+
|
107
|
+
### Bug Fixes
|
108
|
+
|
109
|
+
* inaccuracies in the README.md ([ed0d6c1](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/ed0d6c1b042499b2f0161583cd9dce84c6eea91e))
|
110
|
+
* **internal:** update release-please to use ruby strategy for README.md ([89ed69d](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/89ed69db0b451b0c32a636a2be4f1129bca29834))
|
111
|
+
|
112
|
+
|
113
|
+
### Chores
|
114
|
+
|
115
|
+
* ensure readme.md is bumped when release please updates versions ([b7a238c](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/b7a238cf978c74802bac10f060e3a35c430de82a))
|
116
|
+
* fix lsp configuration file for local development ([c52b170](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/c52b1701a7c9e05ce4366015d9efac772291b38c))
|
117
|
+
* **internal:** expand CI branch coverage ([754aaf7](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/754aaf70aaf5c8f51d96297fe9851b3497dc5207))
|
118
|
+
* **internal:** reduce CI branch coverage ([ec791c9](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/ec791c962055d3a92a7a1ddd3cbb14f6e00f6ee2))
|
119
|
+
* **internal:** version bump ([41b749b](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/41b749bd415202dd889a1578827a782b697373fd))
|
120
|
+
|
121
|
+
## 3.0.0 (2025-04-09)
|
122
|
+
|
123
|
+
Full Changelog: [v2.1.3...v3.0.0](https://github.com/terminaldotshop/terminal-sdk-ruby/compare/v2.1.3...v3.0.0)
|
124
|
+
|
125
|
+
### ⚠ BREAKING CHANGES
|
126
|
+
|
127
|
+
* bump min supported ruby version to 3.1 (oldest non-EOL) ([#193](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/193))
|
128
|
+
* remove top level type aliases to relocated classes ([#192](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/192))
|
129
|
+
|
130
|
+
### Features
|
131
|
+
|
132
|
+
* add reference links in yard ([#182](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/182)) ([526aba9](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/526aba920f989a1c323aac74bbf45c29480e0d1c))
|
133
|
+
* allow all valid `JSON` types to be encoded ([#202](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/202)) ([bbd9e48](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/bbd9e48a7bfebef72ff7ec55398310d072500b68))
|
134
|
+
* **api:** include shipment tracking info on order ([#216](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/216)) ([6665880](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/666588056ba2a1cb515c71b6d450bfc1cbc496cc))
|
135
|
+
* bump min supported ruby version to 3.1 (oldest non-EOL) ([#193](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/193)) ([6d37312](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/6d37312b5bee3cd9f73cc02a7b4a8fec0edef432))
|
136
|
+
* implement `to_json` for base model ([#188](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/188)) ([cae8e58](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/cae8e58c32925d35f5833f7fe675139d3dca29bf))
|
137
|
+
* link response models to their methods in yard doc ([#184](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/184)) ([cdae10f](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/cdae10f6072ebe18522d95e0cd9b59a474cb8924))
|
138
|
+
* remove top level type aliases to relocated classes ([#192](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/192)) ([5563310](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/5563310b2ef6c506f956833201603f8f20aa063d))
|
139
|
+
* support query, header, and body params that have identical names ([#201](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/201)) ([af3da72](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/af3da723f577760b632a3635a7234cfcada5e5c4))
|
140
|
+
* support solargraph generics ([#195](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/195)) ([f822bc0](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/f822bc0ecba3e76823b67e27ee32890ee006a0e1))
|
141
|
+
* use Pathname alongside raw IO handles for file uploads ([#213](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/213)) ([3621b7d](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/3621b7d4461d1f0f9f759407e40e2a95cd860162))
|
142
|
+
|
143
|
+
|
144
|
+
### Bug Fixes
|
145
|
+
|
146
|
+
* converter should transform stringio into string where applicable ([#204](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/204)) ([a289d17](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/a289d17557b97640ae2f539e4a0789e0b8ade7ad))
|
147
|
+
* raise connection error for errors that result from HTTP transports ([#214](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/214)) ([25f93ee](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/25f93eea0f3230c6d4de76fbe8fd3c62c5242a9f))
|
148
|
+
|
149
|
+
|
150
|
+
### Chores
|
151
|
+
|
152
|
+
* add README docs for using solargraph when installing gem from git ([#212](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/212)) ([f472616](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/f4726162dd7aba54bfbaec8c52c06a8865083d39))
|
153
|
+
* always fold up method bodies in sorbet type definitions ([#208](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/208)) ([5b098da](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/5b098dab395aefb25dfd1b247cb978c4e0cd64b0))
|
154
|
+
* demonstrate how to make undocumented requests in README ([#194](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/194)) ([e120c78](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/e120c78458dc1fd588095eaf019becaba274aac9))
|
155
|
+
* do not use literals for version in type definitions ([#196](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/196)) ([3ebbbb3](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/3ebbbb34b9ccd06a2f848a4a86eca76d63cf1f5e))
|
156
|
+
* document LSP support in read me ([#200](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/200)) ([a04a943](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/a04a9436f91b99f82b8f6d3e663077d01f48397d))
|
157
|
+
* extract error classes into own module ([#189](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/189)) ([1722e5d](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/1722e5d0fbd15ddbfbd1f0480a256ab225b75f51))
|
158
|
+
* improve yard docs readability ([#183](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/183)) ([0f12da7](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/0f12da72824387d05249b1244b1e8bc4d344bf4d))
|
159
|
+
* **internal:** codegen related update ([#185](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/185)) ([3712266](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/3712266a9a4a8f8d83bc44631121c2ab714efc2d))
|
160
|
+
* **internal:** codegen related update ([#190](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/190)) ([e716071](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/e716071e4de22cdd28e6032a58ec2f5f8bc4af27))
|
161
|
+
* **internal:** misc small improvements ([#205](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/205)) ([cc99fb9](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/cc99fb99a4cc678d1126d00ea36545b8a6c31c45))
|
162
|
+
* **internal:** more concise handling of parameter naming conflicts ([#210](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/210)) ([7d0534c](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/7d0534ca9fd6266e96b98b3973c1edfe6ece2452))
|
163
|
+
* **internal:** rubocop rules ([#207](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/207)) ([faa57aa](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/faa57aa18476c114fe3001b5762dbc8dde30ce79))
|
164
|
+
* **internal:** run rubocop linter in parallel ([#206](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/206)) ([16df643](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/16df643061e965dcdbde3101a44ce6c90a496826))
|
165
|
+
* **internal:** version bump ([#180](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/180)) ([0e44707](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/0e44707dda2a96791da162584ac86a22bf12908c))
|
166
|
+
* loosen const and integer coercion rules ([#215](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/215)) ([431dbf5](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/431dbf595843049d21f34ba2c877d7a6b93b3217))
|
167
|
+
* make client tests look prettier ([#211](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/211)) ([288ebde](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/288ebde73779c5fce93e4430caf6ebbfdc42fa46))
|
168
|
+
* misc sdk polish ([#199](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/199)) ([ea7285b](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/ea7285b257ac73ba3be0e3cb283b3bfab7f31ab6))
|
169
|
+
* move private classes into internal module ([#191](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/191)) ([927175f](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/927175f4e48ed000aad9eea061674fd1c4308f77))
|
170
|
+
* order client variables by "importance" ([#187](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/187)) ([2cb1427](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/2cb1427ab1bac91bfa5eb850e558caf78a3938bc))
|
171
|
+
* relax sorbet enum parameters to allow `String` in addition to `Symbol` ([#186](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/186)) ([e7f8d62](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/e7f8d62f6cd9aa237bb26d2c4a546f56062fbe63))
|
172
|
+
* rename confusing `Type::BooleanModel` to `Type::Boolean` ([#203](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/203)) ([d3a6719](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/d3a6719914fd8c03a7fb73fc5639061158eaf72c))
|
173
|
+
* simplify internal utils ([#198](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/198)) ([8e7e56c](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/8e7e56c796c1da3a93fd6d61c18fe3f003547bae))
|
174
|
+
* update yard comment formatting ([#209](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/209)) ([0a4113b](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/0a4113b37055098446b9efbab780bffd38668850))
|
175
|
+
* use package name for gemspec ([#197](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/197)) ([3ff332c](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/3ff332c7a914c41cd8c4a0d6053a843283ba2666))
|
176
|
+
|
177
|
+
## 2.1.3 (2025-04-02)
|
178
|
+
|
179
|
+
Full Changelog: [v2.1.2...v2.1.3](https://github.com/terminaldotshop/terminal-sdk-ruby/compare/v2.1.2...v2.1.3)
|
180
|
+
|
181
|
+
### Bug Fixes
|
182
|
+
|
183
|
+
* pluralize `list` response variables ([#179](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/179)) ([f2193c8](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/f2193c869bebc38979fef2c5ac52c9e9acd968ca))
|
184
|
+
|
185
|
+
|
186
|
+
### Chores
|
187
|
+
|
188
|
+
* **internal:** codegen related update ([#177](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/177)) ([ab6b63d](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/ab6b63d0b63613ce63b113c1e29a7293e2ef01fe))
|
189
|
+
|
190
|
+
## 2.1.2 (2025-04-02)
|
191
|
+
|
192
|
+
Full Changelog: [v2.1.1...v2.1.2](https://github.com/terminaldotshop/terminal-sdk-ruby/compare/v2.1.1...v2.1.2)
|
193
|
+
|
194
|
+
### Bug Fixes
|
195
|
+
|
196
|
+
* path interpolation template strings ([#176](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/176)) ([1710f55](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/1710f5509a20c388fbc6a25cc73948ada016e49e))
|
197
|
+
|
198
|
+
|
199
|
+
### Chores
|
200
|
+
|
201
|
+
* **internal:** version bump ([#173](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/173)) ([6c173f0](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/6c173f043f24bc7d8df77e875d4460b796a4d7ae))
|
202
|
+
* use fully qualified name in sorbet README example ([#175](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/175)) ([3563dd9](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/3563dd93a7d5f67c08ea533b89e12ee310831a1b))
|
203
|
+
|
204
|
+
## 2.1.1 (2025-04-01)
|
205
|
+
|
206
|
+
Full Changelog: [v2.1.0...v2.1.1](https://github.com/terminaldotshop/terminal-sdk-ruby/compare/v2.1.0...v2.1.1)
|
207
|
+
|
208
|
+
### Bug Fixes
|
209
|
+
|
210
|
+
* remove trailing / for environments ([#172](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/172)) ([a5007f0](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/a5007f0e208c44ea7fb98681e8f08fa1b2c2dca2))
|
211
|
+
|
212
|
+
|
213
|
+
### Chores
|
214
|
+
|
215
|
+
* fix misc rubocop errors ([#170](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/170)) ([114405c](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/114405cc2d5e4fde0a41d20c8c4787033b1b2973))
|
216
|
+
|
217
|
+
## 2.1.0 (2025-04-01)
|
218
|
+
|
219
|
+
Full Changelog: [v2.0.0...v2.1.0](https://github.com/terminaldotshop/terminal-sdk-ruby/compare/v2.0.0...v2.1.0)
|
220
|
+
|
221
|
+
### Features
|
222
|
+
|
223
|
+
* **internal:** converter interface should recurse without schema ([#164](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/164)) ([937b71d](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/937b71d533293ffb72664cb6309bd7495ebc13b5))
|
224
|
+
|
225
|
+
|
226
|
+
### Bug Fixes
|
227
|
+
|
228
|
+
* switch to github compatible markdown engine ([#169](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/169)) ([1b58af4](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/1b58af4068eaa9d7a7beed6b48a9039383cef79c))
|
229
|
+
|
230
|
+
|
231
|
+
### Chores
|
232
|
+
|
233
|
+
* **internal:** minor refactoring of utils ([#163](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/163)) ([b228505](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/b228505336a27aa7dbfe4e57e2787689d4557c9f))
|
234
|
+
* **internal:** version bump ([#160](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/160)) ([8415526](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/8415526eea907cf13ef34bab332ae124de9dc8a0))
|
235
|
+
* more accurate type annotations for SDK internals ([#167](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/167)) ([0e663cf](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/0e663cf7cae118c79164f70b397e3098329623ff))
|
236
|
+
* more aggressive tapioca detection logic for skipping compiler introspection ([#162](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/162)) ([6e33743](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/6e33743e2aefe7d6fa17bed99d25a391ceea78c4))
|
237
|
+
* relocate internal modules ([#166](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/166)) ([68d2d27](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/68d2d278b23713aee6d5db04f518327981c946d2))
|
238
|
+
* remove unnecessary & confusing module ([#165](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/165)) ([d67ea4c](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/d67ea4c8816947e47abdfd9e2861bd13c8256eab))
|
239
|
+
* update readme ([#168](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/168)) ([235bd2d](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/235bd2d2836a745314ce2217993eb8624a39952d))
|
240
|
+
|
241
|
+
## 2.0.0 (2025-03-25)
|
242
|
+
|
243
|
+
Full Changelog: [v1.8.0...v2.0.0](https://github.com/terminaldotshop/terminal-sdk-ruby/compare/v1.8.0...v2.0.0)
|
244
|
+
|
245
|
+
### ⚠ BREAKING CHANGES
|
246
|
+
|
247
|
+
* use tagged enums in sorbet type definitions ([#149](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/149))
|
248
|
+
* support `for item in stream` style iteration on `Stream`s ([#147](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/147))
|
249
|
+
* **model:** base model should recursively store coerced base models ([#137](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/137))
|
250
|
+
|
251
|
+
### Features
|
252
|
+
|
253
|
+
* consistently accept `AnyHash` types in parameter positions in sorbet ([#154](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/154)) ([6cefe4a](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/6cefe4ab706715474ac887aca67bafc143dcbb0a))
|
254
|
+
* prevent tapioca from introspecting the gem internals ([#153](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/153)) ([5011827](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/501182798fa342ffeedb997d121b9697e5a37be5))
|
255
|
+
* support `for item in stream` style iteration on `Stream`s ([#147](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/147)) ([a9a0637](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/a9a0637c4d840e72fdc2a1372dd2d6bb25b8b253))
|
256
|
+
* use tagged enums in sorbet type definitions ([#149](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/149)) ([4b05e5a](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/4b05e5aed976c377fc97fd3671daab735199f06b))
|
257
|
+
|
258
|
+
|
259
|
+
### Bug Fixes
|
260
|
+
|
261
|
+
* label optional keyword arguments in *.rbs type definitions ([#145](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/145)) ([70cf7ef](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/70cf7ef46f26ce882dc77bd9e0668d04a9cb130d))
|
262
|
+
* **model:** base model should recursively store coerced base models ([#137](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/137)) ([8cad153](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/8cad1530e9c7b24a7221d49e8931976a9b0ce7e2))
|
263
|
+
* resolve tapioca derived sorbet errors ([#148](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/148)) ([66fe6fd](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/66fe6fd86709abc23cd21134751e1ec1a31a0175))
|
264
|
+
* yard example tag formatting ([#151](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/151)) ([70a6222](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/70a6222b40e382a5a609f34a9fdcd3e0566b111f))
|
265
|
+
|
266
|
+
|
267
|
+
### Chores
|
268
|
+
|
269
|
+
* `BaseModel` fields that are `BaseModel` typed should also accept `Hash` ([#150](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/150)) ([cb1aac7](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/cb1aac74d07106befba8f0c2a4eea7858c51b921))
|
270
|
+
* add `[@yieldparam](https://github.com/yieldparam)` to yard doc ([#141](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/141)) ([075f5c3](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/075f5c35dfeee29cd9c7f5a8c16c441e0acbfc88))
|
271
|
+
* add example directory ([#144](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/144)) ([1e59727](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/1e59727ab6898afcc41d4156a872582f8fc0016b))
|
272
|
+
* add type annotations for enum and union member listing methods ([#152](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/152)) ([7a7244f](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/7a7244f3355e1e90c8c23a662c15dc435f3f6e70))
|
273
|
+
* disable dangerous rubocop auto correct rule ([#158](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/158)) ([27ae891](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/27ae891e623328a3841d303e4c8a3ed69ab6b576))
|
274
|
+
* disable overloads in `*.rbs` definitions for readable LSP errors ([#146](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/146)) ([1949bd3](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/1949bd3649e5001a2e78c77db982f8874ce90534))
|
275
|
+
* disable unnecessary linter rules for sorbet manifests ([#140](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/140)) ([6f03c74](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/6f03c742d81019c0522cdd8327286822886851d8))
|
276
|
+
* document Client's concurrency capability ([#139](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/139)) ([b82b7f1](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/b82b7f11ff2f4b7e93c0dfbb8dd6b4c42b9bc937))
|
277
|
+
* ignore some spurious linter warnings and formatting changes ([#138](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/138)) ([51f528b](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/51f528bd6be973ba96bf490ae0cab566c9d46e11))
|
278
|
+
* **internal:** add sorbet config for SDK local development ([#143](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/143)) ([8a52423](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/8a524237189bb26392c8fa3cc3485f20a8ea5aa4))
|
279
|
+
* **internal:** codegen related update ([#135](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/135)) ([cb13df6](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/cb13df606e43c2688047741d95cf3a06bb5b44dc))
|
280
|
+
* more readable output when tests fail ([#159](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/159)) ([1348893](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/1348893157018206955031f89ce969a08221a0c4))
|
281
|
+
* recursively accept `AnyHash` for `BaseModel`s in arrays and hashes ([#155](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/155)) ([10ce2b0](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/10ce2b0f480180e8a836901b893660947a79e911))
|
282
|
+
* reduce verbosity in type declarations ([#157](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/157)) ([98a858b](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/98a858b21fa89b7053410c5520122f55942cc630))
|
283
|
+
* switch to prettier looking sorbet annotations ([#156](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/156)) ([255d4bb](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/255d4bb60cfbbe4a208e1d69ab2d0b352702a105))
|
284
|
+
* use multi-line formatting style for really long lines ([#142](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/142)) ([819d330](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/819d330df867876f87cac3e8fd5af23b46e6e72d))
|
285
|
+
|
286
|
+
## 1.8.0 (2025-03-18)
|
287
|
+
|
288
|
+
Full Changelog: [v1.7.0...v1.8.0](https://github.com/terminaldotshop/terminal-sdk-ruby/compare/v1.7.0...v1.8.0)
|
289
|
+
|
290
|
+
### Features
|
291
|
+
|
292
|
+
* support jsonl uploads ([#125](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/125)) ([125a05a](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/125a05a736d60e8cdff2add0d19de5dd4a979e7d))
|
293
|
+
|
294
|
+
|
295
|
+
### Bug Fixes
|
296
|
+
|
297
|
+
* bad documentation url for gemdocs.org ([#134](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/134)) ([7caebab](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/7caebabab00c609946852992ef1af82d6ca90139))
|
298
|
+
|
299
|
+
|
300
|
+
### Chores
|
301
|
+
|
302
|
+
* add most doc strings to rbi type definitions ([#126](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/126)) ([5289149](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/528914936d6dcab5d85f2d06ddf24adbf7f43295))
|
303
|
+
* document union variants in yard doc ([#130](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/130)) ([8662cfd](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/8662cfd577ca857854cf6692767686f83347f2db))
|
304
|
+
* ensure doc strings for rbi method arguments ([#127](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/127)) ([e6b0cd7](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/e6b0cd749e7dd7192d1d35decbfca7c4f69a8eeb))
|
305
|
+
* error fields are now mutable in keeping with rest of SDK ([#129](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/129)) ([9762727](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/9762727ce18d3a96242698acd06a960a52ee9fe4))
|
306
|
+
* **internal:** codegen related update ([#133](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/133)) ([ee97948](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/ee97948fd2e86e5eb68119e3ca403ce2bb1f72cb))
|
307
|
+
* **internal:** remove extra empty newlines ([#123](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/123)) ([4bfa89f](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/4bfa89f7054dfa887ba5396399a7c35c24d4f8c0))
|
308
|
+
* **internal:** version bump ([#120](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/120)) ([54e8ed6](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/54e8ed6ad3c8079b9b50ffa046a3f0ea9946d56b))
|
309
|
+
* mark non-inheritable SDK internal classes as final ([#132](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/132)) ([39109d9](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/39109d97ab906855d2c0ac88cef0f657aeed3027))
|
310
|
+
* refactor BasePage to have initializer ([#122](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/122)) ([f40aebb](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/f40aebb582ea1918f36fd9d36d2da7d99369b8a4))
|
311
|
+
* sdk internal updates ([#124](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/124)) ([a395876](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/a395876eb60ac10370cfc470f37010e7dc1fb006))
|
312
|
+
* slightly more consistent type definition layout ([#131](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/131)) ([392c6bd](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/392c6bdaacabf0e2e8afcf52bcad2bbfb20a6376))
|
313
|
+
* touch up sdk usage examples ([#128](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/128)) ([d4cd993](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/d4cd993f1b0a78dcb5a47353903a998587610306))
|
314
|
+
|
315
|
+
## 1.7.0 (2025-03-13)
|
316
|
+
|
317
|
+
Full Changelog: [v1.6.0...v1.7.0](https://github.com/terminaldotshop/terminal-sdk-ruby/compare/v1.6.0...v1.7.0)
|
318
|
+
|
319
|
+
### Features
|
320
|
+
|
321
|
+
* **api:** region model ([#119](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/119)) ([3158513](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/315851302cb4f286b0f5bd59f352498123b81277))
|
322
|
+
|
323
|
+
|
324
|
+
### Chores
|
325
|
+
|
326
|
+
* **internal:** version bump ([#117](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/117)) ([c948af2](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/c948af21709e14e7cb4347ae5abf2ad3e76227c4))
|
327
|
+
|
328
|
+
## 1.6.0 (2025-03-13)
|
329
|
+
|
330
|
+
Full Changelog: [v1.5.0...v1.6.0](https://github.com/terminaldotshop/terminal-sdk-ruby/compare/v1.5.0...v1.6.0)
|
331
|
+
|
332
|
+
### Features
|
333
|
+
|
334
|
+
* **api:** region type ([#116](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/116)) ([c1ebb53](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/c1ebb53a48b46a720aa064805f4ef689c30e315e))
|
335
|
+
|
336
|
+
|
337
|
+
### Chores
|
338
|
+
|
339
|
+
* **internal:** version bump ([#114](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/114)) ([64057c4](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/64057c48b7e7dd19e3f836a843577b015167a4cb))
|
340
|
+
|
341
|
+
## 1.5.0 (2025-03-13)
|
342
|
+
|
343
|
+
Full Changelog: [v1.4.0...v1.5.0](https://github.com/terminaldotshop/terminal-sdk-ruby/compare/v1.4.0...v1.5.0)
|
344
|
+
|
345
|
+
### Features
|
346
|
+
|
347
|
+
* **api:** add region to `GET /view/init` ([#113](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/113)) ([e2f97a9](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/e2f97a94ca2f3d49f943659cac9cfa6e922483c7))
|
348
|
+
|
349
|
+
|
350
|
+
### Chores
|
351
|
+
|
352
|
+
* **internal:** version bump ([#111](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/111)) ([60422ec](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/60422ec20d95ef407411d0974215ae94c5775110))
|
353
|
+
|
354
|
+
## 1.4.0 (2025-03-13)
|
355
|
+
|
356
|
+
Full Changelog: [v1.3.0...v1.4.0](https://github.com/terminaldotshop/terminal-sdk-ruby/compare/v1.3.0...v1.4.0)
|
357
|
+
|
358
|
+
### Features
|
359
|
+
|
360
|
+
* **api:** remove gift cards ([#110](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/110)) ([8b16fee](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/8b16fee738e2c5f6cfc99c2e99d538fd93608697))
|
361
|
+
|
362
|
+
|
363
|
+
### Chores
|
364
|
+
|
365
|
+
* **internal:** version bump ([#108](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/108)) ([d9dde0c](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/d9dde0c1ae8806052865ac0e1805f20bbe4d07fe))
|
366
|
+
|
367
|
+
## 1.3.0 (2025-03-13)
|
368
|
+
|
369
|
+
Full Changelog: [v1.2.0...v1.3.0](https://github.com/terminaldotshop/terminal-sdk-ruby/compare/v1.2.0...v1.3.0)
|
370
|
+
|
371
|
+
### Features
|
372
|
+
|
373
|
+
* **api:** clear cart api ([#107](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/107)) ([71a105c](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/71a105c4af7600d20003f737d8ee41adc123983a))
|
374
|
+
|
375
|
+
|
376
|
+
### Chores
|
377
|
+
|
378
|
+
* remove stale thread local checks ([#105](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/105)) ([66ffe05](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/66ffe050fe56c2e86e2db4303d0a34388ac2fd67))
|
379
|
+
|
380
|
+
## 1.2.0 (2025-03-13)
|
381
|
+
|
382
|
+
Full Changelog: [v1.1.0...v1.2.0](https://github.com/terminaldotshop/terminal-sdk-ruby/compare/v1.1.0...v1.2.0)
|
383
|
+
|
384
|
+
### Features
|
385
|
+
|
386
|
+
* support streaming uploads ([#103](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/103)) ([a81d62b](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/a81d62bf44896ebb273ff0a13bb9fab9752d8b5b))
|
387
|
+
|
388
|
+
|
389
|
+
### Bug Fixes
|
390
|
+
|
391
|
+
* enums should only coerce matching symbols into strings ([#104](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/104)) ([f80f85c](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/f80f85c3b366c12ad6039bdeaa84338fc7eb231e))
|
392
|
+
|
393
|
+
|
394
|
+
### Chores
|
395
|
+
|
396
|
+
* fused enum should use faster internal iteration by default ([#101](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/101)) ([babe138](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/babe13815a934019e32cdd2bd48045f4964c5404))
|
397
|
+
* improve documentation ([#102](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/102)) ([f68e99c](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/f68e99c46325718dbe5fba01183700d589064a6c))
|
398
|
+
* **internal:** version bump ([#99](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/99)) ([1c4846c](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/1c4846c00e68ea4a6b4e824e2b53af231e7ae19a))
|
399
|
+
|
400
|
+
## 1.1.0 (2025-03-11)
|
401
|
+
|
402
|
+
Full Changelog: [v1.0.0...v1.1.0](https://github.com/terminaldotshop/terminal-sdk-ruby/compare/v1.0.0...v1.1.0)
|
403
|
+
|
404
|
+
### Features
|
405
|
+
|
406
|
+
* add SKIP_BREW env var to ./scripts/bootstrap ([#93](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/93)) ([622cbae](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/622cbae3433fe7d06a796d417c9b4219ede428d5))
|
407
|
+
* **api:** gift cards ([#98](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/98)) ([de7eb77](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/de7eb7746ebf2f11f937e4e5248ed09c159d1c77))
|
408
|
+
* support client level methods ([#96](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/96)) ([be72482](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/be7248213ee8f1f48dc5e7da39f8097843f75397))
|
409
|
+
|
410
|
+
|
411
|
+
### Bug Fixes
|
412
|
+
|
413
|
+
* rectify a mistake where wrong lines were chosen during rebase ([#97](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/97)) ([00cac56](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/00cac5655787d579a5a7c1a6a8cebe5210ef99b3))
|
414
|
+
|
415
|
+
|
416
|
+
### Chores
|
417
|
+
|
418
|
+
* add `sorbet` section to README ([#94](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/94)) ([4e1e7c5](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/4e1e7c537ed8100a14017a9082ae18fe25a4c105))
|
419
|
+
* add more examples to README.md ([#95](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/95)) ([17d5b05](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/17d5b05a334483dd2b30613343a3ab0e9cea7d38))
|
420
|
+
* generate better supported rbi signatures ([#91](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/91)) ([6b8a1a2](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/6b8a1a22fe62cdb6c3c59512e5ef9143153c9f45))
|
421
|
+
* **internal:** version bump ([#89](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/89)) ([ae6d3c4](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/ae6d3c41bb105be0fd048a5b3e61a438d90d67cd))
|
422
|
+
* modify sorbet initializers to better support auto-completion ([#92](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/92)) ([a7fae52](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/a7fae529cc9dcb61dc2c90538a789e53d6647d76))
|
423
|
+
|
424
|
+
## 1.0.0 (2025-03-07)
|
425
|
+
|
426
|
+
Full Changelog: [v0.1.0-alpha.15...v1.0.0](https://github.com/terminaldotshop/terminal-sdk-ruby/compare/v0.1.0-alpha.15...v1.0.0)
|
427
|
+
|
428
|
+
### Features
|
429
|
+
|
430
|
+
* add jsonl support ([#86](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/86)) ([c72b9e9](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/c72b9e946c80f0ec415610d13cd24e95d24a05d3))
|
431
|
+
* **api:** manual updates ([#88](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/88)) ([3726df5](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/3726df529e42b9c5599e3cdd2e1c535ddb43adfc))
|
432
|
+
|
433
|
+
|
434
|
+
### Chores
|
435
|
+
|
436
|
+
* be consistent and use lower case headers everywhere ([#79](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/79)) ([87e532b](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/87e532b283970a5ebc5f8a8c44a1932270750072))
|
437
|
+
* bump lockfile ([#83](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/83)) ([a228b5e](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/a228b5e01128e9be547c9bcac6ac6a3fd09c47c4))
|
438
|
+
* **internal:** add utils methods for parsing SSE ([#81](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/81)) ([6ed2804](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/6ed2804522b065285c3252240149384370901e79))
|
439
|
+
* move examples into tests ([#85](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/85)) ([f0ce74d](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/f0ce74d17eab8833d0292955e3491aac194c2964))
|
440
|
+
* rename misleading variable ([#84](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/84)) ([df6c7ba](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/df6c7ba799b0d248494120251611c004023a20ba))
|
441
|
+
* support different EOLs in streaming ([#87](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/87)) ([299b3f3](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/299b3f3f60a412208f0806f3710c2fd3f86f395d))
|
442
|
+
* update custom timeout header name ([#82](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/82)) ([e479529](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/e479529d33a31da99ec8ddba4d2692878bf91610))
|
443
|
+
|
444
|
+
## 0.1.0-alpha.15 (2025-03-01)
|
445
|
+
|
446
|
+
Full Changelog: [v0.1.0-alpha.14...v0.1.0-alpha.15](https://github.com/terminaldotshop/terminal-sdk-ruby/compare/v0.1.0-alpha.14...v0.1.0-alpha.15)
|
447
|
+
|
448
|
+
### Features
|
449
|
+
|
450
|
+
* **internal:** modified tests for thread and fiber safety ([#76](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/76)) ([522ac91](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/522ac918ad5ddb5ddf9de87a265caf7fe633b79c))
|
451
|
+
|
452
|
+
|
453
|
+
### Bug Fixes
|
454
|
+
|
455
|
+
* better support header parameters ([#78](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/78)) ([ea50350](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/ea503505415a5481f04ed809f8cf9df883e34d51))
|
456
|
+
|
457
|
+
|
458
|
+
### Chores
|
459
|
+
|
460
|
+
* **internal:** version bump ([#75](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/75)) ([4e2ef50](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/4e2ef507ca756908b6fa2813cdaffee5432b4804))
|
461
|
+
|
462
|
+
## 0.1.0-alpha.14 (2025-02-28)
|
463
|
+
|
464
|
+
Full Changelog: [v0.1.0-alpha.13...v0.1.0-alpha.14](https://github.com/terminaldotshop/terminal-sdk-ruby/compare/v0.1.0-alpha.13...v0.1.0-alpha.14)
|
465
|
+
|
466
|
+
### Features
|
467
|
+
|
468
|
+
* **api:** manual updates ([#73](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/73)) ([f75262e](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/f75262e1ba765dda01cf857325ac0e9e2ebfcbdc))
|
469
|
+
* **api:** manual updates ([#74](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/74)) ([f4fcbe5](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/f4fcbe5f5b20afff9629c7d5d9fa31ccacf859cc))
|
470
|
+
|
471
|
+
|
472
|
+
### Chores
|
473
|
+
|
474
|
+
* **internal:** group related utils together ([#71](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/71)) ([7c5be22](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/7c5be22c20d1c922390cabe8c03210460267b43d))
|
475
|
+
* **internal:** version bump ([#69](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/69)) ([75a1e34](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/75a1e34eb14d99453106cf61d467cb223d7f79f2))
|
476
|
+
|
477
|
+
|
478
|
+
### Documentation
|
479
|
+
|
480
|
+
* update URLs from stainlessapi.com to stainless.com ([#72](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/72)) ([b2c45db](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/b2c45db567996cf070d74c5efb2a0379a5e141d2))
|
481
|
+
|
482
|
+
## 0.1.0-alpha.13 (2025-02-26)
|
483
|
+
|
484
|
+
Full Changelog: [v0.1.0-alpha.12...v0.1.0-alpha.13](https://github.com/terminaldotshop/terminal-sdk-ruby/compare/v0.1.0-alpha.12...v0.1.0-alpha.13)
|
485
|
+
|
486
|
+
### Features
|
487
|
+
|
488
|
+
* **api:** manual updates ([#68](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/68)) ([d46a91d](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/d46a91dadb4b84c3b3af515eac79c6c9c7bd2150))
|
489
|
+
|
490
|
+
|
491
|
+
### Chores
|
492
|
+
|
493
|
+
* **internal:** version bump ([#66](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/66)) ([3eed16a](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/3eed16a895d59517cdb39699fee7a1718ebc89d6))
|
494
|
+
|
495
|
+
## 0.1.0-alpha.12 (2025-02-26)
|
496
|
+
|
497
|
+
Full Changelog: [v0.1.0-alpha.11...v0.1.0-alpha.12](https://github.com/terminaldotshop/terminal-sdk-ruby/compare/v0.1.0-alpha.11...v0.1.0-alpha.12)
|
498
|
+
|
499
|
+
### Features
|
500
|
+
|
501
|
+
* add deprecation notice to enum members and resources ([#62](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/62)) ([44fb858](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/44fb858b7719af4474ef2fb0a1deeb13f71f181f))
|
502
|
+
* **api:** manual updates ([#65](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/65)) ([d884227](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/d884227b937a56969ca04b20fcd98ceff30db492))
|
503
|
+
* isolate platform headers ([#63](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/63)) ([f0a7ff3](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/f0a7ff3c6afe49d13790eff5e50dfbdb019dfc1d))
|
504
|
+
|
505
|
+
|
506
|
+
### Chores
|
507
|
+
|
508
|
+
* **internal:** version bump ([#60](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/60)) ([79f9f6f](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/79f9f6f8f19f88edbec2ad8abd6333c7a413e94c))
|
509
|
+
* **refactor:** improve requester internals ([#64](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/64)) ([fec6edb](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/fec6edb201e6c205af3417ab9b172096680d7a51))
|
510
|
+
|
511
|
+
## 0.1.0-alpha.11 (2025-02-25)
|
512
|
+
|
513
|
+
Full Changelog: [v0.1.0-alpha.10...v0.1.0-alpha.11](https://github.com/terminaldotshop/terminal-sdk-ruby/compare/v0.1.0-alpha.10...v0.1.0-alpha.11)
|
514
|
+
|
515
|
+
### Features
|
516
|
+
|
517
|
+
* **api:** manual updates ([#59](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/59)) ([2e7197c](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/2e7197c4ff1652250aebd967aae68a0c7494e75f))
|
518
|
+
* make `build_request` overridable ([#54](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/54)) ([0623b3d](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/0623b3db9741c44f6ca43d32234bc899aff0cbe5))
|
519
|
+
|
520
|
+
|
521
|
+
### Chores
|
522
|
+
|
523
|
+
* add type annotations for requester ([#55](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/55)) ([fcb9d1f](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/fcb9d1f18bfead4875676753fe9146b8b40af415))
|
524
|
+
* bump lockfile ([#49](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/49)) ([1ef3656](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/1ef365688a564dc8dae6fc575269c5c2aa977591))
|
525
|
+
* clean up client tests ([#47](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/47)) ([03b21b2](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/03b21b28440e333acb3e7616deb5ae5a4f8b8a84))
|
526
|
+
* **internal:** formatting ([#48](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/48)) ([8d69160](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/8d69160b37565da87edd86f6e6e90f45733006e5))
|
527
|
+
* **internal:** prune unused `extern` references ([#58](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/58)) ([52c342c](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/52c342c2abcdf00de0950c3624c24bfa5eb04736))
|
528
|
+
* **internal:** refactor request stack ([#53](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/53)) ([2e145b2](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/2e145b22f3db5bce87c12f9e9ebc721befad7a9a))
|
529
|
+
* **internal:** version bump ([#45](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/45)) ([ff808f6](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/ff808f61389178fc08608315d749a7a96b7c6bc8))
|
530
|
+
* make MFA optional depending on token ([#51](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/51)) ([6f73715](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/6f737155ac13bef546d32f6a9ce3f1df3d37af9c))
|
531
|
+
* move basemodel examples into tests ([#52](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/52)) ([cfbaf1b](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/cfbaf1b92fcb5ef30e6ead3e6f3a4670ab97968e))
|
532
|
+
* rename internal type aliases ([#50](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/50)) ([f2c0e6d](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/f2c0e6d3bddeded96fc513a05ca759982baa04ce))
|
533
|
+
* reorganize import ordering ([#56](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/56)) ([b8c3b9b](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/b8c3b9b2827ddd2b5e963a66a183913a175b8db6))
|
534
|
+
* sort imports via topological dependency & file path ([#57](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/57)) ([27cf276](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/27cf276ad07658914c2f537aee9d8d9ceafdea28))
|
535
|
+
|
536
|
+
## 0.1.0-alpha.10 (2025-02-18)
|
537
|
+
|
538
|
+
Full Changelog: [v0.1.0-alpha.9...v0.1.0-alpha.10](https://github.com/terminaldotshop/terminal-sdk-ruby/compare/v0.1.0-alpha.9...v0.1.0-alpha.10)
|
539
|
+
|
540
|
+
### Features
|
541
|
+
|
542
|
+
* support overlapping HTTP requests in same Fiber ([#43](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/43)) ([ff49d79](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/ff49d79c1f7f0dfba74d69cb38193a9ba8f63900))
|
543
|
+
|
544
|
+
|
545
|
+
### Bug Fixes
|
546
|
+
|
547
|
+
* ssl timeout not required when TCP socket open timeout specified ([#44](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/44)) ([6b7506c](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/6b7506caedfc1e646b6d685a4d78a4b920847652))
|
548
|
+
|
549
|
+
|
550
|
+
### Chores
|
551
|
+
|
552
|
+
* **internal:** version bump ([#41](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/41)) ([612c7fc](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/612c7fc26e62bd035bed70b076121f5586656596))
|
553
|
+
|
554
|
+
## 0.1.0-alpha.9 (2025-02-17)
|
555
|
+
|
556
|
+
Full Changelog: [v0.1.0-alpha.8...v0.1.0-alpha.9](https://github.com/terminaldotshop/terminal-sdk-ruby/compare/v0.1.0-alpha.8...v0.1.0-alpha.9)
|
557
|
+
|
558
|
+
### Features
|
559
|
+
|
560
|
+
* **api:** manual updates ([#39](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/39)) ([0013412](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/0013412662b71f6a34b9a73056431c4f8446057a))
|
561
|
+
|
562
|
+
## 0.1.0-alpha.8 (2025-02-16)
|
563
|
+
|
564
|
+
Full Changelog: [v0.1.0-alpha.7...v0.1.0-alpha.8](https://github.com/terminaldotshop/terminal-sdk-ruby/compare/v0.1.0-alpha.7...v0.1.0-alpha.8)
|
565
|
+
|
566
|
+
### Features
|
567
|
+
|
568
|
+
* **api:** manual updates ([#36](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/36)) ([84af34d](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/84af34d30bd9b846d57e40c0fd7d492e41fe5fad))
|
569
|
+
* **api:** manual updates ([#37](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/37)) ([0fbe102](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/0fbe102a7c2b35ad3804059694392d9f9f947159))
|
570
|
+
|
571
|
+
|
572
|
+
### Chores
|
573
|
+
|
574
|
+
* **internal:** version bump ([#34](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/34)) ([be583d2](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/be583d25f24ce17b6bcd0d5cb7701a79ee0f4e69))
|
575
|
+
|
576
|
+
## 0.1.0-alpha.7 (2025-02-16)
|
577
|
+
|
578
|
+
Full Changelog: [v0.1.0-alpha.6...v0.1.0-alpha.7](https://github.com/terminaldotshop/terminal-sdk-ruby/compare/v0.1.0-alpha.6...v0.1.0-alpha.7)
|
579
|
+
|
580
|
+
### Features
|
581
|
+
|
582
|
+
* **api:** manual updates ([#33](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/33)) ([e52d253](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/e52d2536057ad701672a61554b4a0c71fea5e8a4))
|
583
|
+
|
584
|
+
|
585
|
+
### Chores
|
586
|
+
|
587
|
+
* enable full pagination tests ([#31](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/31)) ([8538ba7](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/8538ba7b8e1c05dc6308aee2a074e00b71c35ae6))
|
588
|
+
* fully qualify `Array` and `Hash` in rbs files to avoid collisions ([#23](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/23)) ([7dc6aff](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/7dc6affdd4946e5a7c0edd661273f7b2bf4ab517))
|
589
|
+
* **internal:** codegen related update ([#22](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/22)) ([d57e042](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/d57e0426fa260e5ab108337aa99e867eb19a74f3))
|
590
|
+
* **internal:** codegen related update ([#24](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/24)) ([6e055e3](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/6e055e353aabe503004da116be82f77edc5304a9))
|
591
|
+
* **internal:** codegen related update ([#25](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/25)) ([0a62ec8](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/0a62ec8d1b1535dd655457cc6762b2bcbd3ae88c))
|
592
|
+
* **internal:** codegen related update ([#27](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/27)) ([24077aa](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/24077aa26e63fd3224b85f729b442e72b2eb31b5))
|
593
|
+
* **internal:** codegen related update ([#29](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/29)) ([2155bba](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/2155bbaf680fc464cbde6b6f07f1048e139ee343))
|
594
|
+
* **internal:** codegen related update ([#32](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/32)) ([cfb0794](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/cfb07941345a9b99129aecf62bf68ad8fb882127))
|
595
|
+
* **internal:** version bump ([#20](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/20)) ([f46ef1a](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/f46ef1a5d27f2f8d9f5ea73e92b33207b8d87823))
|
596
|
+
* switch away from `attr_accessor` annotations to better match tapioca's compilation ([#30](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/30)) ([3147b33](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/3147b33d6ad34f31ed1e684d5da4d13aa55354c4))
|
597
|
+
* use concise syntax for pattern matching ([#26](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/26)) ([1cac179](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/1cac179496f8d92a88552e77ba121b4853741eb9))
|
598
|
+
|
599
|
+
## 0.1.0-alpha.6 (2025-02-07)
|
600
|
+
|
601
|
+
Full Changelog: [v0.1.0-alpha.5...v0.1.0-alpha.6](https://github.com/terminaldotshop/terminal-sdk-ruby/compare/v0.1.0-alpha.5...v0.1.0-alpha.6)
|
602
|
+
|
603
|
+
### Chores
|
604
|
+
|
605
|
+
* **internal:** version bump ([#18](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/18)) ([7992768](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/7992768d850c6f922ce8d77752fb837c71d782ab))
|
606
|
+
|
607
|
+
## 0.1.0-alpha.5 (2025-02-07)
|
608
|
+
|
609
|
+
Full Changelog: [v0.1.0-alpha.4...v0.1.0-alpha.5](https://github.com/terminaldotshop/terminal-sdk-ruby/compare/v0.1.0-alpha.4...v0.1.0-alpha.5)
|
610
|
+
|
611
|
+
### Chores
|
612
|
+
|
613
|
+
* **internal:** version bump ([#16](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/16)) ([1702d3d](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/1702d3db9e04abf9b9043d2ecf36049342b40553))
|
614
|
+
|
615
|
+
## 0.1.0-alpha.4 (2025-02-07)
|
616
|
+
|
617
|
+
Full Changelog: [v0.1.0-alpha.3...v0.1.0-alpha.4](https://github.com/terminaldotshop/terminal-sdk-ruby/compare/v0.1.0-alpha.3...v0.1.0-alpha.4)
|
618
|
+
|
619
|
+
### Chores
|
620
|
+
|
621
|
+
* **internal:** version bump ([#14](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/14)) ([21ce1a7](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/21ce1a7a4764150d4fa93dfa371ee78f5e537b68))
|
622
|
+
|
623
|
+
## 0.1.0-alpha.3 (2025-02-07)
|
624
|
+
|
625
|
+
Full Changelog: [v0.1.0-alpha.2...v0.1.0-alpha.3](https://github.com/terminaldotshop/terminal-sdk-ruby/compare/v0.1.0-alpha.2...v0.1.0-alpha.3)
|
626
|
+
|
627
|
+
### Chores
|
628
|
+
|
629
|
+
* **internal:** version bump ([#12](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/12)) ([4327dc9](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/4327dc9498e518ef1f1e2de72b1ae8cb40795803))
|
630
|
+
|
631
|
+
## 0.1.0-alpha.2 (2025-02-07)
|
632
|
+
|
633
|
+
Full Changelog: [v0.1.0-alpha.1...v0.1.0-alpha.2](https://github.com/terminaldotshop/terminal-sdk-ruby/compare/v0.1.0-alpha.1...v0.1.0-alpha.2)
|
634
|
+
|
635
|
+
### Chores
|
636
|
+
|
637
|
+
* **internal:** version bump ([#10](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/10)) ([36393c9](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/36393c9667d4152edcedde4ecf17869daee35902))
|
638
|
+
|
639
|
+
## 0.1.0-alpha.1 (2025-02-07)
|
640
|
+
|
641
|
+
Full Changelog: [v0.0.1-alpha.2...v0.1.0-alpha.1](https://github.com/terminaldotshop/terminal-sdk-ruby/compare/v0.0.1-alpha.2...v0.1.0-alpha.1)
|
642
|
+
|
643
|
+
### Features
|
644
|
+
|
645
|
+
* bundle typing manifests with gem release ([#9](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/9)) ([8ef8493](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/8ef849304a65d8bfd63d883fa0ef8f834331b1ee))
|
646
|
+
|
647
|
+
|
648
|
+
### Chores
|
649
|
+
|
650
|
+
* do not git ignore `bin/` ([#8](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/8)) ([770b67f](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/770b67fd1d8e39d315d00f0630bb7778ab8bde6c))
|
651
|
+
* **internal:** codegen related update ([#6](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/6)) ([43c6885](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/43c688587b8af23dd4315db6452e86dd20884df5))
|
652
|
+
|
653
|
+
## 0.0.1-alpha.2 (2025-02-07)
|
654
|
+
|
655
|
+
Full Changelog: [v0.0.1-alpha.1...v0.0.1-alpha.2](https://github.com/terminaldotshop/terminal-sdk-ruby/compare/v0.0.1-alpha.1...v0.0.1-alpha.2)
|
656
|
+
|
657
|
+
### Bug Fixes
|
658
|
+
|
659
|
+
* temporarily run CI without bundler cache ([#5](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/5)) ([6c5826e](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/6c5826ee0acbc94dabd3f37f2511859f9f565bce))
|
660
|
+
|
661
|
+
|
662
|
+
### Chores
|
663
|
+
|
664
|
+
* **internal:** version bump ([#3](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/3)) ([08fab17](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/08fab177ff5b20bcc6a81f0ad9f17171ee7734d5))
|
665
|
+
|
666
|
+
## 0.0.1-alpha.1 (2025-02-06)
|
667
|
+
|
668
|
+
Full Changelog: [v0.0.1-alpha.0...v0.0.1-alpha.1](https://github.com/terminaldotshop/terminal-sdk-ruby/compare/v0.0.1-alpha.0...v0.0.1-alpha.1)
|
669
|
+
|
670
|
+
### Chores
|
671
|
+
|
672
|
+
* configure new SDK language ([3eb7a7a](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/3eb7a7a11b87d50d51b76ba50433dc59201920b5))
|
673
|
+
* go live ([#1](https://github.com/terminaldotshop/terminal-sdk-ruby/issues/1)) ([8ae1c65](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/8ae1c655d87695c279cbd02a319143030f04b7f2))
|
674
|
+
* update SDK settings ([da47815](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/da47815afcbc58e568311174d10931fdb6849a2b))
|