increase 1.13.0 → 1.15.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +17 -0
- data/README.md +1 -1
- data/lib/increase/models/account_update_params.rb +13 -1
- data/lib/increase/models/entity_create_params.rb +1 -9
- data/lib/increase/models/event.rb +6 -0
- data/lib/increase/models/event_list_params.rb +6 -0
- data/lib/increase/models/event_subscription.rb +6 -0
- data/lib/increase/models/event_subscription_create_params.rb +6 -0
- data/lib/increase/resources/accounts.rb +6 -1
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/account_update_params.rbi +17 -1
- data/rbi/increase/models/entity_create_params.rbi +3 -14
- data/rbi/increase/models/event.rbi +8 -0
- data/rbi/increase/models/event_list_params.rbi +14 -0
- data/rbi/increase/models/event_subscription.rbi +14 -0
- data/rbi/increase/models/event_subscription_create_params.rbi +14 -0
- data/rbi/increase/resources/accounts.rbi +4 -0
- data/sig/increase/models/account_update_params.rbs +8 -1
- data/sig/increase/models/entity_create_params.rbs +3 -10
- data/sig/increase/models/event.rbs +8 -0
- data/sig/increase/models/event_list_params.rbs +8 -0
- data/sig/increase/models/event_subscription.rbs +8 -0
- data/sig/increase/models/event_subscription_create_params.rbs +8 -0
- data/sig/increase/resources/accounts.rbs +1 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 796b831ce7df2c61d203a9787d51a0cb370e7ea8e7322f0e390bce68ef998ecd
|
4
|
+
data.tar.gz: e9510cf1c447c8685f83669ad869eee1f58fb291acb5a18f16ff31133b69bc1a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f62828b9eeef0bd19ea3ddbdef8b15c6c8478b3c8dce2c00bbb3737c89b77629387b8ba19ab7f4e2a1fe81254a741d073ddae00f1c89342a9de438163a60b869
|
7
|
+
data.tar.gz: e291ea64da1db9ff30e1c263872a9022af6a1541e0ff80762532b587cf4660626ebdf9eb87b1fc724c5f172b25def44b3854471ab882e2dc23dfb24b16767faf
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,22 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 1.15.0 (2025-07-21)
|
4
|
+
|
5
|
+
Full Changelog: [v1.14.0...v1.15.0](https://github.com/Increase/increase-ruby/compare/v1.14.0...v1.15.0)
|
6
|
+
|
7
|
+
### Features
|
8
|
+
|
9
|
+
* **api:** api update ([0370864](https://github.com/Increase/increase-ruby/commit/03708647f4f70800c3b9660e50f00632f679d7fa))
|
10
|
+
* **api:** api update ([43fed27](https://github.com/Increase/increase-ruby/commit/43fed27a519cb50ec581647f691ea66b566a2107))
|
11
|
+
|
12
|
+
## 1.14.0 (2025-07-18)
|
13
|
+
|
14
|
+
Full Changelog: [v1.13.0...v1.14.0](https://github.com/Increase/increase-ruby/compare/v1.13.0...v1.14.0)
|
15
|
+
|
16
|
+
### Features
|
17
|
+
|
18
|
+
* **api:** api update ([aff39de](https://github.com/Increase/increase-ruby/commit/aff39de155a064d2c7b2640a6d31fcb400caf63b))
|
19
|
+
|
3
20
|
## 1.13.0 (2025-07-11)
|
4
21
|
|
5
22
|
Full Changelog: [v1.12.0...v1.13.0](https://github.com/Increase/increase-ruby/compare/v1.12.0...v1.13.0)
|
data/README.md
CHANGED
@@ -7,13 +7,25 @@ module Increase
|
|
7
7
|
extend Increase::Internal::Type::RequestParameters::Converter
|
8
8
|
include Increase::Internal::Type::RequestParameters
|
9
9
|
|
10
|
+
# @!attribute credit_limit
|
11
|
+
# The new credit limit of the Account, if and only if the Account is a loan
|
12
|
+
# account.
|
13
|
+
#
|
14
|
+
# @return [Integer, nil]
|
15
|
+
optional :credit_limit, Integer
|
16
|
+
|
10
17
|
# @!attribute name
|
11
18
|
# The new name of the Account.
|
12
19
|
#
|
13
20
|
# @return [String, nil]
|
14
21
|
optional :name, String
|
15
22
|
|
16
|
-
# @!method initialize(name: nil, request_options: {})
|
23
|
+
# @!method initialize(credit_limit: nil, name: nil, request_options: {})
|
24
|
+
# Some parameter documentations has been truncated, see
|
25
|
+
# {Increase::Models::AccountUpdateParams} for more details.
|
26
|
+
#
|
27
|
+
# @param credit_limit [Integer] The new credit limit of the Account, if and only if the Account is a loan accoun
|
28
|
+
#
|
17
29
|
# @param name [String] The new name of the Account.
|
18
30
|
#
|
19
31
|
# @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}]
|
@@ -810,19 +810,11 @@ module Increase
|
|
810
810
|
required :individuals,
|
811
811
|
-> { Increase::Internal::Type::ArrayOf[Increase::EntityCreateParams::Joint::Individual] }
|
812
812
|
|
813
|
-
# @!
|
814
|
-
# The name of the joint entity.
|
815
|
-
#
|
816
|
-
# @return [String, nil]
|
817
|
-
optional :name, String
|
818
|
-
|
819
|
-
# @!method initialize(individuals:, name: nil)
|
813
|
+
# @!method initialize(individuals:)
|
820
814
|
# Details of the joint entity to create. Required if `structure` is equal to
|
821
815
|
# `joint`.
|
822
816
|
#
|
823
817
|
# @param individuals [Array<Increase::Models::EntityCreateParams::Joint::Individual>] The two individuals that share control of the entity.
|
824
|
-
#
|
825
|
-
# @param name [String] The name of the joint entity.
|
826
818
|
|
827
819
|
class Individual < Increase::Internal::Type::BaseModel
|
828
820
|
# @!attribute address
|
@@ -304,6 +304,12 @@ module Increase
|
|
304
304
|
# Occurs whenever a Physical Card Profile is updated.
|
305
305
|
PHYSICAL_CARD_PROFILE_UPDATED = :"physical_card_profile.updated"
|
306
306
|
|
307
|
+
# Occurs whenever a Program is created.
|
308
|
+
PROGRAM_CREATED = :"program.created"
|
309
|
+
|
310
|
+
# Occurs whenever a Program is updated.
|
311
|
+
PROGRAM_UPDATED = :"program.updated"
|
312
|
+
|
307
313
|
# Occurs whenever a Proof of Authorization Request is created.
|
308
314
|
PROOF_OF_AUTHORIZATION_REQUEST_CREATED = :"proof_of_authorization_request.created"
|
309
315
|
|
@@ -306,6 +306,12 @@ module Increase
|
|
306
306
|
# Occurs whenever a Physical Card Profile is updated.
|
307
307
|
PHYSICAL_CARD_PROFILE_UPDATED = :"physical_card_profile.updated"
|
308
308
|
|
309
|
+
# Occurs whenever a Program is created.
|
310
|
+
PROGRAM_CREATED = :"program.created"
|
311
|
+
|
312
|
+
# Occurs whenever a Program is updated.
|
313
|
+
PROGRAM_UPDATED = :"program.updated"
|
314
|
+
|
309
315
|
# Occurs whenever a Proof of Authorization Request is created.
|
310
316
|
PROOF_OF_AUTHORIZATION_REQUEST_CREATED = :"proof_of_authorization_request.created"
|
311
317
|
|
@@ -327,6 +327,12 @@ module Increase
|
|
327
327
|
# Occurs whenever a Physical Card Profile is updated.
|
328
328
|
PHYSICAL_CARD_PROFILE_UPDATED = :"physical_card_profile.updated"
|
329
329
|
|
330
|
+
# Occurs whenever a Program is created.
|
331
|
+
PROGRAM_CREATED = :"program.created"
|
332
|
+
|
333
|
+
# Occurs whenever a Program is updated.
|
334
|
+
PROGRAM_UPDATED = :"program.updated"
|
335
|
+
|
330
336
|
# Occurs whenever a Proof of Authorization Request is created.
|
331
337
|
PROOF_OF_AUTHORIZATION_REQUEST_CREATED = :"proof_of_authorization_request.created"
|
332
338
|
|
@@ -288,6 +288,12 @@ module Increase
|
|
288
288
|
# Occurs whenever a Physical Card Profile is updated.
|
289
289
|
PHYSICAL_CARD_PROFILE_UPDATED = :"physical_card_profile.updated"
|
290
290
|
|
291
|
+
# Occurs whenever a Program is created.
|
292
|
+
PROGRAM_CREATED = :"program.created"
|
293
|
+
|
294
|
+
# Occurs whenever a Program is updated.
|
295
|
+
PROGRAM_UPDATED = :"program.updated"
|
296
|
+
|
291
297
|
# Occurs whenever a Proof of Authorization Request is created.
|
292
298
|
PROOF_OF_AUTHORIZATION_REQUEST_CREATED = :"proof_of_authorization_request.created"
|
293
299
|
|
@@ -54,12 +54,17 @@ module Increase
|
|
54
54
|
)
|
55
55
|
end
|
56
56
|
|
57
|
+
# Some parameter documentations has been truncated, see
|
58
|
+
# {Increase::Models::AccountUpdateParams} for more details.
|
59
|
+
#
|
57
60
|
# Update an Account
|
58
61
|
#
|
59
|
-
# @overload update(account_id, name: nil, request_options: {})
|
62
|
+
# @overload update(account_id, credit_limit: nil, name: nil, request_options: {})
|
60
63
|
#
|
61
64
|
# @param account_id [String] The identifier of the Account to update.
|
62
65
|
#
|
66
|
+
# @param credit_limit [Integer] The new credit limit of the Account, if and only if the Account is a loan accoun
|
67
|
+
#
|
63
68
|
# @param name [String] The new name of the Account.
|
64
69
|
#
|
65
70
|
# @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}, nil]
|
data/lib/increase/version.rb
CHANGED
@@ -11,6 +11,14 @@ module Increase
|
|
11
11
|
T.any(Increase::AccountUpdateParams, Increase::Internal::AnyHash)
|
12
12
|
end
|
13
13
|
|
14
|
+
# The new credit limit of the Account, if and only if the Account is a loan
|
15
|
+
# account.
|
16
|
+
sig { returns(T.nilable(Integer)) }
|
17
|
+
attr_reader :credit_limit
|
18
|
+
|
19
|
+
sig { params(credit_limit: Integer).void }
|
20
|
+
attr_writer :credit_limit
|
21
|
+
|
14
22
|
# The new name of the Account.
|
15
23
|
sig { returns(T.nilable(String)) }
|
16
24
|
attr_reader :name
|
@@ -20,11 +28,15 @@ module Increase
|
|
20
28
|
|
21
29
|
sig do
|
22
30
|
params(
|
31
|
+
credit_limit: Integer,
|
23
32
|
name: String,
|
24
33
|
request_options: Increase::RequestOptions::OrHash
|
25
34
|
).returns(T.attached_class)
|
26
35
|
end
|
27
36
|
def self.new(
|
37
|
+
# The new credit limit of the Account, if and only if the Account is a loan
|
38
|
+
# account.
|
39
|
+
credit_limit: nil,
|
28
40
|
# The new name of the Account.
|
29
41
|
name: nil,
|
30
42
|
request_options: {}
|
@@ -33,7 +45,11 @@ module Increase
|
|
33
45
|
|
34
46
|
sig do
|
35
47
|
override.returns(
|
36
|
-
{
|
48
|
+
{
|
49
|
+
credit_limit: Integer,
|
50
|
+
name: String,
|
51
|
+
request_options: Increase::RequestOptions
|
52
|
+
}
|
37
53
|
)
|
38
54
|
end
|
39
55
|
def to_hash
|
@@ -1467,27 +1467,17 @@ module Increase
|
|
1467
1467
|
end
|
1468
1468
|
attr_accessor :individuals
|
1469
1469
|
|
1470
|
-
# The name of the joint entity.
|
1471
|
-
sig { returns(T.nilable(String)) }
|
1472
|
-
attr_reader :name
|
1473
|
-
|
1474
|
-
sig { params(name: String).void }
|
1475
|
-
attr_writer :name
|
1476
|
-
|
1477
1470
|
# Details of the joint entity to create. Required if `structure` is equal to
|
1478
1471
|
# `joint`.
|
1479
1472
|
sig do
|
1480
1473
|
params(
|
1481
1474
|
individuals:
|
1482
|
-
T::Array[Increase::EntityCreateParams::Joint::Individual::OrHash]
|
1483
|
-
name: String
|
1475
|
+
T::Array[Increase::EntityCreateParams::Joint::Individual::OrHash]
|
1484
1476
|
).returns(T.attached_class)
|
1485
1477
|
end
|
1486
1478
|
def self.new(
|
1487
1479
|
# The two individuals that share control of the entity.
|
1488
|
-
individuals
|
1489
|
-
# The name of the joint entity.
|
1490
|
-
name: nil
|
1480
|
+
individuals:
|
1491
1481
|
)
|
1492
1482
|
end
|
1493
1483
|
|
@@ -1495,8 +1485,7 @@ module Increase
|
|
1495
1485
|
override.returns(
|
1496
1486
|
{
|
1497
1487
|
individuals:
|
1498
|
-
T::Array[Increase::EntityCreateParams::Joint::Individual]
|
1499
|
-
name: String
|
1488
|
+
T::Array[Increase::EntityCreateParams::Joint::Individual]
|
1500
1489
|
}
|
1501
1490
|
)
|
1502
1491
|
end
|
@@ -591,6 +591,14 @@ module Increase
|
|
591
591
|
Increase::Event::Category::TaggedSymbol
|
592
592
|
)
|
593
593
|
|
594
|
+
# Occurs whenever a Program is created.
|
595
|
+
PROGRAM_CREATED =
|
596
|
+
T.let(:"program.created", Increase::Event::Category::TaggedSymbol)
|
597
|
+
|
598
|
+
# Occurs whenever a Program is updated.
|
599
|
+
PROGRAM_UPDATED =
|
600
|
+
T.let(:"program.updated", Increase::Event::Category::TaggedSymbol)
|
601
|
+
|
594
602
|
# Occurs whenever a Proof of Authorization Request is created.
|
595
603
|
PROOF_OF_AUTHORIZATION_REQUEST_CREATED =
|
596
604
|
T.let(
|
@@ -690,6 +690,20 @@ module Increase
|
|
690
690
|
Increase::EventListParams::Category::In::TaggedSymbol
|
691
691
|
)
|
692
692
|
|
693
|
+
# Occurs whenever a Program is created.
|
694
|
+
PROGRAM_CREATED =
|
695
|
+
T.let(
|
696
|
+
:"program.created",
|
697
|
+
Increase::EventListParams::Category::In::TaggedSymbol
|
698
|
+
)
|
699
|
+
|
700
|
+
# Occurs whenever a Program is updated.
|
701
|
+
PROGRAM_UPDATED =
|
702
|
+
T.let(
|
703
|
+
:"program.updated",
|
704
|
+
Increase::EventListParams::Category::In::TaggedSymbol
|
705
|
+
)
|
706
|
+
|
693
707
|
# Occurs whenever a Proof of Authorization Request is created.
|
694
708
|
PROOF_OF_AUTHORIZATION_REQUEST_CREATED =
|
695
709
|
T.let(
|
@@ -674,6 +674,20 @@ module Increase
|
|
674
674
|
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
675
675
|
)
|
676
676
|
|
677
|
+
# Occurs whenever a Program is created.
|
678
|
+
PROGRAM_CREATED =
|
679
|
+
T.let(
|
680
|
+
:"program.created",
|
681
|
+
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
682
|
+
)
|
683
|
+
|
684
|
+
# Occurs whenever a Program is updated.
|
685
|
+
PROGRAM_UPDATED =
|
686
|
+
T.let(
|
687
|
+
:"program.updated",
|
688
|
+
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
689
|
+
)
|
690
|
+
|
677
691
|
# Occurs whenever a Proof of Authorization Request is created.
|
678
692
|
PROOF_OF_AUTHORIZATION_REQUEST_CREATED =
|
679
693
|
T.let(
|
@@ -654,6 +654,20 @@ module Increase
|
|
654
654
|
Increase::EventSubscriptionCreateParams::SelectedEventCategory::TaggedSymbol
|
655
655
|
)
|
656
656
|
|
657
|
+
# Occurs whenever a Program is created.
|
658
|
+
PROGRAM_CREATED =
|
659
|
+
T.let(
|
660
|
+
:"program.created",
|
661
|
+
Increase::EventSubscriptionCreateParams::SelectedEventCategory::TaggedSymbol
|
662
|
+
)
|
663
|
+
|
664
|
+
# Occurs whenever a Program is updated.
|
665
|
+
PROGRAM_UPDATED =
|
666
|
+
T.let(
|
667
|
+
:"program.updated",
|
668
|
+
Increase::EventSubscriptionCreateParams::SelectedEventCategory::TaggedSymbol
|
669
|
+
)
|
670
|
+
|
657
671
|
# Occurs whenever a Proof of Authorization Request is created.
|
658
672
|
PROOF_OF_AUTHORIZATION_REQUEST_CREATED =
|
659
673
|
T.let(
|
@@ -46,6 +46,7 @@ module Increase
|
|
46
46
|
sig do
|
47
47
|
params(
|
48
48
|
account_id: String,
|
49
|
+
credit_limit: Integer,
|
49
50
|
name: String,
|
50
51
|
request_options: Increase::RequestOptions::OrHash
|
51
52
|
).returns(Increase::Account)
|
@@ -53,6 +54,9 @@ module Increase
|
|
53
54
|
def update(
|
54
55
|
# The identifier of the Account to update.
|
55
56
|
account_id,
|
57
|
+
# The new credit limit of the Account, if and only if the Account is a loan
|
58
|
+
# account.
|
59
|
+
credit_limit: nil,
|
56
60
|
# The new name of the Account.
|
57
61
|
name: nil,
|
58
62
|
request_options: {}
|
@@ -1,22 +1,29 @@
|
|
1
1
|
module Increase
|
2
2
|
module Models
|
3
3
|
type account_update_params =
|
4
|
-
{ name: String }
|
4
|
+
{ credit_limit: Integer, name: String }
|
5
|
+
& Increase::Internal::Type::request_parameters
|
5
6
|
|
6
7
|
class AccountUpdateParams < Increase::Internal::Type::BaseModel
|
7
8
|
extend Increase::Internal::Type::RequestParameters::Converter
|
8
9
|
include Increase::Internal::Type::RequestParameters
|
9
10
|
|
11
|
+
attr_reader credit_limit: Integer?
|
12
|
+
|
13
|
+
def credit_limit=: (Integer) -> Integer
|
14
|
+
|
10
15
|
attr_reader name: String?
|
11
16
|
|
12
17
|
def name=: (String) -> String
|
13
18
|
|
14
19
|
def initialize: (
|
20
|
+
?credit_limit: Integer,
|
15
21
|
?name: String,
|
16
22
|
?request_options: Increase::request_opts
|
17
23
|
) -> void
|
18
24
|
|
19
25
|
def to_hash: -> {
|
26
|
+
credit_limit: Integer,
|
20
27
|
name: String,
|
21
28
|
request_options: Increase::RequestOptions
|
22
29
|
}
|
@@ -650,25 +650,18 @@ module Increase
|
|
650
650
|
|
651
651
|
type joint =
|
652
652
|
{
|
653
|
-
individuals: ::Array[Increase::EntityCreateParams::Joint::Individual]
|
654
|
-
name: String
|
653
|
+
individuals: ::Array[Increase::EntityCreateParams::Joint::Individual]
|
655
654
|
}
|
656
655
|
|
657
656
|
class Joint < Increase::Internal::Type::BaseModel
|
658
657
|
attr_accessor individuals: ::Array[Increase::EntityCreateParams::Joint::Individual]
|
659
658
|
|
660
|
-
attr_reader name: String?
|
661
|
-
|
662
|
-
def name=: (String) -> String
|
663
|
-
|
664
659
|
def initialize: (
|
665
|
-
individuals: ::Array[Increase::EntityCreateParams::Joint::Individual]
|
666
|
-
?name: String
|
660
|
+
individuals: ::Array[Increase::EntityCreateParams::Joint::Individual]
|
667
661
|
) -> void
|
668
662
|
|
669
663
|
def to_hash: -> {
|
670
|
-
individuals: ::Array[Increase::EntityCreateParams::Joint::Individual]
|
671
|
-
name: String
|
664
|
+
individuals: ::Array[Increase::EntityCreateParams::Joint::Individual]
|
672
665
|
}
|
673
666
|
|
674
667
|
type individual =
|
@@ -120,6 +120,8 @@ module Increase
|
|
120
120
|
| :"physical_card.updated"
|
121
121
|
| :"physical_card_profile.created"
|
122
122
|
| :"physical_card_profile.updated"
|
123
|
+
| :"program.created"
|
124
|
+
| :"program.updated"
|
123
125
|
| :"proof_of_authorization_request.created"
|
124
126
|
| :"proof_of_authorization_request.updated"
|
125
127
|
| :"real_time_decision.card_authorization_requested"
|
@@ -376,6 +378,12 @@ module Increase
|
|
376
378
|
# Occurs whenever a Physical Card Profile is updated.
|
377
379
|
PHYSICAL_CARD_PROFILE_UPDATED: :"physical_card_profile.updated"
|
378
380
|
|
381
|
+
# Occurs whenever a Program is created.
|
382
|
+
PROGRAM_CREATED: :"program.created"
|
383
|
+
|
384
|
+
# Occurs whenever a Program is updated.
|
385
|
+
PROGRAM_UPDATED: :"program.updated"
|
386
|
+
|
379
387
|
# Occurs whenever a Proof of Authorization Request is created.
|
380
388
|
PROOF_OF_AUTHORIZATION_REQUEST_CREATED: :"proof_of_authorization_request.created"
|
381
389
|
|
@@ -153,6 +153,8 @@ module Increase
|
|
153
153
|
| :"physical_card.updated"
|
154
154
|
| :"physical_card_profile.created"
|
155
155
|
| :"physical_card_profile.updated"
|
156
|
+
| :"program.created"
|
157
|
+
| :"program.updated"
|
156
158
|
| :"proof_of_authorization_request.created"
|
157
159
|
| :"proof_of_authorization_request.updated"
|
158
160
|
| :"real_time_decision.card_authorization_requested"
|
@@ -409,6 +411,12 @@ module Increase
|
|
409
411
|
# Occurs whenever a Physical Card Profile is updated.
|
410
412
|
PHYSICAL_CARD_PROFILE_UPDATED: :"physical_card_profile.updated"
|
411
413
|
|
414
|
+
# Occurs whenever a Program is created.
|
415
|
+
PROGRAM_CREATED: :"program.created"
|
416
|
+
|
417
|
+
# Occurs whenever a Program is updated.
|
418
|
+
PROGRAM_UPDATED: :"program.updated"
|
419
|
+
|
412
420
|
# Occurs whenever a Proof of Authorization Request is created.
|
413
421
|
PROOF_OF_AUTHORIZATION_REQUEST_CREATED: :"proof_of_authorization_request.created"
|
414
422
|
|
@@ -130,6 +130,8 @@ module Increase
|
|
130
130
|
| :"physical_card.updated"
|
131
131
|
| :"physical_card_profile.created"
|
132
132
|
| :"physical_card_profile.updated"
|
133
|
+
| :"program.created"
|
134
|
+
| :"program.updated"
|
133
135
|
| :"proof_of_authorization_request.created"
|
134
136
|
| :"proof_of_authorization_request.updated"
|
135
137
|
| :"real_time_decision.card_authorization_requested"
|
@@ -386,6 +388,12 @@ module Increase
|
|
386
388
|
# Occurs whenever a Physical Card Profile is updated.
|
387
389
|
PHYSICAL_CARD_PROFILE_UPDATED: :"physical_card_profile.updated"
|
388
390
|
|
391
|
+
# Occurs whenever a Program is created.
|
392
|
+
PROGRAM_CREATED: :"program.created"
|
393
|
+
|
394
|
+
# Occurs whenever a Program is updated.
|
395
|
+
PROGRAM_UPDATED: :"program.updated"
|
396
|
+
|
389
397
|
# Occurs whenever a Proof of Authorization Request is created.
|
390
398
|
PROOF_OF_AUTHORIZATION_REQUEST_CREATED: :"proof_of_authorization_request.created"
|
391
399
|
|
@@ -124,6 +124,8 @@ module Increase
|
|
124
124
|
| :"physical_card.updated"
|
125
125
|
| :"physical_card_profile.created"
|
126
126
|
| :"physical_card_profile.updated"
|
127
|
+
| :"program.created"
|
128
|
+
| :"program.updated"
|
127
129
|
| :"proof_of_authorization_request.created"
|
128
130
|
| :"proof_of_authorization_request.updated"
|
129
131
|
| :"real_time_decision.card_authorization_requested"
|
@@ -380,6 +382,12 @@ module Increase
|
|
380
382
|
# Occurs whenever a Physical Card Profile is updated.
|
381
383
|
PHYSICAL_CARD_PROFILE_UPDATED: :"physical_card_profile.updated"
|
382
384
|
|
385
|
+
# Occurs whenever a Program is created.
|
386
|
+
PROGRAM_CREATED: :"program.created"
|
387
|
+
|
388
|
+
# Occurs whenever a Program is updated.
|
389
|
+
PROGRAM_UPDATED: :"program.updated"
|
390
|
+
|
383
391
|
# Occurs whenever a Proof of Authorization Request is created.
|
384
392
|
PROOF_OF_AUTHORIZATION_REQUEST_CREATED: :"proof_of_authorization_request.created"
|
385
393
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: increase
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.15.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Increase
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-07-
|
11
|
+
date: 2025-07-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: connection_pool
|