late-sdk 0.0.697 → 0.0.698
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 +8 -0
- data/docs/ConnectApi.md +155 -1
- data/docs/ListInstagramPages200Response.md +18 -0
- data/docs/ListInstagramPages200ResponsePagesInner.md +24 -0
- data/docs/ListInstagramPages200ResponsePagesInnerInstagramBusinessAccount.md +22 -0
- data/docs/SelectInstagramAccount200Response.md +22 -0
- data/docs/SelectInstagramAccount200ResponseAccount.md +30 -0
- data/docs/SelectInstagramAccountRequest.md +24 -0
- data/lib/zernio-sdk/api/connect_api.rb +146 -0
- data/lib/zernio-sdk/models/list_instagram_pages200_response.rb +149 -0
- data/lib/zernio-sdk/models/list_instagram_pages200_response_pages_inner.rb +177 -0
- data/lib/zernio-sdk/models/list_instagram_pages200_response_pages_inner_instagram_business_account.rb +167 -0
- data/lib/zernio-sdk/models/select_instagram_account200_response.rb +166 -0
- data/lib/zernio-sdk/models/select_instagram_account200_response_account.rb +249 -0
- data/lib/zernio-sdk/models/select_instagram_account_request.rb +229 -0
- data/lib/zernio-sdk/version.rb +1 -1
- data/lib/zernio-sdk.rb +6 -0
- data/openapi.yaml +147 -0
- data/spec/api/connect_api_spec.rb +26 -0
- data/spec/models/list_instagram_pages200_response_pages_inner_instagram_business_account_spec.rb +48 -0
- data/spec/models/list_instagram_pages200_response_pages_inner_spec.rb +54 -0
- data/spec/models/list_instagram_pages200_response_spec.rb +36 -0
- data/spec/models/select_instagram_account200_response_account_spec.rb +80 -0
- data/spec/models/select_instagram_account200_response_spec.rb +48 -0
- data/spec/models/select_instagram_account_request_spec.rb +54 -0
- data/zernio-sdk-0.0.698.gem +0 -0
- metadata +27 -3
- data/zernio-sdk-0.0.697.gem +0 -0
|
@@ -158,6 +158,7 @@ describe 'ConnectApi' do
|
|
|
158
158
|
# @param [Hash] opts the optional parameters
|
|
159
159
|
# @option opts [String] :redirect_url Your custom redirect URL after connection completes. Accepts an http(s) URL, a custom app scheme for mobile deeplinks (e.g. myapp://callback), or a relative path. Result params are appended with the URL API, so an existing query string is preserved. Standard mode appends connected={platform}&profileId=X&accountId=Y&username=Z. Headless mode appends OAuth data params for platforms requiring selection (e.g. LinkedIn orgs, Facebook pages). If no selection is needed, the account is created directly and the redirect includes accountId.
|
|
160
160
|
# @option opts [Boolean] :headless When true, the user is redirected to your redirect_url with raw OAuth data (code, state) instead of Zernio's default account selection UI. Use this to build a custom connect experience.
|
|
161
|
+
# @option opts [String] :login_method Instagram only. Which of the two Instagram connection methods to use. Ignored for every other platform. `instagram_login` (the default, and what you get if you omit this): the Instagram Login dialog. The user authorizes their Instagram professional account directly, no Facebook Page required. `facebook_login`: the Facebook Login dialog, i.e. \"Instagram API with Facebook Login\". The user authorizes a Facebook Page that has a linked Instagram professional account, and every API call for that account then runs through the Page. Use this when the customer manages Instagram through a Page and expects the Facebook consent screen. Because the user has to pick which Page to connect, the callback continues at the account-selection step, `/v1/connect/instagram/select-account`. `facebook_login` does not support `headless=true`: its callback always redirects to Zernio's hosted account-selection page. Pass a `redirect_url` and let the standard flow return the user to you.
|
|
161
162
|
# @return [GetConnectUrl200Response]
|
|
162
163
|
describe 'get_connect_url test' do
|
|
163
164
|
it 'should work' do
|
|
@@ -345,6 +346,19 @@ describe 'ConnectApi' do
|
|
|
345
346
|
end
|
|
346
347
|
end
|
|
347
348
|
|
|
349
|
+
# unit tests for list_instagram_pages
|
|
350
|
+
# List Pages with a linked Instagram account
|
|
351
|
+
# Completes the `loginMethod=facebook_login` Instagram flow, i.e. \"Instagram API with Facebook Login\". After the user authorizes on Facebook, extract `tempToken` from the redirect params and pass it here to list the Facebook Pages they manage. Only Pages that have a linked Instagram professional account are returned, so an empty array means the user has no eligible Page. Use the X-Connect-Token header if connecting via API key. Not used by the default `instagram_login` flow, which creates the account without a selection step.
|
|
352
|
+
# @param profile_id Profile ID from your connection flow
|
|
353
|
+
# @param temp_token Long-lived Facebook user access token from the OAuth callback redirect
|
|
354
|
+
# @param [Hash] opts the optional parameters
|
|
355
|
+
# @return [ListInstagramPages200Response]
|
|
356
|
+
describe 'list_instagram_pages test' do
|
|
357
|
+
it 'should work' do
|
|
358
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
359
|
+
end
|
|
360
|
+
end
|
|
361
|
+
|
|
348
362
|
# unit tests for list_linked_in_organizations
|
|
349
363
|
# List LinkedIn orgs
|
|
350
364
|
# Fetch full LinkedIn organization details (logos, vanity names, websites) for custom UI. No authentication required, just the tempToken from OAuth.
|
|
@@ -424,6 +438,18 @@ describe 'ConnectApi' do
|
|
|
424
438
|
end
|
|
425
439
|
end
|
|
426
440
|
|
|
441
|
+
# unit tests for select_instagram_account
|
|
442
|
+
# Select the Page whose Instagram account to connect
|
|
443
|
+
# Saves the selected Page as an Instagram account connected via Facebook Login. The Page access token becomes the account's access token, so every Instagram call for it runs against the Facebook Graph host. One Instagram account per profile: if the profile already has an Instagram account, this replaces it, and picking a different Instagram identity purges the previous account's conversations, external posts and stats.
|
|
444
|
+
# @param select_instagram_account_request
|
|
445
|
+
# @param [Hash] opts the optional parameters
|
|
446
|
+
# @return [SelectInstagramAccount200Response]
|
|
447
|
+
describe 'select_instagram_account test' do
|
|
448
|
+
it 'should work' do
|
|
449
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
450
|
+
end
|
|
451
|
+
end
|
|
452
|
+
|
|
427
453
|
# unit tests for select_linked_in_organization
|
|
428
454
|
# Select LinkedIn org
|
|
429
455
|
# Complete the LinkedIn connection flow. Set accountType to \"personal\" or \"organization\" to connect as a company page. Use X-Connect-Token if connecting via API key.
|
data/spec/models/list_instagram_pages200_response_pages_inner_instagram_business_account_spec.rb
ADDED
|
@@ -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.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::ListInstagramPages200ResponsePagesInnerInstagramBusinessAccount
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe Zernio::ListInstagramPages200ResponsePagesInnerInstagramBusinessAccount do
|
|
21
|
+
#let(:instance) { Zernio::ListInstagramPages200ResponsePagesInnerInstagramBusinessAccount.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of ListInstagramPages200ResponsePagesInnerInstagramBusinessAccount' do
|
|
24
|
+
it 'should create an instance of ListInstagramPages200ResponsePagesInnerInstagramBusinessAccount' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(Zernio::ListInstagramPages200ResponsePagesInnerInstagramBusinessAccount)
|
|
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 "profile_picture_url"' 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,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::ListInstagramPages200ResponsePagesInner
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe Zernio::ListInstagramPages200ResponsePagesInner do
|
|
21
|
+
#let(:instance) { Zernio::ListInstagramPages200ResponsePagesInner.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of ListInstagramPages200ResponsePagesInner' do
|
|
24
|
+
it 'should create an instance of ListInstagramPages200ResponsePagesInner' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(Zernio::ListInstagramPages200ResponsePagesInner)
|
|
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 "access_token"' 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 "instagram_business_account"' 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,36 @@
|
|
|
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::ListInstagramPages200Response
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe Zernio::ListInstagramPages200Response do
|
|
21
|
+
#let(:instance) { Zernio::ListInstagramPages200Response.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of ListInstagramPages200Response' do
|
|
24
|
+
it 'should create an instance of ListInstagramPages200Response' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(Zernio::ListInstagramPages200Response)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test attribute "pages"' 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
|
+
end
|
|
@@ -0,0 +1,80 @@
|
|
|
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::SelectInstagramAccount200ResponseAccount
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe Zernio::SelectInstagramAccount200ResponseAccount do
|
|
21
|
+
#let(:instance) { Zernio::SelectInstagramAccount200ResponseAccount.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of SelectInstagramAccount200ResponseAccount' do
|
|
24
|
+
it 'should create an instance of SelectInstagramAccount200ResponseAccount' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(Zernio::SelectInstagramAccount200ResponseAccount)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test attribute "account_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 "platform"' 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', ["instagram"])
|
|
40
|
+
# validator.allowable_values.each do |value|
|
|
41
|
+
# expect { instance.platform = value }.not_to raise_error
|
|
42
|
+
# end
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
describe 'test attribute "username"' 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 "display_name"' 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 "profile_picture"' 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 "is_active"' do
|
|
65
|
+
it 'should work' do
|
|
66
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
67
|
+
end
|
|
68
|
+
end
|
|
69
|
+
|
|
70
|
+
describe 'test attribute "login_method"' do
|
|
71
|
+
it 'should work' do
|
|
72
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
73
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["facebook_login"])
|
|
74
|
+
# validator.allowable_values.each do |value|
|
|
75
|
+
# expect { instance.login_method = value }.not_to raise_error
|
|
76
|
+
# end
|
|
77
|
+
end
|
|
78
|
+
end
|
|
79
|
+
|
|
80
|
+
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.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::SelectInstagramAccount200Response
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe Zernio::SelectInstagramAccount200Response do
|
|
21
|
+
#let(:instance) { Zernio::SelectInstagramAccount200Response.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of SelectInstagramAccount200Response' do
|
|
24
|
+
it 'should create an instance of SelectInstagramAccount200Response' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(Zernio::SelectInstagramAccount200Response)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test attribute "message"' 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 "redirect_url"' 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 "account"' 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,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::SelectInstagramAccountRequest
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe Zernio::SelectInstagramAccountRequest do
|
|
21
|
+
#let(:instance) { Zernio::SelectInstagramAccountRequest.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of SelectInstagramAccountRequest' do
|
|
24
|
+
it 'should create an instance of SelectInstagramAccountRequest' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(Zernio::SelectInstagramAccountRequest)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test attribute "profile_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 "page_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 "temp_token"' 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 "redirect_url"' 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
|
|
Binary file
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
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.698
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- OpenAPI-Generator
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-08-
|
|
11
|
+
date: 2026-08-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|
|
@@ -982,6 +982,9 @@ files:
|
|
|
982
982
|
- docs/ListInboxReviews200ResponseDataInnerReply.md
|
|
983
983
|
- docs/ListInboxReviews200ResponseDataInnerReviewer.md
|
|
984
984
|
- docs/ListInboxReviews200ResponseSummary.md
|
|
985
|
+
- docs/ListInstagramPages200Response.md
|
|
986
|
+
- docs/ListInstagramPages200ResponsePagesInner.md
|
|
987
|
+
- docs/ListInstagramPages200ResponsePagesInnerInstagramBusinessAccount.md
|
|
985
988
|
- docs/ListInstagramStories200Response.md
|
|
986
989
|
- docs/ListInstagramStories200ResponseDataInner.md
|
|
987
990
|
- docs/ListLeadForms200Response.md
|
|
@@ -1240,6 +1243,9 @@ files:
|
|
|
1240
1243
|
- docs/SelectGoogleBusinessLocation200Response.md
|
|
1241
1244
|
- docs/SelectGoogleBusinessLocation200ResponseAccount.md
|
|
1242
1245
|
- docs/SelectGoogleBusinessLocationRequest.md
|
|
1246
|
+
- docs/SelectInstagramAccount200Response.md
|
|
1247
|
+
- docs/SelectInstagramAccount200ResponseAccount.md
|
|
1248
|
+
- docs/SelectInstagramAccountRequest.md
|
|
1243
1249
|
- docs/SelectLinkedInOrganization200Response.md
|
|
1244
1250
|
- docs/SelectLinkedInOrganization200ResponseAccount.md
|
|
1245
1251
|
- docs/SelectLinkedInOrganization200ResponseBulkRefresh.md
|
|
@@ -2671,6 +2677,9 @@ files:
|
|
|
2671
2677
|
- lib/zernio-sdk/models/list_inbox_reviews200_response_data_inner_reply.rb
|
|
2672
2678
|
- lib/zernio-sdk/models/list_inbox_reviews200_response_data_inner_reviewer.rb
|
|
2673
2679
|
- lib/zernio-sdk/models/list_inbox_reviews200_response_summary.rb
|
|
2680
|
+
- lib/zernio-sdk/models/list_instagram_pages200_response.rb
|
|
2681
|
+
- lib/zernio-sdk/models/list_instagram_pages200_response_pages_inner.rb
|
|
2682
|
+
- lib/zernio-sdk/models/list_instagram_pages200_response_pages_inner_instagram_business_account.rb
|
|
2674
2683
|
- lib/zernio-sdk/models/list_instagram_stories200_response.rb
|
|
2675
2684
|
- lib/zernio-sdk/models/list_instagram_stories200_response_data_inner.rb
|
|
2676
2685
|
- lib/zernio-sdk/models/list_lead_forms200_response.rb
|
|
@@ -2916,6 +2925,9 @@ files:
|
|
|
2916
2925
|
- lib/zernio-sdk/models/select_google_business_location200_response.rb
|
|
2917
2926
|
- lib/zernio-sdk/models/select_google_business_location200_response_account.rb
|
|
2918
2927
|
- lib/zernio-sdk/models/select_google_business_location_request.rb
|
|
2928
|
+
- lib/zernio-sdk/models/select_instagram_account200_response.rb
|
|
2929
|
+
- lib/zernio-sdk/models/select_instagram_account200_response_account.rb
|
|
2930
|
+
- lib/zernio-sdk/models/select_instagram_account_request.rb
|
|
2919
2931
|
- lib/zernio-sdk/models/select_linked_in_organization200_response.rb
|
|
2920
2932
|
- lib/zernio-sdk/models/select_linked_in_organization200_response_account.rb
|
|
2921
2933
|
- lib/zernio-sdk/models/select_linked_in_organization200_response_bulk_refresh.rb
|
|
@@ -4323,6 +4335,9 @@ files:
|
|
|
4323
4335
|
- spec/models/list_inbox_reviews200_response_data_inner_spec.rb
|
|
4324
4336
|
- spec/models/list_inbox_reviews200_response_spec.rb
|
|
4325
4337
|
- spec/models/list_inbox_reviews200_response_summary_spec.rb
|
|
4338
|
+
- spec/models/list_instagram_pages200_response_pages_inner_instagram_business_account_spec.rb
|
|
4339
|
+
- spec/models/list_instagram_pages200_response_pages_inner_spec.rb
|
|
4340
|
+
- spec/models/list_instagram_pages200_response_spec.rb
|
|
4326
4341
|
- spec/models/list_instagram_stories200_response_data_inner_spec.rb
|
|
4327
4342
|
- spec/models/list_instagram_stories200_response_spec.rb
|
|
4328
4343
|
- spec/models/list_lead_forms200_response_spec.rb
|
|
@@ -4568,6 +4583,9 @@ files:
|
|
|
4568
4583
|
- spec/models/select_google_business_location200_response_account_spec.rb
|
|
4569
4584
|
- spec/models/select_google_business_location200_response_spec.rb
|
|
4570
4585
|
- spec/models/select_google_business_location_request_spec.rb
|
|
4586
|
+
- spec/models/select_instagram_account200_response_account_spec.rb
|
|
4587
|
+
- spec/models/select_instagram_account200_response_spec.rb
|
|
4588
|
+
- spec/models/select_instagram_account_request_spec.rb
|
|
4571
4589
|
- spec/models/select_linked_in_organization200_response_account_spec.rb
|
|
4572
4590
|
- spec/models/select_linked_in_organization200_response_bulk_refresh_spec.rb
|
|
4573
4591
|
- spec/models/select_linked_in_organization200_response_spec.rb
|
|
@@ -5024,7 +5042,7 @@ files:
|
|
|
5024
5042
|
- spec/models/you_tube_video_retention_response_retention_curve_inner_spec.rb
|
|
5025
5043
|
- spec/models/you_tube_video_retention_response_spec.rb
|
|
5026
5044
|
- spec/spec_helper.rb
|
|
5027
|
-
- zernio-sdk-0.0.
|
|
5045
|
+
- zernio-sdk-0.0.698.gem
|
|
5028
5046
|
- zernio-sdk.gemspec
|
|
5029
5047
|
homepage: https://openapi-generator.tech
|
|
5030
5048
|
licenses:
|
|
@@ -5196,6 +5214,7 @@ test_files:
|
|
|
5196
5214
|
- spec/models/send_conversions_request_consent_spec.rb
|
|
5197
5215
|
- spec/models/edit_post200_response_spec.rb
|
|
5198
5216
|
- spec/models/update_ad_set200_response_spec.rb
|
|
5217
|
+
- spec/models/select_instagram_account200_response_spec.rb
|
|
5199
5218
|
- spec/models/create_google_business_media200_response_spec.rb
|
|
5200
5219
|
- spec/models/queue_slot_spec.rb
|
|
5201
5220
|
- spec/models/list_account_groups200_response_groups_inner_spec.rb
|
|
@@ -5465,6 +5484,7 @@ test_files:
|
|
|
5465
5484
|
- spec/models/webhook_payload_review_new_spec.rb
|
|
5466
5485
|
- spec/models/get_inbox_top_accounts200_response_accounts_inner_spec.rb
|
|
5467
5486
|
- spec/models/boost_post_request_tracking_spec.rb
|
|
5487
|
+
- spec/models/select_instagram_account200_response_account_spec.rb
|
|
5468
5488
|
- spec/models/check_phone_number_availability200_response_area_options_inner_spec.rb
|
|
5469
5489
|
- spec/models/request_sms_sender_id_limit_increase_request_spec.rb
|
|
5470
5490
|
- spec/models/get_whats_app_number_remediation200_response_spec.rb
|
|
@@ -5991,6 +6011,7 @@ test_files:
|
|
|
5991
6011
|
- spec/models/boost_post_request_spec.rb
|
|
5992
6012
|
- spec/models/gbp_special_hour_period_spec.rb
|
|
5993
6013
|
- spec/models/lookup_sms_number200_response_spec.rb
|
|
6014
|
+
- spec/models/list_instagram_pages200_response_pages_inner_instagram_business_account_spec.rb
|
|
5994
6015
|
- spec/models/expired_spec.rb
|
|
5995
6016
|
- spec/models/business_center_spec.rb
|
|
5996
6017
|
- spec/models/facebook_settings_carousel_cards_inner_spec.rb
|
|
@@ -6071,6 +6092,7 @@ test_files:
|
|
|
6071
6092
|
- spec/models/instagram_demographics_response_demographics_value_inner_spec.rb
|
|
6072
6093
|
- spec/models/update_contact_request_spec.rb
|
|
6073
6094
|
- spec/models/google_business_platform_data_event_schedule_end_time_spec.rb
|
|
6095
|
+
- spec/models/list_instagram_pages200_response_pages_inner_spec.rb
|
|
6074
6096
|
- spec/models/list_ads_business_centers200_response_spec.rb
|
|
6075
6097
|
- spec/models/list_comment_automation_logs200_response_misses_samples_inner_spec.rb
|
|
6076
6098
|
- spec/models/instagram_platform_data_spec.rb
|
|
@@ -6181,6 +6203,7 @@ test_files:
|
|
|
6181
6203
|
- spec/models/create_phone_number_port_in_request_spec.rb
|
|
6182
6204
|
- spec/models/complete_whats_app_phone_selection200_response_spec.rb
|
|
6183
6205
|
- spec/models/linked_in_lead_form_platform_data_questions_inner_spec.rb
|
|
6206
|
+
- spec/models/list_instagram_pages200_response_spec.rb
|
|
6184
6207
|
- spec/models/list_workflow_executions200_response_spec.rb
|
|
6185
6208
|
- spec/models/search_inbox_conversations200_response_data_inner_matches_inner_spec.rb
|
|
6186
6209
|
- spec/models/get_post_timeline403_response_spec.rb
|
|
@@ -6602,6 +6625,7 @@ test_files:
|
|
|
6602
6625
|
- spec/models/get_sequence200_response_sequence_spec.rb
|
|
6603
6626
|
- spec/models/get_inbox_heatmap200_response_spec.rb
|
|
6604
6627
|
- spec/models/send_inbox_message_request_contacts_inner_spec.rb
|
|
6628
|
+
- spec/models/select_instagram_account_request_spec.rb
|
|
6605
6629
|
- spec/models/billing_snapshot_legacy_limits_spec.rb
|
|
6606
6630
|
- spec/models/list_ad_catalogs200_response_catalogs_inner_spec.rb
|
|
6607
6631
|
- spec/models/conversion_destination_spec.rb
|
data/zernio-sdk-0.0.697.gem
DELETED
|
Binary file
|