late-sdk 0.0.928 → 0.0.929
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/TikTokPlatformData.md +3 -3
- data/lib/zernio-sdk/models/tik_tok_platform_data.rb +3 -3
- data/lib/zernio-sdk/version.rb +1 -1
- data/openapi.yaml +3 -3
- data/zernio-sdk-0.0.929.gem +0 -0
- metadata +2 -2
- data/zernio-sdk-0.0.928.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: 445f8476137cbd4609f4efa6359eaf95e03c2d1f09698c904930f1f48831dc68
|
|
4
|
+
data.tar.gz: 3ea070d2aae34cbc87110ce182db770464358194d3e8ac3d561786900a41b170
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3a3c59f41a1263bbbea77571b73d962bf24ab4c2c18163164f3cfc8fd63f88e316d6eed720cc92a1254dad63dc3d385c1dde982d4da9f135c5fbb80ff4a349c3
|
|
7
|
+
data.tar.gz: ecb1360175edd73dc020c92df7f3346c9e778074cf1070da8c1bfd2b739eec5a60c48f712b74388d381a90378aded929338812314d04855167253902cfd69d95
|
data/docs/TikTokPlatformData.md
CHANGED
|
@@ -16,11 +16,11 @@
|
|
|
16
16
|
| **express_consent_given** | **Boolean** | User has given express consent for posting | [optional] |
|
|
17
17
|
| **media_type** | **String** | Optional override. Defaults based on provided media items. | [optional] |
|
|
18
18
|
| **video_cover_timestamp_ms** | **Integer** | Optional for video posts. Timestamp in milliseconds to select which frame to use as thumbnail (defaults to 1000ms/1 second). Ignored when videoCoverImageUrl is provided. | [optional] |
|
|
19
|
-
| **video_cover_image_url** | **String** | Optional for video posts. URL of a custom thumbnail image (JPG, PNG, or WebP, max 20MB). The image is stitched as a single frame at the start of the video and used as the cover. Overrides videoCoverTimestampMs when provided. | [optional] |
|
|
19
|
+
| **video_cover_image_url** | **String** | Optional for video posts. URL of a custom thumbnail image (JPG, PNG, or WebP, max 20MB). The image is stitched as a single frame at the start of the video and used as the cover. Accounts connected through the TikTok for Business app instead pass the URL to TikTok as the cover directly, with no stitching, and the URL must resolve on a domain we have verified with TikTok. Overrides videoCoverTimestampMs when provided. | [optional] |
|
|
20
20
|
| **photo_cover_index** | **Integer** | Optional for photo carousels. Index of image to use as cover, 0-based (defaults to 0/first image). | [optional] |
|
|
21
21
|
| **auto_add_music** | **Boolean** | When true, TikTok may add recommended music (photos only) | [optional] |
|
|
22
|
-
| **video_made_with_ai** | **Boolean** | Set true to disclose AI-generated content | [optional] |
|
|
23
|
-
| **description** | **String** | Optional long-form
|
|
22
|
+
| **video_made_with_ai** | **Boolean** | Set true to disclose AI-generated content. Accounts connected through the TikTok for Business app carry the disclosure on video posts only: the business photo endpoint has no AI disclosure field, so true on a direct photo post is rejected at creation rather than published undisclosed. Send draft true to publish such a photo post and set the disclosure in the TikTok app. | [optional] |
|
|
23
|
+
| **description** | **String** | Optional long-form caption for photo posts (max 4000 chars). Recommended when content exceeds 90 chars, as photo titles are auto-truncated. Falls back to the post content when omitted. | [optional] |
|
|
24
24
|
|
|
25
25
|
## Example
|
|
26
26
|
|
|
@@ -52,7 +52,7 @@ module Zernio
|
|
|
52
52
|
# Optional for video posts. Timestamp in milliseconds to select which frame to use as thumbnail (defaults to 1000ms/1 second). Ignored when videoCoverImageUrl is provided.
|
|
53
53
|
attr_accessor :video_cover_timestamp_ms
|
|
54
54
|
|
|
55
|
-
# Optional for video posts. URL of a custom thumbnail image (JPG, PNG, or WebP, max 20MB). The image is stitched as a single frame at the start of the video and used as the cover. Overrides videoCoverTimestampMs when provided.
|
|
55
|
+
# Optional for video posts. URL of a custom thumbnail image (JPG, PNG, or WebP, max 20MB). The image is stitched as a single frame at the start of the video and used as the cover. Accounts connected through the TikTok for Business app instead pass the URL to TikTok as the cover directly, with no stitching, and the URL must resolve on a domain we have verified with TikTok. Overrides videoCoverTimestampMs when provided.
|
|
56
56
|
attr_accessor :video_cover_image_url
|
|
57
57
|
|
|
58
58
|
# Optional for photo carousels. Index of image to use as cover, 0-based (defaults to 0/first image).
|
|
@@ -61,10 +61,10 @@ module Zernio
|
|
|
61
61
|
# When true, TikTok may add recommended music (photos only)
|
|
62
62
|
attr_accessor :auto_add_music
|
|
63
63
|
|
|
64
|
-
# Set true to disclose AI-generated content
|
|
64
|
+
# Set true to disclose AI-generated content. Accounts connected through the TikTok for Business app carry the disclosure on video posts only: the business photo endpoint has no AI disclosure field, so true on a direct photo post is rejected at creation rather than published undisclosed. Send draft true to publish such a photo post and set the disclosure in the TikTok app.
|
|
65
65
|
attr_accessor :video_made_with_ai
|
|
66
66
|
|
|
67
|
-
# Optional long-form
|
|
67
|
+
# Optional long-form caption for photo posts (max 4000 chars). Recommended when content exceeds 90 chars, as photo titles are auto-truncated. Falls back to the post content when omitted.
|
|
68
68
|
attr_accessor :description
|
|
69
69
|
|
|
70
70
|
class EnumAttributeValidator
|
data/lib/zernio-sdk/version.rb
CHANGED
data/openapi.yaml
CHANGED
|
@@ -6813,7 +6813,7 @@ components:
|
|
|
6813
6813
|
videoCoverImageUrl:
|
|
6814
6814
|
type: string
|
|
6815
6815
|
format: uri
|
|
6816
|
-
description: Optional for video posts. URL of a custom thumbnail image (JPG, PNG, or WebP, max 20MB). The image is stitched as a single frame at the start of the video and used as the cover. Overrides videoCoverTimestampMs when provided.
|
|
6816
|
+
description: 'Optional for video posts. URL of a custom thumbnail image (JPG, PNG, or WebP, max 20MB). The image is stitched as a single frame at the start of the video and used as the cover. Accounts connected through the TikTok for Business app instead pass the URL to TikTok as the cover directly, with no stitching, and the URL must resolve on a domain we have verified with TikTok. Overrides videoCoverTimestampMs when provided.'
|
|
6817
6817
|
photoCoverIndex:
|
|
6818
6818
|
type: integer
|
|
6819
6819
|
description: Optional for photo carousels. Index of image to use as cover, 0-based (defaults to 0/first image).
|
|
@@ -6823,11 +6823,11 @@ components:
|
|
|
6823
6823
|
description: When true, TikTok may add recommended music (photos only)
|
|
6824
6824
|
videoMadeWithAi:
|
|
6825
6825
|
type: boolean
|
|
6826
|
-
description: Set true to disclose AI-generated content
|
|
6826
|
+
description: 'Set true to disclose AI-generated content. Accounts connected through the TikTok for Business app carry the disclosure on video posts only: the business photo endpoint has no AI disclosure field, so true on a direct photo post is rejected at creation rather than published undisclosed. Send draft true to publish such a photo post and set the disclosure in the TikTok app.'
|
|
6827
6827
|
description:
|
|
6828
6828
|
type: string
|
|
6829
6829
|
maxLength: 4000
|
|
6830
|
-
description: Optional long-form
|
|
6830
|
+
description: 'Optional long-form caption for photo posts (max 4000 chars). Recommended when content exceeds 90 chars, as photo titles are auto-truncated. Falls back to the post content when omitted.'
|
|
6831
6831
|
|
|
6832
6832
|
TelegramPlatformData:
|
|
6833
6833
|
type: object
|
|
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.929
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- OpenAPI-Generator
|
|
@@ -6367,7 +6367,7 @@ files:
|
|
|
6367
6367
|
- spec/models/you_tube_video_retention_response_retention_curve_inner_spec.rb
|
|
6368
6368
|
- spec/models/you_tube_video_retention_response_spec.rb
|
|
6369
6369
|
- spec/spec_helper.rb
|
|
6370
|
-
- zernio-sdk-0.0.
|
|
6370
|
+
- zernio-sdk-0.0.929.gem
|
|
6371
6371
|
- zernio-sdk.gemspec
|
|
6372
6372
|
homepage: https://openapi-generator.tech
|
|
6373
6373
|
licenses:
|
data/zernio-sdk-0.0.928.gem
DELETED
|
Binary file
|