late-sdk 0.0.54 → 0.0.56
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/CreatePostRequest.md +1 -1
- data/lib/late-sdk/models/create_post_request.rb +1 -0
- data/lib/late-sdk/version.rb +1 -1
- data/openapi.yaml +10 -5
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e1e3bf60eb8d86f8c60a63b6be3c9ad6830de0c21b6a43c18cc8e25a2845c325
|
|
4
|
+
data.tar.gz: d345501b797c362577eaa2712b14a04659f5e133a44f3d8bc1b0484c077a8953
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fdb6fa228adcf8f6f05af912f24a5a54132c5c14f3a751e61cf6f7dc41437e0648b72583ba202e7b583c384ee61c187e4b96b6990d239b1029da086691e0e487
|
|
7
|
+
data.tar.gz: 0fd704dd6f4e320b0f42fe49c137153a340617880302a8c6b332b0d75f7f9f4d4cb3494ee8da8bf29d471369b8891e7142f9f3f1588316dec7d01334c28f7630
|
data/docs/CreatePostRequest.md
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
| **platforms** | [**Array<CreatePostRequestPlatformsInner>**](CreatePostRequestPlatformsInner.md) | | [optional] |
|
|
11
11
|
| **scheduled_for** | **Time** | | [optional] |
|
|
12
12
|
| **publish_now** | **Boolean** | | [optional][default to false] |
|
|
13
|
-
| **is_draft** | **Boolean** |
|
|
13
|
+
| **is_draft** | **Boolean** | When true, saves the post as a draft. When none of scheduledFor, publishNow, or queuedFromProfile are provided, the post defaults to draft automatically. | [optional][default to false] |
|
|
14
14
|
| **timezone** | **String** | | [optional][default to 'UTC'] |
|
|
15
15
|
| **tags** | **Array<String>** | Tags/keywords. YouTube constraints: each tag max 100 chars, combined max 500 chars, duplicates auto-removed. | [optional] |
|
|
16
16
|
| **hashtags** | **Array<String>** | | [optional] |
|
|
@@ -28,6 +28,7 @@ module Late
|
|
|
28
28
|
|
|
29
29
|
attr_accessor :publish_now
|
|
30
30
|
|
|
31
|
+
# When true, saves the post as a draft. When none of scheduledFor, publishNow, or queuedFromProfile are provided, the post defaults to draft automatically.
|
|
31
32
|
attr_accessor :is_draft
|
|
32
33
|
|
|
33
34
|
attr_accessor :timezone
|
data/lib/late-sdk/version.rb
CHANGED
data/openapi.yaml
CHANGED
|
@@ -4254,7 +4254,10 @@ paths:
|
|
|
4254
4254
|
- $ref: '#/components/schemas/BlueskyPlatformData'
|
|
4255
4255
|
scheduledFor: { type: string, format: date-time }
|
|
4256
4256
|
publishNow: { type: boolean, default: false }
|
|
4257
|
-
isDraft:
|
|
4257
|
+
isDraft:
|
|
4258
|
+
type: boolean
|
|
4259
|
+
default: false
|
|
4260
|
+
description: When true, saves the post as a draft. When none of scheduledFor, publishNow, or queuedFromProfile are provided, the post defaults to draft automatically.
|
|
4258
4261
|
timezone: { type: string, default: UTC }
|
|
4259
4262
|
tags:
|
|
4260
4263
|
type: array
|
|
@@ -6197,12 +6200,13 @@ paths:
|
|
|
6197
6200
|
example:
|
|
6198
6201
|
error: "This endpoint is only available for Google Business Profile accounts"
|
|
6199
6202
|
'401':
|
|
6200
|
-
description: Unauthorized or token
|
|
6203
|
+
description: Unauthorized or token invalid
|
|
6201
6204
|
content:
|
|
6202
6205
|
application/json:
|
|
6203
6206
|
schema: { $ref: '#/components/schemas/ErrorResponse' }
|
|
6204
6207
|
example:
|
|
6205
|
-
error: "Access token
|
|
6208
|
+
error: "Access token invalid. Please reconnect your Google Business Profile account."
|
|
6209
|
+
code: "token_invalid"
|
|
6206
6210
|
'403':
|
|
6207
6211
|
description: Permission denied for this location
|
|
6208
6212
|
content:
|
|
@@ -6281,12 +6285,13 @@ paths:
|
|
|
6281
6285
|
example:
|
|
6282
6286
|
error: "This endpoint is only available for Google Business Profile accounts"
|
|
6283
6287
|
'401':
|
|
6284
|
-
description: Unauthorized or token
|
|
6288
|
+
description: Unauthorized or token invalid
|
|
6285
6289
|
content:
|
|
6286
6290
|
application/json:
|
|
6287
6291
|
schema: { $ref: '#/components/schemas/ErrorResponse' }
|
|
6288
6292
|
example:
|
|
6289
|
-
error: "Access token
|
|
6293
|
+
error: "Access token invalid. Please reconnect your Google Business Profile account."
|
|
6294
|
+
code: "token_invalid"
|
|
6290
6295
|
'403':
|
|
6291
6296
|
description: Permission denied for this location
|
|
6292
6297
|
content:
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
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.56
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- OpenAPI-Generator
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-03-
|
|
11
|
+
date: 2026-03-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|