late-sdk 0.0.91 → 0.0.93
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 +14 -1
- data/docs/ConnectApi.md +146 -4
- data/docs/CreateWhatsAppTemplateRequest.md +1 -1
- data/docs/GetYoutubePlaylists200Response.md +20 -0
- data/docs/GetYoutubePlaylists200ResponsePlaylistsInner.md +28 -0
- data/docs/MessagesApi.md +16 -16
- data/docs/UpdateWhatsAppTemplateRequest.md +1 -1
- data/docs/{UpdateRedditSubreddits200Response.md → UpdateYoutubeDefaultPlaylist200Response.md} +2 -2
- data/docs/UpdateYoutubeDefaultPlaylistRequest.md +20 -0
- data/docs/WebhooksApi.md +4 -4
- data/docs/WhatsAppApi.md +1 -1
- data/docs/WhatsAppBodyComponent.md +24 -0
- data/docs/WhatsAppBodyComponentExample.md +18 -0
- data/docs/WhatsAppButtonsComponent.md +20 -0
- data/docs/WhatsAppFooterComponent.md +22 -0
- data/docs/WhatsAppHeaderComponent.md +24 -0
- data/docs/WhatsAppHeaderComponentExample.md +20 -0
- data/docs/WhatsAppTemplateButton.md +44 -0
- data/docs/WhatsAppTemplateComponent.md +85 -0
- 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/create_whats_app_template_request.rb +21 -2
- 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_whats_app_template_request.rb +10 -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/whats_app_body_component.rb +234 -0
- data/lib/late-sdk/models/whats_app_body_component_example.rb +150 -0
- data/lib/late-sdk/models/whats_app_buttons_component.rb +225 -0
- data/lib/late-sdk/models/whats_app_footer_component.rb +227 -0
- data/lib/late-sdk/models/whats_app_header_component.rb +235 -0
- data/lib/late-sdk/models/whats_app_header_component_example.rb +190 -0
- data/lib/late-sdk/models/whats_app_template_button.rb +345 -0
- data/lib/late-sdk/models/whats_app_template_component.rb +59 -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 +12 -1
- data/openapi.yaml +248 -5
- 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/whats_app_body_component_example_spec.rb +36 -0
- data/spec/models/whats_app_body_component_spec.rb +58 -0
- data/spec/models/whats_app_buttons_component_spec.rb +46 -0
- data/spec/models/whats_app_footer_component_spec.rb +52 -0
- data/spec/models/whats_app_header_component_example_spec.rb +42 -0
- data/spec/models/whats_app_header_component_spec.rb +62 -0
- data/spec/models/whats_app_template_button_spec.rb +122 -0
- data/spec/models/whats_app_template_component_spec.rb +44 -0
- data/spec/models/you_tube_platform_data_spec.rb +6 -0
- data/zernio-sdk-0.0.93.gem +0 -0
- metadata +50 -6
- data/zernio-sdk-0.0.91.gem +0 -0
|
@@ -0,0 +1,46 @@
|
|
|
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::WhatsAppButtonsComponent
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe Late::WhatsAppButtonsComponent do
|
|
21
|
+
#let(:instance) { Late::WhatsAppButtonsComponent.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of WhatsAppButtonsComponent' do
|
|
24
|
+
it 'should create an instance of WhatsAppButtonsComponent' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(Late::WhatsAppButtonsComponent)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test attribute "type"' do
|
|
31
|
+
it 'should work' do
|
|
32
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
33
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["BUTTONS"])
|
|
34
|
+
# validator.allowable_values.each do |value|
|
|
35
|
+
# expect { instance.type = value }.not_to raise_error
|
|
36
|
+
# end
|
|
37
|
+
end
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
describe 'test attribute "buttons"' do
|
|
41
|
+
it 'should work' do
|
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
end
|
|
@@ -0,0 +1,52 @@
|
|
|
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::WhatsAppFooterComponent
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe Late::WhatsAppFooterComponent do
|
|
21
|
+
#let(:instance) { Late::WhatsAppFooterComponent.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of WhatsAppFooterComponent' do
|
|
24
|
+
it 'should create an instance of WhatsAppFooterComponent' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(Late::WhatsAppFooterComponent)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test attribute "type"' do
|
|
31
|
+
it 'should work' do
|
|
32
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
33
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["FOOTER"])
|
|
34
|
+
# validator.allowable_values.each do |value|
|
|
35
|
+
# expect { instance.type = value }.not_to raise_error
|
|
36
|
+
# end
|
|
37
|
+
end
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
describe 'test attribute "text"' do
|
|
41
|
+
it 'should work' do
|
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
describe 'test attribute "code_expiration_minutes"' do
|
|
47
|
+
it 'should work' do
|
|
48
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
49
|
+
end
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
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::WhatsAppHeaderComponentExample
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe Late::WhatsAppHeaderComponentExample do
|
|
21
|
+
#let(:instance) { Late::WhatsAppHeaderComponentExample.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of WhatsAppHeaderComponentExample' do
|
|
24
|
+
it 'should create an instance of WhatsAppHeaderComponentExample' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(Late::WhatsAppHeaderComponentExample)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test attribute "header_text"' 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 "header_handle"' 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
|
|
@@ -0,0 +1,62 @@
|
|
|
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::WhatsAppHeaderComponent
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe Late::WhatsAppHeaderComponent do
|
|
21
|
+
#let(:instance) { Late::WhatsAppHeaderComponent.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of WhatsAppHeaderComponent' do
|
|
24
|
+
it 'should create an instance of WhatsAppHeaderComponent' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(Late::WhatsAppHeaderComponent)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test attribute "type"' do
|
|
31
|
+
it 'should work' do
|
|
32
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
33
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["HEADER"])
|
|
34
|
+
# validator.allowable_values.each do |value|
|
|
35
|
+
# expect { instance.type = value }.not_to raise_error
|
|
36
|
+
# end
|
|
37
|
+
end
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
describe 'test attribute "format"' do
|
|
41
|
+
it 'should work' do
|
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
43
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["TEXT", "IMAGE", "VIDEO", "GIF", "DOCUMENT", "LOCATION"])
|
|
44
|
+
# validator.allowable_values.each do |value|
|
|
45
|
+
# expect { instance.format = value }.not_to raise_error
|
|
46
|
+
# end
|
|
47
|
+
end
|
|
48
|
+
end
|
|
49
|
+
|
|
50
|
+
describe 'test attribute "text"' do
|
|
51
|
+
it 'should work' do
|
|
52
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
53
|
+
end
|
|
54
|
+
end
|
|
55
|
+
|
|
56
|
+
describe 'test attribute "example"' do
|
|
57
|
+
it 'should work' do
|
|
58
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
59
|
+
end
|
|
60
|
+
end
|
|
61
|
+
|
|
62
|
+
end
|
|
@@ -0,0 +1,122 @@
|
|
|
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::WhatsAppTemplateButton
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe Late::WhatsAppTemplateButton do
|
|
21
|
+
#let(:instance) { Late::WhatsAppTemplateButton.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of WhatsAppTemplateButton' do
|
|
24
|
+
it 'should create an instance of WhatsAppTemplateButton' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(Late::WhatsAppTemplateButton)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test attribute "type"' do
|
|
31
|
+
it 'should work' do
|
|
32
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
33
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["QUICK_REPLY", "URL", "PHONE_NUMBER", "OTP", "FLOW", "MPM", "CATALOG"])
|
|
34
|
+
# validator.allowable_values.each do |value|
|
|
35
|
+
# expect { instance.type = value }.not_to raise_error
|
|
36
|
+
# end
|
|
37
|
+
end
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
describe 'test attribute "text"' do
|
|
41
|
+
it 'should work' do
|
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
describe 'test attribute "url"' do
|
|
47
|
+
it 'should work' do
|
|
48
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
49
|
+
end
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
describe 'test attribute "example"' do
|
|
53
|
+
it 'should work' do
|
|
54
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
55
|
+
end
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
describe 'test attribute "phone_number"' 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 "otp_type"' do
|
|
65
|
+
it 'should work' do
|
|
66
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
67
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["COPY_CODE", "ONE_TAP", "ZERO_TAP"])
|
|
68
|
+
# validator.allowable_values.each do |value|
|
|
69
|
+
# expect { instance.otp_type = value }.not_to raise_error
|
|
70
|
+
# end
|
|
71
|
+
end
|
|
72
|
+
end
|
|
73
|
+
|
|
74
|
+
describe 'test attribute "autofill_text"' do
|
|
75
|
+
it 'should work' do
|
|
76
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
77
|
+
end
|
|
78
|
+
end
|
|
79
|
+
|
|
80
|
+
describe 'test attribute "package_name"' do
|
|
81
|
+
it 'should work' do
|
|
82
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
83
|
+
end
|
|
84
|
+
end
|
|
85
|
+
|
|
86
|
+
describe 'test attribute "signature_hash"' do
|
|
87
|
+
it 'should work' do
|
|
88
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
89
|
+
end
|
|
90
|
+
end
|
|
91
|
+
|
|
92
|
+
describe 'test attribute "flow_id"' do
|
|
93
|
+
it 'should work' do
|
|
94
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
95
|
+
end
|
|
96
|
+
end
|
|
97
|
+
|
|
98
|
+
describe 'test attribute "flow_name"' do
|
|
99
|
+
it 'should work' do
|
|
100
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
101
|
+
end
|
|
102
|
+
end
|
|
103
|
+
|
|
104
|
+
describe 'test attribute "flow_json"' do
|
|
105
|
+
it 'should work' do
|
|
106
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
107
|
+
end
|
|
108
|
+
end
|
|
109
|
+
|
|
110
|
+
describe 'test attribute "flow_action"' do
|
|
111
|
+
it 'should work' do
|
|
112
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
113
|
+
end
|
|
114
|
+
end
|
|
115
|
+
|
|
116
|
+
describe 'test attribute "navigate_screen"' do
|
|
117
|
+
it 'should work' do
|
|
118
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
119
|
+
end
|
|
120
|
+
end
|
|
121
|
+
|
|
122
|
+
end
|
|
@@ -0,0 +1,44 @@
|
|
|
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::WhatsAppTemplateComponent
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe Late::WhatsAppTemplateComponent do
|
|
21
|
+
describe '.openapi_one_of' do
|
|
22
|
+
it 'lists the items referenced in the oneOf array' do
|
|
23
|
+
expect(described_class.openapi_one_of).to_not be_empty
|
|
24
|
+
end
|
|
25
|
+
end
|
|
26
|
+
|
|
27
|
+
describe '.openapi_discriminator_name' do
|
|
28
|
+
it 'returns the value of the "discriminator" property' do
|
|
29
|
+
expect(described_class.openapi_discriminator_name).to_not be_empty
|
|
30
|
+
end
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
describe '.openapi_discriminator_mapping' do
|
|
34
|
+
it 'returns the key/values of the "mapping" property' do
|
|
35
|
+
expect(described_class.openapi_discriminator_mapping.values.sort).to eq(described_class.openapi_one_of.sort)
|
|
36
|
+
end
|
|
37
|
+
end
|
|
38
|
+
|
|
39
|
+
describe '.build' do
|
|
40
|
+
it 'returns the correct model' do
|
|
41
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
42
|
+
end
|
|
43
|
+
end
|
|
44
|
+
end
|
|
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.93
|
|
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
|
|
@@ -768,7 +771,15 @@ files:
|
|
|
768
771
|
- docs/WebhookPayloadTest.md
|
|
769
772
|
- docs/WebhooksApi.md
|
|
770
773
|
- docs/WhatsAppApi.md
|
|
774
|
+
- docs/WhatsAppBodyComponent.md
|
|
775
|
+
- docs/WhatsAppBodyComponentExample.md
|
|
776
|
+
- docs/WhatsAppButtonsComponent.md
|
|
777
|
+
- docs/WhatsAppFooterComponent.md
|
|
778
|
+
- docs/WhatsAppHeaderComponent.md
|
|
779
|
+
- docs/WhatsAppHeaderComponentExample.md
|
|
771
780
|
- docs/WhatsAppPhoneNumbersApi.md
|
|
781
|
+
- docs/WhatsAppTemplateButton.md
|
|
782
|
+
- docs/WhatsAppTemplateComponent.md
|
|
772
783
|
- docs/YouTubeDailyViewsResponse.md
|
|
773
784
|
- docs/YouTubeDailyViewsResponseDailyViewsInner.md
|
|
774
785
|
- docs/YouTubeDailyViewsResponseDateRange.md
|
|
@@ -1138,6 +1149,8 @@ files:
|
|
|
1138
1149
|
- lib/late-sdk/models/get_you_tube_daily_views500_response.rb
|
|
1139
1150
|
- lib/late-sdk/models/get_you_tube_transcript200_response.rb
|
|
1140
1151
|
- lib/late-sdk/models/get_you_tube_transcript200_response_segments_inner.rb
|
|
1152
|
+
- lib/late-sdk/models/get_youtube_playlists200_response.rb
|
|
1153
|
+
- lib/late-sdk/models/get_youtube_playlists200_response_playlists_inner.rb
|
|
1141
1154
|
- lib/late-sdk/models/google_business_platform_data.rb
|
|
1142
1155
|
- lib/late-sdk/models/google_business_platform_data_call_to_action.rb
|
|
1143
1156
|
- lib/late-sdk/models/handle_o_auth_callback_request.rb
|
|
@@ -1421,7 +1434,6 @@ files:
|
|
|
1421
1434
|
- lib/late-sdk/models/update_profile_request.rb
|
|
1422
1435
|
- lib/late-sdk/models/update_queue_slot200_response.rb
|
|
1423
1436
|
- lib/late-sdk/models/update_queue_slot_request.rb
|
|
1424
|
-
- lib/late-sdk/models/update_reddit_subreddits200_response.rb
|
|
1425
1437
|
- lib/late-sdk/models/update_reddit_subreddits_request.rb
|
|
1426
1438
|
- lib/late-sdk/models/update_sequence200_response.rb
|
|
1427
1439
|
- lib/late-sdk/models/update_sequence200_response_sequence.rb
|
|
@@ -1438,6 +1450,8 @@ files:
|
|
|
1438
1450
|
- lib/late-sdk/models/update_whats_app_template200_response.rb
|
|
1439
1451
|
- lib/late-sdk/models/update_whats_app_template200_response_template.rb
|
|
1440
1452
|
- lib/late-sdk/models/update_whats_app_template_request.rb
|
|
1453
|
+
- lib/late-sdk/models/update_youtube_default_playlist200_response.rb
|
|
1454
|
+
- lib/late-sdk/models/update_youtube_default_playlist_request.rb
|
|
1441
1455
|
- lib/late-sdk/models/upload_media_direct200_response.rb
|
|
1442
1456
|
- lib/late-sdk/models/upload_token_response.rb
|
|
1443
1457
|
- lib/late-sdk/models/upload_token_status_response.rb
|
|
@@ -1490,6 +1504,14 @@ files:
|
|
|
1490
1504
|
- lib/late-sdk/models/webhook_payload_post_post.rb
|
|
1491
1505
|
- lib/late-sdk/models/webhook_payload_post_post_platforms_inner.rb
|
|
1492
1506
|
- lib/late-sdk/models/webhook_payload_test.rb
|
|
1507
|
+
- lib/late-sdk/models/whats_app_body_component.rb
|
|
1508
|
+
- lib/late-sdk/models/whats_app_body_component_example.rb
|
|
1509
|
+
- lib/late-sdk/models/whats_app_buttons_component.rb
|
|
1510
|
+
- lib/late-sdk/models/whats_app_footer_component.rb
|
|
1511
|
+
- lib/late-sdk/models/whats_app_header_component.rb
|
|
1512
|
+
- lib/late-sdk/models/whats_app_header_component_example.rb
|
|
1513
|
+
- lib/late-sdk/models/whats_app_template_button.rb
|
|
1514
|
+
- lib/late-sdk/models/whats_app_template_component.rb
|
|
1493
1515
|
- lib/late-sdk/models/you_tube_daily_views_response.rb
|
|
1494
1516
|
- lib/late-sdk/models/you_tube_daily_views_response_daily_views_inner.rb
|
|
1495
1517
|
- lib/late-sdk/models/you_tube_daily_views_response_date_range.rb
|
|
@@ -1854,6 +1876,8 @@ files:
|
|
|
1854
1876
|
- spec/models/get_you_tube_daily_views500_response_spec.rb
|
|
1855
1877
|
- spec/models/get_you_tube_transcript200_response_segments_inner_spec.rb
|
|
1856
1878
|
- spec/models/get_you_tube_transcript200_response_spec.rb
|
|
1879
|
+
- spec/models/get_youtube_playlists200_response_playlists_inner_spec.rb
|
|
1880
|
+
- spec/models/get_youtube_playlists200_response_spec.rb
|
|
1857
1881
|
- spec/models/google_business_platform_data_call_to_action_spec.rb
|
|
1858
1882
|
- spec/models/google_business_platform_data_spec.rb
|
|
1859
1883
|
- spec/models/handle_o_auth_callback_request_spec.rb
|
|
@@ -2137,7 +2161,6 @@ files:
|
|
|
2137
2161
|
- spec/models/update_profile_request_spec.rb
|
|
2138
2162
|
- spec/models/update_queue_slot200_response_spec.rb
|
|
2139
2163
|
- spec/models/update_queue_slot_request_spec.rb
|
|
2140
|
-
- spec/models/update_reddit_subreddits200_response_spec.rb
|
|
2141
2164
|
- spec/models/update_reddit_subreddits_request_spec.rb
|
|
2142
2165
|
- spec/models/update_sequence200_response_sequence_spec.rb
|
|
2143
2166
|
- spec/models/update_sequence200_response_spec.rb
|
|
@@ -2154,6 +2177,8 @@ files:
|
|
|
2154
2177
|
- spec/models/update_whats_app_template200_response_spec.rb
|
|
2155
2178
|
- spec/models/update_whats_app_template200_response_template_spec.rb
|
|
2156
2179
|
- spec/models/update_whats_app_template_request_spec.rb
|
|
2180
|
+
- spec/models/update_youtube_default_playlist200_response_spec.rb
|
|
2181
|
+
- spec/models/update_youtube_default_playlist_request_spec.rb
|
|
2157
2182
|
- spec/models/upload_media_direct200_response_spec.rb
|
|
2158
2183
|
- spec/models/upload_token_response_spec.rb
|
|
2159
2184
|
- spec/models/upload_token_status_response_spec.rb
|
|
@@ -2206,6 +2231,14 @@ files:
|
|
|
2206
2231
|
- spec/models/webhook_payload_post_spec.rb
|
|
2207
2232
|
- spec/models/webhook_payload_test_spec.rb
|
|
2208
2233
|
- spec/models/webhook_spec.rb
|
|
2234
|
+
- spec/models/whats_app_body_component_example_spec.rb
|
|
2235
|
+
- spec/models/whats_app_body_component_spec.rb
|
|
2236
|
+
- spec/models/whats_app_buttons_component_spec.rb
|
|
2237
|
+
- spec/models/whats_app_footer_component_spec.rb
|
|
2238
|
+
- spec/models/whats_app_header_component_example_spec.rb
|
|
2239
|
+
- spec/models/whats_app_header_component_spec.rb
|
|
2240
|
+
- spec/models/whats_app_template_button_spec.rb
|
|
2241
|
+
- spec/models/whats_app_template_component_spec.rb
|
|
2209
2242
|
- spec/models/you_tube_daily_views_response_daily_views_inner_spec.rb
|
|
2210
2243
|
- spec/models/you_tube_daily_views_response_date_range_spec.rb
|
|
2211
2244
|
- spec/models/you_tube_daily_views_response_scope_status_spec.rb
|
|
@@ -2214,7 +2247,7 @@ files:
|
|
|
2214
2247
|
- spec/models/you_tube_scope_missing_response_scope_status_spec.rb
|
|
2215
2248
|
- spec/models/you_tube_scope_missing_response_spec.rb
|
|
2216
2249
|
- spec/spec_helper.rb
|
|
2217
|
-
- zernio-sdk-0.0.
|
|
2250
|
+
- zernio-sdk-0.0.93.gem
|
|
2218
2251
|
homepage: https://openapi-generator.tech
|
|
2219
2252
|
licenses:
|
|
2220
2253
|
- Unlicense
|
|
@@ -2306,6 +2339,7 @@ test_files:
|
|
|
2306
2339
|
- spec/models/get_content_decay200_response_spec.rb
|
|
2307
2340
|
- spec/models/create_whats_app_group_chat_request_spec.rb
|
|
2308
2341
|
- spec/models/like_inbox_comment200_response_spec.rb
|
|
2342
|
+
- spec/models/whats_app_body_component_spec.rb
|
|
2309
2343
|
- spec/models/get_reddit_flairs200_response_flairs_inner_spec.rb
|
|
2310
2344
|
- spec/models/get_sequence200_response_sequence_steps_inner_template_spec.rb
|
|
2311
2345
|
- spec/models/upload_token_status_response_spec.rb
|
|
@@ -2346,13 +2380,16 @@ test_files:
|
|
|
2346
2380
|
- spec/models/purchase_whats_app_phone_number200_response_one_of1_spec.rb
|
|
2347
2381
|
- spec/models/get_pending_o_auth_data200_response_organizations_inner_spec.rb
|
|
2348
2382
|
- spec/models/validate_post_length200_response_platforms_value_spec.rb
|
|
2383
|
+
- spec/models/get_youtube_playlists200_response_playlists_inner_spec.rb
|
|
2349
2384
|
- spec/models/create_comment_automation200_response_automation_stats_spec.rb
|
|
2350
2385
|
- spec/models/cancel_broadcast200_response_broadcast_spec.rb
|
|
2351
2386
|
- spec/models/validate_post_request_platforms_inner_spec.rb
|
|
2352
2387
|
- spec/models/approve_whats_app_group_join_requests_request_spec.rb
|
|
2353
2388
|
- spec/models/get_post_timeline200_response_timeline_inner_spec.rb
|
|
2354
2389
|
- spec/models/validate_post200_response_spec.rb
|
|
2390
|
+
- spec/models/whats_app_header_component_example_spec.rb
|
|
2355
2391
|
- spec/models/update_facebook_page200_response_selected_page_spec.rb
|
|
2392
|
+
- spec/models/get_youtube_playlists200_response_spec.rb
|
|
2356
2393
|
- spec/models/inline_object_spec.rb
|
|
2357
2394
|
- spec/models/get_telegram_connect_status200_response_spec.rb
|
|
2358
2395
|
- spec/models/get_account_health200_response_token_status_spec.rb
|
|
@@ -2361,6 +2398,7 @@ test_files:
|
|
|
2361
2398
|
- spec/models/create_webhook_settings_request_spec.rb
|
|
2362
2399
|
- spec/models/delete_account_group200_response_spec.rb
|
|
2363
2400
|
- spec/models/pending_spec.rb
|
|
2401
|
+
- spec/models/update_youtube_default_playlist200_response_spec.rb
|
|
2364
2402
|
- spec/models/get_inbox_conversation_messages200_response_messages_inner_attachments_inner_spec.rb
|
|
2365
2403
|
- spec/models/usage_stats_limits_spec.rb
|
|
2366
2404
|
- spec/models/platform_target_spec.rb
|
|
@@ -2544,6 +2582,7 @@ test_files:
|
|
|
2544
2582
|
- spec/models/get_google_business_reviews200_response_reviews_inner_spec.rb
|
|
2545
2583
|
- spec/models/list_whats_app_group_chats200_response_paging_cursors_spec.rb
|
|
2546
2584
|
- spec/models/get_linked_in_post_reactions200_response_pagination_spec.rb
|
|
2585
|
+
- spec/models/update_youtube_default_playlist_request_spec.rb
|
|
2547
2586
|
- spec/models/bulk_delete_whats_app_contacts200_response_spec.rb
|
|
2548
2587
|
- spec/models/create_whats_app_broadcast_request_recipients_inner_spec.rb
|
|
2549
2588
|
- spec/models/cancel_broadcast200_response_spec.rb
|
|
@@ -2614,6 +2653,7 @@ test_files:
|
|
|
2614
2653
|
- spec/models/update_post_request_spec.rb
|
|
2615
2654
|
- spec/models/analytics_list_response_posts_inner_spec.rb
|
|
2616
2655
|
- spec/models/get_google_business_location_details200_response_service_items_inner_price_spec.rb
|
|
2656
|
+
- spec/models/whats_app_body_component_example_spec.rb
|
|
2617
2657
|
- spec/models/get_whats_app_phone_number200_response_phone_number_spec.rb
|
|
2618
2658
|
- spec/models/update_whats_app_display_name200_response_spec.rb
|
|
2619
2659
|
- spec/models/create_post409_response_details_spec.rb
|
|
@@ -2637,7 +2677,6 @@ test_files:
|
|
|
2637
2677
|
- spec/models/create_sequence_request_steps_inner_spec.rb
|
|
2638
2678
|
- spec/models/create_broadcast200_response_spec.rb
|
|
2639
2679
|
- spec/models/list_inbox_comments200_response_spec.rb
|
|
2640
|
-
- spec/models/update_reddit_subreddits200_response_spec.rb
|
|
2641
2680
|
- spec/models/import_whats_app_contacts_request_contacts_inner_spec.rb
|
|
2642
2681
|
- spec/models/get_account_health200_response_permissions_spec.rb
|
|
2643
2682
|
- spec/models/get_inbox_post_comments200_response_comments_inner_from_spec.rb
|
|
@@ -2722,12 +2761,14 @@ test_files:
|
|
|
2722
2761
|
- spec/models/get_contact_channels200_response_spec.rb
|
|
2723
2762
|
- spec/models/update_comment_automation200_response_spec.rb
|
|
2724
2763
|
- spec/models/create_account_group201_response_spec.rb
|
|
2764
|
+
- spec/models/whats_app_footer_component_spec.rb
|
|
2725
2765
|
- spec/models/update_google_business_attributes200_response_spec.rb
|
|
2726
2766
|
- spec/models/get_user200_response_spec.rb
|
|
2727
2767
|
- spec/models/validate_post_request_media_items_inner_spec.rb
|
|
2728
2768
|
- spec/models/create_whats_app_broadcast200_response_broadcast_spec.rb
|
|
2729
2769
|
- spec/models/connect_whats_app_credentials200_response_account_spec.rb
|
|
2730
2770
|
- spec/models/update_google_business_food_menus_request_spec.rb
|
|
2771
|
+
- spec/models/whats_app_header_component_spec.rb
|
|
2731
2772
|
- spec/models/instagram_account_insights_response_metrics_value_spec.rb
|
|
2732
2773
|
- spec/models/get_connect_url200_response_spec.rb
|
|
2733
2774
|
- spec/models/send_inbox_message_request_buttons_inner_spec.rb
|
|
@@ -2738,6 +2779,7 @@ test_files:
|
|
|
2738
2779
|
- spec/models/queue_update_response_spec.rb
|
|
2739
2780
|
- spec/models/update_google_business_location_details200_response_spec.rb
|
|
2740
2781
|
- spec/models/get_post_logs200_response_spec.rb
|
|
2782
|
+
- spec/models/whats_app_buttons_component_spec.rb
|
|
2741
2783
|
- spec/models/select_pinterest_board200_response_spec.rb
|
|
2742
2784
|
- spec/models/schedule_whats_app_broadcast_request_spec.rb
|
|
2743
2785
|
- spec/models/post_log_response_spec.rb
|
|
@@ -2759,6 +2801,7 @@ test_files:
|
|
|
2759
2801
|
- spec/models/update_gmb_location200_response_spec.rb
|
|
2760
2802
|
- spec/models/get_whats_app_phone_numbers200_response_spec.rb
|
|
2761
2803
|
- spec/models/get_whats_app_broadcast_recipients200_response_recipients_inner_spec.rb
|
|
2804
|
+
- spec/models/whats_app_template_button_spec.rb
|
|
2762
2805
|
- spec/models/update_custom_field200_response_field_spec.rb
|
|
2763
2806
|
- spec/models/validate_post_length200_response_spec.rb
|
|
2764
2807
|
- spec/models/gbp_special_hour_period_spec.rb
|
|
@@ -2838,6 +2881,7 @@ test_files:
|
|
|
2838
2881
|
- spec/models/linked_in_aggregate_analytics_daily_response_analytics_impressions_inner_spec.rb
|
|
2839
2882
|
- spec/models/gbp_free_form_service_item_label_spec.rb
|
|
2840
2883
|
- spec/models/get_whats_app_groups200_response_summary_spec.rb
|
|
2884
|
+
- spec/models/whats_app_template_component_spec.rb
|
|
2841
2885
|
- spec/models/update_comment_automation200_response_automation_spec.rb
|
|
2842
2886
|
- spec/models/update_whats_app_contact200_response_spec.rb
|
|
2843
2887
|
- spec/models/send_inbox_message_request_reply_markup_spec.rb
|
data/zernio-sdk-0.0.91.gem
DELETED
|
Binary file
|