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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/README.md +1 -1
- data/lib/increase/models/event_subscription_create_params.rb +247 -233
- data/lib/increase/resources/event_subscriptions.rb +2 -2
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/event_subscription_create_params.rbi +732 -682
- data/rbi/increase/resources/event_subscriptions.rbi +7 -4
- data/sig/increase/models/event_subscription_create_params.rbs +370 -353
- data/sig/increase/resources/event_subscriptions.rbs +1 -1
- metadata +2 -2
|
@@ -8,8 +8,10 @@ module Increase
|
|
|
8
8
|
params(
|
|
9
9
|
url: String,
|
|
10
10
|
oauth_connection_id: String,
|
|
11
|
-
|
|
12
|
-
|
|
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
|
-
|
|
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,
|