late-sdk 0.0.661 → 0.0.663

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: 37d0376a95480ce044f2c13176e787ba83481dfe78987b48f8a2a48b34f0411b
4
- data.tar.gz: b1cc21ad8eaaa303885fd99331cbb7e97f2d89eaf321e51bdacd12f475aa487b
3
+ metadata.gz: ef6e56649f4460639bfdcf489a8921368e67fa6af78f3dae04eb4e6be86e2430
4
+ data.tar.gz: 1fbbf1b961d4c0a440662853716abd399f91326b1f484f2bb4c1853763dfdeb2
5
5
  SHA512:
6
- metadata.gz: 2082a43419dab31e0d2f4e4ef3e834f6aaab957f341dad8bd4841ceea57a18bd755c47f67d4e8e7fdd7a0a1d096bd6b80860713780c7434d62e301df8da16635
7
- data.tar.gz: 5d0af3f094181516d6d72fe031ec4317ebed0fc617807d41766dc11461c5f12700e6ebc7464f0f2c12fb1f65673c24b1c5dc90d15f1af6857950d95259c9effc
6
+ metadata.gz: cd58fa9267229f2232e01df109e2c7a17bf1d700f7166d0ff6a2f989fe02bf735d9b0fdb54bea4190179e69056dcd2fe9937eeb289fed93a4d67ee8c487726af
7
+ data.tar.gz: 5593ab01fe407365d681da0c3d397c5e2132bbf089ee6975ba6488b257ae6988b55885b928d7edcfedf8e49036698069992982724fdc50bd5fbe12863b6fb5c5
data/docs/ContactsApi.md CHANGED
@@ -378,7 +378,8 @@ end
378
378
 
379
379
  api_instance = Zernio::ContactsApi.new
