late-sdk 0.0.636 → 0.0.637

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: 37ab9462eaaac32184f7c74548faad032dec32dd39092779c57d69389ed274b7
4
- data.tar.gz: 3f73e882d9ffc8eed73d578c5d0bc0a16021444fed2f0238bbe2c3cb44814a05
3
+ metadata.gz: 5ebe1bb31790fb37d31bde9137c5b05e86f723cd3c08c4c9f027aef7bcaaa7cb
4
+ data.tar.gz: db336ffe0bdee07a42159925a5285a2813ba8fe7f707ca60fbf5ff3b7d485a14
5
5
  SHA512:
6
- metadata.gz: 2c94dc1f96c86c025baf271c961b6a0abdcc8bdfa6eb05b7530b58718c8bcf3a20195e5d6d36e269d193cead2a7349205094aa343b5f67454e5a857a0c165578
7
- data.tar.gz: 320c8913bb7393cd94fed2397ebacc91fa3fdb8332bfa7e73cb516ebdf8c07f45e263e6736c47d30700508b768506b1103f327e6b258b044023dd0e4e2b43067
6
+ metadata.gz: 9309a47c51d5eeb83953a2c718919e047a3d035d39323a7183ae15d93fcd72a13b6e17a0c3d8580fb536b0d10584b174a4012073b858acaabc5ae337e4e9b3a1
7
+ data.tar.gz: 292b6e3da3e3cad95bf85a84ba74021525a16b1bbdd824705b43884e8004d9ab1f2a642800e203743322bcfb3ec089570f25889a0ed761b760a6e88a929899b9
data/docs/ContactsApi.md CHANGED
@@ -381,6 +381,7 @@ opts = {
381
381
  profile_id: 'profile_id_example', # String | Filter by profile. Omit to list across all profiles
382
382
  search: 'search_example', # String |
383
383
  tag: 'tag_example', # String |
384
+ tags: 'tags_example', # String | Comma-separated tags, matches contacts carrying any of them
384
385
  platform: 'instagram', # String |
385
386
  is_subscribed: 'true', # String |
386
387
  limit: 56, # Integer |
@@ -421,6 +422,7 @@ end
421
422
  | **profile_id** | **String** | Filter by profile. Omit to list across all profiles | [optional] |
422
423
  | **search** | **String** | | [optional] |
423
424
  | **tag** | **String** | | [optional] |
425
+ | **tags** | **String** | Comma-separated tags, matches contacts carrying any of them | [optional] |
424
426
  | **platform** | **String** | | [optional] |
425
427
  | **is_subscribed** | **String** | | [optional] |
426
428
  | **limit** | **Integer** | | [optional][default to 50] |
@@ -350,6 +350,7 @@ module Zernio
350
350
  # @option opts [String] :profile_id Filter by profile. Omit to list across all profiles
351
351
  # @option opts [String] :search
352
352
  # @option opts [String] :tag
353
+ # @option opts [String] :tags Comma-separated tags, matches contacts carrying any of them
353
354
  # @option opts [String] :platform
354
355
  # @option opts [String] :is_subscribed
355
356
  # @option opts [Integer] :limit (default to 50)
@@ -366,6 +367,7 @@ module Zernio
366
367
  # @option opts [String] :profile_id Filter by profile. Omit to list across all profiles
367
368
  # @option opts [String] :search
368
369
  # @option opts [String] :tag
370
+ # @option opts [String] :tags Comma-separated tags, matches contacts carrying any of them
369
371
  # @option opts [String] :platform
370
372
  # @option opts [String] :is_subscribed
371
373
  # @option opts [Integer] :limit (default to 50)
@@ -395,6 +397,7 @@ module Zernio
395
397
  query_params[:'profileId'] = opts[:'profile_id'] if !opts[:'profile_id'].nil?
396
398
  query_params[:'search'] = opts[:'search'] if !opts[:'search'].nil?
397
399
  query_params[:'tag'] = opts[:'tag'] if !opts[:'tag'].nil?
400
+ query_params[:'tags'] = opts[:'tags'] if !opts[:'tags'].nil?
398
401
  query_params[:'platform'] = opts[:'platform'] if !opts[:'platform'].nil?
399
402
  query_params[:'isSubscribed'] = opts[:'is_subscribed'] if !opts[:'is_subscribed'].nil?
400
403
  query_params[:'limit'] = opts[:'limit'] if !opts[:'limit'].nil?
@@ -11,5 +11,5 @@ Generator version: 7.19.0
11
11
  =end
12
12
 
13
13
  module Zernio
14
- VERSION = '0.0.636'
14
+ VERSION = '0.0.637'
15
15
  end
data/openapi.yaml CHANGED
@@ -32637,6 +32637,7 @@ paths:
32637
32637
  - { name: profileId, in: query, schema: { type: string }, description: Filter by profile. Omit to list across all profiles }
32638
32638
  - { name: search, in: query, schema: { type: string } }
32639
32639
  - { name: tag, in: query, schema: { type: string } }
32640
+ - { name: tags, in: query, schema: { type: string }, description: 'Comma-separated tags, matches contacts carrying any of them' }
32640
32641
  - { name: platform, in: query, schema: { type: string, enum: [instagram, facebook, telegram, twitter, bluesky, reddit, whatsapp] } }
32641
32642
  - { name: isSubscribed, in: query, schema: { type: string, enum: ['true', 'false'] } }
32642
32643
  - { name: limit, in: query, schema: { type: integer, default: 50, maximum: 200 } }
@@ -99,6 +99,7 @@ describe 'ContactsApi' do
99
99
  # @option opts [String] :profile_id Filter by profile. Omit to list across all profiles
100
100
  # @option opts [String] :search
101
101
  # @option opts [String] :tag
102
+ # @option opts [String] :tags Comma-separated tags, matches contacts carrying any of them
102
103
  # @option opts [String] :platform
103
104
  # @option opts [String] :is_subscribed
104
105
  # @option opts [Integer] :limit
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.636
4
+ version: 0.0.637
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
@@ -4919,7 +4919,7 @@ files:
4919
4919
  - spec/models/you_tube_video_retention_response_retention_curve_inner_spec.rb
4920
4920
  - spec/models/you_tube_video_retention_response_spec.rb
4921
4921
  - spec/spec_helper.rb
4922
- - zernio-sdk-0.0.636.gem
4922
+ - zernio-sdk-0.0.637.gem
4923
4923
  - zernio-sdk.gemspec
4924
4924
  homepage: https://openapi-generator.tech
4925
4925
  licenses:
Binary file