late-sdk 0.0.573 → 0.0.574

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: 3da1fa551bb44d45961b17e7589dae1c0a66f0b5ec0a8e9a611623cd3ad04218
4
- data.tar.gz: 6fba2cd45fa53877d47b50c73cf037299b91df852d4cb57427b9cb98e00dc0bb
3
+ metadata.gz: b6d6f134ed7c6813b41d986ea7635c79a7a7638364723aad85e3e3d2da6d71ec
4
+ data.tar.gz: 541a64e53cf8f6fb5c6abf79c75228cb07a02d3288c209cb7076fc5aabcc98c0
5
5
  SHA512:
6
- metadata.gz: 9fd4d7a7b0d175b9aac2eb878784e01e2bfeea33b3b6c6ed03d75f55d9481d95a3c9351cab7f9239afe773e2db58f0da9d0d325157266a35275427b5cba97c14
7
- data.tar.gz: 65b8d897685e6fe062d99b896173cd757d9891137f093db4a8f1573764d3c92b8766af2757ab47a3481a5ebbd623cbf95b041211564d4b127451cbbccce3c9fa
6
+ metadata.gz: 5690f463923c722086d9352cd5dccc6e6ce41a487a3c2e8a8dd7c94f67351c97287e4f32f01017929e119f421b1bef0be1a76610974043ca8adc57ec32136b7a
7
+ data.tar.gz: c4b81fd8e40b5d3008765cafa2b9d5c32d74213c18840ee2a640992526ff8208890411363bdc6c2a917763362b327c5c5b4f5fa9d09303c2ef7201e6d1637694
@@ -397,7 +397,7 @@ end
397
397
 
398
398
  List ad accounts
399
399
 
400
- Returns the platform ad accounts available for the given social account (e.g. Meta ad accounts, TikTok advertiser IDs, Google Ads customer IDs). For TikTok agencies: enumerates every advertiser under every Business Center the token can read (paginated server-side), then chunks the lookup against TikTok's `/advertiser/info/` endpoint (which has a per-call cap of ≤100 IDs). Solo advertisers without a BC fall back to the OAuth-time `advertiser_ids` list. Cached for 1h on the SocialAccount; lazy-refreshed on first call after expiry.
400
+ Returns the platform ad accounts available for the given social account (e.g. Meta ad accounts, TikTok advertiser IDs, Google Ads customer IDs). For TikTok agencies: enumerates every advertiser under every Business Center the token can read (paginated server-side), then chunks the lookup against TikTok's `/advertiser/info/` endpoint (which has a per-call cap of ≤100 IDs). Solo advertisers without a BC fall back to the OAuth-time `advertiser_ids` list. Cached for 1h on the SocialAccount; lazy-refreshed on first call after expiry. For Google Ads: responds `429` when Google's API quota is temporarily exhausted (instead of an empty list). Retry after a delay.
401
401
 
402
402
  ### Examples
403
403
 
@@ -411,7 +411,7 @@ module Zernio
411
411
  end
412
412
 
413
413
  # List ad accounts
414
- # Returns the platform ad accounts available for the given social account (e.g. Meta ad accounts, TikTok advertiser IDs, Google Ads customer IDs). For TikTok agencies: enumerates every advertiser under every Business Center the token can read (paginated server-side), then chunks the lookup against TikTok's `/advertiser/info/` endpoint (which has a per-call cap of ≤100 IDs). Solo advertisers without a BC fall back to the OAuth-time `advertiser_ids` list. Cached for 1h on the SocialAccount; lazy-refreshed on first call after expiry.
414
+ # Returns the platform ad accounts available for the given social account (e.g. Meta ad accounts, TikTok advertiser IDs, Google Ads customer IDs). For TikTok agencies: enumerates every advertiser under every Business Center the token can read (paginated server-side), then chunks the lookup against TikTok's `/advertiser/info/` endpoint (which has a per-call cap of ≤100 IDs). Solo advertisers without a BC fall back to the OAuth-time `advertiser_ids` list. Cached for 1h on the SocialAccount; lazy-refreshed on first call after expiry. For Google Ads: responds `429` when Google's API quota is temporarily exhausted (instead of an empty list). Retry after a delay.
415
415
  # @param account_id [String] Social account ID
416
416
  # @param [Hash] opts the optional parameters
417
417
  # @option opts [String] :ad_account_id Filter response to a single platform ad account ID (e.g. `act_123` for Meta, advertiser_id for TikTok). Returns at most one item.
@@ -423,7 +423,7 @@ module Zernio
423
423
  end
424
424
 
425
425
  # List ad accounts
