Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "1.141.0"
".": "1.142.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 229
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-af1c3f6f39bad6db3878ece15395915f818d9310c5535947520e935e82e8bac3.yml
openapi_spec_hash: 3291dcc6833f09527c442c898c8d11f0
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-f4ebad4aaba1af68442e3650238657c7f7600714bbf7a26d01e01e69e467ee4b.yml
openapi_spec_hash: 0b7280b86b511746a24a4abef602990a
config_hash: ca1425272e17fa23d4466d33492334fa
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.142.0 (2025-11-14)

Full Changelog: [v1.141.0...v1.142.0](https://github.com/Increase/increase-ruby/compare/v1.141.0...v1.142.0)

### Features

* **api:** api update ([cb2ed86](https://github.com/Increase/increase-ruby/commit/cb2ed865efae0e15c8269c5ee94e94bfdd9e3e3c))

## 1.141.0 (2025-11-13)

Full Changelog: [v1.140.0...v1.141.0](https://github.com/Increase/increase-ruby/compare/v1.140.0...v1.141.0)
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ GIT
PATH
remote: .
specs:
increase (1.141.0)
increase (1.142.0)
connection_pool

GEM
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application
<!-- x-release-please-start-version -->

```ruby
gem "increase", "~> 1.141.0"
gem "increase", "~> 1.142.0"
```

<!-- x-release-please-end -->
Expand Down
15 changes: 9 additions & 6 deletions lib/increase/models/physical_card_profile.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,15 @@ class PhysicalCardProfile < Increase::Internal::Type::BaseModel
required :id, String

# @!attribute back_image_file_id
# The identifier of the File containing the physical card's back image.
# The identifier of the File containing the physical card's back image. This will
# be missing until the image has been post-processed.
#
# @return [String, nil]
required :back_image_file_id, String, nil?: true

# @!attribute carrier_image_file_id
# The identifier of the File containing the physical card's carrier image.
# The identifier of the File containing the physical card's carrier image. This
# will be missing until the image has been post-processed.
#
# @return [String, nil]
required :carrier_image_file_id, String, nil?: true
Expand Down Expand Up @@ -48,7 +50,8 @@ class PhysicalCardProfile < Increase::Internal::Type::BaseModel
required :description, String

# @!attribute front_image_file_id
# The identifier of the File containing the physical card's front image.
# The identifier of the File containing the physical card's front image. This will
# be missing until the image has been post-processed.
#
# @return [String, nil]
required :front_image_file_id, String, nil?: true
Expand Down Expand Up @@ -97,9 +100,9 @@ class PhysicalCardProfile < Increase::Internal::Type::BaseModel
#
# @param id [String] The Card Profile identifier.
#
# @param back_image_file_id [String, nil] The identifier of the File containing the physical card's back image.
# @param back_image_file_id [String, nil] The identifier of the File containing the physical card's back image. This will
#
# @param carrier_image_file_id [String, nil] The identifier of the File containing the physical card's carrier image.
# @param carrier_image_file_id [String, nil] The identifier of the File containing the physical card's carrier image. This wi
#
# @param contact_phone [String, nil] A phone number the user can contact to receive support for their card.
#
Expand All @@ -109,7 +112,7 @@ class PhysicalCardProfile < Increase::Internal::Type::BaseModel
#
# @param description [String] A description you can use to identify the Physical Card Profile.
#
# @param front_image_file_id [String, nil] The identifier of the File containing the physical card's front image.
# @param front_image_file_id [String, nil] The identifier of the File containing the physical card's front image. This will
#
# @param idempotency_key [String, nil] The idempotency key you chose for this object. This value is unique across Incre
#
Expand Down
2 changes: 1 addition & 1 deletion lib/increase/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Increase
VERSION = "1.141.0"
VERSION = "1.142.0"
end
18 changes: 12 additions & 6 deletions rbi/increase/models/physical_card_profile.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,13 @@ module Increase
sig { returns(String) }
attr_accessor :id

# The identifier of the File containing the physical card's back image.
# The identifier of the File containing the physical card's back image. This will
# be missing until the image has been post-processed.
sig { returns(T.nilable(String)) }
attr_accessor :back_image_file_id

# The identifier of the File containing the physical card's carrier image.
# The identifier of the File containing the physical card's carrier image. This
# will be missing until the image has been post-processed.
sig { returns(T.nilable(String)) }
attr_accessor :carrier_image_file_id

Expand All @@ -37,7 +39,8 @@ module Increase
sig { returns(String) }
attr_accessor :description

# The identifier of the File containing the physical card's front image.
# The identifier of the File containing the physical card's front image. This will
# be missing until the image has been post-processed.
sig { returns(T.nilable(String)) }
attr_accessor :front_image_file_id

Expand Down Expand Up @@ -88,9 +91,11 @@ module Increase
def self.new(
# The Card Profile identifier.
id:,
# The identifier of the File containing the physical card's back image.
# The identifier of the File containing the physical card's back image. This will
# be missing until the image has been post-processed.
back_image_file_id:,
# The identifier of the File containing the physical card's carrier image.
# The identifier of the File containing the physical card's carrier image. This
# will be missing until the image has been post-processed.
carrier_image_file_id:,
# A phone number the user can contact to receive support for their card.
contact_phone:,
Expand All @@ -101,7 +106,8 @@ module Increase
creator:,
# A description you can use to identify the Physical Card Profile.
description:,
# The identifier of the File containing the physical card's front image.
# The identifier of the File containing the physical card's front image. This will
# be missing until the image has been post-processed.
front_image_file_id:,
# The idempotency key you chose for this object. This value is unique across
# Increase and is used to ensure that a request is only processed once. Learn more
Expand Down