increase 1.218.0 → 1.219.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.
@@ -8,8 +8,10 @@ module Increase
8
8
  params(
9
9
  url: String,
10
10
  oauth_connection_id: String,
11
- selected_event_category:
12
- Increase::EventSubscriptionCreateParams::SelectedEventCategory::OrSymbol,
11
+ selected_event_categories:
12
+ T::Array[
13
+ Increase::EventSubscriptionCreateParams::SelectedEventCategory::OrHash
14
+ ],
13
15
  shared_secret: String,
14
16
  status: Increase::EventSubscriptionCreateParams::Status::OrSymbol,
15
17
  request_options: Increase::RequestOptions::OrHash
@@ -22,8 +24,9 @@ module Increase
22
24
  # with the specified OAuth Connection.
23
25
  oauth_connection_id: nil,
24
26
  # If specified, this subscription will only receive webhooks for Events with the
25
- # specified `category`.
26
- selected_event_category: nil,
27
+ # specified `category`. If specifying a Real-Time Decision event category, only
28
+ # one Event Category can be specified for the Event Subscription.
29
+ selected_event_categories: nil,
27
30
  # The key that will be used to sign webhooks. If no value is passed, a random
28
31
  # string will be used as default.
29
32
  shared_secret: nil,