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 +4 -4
- data/docs/MediaItem.md +1 -1
- data/docs/PostsApi.md +2 -2
- data/lib/zernio-sdk/api/posts_api.rb +2 -2
- data/lib/zernio-sdk/models/media_item.rb +1 -1
- data/lib/zernio-sdk/version.rb +1 -1
- data/openapi.yaml +2 -1
- data/spec/api/posts_api_spec.rb +1 -1
- data/zernio-sdk-0.0.668.gem +0 -0
- metadata +2 -2
- data/zernio-sdk-0.0.666.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: 53a2294250377bc3b3ea027214172dfb39273fdfb194918356bdb23be73c5f3d
|
|
4
|
+
data.tar.gz: 6bf5b6da23a97b377992ee1521828621fbce47c03ea0a2710c8e44178f285479
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
|
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** |
|
|
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
|
|
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).
|
data/lib/zernio-sdk/version.rb
CHANGED
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
|
|
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 }
|
data/spec/api/posts_api_spec.rb
CHANGED
|
@@ -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.
|
|
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.
|
|
4985
|
+
- zernio-sdk-0.0.668.gem
|
|
4986
4986
|
- zernio-sdk.gemspec
|
|
4987
4987
|
homepage: https://openapi-generator.tech
|
|
4988
4988
|
licenses:
|
data/zernio-sdk-0.0.666.gem
DELETED
|
Binary file
|