late-sdk 0.0.615 → 0.0.617

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: 50a07fcc89783915a80ec39abfe8191638a1203e98383442c48fdc1056096fae
4
+ data.tar.gz: 63fa605dacbe14ad9685b4b21377b57a5d474b727f5550a680ad4eca2458c7f5
5
5
  SHA512:
6
- metadata.gz: 0e805df737a3802362d9553ff95439b0f5819fd4b4b94f7a95311d787917f131b6687116dc72f57c58b0206b328222a4f7593eb0230e8e72dd85a79a61558396
7
- data.tar.gz: d051033d468cc1ea6d0ac25d8933438bec3d89ddfd7204c9a99b491f5b702c1615c00c38be2c8a4f7a2259d8d1c65ceaaedfac39ac3e724418601407c87e1d83
6
+ metadata.gz: 6f41055a3e4cb196cb228915e9dde3a2840e58038b31a9a68b99fa2a42491a0b25a25a2558a34a5c525700087aee96c6d6050fd9d83024c549ab14497f6dd81b
7
+ data.tar.gz: cf72663bbeff5cea26c33a8911f3b6659ad794c97beae6f20a22a97115c503383fa1818a87ac2eaca80cd2cf90b066780fc6c86cc1eb2110a5ce9a3578312f65
@@ -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.617'
15
15
  end
data/openapi.yaml CHANGED
@@ -126,7 +126,7 @@ x-documentation:
126
126
 
127
127
  Legacy AppSumo lifetime tiers get a flat 600 req/min regardless of tier.
128
128
 
129
- Posts themselves are unlimited on every connected social account; the rate limit applies only to API request throughput. Per-platform safety caps still apply at the social-network side (Instagram 100/day per account, Twitter 20/day per account, Pinterest 25/day per account).
129
+ Posts themselves are unlimited on every connected social account; the rate limit applies only to API request throughput. Zernio also applies per-account daily publish caps as an anti-abuse safeguard (Instagram 100/day, Facebook 100/day, Threads 250/day, X/Twitter 50/day, Pinterest 25/day, 50/day for every other platform), plus a 25-posts-per-hour per-account velocity cap.
130
130
 
131
131
  All responses include `X-RateLimit-Limit`, `X-RateLimit-Remaining`, and `X-RateLimit-Reset` headers — read these instead of hard-coding limits, since your tier may be configured higher than the default.
132
132
 
@@ -12859,7 +12859,7 @@ paths:
12859
12859
  platform: { type: string }
12860
12860
  existingPostId: { type: string }
12861
12861
  '429':
12862
- description: "Rate limit exceeded. Possible causes: API rate limit, velocity limit (15 posts/hour per account), account cooldown, or daily platform limits."
12862
+ description: "Rate limit exceeded. Possible causes: API rate limit, velocity limit (25 posts/hour per account), account cooldown, or daily platform limits."
12863
12863
  content:
12864
12864
  application/json:
12865
12865
  schema:
@@ -13334,7 +13334,7 @@ paths:
13334
13334
  description: Post is currently publishing
13335
13335
  '429':
13336
13336
  description: |
13337
- Rate limit exceeded. Possible causes: API rate limit (requests per minute), velocity limit (15 posts/hour per account), or account cooldown (temporarily rate-limited due to repeated errors).
13337
+ Rate limit exceeded. Possible causes: API rate limit (requests per minute), velocity limit (25 posts/hour per account), or account cooldown (temporarily rate-limited due to repeated errors).
13338
13338
  content:
13339
13339
  application/json:
13340
13340
  schema:
@@ -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.617
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.617.gem
4890
4890
  - zernio-sdk.gemspec
4891
4891
  homepage: https://openapi-generator.tech
4892
4892
  licenses:
Binary file