increase 1.323.0 → 1.324.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: 751995236a353cba22cf7f143b53d9e3aaff03a08a0a791c939bf6a1d2fe191b
4
- data.tar.gz: ecf9de95f3446ee4eb7677806fc21964bf0e68388e92b8296a2f076dfbfa2c1d
3
+ metadata.gz: 7161d5c44fe12858717be42be1e844e5c6a67b3da8992f141393495c88e28a7b
4
+ data.tar.gz: 452dbed096c9353a8bf19609a1e3ca44721ae8e546ea1b181aa355c1c1813101
5
5
  SHA512:
6
- metadata.gz: bc0372d4bb5122480a062c9e8f967329792e1532d1ed47f19a08f20824384ec6815c8f65374e9b7ffe3ba0588ba1474874c76344a6bc483d80a7f2b1b07cac7c
7
- data.tar.gz: 69178646cedd68cc251ca063ac751a6b16e72aca23d83154955616e71e089ac593e7f134b39f26de95a695027f712dd3257a3c5936497a434471de929f7c02df
6
+ metadata.gz: f120d36a41d5f16ec23bd165a41b795161d538e5eb4a2e76df0c13f121d534138d5b6bbfe45a88003f5cabb4593c43f208ee5a079833431a6433b4d99bbd3e83
7
+ data.tar.gz: 327196ac007231b3d0826c9a17478c343bdf12abb9ee7b2e9f9020d952fc5de77209a7009821c9d6969ad5822c5618d4bd7e80d2973aca53adf05502f61e63be
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.324.0 (2026-05-08)
4
+
5
+ Full Changelog: [v1.323.0...v1.324.0](https://github.com/Increase/increase-ruby/compare/v1.323.0...v1.324.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([bfafb93](https://github.com/Increase/increase-ruby/commit/bfafb932b84c314dfab265eadda094e90702cb29))
10
+
3
11
  ## 1.323.0 (2026-05-06)
4
12
 
5
13
  Full Changelog: [v1.322.0...v1.323.0](https://github.com/Increase/increase-ruby/compare/v1.322.0...v1.323.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.323.0"
18
+ gem "increase", "~> 1.324.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -403,7 +403,7 @@ module Increase
403
403
  # Export a CSV of all transactions for a given time range.
404
404
  TRANSACTION_CSV = :transaction_csv
405
405
 
406
- # Export a CSV of account balances for the dates in a given range.
406
+ # Export a CSV of account balances for the dates in a given range. (deprecated, use `daily_account_balance_csv` instead)
407
407
  BALANCE_CSV = :balance_csv
408
408
 
409
409
  # Export a CSV of bookkeeping account balances for the dates in a given range.
@@ -125,7 +125,7 @@ module Increase
125
125
  # Export a CSV of all transactions for a given time range.
126
126
  TRANSACTION_CSV = :transaction_csv
127
127
 
128
- # Export a CSV of account balances for the dates in a given range.
128
+ # Export a CSV of account balances for the dates in a given range. (deprecated, use `daily_account_balance_csv` instead)
129
129
  BALANCE_CSV = :balance_csv
130
130
 
131
131
  # Export a CSV of bookkeeping account balances for the dates in a given range.
@@ -90,7 +90,7 @@ module Increase
90
90
  # Export a CSV of all transactions for a given time range.
91
91
  TRANSACTION_CSV = :transaction_csv
92
92
 
93
- # Export a CSV of account balances for the dates in a given range.
93
+ # Export a CSV of account balances for the dates in a given range. (deprecated, use `daily_account_balance_csv` instead)
94
94
  BALANCE_CSV = :balance_csv
95
95
 
96
96
  # Export a CSV of bookkeeping account balances for the dates in a given range.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.323.0"
4
+ VERSION = "1.324.0"
5
5
  end
@@ -732,7 +732,7 @@ module Increase
732
732
  TRANSACTION_CSV =
733
733
  T.let(:transaction_csv, Increase::Export::Category::TaggedSymbol)
734
734
 
735
- # Export a CSV of account balances for the dates in a given range.
735
+ # Export a CSV of account balances for the dates in a given range. (deprecated, use `daily_account_balance_csv` instead)
736
736
  BALANCE_CSV =
737
737
  T.let(:balance_csv, Increase::Export::Category::TaggedSymbol)
738
738
 
@@ -264,7 +264,7 @@ module Increase
264
264
  Increase::ExportCreateParams::Category::TaggedSymbol
265
265
  )
266
266
 
267
- # Export a CSV of account balances for the dates in a given range.
267
+ # Export a CSV of account balances for the dates in a given range. (deprecated, use `daily_account_balance_csv` instead)
268
268
  BALANCE_CSV =
269
269
  T.let(
270
270
  :balance_csv,
@@ -160,7 +160,7 @@ module Increase
160
160
  Increase::ExportListParams::Category::TaggedSymbol
161
161
  )
162
162
 
163
- # Export a CSV of account balances for the dates in a given range.
163
+ # Export a CSV of account balances for the dates in a given range. (deprecated, use `daily_account_balance_csv` instead)
164
164
  BALANCE_CSV =
165
165
  T.let(
166
166
  :balance_csv,
@@ -281,7 +281,7 @@ module Increase
281
281
  # Export a CSV of all transactions for a given time range.
282
282
  TRANSACTION_CSV: :transaction_csv
283
283
 
284
- # Export a CSV of account balances for the dates in a given range.
284
+ # Export a CSV of account balances for the dates in a given range. (deprecated, use `daily_account_balance_csv` instead)
285
285
  BALANCE_CSV: :balance_csv
286
286
 
287
287
  # Export a CSV of bookkeeping account balances for the dates in a given range.
@@ -137,7 +137,7 @@ module Increase
137
137
  # Export a CSV of all transactions for a given time range.
138
138
  TRANSACTION_CSV: :transaction_csv
139
139
 
140
- # Export a CSV of account balances for the dates in a given range.
140
+ # Export a CSV of account balances for the dates in a given range. (deprecated, use `daily_account_balance_csv` instead)
141
141
  BALANCE_CSV: :balance_csv
142
142
 
143
143
  # Export a CSV of bookkeeping account balances for the dates in a given range.
@@ -112,7 +112,7 @@ module Increase
112
112
  # Export a CSV of all transactions for a given time range.
113
113
  TRANSACTION_CSV: :transaction_csv
114
114
 
115
- # Export a CSV of account balances for the dates in a given range.
115
+ # Export a CSV of account balances for the dates in a given range. (deprecated, use `daily_account_balance_csv` instead)
116
116
  BALANCE_CSV: :balance_csv
117
117
 
118
118
  # Export a CSV of bookkeeping account balances for the dates in a given range.
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.323.0
4
+ version: 1.324.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-05-06 00:00:00.000000000 Z
11
+ date: 2026-05-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cgi