late-sdk 0.0.550 → 0.0.551
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 +72 -74
- 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/ConversionsApi.md +890 -0
- 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/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 +8 -1
- data/openapi.yaml +321 -162
- 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/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
- data/zernio-sdk-0.0.551.gem +0 -0
- metadata +35 -7
- 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
- data/zernio-sdk-0.0.550.gem +0 -0
|
@@ -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.
|
|
@@ -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/
|
|
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.551
|
|
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
|
|
@@ -208,6 +211,7 @@ files:
|
|
|
208
211
|
- docs/ConversionEventItemsInner.md
|
|
209
212
|
- docs/ConversionEventUser.md
|
|
210
213
|
- docs/ConversionEventUserClickIds.md
|
|
214
|
+
- docs/ConversionsApi.md
|
|
211
215
|
- docs/CreateAccountGroup201Response.md
|
|
212
216
|
- docs/CreateAccountGroup201ResponseGroup.md
|
|
213
217
|
- docs/CreateAccountGroupRequest.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
|
|
@@ -1612,9 +1619,12 @@ files:
|
|
|
1612
1619
|
- lib/zernio-sdk/api/account_groups_api.rb
|
|
1613
1620
|
- lib/zernio-sdk/api/account_settings_api.rb
|
|
1614
1621
|
- lib/zernio-sdk/api/accounts_api.rb
|
|
1622
|
+
- lib/zernio-sdk/api/ad_accounts_api.rb
|
|
1615
1623
|
- lib/zernio-sdk/api/ad_audiences_api.rb
|
|
1616
1624
|
- lib/zernio-sdk/api/ad_campaigns_api.rb
|
|
1617
|
-
- lib/zernio-sdk/api/
|
|
1625
|
+
- lib/zernio-sdk/api/ad_creatives_api.rb
|
|
1626
|
+
- lib/zernio-sdk/api/ad_insights_api.rb
|
|
1627
|
+
- lib/zernio-sdk/api/ad_targeting_api.rb
|
|
1618
1628
|
- lib/zernio-sdk/api/analytics_api.rb
|
|
1619
1629
|
- lib/zernio-sdk/api/api_keys_api.rb
|
|
1620
1630
|
- lib/zernio-sdk/api/broadcasts_api.rb
|
|
@@ -1623,6 +1633,7 @@ files:
|
|
|
1623
1633
|
- lib/zernio-sdk/api/comments_api.rb
|
|
1624
1634
|
- lib/zernio-sdk/api/connect_api.rb
|
|
1625
1635
|
- lib/zernio-sdk/api/contacts_api.rb
|
|
1636
|
+
- lib/zernio-sdk/api/conversions_api.rb
|
|
1626
1637
|
- lib/zernio-sdk/api/custom_fields_api.rb
|
|
1627
1638
|
- lib/zernio-sdk/api/discord_api.rb
|
|
1628
1639
|
- lib/zernio-sdk/api/gmb_attributes_api.rb
|
|
@@ -1636,15 +1647,18 @@ files:
|
|
|
1636
1647
|
- lib/zernio-sdk/api/inbox_analytics_api.rb
|
|
1637
1648
|
- lib/zernio-sdk/api/instagram_api.rb
|
|
1638
1649
|
- lib/zernio-sdk/api/invites_api.rb
|
|
1650
|
+
- lib/zernio-sdk/api/lead_gen_api.rb
|
|
1639
1651
|
- lib/zernio-sdk/api/linked_in_mentions_api.rb
|
|
1640
1652
|
- lib/zernio-sdk/api/logs_api.rb
|
|
1641
1653
|
- lib/zernio-sdk/api/media_api.rb
|
|
1642
1654
|
- lib/zernio-sdk/api/mentions_api.rb
|
|
1643
1655
|
- lib/zernio-sdk/api/messages_api.rb
|
|
1656
|
+
- lib/zernio-sdk/api/messaging_ads_api.rb
|
|
1644
1657
|
- lib/zernio-sdk/api/phone_numbers_api.rb
|
|
1645
1658
|
- lib/zernio-sdk/api/posts_api.rb
|
|
1646
1659
|
- lib/zernio-sdk/api/profiles_api.rb
|
|
1647
1660
|
- lib/zernio-sdk/api/queue_api.rb
|
|
1661
|
+
- lib/zernio-sdk/api/reach_and_frequency_api.rb
|
|
1648
1662
|
- lib/zernio-sdk/api/reddit_search_api.rb
|
|
1649
1663
|
- lib/zernio-sdk/api/reviews_api.rb
|
|
1650
1664
|
- lib/zernio-sdk/api/sequences_api.rb
|
|
@@ -3161,9 +3175,12 @@ files:
|
|
|
3161
3175
|
- spec/api/account_groups_api_spec.rb
|
|
3162
3176
|
- spec/api/account_settings_api_spec.rb
|
|
3163
3177
|
- spec/api/accounts_api_spec.rb
|
|
3178
|
+
- spec/api/ad_accounts_api_spec.rb
|
|
3164
3179
|
- spec/api/ad_audiences_api_spec.rb
|
|
3165
3180
|
- spec/api/ad_campaigns_api_spec.rb
|
|
3166
|
-
- spec/api/
|
|
3181
|
+
- spec/api/ad_creatives_api_spec.rb
|
|
3182
|
+
- spec/api/ad_insights_api_spec.rb
|
|
3183
|
+
- spec/api/ad_targeting_api_spec.rb
|
|
3167
3184
|
- spec/api/analytics_api_spec.rb
|
|
3168
3185
|
- spec/api/api_keys_api_spec.rb
|
|
3169
3186
|
- spec/api/broadcasts_api_spec.rb
|
|
@@ -3172,6 +3189,7 @@ files:
|
|
|
3172
3189
|
- spec/api/comments_api_spec.rb
|
|
3173
3190
|
- spec/api/connect_api_spec.rb
|
|
3174
3191
|
- spec/api/contacts_api_spec.rb
|
|
3192
|
+
- spec/api/conversions_api_spec.rb
|
|
3175
3193
|
- spec/api/custom_fields_api_spec.rb
|
|
3176
3194
|
- spec/api/discord_api_spec.rb
|
|
3177
3195
|
- spec/api/gmb_attributes_api_spec.rb
|
|
@@ -3185,15 +3203,18 @@ files:
|
|
|
3185
3203
|
- spec/api/inbox_analytics_api_spec.rb
|
|
3186
3204
|
- spec/api/instagram_api_spec.rb
|
|
3187
3205
|
- spec/api/invites_api_spec.rb
|
|
3206
|
+
- spec/api/lead_gen_api_spec.rb
|
|
3188
3207
|
- spec/api/linked_in_mentions_api_spec.rb
|
|
3189
3208
|
- spec/api/logs_api_spec.rb
|
|
3190
3209
|
- spec/api/media_api_spec.rb
|
|
3191
3210
|
- spec/api/mentions_api_spec.rb
|
|
3192
3211
|
- spec/api/messages_api_spec.rb
|
|
3212
|
+
- spec/api/messaging_ads_api_spec.rb
|
|
3193
3213
|
- spec/api/phone_numbers_api_spec.rb
|
|
3194
3214
|
- spec/api/posts_api_spec.rb
|
|
3195
3215
|
- spec/api/profiles_api_spec.rb
|
|
3196
3216
|
- spec/api/queue_api_spec.rb
|
|
3217
|
+
- spec/api/reach_and_frequency_api_spec.rb
|
|
3197
3218
|
- spec/api/reddit_search_api_spec.rb
|
|
3198
3219
|
- spec/api/reviews_api_spec.rb
|
|
3199
3220
|
- spec/api/sequences_api_spec.rb
|
|
@@ -4700,7 +4721,7 @@ files:
|
|
|
4700
4721
|
- spec/models/you_tube_video_retention_response_retention_curve_inner_spec.rb
|
|
4701
4722
|
- spec/models/you_tube_video_retention_response_spec.rb
|
|
4702
4723
|
- spec/spec_helper.rb
|
|
4703
|
-
- zernio-sdk-0.0.
|
|
4724
|
+
- zernio-sdk-0.0.551.gem
|
|
4704
4725
|
- zernio-sdk.gemspec
|
|
4705
4726
|
homepage: https://openapi-generator.tech
|
|
4706
4727
|
licenses:
|
|
@@ -4731,8 +4752,10 @@ test_files:
|
|
|
4731
4752
|
- spec/api/invites_api_spec.rb
|
|
4732
4753
|
- spec/api/ad_audiences_api_spec.rb
|
|
4733
4754
|
- spec/api/usage_api_spec.rb
|
|
4755
|
+
- spec/api/reach_and_frequency_api_spec.rb
|
|
4734
4756
|
- spec/api/messages_api_spec.rb
|
|
4735
4757
|
- spec/api/api_keys_api_spec.rb
|
|
4758
|
+
- spec/api/ad_insights_api_spec.rb
|
|
4736
4759
|
- spec/api/accounts_api_spec.rb
|
|
4737
4760
|
- spec/api/comments_api_spec.rb
|
|
4738
4761
|
- spec/api/ad_campaigns_api_spec.rb
|
|
@@ -4740,11 +4763,14 @@ test_files:
|
|
|
4740
4763
|
- spec/api/custom_fields_api_spec.rb
|
|
4741
4764
|
- spec/api/inbox_analytics_api_spec.rb
|
|
4742
4765
|
- spec/api/gmb_verifications_api_spec.rb
|
|
4766
|
+
- spec/api/messaging_ads_api_spec.rb
|
|
4743
4767
|
- spec/api/validate_api_spec.rb
|
|
4768
|
+
- spec/api/ad_accounts_api_spec.rb
|
|
4744
4769
|
- spec/api/whats_app_api_spec.rb
|
|
4745
4770
|
- spec/api/phone_numbers_api_spec.rb
|
|
4746
4771
|
- spec/api/whats_app_calling_api_spec.rb
|
|
4747
4772
|
- spec/api/profiles_api_spec.rb
|
|
4773
|
+
- spec/api/conversions_api_spec.rb
|
|
4748
4774
|
- spec/api/users_api_spec.rb
|
|
4749
4775
|
- spec/api/reviews_api_spec.rb
|
|
4750
4776
|
- spec/api/connect_api_spec.rb
|
|
@@ -4752,21 +4778,23 @@ test_files:
|
|
|
4752
4778
|
- spec/api/sequences_api_spec.rb
|
|
4753
4779
|
- spec/api/logs_api_spec.rb
|
|
4754
4780
|
- spec/api/twitter_engagement_api_spec.rb
|
|
4781
|
+
- spec/api/lead_gen_api_spec.rb
|
|
4755
4782
|
- spec/api/account_groups_api_spec.rb
|
|
4756
4783
|
- spec/api/comment_automations_api_spec.rb
|
|
4757
4784
|
- spec/api/webhooks_api_spec.rb
|
|
4758
4785
|
- spec/api/voice_api_spec.rb
|
|
4759
|
-
- spec/api/ads_api_spec.rb
|
|
4760
4786
|
- spec/api/verify_api_spec.rb
|
|
4761
4787
|
- spec/api/broadcasts_api_spec.rb
|
|
4762
4788
|
- spec/api/mentions_api_spec.rb
|
|
4763
4789
|
- spec/api/whats_app_phone_numbers_api_spec.rb
|
|
4764
4790
|
- spec/api/instagram_api_spec.rb
|
|
4791
|
+
- spec/api/ad_targeting_api_spec.rb
|
|
4765
4792
|
- spec/api/queue_api_spec.rb
|
|
4766
4793
|
- spec/api/whats_app_templates_api_spec.rb
|
|
4767
4794
|
- spec/api/tracking_tags_api_spec.rb
|
|
4768
4795
|
- spec/api/contacts_api_spec.rb
|
|
4769
4796
|
- spec/api/sms_api_spec.rb
|
|
4797
|
+
- spec/api/ad_creatives_api_spec.rb
|
|
4770
4798
|
- spec/api/account_settings_api_spec.rb
|
|
4771
4799
|
- spec/api/gmb_reviews_api_spec.rb
|
|
4772
4800
|
- spec/api/posts_api_spec.rb
|