late-sdk 0.0.666 → 0.0.668

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: 014b4a3e2c935be51cfda88e94f014f071111168f3b845c09c103f7835f5ea76
4
- data.tar.gz: 76508c5193b771242f841ea0ac05956629b8cc08f370f746b51f168563eb0dbe
3
+ metadata.gz: 53a2294250377bc3b3ea027214172dfb39273fdfb194918356bdb23be73c5f3d
4
+ data.tar.gz: 6bf5b6da23a97b377992ee1521828621fbce47c03ea0a2710c8e44178f285479
5
5
  SHA512:
6
- metadata.gz: 1fc60d43791fb1d3462f8c9162e545ccc09bcc01b518b8e6ce13ad576ac684d64a1b8c91d1653b23cea0309edde116e0839c7df60d30fbd1c27a4a9ad392f99d
7
- data.tar.gz: 951a320ad95e26aea5e908ba59936dcbe2f256fe02fe4c5f56a1f15fd1307090574c2ad0e6b3407e78e86d0bf790e762e6f756b08884b88eb053ea5c5e04ba7f
6
+ metadata.gz: 71f67d8f9096221c501f4441b3139c60090b982491ee3a3d8acbff324ae06cde3fb4acaa68bf94136de843de84da36ff64b2295bab085af0e37a47c2ddc97f61
7
+ data.tar.gz: 82e444517b1e505a4a209f4d55207991d018169f79217435095a379f8f26d89c9eb93dfdfefc62d6987bc79d5921a2a863416bc7bdebb47ba9d70e589a90d281
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
@@ -397,7 +397,7 @@ opts = {
397
397
  source: 'zernio', # String | Which collection to read. `zernio` (default) returns posts authored through Zernio. `external` returns posts synced from the platform (existing/historical posts that were published outside Zernio). Combine with `accountId` and paginate via `page`/`limit` to walk the full synced history (we keep up to the last ~12 months per account).
398
398
  status: 'draft', # String |
399
399
  platform: 'twitter', # String |
400
- profile_id: 'profile_id_example', # String |
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
402
  date_from: Date.parse('2013-10-20'), # Date |
403
403
  date_to: Date.parse('2013-10-20'), # Date |
@@ -443,7 +443,7 @@ end
443
443
  | **source** | **String** | Which collection to read. `zernio` (default) returns posts authored through Zernio. `external` returns posts synced from the platform (existing/historical posts that were published outside Zernio). Combine with `accountId` and paginate via `page`/`limit` to walk the full synced history (we keep up to the last ~12 months per account). | [optional][default to 'zernio'] |
444
444
  | **status** | **String** | | [optional] |
445
445
  | **platform** | **String** | | [optional] |
446
- | **profile_id** | **String** | | [optional] |
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
448
  | **date_from** | **Date** | | [optional] |
449
449
  | **date_to** | **Date** | | [optional] |
@@ -366,7 +366,7 @@ module Zernio
366
366
  # @option opts [String] :source Which collection to read. `zernio` (default) returns posts authored through Zernio. `external` returns posts synced from the platform (existing/historical posts that were published outside Zernio). Combine with `accountId` and paginate via `page`/`limit` to walk the full synced history (we keep up to the last ~12 months per account). (default to 'zernio')
367
367
  # @option opts [String] :status
368
368
  # @option opts [String] :platform
369
- # @option opts [String] :profile_id
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
371
  # @option opts [Date] :date_from
372
372
  # @option opts [Date] :date_to
@@ -388,7 +388,7 @@ module Zernio
388
388
  # @option opts [String] :source Which collection to read. `zernio` (default) returns posts authored through Zernio. `external` returns posts synced from the platform (existing/historical posts that were published outside Zernio). Combine with `accountId` and paginate via `page`/`limit` to walk the full synced history (we keep up to the last ~12 months per account). (default to 'zernio')
389
389
  # @option opts [String] :status
390
390
  # @option opts [String] :platform
391
- # @option opts [String] :profile_id
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
393
  # @option opts [Date] :date_from
394
394
  # @option opts [Date] :date_to
@@ -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.666'
14
+ VERSION = '0.0.668'
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
@@ -12629,6 +12629,7 @@ paths:
12629
12629
  - name: profileId
12630
12630
  in: query
12631
12631
  schema: { type: string }
12632
+ description: '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.'
12632
12633
  - name: createdBy
12633
12634
  in: query
12634
12635
  schema: { type: string }
@@ -104,7 +104,7 @@ describe 'PostsApi' do
104
104
  # @option opts [String] :source Which collection to read. `zernio` (default) returns posts authored through Zernio. `external` returns posts synced from the platform (existing/historical posts that were published outside Zernio). Combine with `accountId` and paginate via `page`/`limit` to walk the full synced history (we keep up to the last ~12 months per account).
105
105
  # @option opts [String] :status
106
106
  # @option opts [String] :platform
107
- # @option opts [String] :profile_id
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
109
  # @option opts [Date] :date_from
110
110
  # @option opts [Date] :date_to
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.666
4
+ version: 0.0.668
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.666.gem
4985
+ - zernio-sdk-0.0.668.gem
4986
4986
  - zernio-sdk.gemspec
4987
4987
  homepage: https://openapi-generator.tech
4988
4988
  licenses:
Binary file