zernio-sdk 0.0.848 → 0.0.849

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: f8bae5f1c84fdec763ef43f93d2ac74de874a656369e398bf5198433a08848e4
4
- data.tar.gz: 6ad3b2aec91a9bdcf7ded38410d06cf3d9cf5e2d82ccb86e59fc441f41641050
3
+ metadata.gz: f71b4d3753af1c97a193aa52fdebb4a53fe22fd8c2a32b8237e27bc69c4c8a0b
4
+ data.tar.gz: d6de58505fa771df4d38c0e2b3750b8cec6ab346c9e39a2cf94ff863e9786ce7
5
5
  SHA512:
6
- metadata.gz: 424648936bb7436db8b8d66655347bbd71100915773bd1ab2f5f4180097215a488bf4cef238c8331c14b738678787f506d21917da12b82776339637da68ecf3c
7
- data.tar.gz: b9a1c4555a35505382c0d2f54af4157567dc9fcf57ed7158833a558d06dec9f5b6cc4b1fca2b15566836c232842744fa410a864cff9cff8a844f924acaa5f7e8
6
+ metadata.gz: 60894bb609fa80d692c7b0a66fa5dfcf6c82293d9255d4c0490c4c71bdfefe044ba2d36775777ec6bab5cd1a421c94772295801a0640ea17fcb4d0411abaf117
7
+ data.tar.gz: b96eab00995b9b198c9c87a02d2ddc3a1849247fd32f1c6f1a14b332ef4b18f5e4c3d97c04df897e20291b2999e57776b5c9456ddf25edef3ea4472d288dfd5a
@@ -2512,7 +2512,7 @@ nil (empty response body)
2512
2512
 
2513
2513
  Review updated event
2514
2514
 
2515
- Fired when a review changes: the reviewer edits their text or rating, or a reply is added (via the API or directly through the Google Business dashboard). Payload shape matches review.new. Requires the Inbox add-on.
2515
+ Fired when a Google Business Profile reviewer edits their review text or rating, or when a reply is posted through POST /v1/inbox/reviews/{reviewId}/reply. A reply written directly in Google's own interface does NOT fire this event, because Google emits no notification for it. Payload shape matches review.new. Requires the Inbox add-on.
2516
2516
 
2517
2517
  ### Examples
2518
2518
 
@@ -2396,7 +2396,7 @@ module Zernio
2396
2396
  end
2397
2397
 
2398
2398
  # Review updated event
2399
- # Fired when a review changes: the reviewer edits their text or rating, or a reply is added (via the API or directly through the Google Business dashboard). Payload shape matches review.new. Requires the Inbox add-on.
2399
+ # Fired when a Google Business Profile reviewer edits their review text or rating, or when a reply is posted through POST /v1/inbox/reviews/{reviewId}/reply. A reply written directly in Google's own interface does NOT fire this event, because Google emits no notification for it. Payload shape matches review.new. Requires the Inbox add-on.
2400
2400
  # @param webhook_payload_review_updated [WebhookPayloadReviewUpdated]
2401
2401
  # @param [Hash] opts the optional parameters
2402
2402
  # @return [nil]
@@ -2406,7 +2406,7 @@ module Zernio
2406
2406
  end
2407
2407
 
2408
2408
  # Review updated event
2409
- # Fired when a review changes: the reviewer edits their text or rating, or a reply is added (via the API or directly through the Google Business dashboard). Payload shape matches review.new. Requires the Inbox add-on.
2409
+ # Fired when a Google Business Profile reviewer edits their review text or rating, or when a reply is posted through POST /v1/inbox/reviews/{reviewId}/reply. A reply written directly in Google's own interface does NOT fire this event, because Google emits no notification for it. Payload shape matches review.new. Requires the Inbox add-on.
2410
2410
  # @param webhook_payload_review_updated [WebhookPayloadReviewUpdated]
2411
2411
  # @param [Hash] opts the optional parameters
2412
2412
  # @return [Array<(nil, Integer, Hash)>] nil, response status code and response headers
@@ -14,7 +14,7 @@ require 'date'
14
14
  require 'time'
15
15
 
16
16
  module Zernio
