late-sdk 0.0.668 → 0.0.669
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/PostsApi.md +4 -4
- data/lib/zernio-sdk/api/posts_api.rb +4 -4
- data/lib/zernio-sdk/version.rb +1 -1
- data/openapi.yaml +2 -0
- data/spec/api/posts_api_spec.rb +2 -2
- data/zernio-sdk-0.0.669.gem +0 -0
- metadata +2 -2
- data/zernio-sdk-0.0.668.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: 4e7d82c3147da351bc81a3be559f5fb8adcf37cb916acca3d4f7376d2367a0e4
|
|
4
|
+
data.tar.gz: fdd41085efb7ab450f052ad50a33764fc34d41f89a5bbac0d7c6a32d90100574
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e3da3afdd8d3a0be205d99f5371851f1152b42f20e3dd2828f2de707b604ca260fa7aca0a388982befb8a81c15845766df2fa02ea27c055064edd16f2f860ed1
|
|
7
|
+
data.tar.gz: 06301f6b722cc254d4b5448759b91e2e30e4ee9d49eb901d2a0fdd5b3b60d9e832d7571d169443b7d9343b1770c1961d20f218243ba75bf123148e698184fe2f
|
data/docs/PostsApi.md
CHANGED
|
@@ -399,8 +399,8 @@ opts = {
|
|
|
399
399
|
platform: 'twitter', # String |
|
|
400
400
|
profile_id: 'profile_id_example', # String | Filter posts to a specific profile (24-char hex ObjectId). Omit it, or send `all` or an empty value, to list posts across every profile.
|
|
401
401
|
created_by: 'created_by_example', # String | Filter posts to those created by a specific team user (24-char hex ObjectId).
|
|
402
|
-
date_from: Date.parse('2013-10-20'), # Date |
|
|
403
|
-
date_to: Date.parse('2013-10-20'), # Date |
|
|
402
|
+
date_from: Date.parse('2013-10-20'), # Date | Zero-padded YYYY-MM-DD, or a full ISO 8601 datetime. An empty value means no date filter; any other malformed value returns 400.
|
|
403
|
+
date_to: Date.parse('2013-10-20'), # Date | Zero-padded YYYY-MM-DD, or a full ISO 8601 datetime. An empty value means no date filter; any other malformed value returns 400.
|
|
404
404
|
include_hidden: true, # Boolean |
|
|
405
405
|
search: 'search_example', # String | Search posts by text content.
|
|
406
406
|
sort_by: 'scheduled-desc', # String | Sort order for results.
|
|
@@ -445,8 +445,8 @@ end
|
|
|
445
445
|
| **platform** | **String** | | [optional] |
|
|
446
446
|
| **profile_id** | **String** | Filter posts to a specific profile (24-char hex ObjectId). Omit it, or send `all` or an empty value, to list posts across every profile. | [optional] |
|
|
447
447
|
| **created_by** | **String** | Filter posts to those created by a specific team user (24-char hex ObjectId). | [optional] |
|
|
448
|
-
| **date_from** | **Date** |
|
|
449
|
-
| **date_to** | **Date** |
|
|
448
|
+
| **date_from** | **Date** | Zero-padded YYYY-MM-DD, or a full ISO 8601 datetime. An empty value means no date filter; any other malformed value returns 400. | [optional] |
|
|
449
|
+
| **date_to** | **Date** | Zero-padded YYYY-MM-DD, or a full ISO 8601 datetime. An empty value means no date filter; any other malformed value returns 400. | [optional] |
|
|
450
450
|
| **include_hidden** | **Boolean** | | [optional][default to false] |
|
|
451
451
|
| **search** | **String** | Search posts by text content. | [optional] |
|
|
452
452
|
| **sort_by** | **String** | Sort order for results. | [optional][default to 'scheduled-desc'] |
|
|
@@ -368,8 +368,8 @@ module Zernio
|
|
|
368
368
|
# @option opts [String] :platform
|
|
369
369
|
# @option opts [String] :profile_id Filter posts to a specific profile (24-char hex ObjectId). Omit it, or send `all` or an empty value, to list posts across every profile.
|
|
370
370
|
# @option opts [String] :created_by Filter posts to those created by a specific team user (24-char hex ObjectId).
|
|
371
|
-
# @option opts [Date] :date_from
|
|
372
|
-
# @option opts [Date] :date_to
|
|
371
|
+
# @option opts [Date] :date_from Zero-padded YYYY-MM-DD, or a full ISO 8601 datetime. An empty value means no date filter; any other malformed value returns 400.
|
|
372
|
+
# @option opts [Date] :date_to Zero-padded YYYY-MM-DD, or a full ISO 8601 datetime. An empty value means no date filter; any other malformed value returns 400.
|
|
373
373
|
# @option opts [Boolean] :include_hidden (default to false)
|
|
374
374
|
# @option opts [String] :search Search posts by text content.
|
|
375
375
|
# @option opts [String] :sort_by Sort order for results. (default to 'scheduled-desc')
|
|
@@ -390,8 +390,8 @@ module Zernio
|
|
|
390
390
|
# @option opts [String] :platform
|
|
391
391
|
# @option opts [String] :profile_id Filter posts to a specific profile (24-char hex ObjectId). Omit it, or send `all` or an empty value, to list posts across every profile.
|
|
392
392
|
# @option opts [String] :created_by Filter posts to those created by a specific team user (24-char hex ObjectId).
|
|
393
|
-
# @option opts [Date] :date_from
|
|
394
|
-
# @option opts [Date] :date_to
|
|
393
|
+
# @option opts [Date] :date_from Zero-padded YYYY-MM-DD, or a full ISO 8601 datetime. An empty value means no date filter; any other malformed value returns 400.
|
|
394
|
+
# @option opts [Date] :date_to Zero-padded YYYY-MM-DD, or a full ISO 8601 datetime. An empty value means no date filter; any other malformed value returns 400.
|
|
395
395
|
# @option opts [Boolean] :include_hidden (default to false)
|
|
396
396
|
# @option opts [String] :search Search posts by text content.
|
|
397
397
|
# @option opts [String] :sort_by Sort order for results. (default to 'scheduled-desc')
|
data/lib/zernio-sdk/version.rb
CHANGED
data/openapi.yaml
CHANGED
|
@@ -12637,9 +12637,11 @@ paths:
|
|
|
12637
12637
|
- name: dateFrom
|
|
12638
12638
|
in: query
|
|
12639
12639
|
schema: { type: string, format: date }
|
|
12640
|
+
description: 'Zero-padded YYYY-MM-DD, or a full ISO 8601 datetime. An empty value means no date filter; any other malformed value returns 400.'
|
|
12640
12641
|
- name: dateTo
|
|
12641
12642
|
in: query
|
|
12642
12643
|
schema: { type: string, format: date }
|
|
12644
|
+
description: 'Zero-padded YYYY-MM-DD, or a full ISO 8601 datetime. An empty value means no date filter; any other malformed value returns 400.'
|
|
12643
12645
|
- name: includeHidden
|
|
12644
12646
|
in: query
|
|
12645
12647
|
schema: { type: boolean, default: false }
|
data/spec/api/posts_api_spec.rb
CHANGED
|
@@ -106,8 +106,8 @@ describe 'PostsApi' do
|
|
|
106
106
|
# @option opts [String] :platform
|
|
107
107
|
# @option opts [String] :profile_id Filter posts to a specific profile (24-char hex ObjectId). Omit it, or send `all` or an empty value, to list posts across every profile.
|
|
108
108
|
# @option opts [String] :created_by Filter posts to those created by a specific team user (24-char hex ObjectId).
|
|
109
|
-
# @option opts [Date] :date_from
|
|
110
|
-
# @option opts [Date] :date_to
|
|
109
|
+
# @option opts [Date] :date_from Zero-padded YYYY-MM-DD, or a full ISO 8601 datetime. An empty value means no date filter; any other malformed value returns 400.
|
|
110
|
+
# @option opts [Date] :date_to Zero-padded YYYY-MM-DD, or a full ISO 8601 datetime. An empty value means no date filter; any other malformed value returns 400.
|
|
111
111
|
# @option opts [Boolean] :include_hidden
|
|
112
112
|
# @option opts [String] :search Search posts by text content.
|
|
113
113
|
# @option opts [String] :sort_by Sort order for results.
|
|
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.669
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- OpenAPI-Generator
|
|
@@ -4982,7 +4982,7 @@ files:
|
|
|
4982
4982
|
- spec/models/you_tube_video_retention_response_retention_curve_inner_spec.rb
|
|
4983
4983
|
- spec/models/you_tube_video_retention_response_spec.rb
|
|
4984
4984
|
- spec/spec_helper.rb
|
|
4985
|
-
- zernio-sdk-0.0.
|
|
4985
|
+
- zernio-sdk-0.0.669.gem
|
|
4986
4986
|
- zernio-sdk.gemspec
|
|
4987
4987
|
homepage: https://openapi-generator.tech
|
|
4988
4988
|
licenses:
|
data/zernio-sdk-0.0.668.gem
DELETED
|
Binary file
|