426
- # Returns the platform ad accounts available for the given social account (e.g. Meta ad accounts, TikTok advertiser IDs, Google Ads customer IDs). For TikTok agencies: enumerates every advertiser under every Business Center the token can read (paginated server-side), then chunks the lookup against TikTok's `/advertiser/info/` endpoint (which has a per-call cap of ≤100 IDs). Solo advertisers without a BC fall back to the OAuth-time `advertiser_ids` list. Cached for 1h on the SocialAccount; lazy-refreshed on first call after expiry.
426
+ # Returns the platform ad accounts available for the given social account (e.g. Meta ad accounts, TikTok advertiser IDs, Google Ads customer IDs). For TikTok agencies: enumerates every advertiser under every Business Center the token can read (paginated server-side), then chunks the lookup against TikTok's `/advertiser/info/` endpoint (which has a per-call cap of ≤100 IDs). Solo advertisers without a BC fall back to the OAuth-time `advertiser_ids` list. Cached for 1h on the SocialAccount; lazy-refreshed on first call after expiry. For Google Ads: responds `429` when Google's API quota is temporarily exhausted (instead of an empty list). Retry after a delay.
427
427
  # @param account_id [String] Social account ID
428
428
  # @param [Hash] opts the optional parameters
429
429
  # @option opts [String] :ad_account_id Filter response to a single platform ad account ID (e.g. `act_123` for Meta, advertiser_id for TikTok). Returns at most one item.
@@ -11,5 +11,5 @@ Generator version: 7.19.0
11
11
  =end
12
12
 
13
13
  module Zernio
14
- VERSION = '0.0.573'
14
+ VERSION = '0.0.574'
15
15
  end
data/openapi.yaml CHANGED
@@ -35969,6 +35969,9 @@ paths:
35969
35969
  `/advertiser/info/` endpoint (which has a per-call cap of ≤100 IDs). Solo advertisers
35970
35970
  without a BC fall back to the OAuth-time `advertiser_ids` list. Cached for 1h on the
35971
35971
  SocialAccount; lazy-refreshed on first call after expiry.
35972
+
35973
+ For Google Ads: responds `429` when Google's API quota is temporarily exhausted
35974
+ (instead of an empty list). Retry after a delay.
35972
35975
  security:
35973
35976
  - bearerAuth: []
35974
35977
  parameters:
@@ -36000,6 +36003,7 @@ paths:
36000
36003
  '401': { $ref: '#/components/responses/Unauthorized' }
36001
36004
  '422':
36002
36005
  description: Platform ads connection required (TikTok Ads, X Ads) or Instagram missing linked Facebook account
36006
+ '429': { $ref: '#/components/responses/RateLimited' }
36003
36007
  patch:
36004
36008
  operationId: updateAdAccount
36005
36009
  tags: ["Ad Accounts"]
@@ -106,7 +106,7 @@ describe 'AdAccountsApi' do
106
106
 
107
107
  # unit tests for list_ad_accounts
108
108
  # List ad accounts
109
- # Returns the platform ad accounts available for the given social account (e.g. Meta ad accounts, TikTok advertiser IDs, Google Ads customer IDs). For TikTok agencies: enumerates every advertiser under every Business Center the token can read (paginated server-side), then chunks the lookup against TikTok's `/advertiser/info/` endpoint (which has a per-call cap of ≤100 IDs). Solo advertisers without a BC fall back to the OAuth-time `advertiser_ids` list. Cached for 1h on the SocialAccount; lazy-refreshed on first call after expiry.
109
+ # Returns the platform ad accounts available for the given social account (e.g. Meta ad accounts, TikTok advertiser IDs, Google Ads customer IDs). For TikTok agencies: enumerates every advertiser under every Business Center the token can read (paginated server-side), then chunks the lookup against TikTok's `/advertiser/info/` endpoint (which has a per-call cap of ≤100 IDs). Solo advertisers without a BC fall back to the OAuth-time `advertiser_ids` list. Cached for 1h on the SocialAccount; lazy-refreshed on first call after expiry. For Google Ads: responds `429` when Google's API quota is temporarily exhausted (instead of an empty list). Retry after a delay.
110
110
  # @param account_id Social account ID
111
111
  # @param [Hash] opts the optional parameters
112
112
  # @option opts [String] :ad_account_id Filter response to a single platform ad account ID (e.g. `act_123` for Meta, advertiser_id for TikTok). Returns at most one item.
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.573
4
+ version: 0.0.574
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
@@ -4793,7 +4793,7 @@ files:
4793
4793
  - spec/models/you_tube_video_retention_response_retention_curve_inner_spec.rb
4794
4794
  - spec/models/you_tube_video_retention_response_spec.rb
4795
4795
  - spec/spec_helper.rb
4796
- - zernio-sdk-0.0.573.gem
4796
+ - zernio-sdk-0.0.574.gem
4797
4797
  - zernio-sdk.gemspec
4798
4798
  homepage: https://openapi-generator.tech
4799
4799
  licenses:
Binary file