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.62.0"
".": "1.63.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: 216
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-4951789bd74367647a7109ac527206883115628aac13b8131b0bc046ead9cc5c.yml
openapi_spec_hash: 924a557a551c40624e4fe4703dec71cc
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-fbdfb5721d0c46a176ee6d81936d2710556c39cc486c5de246cc17b0503ee408.yml
openapi_spec_hash: 66c900a94b458e5b796ac1d2a5fceb13
config_hash: 632b628b59d8f0b717153b3d8133f6cb
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.63.0 (2025-09-04)

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

### Features

* **api:** api update ([76b55a5](https://github.com/Increase/increase-ruby/commit/76b55a5d0254bf59bd03e72bb5db7b828d9dbd4c))

## 1.62.0 (2025-08-29)

Full Changelog: [v1.61.0...v1.62.0](https://github.com/Increase/increase-ruby/compare/v1.61.0...v1.62.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.62.0)
increase (1.63.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.62.0"
gem "increase", "~> 1.63.0"
```

<!-- x-release-please-end -->
Expand Down
20 changes: 19 additions & 1 deletion lib/increase/models/physical_card_profile_create_params.rb
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,28 @@ class PhysicalCardProfileCreateParams < Increase::Internal::Type::BaseModel
# @return [String]
required :program_id, String

# @!attribute card_stock_reference
# A reference ID provided by the fulfillment provider for the card stock used.
# Only used if you've ordered card stock separately.
#
# @return [String, nil]
optional :card_stock_reference, String

# @!attribute carrier_stock_reference
# A reference ID provided by the fulfillment provider for the carrier stock used.
# Only used if you've ordered carrier stock separately.
#
# @return [String, nil]
optional :carrier_stock_reference, String

# @!attribute front_text
# Text printed on the front of the card. Reach out to
# [support@increase.com](mailto:support@increase.com) for more information.
#
# @return [Increase::Models::PhysicalCardProfileCreateParams::FrontText, nil]
optional :front_text, -> { Increase::PhysicalCardProfileCreateParams::FrontText }

# @!method initialize(carrier_image_file_id:, contact_phone:, description:, front_image_file_id:, program_id:, front_text: nil, request_options: {})
# @!method initialize(carrier_image_file_id:, contact_phone:, description:, front_image_file_id:, program_id:, card_stock_reference: nil, carrier_stock_reference: nil, front_text: nil, request_options: {})
# Some parameter documentations has been truncated, see
# {Increase::Models::PhysicalCardProfileCreateParams} for more details.
#
Expand All @@ -58,6 +72,10 @@ class PhysicalCardProfileCreateParams < Increase::Internal::Type::BaseModel
#
# @param program_id [String] The identifier for the Program that this Physical Card Profile falls under.
#
# @param card_stock_reference [String] A reference ID provided by the fulfillment provider for the card stock used. Onl
#
# @param carrier_stock_reference [String] A reference ID provided by the fulfillment provider for the carrier stock used.
#
# @param front_text [Increase::Models::PhysicalCardProfileCreateParams::FrontText] Text printed on the front of the card. Reach out to [support@increase.com](mailt
#
# @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}]
Expand Down
6 changes: 5 additions & 1 deletion lib/increase/resources/physical_card_profiles.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class PhysicalCardProfiles
#
# Create a Physical Card Profile
#
# @overload create(carrier_image_file_id:, contact_phone:, description:, front_image_file_id:, program_id:, front_text: nil, request_options: {})
# @overload create(carrier_image_file_id:, contact_phone:, description:, front_image_file_id:, program_id:, card_stock_reference: nil, carrier_stock_reference: nil, front_text: nil, request_options: {})
#
# @param carrier_image_file_id [String] The identifier of the File containing the physical card's carrier image.
#
Expand All @@ -20,6 +20,10 @@ class PhysicalCardProfiles
#
# @param program_id [String] The identifier for the Program that this Physical Card Profile falls under.
#
# @param card_stock_reference [String] A reference ID provided by the fulfillment provider for the card stock used. Onl
#
# @param carrier_stock_reference [String] A reference ID provided by the fulfillment provider for the carrier stock used.
#
# @param front_text [Increase::Models::PhysicalCardProfileCreateParams::FrontText] Text printed on the front of the card. Reach out to [support@increase.com](mailt
#
# @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}, nil]
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.62.0"
VERSION = "1.63.0"
end
26 changes: 26 additions & 0 deletions rbi/increase/models/physical_card_profile_create_params.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,22 @@ module Increase
sig { returns(String) }
attr_accessor :program_id

# A reference ID provided by the fulfillment provider for the card stock used.
# Only used if you've ordered card stock separately.
sig { returns(T.nilable(String)) }
attr_reader :card_stock_reference

sig { params(card_stock_reference: String).void }
attr_writer :card_stock_reference

# A reference ID provided by the fulfillment provider for the carrier stock used.
# Only used if you've ordered carrier stock separately.
sig { returns(T.nilable(String)) }
attr_reader :carrier_stock_reference

sig { params(carrier_stock_reference: String).void }
attr_writer :carrier_stock_reference

# Text printed on the front of the card. Reach out to
# [support@increase.com](mailto:support@increase.com) for more information.
sig do
Expand All @@ -56,6 +72,8 @@ module Increase
description: String,
front_image_file_id: String,
program_id: String,
card_stock_reference: String,
carrier_stock_reference: String,
front_text:
Increase::PhysicalCardProfileCreateParams::FrontText::OrHash,
request_options: Increase::RequestOptions::OrHash
Expand All @@ -72,6 +90,12 @@ module Increase
front_image_file_id:,
# The identifier for the Program that this Physical Card Profile falls under.
program_id:,
# A reference ID provided by the fulfillment provider for the card stock used.
# Only used if you've ordered card stock separately.
card_stock_reference: nil,
# A reference ID provided by the fulfillment provider for the carrier stock used.
# Only used if you've ordered carrier stock separately.
carrier_stock_reference: nil,
# Text printed on the front of the card. Reach out to
# [support@increase.com](mailto:support@increase.com) for more information.
front_text: nil,
Expand All @@ -87,6 +111,8 @@ module Increase
description: String,
front_image_file_id: String,
program_id: String,
card_stock_reference: String,
carrier_stock_reference: String,
front_text: Increase::PhysicalCardProfileCreateParams::FrontText,
request_options: Increase::RequestOptions
}
Expand Down
8 changes: 8 additions & 0 deletions rbi/increase/resources/physical_card_profiles.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ module Increase
description: String,
front_image_file_id: String,
program_id: String,
card_stock_reference: String,
carrier_stock_reference: String,
front_text:
Increase::PhysicalCardProfileCreateParams::FrontText::OrHash,
request_options: Increase::RequestOptions::OrHash
Expand All @@ -27,6 +29,12 @@ module Increase
front_image_file_id:,
# The identifier for the Program that this Physical Card Profile falls under.
program_id:,
# A reference ID provided by the fulfillment provider for the card stock used.
# Only used if you've ordered card stock separately.
card_stock_reference: nil,
# A reference ID provided by the fulfillment provider for the carrier stock used.
# Only used if you've ordered carrier stock separately.
carrier_stock_reference: nil,
# Text printed on the front of the card. Reach out to
# [support@increase.com](mailto:support@increase.com) for more information.
front_text: nil,
Expand Down
14 changes: 14 additions & 0 deletions sig/increase/models/physical_card_profile_create_params.rbs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ module Increase
description: String,
front_image_file_id: String,
program_id: String,
card_stock_reference: String,
carrier_stock_reference: String,
front_text: Increase::PhysicalCardProfileCreateParams::FrontText
}
& Increase::Internal::Type::request_parameters
Expand All @@ -25,6 +27,14 @@ module Increase

attr_accessor program_id: String

attr_reader card_stock_reference: String?

def card_stock_reference=: (String) -> String

attr_reader carrier_stock_reference: String?

def carrier_stock_reference=: (String) -> String

attr_reader front_text: Increase::PhysicalCardProfileCreateParams::FrontText?

def front_text=: (
Expand All @@ -37,6 +47,8 @@ module Increase
description: String,
front_image_file_id: String,
program_id: String,
?card_stock_reference: String,
?carrier_stock_reference: String,
?front_text: Increase::PhysicalCardProfileCreateParams::FrontText,
?request_options: Increase::request_opts
) -> void
Expand All @@ -47,6 +59,8 @@ module Increase
description: String,
front_image_file_id: String,
program_id: String,
card_stock_reference: String,
carrier_stock_reference: String,
front_text: Increase::PhysicalCardProfileCreateParams::FrontText,
request_options: Increase::RequestOptions
}
Expand Down
2 changes: 2 additions & 0 deletions sig/increase/resources/physical_card_profiles.rbs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ module Increase
description: String,
front_image_file_id: String,
program_id: String,
?card_stock_reference: String,
?carrier_stock_reference: String,
?front_text: Increase::PhysicalCardProfileCreateParams::FrontText,
?request_options: Increase::request_opts
) -> Increase::PhysicalCardProfile
Expand Down