zernio-sdk 0.0.814 → 0.0.815

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: 28550b12fe497ba64ec0fa86cdb6be637773e8ba0eaebb4fbf4527a4505b96c8
4
- data.tar.gz: 144a8581b64a970eaa324fa87c52967d768f11144edbceadf7598f5e04abb37f
3
+ metadata.gz: 58045d34896a5c91c25ccad3b21495bdcac380d942c06f216efe5028555edd7e
4
+ data.tar.gz: 0f1a451006b824316bccc20f8a21ffe85a3691438a0e65443268ea4228cbc956
5
5
  SHA512:
6
- metadata.gz: 15b5029410f1d1d9cb8ee97ecd66617458e11a121f576a09ccf3b86f341930430e70929efe87e839cbff21b79e72f18ca70afe48f2297f40ddbb440ef5e859ad
7
- data.tar.gz: eb2d8e92fa93d7306a6c32893b8ca24b683160a6abec290f2e3b18da4144c06663f43b7183e063d759d5aeaeecd3e631d41e97dfa41d2b48d43fb6afd5f45301
6
+ metadata.gz: c088a3d77c2f4b957301c0d18e082c728b7cb2bcd15dd0f2269c9f57f04982859aedeb974fb1764920325ccca61c88dc2b78923644cb380159cbd54a981c9f3f
7
+ data.tar.gz: b6d34757c383d41e561828e96360903668c9fb1292a16e77636180872610606bf7b59cf7a6ded1f0d14a53e3a6847f14a807672823651114eb27eecfe5fb1b3a
@@ -4,7 +4,7 @@
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
- | **id** | **String** | | [optional] |
7
+ | **id** | **String** | The platform's own message id: the `wamid` on WhatsApp, the `mid` on Instagram and Facebook Messenger. This is what `metadata.quotedMessageId` points at, the value to pass as `replyTo` on the platforms that support quote-replies, and the `{messageId}` segment of the attachment-resolve URL. Webhooks deliver the same value as `message.platformMessageId`; this response has no field by that name. | [optional] |
8
8
  | **conversation_id** | **String** | | [optional] |
9
9
  | **account_id** | **String** | | [optional] |
10
10
  | **platform** | **String** | | [optional] |
@@ -30,7 +30,7 @@
30
30
  | **sent_at** | **Time** | Original send time for outgoing messages (used for Messenger watermark queries). | [optional] |
31
31
  | **delivery_error** | [**GetInboxConversationMessages200ResponseMessagesInnerDeliveryError**](GetInboxConversationMessages200ResponseMessagesInnerDeliveryError.md) | | [optional] |
32
32
  | **reactions** | [**Array<GetInboxConversationMessages200ResponseMessagesInnerReactionsInner>**](GetInboxConversationMessages200ResponseMessagesInnerReactionsInner.md) | Emoji reactions on this message (WhatsApp / Telegram). At most one per party in a 1:1 thread. | [optional] |
33
- | **metadata** | **Hash<String, Object>** | Platform-specific extras. Free-form, but commonly includes: `quotedMessageId` (platformMessageId this message replies to), `waInteractive` (a compact descriptor of WhatsApp interactive content sent: buttons / list / cta_url / flow / location_request), and for inbound interactive taps `interactiveType` / `interactiveId`. It can also carry `source` (`whatsapp_business_app` / `coexistence_history` on a WhatsApp Coexistence number, `bulk-api` on a POST /v1/whatsapp/bulk send), which is where the message reached us from rather than who produced it: read `sentVia` for that. | [optional] |
33
+ | **metadata** | **Hash<String, Object>** | Platform-specific extras. Free-form, but commonly includes: `quotedMessageId` (the `id` of the message this one replies to, delivered as `message.platformMessageId` on webhooks), `waInteractive` (a compact descriptor of WhatsApp interactive content sent: buttons / list / cta_url / flow / location_request), and for inbound interactive taps `interactiveType` / `interactiveId`. It can also carry `source` (`whatsapp_business_app` / `coexistence_history` on a WhatsApp Coexistence number, `bulk-api` on a POST /v1/whatsapp/bulk send), which is where the message reached us from rather than who produced it: read `sentVia` for that. | [optional] |
34
34
  | **sent_via** | **String** | Which Zernio surface produced this outgoing message: `human` (an operator in the Zernio inbox), `api` (a call to this API), `broadcast`, `sequence`, `workflow`, `comment_automation`, or `bulk-api` (POST /v1/whatsapp/bulk). Same vocabulary as the `source` filter on the inbox analytics endpoints. Always present, and `null` whenever the lineage is unknown: every incoming message, any outgoing message sent from the platform's own app, and every message stored before this field shipped (2026-08). Existing messages are NOT backfilled, so treat `null` as \"unknown\", never as \"sent by a human\". | [optional] |
