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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d69a7a0a96c5f15482295dd4f48e67cd59b867e7b8804003ad0b8c372c7982f6
4
- data.tar.gz: bc0747567f6819c4c6b1a122a828a590abefa8a86fcfcaa0ca9ea2a9f3a2383c
3
+ metadata.gz: 12b710f8813b9ca3a5a29b168723120d8212f3b07ac56c06e2836d766b50df9b
4
+ data.tar.gz: f7e1b77da631495fa6a0f596364de933fa990b7e7756e23b7b3997b94c15715e
5
5
  SHA512:
6
- metadata.gz: 98c6bfa941406a59f0e2daa80de0c1446ee888de785519f694c4df42d9b7af036637aa84d7347053e4eb281b079b9c41b3f174bbd203b4f0bebbd4d3aab34fde
7
- data.tar.gz: f86c7f1718850be52134204b4830551abe7518281622e69542d6b2f02df0c043d15b16373aa0449579672d648e76a19c0746ba3d3c39b041ca428433f199d787
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, webhook disabled at 10) | [optional] |
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, webhook disabled at 10)
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
@@ -11,5 +11,5 @@ Generator version: 7.19.0
11
11
  =end
12
12
 
13
13
  module Zernio
14
- VERSION = '0.0.840'
14
+ VERSION = '0.0.841'
15
15
  end
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: Consecutive delivery failures (resets on success, webhook disabled at 10)
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.840
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-04 00:00:00.000000000 Z
11
+ date: 2026-09-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus