late-sdk 0.0.661 → 0.0.662
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 +4 -4
- data/docs/ContactsApi.md +4 -2
- data/lib/zernio-sdk/api/contacts_api.rb +5 -2
- data/lib/zernio-sdk/version.rb +1 -1
- data/openapi.yaml +3 -2
- data/spec/api/contacts_api_spec.rb +2 -1
- data/zernio-sdk-0.0.662.gem +0 -0
- metadata +2 -2
- data/zernio-sdk-0.0.661.gem +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3d3e0da07c9f7e7bea8167589fc0f9d40fdc3b73cacbac721cea4d07e1cc0fa4
|
|
4
|
+
data.tar.gz: a68ab595732179cfdbda58a5a165355498202cc34e6090fb3c558a5b36c1dad4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 70a1430c29805b3eba73d2d73c732b113543ed948efb8850201c57622d17aacf607120f22169699633185cfd4ce9f3bd5afe063ed6d93217890bbc1320b3235c
|
|
7
|
+
data.tar.gz: c8d96bc989199404c7c896c20c94b19748b681679cd4731a0f2161174d3d755446032cf2c5ec2b5f7fb327e8372f77e50220698a7b7c9635a4df7e62e4e47ac1
|
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?
|
data/lib/zernio-sdk/version.rb
CHANGED
data/openapi.yaml
CHANGED
|
@@ -33089,7 +33089,8 @@ paths:
|
|
|
33089
33089
|
description: List and search contacts for a profile. Supports filtering by tags, platform, subscription status, and full-text search.
|
|
33090
33090
|
tags: [Contacts]
|
|
33091
33091
|
parameters:
|
|
33092
|
-
- { name: profileId, in: query, schema: { type: string }, description: Filter by profile. Omit to list across all profiles }
|
|
33092
|
+
- { 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.' }
|
|
33093
|
+
- { 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
33094
|
- { name: search, in: query, schema: { type: string } }
|
|
33094
33095
|
- { name: tag, in: query, schema: { type: string } }
|
|
33095
33096
|
- { name: tags, in: query, schema: { type: string }, description: 'Comma-separated tags, matches contacts carrying any of them' }
|
|
@@ -33199,7 +33200,7 @@ paths:
|
|
|
33199
33200
|
warning: { type: string }
|
|
33200
33201
|
'400': { description: Invalid request }
|
|
33201
33202
|
'401': { $ref: '#/components/responses/Unauthorized' }
|
|
33202
|
-
'409': { description: Duplicate
|
|
33203
|
+
'409': { description: 'Duplicate channel. The platformIdentifier is already bound to a channel on this accountId.' }
|
|
33203
33204
|
|
|
33204
33205
|
/v1/contacts/{contactId}:
|
|
33205
33206
|
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.
|
|
4
|
+
version: 0.0.662
|
|
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.
|
|
4973
|
+
- zernio-sdk-0.0.662.gem
|
|
4974
4974
|
- zernio-sdk.gemspec
|
|
4975
4975
|
homepage: https://openapi-generator.tech
|
|
4976
4976
|
licenses:
|
data/zernio-sdk-0.0.661.gem
DELETED
|
Binary file
|