late-sdk 0.0.882 → 0.0.884

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: 0a292c0ef944680706e0e35207943db53bd11f5806c1e1900826bf4f5b034794
4
- data.tar.gz: d4855ee9fcca10d0f670260fceb169062920422bb1757558d14c82590461b061
3
+ metadata.gz: 1ec16d88003f64dd18227cd54a7ff6451c113e238c3dd0aa8d7e634fe29c5c93
4
+ data.tar.gz: 30d21b6a6fd7c4537d1b9bdace9d24c998b1a39c9ef97084e0f1c3a7fd07d936
5
5
  SHA512:
6
- metadata.gz: eab4bedf83cc3065bc7b2a12b8239f3cabdce4eec99c2f4d5dd7a8ea160d6d653191f657ef6ba4c4a83ac697c4a3e19c5c06922b819d6aef3dda426747f1173d
7
- data.tar.gz: e7e5279d69f24923439c6af29f9969d6ded00e47ef3c5682844216390dc3bccbb162aac1bbafefbad648d7309b962e0b5c94fff35021850622304b6c68a73710
6
+ metadata.gz: 83671378faa82c958041befddf6960885399604adab7ca4ec9b2a53f174b855b45eed6c3548fcd1e7ea2dc47054393c2dffebf831670ebb7564ef88cd7950b56
7
+ data.tar.gz: ab62b3f99a93ef4c220482a70ebd43063fae8137f370e74f3ac4c256f7a5d53e3ec16e99cfac0cfc052acc252a970ac7fa5096ecc48555e0962ce875ee6d77e7
@@ -7,13 +7,13 @@
7
7
  | **subreddit** | **String** | Target subreddit name (without \"r/\" prefix). Overrides the default. Use GET /v1/accounts/{id}/reddit-subreddits to list options. | [optional] |
8
8
  | **title** | **String** | Post title. Defaults to the first line of content, truncated to 300 characters. | [optional] |
9
9
  | **url** | **String** | URL for link posts. If provided (and forceSelf is not true), creates a link post instead of a text post. | [optional] |
10
- | **force_self** | **Boolean** | When true, creates a text/self post even when a URL or media is provided. | [optional] |
10
+ | **force_self** | **Boolean** | When true, creates a text-only self post and skips native media uploads, even when media is provided. For native video with body text, omit forceSelf and supply content plus a video mediaItem. | [optional] |
11
11
  | **flair_id** | **String** | Flair ID for the post. Required by some subreddits. Use GET /v1/accounts/{id}/reddit-flairs?subreddit=name to list flairs. | [optional] |
12
12
  | **flair_text** | **String** | Custom flair text, for subreddits that allow free-text flair. Ignored when flairId is provided (flairId wins). | [optional] |
13
13
  | **nsfw** | **Boolean** | Mark the post as NSFW (Not Safe For Work / over 18). | [optional][default to false] |
14
14
  | **spoiler** | **Boolean** | Mark the post as a spoiler. The subreddit must have spoiler tagging enabled for this to take effect. | [optional][default to false] |
15
15
  | **sendreplies** | **Boolean** | Whether to receive inbox replies for comments on this post. Set to false to opt out. | [optional][default to true] |
16
- | **native_video** | **Boolean** | Controls Reddit's native video upload flow. When true (default for video mediaItems), the video is uploaded to Reddit's CDN and submitted with kind=video so it renders as an embedded Reddit video player. Reddit transcodes server-side (1080p/30fps cap). Set to false to fall back to a legacy link post. If the subreddit blocks video posts, the upload falls back to a link post automatically. | [optional][default to true] |
16
+ | **native_video** | **Boolean** | Controls Reddit's native video upload flow. When true (default for video mediaItems), the video is uploaded to Reddit's CDN and submitted with kind=video so it renders as an embedded Reddit video player. Reddit transcodes server-side (1080p/30fps cap). Set to false to explicitly publish an external link instead. The post content (or Reddit customContent override) is included as Markdown body text on the native video. When body text is present, upload failures or subreddit video restrictions fail the post without falling back to a link. Automatic link fallback applies only without body text. | [optional][default to true] |
17
17
  | **videogif** | **Boolean** | When true (and nativeVideo is active), submits the video as a silent videogif (kind=videogif). Use for short looping clips without audio. | [optional] |
18
18
  | **video_poster_url** | **String** | Optional poster/thumbnail image URL for native video posts. If omitted, the first frame of the video is extracted and used automatically. | [optional] |
19
19
 
@@ -25,7 +25,7 @@ module Zernio
25
25
  # URL for link posts. If provided (and forceSelf is not true), creates a link post instead of a text post.
26
26
  attr_accessor :url
27
27
 
28
- # When true, creates a text/self post even when a URL or media is provided.
28
+ # When true, creates a text-only self post and skips native media uploads, even when media is provided. For native video with body text, omit forceSelf and supply content plus a video mediaItem.
29
29
  attr_accessor :force_self
30
30
 
31
31
  # Flair ID for the post. Required by some subreddits. Use GET /v1/accounts/{id}/reddit-flairs?subreddit=name to list flairs.
@@ -43,7 +43,7 @@ module Zernio
43
43
  # Whether to receive inbox replies for comments on this post. Set to false to opt out.
44
44
  attr_accessor :sendreplies
45
45
 
46
- # Controls Reddit's native video upload flow. When true (default for video mediaItems), the video is uploaded to Reddit's CDN and submitted with kind=video so it renders as an embedded Reddit video player. Reddit transcodes server-side (1080p/30fps cap). Set to false to fall back to a legacy link post. If the subreddit blocks video posts, the upload falls back to a link post automatically.
46
+ # Controls Reddit's native video upload flow. When true (default for video mediaItems), the video is uploaded to Reddit's CDN and submitted with kind=video so it renders as an embedded Reddit video player. Reddit transcodes server-side (1080p/30fps cap). Set to false to explicitly publish an external link instead. The post content (or Reddit customContent override) is included as Markdown body text on the native video. When body text is present, upload failures or subreddit video restrictions fail the post without falling back to a link. Automatic link fallback applies only without body text.
47
47
  attr_accessor :native_video
48
48
 
49
49
  # When true (and nativeVideo is active), submits the video as a silent videogif (kind=videogif). Use for short looping clips without audio.
@@ -11,5 +11,5 @@ Generator version: 7.19.0
11
11
  =end
12
12
 
13
13
  module Zernio
14
- VERSION = '0.0.882'
14
+ VERSION = '0.0.884'
15
15
  end
data/openapi.yaml CHANGED
@@ -6737,7 +6737,7 @@ components:
6737
6737
  description: URL for link posts. If provided (and forceSelf is not true), creates a link post instead of a text post.
6738
6738
  forceSelf:
6739
6739
  type: boolean
6740
- description: When true, creates a text/self post even when a URL or media is provided.
6740
+ description: When true, creates a text-only self post and skips native media uploads, even when media is provided. For native video with body text, omit forceSelf and supply content plus a video mediaItem.
6741
6741
  flairId:
6742
6742
  type: string
6743
6743
  description: Flair ID for the post. Required by some subreddits. Use GET /v1/accounts/{id}/reddit-flairs?subreddit=name to list flairs.
@@ -6763,8 +6763,10 @@ components:
6763
6763
  Controls Reddit's native video upload flow. When true (default for video mediaItems),
6764
6764
  the video is uploaded to Reddit's CDN and submitted with kind=video so it renders as
6765
6765
  an embedded Reddit video player. Reddit transcodes server-side (1080p/30fps cap). Set
6766
- to false to fall back to a legacy link post. If the subreddit blocks video posts, the
6767
- upload falls back to a link post automatically.
6766
+ to false to explicitly publish an external link instead. The post content (or Reddit
6767
+ customContent override) is included as Markdown body text on the native video. When
6768
+ body text is present, upload failures or subreddit video restrictions fail the post
6769
+ without falling back to a link. Automatic link fallback applies only without body text.
6768
6770
  default: true
6769
6771
  videogif:
6770
6772
  type: boolean
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.882
4
+ version: 0.0.884
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
@@ -6055,7 +6055,7 @@ files:
6055
6055
  - spec/models/you_tube_video_retention_response_retention_curve_inner_spec.rb
6056
6056
  - spec/models/you_tube_video_retention_response_spec.rb
6057
6057
  - spec/spec_helper.rb
6058
- - zernio-sdk-0.0.882.gem
6058
+ - zernio-sdk-0.0.884.gem
6059
6059
  - zernio-sdk.gemspec
6060
6060
  homepage: https://openapi-generator.tech
6061
6061
  licenses:
Binary file