increase 1.279.0 → 1.280.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.280.0"
5
5
  end