zernio-sdk 0.0.75 → 0.0.76
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 +5 -0
- data/docs/BroadcastsApi.md +14 -12
- data/docs/ListBroadcasts200Response.md +22 -0
- data/docs/ListBroadcasts200ResponseBroadcastsInner.md +50 -0
- data/docs/ListSequences200Response.md +22 -0
- data/docs/ListSequences200ResponseSequencesInner.md +46 -0
- data/docs/SendBroadcast200Response.md +26 -0
- data/docs/SequencesApi.md +7 -6
- data/lib/late-sdk/api/broadcasts_api.rb +10 -10
- data/lib/late-sdk/api/sequences_api.rb +5 -5
- data/lib/late-sdk/models/list_broadcasts200_response.rb +167 -0
- data/lib/late-sdk/models/list_broadcasts200_response_broadcasts_inner.rb +327 -0
- data/lib/late-sdk/models/list_sequences200_response.rb +167 -0
- data/lib/late-sdk/models/list_sequences200_response_sequences_inner.rb +309 -0
- data/lib/late-sdk/models/send_broadcast200_response.rb +221 -0
- data/lib/late-sdk/version.rb +1 -1
- data/lib/late-sdk.rb +5 -0
- data/openapi.yaml +84 -3
- data/spec/api/broadcasts_api_spec.rb +2 -2
- data/spec/api/sequences_api_spec.rb +1 -1
- data/spec/models/list_broadcasts200_response_broadcasts_inner_spec.rb +136 -0
- data/spec/models/list_broadcasts200_response_spec.rb +48 -0
- data/spec/models/list_sequences200_response_sequences_inner_spec.rb +124 -0
- data/spec/models/list_sequences200_response_spec.rb +48 -0
- data/spec/models/send_broadcast200_response_spec.rb +64 -0
- metadata +21 -1
|
@@ -109,7 +109,7 @@ describe 'SequencesApi' do
|
|
|
109
109
|
# @option opts [String] :status
|
|
110
110
|
# @option opts [Integer] :limit
|
|
111
111
|
# @option opts [Integer] :skip
|
|
112
|
-
# @return [
|
|
112
|
+
# @return [ListSequences200Response]
|
|
113
113
|
describe 'list_sequences test' do
|
|
114
114
|
it 'should work' do
|
|
115
115
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
@@ -0,0 +1,136 @@
|
|
|
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::ListBroadcasts200ResponseBroadcastsInner
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe Late::ListBroadcasts200ResponseBroadcastsInner do
|
|
21
|
+
#let(:instance) { Late::ListBroadcasts200ResponseBroadcastsInner.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of ListBroadcasts200ResponseBroadcastsInner' do
|
|
24
|
+
it 'should create an instance of ListBroadcasts200ResponseBroadcastsInner' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(Late::ListBroadcasts200ResponseBroadcastsInner)
|
|
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 "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
|
+
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 "platform"' do
|
|
49
|
+
it 'should work' do
|
|
50
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
51
|
+
end
|
|
52
|
+
end
|
|
53
|
+
|
|
54
|
+
describe 'test attribute "account_id"' do
|
|
55
|
+
it 'should work' do
|
|
56
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
57
|
+
end
|
|
58
|
+
end
|
|
59
|
+
|
|
60
|
+
describe 'test attribute "account_name"' do
|
|
61
|
+
it 'should work' do
|
|
62
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
63
|
+
end
|
|
64
|
+
end
|
|
65
|
+
|
|
66
|
+
describe 'test attribute "status"' do
|
|
67
|
+
it 'should work' do
|
|
68
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
69
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["draft", "scheduled", "sending", "completed", "failed", "cancelled"])
|
|
70
|
+
# validator.allowable_values.each do |value|
|
|
71
|
+
# expect { instance.status = value }.not_to raise_error
|
|
72
|
+
# end
|
|
73
|
+
end
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
describe 'test attribute "message_preview"' do
|
|
77
|
+
it 'should work' do
|
|
78
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
79
|
+
end
|
|
80
|
+
end
|
|
81
|
+
|
|
82
|
+
describe 'test attribute "scheduled_at"' 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 "started_at"' 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
|
+
|
|
94
|
+
describe 'test attribute "completed_at"' do
|
|
95
|
+
it 'should work' do
|
|
96
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
97
|
+
end
|
|
98
|
+
end
|
|
99
|
+
|
|
100
|
+
describe 'test attribute "recipient_count"' do
|
|
101
|
+
it 'should work' do
|
|
102
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
103
|
+
end
|
|
104
|
+
end
|
|
105
|
+
|
|
106
|
+
describe 'test attribute "sent_count"' do
|
|
107
|
+
it 'should work' do
|
|
108
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
109
|
+
end
|
|
110
|
+
end
|
|
111
|
+
|
|
112
|
+
describe 'test attribute "delivered_count"' do
|
|
113
|
+
it 'should work' do
|
|
114
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
115
|
+
end
|
|
116
|
+
end
|
|
117
|
+
|
|
118
|
+
describe 'test attribute "read_count"' do
|
|
119
|
+
it 'should work' do
|
|
120
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
121
|
+
end
|
|
122
|
+
end
|
|
123
|
+
|
|
124
|
+
describe 'test attribute "failed_count"' do
|
|
125
|
+
it 'should work' do
|
|
126
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
127
|
+
end
|
|
128
|
+
end
|
|
129
|
+
|
|
130
|
+
describe 'test attribute "created_at"' do
|
|
131
|
+
it 'should work' do
|
|
132
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
133
|
+
end
|
|
134
|
+
end
|
|
135
|
+
|
|
136
|
+
end
|
|
@@ -0,0 +1,48 @@
|
|
|
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::ListBroadcasts200Response
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe Late::ListBroadcasts200Response do
|
|
21
|
+
#let(:instance) { Late::ListBroadcasts200Response.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of ListBroadcasts200Response' do
|
|
24
|
+
it 'should create an instance of ListBroadcasts200Response' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(Late::ListBroadcasts200Response)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test attribute "success"' 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 "broadcasts"' 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 "pagination"' 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
|
+
end
|
|
@@ -0,0 +1,124 @@
|
|
|
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::ListSequences200ResponseSequencesInner
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe Late::ListSequences200ResponseSequencesInner do
|
|
21
|
+
#let(:instance) { Late::ListSequences200ResponseSequencesInner.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of ListSequences200ResponseSequencesInner' do
|
|
24
|
+
it 'should create an instance of ListSequences200ResponseSequencesInner' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(Late::ListSequences200ResponseSequencesInner)
|
|
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 "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
|
+
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 "platform"' do
|
|
49
|
+
it 'should work' do
|
|
50
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
51
|
+
end
|
|
52
|
+
end
|
|
53
|
+
|
|
54
|
+
describe 'test attribute "account_id"' do
|
|
55
|
+
it 'should work' do
|
|
56
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
57
|
+
end
|
|
58
|
+
end
|
|
59
|
+
|
|
60
|
+
describe 'test attribute "account_name"' do
|
|
61
|
+
it 'should work' do
|
|
62
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
63
|
+
end
|
|
64
|
+
end
|
|
65
|
+
|
|
66
|
+
describe 'test attribute "message_preview"' do
|
|
67
|
+
it 'should work' do
|
|
68
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
69
|
+
end
|
|
70
|
+
end
|
|
71
|
+
|
|
72
|
+
describe 'test attribute "status"' do
|
|
73
|
+
it 'should work' do
|
|
74
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
75
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["draft", "active", "paused"])
|
|
76
|
+
# validator.allowable_values.each do |value|
|
|
77
|
+
# expect { instance.status = value }.not_to raise_error
|
|
78
|
+
# end
|
|
79
|
+
end
|
|
80
|
+
end
|
|
81
|
+
|
|
82
|
+
describe 'test attribute "steps_count"' 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 "exit_on_reply"' 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
|
+
|
|
94
|
+
describe 'test attribute "exit_on_unsubscribe"' do
|
|
95
|
+
it 'should work' do
|
|
96
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
97
|
+
end
|
|
98
|
+
end
|
|
99
|
+
|
|
100
|
+
describe 'test attribute "total_enrolled"' do
|
|
101
|
+
it 'should work' do
|
|
102
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
103
|
+
end
|
|
104
|
+
end
|
|
105
|
+
|
|
106
|
+
describe 'test attribute "total_completed"' do
|
|
107
|
+
it 'should work' do
|
|
108
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
109
|
+
end
|
|
110
|
+
end
|
|
111
|
+
|
|
112
|
+
describe 'test attribute "total_exited"' do
|
|
113
|
+
it 'should work' do
|
|
114
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
115
|
+
end
|
|
116
|
+
end
|
|
117
|
+
|
|
118
|
+
describe 'test attribute "created_at"' do
|
|
119
|
+
it 'should work' do
|
|
120
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
121
|
+
end
|
|
122
|
+
end
|
|
123
|
+
|
|
124
|
+
end
|
|
@@ -0,0 +1,48 @@
|
|
|
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::ListSequences200Response
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe Late::ListSequences200Response do
|
|
21
|
+
#let(:instance) { Late::ListSequences200Response.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of ListSequences200Response' do
|
|
24
|
+
it 'should create an instance of ListSequences200Response' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(Late::ListSequences200Response)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test attribute "success"' 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 "sequences"' 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 "pagination"' 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
|
+
end
|
|
@@ -0,0 +1,64 @@
|
|
|
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::SendBroadcast200Response
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe Late::SendBroadcast200Response do
|
|
21
|
+
#let(:instance) { Late::SendBroadcast200Response.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of SendBroadcast200Response' do
|
|
24
|
+
it 'should create an instance of SendBroadcast200Response' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(Late::SendBroadcast200Response)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test attribute "success"' 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 "status"' do
|
|
37
|
+
it 'should work' do
|
|
38
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
39
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["sending", "completed", "failed"])
|
|
40
|
+
# validator.allowable_values.each do |value|
|
|
41
|
+
# expect { instance.status = value }.not_to raise_error
|
|
42
|
+
# end
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
describe 'test attribute "sent"' 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 "failed"' 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 "recipient_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
|
+
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.76
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- OpenAPI-Generator
|
|
@@ -398,6 +398,8 @@ files:
|
|
|
398
398
|
- docs/ListAccountGroups200ResponseGroupsInner.md
|
|
399
399
|
- docs/ListAccounts200Response.md
|
|
400
400
|
- docs/ListApiKeys200Response.md
|
|
401
|
+
- docs/ListBroadcasts200Response.md
|
|
402
|
+
- docs/ListBroadcasts200ResponseBroadcastsInner.md
|
|
401
403
|
- docs/ListCommentAutomations200Response.md
|
|
402
404
|
- docs/ListCommentAutomations200ResponseAutomationsInner.md
|
|
403
405
|
- docs/ListCommentAutomations200ResponseAutomationsInnerStats.md
|
|
@@ -433,6 +435,8 @@ files:
|
|
|
433
435
|
- docs/ListQueueSlots200Response.md
|
|
434
436
|
- docs/ListQueueSlots200ResponseOneOf.md
|
|
435
437
|
- docs/ListQueueSlots200ResponseOneOf1.md
|
|
438
|
+
- docs/ListSequences200Response.md
|
|
439
|
+
- docs/ListSequences200ResponseSequencesInner.md
|
|
436
440
|
- docs/ListSnapchatProfiles200Response.md
|
|
437
441
|
- docs/ListSnapchatProfiles200ResponsePublicProfilesInner.md
|
|
438
442
|
- docs/ListUsers200Response.md
|
|
@@ -531,6 +535,7 @@ files:
|
|
|
531
535
|
- docs/SelectSnapchatProfile200ResponseAccount.md
|
|
532
536
|
- docs/SelectSnapchatProfileRequest.md
|
|
533
537
|
- docs/SelectSnapchatProfileRequestSelectedPublicProfile.md
|
|
538
|
+
- docs/SendBroadcast200Response.md
|
|
534
539
|
- docs/SendInboxMessage200Response.md
|
|
535
540
|
- docs/SendInboxMessage200ResponseData.md
|
|
536
541
|
- docs/SendInboxMessage400Response.md
|
|
@@ -1052,6 +1057,8 @@ files:
|
|
|
1052
1057
|
- lib/late-sdk/models/list_account_groups200_response_groups_inner.rb
|
|
1053
1058
|
- lib/late-sdk/models/list_accounts200_response.rb
|
|
1054
1059
|
- lib/late-sdk/models/list_api_keys200_response.rb
|
|
1060
|
+
- lib/late-sdk/models/list_broadcasts200_response.rb
|
|
1061
|
+
- lib/late-sdk/models/list_broadcasts200_response_broadcasts_inner.rb
|
|
1055
1062
|
- lib/late-sdk/models/list_comment_automations200_response.rb
|
|
1056
1063
|
- lib/late-sdk/models/list_comment_automations200_response_automations_inner.rb
|
|
1057
1064
|
- lib/late-sdk/models/list_comment_automations200_response_automations_inner_stats.rb
|
|
@@ -1087,6 +1094,8 @@ files:
|
|
|
1087
1094
|
- lib/late-sdk/models/list_queue_slots200_response.rb
|
|
1088
1095
|
- lib/late-sdk/models/list_queue_slots200_response_one_of.rb
|
|
1089
1096
|
- lib/late-sdk/models/list_queue_slots200_response_one_of1.rb
|
|
1097
|
+
- lib/late-sdk/models/list_sequences200_response.rb
|
|
1098
|
+
- lib/late-sdk/models/list_sequences200_response_sequences_inner.rb
|
|
1090
1099
|
- lib/late-sdk/models/list_snapchat_profiles200_response.rb
|
|
1091
1100
|
- lib/late-sdk/models/list_snapchat_profiles200_response_public_profiles_inner.rb
|
|
1092
1101
|
- lib/late-sdk/models/list_users200_response.rb
|
|
@@ -1177,6 +1186,7 @@ files:
|
|
|
1177
1186
|
- lib/late-sdk/models/select_snapchat_profile200_response_account.rb
|
|
1178
1187
|
- lib/late-sdk/models/select_snapchat_profile_request.rb
|
|
1179
1188
|
- lib/late-sdk/models/select_snapchat_profile_request_selected_public_profile.rb
|
|
1189
|
+
- lib/late-sdk/models/send_broadcast200_response.rb
|
|
1180
1190
|
- lib/late-sdk/models/send_inbox_message200_response.rb
|
|
1181
1191
|
- lib/late-sdk/models/send_inbox_message200_response_data.rb
|
|
1182
1192
|
- lib/late-sdk/models/send_inbox_message400_response.rb
|
|
@@ -1686,6 +1696,8 @@ files:
|
|
|
1686
1696
|
- spec/models/list_account_groups200_response_spec.rb
|
|
1687
1697
|
- spec/models/list_accounts200_response_spec.rb
|
|
1688
1698
|
- spec/models/list_api_keys200_response_spec.rb
|
|
1699
|
+
- spec/models/list_broadcasts200_response_broadcasts_inner_spec.rb
|
|
1700
|
+
- spec/models/list_broadcasts200_response_spec.rb
|
|
1689
1701
|
- spec/models/list_comment_automations200_response_automations_inner_spec.rb
|
|
1690
1702
|
- spec/models/list_comment_automations200_response_automations_inner_stats_spec.rb
|
|
1691
1703
|
- spec/models/list_comment_automations200_response_spec.rb
|
|
@@ -1721,6 +1733,8 @@ files:
|
|
|
1721
1733
|
- spec/models/list_queue_slots200_response_one_of1_spec.rb
|
|
1722
1734
|
- spec/models/list_queue_slots200_response_one_of_spec.rb
|
|
1723
1735
|
- spec/models/list_queue_slots200_response_spec.rb
|
|
1736
|
+
- spec/models/list_sequences200_response_sequences_inner_spec.rb
|
|
1737
|
+
- spec/models/list_sequences200_response_spec.rb
|
|
1724
1738
|
- spec/models/list_snapchat_profiles200_response_public_profiles_inner_spec.rb
|
|
1725
1739
|
- spec/models/list_snapchat_profiles200_response_spec.rb
|
|
1726
1740
|
- spec/models/list_users200_response_spec.rb
|
|
@@ -1811,6 +1825,7 @@ files:
|
|
|
1811
1825
|
- spec/models/select_snapchat_profile200_response_spec.rb
|
|
1812
1826
|
- spec/models/select_snapchat_profile_request_selected_public_profile_spec.rb
|
|
1813
1827
|
- spec/models/select_snapchat_profile_request_spec.rb
|
|
1828
|
+
- spec/models/send_broadcast200_response_spec.rb
|
|
1814
1829
|
- spec/models/send_inbox_message200_response_data_spec.rb
|
|
1815
1830
|
- spec/models/send_inbox_message200_response_spec.rb
|
|
1816
1831
|
- spec/models/send_inbox_message400_response_spec.rb
|
|
@@ -2082,6 +2097,7 @@ test_files:
|
|
|
2082
2097
|
- spec/models/webhook_payload_comment_comment_author_spec.rb
|
|
2083
2098
|
- spec/models/webhook_payload_message_metadata_spec.rb
|
|
2084
2099
|
- spec/models/profile_get_response_spec.rb
|
|
2100
|
+
- spec/models/list_sequences200_response_sequences_inner_spec.rb
|
|
2085
2101
|
- spec/models/create_invite_token_request_spec.rb
|
|
2086
2102
|
- spec/models/get_post_timeline400_response_spec.rb
|
|
2087
2103
|
- spec/models/download_response_spec.rb
|
|
@@ -2382,10 +2398,12 @@ test_files:
|
|
|
2382
2398
|
- spec/models/analytics_list_response_spec.rb
|
|
2383
2399
|
- spec/models/get_google_business_reviews200_response_reviews_inner_review_reply_spec.rb
|
|
2384
2400
|
- spec/models/linked_in_aggregate_analytics_daily_response_analytics_impressions_inner_spec.rb
|
|
2401
|
+
- spec/models/list_broadcasts200_response_broadcasts_inner_spec.rb
|
|
2385
2402
|
- spec/models/send_private_reply_to_comment_request_spec.rb
|
|
2386
2403
|
- spec/models/select_snapchat_profile_request_spec.rb
|
|
2387
2404
|
- spec/models/get_instagram_account_insights404_response_spec.rb
|
|
2388
2405
|
- spec/models/social_account_profile_id_spec.rb
|
|
2406
|
+
- spec/models/send_broadcast200_response_spec.rb
|
|
2389
2407
|
- spec/models/create_post429_response_spec.rb
|
|
2390
2408
|
- spec/models/list_inbox_comments200_response_data_inner_spec.rb
|
|
2391
2409
|
- spec/models/get_linked_in_aggregate_analytics402_response_spec.rb
|
|
@@ -2466,6 +2484,7 @@ test_files:
|
|
|
2466
2484
|
- spec/models/bulk_upload_posts200_response_spec.rb
|
|
2467
2485
|
- spec/models/get_whats_app_groups200_response_spec.rb
|
|
2468
2486
|
- spec/models/recycling_config_spec.rb
|
|
2487
|
+
- spec/models/list_broadcasts200_response_spec.rb
|
|
2469
2488
|
- spec/models/update_inbox_conversation_request_spec.rb
|
|
2470
2489
|
- spec/models/connect_bluesky_credentials200_response_spec.rb
|
|
2471
2490
|
- spec/models/send_inbox_message_request_spec.rb
|
|
@@ -2556,6 +2575,7 @@ test_files:
|
|
|
2556
2575
|
- spec/models/bulk_create_contacts_request_spec.rb
|
|
2557
2576
|
- spec/models/list_google_business_media200_response_media_items_inner_spec.rb
|
|
2558
2577
|
- spec/models/update_account_request_spec.rb
|
|
2578
|
+
- spec/models/list_sequences200_response_spec.rb
|
|
2559
2579
|
- spec/models/set_telegram_commands_request_commands_inner_spec.rb
|
|
2560
2580
|
- spec/models/list_connection_logs200_response_spec.rb
|
|
2561
2581
|
- spec/models/download_format_spec.rb
|