late-sdk 0.0.666 → 0.0.667

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: 014b4a3e2c935be51cfda88e94f014f071111168f3b845c09c103f7835f5ea76
4
- data.tar.gz: 76508c5193b771242f841ea0ac05956629b8cc08f370f746b51f168563eb0dbe
3
+ metadata.gz: df73684c64bf3ef7c498e38ad6452e3d10aedddaaebe96fca2e20b30d0df21a5
4
+ data.tar.gz: f27847e0e719545df6815eae52fe598dddf6eee0ba37573f4e5295e21d18afe6
5
5
  SHA512:
6
- metadata.gz: 1fc60d43791fb1d3462f8c9162e545ccc09bcc01b518b8e6ce13ad576ac684d64a1b8c91d1653b23cea0309edde116e0839c7df60d30fbd1c27a4a9ad392f99d
7
- data.tar.gz: 951a320ad95e26aea5e908ba59936dcbe2f256fe02fe4c5f56a1f15fd1307090574c2ad0e6b3407e78e86d0bf790e762e6f756b08884b88eb053ea5c5e04ba7f
6
+ metadata.gz: 25662522e9e518142284a9d7dab0d1e19db9a6cf3fce83e660cafd36985b1b35ddea0415520c307129076d61812c81be231324049771b581728a3e5a80aac926
7
+ data.tar.gz: 100bb2580dbb0ff43fea4c036567ca2b3b31ffbad7403f180012deb42dba574b9f3113b4bde7bbc44978674b2aed2e3cf3c8af4594440847084130acd5e89439
data/docs/PostsApi.md CHANGED
@@ -397,7 +397,7 @@ opts = {
397
397
  source: 'zernio', # String | Which collection to read. `zernio` (default) returns posts authored through Zernio. `external` returns posts synced from the platform (existing/historical posts that were published outside Zernio). Combine with `accountId` and paginate via `page`/`limit` to walk the full synced history (we keep up to the last ~12 months per account).
398
398
  status: 'draft', # String |
399
399
  platform: 'twitter', # String |
400
- profile_id: 'profile_id_example', # String |
400
+ profile_id: 'profile_id_example', # String | Filter posts to a specific profile (24-char hex ObjectId). Omit it, or send `all` or an empty value, to list posts across every profile.
401
401
  created_by: 'created_by_example', # String | Filter posts to those created by a specific team user (24-char hex ObjectId).
402
402
  date_from: Date.parse('2013-10-20'), # Date |
403
403
  date_to: Date.parse('2013-10-20'), # Date |
@@ -443,7 +443,7 @@ end
443
443
  | **source** | **String** | Which collection to read. `zernio` (default) returns posts authored through Zernio. `external` returns posts synced from the platform (existing/historical posts that were published outside Zernio). Combine with `accountId` and paginate via `page`/`limit` to walk the full synced history (we keep up to the last ~12 months per account). | [optional][default to 'zernio'] |
444
444
  | **status** | **String** | | [optional] |
445
445
  | **platform** | **String** | | [optional] |
446
- | **profile_id** | **String** | | [optional] |
446
+ | **profile_id** | **String** | Filter posts to a specific profile (24-char hex ObjectId). Omit it, or send `all` or an empty value, to list posts across every profile. | [optional] |
447
447
  | **created_by** | **String** | Filter posts to those created by a specific team user (24-char hex ObjectId). | [optional] |
448
448
  | **date_from** | **Date** | | [optional] |
449
449
  | **date_to** | **Date** | | [optional] |
@@ -366,7 +366,7 @@ module Zernio
366
366
  # @option opts [String] :source Which collection to read. `zernio` (default) returns posts authored through Zernio. `external` returns posts synced from the platform (existing/historical posts that were published outside Zernio). Combine with `accountId` and paginate via `page`/`limit` to walk the full synced history (we keep up to the last ~12 months per account). (default to 'zernio')
367
367
  # @option opts [String] :status
368
368
  # @option opts [String] :platform
369
- # @option opts [String] :profile_id
369
+ # @option opts [String] :profile_id Filter posts to a specific profile (24-char hex ObjectId). Omit it, or send `all` or an empty value, to list posts across every profile.
370
370
  # @option opts [String] :created_by Filter posts to those created by a specific team user (24-char hex ObjectId).
371
371
  # @option opts [Date] :date_from
372
372
  # @option opts [Date] :date_to
@@ -388,7 +388,7 @@ module Zernio
388
388
  # @option opts [String] :source Which collection to read. `zernio` (default) returns posts authored through Zernio. `external` returns posts synced from the platform (existing/historical posts that were published outside Zernio). Combine with `accountId` and paginate via `page`/`limit` to walk the full synced history (we keep up to the last ~12 months per account). (default to 'zernio')
389
389
  # @option opts [String] :status
390
390
  # @option opts [String] :platform
391
- # @option opts [String] :profile_id
391
+ # @option opts [String] :profile_id Filter posts to a specific profile (24-char hex ObjectId). Omit it, or send `all` or an empty value, to list posts across every profile.
392
392
  # @option opts [String] :created_by Filter posts to those created by a specific team user (24-char hex ObjectId).
393
393
  # @option opts [Date] :date_from
394
394
  # @option opts [Date] :date_to
@@ -11,5 +11,5 @@ Generator version: 7.19.0
11
11
  =end
12
12
 
13
13
  module Zernio
14
- VERSION = '0.0.666'
14
+ VERSION = '0.0.667'
15
15
  end
data/openapi.yaml CHANGED
@@ -12629,6 +12629,7 @@ paths:
12629
12629
  - name: profileId
12630
12630
  in: query
12631
12631
  schema: { type: string }
12632
+ description: 'Filter posts to a specific profile (24-char hex ObjectId). Omit it, or send `all` or an empty value, to list posts across every profile.'
12632
12633
  - name: createdBy
12633
12634
  in: query
12634
12635
  schema: { type: string }
@@ -104,7 +104,7 @@ describe 'PostsApi' do
104
104
  # @option opts [String] :source Which collection to read. `zernio` (default) returns posts authored through Zernio. `external` returns posts synced from the platform (existing/historical posts that were published outside Zernio). Combine with `accountId` and paginate via `page`/`limit` to walk the full synced history (we keep up to the last ~12 months per account).
105
105
  # @option opts [String] :status
106
106
  # @option opts [String] :platform
107
- # @option opts [String] :profile_id
107
+ # @option opts [String] :profile_id Filter posts to a specific profile (24-char hex ObjectId). Omit it, or send `all` or an empty value, to list posts across every profile.
108
108
  # @option opts [String] :created_by Filter posts to those created by a specific team user (24-char hex ObjectId).
109
109
  # @option opts [Date] :date_from
110
110
  # @option opts [Date] :date_to
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.666
4
+ version: 0.0.667
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
@@ -4982,7 +4982,7 @@ files:
4982
4982
  - spec/models/you_tube_video_retention_response_retention_curve_inner_spec.rb
4983
4983
  - spec/models/you_tube_video_retention_response_spec.rb
4984
4984
  - spec/spec_helper.rb
4985
- - zernio-sdk-0.0.666.gem
4985
+ - zernio-sdk-0.0.667.gem
4986
4986
  - zernio-sdk.gemspec
4987
4987
  homepage: https://openapi-generator.tech
4988
4988
  licenses:
Binary file