diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 000572ec..b0699969 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.0-alpha.13" + ".": "0.1.0-alpha.14" } \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index 1847c9b0..610d8317 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 103 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-26c7b0375aaf9218b32f9af29242d38e67a8318f3ae3e8cc5d1cd86c60e89e51.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-7b65f996788617c2d2f2e8e941d366edd1a2844f15eefec555e220b03bbc6d4c.yml diff --git a/CHANGELOG.md b/CHANGELOG.md index 6082c30d..0a1e8cb8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 0.1.0-alpha.14 (2025-02-25) + +Full Changelog: [v0.1.0-alpha.13...v0.1.0-alpha.14](https://github.com/orbcorp/orb-ruby/compare/v0.1.0-alpha.13...v0.1.0-alpha.14) + +### Features + +* **api:** api update ([#71](https://github.com/orbcorp/orb-ruby/issues/71)) ([764f299](https://github.com/orbcorp/orb-ruby/commit/764f2994cf9b747cd2aff3c1e5a64de106736534)) + + +### Chores + +* **internal:** prune unused `extern` references ([#70](https://github.com/orbcorp/orb-ruby/issues/70)) ([4106e51](https://github.com/orbcorp/orb-ruby/commit/4106e51d8e188ca27ebce51e851c2a501a58d3aa)) +* **internal:** version bump ([#68](https://github.com/orbcorp/orb-ruby/issues/68)) ([f3ee7c1](https://github.com/orbcorp/orb-ruby/commit/f3ee7c1b71a56d535b20d85e4d092f4c0c5b348b)) + ## 0.1.0-alpha.13 (2025-02-21) Full Changelog: [v0.1.0-alpha.12...v0.1.0-alpha.13](https://github.com/orbcorp/orb-ruby/compare/v0.1.0-alpha.12...v0.1.0-alpha.13) diff --git a/Gemfile.lock b/Gemfile.lock index afc97c30..0e838ced 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: . specs: - orb (0.1.0.pre.alpha.13) + orb (0.1.0.pre.alpha.14) connection_pool GEM diff --git a/lib/orb/base_model.rb b/lib/orb/base_model.rb index d009595c..26939a43 100644 --- a/lib/orb/base_model.rb +++ b/lib/orb/base_model.rb @@ -369,7 +369,6 @@ def self.try_strict_coerce(value) # @abstract # class Union - extend Orb::Extern extend Orb::Converter # @private @@ -842,7 +841,6 @@ def initialize(type_info, spec = {}) # @abstract # class BaseModel - extend Orb::Extern extend Orb::Converter # @private diff --git a/lib/orb/models/subscription_update_fixed_fee_quantity_params.rb b/lib/orb/models/subscription_update_fixed_fee_quantity_params.rb index 76053fab..3fb853eb 100644 --- a/lib/orb/models/subscription_update_fixed_fee_quantity_params.rb +++ b/lib/orb/models/subscription_update_fixed_fee_quantity_params.rb @@ -29,7 +29,7 @@ class SubscriptionUpdateFixedFeeQuantityParams < Orb::BaseModel # @!attribute [r] change_option # Determines when the change takes effect. Note that if `effective_date` is # specified, this defaults to `effective_date`. Otherwise, this defaults to - # `immediate` unless it's explicitly set to `upcoming_invoice. + # `immediate` unless it's explicitly set to `upcoming_invoice`. # # @return [Symbol, Orb::Models::SubscriptionUpdateFixedFeeQuantityParams::ChangeOption, nil] optional :change_option, enum: -> { Orb::Models::SubscriptionUpdateFixedFeeQuantityParams::ChangeOption } @@ -72,7 +72,7 @@ class SubscriptionUpdateFixedFeeQuantityParams < Orb::BaseModel # # Determines when the change takes effect. Note that if `effective_date` is # specified, this defaults to `effective_date`. Otherwise, this defaults to - # `immediate` unless it's explicitly set to `upcoming_invoice. + # `immediate` unless it's explicitly set to `upcoming_invoice`. # # @example # ```ruby diff --git a/lib/orb/resources/subscriptions.rb b/lib/orb/resources/subscriptions.rb index bdebb743..92829536 100644 --- a/lib/orb/resources/subscriptions.rb +++ b/lib/orb/resources/subscriptions.rb @@ -1410,7 +1410,7 @@ def unschedule_pending_plan_changes(subscription_id, params = {}) # # @option params [Symbol, Orb::Models::SubscriptionUpdateFixedFeeQuantityParams::ChangeOption] :change_option Determines when the change takes effect. Note that if `effective_date` is # specified, this defaults to `effective_date`. Otherwise, this defaults to - # `immediate` unless it's explicitly set to `upcoming_invoice. + # `immediate` unless it's explicitly set to `upcoming_invoice`. # # @option params [Date, nil] :effective_date The date that the quantity change should take effect, localized to the # customer's timezone. Ifthis parameter is not passed in, the quantity change is diff --git a/lib/orb/version.rb b/lib/orb/version.rb index d0634dc4..3041f8b7 100644 --- a/lib/orb/version.rb +++ b/lib/orb/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Orb - VERSION = "0.1.0-alpha.13" + VERSION = "0.1.0-alpha.14" end diff --git a/rbi/lib/orb/base_model.rbi b/rbi/lib/orb/base_model.rbi index 49e91805..4b61004e 100644 --- a/rbi/lib/orb/base_model.rbi +++ b/rbi/lib/orb/base_model.rbi @@ -153,7 +153,6 @@ module Orb class Union abstract! - extend Orb::Extern extend Orb::Converter sig { returns(T::Array[[T.nilable(Symbol), Proc]]) } @@ -331,7 +330,6 @@ module Orb class BaseModel abstract! - extend Orb::Extern extend Orb::Converter KnownFieldShape = T.type_alias { {mode: T.nilable(Symbol), required: T::Boolean} } diff --git a/rbi/lib/orb/version.rbi b/rbi/lib/orb/version.rbi index bdd83c88..1438d218 100644 --- a/rbi/lib/orb/version.rbi +++ b/rbi/lib/orb/version.rbi @@ -1,5 +1,5 @@ # typed: strong module Orb - VERSION = "0.1.0-alpha.13" + VERSION = "0.1.0-alpha.14" end diff --git a/sig/orb/base_model.rbs b/sig/orb/base_model.rbs index 94e5ccf3..fc4ec41b 100644 --- a/sig/orb/base_model.rbs +++ b/sig/orb/base_model.rbs @@ -80,7 +80,6 @@ module Orb end class Union - extend Orb::Extern extend Orb::Converter private def self.known_variants: -> ::Array[[Symbol?, Proc]] @@ -165,7 +164,6 @@ module Orb end class BaseModel - extend Orb::Extern extend Orb::Converter type known_field = { mode: (:coerce | :dump)?, required: bool } diff --git a/sig/orb/version.rbs b/sig/orb/version.rbs index 49036e0f..ec58fd09 100644 --- a/sig/orb/version.rbs +++ b/sig/orb/version.rbs @@ -1,3 +1,3 @@ module Orb - VERSION: "0.1.0-alpha.12" + VERSION: "0.1.0-alpha.13" end