zernio-sdk 0.0.550 → 0.0.552
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 +73 -75
- data/docs/AdAccountsApi.md +915 -0
- data/docs/AdCampaignsApi.md +615 -15
- data/docs/AdCreativesApi.md +815 -0
- data/docs/AdInsightsApi.md +415 -0
- data/docs/AdTargetingApi.md +371 -0
- data/docs/AnalyticsApi.md +7 -7
- data/docs/BoostPostRequestTracking.md +1 -1
- data/docs/{CreateLeadFormRequestQuestionsInnerOptionsInner.md → BoostPostRequestTrackingUrlTagsInner.md} +2 -2
- data/docs/ConversionsApi.md +890 -0
- data/docs/CreateLeadFormRequestQuestionsInner.md +1 -1
- data/docs/LeadGenApi.md +527 -0
- data/docs/MessagingAdsApi.md +215 -0
- data/docs/ReachAndFrequencyApi.md +294 -0
- data/docs/TrackingTagsApi.md +141 -0
- data/docs/YouTubeDailyViewsResponse.md +2 -0
- data/docs/YouTubeDemographicsResponse.md +2 -0
- data/docs/YouTubeVideoRetentionResponse.md +2 -0
- data/lib/zernio-sdk/api/ad_accounts_api.rb +958 -0
- data/lib/zernio-sdk/api/ad_campaigns_api.rb +618 -12
- data/lib/zernio-sdk/api/ad_creatives_api.rb +826 -0
- data/lib/zernio-sdk/api/ad_insights_api.rb +446 -0
- data/lib/zernio-sdk/api/ad_targeting_api.rb +404 -0
- data/lib/zernio-sdk/api/analytics_api.rb +8 -8
- data/lib/zernio-sdk/api/conversions_api.rb +936 -0
- data/lib/zernio-sdk/api/lead_gen_api.rb +547 -0
- data/lib/zernio-sdk/api/messaging_ads_api.rb +226 -0
- data/lib/zernio-sdk/api/reach_and_frequency_api.rb +316 -0
- data/lib/zernio-sdk/api/tracking_tags_api.rb +137 -0
- data/lib/zernio-sdk/models/boost_post_request_tracking.rb +5 -2
- data/lib/zernio-sdk/models/{create_lead_form_request_questions_inner_options_inner.rb → boost_post_request_tracking_url_tags_inner.rb} +3 -3
- data/lib/zernio-sdk/models/create_lead_form_request_questions_inner.rb +1 -1
- data/lib/zernio-sdk/models/you_tube_daily_views_response.rb +11 -1
- data/lib/zernio-sdk/models/you_tube_demographics_response.rb +11 -1
- data/lib/zernio-sdk/models/you_tube_video_retention_response.rb +11 -1
- data/lib/zernio-sdk/version.rb +1 -1
- data/lib/zernio-sdk.rb +9 -2
- data/openapi.yaml +329 -163
- data/spec/api/ad_accounts_api_spec.rb +206 -0
- data/spec/api/ad_campaigns_api_spec.rb +119 -6
- data/spec/api/ad_creatives_api_spec.rb +182 -0
- data/spec/api/ad_insights_api_spec.rb +120 -0
- data/spec/api/ad_targeting_api_spec.rb +101 -0
- data/spec/api/analytics_api_spec.rb +4 -4
- data/spec/api/conversions_api_spec.rb +199 -0
- data/spec/api/lead_gen_api_spec.rb +131 -0
- data/spec/api/messaging_ads_api_spec.rb +71 -0
- data/spec/api/reach_and_frequency_api_spec.rb +87 -0
- data/spec/api/tracking_tags_api_spec.rb +25 -0
- data/spec/models/{create_lead_form_request_questions_inner_options_inner_spec.rb → boost_post_request_tracking_url_tags_inner_spec.rb} +6 -6
- data/spec/models/you_tube_daily_views_response_spec.rb +6 -0
- data/spec/models/you_tube_demographics_response_spec.rb +6 -0
- data/spec/models/you_tube_video_retention_response_spec.rb +6 -0
- metadata +38 -10
- data/docs/AdsApi.md +0 -5278
- data/lib/zernio-sdk/api/ads_api.rb +0 -5391
- data/spec/api/ads_api_spec.rb +0 -1015
|
@@ -0,0 +1,71 @@
|
|
|
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
|
+
|
|
16
|
+
# Unit tests for Zernio::MessagingAdsApi
|
|
17
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
18
|
+
# Please update as you see appropriate
|
|
19
|
+
describe 'MessagingAdsApi' do
|
|
20
|
+
before do
|
|
21
|
+
# run before each test
|
|
22
|
+
@api_instance = Zernio::MessagingAdsApi.new
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
after do
|
|
26
|
+
# run after each test
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
describe 'test an instance of MessagingAdsApi' do
|
|
30
|
+
it 'should create an instance of MessagingAdsApi' do
|
|
31
|
+
expect(@api_instance).to be_instance_of(Zernio::MessagingAdsApi)
|
|
32
|
+
end
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
# unit tests for create_call_ad
|
|
36
|
+
# Create Click-to-Call ad
|
|
37
|
+
# Same shape and flow as POST /v1/ads/ctwa, but the CTA is CALL_NOW dialing `phoneNumber` via a tel: link. The ad set is destination_type PHONE_CALL optimizing QUALITY_CALL and the campaign objective defaults to OUTCOME_LEADS. Supports the same single-creative and multi-creative shapes as CTWA.
|
|
38
|
+
# @param create_call_ad_request
|
|
39
|
+
# @param [Hash] opts the optional parameters
|
|
40
|
+
# @return [nil]
|
|
41
|
+
describe 'create_call_ad test' do
|
|
42
|
+
it 'should work' do
|
|
43
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
44
|
+
end
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
# unit tests for create_ctwa_ad
|
|
48
|
+
# Create Click-to-WhatsApp ad (deprecated)
|
|
49
|
+
# Deprecated: use POST /v1/ads/messaging with `destination: whatsapp`. This endpoint stays available for back-compat; no removal planned. Creates one or more Click-to-WhatsApp (CTWA) ads on Meta under a single campaign and ad set. When tapped, each ad opens a WhatsApp conversation with the business attached to the supplied Facebook Page. The full hierarchy (campaign, ad set, creative(s), ad(s)) is created and activated in one call. The CTA is locked to WHATSAPP_MESSAGE and the destination is hard-coded to api.whatsapp.com/send; Meta resolves the actual WhatsApp number from the Page-to-WA pairing configured in Page settings or Business Manager. Supports two mutually-exclusive shapes: - **Single-creative**: supply top-level `headline`, `body`, and one of `imageUrl` / `video`. Creates 1 campaign + 1 ad set + 1 ad. - **Multi-creative**: supply a `creatives[]` array with N entries (each carrying its own headline, body, and image/video). Creates 1 campaign + 1 ad set + N ads sharing budget and targeting so Meta A/Bs the creatives inside a single auction instead of fragmenting budget across N parallel campaigns. Recommended when launching multiple creative variants for the same campaign. Prerequisites enforced by Meta (surfaced as platform_error on failure): the Facebook Page must be paired with a verified WhatsApp Business number, the WhatsApp Business Account must be business-verified, and the Meta access token must carry ads_management.
|
|
50
|
+
# @param ctwa_ad_request_body
|
|
51
|
+
# @param [Hash] opts the optional parameters
|
|
52
|
+
# @return [CreateCtwaAd201Response]
|
|
53
|
+
describe 'create_ctwa_ad test' do
|
|
54
|
+
it 'should work' do
|
|
55
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
56
|
+
end
|
|
57
|
+
end
|
|
58
|
+
|
|
59
|
+
# unit tests for create_messaging_ad
|
|
60
|
+
# Create click-to-message ad (WhatsApp / Messenger / Instagram Direct)
|
|
61
|
+
# Creates a click-to-message ad; `destination` selects where the tapped ad opens a conversation: WhatsApp, the Page's Messenger inbox or the linked Instagram account's Direct inbox. The ad set is created with the matching destination_type and CONVERSATIONS optimization; the campaign objective defaults to OUTCOME_ENGAGEMENT. Supports single-creative and multi-creative shapes. Supersedes POST /v1/ads/ctwa (deprecated, equivalent to `destination: whatsapp`).
|
|
62
|
+
# @param create_messaging_ad_request
|
|
63
|
+
# @param [Hash] opts the optional parameters
|
|
64
|
+
# @return [nil]
|
|
65
|
+
describe 'create_messaging_ad test' do
|
|
66
|
+
it 'should work' do
|
|
67
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
68
|
+
end
|
|
69
|
+
end
|
|
70
|
+
|
|
71
|
+
end
|
|
@@ -0,0 +1,87 @@
|
|
|
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
|
+
|
|
16
|
+
# Unit tests for Zernio::ReachAndFrequencyApi
|
|
17
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
18
|
+
# Please update as you see appropriate
|
|
19
|
+
describe 'ReachAndFrequencyApi' do
|
|
20
|
+
before do
|
|
21
|
+
# run before each test
|
|
22
|
+
@api_instance = Zernio::ReachAndFrequencyApi.new
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
after do
|
|
26
|
+
# run after each test
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
describe 'test an instance of ReachAndFrequencyApi' do
|
|
30
|
+
it 'should create an instance of ReachAndFrequencyApi' do
|
|
31
|
+
expect(@api_instance).to be_instance_of(Zernio::ReachAndFrequencyApi)
|
|
32
|
+
end
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
# unit tests for cancel_rf_reservation
|
|
36
|
+
# Cancel a Reach & Frequency reservation
|
|
37
|
+
# Releases a RESERVATION's locked price and inventory. Unreserved predictions expire on their own.
|
|
38
|
+
# @param prediction_id
|
|
39
|
+
# @param account_id
|
|
40
|
+
# @param ad_account_id
|
|
41
|
+
# @param [Hash] opts the optional parameters
|
|
42
|
+
# @return [nil]
|
|
43
|
+
describe 'cancel_rf_reservation test' do
|
|
44
|
+
it 'should work' do
|
|
45
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
46
|
+
end
|
|
47
|
+
end
|
|
48
|
+
|
|
49
|
+
# unit tests for create_rf_prediction
|
|
50
|
+
# Create a Reach & Frequency prediction
|
|
51
|
+
# Creates an R&F prediction — a QUOTE, nothing is bought and no ad entities are created. Provide a date range plus exactly one of `budgetAmount` (Meta predicts reach) or `reach` (Meta predicts the budget). The response carries the estimate and its allowed bounds (min/max budget and reach). Predictions expire on their own; to buy, reserve one via POST /v1/ads/rf-predictions/{predictionId}/reserve and pass the RESERVED id to POST /v1/ads/create with `buyingType: \"RESERVED\"`. Reservation campaigns reject automatic placements, so omitted `placements` default to Facebook feed (+ Instagram stream when a linked IG professional account resolves); Instagram placements require that IG account.
|
|
52
|
+
# @param create_rf_prediction_request
|
|
53
|
+
# @param [Hash] opts the optional parameters
|
|
54
|
+
# @return [CreateRfPrediction201Response]
|
|
55
|
+
describe 'create_rf_prediction test' do
|
|
56
|
+
it 'should work' do
|
|
57
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
58
|
+
end
|
|
59
|
+
end
|
|
60
|
+
|
|
61
|
+
# unit tests for get_rf_prediction
|
|
62
|
+
# Read a Reach & Frequency prediction
|
|
63
|
+
# @param prediction_id
|
|
64
|
+
# @param account_id
|
|
65
|
+
# @param ad_account_id
|
|
66
|
+
# @param [Hash] opts the optional parameters
|
|
67
|
+
# @return [CreateRfPrediction201Response]
|
|
68
|
+
describe 'get_rf_prediction test' do
|
|
69
|
+
it 'should work' do
|
|
70
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
71
|
+
end
|
|
72
|
+
end
|
|
73
|
+
|
|
74
|
+
# unit tests for reserve_rf_prediction
|
|
75
|
+
# Reserve a Reach & Frequency prediction
|
|
76
|
+
# Locks the quoted price + inventory until the returned `expiresAt` and mints a NEW prediction id — pass that RESERVED id (not the original) as `rfPredictionId` on POST /v1/ads/create. Release an unused reservation via DELETE.
|
|
77
|
+
# @param prediction_id
|
|
78
|
+
# @param reserve_rf_prediction_request
|
|
79
|
+
# @param [Hash] opts the optional parameters
|
|
80
|
+
# @return [ReserveRfPrediction201Response]
|
|
81
|
+
describe 'reserve_rf_prediction test' do
|
|
82
|
+
it 'should work' do
|
|
83
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
84
|
+
end
|
|
85
|
+
end
|
|
86
|
+
|
|
87
|
+
end
|
|
@@ -59,6 +59,18 @@ describe 'TrackingTagsApi' do
|
|
|
59
59
|
end
|
|
60
60
|
end
|
|
61
61
|
|
|
62
|
+
# unit tests for get_ad_tracking_tags
|
|
63
|
+
# Get ad tracking tags
|
|
64
|
+
# Unified read of the platform's native click-URL tracking params. - Meta (facebook/instagram): the creative's `url_tags` (and template_url_spec). - Google (googleads): the campaign's `trackingUrlTemplate` + `finalUrlSuffix`. Subject to the Google Ads API access-tier daily quota; bulk audits need Standard access. - LinkedIn (linkedinads): the campaign's Dynamic UTM `dynamicValueParameters` + `customValueParameters`. Returns 405 for platforms without a click-URL tracking surface (TikTok, X, Pinterest).
|
|
65
|
+
# @param ad_id Ad id (hex _id, platformAdId, or effective story/media id).
|
|
66
|
+
# @param [Hash] opts the optional parameters
|
|
67
|
+
# @return [GetAdTrackingTags200Response]
|
|
68
|
+
describe 'get_ad_tracking_tags test' do
|
|
69
|
+
it 'should work' do
|
|
70
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
71
|
+
end
|
|
72
|
+
end
|
|
73
|
+
|
|
62
74
|
# unit tests for get_tracking_tag
|
|
63
75
|
# Get a tracking tag
|
|
64
76
|
# Returns the full tag record including the base-code `code` snippet, `lastFiredTime`, `ownerBusinessId`, `isUnavailable`, etc. Meta only (platform `metaads`); other platforms return 405.
|
|
@@ -128,6 +140,19 @@ describe 'TrackingTagsApi' do
|
|
|
128
140
|
end
|
|
129
141
|
end
|
|
130
142
|
|
|
143
|
+
# unit tests for update_ad_tracking_tags
|
|
144
|
+
# Set ad tracking tags
|
|
145
|
+
# Unified update. Send only the fields for the ad's platform: - Meta: `urlTags` (array of {key,value}). Meta creatives are immutable, so this rebuilds the creative and repoints the ad. By DEFAULT we PRESERVE the existing creative verbatim (re-post its object_story_spec + the new url_tags, reusing the image), so you send `urlTags` ALONE — no need to read back headline/body/CTA. `creative` (headline, body, callToAction, linkUrl, imageUrl) is OPTIONAL and only needed to rebuild explicitly, or for SHARE / page-post / dark / asset_feed creatives whose object_story_spec Meta strips (those return 422 asking for `creative`). - Google: `trackingUrlTemplate` and/or `finalUrlSuffix` (full template strings; account quota applies). - LinkedIn: `dynamicValueParameters` and/or `customValueParameters` (campaign-level Dynamic UTM).
|
|
146
|
+
# @param ad_id
|
|
147
|
+
# @param update_ad_tracking_tags_request
|
|
148
|
+
# @param [Hash] opts the optional parameters
|
|
149
|
+
# @return [nil]
|
|
150
|
+
describe 'update_ad_tracking_tags test' do
|
|
151
|
+
it 'should work' do
|
|
152
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
153
|
+
end
|
|
154
|
+
end
|
|
155
|
+
|
|
131
156
|
# unit tests for update_tracking_tag
|
|
132
157
|
# Update a tracking tag
|
|
133
158
|
# Partial-update a pixel. Whitelisted fields: `name` (rename), `enableAutomaticMatching`, `automaticMatchingFields`, `firstPartyCookieStatus`, `dataUseSetting`. At least one is required. Returns the re-fetched canonical tag. Meta only (platform `metaads`); other platforms return 405. There is no DELETE — Meta has no API to delete a pixel. To stop using one, unshare it from your ad accounts (`DELETE .../tracking-tags/{tagId}/shared-accounts`) or disable it in Events Manager.
|
|
@@ -14,16 +14,16 @@ require 'spec_helper'
|
|
|
14
14
|
require 'json'
|
|
15
15
|
require 'date'
|
|
16
16
|
|
|
17
|
-
# Unit tests for Zernio::
|
|
17
|
+
# Unit tests for Zernio::BoostPostRequestTrackingUrlTagsInner
|
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
19
|
# Please update as you see appropriate
|
|
20
|
-
describe Zernio::
|
|
21
|
-
#let(:instance) { Zernio::
|
|
20
|
+
describe Zernio::BoostPostRequestTrackingUrlTagsInner do
|
|
21
|
+
#let(:instance) { Zernio::BoostPostRequestTrackingUrlTagsInner.new }
|
|
22
22
|
|
|
23
|
-
describe 'test an instance of
|
|
24
|
-
it 'should create an instance of
|
|
23
|
+
describe 'test an instance of BoostPostRequestTrackingUrlTagsInner' do
|
|
24
|
+
it 'should create an instance of BoostPostRequestTrackingUrlTagsInner' do
|
|
25
25
|
# uncomment below to test the instance creation
|
|
26
|
-
#expect(instance).to be_instance_of(Zernio::
|
|
26
|
+
#expect(instance).to be_instance_of(Zernio::BoostPostRequestTrackingUrlTagsInner)
|
|
27
27
|
end
|
|
28
28
|
end
|
|
29
29
|
|
|
@@ -51,6 +51,12 @@ describe Zernio::YouTubeDailyViewsResponse do
|
|
|
51
51
|
end
|
|
52
52
|
end
|
|
53
53
|
|
|
54
|
+
describe 'test attribute "provisional_since"' 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
|
+
|
|
54
60
|
describe 'test attribute "total_views"' do
|
|
55
61
|
it 'should work' do
|
|
56
62
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
@@ -75,6 +75,12 @@ describe Zernio::YouTubeDemographicsResponse do
|
|
|
75
75
|
end
|
|
76
76
|
end
|
|
77
77
|
|
|
78
|
+
describe 'test attribute "provisional_since"' 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
|
+
|
|
78
84
|
describe 'test attribute "note"' do
|
|
79
85
|
it 'should work' do
|
|
80
86
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
@@ -69,6 +69,12 @@ describe Zernio::YouTubeVideoRetentionResponse do
|
|
|
69
69
|
end
|
|
70
70
|
end
|
|
71
71
|
|
|
72
|
+
describe 'test attribute "provisional_since"' 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
|
+
|
|
72
78
|
describe 'test attribute "retention_curve"' do
|
|
73
79
|
it 'should work' do
|
|
74
80
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
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.552
|
|
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-07-
|
|
11
|
+
date: 2026-07-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|
|
@@ -74,6 +74,7 @@ files:
|
|
|
74
74
|
- docs/ActivateWorkflow200Response.md
|
|
75
75
|
- docs/ActivateWorkflow200ResponseWorkflow.md
|
|
76
76
|
- docs/Ad.md
|
|
77
|
+
- docs/AdAccountsApi.md
|
|
77
78
|
- docs/AdAudiencesApi.md
|
|
78
79
|
- docs/AdBudget.md
|
|
79
80
|
- docs/AdCampaign.md
|
|
@@ -81,11 +82,14 @@ files:
|
|
|
81
82
|
- docs/AdCampaignCampaignBudget.md
|
|
82
83
|
- docs/AdCampaignsApi.md
|
|
83
84
|
- docs/AdCreative.md
|
|
85
|
+
- docs/AdCreativesApi.md
|
|
84
86
|
- docs/AdDailyMetrics.md
|
|
87
|
+
- docs/AdInsightsApi.md
|
|
85
88
|
- docs/AdMetrics.md
|
|
86
89
|
- docs/AdPromotedObject.md
|
|
87
90
|
- docs/AdSchedule.md
|
|
88
91
|
- docs/AdStatus.md
|
|
92
|
+
- docs/AdTargetingApi.md
|
|
89
93
|
- docs/AdTreeAdSet.md
|
|
90
94
|
- docs/AdTreeAdSetAdSetBudget.md
|
|
91
95
|
- docs/AdTreeAdSetBudget.md
|
|
@@ -112,7 +116,6 @@ files:
|
|
|
112
116
|
- docs/AdjustConversionsRequest.md
|
|
113
117
|
- docs/AdjustConversionsRequestAdjustmentsInner.md
|
|
114
118
|
- docs/AdjustConversionsRequestAdjustmentsInnerUser.md
|
|
115
|
-
- docs/AdsApi.md
|
|
116
119
|
- docs/AnalyticsApi.md
|
|
117
120
|
- docs/AnalyticsListResponse.md
|
|
118
121
|
- docs/AnalyticsListResponsePostsInner.md
|
|
@@ -156,6 +159,7 @@ files:
|
|
|
156
159
|
- docs/BoostPostRequestTargetingCustomLocationsInner.md
|
|
157
160
|
- docs/BoostPostRequestTargetingRegionsInner.md
|
|
158
161
|
- docs/BoostPostRequestTracking.md
|
|
162
|
+
- docs/BoostPostRequestTrackingUrlTagsInner.md
|
|
159
163
|
- docs/BroadcastsApi.md
|
|
160
164
|
- docs/BulkCreateContacts200Response.md
|
|
161
165
|
- docs/BulkCreateContactsRequest.md
|
|
@@ -208,6 +212,7 @@ files:
|
|
|
208
212
|
- docs/ConversionEventItemsInner.md
|
|
209
213
|
- docs/ConversionEventUser.md
|
|
210
214
|
- docs/ConversionEventUserClickIds.md
|
|
215
|
+
- docs/ConversionsApi.md
|
|
211
216
|
- docs/CreateAccountGroup201Response.md
|
|
212
217
|
- docs/CreateAccountGroup201ResponseGroup.md
|
|
213
218
|
- docs/CreateAccountGroupRequest.md
|
|
@@ -273,7 +278,6 @@ files:
|
|
|
273
278
|
- docs/CreateLeadForm200Response.md
|
|
274
279
|
- docs/CreateLeadFormRequest.md
|
|
275
280
|
- docs/CreateLeadFormRequestQuestionsInner.md
|
|
276
|
-
- docs/CreateLeadFormRequestQuestionsInnerOptionsInner.md
|
|
277
281
|
- docs/CreateMessagingAdRequest.md
|
|
278
282
|
- docs/CreatePhoneNumberKycLink200Response.md
|
|
279
283
|
- docs/CreatePhoneNumberKycLinkRequest.md
|
|
@@ -823,6 +827,7 @@ files:
|
|
|
823
827
|
- docs/InstagramPlatformDataTrialParams.md
|
|
824
828
|
- docs/InstagramPlatformDataUserTagsInner.md
|
|
825
829
|
- docs/InvitesApi.md
|
|
830
|
+
- docs/LeadGenApi.md
|
|
826
831
|
- docs/LikeInboxComment200Response.md
|
|
827
832
|
- docs/LikeInboxCommentRequest.md
|
|
828
833
|
- docs/LinkedInAdsPlatformData.md
|
|
@@ -1009,6 +1014,7 @@ files:
|
|
|
1009
1014
|
- docs/MediaUploadResponse.md
|
|
1010
1015
|
- docs/MentionsApi.md
|
|
1011
1016
|
- docs/MessagesApi.md
|
|
1017
|
+
- docs/MessagingAdsApi.md
|
|
1012
1018
|
- docs/Money.md
|
|
1013
1019
|
- docs/MoneyAmount.md
|
|
1014
1020
|
- docs/MoveAccountToProfile200Response.md
|
|
@@ -1075,6 +1081,7 @@ files:
|
|
|
1075
1081
|
- docs/QueueSlot.md
|
|
1076
1082
|
- docs/QueueSlotsResponse.md
|
|
1077
1083
|
- docs/QueueUpdateResponse.md
|
|
1084
|
+
- docs/ReachAndFrequencyApi.md
|
|
1078
1085
|
- docs/RecyclingConfig.md
|
|
1079
1086
|
- docs/RecyclingState.md
|
|
1080
1087
|
- docs/RedditPlatformData.md
|
|
@@ -1611,9 +1618,12 @@ files:
|
|
|
1611
1618
|
- lib/zernio-sdk/api/account_groups_api.rb
|
|
1612
1619
|
- lib/zernio-sdk/api/account_settings_api.rb
|
|
1613
1620
|
- lib/zernio-sdk/api/accounts_api.rb
|
|
1621
|
+
- lib/zernio-sdk/api/ad_accounts_api.rb
|
|
1614
1622
|
- lib/zernio-sdk/api/ad_audiences_api.rb
|
|
1615
1623
|
- lib/zernio-sdk/api/ad_campaigns_api.rb
|
|
1616
|
-
- lib/zernio-sdk/api/
|
|
1624
|
+
- lib/zernio-sdk/api/ad_creatives_api.rb
|
|
1625
|
+
- lib/zernio-sdk/api/ad_insights_api.rb
|
|
1626
|
+
- lib/zernio-sdk/api/ad_targeting_api.rb
|
|
1617
1627
|
- lib/zernio-sdk/api/analytics_api.rb
|
|
1618
1628
|
- lib/zernio-sdk/api/api_keys_api.rb
|
|
1619
1629
|
- lib/zernio-sdk/api/broadcasts_api.rb
|
|
@@ -1622,6 +1632,7 @@ files:
|
|
|
1622
1632
|
- lib/zernio-sdk/api/comments_api.rb
|
|
1623
1633
|
- lib/zernio-sdk/api/connect_api.rb
|
|
1624
1634
|
- lib/zernio-sdk/api/contacts_api.rb
|
|
1635
|
+
- lib/zernio-sdk/api/conversions_api.rb
|
|
1625
1636
|
- lib/zernio-sdk/api/custom_fields_api.rb
|
|
1626
1637
|
- lib/zernio-sdk/api/discord_api.rb
|
|
1627
1638
|
- lib/zernio-sdk/api/gmb_attributes_api.rb
|
|
@@ -1635,15 +1646,18 @@ files:
|
|
|
1635
1646
|
- lib/zernio-sdk/api/inbox_analytics_api.rb
|
|
1636
1647
|
- lib/zernio-sdk/api/instagram_api.rb
|
|
1637
1648
|
- lib/zernio-sdk/api/invites_api.rb
|
|
1649
|
+
- lib/zernio-sdk/api/lead_gen_api.rb
|
|
1638
1650
|
- lib/zernio-sdk/api/linked_in_mentions_api.rb
|
|
1639
1651
|
- lib/zernio-sdk/api/logs_api.rb
|
|
1640
1652
|
- lib/zernio-sdk/api/media_api.rb
|
|
1641
1653
|
- lib/zernio-sdk/api/mentions_api.rb
|
|
1642
1654
|
- lib/zernio-sdk/api/messages_api.rb
|
|
1655
|
+
- lib/zernio-sdk/api/messaging_ads_api.rb
|
|
1643
1656
|
- lib/zernio-sdk/api/phone_numbers_api.rb
|
|
1644
1657
|
- lib/zernio-sdk/api/posts_api.rb
|
|
1645
1658
|
- lib/zernio-sdk/api/profiles_api.rb
|
|
1646
1659
|
- lib/zernio-sdk/api/queue_api.rb
|
|
1660
|
+
- lib/zernio-sdk/api/reach_and_frequency_api.rb
|
|
1647
1661
|
- lib/zernio-sdk/api/reddit_search_api.rb
|
|
1648
1662
|
- lib/zernio-sdk/api/reviews_api.rb
|
|
1649
1663
|
- lib/zernio-sdk/api/sequences_api.rb
|
|
@@ -1753,6 +1767,7 @@ files:
|
|
|
1753
1767
|
- lib/zernio-sdk/models/boost_post_request_targeting_custom_locations_inner.rb
|
|
1754
1768
|
- lib/zernio-sdk/models/boost_post_request_targeting_regions_inner.rb
|
|
1755
1769
|
- lib/zernio-sdk/models/boost_post_request_tracking.rb
|
|
1770
|
+
- lib/zernio-sdk/models/boost_post_request_tracking_url_tags_inner.rb
|
|
1756
1771
|
- lib/zernio-sdk/models/bulk_create_contacts200_response.rb
|
|
1757
1772
|
- lib/zernio-sdk/models/bulk_create_contacts_request.rb
|
|
1758
1773
|
- lib/zernio-sdk/models/bulk_create_contacts_request_contacts_inner.rb
|
|
@@ -1864,7 +1879,6 @@ files:
|
|
|
1864
1879
|
- lib/zernio-sdk/models/create_lead_form200_response.rb
|
|
1865
1880
|
- lib/zernio-sdk/models/create_lead_form_request.rb
|
|
1866
1881
|
- lib/zernio-sdk/models/create_lead_form_request_questions_inner.rb
|
|
1867
|
-
- lib/zernio-sdk/models/create_lead_form_request_questions_inner_options_inner.rb
|
|
1868
1882
|
- lib/zernio-sdk/models/create_messaging_ad_request.rb
|
|
1869
1883
|
- lib/zernio-sdk/models/create_phone_number_kyc_link200_response.rb
|
|
1870
1884
|
- lib/zernio-sdk/models/create_phone_number_kyc_link_request.rb
|
|
@@ -3160,9 +3174,12 @@ files:
|
|
|
3160
3174
|
- spec/api/account_groups_api_spec.rb
|
|
3161
3175
|
- spec/api/account_settings_api_spec.rb
|
|
3162
3176
|
- spec/api/accounts_api_spec.rb
|
|
3177
|
+
- spec/api/ad_accounts_api_spec.rb
|
|
3163
3178
|
- spec/api/ad_audiences_api_spec.rb
|
|
3164
3179
|
- spec/api/ad_campaigns_api_spec.rb
|
|
3165
|
-
- spec/api/
|
|
3180
|
+
- spec/api/ad_creatives_api_spec.rb
|
|
3181
|
+
- spec/api/ad_insights_api_spec.rb
|
|
3182
|
+
- spec/api/ad_targeting_api_spec.rb
|
|
3166
3183
|
- spec/api/analytics_api_spec.rb
|
|
3167
3184
|
- spec/api/api_keys_api_spec.rb
|
|
3168
3185
|
- spec/api/broadcasts_api_spec.rb
|
|
@@ -3171,6 +3188,7 @@ files:
|
|
|
3171
3188
|
- spec/api/comments_api_spec.rb
|
|
3172
3189
|
- spec/api/connect_api_spec.rb
|
|
3173
3190
|
- spec/api/contacts_api_spec.rb
|
|
3191
|
+
- spec/api/conversions_api_spec.rb
|
|
3174
3192
|
- spec/api/custom_fields_api_spec.rb
|
|
3175
3193
|
- spec/api/discord_api_spec.rb
|
|
3176
3194
|
- spec/api/gmb_attributes_api_spec.rb
|
|
@@ -3184,15 +3202,18 @@ files:
|
|
|
3184
3202
|
- spec/api/inbox_analytics_api_spec.rb
|
|
3185
3203
|
- spec/api/instagram_api_spec.rb
|
|
3186
3204
|
- spec/api/invites_api_spec.rb
|
|
3205
|
+
- spec/api/lead_gen_api_spec.rb
|
|
3187
3206
|
- spec/api/linked_in_mentions_api_spec.rb
|
|
3188
3207
|
- spec/api/logs_api_spec.rb
|
|
3189
3208
|
- spec/api/media_api_spec.rb
|
|
3190
3209
|
- spec/api/mentions_api_spec.rb
|
|
3191
3210
|
- spec/api/messages_api_spec.rb
|
|
3211
|
+
- spec/api/messaging_ads_api_spec.rb
|
|
3192
3212
|
- spec/api/phone_numbers_api_spec.rb
|
|
3193
3213
|
- spec/api/posts_api_spec.rb
|
|
3194
3214
|
- spec/api/profiles_api_spec.rb
|
|
3195
3215
|
- spec/api/queue_api_spec.rb
|
|
3216
|
+
- spec/api/reach_and_frequency_api_spec.rb
|
|
3196
3217
|
- spec/api/reddit_search_api_spec.rb
|
|
3197
3218
|
- spec/api/reviews_api_spec.rb
|
|
3198
3219
|
- spec/api/sequences_api_spec.rb
|
|
@@ -3297,6 +3318,7 @@ files:
|
|
|
3297
3318
|
- spec/models/boost_post_request_targeting_regions_inner_spec.rb
|
|
3298
3319
|
- spec/models/boost_post_request_targeting_spec.rb
|
|
3299
3320
|
- spec/models/boost_post_request_tracking_spec.rb
|
|
3321
|
+
- spec/models/boost_post_request_tracking_url_tags_inner_spec.rb
|
|
3300
3322
|
- spec/models/bulk_create_contacts200_response_spec.rb
|
|
3301
3323
|
- spec/models/bulk_create_contacts_request_contacts_inner_spec.rb
|
|
3302
3324
|
- spec/models/bulk_create_contacts_request_spec.rb
|
|
@@ -3406,7 +3428,6 @@ files:
|
|
|
3406
3428
|
- spec/models/create_invite_token201_response_spec.rb
|
|
3407
3429
|
- spec/models/create_invite_token_request_spec.rb
|
|
3408
3430
|
- spec/models/create_lead_form200_response_spec.rb
|
|
3409
|
-
- spec/models/create_lead_form_request_questions_inner_options_inner_spec.rb
|
|
3410
3431
|
- spec/models/create_lead_form_request_questions_inner_spec.rb
|
|
3411
3432
|
- spec/models/create_lead_form_request_spec.rb
|
|
3412
3433
|
- spec/models/create_messaging_ad_request_spec.rb
|
|
@@ -4729,8 +4750,10 @@ test_files:
|
|
|
4729
4750
|
- spec/api/invites_api_spec.rb
|
|
4730
4751
|
- spec/api/ad_audiences_api_spec.rb
|
|
4731
4752
|
- spec/api/usage_api_spec.rb
|
|
4753
|
+
- spec/api/reach_and_frequency_api_spec.rb
|
|
4732
4754
|
- spec/api/messages_api_spec.rb
|
|
4733
4755
|
- spec/api/api_keys_api_spec.rb
|
|
4756
|
+
- spec/api/ad_insights_api_spec.rb
|
|
4734
4757
|
- spec/api/accounts_api_spec.rb
|
|
4735
4758
|
- spec/api/comments_api_spec.rb
|
|
4736
4759
|
- spec/api/ad_campaigns_api_spec.rb
|
|
@@ -4738,11 +4761,14 @@ test_files:
|
|
|
4738
4761
|
- spec/api/custom_fields_api_spec.rb
|
|
4739
4762
|
- spec/api/inbox_analytics_api_spec.rb
|
|
4740
4763
|
- spec/api/gmb_verifications_api_spec.rb
|
|
4764
|
+
- spec/api/messaging_ads_api_spec.rb
|
|
4741
4765
|
- spec/api/validate_api_spec.rb
|
|
4766
|
+
- spec/api/ad_accounts_api_spec.rb
|
|
4742
4767
|
- spec/api/whats_app_api_spec.rb
|
|
4743
4768
|
- spec/api/phone_numbers_api_spec.rb
|
|
4744
4769
|
- spec/api/whats_app_calling_api_spec.rb
|
|
4745
4770
|
- spec/api/profiles_api_spec.rb
|
|
4771
|
+
- spec/api/conversions_api_spec.rb
|
|
4746
4772
|
- spec/api/users_api_spec.rb
|
|
4747
4773
|
- spec/api/reviews_api_spec.rb
|
|
4748
4774
|
- spec/api/connect_api_spec.rb
|
|
@@ -4750,21 +4776,23 @@ test_files:
|
|
|
4750
4776
|
- spec/api/sequences_api_spec.rb
|
|
4751
4777
|
- spec/api/logs_api_spec.rb
|
|
4752
4778
|
- spec/api/twitter_engagement_api_spec.rb
|
|
4779
|
+
- spec/api/lead_gen_api_spec.rb
|
|
4753
4780
|
- spec/api/account_groups_api_spec.rb
|
|
4754
4781
|
- spec/api/comment_automations_api_spec.rb
|
|
4755
4782
|
- spec/api/webhooks_api_spec.rb
|
|
4756
4783
|
- spec/api/voice_api_spec.rb
|
|
4757
|
-
- spec/api/ads_api_spec.rb
|
|
4758
4784
|
- spec/api/verify_api_spec.rb
|
|
4759
4785
|
- spec/api/broadcasts_api_spec.rb
|
|
4760
4786
|
- spec/api/mentions_api_spec.rb
|
|
4761
4787
|
- spec/api/whats_app_phone_numbers_api_spec.rb
|
|
4762
4788
|
- spec/api/instagram_api_spec.rb
|
|
4789
|
+
- spec/api/ad_targeting_api_spec.rb
|
|
4763
4790
|
- spec/api/queue_api_spec.rb
|
|
4764
4791
|
- spec/api/whats_app_templates_api_spec.rb
|
|
4765
4792
|
- spec/api/tracking_tags_api_spec.rb
|
|
4766
4793
|
- spec/api/contacts_api_spec.rb
|
|
4767
4794
|
- spec/api/sms_api_spec.rb
|
|
4795
|
+
- spec/api/ad_creatives_api_spec.rb
|
|
4768
4796
|
- spec/api/account_settings_api_spec.rb
|
|
4769
4797
|
- spec/api/gmb_reviews_api_spec.rb
|
|
4770
4798
|
- spec/api/posts_api_spec.rb
|
|
@@ -5026,7 +5054,6 @@ test_files:
|
|
|
5026
5054
|
- spec/models/create_workflow200_response_spec.rb
|
|
5027
5055
|
- spec/models/upload_phone_number_port_in_document200_response_spec.rb
|
|
5028
5056
|
- spec/models/create_contact200_response_contact_spec.rb
|
|
5029
|
-
- spec/models/create_lead_form_request_questions_inner_options_inner_spec.rb
|
|
5030
5057
|
- spec/models/get_phone_number_port_in_requirements200_response_spec.rb
|
|
5031
5058
|
- spec/models/set_telegram_commands_request_spec.rb
|
|
5032
5059
|
- spec/models/update_ad_tracking_tags_request_creative_spec.rb
|
|
@@ -5217,6 +5244,7 @@ test_files:
|
|
|
5217
5244
|
- spec/models/send_whats_app_flow_message_request_header_spec.rb
|
|
5218
5245
|
- spec/models/get_gmb_attribute_metadata200_response_attribute_metadata_inner_spec.rb
|
|
5219
5246
|
- spec/models/get_comment_automation200_response_automation_spec.rb
|
|
5247
|
+
- spec/models/boost_post_request_tracking_url_tags_inner_spec.rb
|
|
5220
5248
|
- spec/models/approve_whats_app_group_join_requests_request_spec.rb
|
|
5221
5249
|
- spec/models/send_inbox_message_request_interactive_action_one_of6_sections_inner_product_items_inner_spec.rb
|
|
5222
5250
|
- spec/models/get_post_timeline400_response_spec.rb
|