increase 1.191.0 → 1.192.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: eba2f2c911b9ab325a93dcc63dbca06b29ca17dae8e3cea33acd4b303c703bf0
4
- data.tar.gz: 11840ab06f792953888f9a23d7f2d61fb9cce27700c0c70febba74a6b1faf946
3
+ metadata.gz: 38d33511925d35f4df3c886350fec04749da1343b1df05f2f631fc1f5df9dbaf
4
+ data.tar.gz: e9b59025264f05ff5c399e2a33211f30f4bbb05e87d4b6a12d32d693cf7ab0e2
5
5
  SHA512:
6
- metadata.gz: 67561fb4d8c355d7c5ac4d2f09de55cc5258f7e6dc27ae4b3930b8253abec5ffe00966c9c20adc28a1942ec50e37576f2f83e44121071f410a89f0e668c60b9f
7
- data.tar.gz: f46378b01ab65c11e26385b3fff4f09a3177431d2cf27d0bc89c217caa89ad1d1345c9d37a380394661cdf9c203bc875329b99fbd4ddd9d11a03592e06144311
6
+ metadata.gz: a2d6b5103c2e01ed9b1e4bc0d64a396e32dddfa2c215b9d1d1ad82957e5e4e76f88139ec8ad7bb377660176b6e22562174d94a0b3b3d7118b8eef2b98593e2a9
7
+ data.tar.gz: a531fda092823e76d07991b2af9531bcfa480ce56271bc7e3cd8598168a713080645d52655a39047cb5d312fa084499ff405b15dd448181a7acb8c82b88ab80d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.192.0 (2026-01-31)
4
+
5
+ Full Changelog: [v1.191.0...v1.192.0](https://github.com/Increase/increase-ruby/compare/v1.191.0...v1.192.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([a8ffb0d](https://github.com/Increase/increase-ruby/commit/a8ffb0d26def947f539725399b031fd018d46615))
10
+
3
11
  ## 1.191.0 (2026-01-30)
4
12
 
5
13
  Full Changelog: [v1.190.0...v1.191.0](https://github.com/Increase/increase-ruby/compare/v1.190.0...v1.191.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.191.0"
18
+ gem "increase", "~> 1.192.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -268,7 +268,7 @@ module Increase
268
268
 
269
269
  class BalanceCsv < Increase::Internal::Type::BaseModel
270
270
  # @!attribute account_id
271
- # Filter exported Transactions to the specified Account.
271
+ # Filter exported Balances to the specified Account.
272
272
  #
273
273
  # @return [String, nil]
274
274
  optional :account_id, String
@@ -280,7 +280,7 @@ module Increase
280
280
  optional :created_at, -> { Increase::ExportCreateParams::BalanceCsv::CreatedAt }
281
281
 
282
282
  # @!attribute program_id
283
- # Filter exported Transactions to the specified Program.
283
+ # Filter exported Balances to the specified Program.
284
284
  #
285
285
  # @return [String, nil]
286
286
  optional :program_id, String
@@ -289,11 +289,11 @@ module Increase
289
289
  # Options for the created export. Required if `category` is equal to
290
290
  # `balance_csv`.
291
291
  #
292
- # @param account_id [String] Filter exported Transactions to the specified Account.
292
+ # @param account_id [String] Filter exported Balances to the specified Account.
293
293
  #
294
294
  # @param created_at [Increase::Models::ExportCreateParams::BalanceCsv::CreatedAt] Filter results by time range on the `created_at` attribute.
295
295
  #
296
- # @param program_id [String] Filter exported Transactions to the specified Program.
296
+ # @param program_id [String] Filter exported Balances to the specified Program.
297
297
 
298
298
  # @see Increase::Models::ExportCreateParams::BalanceCsv#created_at
299
299
  class CreatedAt < Increase::Internal::Type::BaseModel
@@ -343,7 +343,8 @@ module Increase
343
343
 
344
344
  class BookkeepingAccountBalanceCsv < Increase::Internal::Type::BaseModel
345
345
  # @!attribute bookkeeping_account_id
346
- # Filter exported Transactions to the specified Bookkeeping Account.
346
+ # Filter exported Bookkeeping Account Balances to the specified Bookkeeping
347
+ # Account.
347
348
  #
348
349
  # @return [String, nil]
349
350
  optional :bookkeeping_account_id, String
@@ -355,10 +356,14 @@ module Increase
355
356
  optional :created_at, -> { Increase::ExportCreateParams::BookkeepingAccountBalanceCsv::CreatedAt }
356
357
 
357
358
  # @!method initialize(bookkeeping_account_id: nil, created_at: nil)
359
+ # Some parameter documentations has been truncated, see
360
+ # {Increase::Models::ExportCreateParams::BookkeepingAccountBalanceCsv} for more
361
+ # details.
362
+ #
358
363
  # Options for the created export. Required if `category` is equal to
359
364
  # `bookkeeping_account_balance_csv`.
360
365
  #
361
- # @param bookkeeping_account_id [String] Filter exported Transactions to the specified Bookkeeping Account.
366
+ # @param bookkeeping_account_id [String] Filter exported Bookkeeping Account Balances to the specified Bookkeeping Accoun
362
367
  #
363
368
  # @param created_at [Increase::Models::ExportCreateParams::BookkeepingAccountBalanceCsv::CreatedAt] Filter results by time range on the `created_at` attribute.
364
369
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.191.0"
4
+ VERSION = "1.192.0"
5
5
  end
@@ -553,7 +553,7 @@ module Increase
553
553
  )
554
554
  end
555
555
 
556
- # Filter exported Transactions to the specified Account.
556
+ # Filter exported Balances to the specified Account.
557
557
  sig { returns(T.nilable(String)) }
558
558
  attr_reader :account_id
559
559
 
@@ -576,7 +576,7 @@ module Increase
576
576
  end
577
577
  attr_writer :created_at
578
578
 
579
- # Filter exported Transactions to the specified Program.
579
+ # Filter exported Balances to the specified Program.
580
580
  sig { returns(T.nilable(String)) }
581
581
  attr_reader :program_id
582
582
 
@@ -594,11 +594,11 @@ module Increase
594
594
  ).returns(T.attached_class)
595
595
  end
596
596
  def self.new(
597
- # Filter exported Transactions to the specified Account.
597
+ # Filter exported Balances to the specified Account.
598
598
  account_id: nil,
599
599
  # Filter results by time range on the `created_at` attribute.
600
600
  created_at: nil,
601
- # Filter exported Transactions to the specified Program.
601
+ # Filter exported Balances to the specified Program.
602
602
  program_id: nil
603
603
  )
604
604
  end
@@ -705,7 +705,8 @@ module Increase
705
705
  )
706
706
  end
707
707
 
708
- # Filter exported Transactions to the specified Bookkeeping Account.
708
+ # Filter exported Bookkeeping Account Balances to the specified Bookkeeping
709
+ # Account.
709
710
  sig { returns(T.nilable(String)) }
710
711
  attr_reader :bookkeeping_account_id
711
712
 
@@ -740,7 +741,8 @@ module Increase
740
741
  ).returns(T.attached_class)
741
742
  end
742
743
  def self.new(
743
- # Filter exported Transactions to the specified Bookkeeping Account.
744
+ # Filter exported Bookkeeping Account Balances to the specified Bookkeeping
745
+ # Account.
744
746
  bookkeeping_account_id: nil,
745
747
  # Filter results by time range on the `created_at` attribute.
746
748
  created_at: nil
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.191.0
4
+ version: 1.192.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Increase
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-01-30 00:00:00.000000000 Z
11
+ date: 2026-01-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cgi