late-sdk 0.0.939 → 0.0.941

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: e7fee19ee6d79e0037360959f02b218625cc5403fc656a1bce785ba85644294b
4
- data.tar.gz: 5bf34407d7cdcb8af7bfb57572500b556e9dacd9f1d92e1e7fab4759b37eca8a
3
+ metadata.gz: 7572f1e8a80f7ff78fc57db4478fa1f9c16c94286a18fd110aac5244ac22d0d2
4
+ data.tar.gz: b71a098ea093794e28eafc3005bd9819ee396fcb77299970afef8d87c9b95af7
5
5
  SHA512:
6
- metadata.gz: e8de5b9dd890b04f309ea11e07dce086f05db19435fd61173c98051f90e6c1384be51078cf30dd38db11632e31b38820c2287ed065d2ec95e60d714a4ee68c9f
7
- data.tar.gz: 46c9cb783ddb2e79948b5ac23b451438d413c1915258216e2f1ed209338e190a3b7ca2d4cd2165b0413c8238e0e13fd2140bd21668680494c673c1101aaf11a6
6
+ metadata.gz: ba0e223001a2f5623c13411a3f1af6723eafe525419ad9a38997909457006d519998cb01b04e1f99a5ed2c0d5f9345bb5d128b3da7ebeb5ade32a3179e3b60b7
7
+ data.tar.gz: a6d3dfcb556b6341aaf8a42b8707bb0fdea6a158ce0d26f504a2108b7a2701bb506b23a14be30330287516a7216cf9de30548291d5d835896d42c1fdb67d2d6b
data/docs/CommentsApi.md CHANGED
@@ -487,7 +487,7 @@ end
487
487
  api_instance = Zernio::CommentsApi.new