17
- # Webhook payload for the review.updated event. Fired when the reviewer edits their text or rating, or when a reply is added (via the API or directly on the platform). Same shape as review.new. When a reply is present, review.hasReply is true and review.reply is populated.
17
+ # Webhook payload for the review.updated event. Fired when the reviewer edits their text or rating, or when a reply is posted through POST /v1/inbox/reviews/{reviewId}/reply. A reply written directly in Google's own interface does NOT fire this event: Google emits no notification when a reviewReply is written. Same shape as review.new. When a reply is present, review.hasReply is true and review.reply is populated.
18
18
  class WebhookPayloadReviewUpdated < ApiModelBase
19
19
  # Stable webhook event ID
20
20
  attr_accessor :id
@@ -11,5 +11,5 @@ Generator version: 7.19.0
11
11
  =end
12
12
 
13
13
  module Zernio
14
- VERSION = '0.0.848'
14
+ VERSION = '0.0.849'
15
15
  end
data/openapi.yaml CHANGED
@@ -172,7 +172,7 @@ x-documentation:
172
172
  - `referral.received` - Someone opened an existing Instagram/Messenger thread through an ig.me/m.me `ref` link or a returning Messenger ad click; carries Meta's referral object (a referral that rides an inbound message arrives on `message.received` under `metadata.referral` instead)
173
173
  - `comment.received` - New comment received on a post
174
174
  - `review.new` - New review posted on a connected account (Google Business Profile)
175
- - `review.updated` - Review updated or reply added (Google Business Profile, or via reply API)
175
+ - `review.updated` - A Google Business Profile reviewer edited their review text or rating, or a reply was posted through `POST /v1/inbox/reviews/{reviewId}/reply`. A reply written directly in Google's own interface does NOT fire this event, because Google emits no notification for it.
176
176
  - `lead.received` - New lead submitted against a Meta Lead Gen (Instant) Form. `lead.fields` is the question-key → answer map; `lead.formId`/`lead.adId` give provenance.
177
177
  - `ad.status_changed` - Ad, ad set, or campaign changed status on the ad platform (Meta: `in_process_ad_objects` entry/exit and `with_issues_ad_objects` violations)
178
178
  - `whatsapp.template.status_updated` - WhatsApp Business template completed (re)review by Meta. `template.status` carries the new state (APPROVED, REJECTED, PENDING, PAUSED, DISABLED, IN_APPEAL, PENDING_DELETION); `template.reason` is Meta's free-form reason or "NONE".
@@ -3273,10 +3273,12 @@ components:
3273
3273
  WebhookPayloadReviewUpdated:
3274
3274
  type: object
3275
3275
  description: |
3276
- Webhook payload for the review.updated event. Fired when the reviewer edits
3277
- their text or rating, or when a reply is added (via the API or directly on the
3278
- platform). Same shape as review.new. When a reply is present, review.hasReply
3279
- is true and review.reply is populated.
3276
+ Webhook payload for the review.updated event. Fired when the reviewer edits their
3277
+ text or rating, or when a reply is posted through POST /v1/inbox/reviews/{reviewId}/reply.
3278
+ A reply written
3279
+ directly in Google's own interface does NOT fire this event: Google emits no
3280
+ notification when a reviewReply is written. Same shape as review.new. When a reply
3281
+ is present, review.hasReply is true and review.reply is populated.
3280
3282
  required: [id, event, review, account, timestamp]
3281
3283
  properties:
3282
3284
  id:
@@ -10040,9 +10042,11 @@ webhooks:
10040
10042
  operationId: onReviewUpdated
10041
10043
  summary: Review updated event
10042
10044
  description: |
10043
- Fired when a review changes: the reviewer edits their text or rating, or a
10044
- reply is added (via the API or directly through the Google Business dashboard).
10045
- Payload shape matches review.new. Requires the Inbox add-on.
10045
+ Fired when a Google Business Profile reviewer edits their review text or rating,
10046
+ or when a reply is posted through POST /v1/inbox/reviews/{reviewId}/reply.
10047
+ A reply written directly in Google's own interface does NOT fire this event,
10048
+ because Google emits no notification for it. Payload shape matches review.new.
10049
+ Requires the Inbox add-on.
10046
10050
  tags: [Webhook Events]
10047
10051
  requestBody:
10048
10052
  required: true
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zernio-sdk
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.848
4
+ version: 0.0.849
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator