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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7275a50335699dbca8dcdf0923eb6fba66c94f4d2fdc9de51b95e47eb1c7cdfa
4
- data.tar.gz: 2c63e95248ae8a51fbdb5cc28129a858bfab693e5270a1224adbc7f1382bd370
3
+ metadata.gz: 4c81e9ca4444290c63ac9718f6a9098f5c2e02509247b9e76a397a52d05e660f
4
+ data.tar.gz: ec776eea6f1cfb443678fd646de69ae04c41e2caa2e22bf6cf78a88e6d484a77
5
5
  SHA512:
6
- metadata.gz: cd47cadc3ae99bc005107f1306016c7e2e96598b515c1f13727e54747c03017d11084f35a256c76c88dc51f4af21fa62c5b153c8451e9078ba08f73d97eea964
7
- data.tar.gz: a4f3e10c76f5ad48f5064a28eedc301a1fe656893647ad821f68862cd175fbf48d8a9cd23a1c231dab7a09178b5857c8ad5b5fb505603f6cc6e674c086fc755b
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
@@ -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.89.0"
18
+ gem "increase", "~> 1.91.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -35,7 +35,13 @@ module Increase
35
35
  # @return [String, nil]
36
36
  optional :shared_secret, String
37
37
 
38
- # @!method initialize(url:, oauth_connection_id: nil, selected_event_category: nil, shared_secret: nil, request_options: {})
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