35
35
 
36
36
  ## Example
@@ -19,7 +19,7 @@
19
19
  | **reply_markup** | [**SendInboxMessageRequestReplyMarkup**](SendInboxMessageRequestReplyMarkup.md) | | [optional] |
20
20
  | **messaging_type** | **String** | Facebook messaging type. Required when using messageTag. | [optional] |
21
21
  | **message_tag** | **String** | Facebook message tag for messaging outside 24h window. Requires messagingType MESSAGE_TAG. Instagram only supports HUMAN_AGENT. | [optional] |
22
- | **reply_to** | **String** | Platform message ID to quote-reply to. For WhatsApp, pass the wamid; for Telegram, the Telegram message ID (both available in message.platformMessageId from webhooks or the list-messages endpoint). On Slack it threads the reply (thread_ts) instead of quoting. Silently ignored on platforms without send-side reply support, including Instagram and Facebook Messenger (Meta's Send API rejects reply_to on Instagram and does not expose it on Messenger). | [optional] |
22
+ | **reply_to** | **String** | Platform message ID to quote-reply to. For WhatsApp, pass the wamid; for Telegram, the Telegram message ID (delivered as message.platformMessageId on webhooks, and as `id` on each entry of the list-messages endpoint). On Slack it threads the reply (thread_ts) instead of quoting. Silently ignored on platforms without send-side reply support, including Instagram and Facebook Messenger (Meta's Send API rejects reply_to on Instagram and does not expose it on Messenger). | [optional] |
23
23
  | **location** | [**SendInboxMessageRequestLocation**](SendInboxMessageRequestLocation.md) | | [optional] |
24
24
  | **contacts** | [**Array<SendInboxMessageRequestContactsInner>**](SendInboxMessageRequestContactsInner.md) | WhatsApp-only. Send one or more contact cards. | [optional] |
25
25
 
@@ -1219,7 +1219,7 @@ nil (empty response body)
1219
1219
 
1220
1220
  Message sent event
1221
1221
 
1222
- Fired when a message is sent via the API, or from the WhatsApp Business app on Coexistence numbers. Sends that carry platform-specific context deliver it under `metadata`, so a quote-reply arrives with `metadata.quotedMessageId` and mirroring CRMs can thread it without a lookup.
1222
+ Fired when a message is sent via the API, or from the WhatsApp Business app on Coexistence numbers. Sends that carry platform-specific context deliver it under `metadata`, so a quote-reply sent through the API arrives with `metadata.quotedMessageId` and mirroring CRMs can thread it without a lookup. Which surfaces actually carry that reference is documented on `WebhookPayloadMessageSent.metadata.quotedMessageId`; a quote-reply sent from the WhatsApp Business or Instagram app is not one of them.
1223
1223
 
1224
1224
  ### Examples
1225
1225
 
@@ -4,7 +4,7 @@
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
- | **quoted_message_id** | **String** | platformMessageId of the message this one is a quote-reply to. WhatsApp (`context.id`), Instagram and Facebook Messenger (`reply_to.mid`). Outgoing quote-replies carry the same field on `message.sent`; see WebhookPayloadMessageSent.metadata. | [optional] |
7
+ | **quoted_message_id** | **String** | platformMessageId of the message this one is a quote-reply to. WhatsApp (`context.id`), Instagram and Facebook Messenger (`reply_to.mid`). On outgoing messages the same field appears on `message.sent`, but only on some surfaces: see WebhookPayloadMessageSent.metadata.quotedMessageId. | [optional] |
8
8
  | **quick_reply_payload** | **String** | Payload from a quick reply tap (Facebook/Instagram Messenger). | [optional] |
9
9
  | **postback_payload** | **String** | Payload from a postback button tap (Facebook/Instagram Messenger). | [optional] |
10
10
  | **postback_title** | **String** | Title of the tapped postback button (Facebook/Instagram Messenger). | [optional] |
@@ -4,7 +4,7 @@
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
- | **quoted_message_id** | **String** | platformMessageId of the message this send is a quote-reply to. Set when the reply was sent through Zernio with `replyTo` on the inbox send API (WhatsApp and Telegram), and when the operator replied from the native WhatsApp Business, Instagram or Messenger app. WhatsApp API sends carry it on the event fired from the delivery status, so it arrives on the same `message.sent` as any other WhatsApp send. | [optional] |
7
+ | **quoted_message_id** | **String** | `platformMessageId` of the message this send is a quote-reply to. Present when the reply was sent through Zernio with `replyTo` on the inbox send API (WhatsApp and Telegram). A WhatsApp API send fires its `message.sent` off the delivery status, and the quote reference is forwarded from the stored send there, so it arrives on the same `message.sent` as any other WhatsApp send. Not delivered on Instagram echoes. Zernio forwards `reply_to.mid` whenever Meta puts it on an echo, but on Instagram Meta does not send it, so a reply the operator quoted in the Instagram app arrives with no `quotedMessageId`. Facebook Messenger rides a separate subscription (`message_echoes`) and has not been measured, so treat it as unverified rather than supported. Absent on WhatsApp Coexistence echoes. Meta omits the quote context from `smb_message_echoes`, so a reply the operator sent from the WhatsApp Business app arrives with no `quotedMessageId` even though WhatsApp shows it as a quote-reply. Do not read the absence of this field as \"not a reply\". | [optional] |
8
8
  | **thread_ts** | **String** | Slack only. Parent thread ts of the sent message. Pass it back as `replyTo` on the inbox send API to keep replying inside the thread. | [optional] |
9
9
 
10
10
  ## Example
@@ -1142,7 +1142,7 @@ module Zernio
1142
1142
  end
1143
1143
 
1144
1144
  # Message sent event
1145
- # Fired when a message is sent via the API, or from the WhatsApp Business app on Coexistence numbers. Sends that carry platform-specific context deliver it under `metadata`, so a quote-reply arrives with `metadata.quotedMessageId` and mirroring CRMs can thread it without a lookup.
1145
+ # Fired when a message is sent via the API, or from the WhatsApp Business app on Coexistence numbers. Sends that carry platform-specific context deliver it under `metadata`, so a quote-reply sent through the API arrives with `metadata.quotedMessageId` and mirroring CRMs can thread it without a lookup. Which surfaces actually carry that reference is documented on `WebhookPayloadMessageSent.metadata.quotedMessageId`; a quote-reply sent from the WhatsApp Business or Instagram app is not one of them.
1146
1146
  # @param webhook_payload_message_sent [WebhookPayloadMessageSent]
1147
1147
  # @param [Hash] opts the optional parameters
1148
1148
  # @return [nil]
@@ -1152,7 +1152,7 @@ module Zernio
1152
1152
  end
1153
1153
 
1154
1154
  # Message sent event
1155
- # Fired when a message is sent via the API, or from the WhatsApp Business app on Coexistence numbers. Sends that carry platform-specific context deliver it under `metadata`, so a quote-reply arrives with `metadata.quotedMessageId` and mirroring CRMs can thread it without a lookup.
1155
+ # Fired when a message is sent via the API, or from the WhatsApp Business app on Coexistence numbers. Sends that carry platform-specific context deliver it under `metadata`, so a quote-reply sent through the API arrives with `metadata.quotedMessageId` and mirroring CRMs can thread it without a lookup. Which surfaces actually carry that reference is documented on `WebhookPayloadMessageSent.metadata.quotedMessageId`; a quote-reply sent from the WhatsApp Business or Instagram app is not one of them.
1156
1156
  # @param webhook_payload_message_sent [WebhookPayloadMessageSent]
1157
1157
  # @param [Hash] opts the optional parameters
1158
1158
  # @return [Array<(nil, Integer, Hash)>] nil, response status code and response headers
@@ -15,6 +15,7 @@ require 'time'
15
15
 
16
16
  module Zernio
17
17
  class GetInboxConversationMessages200ResponseMessagesInner < ApiModelBase
18
+ # The platform's own message id: the `wamid` on WhatsApp, the `mid` on Instagram and Facebook Messenger. This is what `metadata.quotedMessageId` points at, the value to pass as `replyTo` on the platforms that support quote-replies, and the `{messageId}` segment of the attachment-resolve URL. Webhooks deliver the same value as `message.platformMessageId`; this response has no field by that name.
18
19
  attr_accessor :id
19
20
 
20
21
  attr_accessor :conversation_id
@@ -79,7 +80,7 @@ module Zernio
79
80
  # Emoji reactions on this message (WhatsApp / Telegram). At most one per party in a 1:1 thread.
80
81
  attr_accessor :reactions
81
82
 
82
- # Platform-specific extras. Free-form, but commonly includes: `quotedMessageId` (platformMessageId this message replies to), `waInteractive` (a compact descriptor of WhatsApp interactive content sent: buttons / list / cta_url / flow / location_request), and for inbound interactive taps `interactiveType` / `interactiveId`. It can also carry `source` (`whatsapp_business_app` / `coexistence_history` on a WhatsApp Coexistence number, `bulk-api` on a POST /v1/whatsapp/bulk send), which is where the message reached us from rather than who produced it: read `sentVia` for that.
83
+ # Platform-specific extras. Free-form, but commonly includes: `quotedMessageId` (the `id` of the message this one replies to, delivered as `message.platformMessageId` on webhooks), `waInteractive` (a compact descriptor of WhatsApp interactive content sent: buttons / list / cta_url / flow / location_request), and for inbound interactive taps `interactiveType` / `interactiveId`. It can also carry `source` (`whatsapp_business_app` / `coexistence_history` on a WhatsApp Coexistence number, `bulk-api` on a POST /v1/whatsapp/bulk send), which is where the message reached us from rather than who produced it: read `sentVia` for that.
83
84
  attr_accessor :metadata
84
85
 
85
86
  # Which Zernio surface produced this outgoing message: `human` (an operator in the Zernio inbox), `api` (a call to this API), `broadcast`, `sequence`, `workflow`, `comment_automation`, or `bulk-api` (POST /v1/whatsapp/bulk). Same vocabulary as the `source` filter on the inbox analytics endpoints. Always present, and `null` whenever the lineage is unknown: every incoming message, any outgoing message sent from the platform's own app, and every message stored before this field shipped (2026-08). Existing messages are NOT backfilled, so treat `null` as \"unknown\", never as \"sent by a human\".
@@ -57,7 +57,7 @@ module Zernio
57
57
  # Facebook message tag for messaging outside 24h window. Requires messagingType MESSAGE_TAG. Instagram only supports HUMAN_AGENT.
58
58
  attr_accessor :message_tag
59
59
 
60
- # Platform message ID to quote-reply to. For WhatsApp, pass the wamid; for Telegram, the Telegram message ID (both available in message.platformMessageId from webhooks or the list-messages endpoint). On Slack it threads the reply (thread_ts) instead of quoting. Silently ignored on platforms without send-side reply support, including Instagram and Facebook Messenger (Meta's Send API rejects reply_to on Instagram and does not expose it on Messenger).
60
+ # Platform message ID to quote-reply to. For WhatsApp, pass the wamid; for Telegram, the Telegram message ID (delivered as message.platformMessageId on webhooks, and as `id` on each entry of the list-messages endpoint). On Slack it threads the reply (thread_ts) instead of quoting. Silently ignored on platforms without send-side reply support, including Instagram and Facebook Messenger (Meta's Send API rejects reply_to on Instagram and does not expose it on Messenger).
61
61
  attr_accessor :reply_to
62
62
 
63
63
  attr_accessor :location
@@ -16,7 +16,7 @@ require 'time'
16
16
  module Zernio
17
17
  # Platform-specific message context (present when the message is a quick reply tap, postback button tap, inline keyboard callback, or a quote-reply to an earlier message)
18
18
  class WebhookPayloadMessageMetadata < ApiModelBase
19
- # platformMessageId of the message this one is a quote-reply to. WhatsApp (`context.id`), Instagram and Facebook Messenger (`reply_to.mid`). Outgoing quote-replies carry the same field on `message.sent`; see WebhookPayloadMessageSent.metadata.
19
+ # platformMessageId of the message this one is a quote-reply to. WhatsApp (`context.id`), Instagram and Facebook Messenger (`reply_to.mid`). On outgoing messages the same field appears on `message.sent`, but only on some surfaces: see WebhookPayloadMessageSent.metadata.quotedMessageId.
20
20
  attr_accessor :quoted_message_id
21
21
 
22
22
  # Payload from a quick reply tap (Facebook/Instagram Messenger).
@@ -16,7 +16,7 @@ require 'time'
16
16
  module Zernio
17
17
  # Platform-specific context for the sent message. The key is present only when the send carried some context, and absent otherwise: it is never null and never an empty object.
18
18
  class WebhookPayloadMessageSentMetadata < ApiModelBase
19
- # platformMessageId of the message this send is a quote-reply to. Set when the reply was sent through Zernio with `replyTo` on the inbox send API (WhatsApp and Telegram), and when the operator replied from the native WhatsApp Business, Instagram or Messenger app. WhatsApp API sends carry it on the event fired from the delivery status, so it arrives on the same `message.sent` as any other WhatsApp send.
19
+ # `platformMessageId` of the message this send is a quote-reply to. Present when the reply was sent through Zernio with `replyTo` on the inbox send API (WhatsApp and Telegram). A WhatsApp API send fires its `message.sent` off the delivery status, and the quote reference is forwarded from the stored send there, so it arrives on the same `message.sent` as any other WhatsApp send. Not delivered on Instagram echoes. Zernio forwards `reply_to.mid` whenever Meta puts it on an echo, but on Instagram Meta does not send it, so a reply the operator quoted in the Instagram app arrives with no `quotedMessageId`. Facebook Messenger rides a separate subscription (`message_echoes`) and has not been measured, so treat it as unverified rather than supported. Absent on WhatsApp Coexistence echoes. Meta omits the quote context from `smb_message_echoes`, so a reply the operator sent from the WhatsApp Business app arrives with no `quotedMessageId` even though WhatsApp shows it as a quote-reply. Do not read the absence of this field as \"not a reply\".
20
20
  attr_accessor :quoted_message_id
21
21
 
22
22
  # Slack only. Parent thread ts of the sent message. Pass it back as `replyTo` on the inbox send API to keep replying inside the thread.
@@ -11,5 +11,5 @@ Generator version: 7.19.0
11
11
  =end
12
12
 
13
13
  module Zernio
14
- VERSION = '0.0.814'
14
+ VERSION = '0.0.815'
15
15
  end
data/openapi.yaml CHANGED
@@ -3749,8 +3749,9 @@ components:
3749
3749
  description: |
3750
3750
  platformMessageId of the message this one is a quote-reply to.
3751
3751
  WhatsApp (`context.id`), Instagram and Facebook Messenger
3752
- (`reply_to.mid`). Outgoing quote-replies carry the same field on
3753
- `message.sent`; see WebhookPayloadMessageSent.metadata.
3752
+ (`reply_to.mid`). On outgoing messages the same field appears on
3753
+ `message.sent`, but only on some surfaces: see
3754
+ WebhookPayloadMessageSent.metadata.quotedMessageId.
3754
3755
  quickReplyPayload:
3755
3756
  type: string
3756
3757
  description: Payload from a quick reply tap (Facebook/Instagram Messenger).
@@ -4142,13 +4143,27 @@ components:
4142
4143
  quotedMessageId:
4143
4144
  type: string
4144
4145
  description: |
4145
- platformMessageId of the message this send is a quote-reply to.
4146
- Set when the reply was sent through Zernio with `replyTo` on the
4147
- inbox send API (WhatsApp and Telegram), and when the operator
4148
- replied from the native WhatsApp Business, Instagram or Messenger
4149
- app. WhatsApp API sends carry it on the event fired from the
4150
- delivery status, so it arrives on the same `message.sent` as any
4151
- other WhatsApp send.
4146
+ `platformMessageId` of the message this send is a quote-reply to.
4147
+
4148
+ Present when the reply was sent through Zernio with `replyTo` on
4149
+ the inbox send API (WhatsApp and Telegram). A WhatsApp API send
4150
+ fires its `message.sent` off the delivery status, and the quote
4151
+ reference is forwarded from the stored send there, so it arrives
4152
+ on the same `message.sent` as any other WhatsApp send.
4153
+
4154
+ Not delivered on Instagram echoes. Zernio forwards
4155
+ `reply_to.mid` whenever Meta puts it on an echo, but on
4156
+ Instagram Meta does not send it, so a reply the operator quoted
4157
+ in the Instagram app arrives with no `quotedMessageId`.
4158
+ Facebook Messenger rides a separate subscription
4159
+ (`message_echoes`) and has not been measured, so treat it as
4160
+ unverified rather than supported.
4161
+
4162
+ Absent on WhatsApp Coexistence echoes. Meta omits the quote
4163
+ context from `smb_message_echoes`, so a reply the operator sent
4164
+ from the WhatsApp Business app arrives with no `quotedMessageId`
4165
+ even though WhatsApp shows it as a quote-reply. Do not read the
4166
+ absence of this field as "not a reply".
4152
4167
  threadTs:
4153
4168
  type: string
4154
4169
  description: |
@@ -9523,8 +9538,11 @@ webhooks:
9523
9538
  description: |
9524
9539
  Fired when a message is sent via the API, or from the WhatsApp Business app on
9525
9540
  Coexistence numbers. Sends that carry platform-specific context deliver it under
9526
- `metadata`, so a quote-reply arrives with `metadata.quotedMessageId` and mirroring
9527
- CRMs can thread it without a lookup.
9541
+ `metadata`, so a quote-reply sent through the API arrives with
9542
+ `metadata.quotedMessageId` and mirroring CRMs can thread it without a lookup.
9543
+ Which surfaces actually carry that reference is documented on
9544
+ `WebhookPayloadMessageSent.metadata.quotedMessageId`; a quote-reply sent from
9545
+ the WhatsApp Business or Instagram app is not one of them.
9528
9546
  tags: [Webhook Events]
9529
9547
  requestBody:
9530
9548
  required: true
@@ -26873,7 +26891,16 @@ paths:
26873
26891
  items:
26874
26892
  type: object
26875
26893
  properties:
26876
- id: { type: string }
26894
+ id:
26895
+ type: string
26896
+ description: |
26897
+ The platform's own message id: the `wamid` on WhatsApp, the
26898
+ `mid` on Instagram and Facebook Messenger. This is what
26899
+ `metadata.quotedMessageId` points at, the value to pass as
26900
+ `replyTo` on the platforms that support quote-replies, and the
26901
+ `{messageId}` segment of the attachment-resolve URL. Webhooks
26902
+ deliver the same value as `message.platformMessageId`; this
26903
+ response has no field by that name.
26877
26904
  conversationId: { type: string }
26878
26905
  accountId: { type: string }
26879
26906
  platform: { type: string }
@@ -26968,7 +26995,8 @@ paths:
26968
26995
  type: object
26969
26996
  description: |
26970
26997
  Platform-specific extras. Free-form, but commonly includes:
26971
- `quotedMessageId` (platformMessageId this message replies to),
26998
+ `quotedMessageId` (the `id` of the message this one replies to,
26999
+ delivered as `message.platformMessageId` on webhooks),
26972
27000
  `waInteractive` (a compact descriptor of WhatsApp interactive
26973
27001
  content sent: buttons / list / cta_url / flow / location_request),
26974
27002
  and for inbound interactive taps `interactiveType` / `interactiveId`.
@@ -27505,7 +27533,7 @@ paths:
27505
27533
  description: Facebook message tag for messaging outside 24h window. Requires messagingType MESSAGE_TAG. Instagram only supports HUMAN_AGENT.
27506
27534
  replyTo:
27507
27535
  type: string
27508
- description: 'Platform message ID to quote-reply to. For WhatsApp, pass the wamid; for Telegram, the Telegram message ID (both available in message.platformMessageId from webhooks or the list-messages endpoint). On Slack it threads the reply (thread_ts) instead of quoting. Silently ignored on platforms without send-side reply support, including Instagram and Facebook Messenger (Meta''s Send API rejects reply_to on Instagram and does not expose it on Messenger).'
27536
+ description: 'Platform message ID to quote-reply to. For WhatsApp, pass the wamid; for Telegram, the Telegram message ID (delivered as message.platformMessageId on webhooks, and as `id` on each entry of the list-messages endpoint). On Slack it threads the reply (thread_ts) instead of quoting. Silently ignored on platforms without send-side reply support, including Instagram and Facebook Messenger (Meta''s Send API rejects reply_to on Instagram and does not expose it on Messenger).'
27509
27537
  location:
27510
27538
  type: object
27511
27539
  description: WhatsApp-only. Send a location pin.
@@ -27595,7 +27623,7 @@ paths:
27595
27623
  description: Message tag (requires messagingType MESSAGE_TAG)
27596
27624
  replyTo:
27597
27625
  type: string
27598
- description: 'Platform message ID to quote-reply to. For WhatsApp, pass the wamid; for Telegram, the Telegram message ID (both available in message.platformMessageId from webhooks or the list-messages endpoint). On Slack it threads the reply (thread_ts) instead of quoting. Silently ignored on platforms without send-side reply support, including Instagram and Facebook Messenger (Meta''s Send API rejects reply_to on Instagram and does not expose it on Messenger).'
27626
+ description: 'Platform message ID to quote-reply to. For WhatsApp, pass the wamid; for Telegram, the Telegram message ID (delivered as message.platformMessageId on webhooks, and as `id` on each entry of the list-messages endpoint). On Slack it threads the reply (thread_ts) instead of quoting. Silently ignored on platforms without send-side reply support, including Instagram and Facebook Messenger (Meta''s Send API rejects reply_to on Instagram and does not expose it on Messenger).'
27599
27627
  voiceNote:
27600
27628
  type: string
27601
27629
  enum: ['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.814
4
+ version: 0.0.815
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator