increase 1.89.0 → 1.91.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 +26 -0
- data/README.md +1 -1
- data/lib/increase/models/event_subscription_create_params.rb +23 -1
- data/lib/increase/models/transaction.rb +1296 -173
- data/lib/increase/models/transaction_list_params.rb +3 -0
- data/lib/increase/resources/event_subscriptions.rb +3 -1
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/event_subscription_create_params.rbi +54 -0
- data/rbi/increase/models/transaction.rbi +2282 -123
- data/rbi/increase/models/transaction_list_params.rbi +7 -0
- data/rbi/increase/resources/event_subscriptions.rbi +3 -0
- data/sig/increase/models/event_subscription_create_params.rbs +24 -1
- data/sig/increase/models/transaction.rbs +768 -0
- data/sig/increase/models/transaction_list_params.rbs +4 -0
- data/sig/increase/resources/event_subscriptions.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: 4c81e9ca4444290c63ac9718f6a9098f5c2e02509247b9e76a397a52d05e660f
|
4
|
+
data.tar.gz: ec776eea6f1cfb443678fd646de69ae04c41e2caa2e22bf6cf78a88e6d484a77
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c7e7585da4754e448d46f03632998a051c588ea5b852721de2a94024ad9400323caca4632aa4df642d16e8a18efbb01d6ed763e3b4337c243ed4176e42b0279b
|
7
|
+
data.tar.gz: 03470f89a2f3e5727115fe1fb8548e49d143a5ae5478485010f15044ea03cd20365a0685822abe65d164a34170f4e07c688acbb37ebd193830df2b747fe3d3ee
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,31 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 1.91.0 (2025-09-26)
|
4
|
+
|
5
|
+
Full Changelog: [v1.90.0...v1.91.0](https://github.com/Increase/increase-ruby/compare/v1.90.0...v1.91.0)
|
6
|
+
|
7
|
+
### Features
|
8
|
+
|
9
|
+
* **api:** api update ([cef39bf](https://github.com/Increase/increase-ruby/commit/cef39bf07ee95816d467d7424fe8f2ae7e19ea6b))
|
10
|
+
|
11
|
+
|
12
|
+
### Bug Fixes
|
13
|
+
|
14
|
+
* **internal:** use null byte as file separator in the fast formatting script ([43cc7df](https://github.com/Increase/increase-ruby/commit/43cc7df41e43ab4b28837fc157ee2adfc338f79d))
|
15
|
+
|
16
|
+
|
17
|
+
### Performance Improvements
|
18
|
+
|
19
|
+
* faster code formatting ([8d246f0](https://github.com/Increase/increase-ruby/commit/8d246f096d698f933202fbec1afc1f4a5ecc4e0a))
|
20
|
+
|
21
|
+
## 1.90.0 (2025-09-24)
|
22
|
+
|
23
|
+
Full Changelog: [v1.89.0...v1.90.0](https://github.com/Increase/increase-ruby/compare/v1.89.0...v1.90.0)
|
24
|
+
|
25
|
+
### Features
|
26
|
+
|
27
|
+
* **api:** api update ([1d66673](https://github.com/Increase/increase-ruby/commit/1d666739b4d2b06f94ee367cb34c6254b55ab137))
|
28
|
+
|
3
29
|
## 1.89.0 (2025-09-24)
|
4
30
|
|
5
31
|
Full Changelog: [v1.88.0...v1.89.0](https://github.com/Increase/increase-ruby/compare/v1.88.0...v1.89.0)
|
data/README.md
CHANGED
@@ -35,7 +35,13 @@ module Increase
|
|
35
35
|
# @return [String, nil]
|
36
36
|
optional :shared_secret, String
|
37
37
|
|
38
|
-
# @!
|
38
|
+
# @!attribute status
|
39
|
+
# The status of the event subscription. Defaults to `active` if not specified.
|
40
|
+
#
|
41
|
+
# @return [Symbol, Increase::Models::EventSubscriptionCreateParams::Status, nil]
|
42
|
+
optional :status, enum: -> { Increase::EventSubscriptionCreateParams::Status }
|
43
|
+
|
44
|
+
# @!method initialize(url:, oauth_connection_id: nil, selected_event_category: nil, shared_secret: nil, status: nil, request_options: {})
|
39
45
|
# Some parameter documentations has been truncated, see
|
40
46
|
# {Increase::Models::EventSubscriptionCreateParams} for more details.
|
41
47
|
#
|
@@ -47,6 +53,8 @@ module Increase
|
|
47
53
|
#
|
48
54
|
# @param shared_secret [String] The key that will be used to sign webhooks. If no value is passed, a random stri
|
49
55
|
#
|
56
|
+
# @param status [Symbol, Increase::Models::EventSubscriptionCreateParams::Status] The status of the event subscription. Defaults to `active` if not specified.
|
57
|
+
#
|
50
58
|
# @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}]
|
51
59
|
|
52
60
|
# If specified, this subscription will only receive webhooks for Events with the
|
@@ -371,6 +379,20 @@ module Increase
|
|
371
379
|
# @!method self.values
|
372
380
|
# @return [Array<Symbol>]
|
373
381
|
end
|
382
|
+
|
383
|
+
# The status of the event subscription. Defaults to `active` if not specified.
|
384
|
+
module Status
|
385
|
+
extend Increase::Internal::Type::Enum
|
386
|
+
|
387
|
+
# The subscription is active and Events will be delivered normally.
|
388
|
+
ACTIVE = :active
|
389
|
+
|
390
|
+
# The subscription is temporarily disabled and Events will not be delivered.
|
391
|
+
DISABLED = :disabled
|
392
|
+
|
393
|
+
# @!method self.values
|
394
|
+
# @return [Array<Symbol>]
|
395
|
+
end
|
374
396
|
end
|
375
397
|
end
|
376
398
|
end
|