late-sdk 0.0.74 → 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.
Files changed (32) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +5 -0
  3. data/docs/BroadcastsApi.md +14 -12
  4. data/docs/GetWhatsAppBroadcasts200ResponseBroadcastsInner.md +2 -0
  5. data/docs/ListBroadcasts200Response.md +22 -0
  6. data/docs/ListBroadcasts200ResponseBroadcastsInner.md +50 -0
  7. data/docs/ListSequences200Response.md +22 -0
  8. data/docs/ListSequences200ResponseSequencesInner.md +46 -0
  9. data/docs/SendBroadcast200Response.md +26 -0
  10. data/docs/SequencesApi.md +7 -6
  11. data/lib/late-sdk/api/broadcasts_api.rb +10 -10
  12. data/lib/late-sdk/api/sequences_api.rb +5 -5
  13. data/lib/late-sdk/models/get_whats_app_broadcasts200_response_broadcasts_inner.rb +11 -1
  14. data/lib/late-sdk/models/list_broadcasts200_response.rb +167 -0
  15. data/lib/late-sdk/models/list_broadcasts200_response_broadcasts_inner.rb +327 -0
  16. data/lib/late-sdk/models/list_sequences200_response.rb +167 -0
  17. data/lib/late-sdk/models/list_sequences200_response_sequences_inner.rb +309 -0
  18. data/lib/late-sdk/models/send_broadcast200_response.rb +221 -0
  19. data/lib/late-sdk/version.rb +1 -1
  20. data/lib/late-sdk.rb +5 -0
  21. data/openapi.yaml +85 -3
  22. data/spec/api/broadcasts_api_spec.rb +2 -2
  23. data/spec/api/sequences_api_spec.rb +1 -1
  24. data/spec/models/get_whats_app_broadcasts200_response_broadcasts_inner_spec.rb +6 -0
  25. data/spec/models/list_broadcasts200_response_broadcasts_inner_spec.rb +136 -0
  26. data/spec/models/list_broadcasts200_response_spec.rb +48 -0
  27. data/spec/models/list_sequences200_response_sequences_inner_spec.rb +124 -0
  28. data/spec/models/list_sequences200_response_spec.rb +48 -0
  29. data/spec/models/send_broadcast200_response_spec.rb +64 -0
  30. data/zernio-sdk-0.0.76.gem +0 -0
  31. metadata +22 -2
  32. data/zernio-sdk-0.0.74.gem +0 -0
@@ -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 [nil]
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/
@@ -61,6 +61,12 @@ describe Late::GetWhatsAppBroadcasts200ResponseBroadcastsInner do
61
61
  end
62
62
  end
63
63
 
64
+ describe 'test attribute "message_preview"' 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
+
64
70
  describe 'test attribute "recipient_count"' do
65
71
  it 'should work' do
66
72
  # 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
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.74
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
@@ -1053,6 +1058,8 @@ files:
1053
1058
  - lib/late-sdk/models/list_account_groups200_response_groups_inner.rb
1054
1059
  - lib/late-sdk/models/list_accounts200_response.rb
1055
1060
  - lib/late-sdk/models/list_api_keys200_response.rb
1061
+ - lib/late-sdk/models/list_broadcasts200_response.rb
1062
+ - lib/late-sdk/models/list_broadcasts200_response_broadcasts_inner.rb
1056
1063
  - lib/late-sdk/models/list_comment_automations200_response.rb
1057
1064
  - lib/late-sdk/models/list_comment_automations200_response_automations_inner.rb
1058
1065
  - lib/late-sdk/models/list_comment_automations200_response_automations_inner_stats.rb
@@ -1088,6 +1095,8 @@ files:
1088
1095
  - lib/late-sdk/models/list_queue_slots200_response.rb
1089
1096
  - lib/late-sdk/models/list_queue_slots200_response_one_of.rb
1090
1097
  - lib/late-sdk/models/list_queue_slots200_response_one_of1.rb
1098
+ - lib/late-sdk/models/list_sequences200_response.rb
1099
+ - lib/late-sdk/models/list_sequences200_response_sequences_inner.rb
1091
1100
  - lib/late-sdk/models/list_snapchat_profiles200_response.rb
1092
1101
  - lib/late-sdk/models/list_snapchat_profiles200_response_public_profiles_inner.rb
1093
1102
  - lib/late-sdk/models/list_users200_response.rb
@@ -1178,6 +1187,7 @@ files:
1178
1187
  - lib/late-sdk/models/select_snapchat_profile200_response_account.rb
1179
1188
  - lib/late-sdk/models/select_snapchat_profile_request.rb
1180
1189
  - lib/late-sdk/models/select_snapchat_profile_request_selected_public_profile.rb
1190
+ - lib/late-sdk/models/send_broadcast200_response.rb
1181
1191
  - lib/late-sdk/models/send_inbox_message200_response.rb
1182
1192
  - lib/late-sdk/models/send_inbox_message200_response_data.rb
1183
1193
  - lib/late-sdk/models/send_inbox_message400_response.rb
@@ -1687,6 +1697,8 @@ files:
1687
1697
  - spec/models/list_account_groups200_response_spec.rb
1688
1698
  - spec/models/list_accounts200_response_spec.rb
