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 +4 -4
- data/CHANGELOG.md +8 -0
- data/README.md +1 -1
- data/lib/increase/models/export_create_params.rb +11 -6
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/export_create_params.rbi +8 -6
- 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: 38d33511925d35f4df3c886350fec04749da1343b1df05f2f631fc1f5df9dbaf
|
|
4
|
+
data.tar.gz: e9b59025264f05ff5c399e2a33211f30f4bbb05e87d4b6a12d32d693cf7ab0e2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
@@ -268,7 +268,7 @@ module Increase
|
|
|
268
268
|
|
|
269
269
|
class BalanceCsv < Increase::Internal::Type::BaseModel
|
|
270
270
|
# @!attribute account_id
|
|
271
|
-
# Filter exported
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
data/lib/increase/version.rb
CHANGED
|
@@ -553,7 +553,7 @@ module Increase
|
|
|
553
553
|
)
|
|
554
554
|
end
|
|
555
555
|
|
|
556
|
-
# Filter exported
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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.
|
|
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-
|
|
11
|
+
date: 2026-01-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|