late-sdk 0.0.667 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: df73684c64bf3ef7c498e38ad6452e3d10aedddaaebe96fca2e20b30d0df21a5
4
- data.tar.gz: f27847e0e719545df6815eae52fe598dddf6eee0ba37573f4e5295e21d18afe6
3
+ metadata.gz: 4e7d82c3147da351bc81a3be559f5fb8adcf37cb916acca3d4f7376d2367a0e4
4
+ data.tar.gz: fdd41085efb7ab450f052ad50a33764fc34d41f89a5bbac0d7c6a32d90100574
5
5
  SHA512:
6
- metadata.gz: 25662522e9e518142284a9d7dab0d1e19db9a6cf3fce83e660cafd36985b1b35ddea0415520c307129076d61812c81be231324049771b581728a3e5a80aac926
7
- data.tar.gz: 100bb2580dbb0ff43fea4c036567ca2b3b31ffbad7403f180012deb42dba574b9f3113b4bde7bbc44978674b2aed2e3cf3c8af4594440847084130acd5e89439
6
+ metadata.gz: e3da3afdd8d3a0be205d99f5371851f1152b42f20e3dd2828f2de707b604ca260fa7aca0a388982befb8a81c15845766df2fa02ea27c055064edd16f2f860ed1
7
+ data.tar.gz: 06301f6b722cc254d4b5448759b91e2e30e4ee9d49eb901d2a0fdd5b3b60d9e832d7571d169443b7d9343b1770c1961d20f218243ba75bf123148e698184fe2f
data/docs/MediaItem.md CHANGED
@@ -11,7 +11,7 @@
11
11
  | **filename** | **String** | | [optional] |
12
12
  | **size** | **Integer** | Optional file size in bytes | [optional] |
13
13
  | **mime_type** | **String** | Optional MIME type (e.g. image/jpeg, video/mp4) | [optional] |
14
- | **thumbnail** | **String** | Optional custom thumbnail/cover image URL for videos. Supported for Facebook video posts, Facebook Reels, and regular video uploads. Max 10MB, JPG/PNG recommended. | [optional] |
14
+ | **thumbnail** | **String** | Optional custom thumbnail/cover image URL for videos. Supported for Facebook video posts, Facebook Reels, regular video uploads, and LinkedIn video posts. Max 10MB, JPG/PNG recommended. | [optional] |
15
15
  | **instagram_thumbnail** | **String** | Custom cover image URL for Instagram Reels. Can also be set via platformSpecificData.instagramThumbnail or platformSpecificData.reelCover. Resolution order: this field > platformSpecificData.instagramThumbnail > platformSpecificData.reelCover > platformSpecificData.thumbnailUrl (legacy). | [optional] |
16
16
  | **tiktok_processed** | **Boolean** | Internal flag indicating the image was resized for TikTok | [optional] |
17
17
 
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** | | [optional] |
449
- | **date_to** | **Date** | | [optional] |
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')
@@ -34,7 +34,7 @@ module Zernio
34
34
  # Optional MIME type (e.g. image/jpeg, video/mp4)
35
35
  attr_accessor :mime_type
36
36
 
37
- # Optional custom thumbnail/cover image URL for videos. Supported for Facebook video posts, Facebook Reels, and regular video uploads. Max 10MB, JPG/PNG recommended.
37
+ # Optional custom thumbnail/cover image URL for videos. Supported for Facebook video posts, Facebook Reels, regular video uploads, and LinkedIn video posts. Max 10MB, JPG/PNG recommended.
38
38
  attr_accessor :thumbnail
39
39
 
40
40
  # Custom cover image URL for Instagram Reels. Can also be set via platformSpecificData.instagramThumbnail or platformSpecificData.reelCover. Resolution order: this field > platformSpecificData.instagramThumbnail > platformSpecificData.reelCover > platformSpecificData.thumbnailUrl (legacy).
@@ -11,5 +11,5 @@ Generator version: 7.19.0
11
11
  =end
12
12
 
13
13
  module Zernio
14
- VERSION = '0.0.667'
14
+ VERSION = '0.0.669'
15
15
  end
data/openapi.yaml CHANGED
@@ -4189,7 +4189,7 @@ components:
4189
4189
  thumbnail:
4190
4190
  type: string
4191
4191
  format: uri
4192
- description: Optional custom thumbnail/cover image URL for videos. Supported for Facebook video posts, Facebook Reels, and regular video uploads. Max 10MB, JPG/PNG recommended.
4192
+ description: 'Optional custom thumbnail/cover image URL for videos. Supported for Facebook video posts, Facebook Reels, regular video uploads, and LinkedIn video posts. Max 10MB, JPG/PNG recommended.'
4193
4193
  instagramThumbnail:
4194
4194
  type: string
4195
4195
  format: uri
@@ -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 }
@@ -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.667
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.667.gem
4985
+ - zernio-sdk-0.0.669.gem
4986
4986
  - zernio-sdk.gemspec
4987
4987
  homepage: https://openapi-generator.tech
4988
4988
  licenses:
Binary file