1689
1699
  - spec/models/list_api_keys200_response_spec.rb
1700
+ - spec/models/list_broadcasts200_response_broadcasts_inner_spec.rb
1701
+ - spec/models/list_broadcasts200_response_spec.rb
1690
1702
  - spec/models/list_comment_automations200_response_automations_inner_spec.rb
1691
1703
  - spec/models/list_comment_automations200_response_automations_inner_stats_spec.rb
1692
1704
  - spec/models/list_comment_automations200_response_spec.rb
@@ -1722,6 +1734,8 @@ files:
1722
1734
  - spec/models/list_queue_slots200_response_one_of1_spec.rb
1723
1735
  - spec/models/list_queue_slots200_response_one_of_spec.rb
1724
1736
  - spec/models/list_queue_slots200_response_spec.rb
1737
+ - spec/models/list_sequences200_response_sequences_inner_spec.rb
1738
+ - spec/models/list_sequences200_response_spec.rb
1725
1739
  - spec/models/list_snapchat_profiles200_response_public_profiles_inner_spec.rb
1726
1740
  - spec/models/list_snapchat_profiles200_response_spec.rb
1727
1741
  - spec/models/list_users200_response_spec.rb
@@ -1812,6 +1826,7 @@ files:
1812
1826
  - spec/models/select_snapchat_profile200_response_spec.rb
1813
1827
  - spec/models/select_snapchat_profile_request_selected_public_profile_spec.rb
1814
1828
  - spec/models/select_snapchat_profile_request_spec.rb
1829
+ - spec/models/send_broadcast200_response_spec.rb
1815
1830
  - spec/models/send_inbox_message200_response_data_spec.rb
1816
1831
  - spec/models/send_inbox_message200_response_spec.rb
1817
1832
  - spec/models/send_inbox_message400_response_spec.rb
@@ -1966,7 +1981,7 @@ files:
1966
1981
  - spec/models/you_tube_scope_missing_response_scope_status_spec.rb
1967
1982
  - spec/models/you_tube_scope_missing_response_spec.rb
1968
1983
  - spec/spec_helper.rb
1969
- - zernio-sdk-0.0.74.gem
1984
+ - zernio-sdk-0.0.76.gem
1970
1985
  homepage: https://openapi-generator.tech
1971
1986
  licenses:
1972
1987
  - Unlicense
@@ -2084,6 +2099,7 @@ test_files:
2084
2099
  - spec/models/webhook_payload_comment_comment_author_spec.rb
2085
2100
  - spec/models/webhook_payload_message_metadata_spec.rb
2086
2101
  - spec/models/profile_get_response_spec.rb
2102
+ - spec/models/list_sequences200_response_sequences_inner_spec.rb
2087
2103
  - spec/models/create_invite_token_request_spec.rb
2088
2104
  - spec/models/get_post_timeline400_response_spec.rb
2089
2105
  - spec/models/download_response_spec.rb
@@ -2384,10 +2400,12 @@ test_files:
2384
2400
  - spec/models/analytics_list_response_spec.rb
2385
2401
  - spec/models/get_google_business_reviews200_response_reviews_inner_review_reply_spec.rb
2386
2402
  - spec/models/linked_in_aggregate_analytics_daily_response_analytics_impressions_inner_spec.rb
2403
+ - spec/models/list_broadcasts200_response_broadcasts_inner_spec.rb
2387
2404
  - spec/models/send_private_reply_to_comment_request_spec.rb
2388
2405
  - spec/models/select_snapchat_profile_request_spec.rb
2389
2406
  - spec/models/get_instagram_account_insights404_response_spec.rb
2390
2407
  - spec/models/social_account_profile_id_spec.rb
2408
+ - spec/models/send_broadcast200_response_spec.rb
2391
2409
  - spec/models/create_post429_response_spec.rb
2392
2410
  - spec/models/list_inbox_comments200_response_data_inner_spec.rb
2393
2411
  - spec/models/get_linked_in_aggregate_analytics402_response_spec.rb
@@ -2468,6 +2486,7 @@ test_files:
2468
2486
  - spec/models/bulk_upload_posts200_response_spec.rb
2469
2487
  - spec/models/get_whats_app_groups200_response_spec.rb
2470
2488
  - spec/models/recycling_config_spec.rb
2489
+ - spec/models/list_broadcasts200_response_spec.rb
2471
2490
  - spec/models/update_inbox_conversation_request_spec.rb
2472
2491
  - spec/models/connect_bluesky_credentials200_response_spec.rb
2473
2492
  - spec/models/send_inbox_message_request_spec.rb
@@ -2558,6 +2577,7 @@ test_files:
2558
2577
  - spec/models/bulk_create_contacts_request_spec.rb
2559
2578
  - spec/models/list_google_business_media200_response_media_items_inner_spec.rb
2560
2579
  - spec/models/update_account_request_spec.rb
2580
+ - spec/models/list_sequences200_response_spec.rb
2561
2581
  - spec/models/set_telegram_commands_request_commands_inner_spec.rb
2562
2582
  - spec/models/list_connection_logs200_response_spec.rb
2563
2583
  - spec/models/download_format_spec.rb
Binary file