late-sdk 0.0.586 → 0.0.587
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/SearchTweets200Response.md +24 -0
- data/docs/SearchTweets200ResponseMeta.md +24 -0
- data/docs/SearchTweets200ResponseTweetsInner.md +40 -0
- data/docs/SearchTweets200ResponseTweetsInnerAuthor.md +26 -0
- data/docs/TwitterEngagementApi.md +88 -0
- data/lib/zernio-sdk/api/twitter_engagement_api.rb +122 -0
- data/lib/zernio-sdk/models/search_tweets200_response.rb +176 -0
- data/lib/zernio-sdk/models/search_tweets200_response_meta.rb +176 -0
- data/lib/zernio-sdk/models/search_tweets200_response_tweets_inner.rb +248 -0
- data/lib/zernio-sdk/models/search_tweets200_response_tweets_inner_author.rb +183 -0
- data/lib/zernio-sdk/version.rb +1 -1
- data/lib/zernio-sdk.rb +4 -0
- data/openapi.yaml +105 -0
- data/spec/api/twitter_engagement_api_spec.rb +20 -0
- data/spec/models/search_tweets200_response_meta_spec.rb +54 -0
- data/spec/models/search_tweets200_response_spec.rb +54 -0
- data/spec/models/search_tweets200_response_tweets_inner_author_spec.rb +60 -0
- data/spec/models/search_tweets200_response_tweets_inner_spec.rb +102 -0
- data/zernio-sdk-0.0.587.gem +0 -0
- metadata +18 -2
- data/zernio-sdk-0.0.586.gem +0 -0
data/openapi.yaml
CHANGED
|
@@ -24556,6 +24556,111 @@ paths:
|
|
|
24556
24556
|
'401': { $ref: '#/components/responses/Unauthorized' }
|
|
24557
24557
|
'404': { description: Account not found }
|
|
24558
24558
|
|
|
24559
|
+
/v1/twitter/search:
|
|
24560
|
+
get:
|
|
24561
|
+
operationId: searchTweets
|
|
24562
|
+
summary: Search recent tweets
|
|
24563
|
+
description: |
|
|
24564
|
+
Search public tweets from the last 7 days matching an X search query, e.g. to discover tweets to reply to.
|
|
24565
|
+
The query string is passed through to X unchanged and supports X's search operators
|
|
24566
|
+
(`from:user`, `-is:retweet`, `is:reply`, `lang:en`, `"exact phrase"`, `conversation_id:123`, boolean `OR`, ...).
|
|
24567
|
+
Note that standalone operators like `is:` / `has:` / `lang:` must be combined with a keyword or `from:` clause.
|
|
24568
|
+
|
|
24569
|
+
To reply to a found tweet, pass its `id` as the twitter platform entry's `platformSpecificData.replyToTweetId` when creating a post.
|
|
24570
|
+
|
|
24571
|
+
Rate limit: 300 requests per 15-min window per connected account.
|
|
24572
|
+
tags: [Twitter Engagement]
|
|
24573
|
+
security: [{ bearerAuth: [] }]
|
|
24574
|
+
parameters:
|
|
24575
|
+
- name: accountId
|
|
24576
|
+
in: query
|
|
24577
|
+
required: true
|
|
24578
|
+
schema: { type: string }
|
|
24579
|
+
description: The social account ID
|
|
24580
|
+
- name: query
|
|
24581
|
+
in: query
|
|
24582
|
+
required: true
|
|
24583
|
+
schema: { type: string, minLength: 1, maxLength: 512 }
|
|
24584
|
+
description: 'X search query, max 512 characters. Operators are passed through unchanged; X rejects malformed queries with a 400.'
|
|
24585
|
+
- name: limit
|
|
24586
|
+
in: query
|
|
24587
|
+
schema: { type: integer, minimum: 10, maximum: 100, default: 10 }
|
|
24588
|
+
description: 'Results per page. X requires a minimum of 10; values below 10 are rejected.'
|
|
24589
|
+
- name: sinceId
|
|
24590
|
+
in: query
|
|
24591
|
+
schema: { type: string, pattern: '^[0-9]{1,19}$' }
|
|
24592
|
+
description: 'Only return tweets with an ID greater than (more recent than) this numeric tweet ID. Non-numeric values are rejected with 400.'
|
|
24593
|
+
- name: untilId
|
|
24594
|
+
in: query
|
|
24595
|
+
schema: { type: string, pattern: '^[0-9]{1,19}$' }
|
|
24596
|
+
description: 'Only return tweets with an ID less than (older than) this numeric tweet ID. Non-numeric values are rejected with 400.'
|
|
24597
|
+
- name: startTime
|
|
24598
|
+
in: query
|
|
24599
|
+
schema: { type: string, format: date-time }
|
|
24600
|
+
description: 'Oldest UTC timestamp (ISO 8601, inclusive), within the last 7 days'
|
|
24601
|
+
- name: endTime
|
|
24602
|
+
in: query
|
|
24603
|
+
schema: { type: string, format: date-time }
|
|
24604
|
+
description: 'Newest UTC timestamp (ISO 8601, exclusive), within the last 7 days'
|
|
24605
|
+
- name: cursor
|
|
24606
|
+
in: query
|
|
24607
|
+
schema: { type: string }
|
|
24608
|
+
description: Pagination cursor from a previous response
|
|
24609
|
+
- name: sortOrder
|
|
24610
|
+
in: query
|
|
24611
|
+
schema: { type: string, enum: [recency, relevancy], default: recency }
|
|
24612
|
+
responses:
|
|
24613
|
+
'200':
|
|
24614
|
+
description: Matching tweets
|
|
24615
|
+
content:
|
|
24616
|
+
application/json:
|
|
24617
|
+
schema:
|
|
24618
|
+
type: object
|
|
24619
|
+
properties:
|
|
24620
|
+
status: { type: string, example: success }
|
|
24621
|
+
tweets:
|
|
24622
|
+
type: array
|
|
24623
|
+
items:
|
|
24624
|
+
type: object
|
|
24625
|
+
properties:
|
|
24626
|
+
id: { type: string }
|
|
24627
|
+
text: { type: string }
|
|
24628
|
+
created: { type: string, format: date-time }
|
|
24629
|
+
conversationId: { type: string }
|
|
24630
|
+
inReplyToTweetId: { type: [string, "null"], description: 'Parent tweet ID when the result is itself a reply' }
|
|
24631
|
+
lang: { type: string }
|
|
24632
|
+
author:
|
|
24633
|
+
type: object
|
|
24634
|
+
properties:
|
|
24635
|
+
id: { type: string }
|
|
24636
|
+
username: { type: string }
|
|
24637
|
+
displayName: { type: string }
|
|
24638
|
+
avatar: { type: string }
|
|
24639
|
+
verifiedType: { type: string }
|
|
24640
|
+
likeCount: { type: integer }
|
|
24641
|
+
replyCount: { type: integer }
|
|
24642
|
+
retweetCount: { type: integer }
|
|
24643
|
+
quoteCount: { type: integer }
|
|
24644
|
+
platform: { type: string, example: twitter }
|
|
24645
|
+
pagination:
|
|
24646
|
+
type: object
|
|
24647
|
+
properties:
|
|
24648
|
+
hasMore: { type: boolean }
|
|
24649
|
+
cursor: { type: [string, "null"] }
|
|
24650
|
+
meta:
|
|
24651
|
+
type: object
|
|
24652
|
+
properties:
|
|
24653
|
+
resultCount: { type: integer }
|
|
24654
|
+
newestId: { type: [string, "null"] }
|
|
24655
|
+
oldestId: { type: [string, "null"] }
|
|
24656
|
+
platform: { type: string, example: twitter }
|
|
24657
|
+
'400': { description: 'Bad request (invalid params, or X rejected the query as malformed)' }
|
|
24658
|
+
'401': { $ref: '#/components/responses/Unauthorized' }
|
|
24659
|
+
'402': { description: 'X API spend cap reached for this billing period' }
|
|
24660
|
+
'403': { description: 'X analytics capability not enabled for this account (code X_ANALYTICS_NOT_ENABLED)' }
|
|
24661
|
+
'404': { description: Account not found }
|
|
24662
|
+
'429': { description: 'X search rate limit exceeded (300 requests per 15 minutes)' }
|
|
24663
|
+
|
|
24559
24664
|
/v1/inbox/mentions:
|
|
24560
24665
|
get:
|
|
24561
24666
|
operationId: listInboxMentions
|
|
@@ -81,6 +81,26 @@ describe 'TwitterEngagementApi' do
|
|
|
81
81
|
end
|
|
82
82
|
end
|
|
83
83
|
|
|
84
|
+
# unit tests for search_tweets
|
|
85
|
+
# Search recent tweets
|
|
86
|
+
# Search public tweets from the last 7 days matching an X search query, e.g. to discover tweets to reply to. The query string is passed through to X unchanged and supports X's search operators (`from:user`, `-is:retweet`, `is:reply`, `lang:en`, `\"exact phrase\"`, `conversation_id:123`, boolean `OR`, ...). Note that standalone operators like `is:` / `has:` / `lang:` must be combined with a keyword or `from:` clause. To reply to a found tweet, pass its `id` as the twitter platform entry's `platformSpecificData.replyToTweetId` when creating a post. Rate limit: 300 requests per 15-min window per connected account.
|
|
87
|
+
# @param account_id The social account ID
|
|
88
|
+
# @param query X search query, max 512 characters. Operators are passed through unchanged; X rejects malformed queries with a 400.
|
|
89
|
+
# @param [Hash] opts the optional parameters
|
|
90
|
+
# @option opts [Integer] :limit Results per page. X requires a minimum of 10; values below 10 are rejected.
|
|
91
|
+
# @option opts [String] :since_id Only return tweets with an ID greater than (more recent than) this numeric tweet ID. Non-numeric values are rejected with 400.
|
|
92
|
+
# @option opts [String] :until_id Only return tweets with an ID less than (older than) this numeric tweet ID. Non-numeric values are rejected with 400.
|
|
93
|
+
# @option opts [Time] :start_time Oldest UTC timestamp (ISO 8601, inclusive), within the last 7 days
|
|
94
|
+
# @option opts [Time] :end_time Newest UTC timestamp (ISO 8601, exclusive), within the last 7 days
|
|
95
|
+
# @option opts [String] :cursor Pagination cursor from a previous response
|
|
96
|
+
# @option opts [String] :sort_order
|
|
97
|
+
# @return [SearchTweets200Response]
|
|
98
|
+
describe 'search_tweets test' 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
|
+
|
|
84
104
|
# unit tests for undo_retweet
|
|
85
105
|
# Undo retweet
|
|
86
106
|
# Undo a retweet (un-repost a tweet).
|
|
@@ -0,0 +1,54 @@
|
|
|
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.4
|
|
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 Zernio::SearchTweets200ResponseMeta
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe Zernio::SearchTweets200ResponseMeta do
|
|
21
|
+
#let(:instance) { Zernio::SearchTweets200ResponseMeta.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of SearchTweets200ResponseMeta' do
|
|
24
|
+
it 'should create an instance of SearchTweets200ResponseMeta' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(Zernio::SearchTweets200ResponseMeta)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test attribute "result_count"' 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 "newest_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
|
+
describe 'test attribute "oldest_id"' 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
|
+
end
|
|
@@ -0,0 +1,54 @@
|
|
|
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.4
|
|
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 Zernio::SearchTweets200Response
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe Zernio::SearchTweets200Response do
|
|
21
|
+
#let(:instance) { Zernio::SearchTweets200Response.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of SearchTweets200Response' do
|
|
24
|
+
it 'should create an instance of SearchTweets200Response' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(Zernio::SearchTweets200Response)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test attribute "status"' 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 "tweets"' 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
|
+
describe 'test attribute "meta"' 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
|
+
end
|
|
@@ -0,0 +1,60 @@
|
|
|
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.4
|
|
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 Zernio::SearchTweets200ResponseTweetsInnerAuthor
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe Zernio::SearchTweets200ResponseTweetsInnerAuthor do
|
|
21
|
+
#let(:instance) { Zernio::SearchTweets200ResponseTweetsInnerAuthor.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of SearchTweets200ResponseTweetsInnerAuthor' do
|
|
24
|
+
it 'should create an instance of SearchTweets200ResponseTweetsInnerAuthor' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(Zernio::SearchTweets200ResponseTweetsInnerAuthor)
|
|
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 "username"' 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 "display_name"' 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 "avatar"' 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 "verified_type"' 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
|
+
end
|
|
@@ -0,0 +1,102 @@
|
|
|
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.4
|
|
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 Zernio::SearchTweets200ResponseTweetsInner
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe Zernio::SearchTweets200ResponseTweetsInner do
|
|
21
|
+
#let(:instance) { Zernio::SearchTweets200ResponseTweetsInner.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of SearchTweets200ResponseTweetsInner' do
|
|
24
|
+
it 'should create an instance of SearchTweets200ResponseTweetsInner' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(Zernio::SearchTweets200ResponseTweetsInner)
|
|
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 "text"' 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 "created"' 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 "conversation_id"' 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 "in_reply_to_tweet_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 "lang"' 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 "author"' 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 "like_count"' do
|
|
73
|
+
it 'should work' do
|
|
74
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
75
|
+
end
|
|
76
|
+
end
|
|
77
|
+
|
|
78
|
+
describe 'test attribute "reply_count"' do
|
|
79
|
+
it 'should work' do
|
|
80
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
81
|
+
end
|
|
82
|
+
end
|
|
83
|
+
|
|
84
|
+
describe 'test attribute "retweet_count"' do
|
|
85
|
+
it 'should work' do
|
|
86
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
87
|
+
end
|
|
88
|
+
end
|
|
89
|
+
|
|
90
|
+
describe 'test attribute "quote_count"' do
|
|
91
|
+
it 'should work' do
|
|
92
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
93
|
+
end
|
|
94
|
+
end
|
|
95
|
+
|
|
96
|
+
describe 'test attribute "platform"' do
|
|
97
|
+
it 'should work' do
|
|
98
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
99
|
+
end
|
|
100
|
+
end
|
|
101
|
+
|
|
102
|
+
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.587
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- OpenAPI-Generator
|
|
@@ -1172,6 +1172,10 @@ files:
|
|
|
1172
1172
|
- docs/SearchInboxConversations200ResponseMetaAccountsSkippedInner.md
|
|
1173
1173
|
- docs/SearchInboxConversations200ResponseMetaFailedAccountsInner.md
|
|
1174
1174
|
- docs/SearchReddit200Response.md
|
|
1175
|
+
- docs/SearchTweets200Response.md
|
|
1176
|
+
- docs/SearchTweets200ResponseMeta.md
|
|
1177
|
+
- docs/SearchTweets200ResponseTweetsInner.md
|
|
1178
|
+
- docs/SearchTweets200ResponseTweetsInnerAuthor.md
|
|
1175
1179
|
- docs/SelectFacebookPage200Response.md
|
|
1176
1180
|
- docs/SelectFacebookPage200ResponseAccount.md
|
|
1177
1181
|
- docs/SelectFacebookPage409Response.md
|
|
@@ -2770,6 +2774,10 @@ files:
|
|
|
2770
2774
|
- lib/zernio-sdk/models/search_inbox_conversations200_response_meta_accounts_skipped_inner.rb
|
|
2771
2775
|
- lib/zernio-sdk/models/search_inbox_conversations200_response_meta_failed_accounts_inner.rb
|
|
2772
2776
|
- lib/zernio-sdk/models/search_reddit200_response.rb
|
|
2777
|
+
- lib/zernio-sdk/models/search_tweets200_response.rb
|
|
2778
|
+
- lib/zernio-sdk/models/search_tweets200_response_meta.rb
|
|
2779
|
+
- lib/zernio-sdk/models/search_tweets200_response_tweets_inner.rb
|
|
2780
|
+
- lib/zernio-sdk/models/search_tweets200_response_tweets_inner_author.rb
|
|
2773
2781
|
- lib/zernio-sdk/models/select_facebook_page200_response.rb
|
|
2774
2782
|
- lib/zernio-sdk/models/select_facebook_page200_response_account.rb
|
|
2775
2783
|
- lib/zernio-sdk/models/select_facebook_page409_response.rb
|
|
@@ -4345,6 +4353,10 @@ files:
|
|
|
4345
4353
|
- spec/models/search_inbox_conversations200_response_meta_spec.rb
|
|
4346
4354
|
- spec/models/search_inbox_conversations200_response_spec.rb
|
|
4347
4355
|
- spec/models/search_reddit200_response_spec.rb
|
|
4356
|
+
- spec/models/search_tweets200_response_meta_spec.rb
|
|
4357
|
+
- spec/models/search_tweets200_response_spec.rb
|
|
4358
|
+
- spec/models/search_tweets200_response_tweets_inner_author_spec.rb
|
|
4359
|
+
- spec/models/search_tweets200_response_tweets_inner_spec.rb
|
|
4348
4360
|
- spec/models/select_facebook_page200_response_account_spec.rb
|
|
4349
4361
|
- spec/models/select_facebook_page200_response_spec.rb
|
|
4350
4362
|
- spec/models/select_facebook_page409_response_spec.rb
|
|
@@ -4793,7 +4805,7 @@ files:
|
|
|
4793
4805
|
- spec/models/you_tube_video_retention_response_retention_curve_inner_spec.rb
|
|
4794
4806
|
- spec/models/you_tube_video_retention_response_spec.rb
|
|
4795
4807
|
- spec/spec_helper.rb
|
|
4796
|
-
- zernio-sdk-0.0.
|
|
4808
|
+
- zernio-sdk-0.0.587.gem
|
|
4797
4809
|
- zernio-sdk.gemspec
|
|
4798
4810
|
homepage: https://openapi-generator.tech
|
|
4799
4811
|
licenses:
|
|
@@ -5038,6 +5050,7 @@ test_files:
|
|
|
5038
5050
|
- spec/models/delete_sms_sender_id200_response_spec.rb
|
|
5039
5051
|
- spec/models/list_account_groups200_response_spec.rb
|
|
5040
5052
|
- spec/models/validate_subreddit200_response_one_of1_spec.rb
|
|
5053
|
+
- spec/models/search_tweets200_response_meta_spec.rb
|
|
5041
5054
|
- spec/models/validate_media200_response_platform_limits_value_spec.rb
|
|
5042
5055
|
- spec/models/accounts_list_response_spec.rb
|
|
5043
5056
|
- spec/models/purchase_whats_app_phone_number_request_spec.rb
|
|
@@ -5329,6 +5342,7 @@ test_files:
|
|
|
5329
5342
|
- spec/models/list_ad_audiences200_response_audiences_inner_spec.rb
|
|
5330
5343
|
- spec/models/inbox_webhook_account_spec.rb
|
|
5331
5344
|
- spec/models/delete_ad_campaign_request_spec.rb
|
|
5345
|
+
- spec/models/search_tweets200_response_tweets_inner_spec.rb
|
|
5332
5346
|
- spec/models/get_whats_app_number_info200_response_phone_throughput_spec.rb
|
|
5333
5347
|
- spec/models/create_tracking_tag_request_spec.rb
|
|
5334
5348
|
- spec/models/conversion_event_user_spec.rb
|
|
@@ -5402,6 +5416,7 @@ test_files:
|
|
|
5402
5416
|
- spec/models/webhook_payload_post_platform_account_spec.rb
|
|
5403
5417
|
- spec/models/get_sequence200_response_sequence_steps_inner_template_spec.rb
|
|
5404
5418
|
- spec/models/validate_post200_response_spec.rb
|
|
5419
|
+
- spec/models/search_tweets200_response_spec.rb
|
|
5405
5420
|
- spec/models/create_whats_app_template_request_library_template_button_inputs_inner_spec.rb
|
|
5406
5421
|
- spec/models/list_whats_app_conversions200_response_spec.rb
|
|
5407
5422
|
- spec/models/webhook_payload_review_new_account_spec.rb
|
|
@@ -5516,6 +5531,7 @@ test_files:
|
|
|
5516
5531
|
- spec/models/delete_inbox_comment200_response_spec.rb
|
|
5517
5532
|
- spec/models/update_inbox_conversation_request_spec.rb
|
|
5518
5533
|
- spec/models/send_inbox_message_request_spec.rb
|
|
5534
|
+
- spec/models/search_tweets200_response_tweets_inner_author_spec.rb
|
|
5519
5535
|
- spec/models/update_broadcast_request_template_spec.rb
|
|
5520
5536
|
- spec/models/get_account_health200_response_spec.rb
|
|
5521
5537
|
- spec/models/get_linked_in_bid_pricing200_response_pricing_suggested_bid_spec.rb
|
data/zernio-sdk-0.0.586.gem
DELETED
|
Binary file
|