late-sdk 0.0.961 → 0.0.963

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: b692adb92f600876da4d9fd09ec957e8e9256b2e764611b7e31701d28924fd30
4
- data.tar.gz: 7d3e9fb29a43600cd909e2e6de855371bedd17de96233b07c37715caaa57c6b5
3
+ metadata.gz: 6bdb432b665167d3bf8922d2b990c81caa705a5cc1f6de329f34c45e83b7ae2c
4
+ data.tar.gz: b5fc371b5d561608b329a17c7c8e34efa12ad8fb91ef399d40dcda5a75fe74c6
5
5
  SHA512:
6
- metadata.gz: bb514a9dadba4c34ec722c2a21c60cd80f8043a907fda3e9cb22529f3b48a24aab248fd9e30f2d09aea944cdfc66bafe8f82c2417cd5406e6d0d0a73f3a3dd43
7
- data.tar.gz: 9ff71083147943157b4639bdeaa5d959d44667f5268643725a7b08411f27ca8be88efa52f8d5deccdf6fdb05f44f68dc07a535691671d82c4f1a3fdc774f2337
6
+ metadata.gz: 27314579b19c0ab4eb517078410f4e7e6f97ad2d2d3e2faf1a3b53ab8a6f8de3cc57ec3fc63a5294c756c3414501a9a3f66f53a4c4699c24c5e0c9cc3cebc1e5
7
+ data.tar.gz: 9e8604533cc8455719850d709084c9ef149af4a888ab454ecae1637249afe1ce1ac28f8c22a8a01f6fed2ec3fde4d2f0504137e09f4c0ef6b358b5623af66d22
@@ -9,7 +9,7 @@
9
9
  | **start_minute** | **Integer** | Quarter-hours only. | [optional][default to START_MINUTE::N0] |
10
10
  | **end_hour** | **Integer** | 24 means midnight at the end of the day. | |
11
11
  | **end_minute** | **Integer** | Quarter-hours only. Must be 0 when endHour is 24. | [optional][default to END_MINUTE::N0] |
12
- | **bid_modifier** | **Float** | Bid adjustment for this window. Null runs it at the campaign bid. | [optional][default to null] |
12
+ | **bid_modifier** | **Float** | Bid adjustment for this window. Null runs it at the campaign bid. | [optional] |
13
13
 
14
14
  ## Example
15
15
 
@@ -8,7 +8,7 @@
8
8
  | **username** | **String** | | [optional] |
9
9
  | **name** | **String** | | [optional] |
10
10
  | **picture** | **String** | | [optional] |
11
- | **is_own_account** | **Boolean** | True when this comment was authored by the connected account itself (Meta re-delivers the account's own replies as comments events). Populated on the Instagram and Facebook realtime webhooks only; absent means not evaluated, never \"not the account\". | [optional] |
11
+ | **is_own_account** | **Boolean** | True when this comment was authored by the connected account itself. Populated on the Instagram and Facebook realtime webhooks (Meta re-delivers the account's own replies as comments events) and on TikTok, where it is inferred: comments created through this API are always flagged, and once the account's own author identifier is known (from one of those or from a comments listing) every author is compared against it. Absent means not evaluated, never \"not the account\". | [optional] |
12
12
  | **instagram_profile** | [**WebhookPayloadCommentCommentAuthorInstagramProfile**](WebhookPayloadCommentCommentAuthorInstagramProfile.md) | | [optional] |
13
13
 
14
14
  ## Example
@@ -142,8 +142,6 @@ module Zernio
142
142
 
143
143
  if attributes.key?(:'bid_modifier')
144
144
  self.bid_modifier = attributes[:'bid_modifier']
145
- else
146
- self.bid_modifier = null
147
145
  end
148
146
  end
149
147
 
@@ -24,7 +24,7 @@ module Zernio
24
24
 
25
25
  attr_accessor :picture
26
26
 
27
- # True when this comment was authored by the connected account itself (Meta re-delivers the account's own replies as comments events). Populated on the Instagram and Facebook realtime webhooks only; absent means not evaluated, never \"not the account\".
27
+ # True when this comment was authored by the connected account itself. Populated on the Instagram and Facebook realtime webhooks (Meta re-delivers the account's own replies as comments events) and on TikTok, where it is inferred: comments created through this API are always flagged, and once the account's own author identifier is known (from one of those or from a comments listing) every author is compared against it. Absent means not evaluated, never \"not the account\".
28
28
  attr_accessor :is_own_account
29
29
 
30
30
  attr_accessor :instagram_profile
@@ -11,5 +11,5 @@ Generator version: 7.19.0
11
11
  =end
12
12
 
13
13
  module Zernio
14
- VERSION = '0.0.961'
14
+ VERSION = '0.0.963'
15
15
  end
data/openapi.yaml CHANGED
@@ -3341,7 +3341,7 @@ components:
3341
3341
  type: [string, "null"]
3342
3342
  isOwnAccount:
3343
3343
  type: boolean
3344
- description: 'True when this comment was authored by the connected account itself (Meta re-delivers the account''s own replies as comments events). Populated on the Instagram and Facebook realtime webhooks only; absent means not evaluated, never "not the account".'
3344
+ description: 'True when this comment was authored by the connected account itself. Populated on the Instagram and Facebook realtime webhooks (Meta re-delivers the account''s own replies as comments events) and on TikTok, where it is inferred: comments created through this API are always flagged, and once the account''s own author identifier is known (from one of those or from a comments listing) every author is compared against it. Absent means not evaluated, never "not the account".'
3345
3345
  instagramProfile:
3346
3346
  type: object
3347
3347
  description: |
@@ -44684,7 +44684,7 @@ paths:
44684
44684
  startMinute: { type: integer, enum: [0, 15, 30, 45], default: 0, description: 'Quarter-hours only.' }
44685
44685
  endHour: { type: integer, minimum: 0, maximum: 24, description: '24 means midnight at the end of the day.' }
44686
44686
  endMinute: { type: integer, enum: [0, 15, 30, 45], default: 0, description: 'Quarter-hours only. Must be 0 when endHour is 24.' }
44687
- bidModifier: { type: [number, "null"], minimum: 0.1, maximum: 10, default: null, description: 'Bid adjustment for this window. Null runs it at the campaign bid.' }
44687
+ bidModifier: { type: [number, "null"], minimum: 0.1, maximum: 10, description: 'Bid adjustment for this window. Null runs it at the campaign bid.' }
44688
44688
  examples:
44689
44689
  officeHours:
44690
44690
  summary: Weekday office hours, bidding up over lunch
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.961
4
+ version: 0.0.963
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
@@ -6487,7 +6487,7 @@ files:
6487
6487
  - spec/models/you_tube_video_retention_response_retention_curve_inner_spec.rb
6488
6488
  - spec/models/you_tube_video_retention_response_spec.rb
6489
6489
  - spec/spec_helper.rb
6490
- - zernio-sdk-0.0.961.gem
6490
+ - zernio-sdk-0.0.963.gem
6491
6491
  - zernio-sdk.gemspec
6492
6492
  homepage: https://openapi-generator.tech
6493
6493
  licenses:
Binary file