380
380
  opts = {
381
- profile_id: 'profile_id_example', # String | Filter by profile. Omit to list across all profiles
381
+ profile_id: 'profile_id_example', # String | Filter by profile. Omit to list across all profiles. Matches the profile recorded on the contact itself, which is set when the contact is created and is independent of the profile its account currently belongs to. Filter by accountId to list a contact through its channel instead.
382
+ account_id: 'account_id_example', # String | Filter by the SocialAccount that owns the contact channel. Contacts are resolved through their channels, so the profileId contact filter is not applied while accountId is set. A profileId sent alongside is still access-checked and still scopes the returned filters.tags list.
382
383
  search: 'search_example', # String |
383
384
  tag: 'tag_example', # String |
384
385
  tags: 'tags_example', # String | Comma-separated tags, matches contacts carrying any of them
@@ -419,7 +420,8 @@ end
419
420
 
420
421
  | Name | Type | Description | Notes |
421
422
  | ---- | ---- | ----------- | ----- |
422
- | **profile_id** | **String** | Filter by profile. Omit to list across all profiles | [optional] |
423
+ | **profile_id** | **String** | Filter by profile. Omit to list across all profiles. Matches the profile recorded on the contact itself, which is set when the contact is created and is independent of the profile its account currently belongs to. Filter by accountId to list a contact through its channel instead. | [optional] |
424
+ | **account_id** | **String** | Filter by the SocialAccount that owns the contact channel. Contacts are resolved through their channels, so the profileId contact filter is not applied while accountId is set. A profileId sent alongside is still access-checked and still scopes the returned filters.tags list. | [optional] |
423
425
  | **search** | **String** | | [optional] |
424
426
  | **tag** | **String** | | [optional] |
425
427
  | **tags** | **String** | Comma-separated tags, matches contacts carrying any of them | [optional] |
@@ -347,7 +347,8 @@ module Zernio
347
347
  # List contacts
348
348
  # List and search contacts for a profile. Supports filtering by tags, platform, subscription status, and full-text search.
349
349
  # @param [Hash] opts the optional parameters
350
- # @option opts [String] :profile_id Filter by profile. Omit to list across all profiles
350
+ # @option opts [String] :profile_id Filter by profile. Omit to list across all profiles. Matches the profile recorded on the contact itself, which is set when the contact is created and is independent of the profile its account currently belongs to. Filter by accountId to list a contact through its channel instead.
351
+ # @option opts [String] :account_id Filter by the SocialAccount that owns the contact channel. Contacts are resolved through their channels, so the profileId contact filter is not applied while accountId is set. A profileId sent alongside is still access-checked and still scopes the returned filters.tags list.
351
352
  # @option opts [String] :search
352
353
  # @option opts [String] :tag
353
354
  # @option opts [String] :tags Comma-separated tags, matches contacts carrying any of them
@@ -364,7 +365,8 @@ module Zernio
364
365
  # List contacts
365
366
  # List and search contacts for a profile. Supports filtering by tags, platform, subscription status, and full-text search.
366
367
  # @param [Hash] opts the optional parameters
367
- # @option opts [String] :profile_id Filter by profile. Omit to list across all profiles
368
+ # @option opts [String] :profile_id Filter by profile. Omit to list across all profiles. Matches the profile recorded on the contact itself, which is set when the contact is created and is independent of the profile its account currently belongs to. Filter by accountId to list a contact through its channel instead.
369
+ # @option opts [String] :account_id Filter by the SocialAccount that owns the contact channel. Contacts are resolved through their channels, so the profileId contact filter is not applied while accountId is set. A profileId sent alongside is still access-checked and still scopes the returned filters.tags list.
368
370
  # @option opts [String] :search
369
371
  # @option opts [String] :tag
370
372
  # @option opts [String] :tags Comma-separated tags, matches contacts carrying any of them
@@ -395,6 +397,7 @@ module Zernio
395
397
  # query parameters
396
398
  query_params = opts[:query_params] || {}
397
399
  query_params[:'profileId'] = opts[:'profile_id'] if !opts[:'profile_id'].nil?
400
+ query_params[:'accountId'] = opts[:'account_id'] if !opts[:'account_id'].nil?
398
401
  query_params[:'search'] = opts[:'search'] if !opts[:'search'].nil?
399
402
  query_params[:'tag'] = opts[:'tag'] if !opts[:'tag'].nil?
400
403
  query_params[:'tags'] = opts[:'tags'] if !opts[:'tags'].nil?
@@ -11,5 +11,5 @@ Generator version: 7.19.0
11
11
  =end
12
12
 
13
13
  module Zernio
14
- VERSION = '0.0.661'
14
+ VERSION = '0.0.663'
15
15
  end
data/openapi.yaml CHANGED
@@ -22481,6 +22481,7 @@ paths:
22481
22481
  message: "Test webhook sent successfully"
22482
22482
  '400': { description: Webhook ID required }
22483
22483
  '401': { $ref: '#/components/responses/Unauthorized' }
22484
+ '404': { description: Webhook not found }
22484
22485
  '500':
22485
22486
  description: Test webhook failed to deliver
22486
22487
  content:
@@ -33089,7 +33090,8 @@ paths:
33089
33090
  description: List and search contacts for a profile. Supports filtering by tags, platform, subscription status, and full-text search.
33090
33091
  tags: [Contacts]
33091
33092
  parameters:
33092
- - { name: profileId, in: query, schema: { type: string }, description: Filter by profile. Omit to list across all profiles }
33093
+ - { name: profileId, in: query, schema: { type: string }, description: 'Filter by profile. Omit to list across all profiles. Matches the profile recorded on the contact itself, which is set when the contact is created and is independent of the profile its account currently belongs to. Filter by accountId to list a contact through its channel instead.' }
33094
+ - { name: accountId, in: query, schema: { type: string }, description: 'Filter by the SocialAccount that owns the contact channel. Contacts are resolved through their channels, so the profileId contact filter is not applied while accountId is set. A profileId sent alongside is still access-checked and still scopes the returned filters.tags list.' }
33093
33095
  - { name: search, in: query, schema: { type: string } }
33094
33096
  - { name: tag, in: query, schema: { type: string } }
33095
33097
  - { name: tags, in: query, schema: { type: string }, description: 'Comma-separated tags, matches contacts carrying any of them' }
@@ -33199,7 +33201,7 @@ paths:
33199
33201
  warning: { type: string }
33200
33202
  '400': { description: Invalid request }
33201
33203
  '401': { $ref: '#/components/responses/Unauthorized' }
33202
- '409': { description: Duplicate contact }
33204
+ '409': { description: 'Duplicate channel. The platformIdentifier is already bound to a channel on this accountId.' }
33203
33205
 
33204
33206
  /v1/contacts/{contactId}:
33205
33207
  get:
@@ -96,7 +96,8 @@ describe 'ContactsApi' do
96
96
  # List contacts
97
97
  # List and search contacts for a profile. Supports filtering by tags, platform, subscription status, and full-text search.
98
98
  # @param [Hash] opts the optional parameters
99
- # @option opts [String] :profile_id Filter by profile. Omit to list across all profiles
99
+ # @option opts [String] :profile_id Filter by profile. Omit to list across all profiles. Matches the profile recorded on the contact itself, which is set when the contact is created and is independent of the profile its account currently belongs to. Filter by accountId to list a contact through its channel instead.
100
+ # @option opts [String] :account_id Filter by the SocialAccount that owns the contact channel. Contacts are resolved through their channels, so the profileId contact filter is not applied while accountId is set. A profileId sent alongside is still access-checked and still scopes the returned filters.tags list.
100
101
  # @option opts [String] :search
101
102
  # @option opts [String] :tag
102
103
  # @option opts [String] :tags Comma-separated tags, matches contacts carrying any of them
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.661
4
+ version: 0.0.663
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
@@ -4970,7 +4970,7 @@ files:
4970
4970
  - spec/models/you_tube_video_retention_response_retention_curve_inner_spec.rb
4971
4971
  - spec/models/you_tube_video_retention_response_spec.rb
4972
4972
  - spec/spec_helper.rb
4973
- - zernio-sdk-0.0.661.gem
4973
+ - zernio-sdk-0.0.663.gem
4974
4974
  - zernio-sdk.gemspec
4975
4975
  homepage: https://openapi-generator.tech
4976
4976
  licenses:
Binary file