late-sdk 0.0.591 → 0.0.592
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/MessagesApi.md +1 -1
- data/lib/zernio-sdk/api/messages_api.rb +2 -2
- data/lib/zernio-sdk/version.rb +1 -1
- data/openapi.yaml +3 -1
- data/spec/api/messages_api_spec.rb +1 -1
- data/zernio-sdk-0.0.592.gem +0 -0
- metadata +2 -2
- data/zernio-sdk-0.0.591.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: 17794198855d37bdb15e25017e79ca54838021a57b153bc74e8e8cd839e07602
|
|
4
|
+
data.tar.gz: 6b0c18bc2f027f4ebfdccb3bc7ac43db3c3cde1e19173e9a700d4bd0ffb82326
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 602f12026d981e8a1418fad6db80c9662e749aa065f2eb2d6230a424830f0d843368d7a3294e48c4221e32dfc912b8b84b3275e3692cce8924d184a8a75d5f4a
|
|
7
|
+
data.tar.gz: c8adfa83eb38e4ee514369a17bec6a37e878ab6c20cc5c774fed2a86f5da42f7f67b8fe5cc65d9d06905e2f5c0295a61771efb4fd9579e202b4bdabd5cb7c7ef
|
data/docs/MessagesApi.md
CHANGED
|
@@ -845,7 +845,7 @@ end
|
|
|
845
845
|
|
|
846
846
|
Send typing indicator
|
|
847
847
|
|
|
848
|
-
Show a typing indicator in a conversation. Platform support: - Facebook Messenger: Shows \"Page is typing...\" for 20 seconds - Telegram: Shows \"Bot is typing...\" for 5 seconds - WhatsApp: Shows \"typing...\" for up to 25 seconds. Requires a recent inbound message in the conversation (Meta references the inbound message id) and also marks that message as read as a side-effect. - All others: Returns 200 but no-op (platform doesn't support it) Typing indicators are best-effort. The endpoint always returns 200 even if the platform call fails.
|
|
848
|
+
Show a typing indicator in a conversation. Platform support: - Facebook Messenger: Shows \"Page is typing...\" for 20 seconds - Instagram: Shows \"typing...\" to the recipient (works for both Instagram Login and Facebook Login accounts). The recipient must be signed in to Instagram to see it. - Telegram: Shows \"Bot is typing...\" for 5 seconds - WhatsApp: Shows \"typing...\" for up to 25 seconds. Requires a recent inbound message in the conversation (Meta references the inbound message id) and also marks that message as read as a side-effect. - All others: Returns 200 but no-op (platform doesn't support it) Typing indicators are best-effort. The endpoint always returns 200 even if the platform call fails; `success` reports whether a typing indicator was actually sent to the platform (`false` on unsupported platforms or when the platform call failed).
|
|
849
849
|
|
|
850
850
|
### Examples
|
|
851
851
|
|
|
@@ -913,7 +913,7 @@ module Zernio
|
|
|
913
913
|
end
|
|
914
914
|
|
|
915
915
|
# Send typing indicator
|
|
916
|
-
# Show a typing indicator in a conversation. Platform support: - Facebook Messenger: Shows \"Page is typing...\" for 20 seconds - Telegram: Shows \"Bot is typing...\" for 5 seconds - WhatsApp: Shows \"typing...\" for up to 25 seconds. Requires a recent inbound message in the conversation (Meta references the inbound message id) and also marks that message as read as a side-effect. - All others: Returns 200 but no-op (platform doesn't support it) Typing indicators are best-effort. The endpoint always returns 200 even if the platform call fails.
|
|
916
|
+
# Show a typing indicator in a conversation. Platform support: - Facebook Messenger: Shows \"Page is typing...\" for 20 seconds - Instagram: Shows \"typing...\" to the recipient (works for both Instagram Login and Facebook Login accounts). The recipient must be signed in to Instagram to see it. - Telegram: Shows \"Bot is typing...\" for 5 seconds - WhatsApp: Shows \"typing...\" for up to 25 seconds. Requires a recent inbound message in the conversation (Meta references the inbound message id) and also marks that message as read as a side-effect. - All others: Returns 200 but no-op (platform doesn't support it) Typing indicators are best-effort. The endpoint always returns 200 even if the platform call fails; `success` reports whether a typing indicator was actually sent to the platform (`false` on unsupported platforms or when the platform call failed).
|
|
917
917
|
# @param conversation_id [String] The conversation ID
|
|
918
918
|
# @param send_typing_indicator_request [SendTypingIndicatorRequest]
|
|
919
919
|
# @param [Hash] opts the optional parameters
|
|
@@ -924,7 +924,7 @@ module Zernio
|
|
|
924
924
|
end
|
|
925
925
|
|
|
926
926
|
# Send typing indicator
|
|
927
|
-
# Show a typing indicator in a conversation. Platform support: - Facebook Messenger: Shows \"Page is typing...\" for 20 seconds - Telegram: Shows \"Bot is typing...\" for 5 seconds - WhatsApp: Shows \"typing...\" for up to 25 seconds. Requires a recent inbound message in the conversation (Meta references the inbound message id) and also marks that message as read as a side-effect. - All others: Returns 200 but no-op (platform doesn't support it) Typing indicators are best-effort. The endpoint always returns 200 even if the platform call fails.
|
|
927
|
+
# Show a typing indicator in a conversation. Platform support: - Facebook Messenger: Shows \"Page is typing...\" for 20 seconds - Instagram: Shows \"typing...\" to the recipient (works for both Instagram Login and Facebook Login accounts). The recipient must be signed in to Instagram to see it. - Telegram: Shows \"Bot is typing...\" for 5 seconds - WhatsApp: Shows \"typing...\" for up to 25 seconds. Requires a recent inbound message in the conversation (Meta references the inbound message id) and also marks that message as read as a side-effect. - All others: Returns 200 but no-op (platform doesn't support it) Typing indicators are best-effort. The endpoint always returns 200 even if the platform call fails; `success` reports whether a typing indicator was actually sent to the platform (`false` on unsupported platforms or when the platform call failed).
|
|
928
928
|
# @param conversation_id [String] The conversation ID
|
|
929
929
|
# @param send_typing_indicator_request [SendTypingIndicatorRequest]
|
|
930
930
|
# @param [Hash] opts the optional parameters
|
data/lib/zernio-sdk/version.rb
CHANGED
data/openapi.yaml
CHANGED
|
@@ -23092,11 +23092,12 @@ paths:
|
|
|
23092
23092
|
description: |
|
|
23093
23093
|
Show a typing indicator in a conversation. Platform support:
|
|
23094
23094
|
- Facebook Messenger: Shows "Page is typing..." for 20 seconds
|
|
23095
|
+
- Instagram: Shows "typing..." to the recipient (works for both Instagram Login and Facebook Login accounts). The recipient must be signed in to Instagram to see it.
|
|
23095
23096
|
- Telegram: Shows "Bot is typing..." for 5 seconds
|
|
23096
23097
|
- WhatsApp: Shows "typing..." for up to 25 seconds. Requires a recent inbound message in the conversation (Meta references the inbound message id) and also marks that message as read as a side-effect.
|
|
23097
23098
|
- All others: Returns 200 but no-op (platform doesn't support it)
|
|
23098
23099
|
|
|
23099
|
-
Typing indicators are best-effort. The endpoint always returns 200 even if the platform call fails.
|
|
23100
|
+
Typing indicators are best-effort. The endpoint always returns 200 even if the platform call fails; `success` reports whether a typing indicator was actually sent to the platform (`false` on unsupported platforms or when the platform call failed).
|
|
23100
23101
|
tags: [Messages]
|
|
23101
23102
|
security: [{ bearerAuth: [] }]
|
|
23102
23103
|
parameters:
|
|
@@ -23123,6 +23124,7 @@ paths:
|
|
|
23123
23124
|
type: object
|
|
23124
23125
|
properties:
|
|
23125
23126
|
success: { type: boolean }
|
|
23127
|
+
'400': { $ref: '#/components/responses/BadRequest' }
|
|
23126
23128
|
'401': { $ref: '#/components/responses/Unauthorized' }
|
|
23127
23129
|
'403':
|
|
23128
23130
|
description: Inbox addon required
|
|
@@ -193,7 +193,7 @@ describe 'MessagesApi' do
|
|
|
193
193
|
|
|
194
194
|
# unit tests for send_typing_indicator
|
|
195
195
|
# Send typing indicator
|
|
196
|
-
# Show a typing indicator in a conversation. Platform support: - Facebook Messenger: Shows \"Page is typing...\" for 20 seconds - Telegram: Shows \"Bot is typing...\" for 5 seconds - WhatsApp: Shows \"typing...\" for up to 25 seconds. Requires a recent inbound message in the conversation (Meta references the inbound message id) and also marks that message as read as a side-effect. - All others: Returns 200 but no-op (platform doesn't support it) Typing indicators are best-effort. The endpoint always returns 200 even if the platform call fails.
|
|
196
|
+
# Show a typing indicator in a conversation. Platform support: - Facebook Messenger: Shows \"Page is typing...\" for 20 seconds - Instagram: Shows \"typing...\" to the recipient (works for both Instagram Login and Facebook Login accounts). The recipient must be signed in to Instagram to see it. - Telegram: Shows \"Bot is typing...\" for 5 seconds - WhatsApp: Shows \"typing...\" for up to 25 seconds. Requires a recent inbound message in the conversation (Meta references the inbound message id) and also marks that message as read as a side-effect. - All others: Returns 200 but no-op (platform doesn't support it) Typing indicators are best-effort. The endpoint always returns 200 even if the platform call fails; `success` reports whether a typing indicator was actually sent to the platform (`false` on unsupported platforms or when the platform call failed).
|
|
197
197
|
# @param conversation_id The conversation ID
|
|
198
198
|
# @param send_typing_indicator_request
|
|
199
199
|
# @param [Hash] opts the optional parameters
|
|
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.592
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- OpenAPI-Generator
|
|
@@ -4823,7 +4823,7 @@ files:
|
|
|
4823
4823
|
- spec/models/you_tube_video_retention_response_retention_curve_inner_spec.rb
|
|
4824
4824
|
- spec/models/you_tube_video_retention_response_spec.rb
|
|
4825
4825
|
- spec/spec_helper.rb
|
|
4826
|
-
- zernio-sdk-0.0.
|
|
4826
|
+
- zernio-sdk-0.0.592.gem
|
|
4827
4827
|
- zernio-sdk.gemspec
|
|
4828
4828
|
homepage: https://openapi-generator.tech
|
|
4829
4829
|
licenses:
|
data/zernio-sdk-0.0.591.gem
DELETED
|
Binary file
|