late-sdk 0.0.587 → 0.0.588
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/WebhooksApi.md +2 -2
- data/lib/zernio-sdk/api/webhooks_api.rb +4 -4
- data/lib/zernio-sdk/version.rb +1 -1
- data/openapi.yaml +2 -2
- data/spec/api/webhooks_api_spec.rb +2 -2
- data/zernio-sdk-0.0.588.gem +0 -0
- metadata +2 -2
- data/zernio-sdk-0.0.587.gem +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2e1980bae6a327e7d16f99258611067edd539e6c88a4b12c6991fe6eb6cd3320
|
|
4
|
+
data.tar.gz: d1aa23a6d257cb2efa1721c306ad70a7c08bc6c4d9de2278e7b40ef68c861bfc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d8f79a5751e9fdd1a147eb6b5754fde83bf318eb3c08c724affcfe6b811d1cb1c90849b98a34f56a03167b2bad201819f16860bae7d0f9aa122b400d4dedf843
|
|
7
|
+
data.tar.gz: 933f6933a2c7efa3a39ff2208c35869db160b51d41b405824976fcf7d097616677874390e8b2d4122600fd36c9bce12e1be97fcd1397f1cc11444b5143af0d39
|
data/docs/WebhooksApi.md
CHANGED
|
@@ -18,7 +18,7 @@ All URIs are relative to *https://zernio.com/api*
|
|
|
18
18
|
|
|
19
19
|
Create webhook
|
|
20
20
|
|
|
21
|
-
Create a new webhook configuration. Maximum
|
|
21
|
+
Create a new webhook configuration. Maximum 50 webhooks per user. `name`, `url` and `events` are required. `url` must be a valid URL and `events` must contain at least one event. Whitespace is trimmed from `url` before validation. Webhooks are automatically disabled after 10 consecutive delivery failures.
|
|
22
22
|
|
|
23
23
|
### Examples
|
|
24
24
|
|
|
@@ -237,7 +237,7 @@ end
|
|
|
237
237
|
|
|
238
238
|
List webhooks
|
|
239
239
|
|
|
240
|
-
Retrieve all configured webhooks for the authenticated user. Supports up to
|
|
240
|
+
Retrieve all configured webhooks for the authenticated user. Supports up to 50 webhooks per user.
|
|
241
241
|
|
|
242
242
|
### Examples
|
|
243
243
|
|
|
@@ -20,7 +20,7 @@ module Zernio
|
|
|
20
20
|
@api_client = api_client
|
|
21
21
|
end
|
|
22
22
|
# Create webhook
|
|
23
|
-
# Create a new webhook configuration. Maximum
|
|
23
|
+
# Create a new webhook configuration. Maximum 50 webhooks per user. `name`, `url` and `events` are required. `url` must be a valid URL and `events` must contain at least one event. Whitespace is trimmed from `url` before validation. Webhooks are automatically disabled after 10 consecutive delivery failures.
|
|
24
24
|
# @param create_webhook_settings_request [CreateWebhookSettingsRequest]
|
|
25
25
|
# @param [Hash] opts the optional parameters
|
|
26
26
|
# @return [UpdateWebhookSettings200Response]
|
|
@@ -30,7 +30,7 @@ module Zernio
|
|
|
30
30
|
end
|
|
31
31
|
|
|
32
32
|
# Create webhook
|
|
33
|
-
# Create a new webhook configuration. Maximum
|
|
33
|
+
# Create a new webhook configuration. Maximum 50 webhooks per user. `name`, `url` and `events` are required. `url` must be a valid URL and `events` must contain at least one event. Whitespace is trimmed from `url` before validation. Webhooks are automatically disabled after 10 consecutive delivery failures.
|
|
34
34
|
# @param create_webhook_settings_request [CreateWebhookSettingsRequest]
|
|
35
35
|
# @param [Hash] opts the optional parameters
|
|
36
36
|
# @return [Array<(UpdateWebhookSettings200Response, Integer, Hash)>] UpdateWebhookSettings200Response data, response status code and response headers
|
|
@@ -271,7 +271,7 @@ module Zernio
|
|
|
271
271
|
end
|
|
272
272
|
|
|
273
273
|
# List webhooks
|
|
274
|
-
# Retrieve all configured webhooks for the authenticated user. Supports up to
|
|
274
|
+
# Retrieve all configured webhooks for the authenticated user. Supports up to 50 webhooks per user.
|
|
275
275
|
# @param [Hash] opts the optional parameters
|
|
276
276
|
# @return [GetWebhookSettings200Response]
|
|
277
277
|
def get_webhook_settings(opts = {})
|
|
@@ -280,7 +280,7 @@ module Zernio
|
|
|
280
280
|
end
|
|
281
281
|
|
|
282
282
|
# List webhooks
|
|
283
|
-
# Retrieve all configured webhooks for the authenticated user. Supports up to
|
|
283
|
+
# Retrieve all configured webhooks for the authenticated user. Supports up to 50 webhooks per user.
|
|
284
284
|
# @param [Hash] opts the optional parameters
|
|
285
285
|
# @return [Array<(GetWebhookSettings200Response, Integer, Hash)>] GetWebhookSettings200Response data, response status code and response headers
|
|
286
286
|
def get_webhook_settings_with_http_info(opts = {})
|
data/lib/zernio-sdk/version.rb
CHANGED
data/openapi.yaml
CHANGED
|
@@ -21186,7 +21186,7 @@ paths:
|
|
|
21186
21186
|
operationId: getWebhookSettings
|
|
21187
21187
|
tags: [Webhooks]
|
|
21188
21188
|
summary: List webhooks
|
|
21189
|
-
description: Retrieve all configured webhooks for the authenticated user. Supports up to
|
|
21189
|
+
description: Retrieve all configured webhooks for the authenticated user. Supports up to 50 webhooks per user.
|
|
21190
21190
|
security:
|
|
21191
21191
|
- bearerAuth: []
|
|
21192
21192
|
responses:
|
|
@@ -21222,7 +21222,7 @@ paths:
|
|
|
21222
21222
|
tags: [Webhooks]
|
|
21223
21223
|
summary: Create webhook
|
|
21224
21224
|
description: |
|
|
21225
|
-
Create a new webhook configuration. Maximum
|
|
21225
|
+
Create a new webhook configuration. Maximum 50 webhooks per user.
|
|
21226
21226
|
|
|
21227
21227
|
`name`, `url` and `events` are required. `url` must be a valid URL and `events` must contain at least one event. Whitespace is trimmed from `url` before validation.
|
|
21228
21228
|
|
|
@@ -34,7 +34,7 @@ describe 'WebhooksApi' do
|
|
|
34
34
|
|
|
35
35
|
# unit tests for create_webhook_settings
|
|
36
36
|
# Create webhook
|
|
37
|
-
# Create a new webhook configuration. Maximum
|
|
37
|
+
# Create a new webhook configuration. Maximum 50 webhooks per user. `name`, `url` and `events` are required. `url` must be a valid URL and `events` must contain at least one event. Whitespace is trimmed from `url` before validation. Webhooks are automatically disabled after 10 consecutive delivery failures.
|
|
38
38
|
# @param create_webhook_settings_request
|
|
39
39
|
# @param [Hash] opts the optional parameters
|
|
40
40
|
# @return [UpdateWebhookSettings200Response]
|
|
@@ -75,7 +75,7 @@ describe 'WebhooksApi' do
|
|
|
75
75
|
|
|
76
76
|
# unit tests for get_webhook_settings
|
|
77
77
|
# List webhooks
|
|
78
|
-
# Retrieve all configured webhooks for the authenticated user. Supports up to
|
|
78
|
+
# Retrieve all configured webhooks for the authenticated user. Supports up to 50 webhooks per user.
|
|
79
79
|
# @param [Hash] opts the optional parameters
|
|
80
80
|
# @return [GetWebhookSettings200Response]
|
|
81
81
|
describe 'get_webhook_settings test' do
|
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: late-sdk
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.588
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- OpenAPI-Generator
|
|
@@ -4805,7 +4805,7 @@ files:
|
|
|
4805
4805
|
- spec/models/you_tube_video_retention_response_retention_curve_inner_spec.rb
|
|
4806
4806
|
- spec/models/you_tube_video_retention_response_spec.rb
|
|
4807
4807
|
- spec/spec_helper.rb
|
|
4808
|
-
- zernio-sdk-0.0.
|
|
4808
|
+
- zernio-sdk-0.0.588.gem
|
|
4809
4809
|
- zernio-sdk.gemspec
|
|
4810
4810
|
homepage: https://openapi-generator.tech
|
|
4811
4811
|
licenses:
|
data/zernio-sdk-0.0.587.gem
DELETED
|
Binary file
|