zernio-sdk 0.0.840 → 0.0.841
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/docs/Webhook.md +1 -1
- data/lib/zernio-sdk/models/webhook.rb +1 -1
- data/lib/zernio-sdk/version.rb +1 -1
- data/openapi.yaml +7 -1
- 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: 12b710f8813b9ca3a5a29b168723120d8212f3b07ac56c06e2836d766b50df9b
|
|
4
|
+
data.tar.gz: f7e1b77da631495fa6a0f596364de933fa990b7e7756e23b7b3997b94c15715e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e3d38f14db38cc93bf8dc8661f07b8afe3c5ada9472c093ba53a563b4de287577463aa52525ebe7de58fce9802e6ad56ef53fed0540a7b43b5273250d76ee89d
|
|
7
|
+
data.tar.gz: 2969423a05bf2d61779942dd19739251acf2f0df56afbec098ee17dcd0c1c358f9f67d6724776da645c3a9981a19191ea0e4bfdd13ed05d578d780d5adcbe5b0
|
data/docs/Webhook.md
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
| **events** | **Array<String>** | Events subscribed to | [optional] |
|
|
12
12
|
| **is_active** | **Boolean** | Whether webhook delivery is enabled | [optional] |
|
|
13
13
|
| **last_fired_at** | **Time** | Timestamp of last successful webhook delivery | [optional] |
|
|
14
|
-
| **failure_count** | **Integer** | Consecutive delivery failures (resets on success
|
|
14
|
+
| **failure_count** | **Integer** | Consecutive terminal delivery failures (resets to 0 on any successful delivery). Auto-disable only triggers when the endpoint has had no successful delivery within a 3-day window AND either reaches 20 consecutive terminal failures or has been failing continuously for 3 days; any success within that window keeps the endpoint enabled regardless of the count. | [optional] |
|
|
15
15
|
| **custom_headers** | **Hash<String, String>** | Custom headers included in webhook requests | [optional] |
|
|
16
16
|
| **disabled_resource_groups** | **Array<String>** | Resource groups this subscription does not receive (opt-out denylist, same vocabulary and same semantics as the field on API keys). Absent or empty means the subscription receives every event listed in `events`, which is how every subscription created before this field existed behaves. An event whose group is listed here is dropped before delivery even when it is still present in `events`, and the same check runs on every replay path (test fire, redelivery, dead-letter requeue). Editing the denylist applies to every event emitted afterwards; events already queued when the edit landed can still be delivered for up to five minutes after they were enqueued. | [optional] |
|
|
17
17
|
|
|
@@ -37,7 +37,7 @@ module Zernio
|
|
|
37
37
|
# Timestamp of last successful webhook delivery
|
|
38
38
|
attr_accessor :last_fired_at
|
|
39
39
|
|
|
40
|
-
# Consecutive delivery failures (resets on success
|
|
40
|
+
# Consecutive terminal delivery failures (resets to 0 on any successful delivery). Auto-disable only triggers when the endpoint has had no successful delivery within a 3-day window AND either reaches 20 consecutive terminal failures or has been failing continuously for 3 days; any success within that window keeps the endpoint enabled regardless of the count.
|
|
41
41
|
attr_accessor :failure_count
|
|
42
42
|
|
|
43
43
|
# Custom headers included in webhook requests
|
data/lib/zernio-sdk/version.rb
CHANGED
data/openapi.yaml
CHANGED
|
@@ -2465,7 +2465,13 @@ components:
|
|
|
2465
2465
|
description: Timestamp of last successful webhook delivery
|
|
2466
2466
|
failureCount:
|
|
2467
2467
|
type: integer
|
|
2468
|
-
description:
|
|
2468
|
+
description: >-
|
|
2469
|
+
Consecutive terminal delivery failures (resets to 0 on any
|
|
2470
|
+
successful delivery). Auto-disable only triggers when the endpoint
|
|
2471
|
+
has had no successful delivery within a 3-day window AND either
|
|
2472
|
+
reaches 20 consecutive terminal failures or has been failing
|
|
2473
|
+
continuously for 3 days; any success within that window keeps the
|
|
2474
|
+
endpoint enabled regardless of the count.
|
|
2469
2475
|
customHeaders:
|
|
2470
2476
|
type: object
|
|
2471
2477
|
additionalProperties:
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: zernio-sdk
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.841
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- OpenAPI-Generator
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-09-
|
|
11
|
+
date: 2026-09-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|