late-sdk 0.0.90 → 0.0.92
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/README.md +6 -1
- data/docs/ConnectApi.md +146 -4
- data/docs/GetYoutubePlaylists200Response.md +20 -0
- data/docs/GetYoutubePlaylists200ResponsePlaylistsInner.md +28 -0
- data/docs/InstagramPlatformData.md +6 -2
- data/docs/MediaItem.md +1 -1
- data/docs/MessagesApi.md +16 -16
- data/docs/{UpdateRedditSubreddits200Response.md → UpdateYoutubeDefaultPlaylist200Response.md} +2 -2
- data/docs/UpdateYoutubeDefaultPlaylistRequest.md +20 -0
- data/docs/WebhooksApi.md +4 -4
- data/docs/YouTubePlatformData.md +3 -1
- data/lib/late-sdk/api/connect_api.rb +140 -3
- data/lib/late-sdk/api/messages_api.rb +12 -12
- data/lib/late-sdk/api/webhooks_api.rb +3 -3
- data/lib/late-sdk/models/get_youtube_playlists200_response.rb +158 -0
- data/lib/late-sdk/models/get_youtube_playlists200_response_playlists_inner.rb +226 -0
- data/lib/late-sdk/models/instagram_platform_data.rb +25 -5
- data/lib/late-sdk/models/media_item.rb +1 -1
- data/lib/late-sdk/models/{update_reddit_subreddits200_response.rb → update_youtube_default_playlist200_response.rb} +3 -3
- data/lib/late-sdk/models/update_youtube_default_playlist_request.rb +173 -0
- data/lib/late-sdk/models/you_tube_platform_data.rb +14 -4
- data/lib/late-sdk/version.rb +1 -1
- data/lib/late-sdk.rb +4 -1
- data/openapi.yaml +102 -2
- data/spec/api/connect_api_spec.rb +26 -1
- data/spec/api/messages_api_spec.rb +4 -4
- data/spec/api/webhooks_api_spec.rb +1 -1
- data/spec/models/get_youtube_playlists200_response_playlists_inner_spec.rb +70 -0
- data/spec/models/get_youtube_playlists200_response_spec.rb +42 -0
- data/spec/models/instagram_platform_data_spec.rb +12 -0
- data/spec/models/{update_reddit_subreddits200_response_spec.rb → update_youtube_default_playlist200_response_spec.rb} +6 -6
- data/spec/models/update_youtube_default_playlist_request_spec.rb +42 -0
- data/spec/models/you_tube_platform_data_spec.rb +6 -0
- data/zernio-sdk-0.0.92.gem +0 -0
- metadata +19 -7
- data/zernio-sdk-0.0.90.gem +0 -0
data/openapi.yaml
CHANGED
|
@@ -1201,7 +1201,7 @@ components:
|
|
|
1201
1201
|
instagramThumbnail:
|
|
1202
1202
|
type: string
|
|
1203
1203
|
format: uri
|
|
1204
|
-
description:
|
|
1204
|
+
description: "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)."
|
|
1205
1205
|
tiktokProcessed:
|
|
1206
1206
|
type: boolean
|
|
1207
1207
|
description: Internal flag indicating the image was resized for TikTok
|
|
@@ -1550,8 +1550,16 @@ components:
|
|
|
1550
1550
|
thumbOffset:
|
|
1551
1551
|
type: integer
|
|
1552
1552
|
minimum: 0
|
|
1553
|
-
description: Millisecond offset from video start for the Reel
|
|
1553
|
+
description: Millisecond offset from video start for the Reel cover frame. Ignored when instagramThumbnail or reelCover is provided. Defaults to 0.
|
|
1554
1554
|
example: 5000
|
|
1555
|
+
instagramThumbnail:
|
|
1556
|
+
type: string
|
|
1557
|
+
format: uri
|
|
1558
|
+
description: Custom cover image URL for Instagram Reels (JPG or PNG, publicly accessible). Overrides thumbOffset when provided. Also accepted as reelCover (alias).
|
|
1559
|
+
reelCover:
|
|
1560
|
+
type: string
|
|
1561
|
+
format: uri
|
|
1562
|
+
description: Alias for instagramThumbnail. If both are provided, instagramThumbnail takes priority.
|
|
1555
1563
|
description: Feed aspect ratio 0.8-1.91, carousels up to 10 items, stories require media (no captions). User tag coordinates 0.0-1.0 from top-left. Images over 8 MB and videos over platform limits are auto-compressed.
|
|
1556
1564
|
|
|
1557
1565
|
LinkedInPlatformData:
|
|
@@ -1621,6 +1629,9 @@ components:
|
|
|
1621
1629
|
type: string
|
|
1622
1630
|
default: '22'
|
|
1623
1631
|
description: "YouTube video category ID. Defaults to 22 (People & Blogs). Common: 1 (Film), 2 (Autos), 10 (Music), 15 (Pets), 17 (Sports), 20 (Gaming), 23 (Comedy), 24 (Entertainment), 25 (News), 26 (Howto), 27 (Education), 28 (Science & Tech)."
|
|
1632
|
+
playlistId:
|
|
1633
|
+
type: string
|
|
1634
|
+
description: "Optional YouTube playlist ID to add the video to after upload (e.g. 'PLxxxxxxxxxxxxx'). Use GET /v1/accounts/{id}/youtube-playlists to list available playlists. Works for both immediate and scheduled uploads. Quota cost: 50 YouTube API units per call."
|
|
1624
1635
|
description: Videos under 3 min auto-detected as Shorts. Custom thumbnails for regular videos only. Scheduled videos are uploaded immediately with the specified visibility.
|
|
1625
1636
|
|
|
1626
1637
|
GoogleBusinessPlatformData:
|
|
@@ -9889,6 +9900,95 @@ paths:
|
|
|
9889
9900
|
'401': { $ref: '#/components/responses/Unauthorized' }
|
|
9890
9901
|
'404': { description: Account not found }
|
|
9891
9902
|
|
|
9903
|
+
/v1/accounts/{accountId}/youtube-playlists:
|
|
9904
|
+
get:
|
|
9905
|
+
operationId: getYoutubePlaylists
|
|
9906
|
+
tags: [Connect]
|
|
9907
|
+
summary: List YouTube playlists
|
|
9908
|
+
description: Returns the playlists available for a connected YouTube account. Use this to get a playlist ID when creating a YouTube post with the `playlistId` field.
|
|
9909
|
+
parameters:
|
|
9910
|
+
- name: accountId
|
|
9911
|
+
in: path
|
|
9912
|
+
required: true
|
|
9913
|
+
schema: { type: string }
|
|
9914
|
+
responses:
|
|
9915
|
+
'200':
|
|
9916
|
+
description: Playlists list
|
|
9917
|
+
content:
|
|
9918
|
+
application/json:
|
|
9919
|
+
schema:
|
|
9920
|
+
type: object
|
|
9921
|
+
properties:
|
|
9922
|
+
playlists:
|
|
9923
|
+
type: array
|
|
9924
|
+
items:
|
|
9925
|
+
type: object
|
|
9926
|
+
properties:
|
|
9927
|
+
id: { type: string }
|
|
9928
|
+
title: { type: string }
|
|
9929
|
+
description: { type: string }
|
|
9930
|
+
privacy: { type: string, enum: [public, private, unlisted] }
|
|
9931
|
+
itemCount: { type: integer }
|
|
9932
|
+
thumbnailUrl: { type: string }
|
|
9933
|
+
defaultPlaylistId:
|
|
9934
|
+
type: string
|
|
9935
|
+
nullable: true
|
|
9936
|
+
example:
|
|
9937
|
+
playlists:
|
|
9938
|
+
- id: "PLxxxxxxxxxxxxx"
|
|
9939
|
+
title: "Tutorials"
|
|
9940
|
+
description: "Step-by-step video tutorials"
|
|
9941
|
+
privacy: "public"
|
|
9942
|
+
itemCount: 24
|
|
9943
|
+
thumbnailUrl: "https://i.ytimg.com/vi/xxx/mqdefault.jpg"
|
|
9944
|
+
- id: "PLyyyyyyyyyyyyy"
|
|
9945
|
+
title: "Vlogs"
|
|
9946
|
+
description: "Weekly vlogs"
|
|
9947
|
+
privacy: "public"
|
|
9948
|
+
itemCount: 52
|
|
9949
|
+
thumbnailUrl: "https://i.ytimg.com/vi/yyy/mqdefault.jpg"
|
|
9950
|
+
defaultPlaylistId: null
|
|
9951
|
+
'400': { description: Not a YouTube account }
|
|
9952
|
+
'401': { $ref: '#/components/responses/Unauthorized' }
|
|
9953
|
+
'404': { description: Account not found }
|
|
9954
|
+
put:
|
|
9955
|
+
operationId: updateYoutubeDefaultPlaylist
|
|
9956
|
+
tags: [Connect]
|
|
9957
|
+
summary: Set default YouTube playlist
|
|
9958
|
+
description: Sets the default playlist used when publishing videos for this account. When a post does not specify a `playlistId`, the default playlist is not automatically used (it is stored for client-side convenience).
|
|
9959
|
+
parameters:
|
|
9960
|
+
- name: accountId
|
|
9961
|
+
in: path
|
|
9962
|
+
required: true
|
|
9963
|
+
schema: { type: string }
|
|
9964
|
+
requestBody:
|
|
9965
|
+
required: true
|
|
9966
|
+
content:
|
|
9967
|
+
application/json:
|
|
9968
|
+
schema:
|
|
9969
|
+
type: object
|
|
9970
|
+
required: [defaultPlaylistId]
|
|
9971
|
+
properties:
|
|
9972
|
+
defaultPlaylistId: { type: string }
|
|
9973
|
+
defaultPlaylistName: { type: string }
|
|
9974
|
+
example:
|
|
9975
|
+
defaultPlaylistId: "PLxxxxxxxxxxxxx"
|
|
9976
|
+
defaultPlaylistName: "Tutorials"
|
|
9977
|
+
responses:
|
|
9978
|
+
'200':
|
|
9979
|
+
description: Default playlist set
|
|
9980
|
+
content:
|
|
9981
|
+
application/json:
|
|
9982
|
+
schema:
|
|
9983
|
+
type: object
|
|
9984
|
+
properties:
|
|
9985
|
+
success: { type: boolean }
|
|
9986
|
+
example:
|
|
9987
|
+
success: true
|
|
9988
|
+
'400': { description: Invalid request }
|
|
9989
|
+
'401': { $ref: '#/components/responses/Unauthorized' }
|
|
9990
|
+
'404': { description: Account not found }
|
|
9991
|
+
|
|
9892
9992
|
/v1/accounts/{accountId}/gmb-locations:
|
|
9893
9993
|
get:
|
|
9894
9994
|
operationId: getGmbLocations
|
|
@@ -180,6 +180,18 @@ describe 'ConnectApi' do
|
|
|
180
180
|
end
|
|
181
181
|
end
|
|
182
182
|
|
|
183
|
+
# unit tests for get_youtube_playlists
|
|
184
|
+
# List YouTube playlists
|
|
185
|
+
# Returns the playlists available for a connected YouTube account. Use this to get a playlist ID when creating a YouTube post with the `playlistId` field.
|
|
186
|
+
# @param account_id
|
|
187
|
+
# @param [Hash] opts the optional parameters
|
|
188
|
+
# @return [GetYoutubePlaylists200Response]
|
|
189
|
+
describe 'get_youtube_playlists test' do
|
|
190
|
+
it 'should work' do
|
|
191
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
192
|
+
end
|
|
193
|
+
end
|
|
194
|
+
|
|
183
195
|
# unit tests for handle_o_auth_callback
|
|
184
196
|
# Complete OAuth callback
|
|
185
197
|
# Exchange the OAuth authorization code for tokens and connect the account to the specified profile.
|
|
@@ -391,11 +403,24 @@ describe 'ConnectApi' do
|
|
|
391
403
|
# @param account_id
|
|
392
404
|
# @param update_reddit_subreddits_request
|
|
393
405
|
# @param [Hash] opts the optional parameters
|
|
394
|
-
# @return [
|
|
406
|
+
# @return [UpdateYoutubeDefaultPlaylist200Response]
|
|
395
407
|
describe 'update_reddit_subreddits test' do
|
|
396
408
|
it 'should work' do
|
|
397
409
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
398
410
|
end
|
|
399
411
|
end
|
|
400
412
|
|
|
413
|
+
# unit tests for update_youtube_default_playlist
|
|
414
|
+
# Set default YouTube playlist
|
|
415
|
+
# Sets the default playlist used when publishing videos for this account. When a post does not specify a `playlistId`, the default playlist is not automatically used (it is stored for client-side convenience).
|
|
416
|
+
# @param account_id
|
|
417
|
+
# @param update_youtube_default_playlist_request
|
|
418
|
+
# @param [Hash] opts the optional parameters
|
|
419
|
+
# @return [UpdateYoutubeDefaultPlaylist200Response]
|
|
420
|
+
describe 'update_youtube_default_playlist test' do
|
|
421
|
+
it 'should work' do
|
|
422
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
423
|
+
end
|
|
424
|
+
end
|
|
425
|
+
|
|
401
426
|
end
|
|
@@ -39,7 +39,7 @@ describe 'MessagesApi' do
|
|
|
39
39
|
# @param message_id The platform message ID to react to
|
|
40
40
|
# @param add_message_reaction_request
|
|
41
41
|
# @param [Hash] opts the optional parameters
|
|
42
|
-
# @return [
|
|
42
|
+
# @return [UpdateYoutubeDefaultPlaylist200Response]
|
|
43
43
|
describe 'add_message_reaction test' do
|
|
44
44
|
it 'should work' do
|
|
45
45
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
@@ -53,7 +53,7 @@ describe 'MessagesApi' do
|
|
|
53
53
|
# @param message_id The platform message ID to delete
|
|
54
54
|
# @param account_id Social account ID
|
|
55
55
|
# @param [Hash] opts the optional parameters
|
|
56
|
-
# @return [
|
|
56
|
+
# @return [UpdateYoutubeDefaultPlaylist200Response]
|
|
57
57
|
describe 'delete_inbox_message test' do
|
|
58
58
|
it 'should work' do
|
|
59
59
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
@@ -125,7 +125,7 @@ describe 'MessagesApi' do
|
|
|
125
125
|
# @param message_id The platform message ID
|
|
126
126
|
# @param account_id Social account ID
|
|
127
127
|
# @param [Hash] opts the optional parameters
|
|
128
|
-
# @return [
|
|
128
|
+
# @return [UpdateYoutubeDefaultPlaylist200Response]
|
|
129
129
|
describe 'remove_message_reaction test' do
|
|
130
130
|
it 'should work' do
|
|
131
131
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
@@ -151,7 +151,7 @@ describe 'MessagesApi' do
|
|
|
151
151
|
# @param conversation_id The conversation ID
|
|
152
152
|
# @param send_typing_indicator_request
|
|
153
153
|
# @param [Hash] opts the optional parameters
|
|
154
|
-
# @return [
|
|
154
|
+
# @return [UpdateYoutubeDefaultPlaylist200Response]
|
|
155
155
|
describe 'send_typing_indicator test' do
|
|
156
156
|
it 'should work' do
|
|
157
157
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
@@ -49,7 +49,7 @@ describe 'WebhooksApi' do
|
|
|
49
49
|
# Permanently delete a webhook configuration.
|
|
50
50
|
# @param id Webhook ID to delete
|
|
51
51
|
# @param [Hash] opts the optional parameters
|
|
52
|
-
# @return [
|
|
52
|
+
# @return [UpdateYoutubeDefaultPlaylist200Response]
|
|
53
53
|
describe 'delete_webhook_settings test' do
|
|
54
54
|
it 'should work' do
|
|
55
55
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#Zernio API
|
|
3
|
+
|
|
4
|
+
#API reference for Zernio. Authenticate with a Bearer API key. Base URL: https://zernio.com/api
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 1.0.1
|
|
7
|
+
Contact: support@zernio.com
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
Generator version: 7.19.0
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for Late::GetYoutubePlaylists200ResponsePlaylistsInner
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe Late::GetYoutubePlaylists200ResponsePlaylistsInner do
|
|
21
|
+
#let(:instance) { Late::GetYoutubePlaylists200ResponsePlaylistsInner.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of GetYoutubePlaylists200ResponsePlaylistsInner' do
|
|
24
|
+
it 'should create an instance of GetYoutubePlaylists200ResponsePlaylistsInner' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(Late::GetYoutubePlaylists200ResponsePlaylistsInner)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test attribute "id"' do
|
|
31
|
+
it 'should work' do
|
|
32
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
describe 'test attribute "title"' do
|
|
37
|
+
it 'should work' do
|
|
38
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
39
|
+
end
|
|
40
|
+
end
|
|
41
|
+
|
|
42
|
+
describe 'test attribute "description"' do
|
|
43
|
+
it 'should work' do
|
|
44
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
45
|
+
end
|
|
46
|
+
end
|
|
47
|
+
|
|
48
|
+
describe 'test attribute "privacy"' do
|
|
49
|
+
it 'should work' do
|
|
50
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
51
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["public", "private", "unlisted"])
|
|
52
|
+
# validator.allowable_values.each do |value|
|
|
53
|
+
# expect { instance.privacy = value }.not_to raise_error
|
|
54
|
+
# end
|
|
55
|
+
end
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
describe 'test attribute "item_count"' do
|
|
59
|
+
it 'should work' do
|
|
60
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
61
|
+
end
|
|
62
|
+
end
|
|
63
|
+
|
|
64
|
+
describe 'test attribute "thumbnail_url"' do
|
|
65
|
+
it 'should work' do
|
|
66
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
67
|
+
end
|
|
68
|
+
end
|
|
69
|
+
|
|
70
|
+
end
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#Zernio API
|
|
3
|
+
|
|
4
|
+
#API reference for Zernio. Authenticate with a Bearer API key. Base URL: https://zernio.com/api
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 1.0.1
|
|
7
|
+
Contact: support@zernio.com
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
Generator version: 7.19.0
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for Late::GetYoutubePlaylists200Response
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe Late::GetYoutubePlaylists200Response do
|
|
21
|
+
#let(:instance) { Late::GetYoutubePlaylists200Response.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of GetYoutubePlaylists200Response' do
|
|
24
|
+
it 'should create an instance of GetYoutubePlaylists200Response' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(Late::GetYoutubePlaylists200Response)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test attribute "playlists"' do
|
|
31
|
+
it 'should work' do
|
|
32
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
describe 'test attribute "default_playlist_id"' do
|
|
37
|
+
it 'should work' do
|
|
38
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
39
|
+
end
|
|
40
|
+
end
|
|
41
|
+
|
|
42
|
+
end
|
|
@@ -79,4 +79,16 @@ describe Late::InstagramPlatformData do
|
|
|
79
79
|
end
|
|
80
80
|
end
|
|
81
81
|
|
|
82
|
+
describe 'test attribute "instagram_thumbnail"' do
|
|
83
|
+
it 'should work' do
|
|
84
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
85
|
+
end
|
|
86
|
+
end
|
|
87
|
+
|
|
88
|
+
describe 'test attribute "reel_cover"' do
|
|
89
|
+
it 'should work' do
|
|
90
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
91
|
+
end
|
|
92
|
+
end
|
|
93
|
+
|
|
82
94
|
end
|
|
@@ -14,16 +14,16 @@ require 'spec_helper'
|
|
|
14
14
|
require 'json'
|
|
15
15
|
require 'date'
|
|
16
16
|
|
|
17
|
-
# Unit tests for Late::
|
|
17
|
+
# Unit tests for Late::UpdateYoutubeDefaultPlaylist200Response
|
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
19
|
# Please update as you see appropriate
|
|
20
|
-
describe Late::
|
|
21
|
-
#let(:instance) { Late::
|
|
20
|
+
describe Late::UpdateYoutubeDefaultPlaylist200Response do
|
|
21
|
+
#let(:instance) { Late::UpdateYoutubeDefaultPlaylist200Response.new }
|
|
22
22
|
|
|
23
|
-
describe 'test an instance of
|
|
24
|
-
it 'should create an instance of
|
|
23
|
+
describe 'test an instance of UpdateYoutubeDefaultPlaylist200Response' do
|
|
24
|
+
it 'should create an instance of UpdateYoutubeDefaultPlaylist200Response' do
|
|
25
25
|
# uncomment below to test the instance creation
|
|
26
|
-
#expect(instance).to be_instance_of(Late::
|
|
26
|
+
#expect(instance).to be_instance_of(Late::UpdateYoutubeDefaultPlaylist200Response)
|
|
27
27
|
end
|
|
28
28
|
end
|
|
29
29
|
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#Zernio API
|
|
3
|
+
|
|
4
|
+
#API reference for Zernio. Authenticate with a Bearer API key. Base URL: https://zernio.com/api
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 1.0.1
|
|
7
|
+
Contact: support@zernio.com
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
Generator version: 7.19.0
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for Late::UpdateYoutubeDefaultPlaylistRequest
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe Late::UpdateYoutubeDefaultPlaylistRequest do
|
|
21
|
+
#let(:instance) { Late::UpdateYoutubeDefaultPlaylistRequest.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of UpdateYoutubeDefaultPlaylistRequest' do
|
|
24
|
+
it 'should create an instance of UpdateYoutubeDefaultPlaylistRequest' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(Late::UpdateYoutubeDefaultPlaylistRequest)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test attribute "default_playlist_id"' do
|
|
31
|
+
it 'should work' do
|
|
32
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
describe 'test attribute "default_playlist_name"' do
|
|
37
|
+
it 'should work' do
|
|
38
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
39
|
+
end
|
|
40
|
+
end
|
|
41
|
+
|
|
42
|
+
end
|
|
Binary file
|
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.92
|
|
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-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|
|
@@ -397,6 +397,8 @@ files:
|
|
|
397
397
|
- docs/GetYouTubeDailyViews500Response.md
|
|
398
398
|
- docs/GetYouTubeTranscript200Response.md
|
|
399
399
|
- docs/GetYouTubeTranscript200ResponseSegmentsInner.md
|
|
400
|
+
- docs/GetYoutubePlaylists200Response.md
|
|
401
|
+
- docs/GetYoutubePlaylists200ResponsePlaylistsInner.md
|
|
400
402
|
- docs/GoogleBusinessPlatformData.md
|
|
401
403
|
- docs/GoogleBusinessPlatformDataCallToAction.md
|
|
402
404
|
- docs/HandleOAuthCallbackRequest.md
|
|
@@ -693,7 +695,6 @@ files:
|
|
|
693
695
|
- docs/UpdateProfileRequest.md
|
|
694
696
|
- docs/UpdateQueueSlot200Response.md
|
|
695
697
|
- docs/UpdateQueueSlotRequest.md
|
|
696
|
-
- docs/UpdateRedditSubreddits200Response.md
|
|
697
698
|
- docs/UpdateRedditSubredditsRequest.md
|
|
698
699
|
- docs/UpdateSequence200Response.md
|
|
699
700
|
- docs/UpdateSequence200ResponseSequence.md
|
|
@@ -710,6 +711,8 @@ files:
|
|
|
710
711
|
- docs/UpdateWhatsAppTemplate200Response.md
|
|
711
712
|
- docs/UpdateWhatsAppTemplate200ResponseTemplate.md
|
|
712
713
|
- docs/UpdateWhatsAppTemplateRequest.md
|
|
714
|
+
- docs/UpdateYoutubeDefaultPlaylist200Response.md
|
|
715
|
+
- docs/UpdateYoutubeDefaultPlaylistRequest.md
|
|
713
716
|
- docs/UploadMediaDirect200Response.md
|
|
714
717
|
- docs/UploadTokenResponse.md
|
|
715
718
|
- docs/UploadTokenStatusResponse.md
|
|
@@ -1138,6 +1141,8 @@ files:
|
|
|
1138
1141
|
- lib/late-sdk/models/get_you_tube_daily_views500_response.rb
|
|
1139
1142
|
- lib/late-sdk/models/get_you_tube_transcript200_response.rb
|
|
1140
1143
|
- lib/late-sdk/models/get_you_tube_transcript200_response_segments_inner.rb
|
|
1144
|
+
- lib/late-sdk/models/get_youtube_playlists200_response.rb
|
|
1145
|
+
- lib/late-sdk/models/get_youtube_playlists200_response_playlists_inner.rb
|
|
1141
1146
|
- lib/late-sdk/models/google_business_platform_data.rb
|
|
1142
1147
|
- lib/late-sdk/models/google_business_platform_data_call_to_action.rb
|
|
1143
1148
|
- lib/late-sdk/models/handle_o_auth_callback_request.rb
|
|
@@ -1421,7 +1426,6 @@ files:
|
|
|
1421
1426
|
- lib/late-sdk/models/update_profile_request.rb
|
|
1422
1427
|
- lib/late-sdk/models/update_queue_slot200_response.rb
|
|
1423
1428
|
- lib/late-sdk/models/update_queue_slot_request.rb
|
|
1424
|
-
- lib/late-sdk/models/update_reddit_subreddits200_response.rb
|
|
1425
1429
|
- lib/late-sdk/models/update_reddit_subreddits_request.rb
|
|
1426
1430
|
- lib/late-sdk/models/update_sequence200_response.rb
|
|
1427
1431
|
- lib/late-sdk/models/update_sequence200_response_sequence.rb
|
|
@@ -1438,6 +1442,8 @@ files:
|
|
|
1438
1442
|
- lib/late-sdk/models/update_whats_app_template200_response.rb
|
|
1439
1443
|
- lib/late-sdk/models/update_whats_app_template200_response_template.rb
|
|
1440
1444
|
- lib/late-sdk/models/update_whats_app_template_request.rb
|
|
1445
|
+
- lib/late-sdk/models/update_youtube_default_playlist200_response.rb
|
|
1446
|
+
- lib/late-sdk/models/update_youtube_default_playlist_request.rb
|
|
1441
1447
|
- lib/late-sdk/models/upload_media_direct200_response.rb
|
|
1442
1448
|
- lib/late-sdk/models/upload_token_response.rb
|
|
1443
1449
|
- lib/late-sdk/models/upload_token_status_response.rb
|
|
@@ -1854,6 +1860,8 @@ files:
|
|
|
1854
1860
|
- spec/models/get_you_tube_daily_views500_response_spec.rb
|
|
1855
1861
|
- spec/models/get_you_tube_transcript200_response_segments_inner_spec.rb
|
|
1856
1862
|
- spec/models/get_you_tube_transcript200_response_spec.rb
|
|
1863
|
+
- spec/models/get_youtube_playlists200_response_playlists_inner_spec.rb
|
|
1864
|
+
- spec/models/get_youtube_playlists200_response_spec.rb
|
|
1857
1865
|
- spec/models/google_business_platform_data_call_to_action_spec.rb
|
|
1858
1866
|
- spec/models/google_business_platform_data_spec.rb
|
|
1859
1867
|
- spec/models/handle_o_auth_callback_request_spec.rb
|
|
@@ -2137,7 +2145,6 @@ files:
|
|
|
2137
2145
|
- spec/models/update_profile_request_spec.rb
|
|
2138
2146
|
- spec/models/update_queue_slot200_response_spec.rb
|
|
2139
2147
|
- spec/models/update_queue_slot_request_spec.rb
|
|
2140
|
-
- spec/models/update_reddit_subreddits200_response_spec.rb
|
|
2141
2148
|
- spec/models/update_reddit_subreddits_request_spec.rb
|
|
2142
2149
|
- spec/models/update_sequence200_response_sequence_spec.rb
|
|
2143
2150
|
- spec/models/update_sequence200_response_spec.rb
|
|
@@ -2154,6 +2161,8 @@ files:
|
|
|
2154
2161
|
- spec/models/update_whats_app_template200_response_spec.rb
|
|
2155
2162
|
- spec/models/update_whats_app_template200_response_template_spec.rb
|
|
2156
2163
|
- spec/models/update_whats_app_template_request_spec.rb
|
|
2164
|
+
- spec/models/update_youtube_default_playlist200_response_spec.rb
|
|
2165
|
+
- spec/models/update_youtube_default_playlist_request_spec.rb
|
|
2157
2166
|
- spec/models/upload_media_direct200_response_spec.rb
|
|
2158
2167
|
- spec/models/upload_token_response_spec.rb
|
|
2159
2168
|
- spec/models/upload_token_status_response_spec.rb
|
|
@@ -2214,7 +2223,7 @@ files:
|
|
|
2214
2223
|
- spec/models/you_tube_scope_missing_response_scope_status_spec.rb
|
|
2215
2224
|
- spec/models/you_tube_scope_missing_response_spec.rb
|
|
2216
2225
|
- spec/spec_helper.rb
|
|
2217
|
-
- zernio-sdk-0.0.
|
|
2226
|
+
- zernio-sdk-0.0.92.gem
|
|
2218
2227
|
homepage: https://openapi-generator.tech
|
|
2219
2228
|
licenses:
|
|
2220
2229
|
- Unlicense
|
|
@@ -2346,6 +2355,7 @@ test_files:
|
|
|
2346
2355
|
- spec/models/purchase_whats_app_phone_number200_response_one_of1_spec.rb
|
|
2347
2356
|
- spec/models/get_pending_o_auth_data200_response_organizations_inner_spec.rb
|
|
2348
2357
|
- spec/models/validate_post_length200_response_platforms_value_spec.rb
|
|
2358
|
+
- spec/models/get_youtube_playlists200_response_playlists_inner_spec.rb
|
|
2349
2359
|
- spec/models/create_comment_automation200_response_automation_stats_spec.rb
|
|
2350
2360
|
- spec/models/cancel_broadcast200_response_broadcast_spec.rb
|
|
2351
2361
|
- spec/models/validate_post_request_platforms_inner_spec.rb
|
|
@@ -2353,6 +2363,7 @@ test_files:
|
|
|
2353
2363
|
- spec/models/get_post_timeline200_response_timeline_inner_spec.rb
|
|
2354
2364
|
- spec/models/validate_post200_response_spec.rb
|
|
2355
2365
|
- spec/models/update_facebook_page200_response_selected_page_spec.rb
|
|
2366
|
+
- spec/models/get_youtube_playlists200_response_spec.rb
|
|
2356
2367
|
- spec/models/inline_object_spec.rb
|
|
2357
2368
|
- spec/models/get_telegram_connect_status200_response_spec.rb
|
|
2358
2369
|
- spec/models/get_account_health200_response_token_status_spec.rb
|
|
@@ -2361,6 +2372,7 @@ test_files:
|
|
|
2361
2372
|
- spec/models/create_webhook_settings_request_spec.rb
|
|
2362
2373
|
- spec/models/delete_account_group200_response_spec.rb
|
|
2363
2374
|
- spec/models/pending_spec.rb
|
|
2375
|
+
- spec/models/update_youtube_default_playlist200_response_spec.rb
|
|
2364
2376
|
- spec/models/get_inbox_conversation_messages200_response_messages_inner_attachments_inner_spec.rb
|
|
2365
2377
|
- spec/models/usage_stats_limits_spec.rb
|
|
2366
2378
|
- spec/models/platform_target_spec.rb
|
|
@@ -2544,6 +2556,7 @@ test_files:
|
|
|
2544
2556
|
- spec/models/get_google_business_reviews200_response_reviews_inner_spec.rb
|
|
2545
2557
|
- spec/models/list_whats_app_group_chats200_response_paging_cursors_spec.rb
|
|
2546
2558
|
- spec/models/get_linked_in_post_reactions200_response_pagination_spec.rb
|
|
2559
|
+
- spec/models/update_youtube_default_playlist_request_spec.rb
|
|
2547
2560
|
- spec/models/bulk_delete_whats_app_contacts200_response_spec.rb
|
|
2548
2561
|
- spec/models/create_whats_app_broadcast_request_recipients_inner_spec.rb
|
|
2549
2562
|
- spec/models/cancel_broadcast200_response_spec.rb
|
|
@@ -2637,7 +2650,6 @@ test_files:
|
|
|
2637
2650
|
- spec/models/create_sequence_request_steps_inner_spec.rb
|
|
2638
2651
|
- spec/models/create_broadcast200_response_spec.rb
|
|
2639
2652
|
- spec/models/list_inbox_comments200_response_spec.rb
|
|
2640
|
-
- spec/models/update_reddit_subreddits200_response_spec.rb
|
|
2641
2653
|
- spec/models/import_whats_app_contacts_request_contacts_inner_spec.rb
|
|
2642
2654
|
- spec/models/get_account_health200_response_permissions_spec.rb
|
|
2643
2655
|
- spec/models/get_inbox_post_comments200_response_comments_inner_from_spec.rb
|
data/zernio-sdk-0.0.90.gem
DELETED
|
Binary file
|