increase 1.14.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f595c8f946a264b3c24014db8f93d85500632300faf708c0d9ee661e9ba7a976
4
- data.tar.gz: 32a2c539015a955802866d58b07fe4b736958e8f091f103bcc8ac21c7008b3d4
3
+ metadata.gz: 796b831ce7df2c61d203a9787d51a0cb370e7ea8e7322f0e390bce68ef998ecd
4
+ data.tar.gz: e9510cf1c447c8685f83669ad869eee1f58fb291acb5a18f16ff31133b69bc1a
5
5
  SHA512:
6
- metadata.gz: 9668ab5d9dc390abf56b875460f6774de06fa54ee7695cf595d99ac043ad16b77eb71797a14cca9ff2b182e600994181b2cb01bbc035f724cf7a31d8baf00e8b
7
- data.tar.gz: a524e05fa057ce8cc3f4f3e3d9dd7d04ea89de26c7f3f4f41dcf20ecf2acfd398eda6152a93e189f8b0278613fc9905f9fa45c3bc5179589ce16562139dafb3d
6
+ metadata.gz: f62828b9eeef0bd19ea3ddbdef8b15c6c8478b3c8dce2c00bbb3737c89b77629387b8ba19ab7f4e2a1fe81254a741d073ddae00f1c89342a9de438163a60b869
7
+ data.tar.gz: e291ea64da1db9ff30e1c263872a9022af6a1541e0ff80762532b587cf4660626ebdf9eb87b1fc724c5f172b25def44b3854471ab882e2dc23dfb24b16767faf
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
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
+
3
12
  ## 1.14.0 (2025-07-18)
4
13
 
5
14
  Full Changelog: [v1.13.0...v1.14.0](https://github.com/Increase/increase-ruby/compare/v1.13.0...v1.14.0)
data/README.md CHANGED
@@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application
15
15
  <!-- x-release-please-start-version -->
16
16
 
17
17
  ```ruby
18
- gem "increase", "~> 1.14.0"
18
+ gem "increase", "~> 1.15.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -810,19 +810,11 @@ module Increase
810
810
  required :individuals,
811
811
  -> { Increase::Internal::Type::ArrayOf[Increase::EntityCreateParams::Joint::Individual] }
812
812
 
813
- # @!attribute name
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
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.14.0"
4
+ VERSION = "1.15.0"
5
5
  end
@@ -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(
@@ -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.14.0
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-18 00:00:00.000000000 Z
11
+ date: 2025-07-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool