late-sdk 0.0.615 → 0.0.616

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5c34aacb7001c9dc8d3419bfdb30fd2f0cce5e9928b45884572d5e4e1f69b0a8
4
- data.tar.gz: 107b48d949543db735a3c63a36ecacd1ffded8318d94a7979b68e3f63912115a
3
+ metadata.gz: f6cd803c3a4873c55bb4fa069dc9e85a476c4b61342a2f9e9987b23521d5bf2e
4
+ data.tar.gz: 9b43e7854f88d25ecb5e828a059bf41d460ea8a5fde8a1cb734e45acb604d40a
5
5
  SHA512:
6
- metadata.gz: 0e805df737a3802362d9553ff95439b0f5819fd4b4b94f7a95311d787917f131b6687116dc72f57c58b0206b328222a4f7593eb0230e8e72dd85a79a61558396
7
- data.tar.gz: d051033d468cc1ea6d0ac25d8933438bec3d89ddfd7204c9a99b491f5b702c1615c00c38be2c8a4f7a2259d8d1c65ceaaedfac39ac3e724418601407c87e1d83
6
+ metadata.gz: 6bbb9defe9ff040725957cb04059f49c22ec0a0de25d1886d12c18b7d9eed5a2f11f8c9a3c179356f4f2e5a892464d7639eb982865abe1d737e76749d01b908b
7
+ data.tar.gz: d1b5ae08e405bf2046ce8508913766fccabdf6a194b932678fcd71d2eb67af8d4d3ee6098eff2da8d00e1369c0302ad8bc84c0e5aeb564f4f412d83fa6e9163c
@@ -5,7 +5,7 @@
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
7
  | **pixel_id** | **String** | | [optional] |
8
- | **url_tags** | [**Array<BoostPostRequestTrackingUrlTagsInner>**](BoostPostRequestTrackingUrlTagsInner.md) | URL parameters appended to the ad link, rendered as `key=value` pairs joined with `&`. | [optional] |
8
+ | **url_tags** | [**Array<BoostPostRequestTrackingUrlTagsInner>**](BoostPostRequestTrackingUrlTagsInner.md) | URL parameters appended to the ad link, rendered as `key=value` pairs joined with `&`. Meta dynamic macros ({{ad.id}}, {{campaign.id}}, {{placement}}, ...) are sent through unescaped so Meta expands them; every other character is percent-encoded. | [optional] |
9
9
 
10
10
  ## Example
11
11
 
@@ -5,7 +5,7 @@
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
7
  | **pixel_id** | **String** | Meta Pixel ID to attach for offsite-conversion measurement. | [optional] |
8
- | **url_tags** | [**Array<UpdateAdTrackingTagsRequestUrlTagsInner>**](UpdateAdTrackingTagsRequestUrlTagsInner.md) | Click-URL params appended to the ad's destination as `url_tags` (e.g. utm_source). | [optional] |
8
+ | **url_tags** | [**Array<UpdateAdTrackingTagsRequestUrlTagsInner>**](UpdateAdTrackingTagsRequestUrlTagsInner.md) | Click-URL params appended to the ad's destination as `url_tags` (e.g. utm_source). Meta dynamic macros ({{ad.id}}, {{campaign.id}}, {{placement}}, ...) are sent through unescaped so Meta expands them; every other character is percent-encoded. | [optional] |
9
9
 
10
10
  ## Example
11
11
 
@@ -4,7 +4,7 @@
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
- | **url_tags** | [**Array<UpdateAdTrackingTagsRequestUrlTagsInner>**](UpdateAdTrackingTagsRequestUrlTagsInner.md) | Meta only. Click-URL params appended to a freshly-rebuilt creative. | [optional] |
7
+ | **url_tags** | [**Array<UpdateAdTrackingTagsRequestUrlTagsInner>**](UpdateAdTrackingTagsRequestUrlTagsInner.md) | Meta only. Click-URL params appended to a freshly-rebuilt creative. Meta dynamic macros ({{ad.id}}, {{campaign.id}}, {{placement}}, ...) are sent through unescaped so Meta expands them; every other character is percent-encoded. | [optional] |
8
8
  | **creative** | [**UpdateAdTrackingTagsRequestCreative**](UpdateAdTrackingTagsRequestCreative.md) | | [optional] |
9
9
  | **tracking_url_template** | **String** | Google only. Full tracking template (must contain {lpurl}). | [optional] |
10
10
  | **final_url_suffix** | **String** | Google only. Parse-only key=value params. | [optional] |
@@ -18,7 +18,7 @@ module Zernio
18
18
  class BoostPostRequestTracking < ApiModelBase
19
19
  attr_accessor :pixel_id
20
20
 
21
- # URL parameters appended to the ad link, rendered as `key=value` pairs joined with `&`.
21
+ # URL parameters appended to the ad link, rendered as `key=value` pairs joined with `&`. Meta dynamic macros ({{ad.id}}, {{campaign.id}}, {{placement}}, ...) are sent through unescaped so Meta expands them; every other character is percent-encoded.
22
22
  attr_accessor :url_tags
23
23
 
24
24
  # Attribute mapping from ruby-style variable name to JSON key.
@@ -19,7 +19,7 @@ module Zernio
19
19
  # Meta Pixel ID to attach for offsite-conversion measurement.
20
20
  attr_accessor :pixel_id
21
21
 
22
- # Click-URL params appended to the ad's destination as `url_tags` (e.g. utm_source).
22
+ # Click-URL params appended to the ad's destination as `url_tags` (e.g. utm_source). Meta dynamic macros ({{ad.id}}, {{campaign.id}}, {{placement}}, ...) are sent through unescaped so Meta expands them; every other character is percent-encoded.
23
23
  attr_accessor :url_tags
24
24
 
25
25
  # Attribute mapping from ruby-style variable name to JSON key.
@@ -15,7 +15,7 @@ require 'time'
15
15
 
16
16
  module Zernio
17
17
  class UpdateAdTrackingTagsRequest < ApiModelBase
18
- # Meta only. Click-URL params appended to a freshly-rebuilt creative.
18
+ # Meta only. Click-URL params appended to a freshly-rebuilt creative. Meta dynamic macros ({{ad.id}}, {{campaign.id}}, {{placement}}, ...) are sent through unescaped so Meta expands them; every other character is percent-encoded.
19
19
  attr_accessor :url_tags
20
20
 
21
21
  attr_accessor :creative
@@ -11,5 +11,5 @@ Generator version: 7.19.0
11
11
  =end
12
12
 
13
13
  module Zernio
14
- VERSION = '0.0.615'
14
+ VERSION = '0.0.616'
15
15
  end
data/openapi.yaml CHANGED
@@ -36073,7 +36073,7 @@ paths:
36073
36073
  properties:
36074
36074
  urlTags:
36075
36075
  type: array
36076
- description: "Meta only. Click-URL params appended to a freshly-rebuilt creative."
36076
+ description: "Meta only. Click-URL params appended to a freshly-rebuilt creative. Meta dynamic macros ({{ad.id}}, {{campaign.id}}, {{placement}}, ...) are sent through unescaped so Meta expands them; every other character is percent-encoded."
36077
36077
  items:
36078
36078
  type: object
36079
36079
  required: [key, value]
@@ -37119,7 +37119,7 @@ paths:
37119
37119
  pixelId: { type: string }
37120
37120
  urlTags:
37121
37121
  type: array
37122
- description: 'URL parameters appended to the ad link, rendered as `key=value` pairs joined with `&`.'
37122
+ description: 'URL parameters appended to the ad link, rendered as `key=value` pairs joined with `&`. Meta dynamic macros ({{ad.id}}, {{campaign.id}}, {{placement}}, ...) are sent through unescaped so Meta expands them; every other character is percent-encoded.'
37123
37123
  items:
37124
37124
  type: object
37125
37125
  properties:
@@ -37264,7 +37264,7 @@ paths:
37264
37264
  pixelId: { type: string, description: "Meta Pixel ID to attach for offsite-conversion measurement." }
37265
37265
  urlTags:
37266
37266
  type: array
37267
- description: "Click-URL params appended to the ad's destination as `url_tags` (e.g. utm_source)."
37267
+ description: "Click-URL params appended to the ad's destination as `url_tags` (e.g. utm_source). Meta dynamic macros ({{ad.id}}, {{campaign.id}}, {{placement}}, ...) are sent through unescaped so Meta expands them; every other character is percent-encoded."
37268
37268
  items:
37269
37269
  type: object
37270
37270
  required: [key, value]
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.615
4
+ version: 0.0.616
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
@@ -4886,7 +4886,7 @@ files:
4886
4886
  - spec/models/you_tube_video_retention_response_retention_curve_inner_spec.rb
4887
4887
  - spec/models/you_tube_video_retention_response_spec.rb
4888
4888
  - spec/spec_helper.rb
4889
- - zernio-sdk-0.0.615.gem
4889
+ - zernio-sdk-0.0.616.gem
4890
4890
  - zernio-sdk.gemspec
4891
4891
  homepage: https://openapi-generator.tech
4892
4892
  licenses:
Binary file