488
488
  opts = {
489
489
  profile_id: 'profile_id_example', # String | Filter by profile ID
490
- platform: 'facebook', # String | Filter by platform. `metaads` is a synthetic value meaning the user's ads (boosted/dark posts) only; `facebook`/`instagram` return organic posts only.
490
+ platform: 'facebook', # String | Filter by platform. `metaads` is a synthetic value meaning the user's ads (boosted/dark posts) only; `facebook`/`instagram` return organic posts only. `tiktok` covers accounts connected through the TikTok Business app only; developer-app TikTok accounts are returned under `meta.accountsSkipped`.
491
491
  min_comments: 56, # Integer | Minimum comment count
492
492
  since: Time.parse('2013-10-20T19:20:30+01:00'), # Time | Posts created after this date
493
493
  sort_by: 'date', # String | Sort field
@@ -529,7 +529,7 @@ end
529
529
  | Name | Type | Description | Notes |
530
530
  | ---- | ---- | ----------- | ----- |
531
531
  | **profile_id** | **String** | Filter by profile ID | [optional] |
532
- | **platform** | **String** | Filter by platform. `metaads` is a synthetic value meaning the user's ads (boosted/dark posts) only; `facebook`/`instagram` return organic posts only. | [optional] |
532
+ | **platform** | **String** | Filter by platform. `metaads` is a synthetic value meaning the user's ads (boosted/dark posts) only; `facebook`/`instagram` return organic posts only. `tiktok` covers accounts connected through the TikTok Business app only; developer-app TikTok accounts are returned under `meta.accountsSkipped`. | [optional] |
533
533
  | **min_comments** | **Integer** | Minimum comment count | [optional] |
534
534
  | **since** | **Time** | Posts created after this date | [optional] |
535
535
  | **sort_by** | **String** | Sort field | [optional][default to 'date'] |
@@ -504,7 +504,7 @@ module Zernio
504
504
  # Returns posts with comment counts from all connected accounts. Aggregates data across multiple accounts. Responses are cached for up to 10 minutes, so the feed may lag new comments by that window. Do not poll this endpoint for real-time updates: subscribe to the `comment.received` webhook, which fires for every new comment across your posts and carries the post reference needed to keep this list current. For users with the Ads add-on (accounts on usage-based billing always qualify), the user's Meta ads (boosted/dark posts) are included too. There's one row per (ad, placement-with-comments): an ad that runs on both Facebook feed and Instagram feed produces up to two rows (the Page dark post and the IG media have separate comment threads), each flagged `isAd: true` with `adId` and `placement` (`id` is `{adId}:{placement}`). Use `?platform=metaads` to return *only* ad rows; passing `facebook`/`instagram` returns *organic* posts only (no ads); omitting `platform` returns both. Fetch a row's thread from GET /v1/ads/{adId}/comments?placement={placement}. Ad comment counts are read with the Marketing API token (Facebook side) or the connected Instagram account's token (Instagram side); a row whose count can't be read is omitted. Pagination walks each account's platform listing. Following `nextCursor` reaches past the first page on Facebook, Instagram, Threads, LinkedIn and YouTube, since they are the platforms that support a server-side date window; on the others the listing stops at its first page. Cursor pagination is only coherent for the default sort (`sortBy=date`, `sortOrder=desc`): with `sortOrder=asc`, or with `sortBy=comments`, the cursor filter does not match the sort order and the second page is unreliable. `nextCursor` is opaque: pass it back verbatim, never construct or parse it, its composition may change without notice. Because each page re-queries a live window, results can still shift between requests, so dedupe by `id` on the client. `commentCount` semantics differ by platform: YouTube's includes replies, Facebook's counts top-level comments only.
505
505
  # @param [Hash] opts the optional parameters
506
506
  # @option opts [String] :profile_id Filter by profile ID
507
- # @option opts [String] :platform Filter by platform. `metaads` is a synthetic value meaning the user's ads (boosted/dark posts) only; `facebook`/`instagram` return organic posts only.
507
+ # @option opts [String] :platform Filter by platform. `metaads` is a synthetic value meaning the user's ads (boosted/dark posts) only; `facebook`/`instagram` return organic posts only. `tiktok` covers accounts connected through the TikTok Business app only; developer-app TikTok accounts are returned under `meta.accountsSkipped`.
508
508
  # @option opts [Integer] :min_comments Minimum comment count
509
509
  # @option opts [Time] :since Posts created after this date
510
510
  # @option opts [String] :sort_by Sort field (default to 'date')
@@ -522,7 +522,7 @@ module Zernio
522
522
  # Returns posts with comment counts from all connected accounts. Aggregates data across multiple accounts. Responses are cached for up to 10 minutes, so the feed may lag new comments by that window. Do not poll this endpoint for real-time updates: subscribe to the `comment.received` webhook, which fires for every new comment across your posts and carries the post reference needed to keep this list current. For users with the Ads add-on (accounts on usage-based billing always qualify), the user's Meta ads (boosted/dark posts) are included too. There's one row per (ad, placement-with-comments): an ad that runs on both Facebook feed and Instagram feed produces up to two rows (the Page dark post and the IG media have separate comment threads), each flagged `isAd: true` with `adId` and `placement` (`id` is `{adId}:{placement}`). Use `?platform=metaads` to return *only* ad rows; passing `facebook`/`instagram` returns *organic* posts only (no ads); omitting `platform` returns both. Fetch a row's thread from GET /v1/ads/{adId}/comments?placement={placement}. Ad comment counts are read with the Marketing API token (Facebook side) or the connected Instagram account's token (Instagram side); a row whose count can't be read is omitted. Pagination walks each account's platform listing. Following `nextCursor` reaches past the first page on Facebook, Instagram, Threads, LinkedIn and YouTube, since they are the platforms that support a server-side date window; on the others the listing stops at its first page. Cursor pagination is only coherent for the default sort (`sortBy=date`, `sortOrder=desc`): with `sortOrder=asc`, or with `sortBy=comments`, the cursor filter does not match the sort order and the second page is unreliable. `nextCursor` is opaque: pass it back verbatim, never construct or parse it, its composition may change without notice. Because each page re-queries a live window, results can still shift between requests, so dedupe by `id` on the client. `commentCount` semantics differ by platform: YouTube's includes replies, Facebook's counts top-level comments only.
523
523
  # @param [Hash] opts the optional parameters
524
524
  # @option opts [String] :profile_id Filter by profile ID
525
- # @option opts [String] :platform Filter by platform. `metaads` is a synthetic value meaning the user's ads (boosted/dark posts) only; `facebook`/`instagram` return organic posts only.
525
+ # @option opts [String] :platform Filter by platform. `metaads` is a synthetic value meaning the user's ads (boosted/dark posts) only; `facebook`/`instagram` return organic posts only. `tiktok` covers accounts connected through the TikTok Business app only; developer-app TikTok accounts are returned under `meta.accountsSkipped`.
526
526
  # @option opts [Integer] :min_comments Minimum comment count
527
527
  # @option opts [Time] :since Posts created after this date
528
528
  # @option opts [String] :sort_by Sort field (default to 'date')
@@ -535,7 +535,7 @@ module Zernio
535
535
  if @api_client.config.debugging
536
536
  @api_client.config.logger.debug 'Calling API: CommentsApi.list_inbox_comments ...'
537
537
  end
538
- allowable_values = ["facebook", "instagram", "twitter", "bluesky", "threads", "youtube", "linkedin", "reddit", "metaads"]
538
+ allowable_values = ["facebook", "instagram", "twitter", "bluesky", "threads", "youtube", "linkedin", "reddit", "tiktok", "metaads"]
539
539
  if @api_client.config.client_side_validation && opts[:'platform'] && !allowable_values.include?(opts[:'platform'])
540
540
  fail ArgumentError, "invalid value for \"platform\", must be one of #{allowable_values}"
541
541
  end
@@ -11,5 +11,5 @@ Generator version: 7.19.0
11
11
  =end
12
12
 
13
13
  module Zernio
14
- VERSION = '0.0.939'
14
+ VERSION = '0.0.941'
15
15
  end
data/openapi.yaml CHANGED
@@ -20315,8 +20315,11 @@ paths:
20315
20315
  tempToken: "EAAxxxxx..."
20316
20316
  userProfile:
20317
20317
  id: "987654321"
20318
- name: "John Doe"
20318
+ username: "john.doe"
20319
+ displayName: "John Doe"
20319
20320
  profilePicture: "https://..."
20321
+ profileUrl: "https://facebook.com/987654321"
20322
+ bio: null
20320
20323
  redirect_url: "https://yourdomain.com/integrations/callback"
20321
20324
  security:
20322
20325
  - bearerAuth: []
@@ -31324,8 +31327,8 @@ paths:
31324
31327
  description: Filter by profile ID
31325
31328
  - name: platform
31326
31329
  in: query
31327
- schema: { type: string, enum: [facebook, instagram, twitter, bluesky, threads, youtube, linkedin, reddit, metaads] }
31328
- description: "Filter by platform. `metaads` is a synthetic value meaning the user's ads (boosted/dark posts) only; `facebook`/`instagram` return organic posts only."
31330
+ schema: { type: string, enum: [facebook, instagram, twitter, bluesky, threads, youtube, linkedin, reddit, tiktok, metaads] }
31331
+ description: "Filter by platform. `metaads` is a synthetic value meaning the user's ads (boosted/dark posts) only; `facebook`/`instagram` return organic posts only. `tiktok` covers accounts connected through the TikTok Business app only; developer-app TikTok accounts are returned under `meta.accountsSkipped`."
31329
31332
  - name: minComments
31330
31333
  in: query
31331
31334
  schema: { type: integer, minimum: 0 }
@@ -123,7 +123,7 @@ describe 'CommentsApi' do
123
123
  # Returns posts with comment counts from all connected accounts. Aggregates data across multiple accounts. Responses are cached for up to 10 minutes, so the feed may lag new comments by that window. Do not poll this endpoint for real-time updates: subscribe to the `comment.received` webhook, which fires for every new comment across your posts and carries the post reference needed to keep this list current. For users with the Ads add-on (accounts on usage-based billing always qualify), the user's Meta ads (boosted/dark posts) are included too. There's one row per (ad, placement-with-comments): an ad that runs on both Facebook feed and Instagram feed produces up to two rows (the Page dark post and the IG media have separate comment threads), each flagged `isAd: true` with `adId` and `placement` (`id` is `{adId}:{placement}`). Use `?platform=metaads` to return *only* ad rows; passing `facebook`/`instagram` returns *organic* posts only (no ads); omitting `platform` returns both. Fetch a row's thread from GET /v1/ads/{adId}/comments?placement={placement}. Ad comment counts are read with the Marketing API token (Facebook side) or the connected Instagram account's token (Instagram side); a row whose count can't be read is omitted. Pagination walks each account's platform listing. Following `nextCursor` reaches past the first page on Facebook, Instagram, Threads, LinkedIn and YouTube, since they are the platforms that support a server-side date window; on the others the listing stops at its first page. Cursor pagination is only coherent for the default sort (`sortBy=date`, `sortOrder=desc`): with `sortOrder=asc`, or with `sortBy=comments`, the cursor filter does not match the sort order and the second page is unreliable. `nextCursor` is opaque: pass it back verbatim, never construct or parse it, its composition may change without notice. Because each page re-queries a live window, results can still shift between requests, so dedupe by `id` on the client. `commentCount` semantics differ by platform: YouTube's includes replies, Facebook's counts top-level comments only.
124
124
  # @param [Hash] opts the optional parameters
125
125
  # @option opts [String] :profile_id Filter by profile ID
126
- # @option opts [String] :platform Filter by platform. `metaads` is a synthetic value meaning the user's ads (boosted/dark posts) only; `facebook`/`instagram` return organic posts only.
126
+ # @option opts [String] :platform Filter by platform. `metaads` is a synthetic value meaning the user's ads (boosted/dark posts) only; `facebook`/`instagram` return organic posts only. `tiktok` covers accounts connected through the TikTok Business app only; developer-app TikTok accounts are returned under `meta.accountsSkipped`.
127
127
  # @option opts [Integer] :min_comments Minimum comment count
128
128
  # @option opts [Time] :since Posts created after this date
129
129
  # @option opts [String] :sort_by Sort field
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.939
4
+ version: 0.0.941
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-09-13 00:00:00.000000000 Z
11
+ date: 2026-09-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -6400,7 +6400,7 @@ files:
6400
6400
  - spec/models/you_tube_video_retention_response_retention_curve_inner_spec.rb
6401
6401
  - spec/models/you_tube_video_retention_response_spec.rb
6402
6402
  - spec/spec_helper.rb
6403
- - zernio-sdk-0.0.939.gem
6403
+ - zernio-sdk-0.0.941.gem
6404
6404
  - zernio-sdk.gemspec
6405
6405
  homepage: https://openapi-generator.tech
6406
6406
  licenses:
Binary file