zernio-sdk 0.0.91 → 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/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/{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 +92 -0
- 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/{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
- metadata +17 -5
|
@@ -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
|
|
@@ -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
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: zernio-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
|
|
@@ -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
|
|
@@ -1137,6 +1140,8 @@ files:
|
|
|
1137
1140
|
- lib/late-sdk/models/get_you_tube_daily_views500_response.rb
|
|
1138
1141
|
- lib/late-sdk/models/get_you_tube_transcript200_response.rb
|
|
1139
1142
|
- lib/late-sdk/models/get_you_tube_transcript200_response_segments_inner.rb
|
|
1143
|
+
- lib/late-sdk/models/get_youtube_playlists200_response.rb
|
|
1144
|
+
- lib/late-sdk/models/get_youtube_playlists200_response_playlists_inner.rb
|
|
1140
1145
|
- lib/late-sdk/models/google_business_platform_data.rb
|
|
1141
1146
|
- lib/late-sdk/models/google_business_platform_data_call_to_action.rb
|
|
1142
1147
|
- lib/late-sdk/models/handle_o_auth_callback_request.rb
|
|
@@ -1420,7 +1425,6 @@ files:
|
|
|
1420
1425
|
- lib/late-sdk/models/update_profile_request.rb
|
|
1421
1426
|
- lib/late-sdk/models/update_queue_slot200_response.rb
|
|
1422
1427
|
- lib/late-sdk/models/update_queue_slot_request.rb
|
|
1423
|
-
- lib/late-sdk/models/update_reddit_subreddits200_response.rb
|
|
1424
1428
|
- lib/late-sdk/models/update_reddit_subreddits_request.rb
|
|
1425
1429
|
- lib/late-sdk/models/update_sequence200_response.rb
|
|
1426
1430
|
- lib/late-sdk/models/update_sequence200_response_sequence.rb
|
|
@@ -1437,6 +1441,8 @@ files:
|
|
|
1437
1441
|
- lib/late-sdk/models/update_whats_app_template200_response.rb
|
|
1438
1442
|
- lib/late-sdk/models/update_whats_app_template200_response_template.rb
|
|
1439
1443
|
- lib/late-sdk/models/update_whats_app_template_request.rb
|
|
1444
|
+
- lib/late-sdk/models/update_youtube_default_playlist200_response.rb
|
|
1445
|
+
- lib/late-sdk/models/update_youtube_default_playlist_request.rb
|
|
1440
1446
|
- lib/late-sdk/models/upload_media_direct200_response.rb
|
|
1441
1447
|
- lib/late-sdk/models/upload_token_response.rb
|
|
1442
1448
|
- lib/late-sdk/models/upload_token_status_response.rb
|
|
@@ -1853,6 +1859,8 @@ files:
|
|
|
1853
1859
|
- spec/models/get_you_tube_daily_views500_response_spec.rb
|
|
1854
1860
|
- spec/models/get_you_tube_transcript200_response_segments_inner_spec.rb
|
|
1855
1861
|
- spec/models/get_you_tube_transcript200_response_spec.rb
|
|
1862
|
+
- spec/models/get_youtube_playlists200_response_playlists_inner_spec.rb
|
|
1863
|
+
- spec/models/get_youtube_playlists200_response_spec.rb
|
|
1856
1864
|
- spec/models/google_business_platform_data_call_to_action_spec.rb
|
|
1857
1865
|
- spec/models/google_business_platform_data_spec.rb
|
|
1858
1866
|
- spec/models/handle_o_auth_callback_request_spec.rb
|
|
@@ -2136,7 +2144,6 @@ files:
|
|
|
2136
2144
|
- spec/models/update_profile_request_spec.rb
|
|
2137
2145
|
- spec/models/update_queue_slot200_response_spec.rb
|
|
2138
2146
|
- spec/models/update_queue_slot_request_spec.rb
|
|
2139
|
-
- spec/models/update_reddit_subreddits200_response_spec.rb
|
|
2140
2147
|
- spec/models/update_reddit_subreddits_request_spec.rb
|
|
2141
2148
|
- spec/models/update_sequence200_response_sequence_spec.rb
|
|
2142
2149
|
- spec/models/update_sequence200_response_spec.rb
|
|
@@ -2153,6 +2160,8 @@ files:
|
|
|
2153
2160
|
- spec/models/update_whats_app_template200_response_spec.rb
|
|
2154
2161
|
- spec/models/update_whats_app_template200_response_template_spec.rb
|
|
2155
2162
|
- spec/models/update_whats_app_template_request_spec.rb
|
|
2163
|
+
- spec/models/update_youtube_default_playlist200_response_spec.rb
|
|
2164
|
+
- spec/models/update_youtube_default_playlist_request_spec.rb
|
|
2156
2165
|
- spec/models/upload_media_direct200_response_spec.rb
|
|
2157
2166
|
- spec/models/upload_token_response_spec.rb
|
|
2158
2167
|
- spec/models/upload_token_status_response_spec.rb
|
|
@@ -2344,6 +2353,7 @@ test_files:
|
|
|
2344
2353
|
- spec/models/purchase_whats_app_phone_number200_response_one_of1_spec.rb
|
|
2345
2354
|
- spec/models/get_pending_o_auth_data200_response_organizations_inner_spec.rb
|
|
2346
2355
|
- spec/models/validate_post_length200_response_platforms_value_spec.rb
|
|
2356
|
+
- spec/models/get_youtube_playlists200_response_playlists_inner_spec.rb
|
|
2347
2357
|
- spec/models/create_comment_automation200_response_automation_stats_spec.rb
|
|
2348
2358
|
- spec/models/cancel_broadcast200_response_broadcast_spec.rb
|
|
2349
2359
|
- spec/models/validate_post_request_platforms_inner_spec.rb
|
|
@@ -2351,6 +2361,7 @@ test_files:
|
|
|
2351
2361
|
- spec/models/get_post_timeline200_response_timeline_inner_spec.rb
|
|
2352
2362
|
- spec/models/validate_post200_response_spec.rb
|
|
2353
2363
|
- spec/models/update_facebook_page200_response_selected_page_spec.rb
|
|
2364
|
+
- spec/models/get_youtube_playlists200_response_spec.rb
|
|
2354
2365
|
- spec/models/inline_object_spec.rb
|
|
2355
2366
|
- spec/models/get_telegram_connect_status200_response_spec.rb
|
|
2356
2367
|
- spec/models/get_account_health200_response_token_status_spec.rb
|
|
@@ -2359,6 +2370,7 @@ test_files:
|
|
|
2359
2370
|
- spec/models/create_webhook_settings_request_spec.rb
|
|
2360
2371
|
- spec/models/delete_account_group200_response_spec.rb
|
|
2361
2372
|
- spec/models/pending_spec.rb
|
|
2373
|
+
- spec/models/update_youtube_default_playlist200_response_spec.rb
|
|
2362
2374
|
- spec/models/get_inbox_conversation_messages200_response_messages_inner_attachments_inner_spec.rb
|
|
2363
2375
|
- spec/models/usage_stats_limits_spec.rb
|
|
2364
2376
|
- spec/models/platform_target_spec.rb
|
|
@@ -2542,6 +2554,7 @@ test_files:
|
|
|
2542
2554
|
- spec/models/get_google_business_reviews200_response_reviews_inner_spec.rb
|
|
2543
2555
|
- spec/models/list_whats_app_group_chats200_response_paging_cursors_spec.rb
|
|
2544
2556
|
- spec/models/get_linked_in_post_reactions200_response_pagination_spec.rb
|
|
2557
|
+
- spec/models/update_youtube_default_playlist_request_spec.rb
|
|
2545
2558
|
- spec/models/bulk_delete_whats_app_contacts200_response_spec.rb
|
|
2546
2559
|
- spec/models/create_whats_app_broadcast_request_recipients_inner_spec.rb
|
|
2547
2560
|
- spec/models/cancel_broadcast200_response_spec.rb
|
|
@@ -2635,7 +2648,6 @@ test_files:
|
|
|
2635
2648
|
- spec/models/create_sequence_request_steps_inner_spec.rb
|
|
2636
2649
|
- spec/models/create_broadcast200_response_spec.rb
|
|
2637
2650
|
- spec/models/list_inbox_comments200_response_spec.rb
|
|
2638
|
-
- spec/models/update_reddit_subreddits200_response_spec.rb
|
|
2639
2651
|
- spec/models/import_whats_app_contacts_request_contacts_inner_spec.rb
|
|
2640
2652
|
- spec/models/get_account_health200_response_permissions_spec.rb
|
|
2641
2653
|
- spec/models/get_inbox_post_comments200_response_comments_inner_from_spec.rb
|