increase 1.279.0 → 1.282.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.
@@ -8,10 +8,12 @@ module Increase
8
8
  #
9
9
  # Create a Card
10
10
  #
11
- # @overload create(account_id:, billing_address: nil, description: nil, digital_wallet: nil, entity_id: nil, request_options: {})
11
+ # @overload create(account_id:, authorization_controls: nil, billing_address: nil, description: nil, digital_wallet: nil, entity_id: nil, request_options: {})
12
12
  #
13
13
  # @param account_id [String] The Account the card should belong to.
14
14
  #
15
+ # @param authorization_controls [Increase::Models::CardCreateParams::AuthorizationControls] Controls that restrict how this card can be used.
16
+ #
15
17
  # @param billing_address [Increase::Models::CardCreateParams::BillingAddress] The card's billing address.
16
18
  #
17
19
  # @param description [String] The description you choose to give the card.
@@ -55,10 +57,12 @@ module Increase
55
57
  #
56
58
  # Update a Card
57
59
  #
58
- # @overload update(card_id, billing_address: nil, description: nil, digital_wallet: nil, entity_id: nil, status: nil, request_options: {})
60
+ # @overload update(card_id, authorization_controls: nil, billing_address: nil, description: nil, digital_wallet: nil, entity_id: nil, status: nil, request_options: {})
59
61
  #
60
62
  # @param card_id [String] The card identifier.
61
63
  #
64
+ # @param authorization_controls [Increase::Models::CardUpdateParams::AuthorizationControls] Controls that restrict how this card can be used.
65
+ #
62
66
  # @param billing_address [Increase::Models::CardUpdateParams::BillingAddress] The card's updated billing address.
63
67
  #
64
68
  # @param description [String] The description you choose to give the card.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.279.0"
4
+ VERSION = "1.282.0"
5
5
  end
@@ -55,16 +55,6 @@ module Increase
55
55
  sig { returns(T.nilable(String)) }
56
56
  attr_accessor :informational_entity_id
57
57
 
58
- # The interest accrued but not yet paid, expressed as a string containing a
59
- # floating-point value.
60
- sig { returns(String) }
61
- attr_accessor :interest_accrued
62
-
63
- # The latest [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date on which
64
- # interest was accrued.
65
- sig { returns(T.nilable(Date)) }
66
- attr_accessor :interest_accrued_at
67
-
68
58
  # The interest rate currently being earned on the account, as a string containing
69
59
  # a decimal number. For example, a 1% interest rate would be represented as
70
60
  # "0.01".
@@ -110,8 +100,6 @@ module Increase
110
100
  funding: Increase::Account::Funding::OrSymbol,
111
101
  idempotency_key: T.nilable(String),
112
102
  informational_entity_id: T.nilable(String),
113
- interest_accrued: String,
114
- interest_accrued_at: T.nilable(Date),
115
103
  interest_rate: String,
116
104
  loan: T.nilable(Increase::Account::Loan::OrHash),
117
105
  name: String,
@@ -150,12 +138,6 @@ module Increase
150
138
  # The identifier of an Entity that, while not owning the Account, is associated
151
139
  # with its activity.
152
140
  informational_entity_id:,
153
- # The interest accrued but not yet paid, expressed as a string containing a
154
- # floating-point value.
155
- interest_accrued:,
156
- # The latest [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date on which
157
- # interest was accrued.
158
- interest_accrued_at:,
159
141
  # The interest rate currently being earned on the account, as a string containing
160
142
  # a decimal number. For example, a 1% interest rate would be represented as
161
143
  # "0.01".
@@ -188,8 +170,6 @@ module Increase
188
170
  funding: Increase::Account::Funding::TaggedSymbol,
189
171
  idempotency_key: T.nilable(String),
190
172
  informational_entity_id: T.nilable(String),
191
- interest_accrued: String,
192
- interest_accrued_at: T.nilable(Date),
193
173
  interest_rate: String,
194
174
  loan: T.nilable(Increase::Account::Loan),
195
175
  name: String,