late-sdk 0.0.693 → 0.0.694

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: 4ea0f9ee1752ad92338bb01e0d42c18881ef2222078582fe728262165d300f54
4
- data.tar.gz: a1927d051b49900061c884b72f41260d419bc7688839cc05ae7898a7106a2f93
3
+ metadata.gz: dbf0fe01cd67abe3149890f3c719bfaa72fff603e5922d11c97fe9f040c5fdd9
4
+ data.tar.gz: 6a0a8f3aa81d04d1d5c3c189dd901048b1f36f77cc9f125178a6b6c7a785e0e7
5
5
  SHA512:
6
- metadata.gz: a6b13e0e95bb1f99cced7cae8b22138baf0dd76f6edbde5be38dfe8bc0aeb27643b49ddbe5519cf7e36c67fe9011c1a603df0f1b69565100908d358acf55cd17
7
- data.tar.gz: 870fb575e289bffe4528ace8c24d56c1348958aae7ef94e25c6447c3bba510394a8d9e3c1d3fbf3d5185d3aea6e66a706673fd016cba1c59a8ad66052d4808ef
6
+ metadata.gz: f61d68d843726f13ff6beccc0e10e953645e5f2c235a05d7c0802a87c0d514464514e3b60290f7273b8b7da13e7f39152b3608cfbb9cdd3c66f2e7a1ccd75ba2
7
+ data.tar.gz: 7647d8f894c669bed62b235e761909f2dd30f6048f7788bb17c9f2e42d33cd66eb58d1d2365811b10bfe780172b20762091f297fe8c9ffff96ad6abeea6b90f6
data/docs/MessagesApi.md CHANGED
@@ -788,7 +788,7 @@ Zernio.configure do |config|
788
788
  end
789
789
 
790
790
  api_instance = Zernio::MessagesApi.new
791
- conversation_id = 'conversation_id_example' # String | The conversation ID (id field from list conversations endpoint). This is the platform-specific conversation identifier, not an internal database ID.
791
+ conversation_id = 'conversation_id_example' # String | Opaque conversation identifier, accepted verbatim from the list endpoint or from the conversationId on inbox webhooks. Format not to be assumed.
792
792
  send_inbox_message_request = Zernio::SendInboxMessageRequest.new({account_id: 'account_id_example'}) # SendInboxMessageRequest |
793
793
  opts = {
794
794
  idempotency_key: 'idempotency_key_example' # String | Optional client-generated unique key (e.g. a UUID) that makes retries safe. Same key + same body replays the original response; same key + different body → 422; key still processing → 409.
@@ -825,7 +825,7 @@ end
825
825
 
826
826
  | Name | Type | Description | Notes |
827
827
  | ---- | ---- | ----------- | ----- |
828
- | **conversation_id** | **String** | The conversation ID (id field from list conversations endpoint). This is the platform-specific conversation identifier, not an internal database ID. | |
828
+ | **conversation_id** | **String** | Opaque conversation identifier, accepted verbatim from the list endpoint or from the conversationId on inbox webhooks. Format not to be assumed. | |
829
829
  | **send_inbox_message_request** | [**SendInboxMessageRequest**](SendInboxMessageRequest.md) | | |
830
830
  | **idempotency_key** | **String** | Optional client-generated unique key (e.g. a UUID) that makes retries safe. Same key + same body replays the original response; same key + different body → 422; key still processing → 409. | [optional] |
831
831
 
@@ -840,7 +840,7 @@ module Zernio
840
840
 
841
841
  # Send message
842
842
  # Send a message in a conversation. Supports text, attachments, quick replies, buttons, templates, and message tags. Attachment and interactive message support varies by platform. WhatsApp template messages: to send an approved template into this conversation (required when the 24-hour customer-service window is closed), use the `template` field with a single element carrying the template reference: `{ \"elements\": [{ \"name\": ..., \"language\": ..., \"components\": [...] }] }`. See the `template` field below for the exact shape. To send a template to a phone number you have no conversation with yet, use the create-conversation endpoint (POST /v1/inbox/conversations) instead. WhatsApp rich interactive messages (list, CTA URL, Flow, location request) are available via the `interactive` field. Tap events are delivered through the `message.received` webhook with WhatsApp-specific `metadata` fields (`interactiveType`, `interactiveId`, `flowResponseJson`, `flowResponseData`). **Idempotency:** send an `Idempotency-Key` header to make retries safe (e.g. after a client-side timeout where delivery is unknown): same key + same body replays the original response (with `Idempotent-Replayed: true`) instead of sending the message a second time; same key + different body returns 422; a key still in flight returns 409. Works for JSON and multipart (file upload) requests alike. Keys are retained for 24 hours.
843
- # @param conversation_id [String] The conversation ID (id field from list conversations endpoint). This is the platform-specific conversation identifier, not an internal database ID.
843
+ # @param conversation_id [String] Opaque conversation identifier, accepted verbatim from the list endpoint or from the conversationId on inbox webhooks. Format not to be assumed.
844
844
  # @param send_inbox_message_request [SendInboxMessageRequest]
845
845
  # @param [Hash] opts the optional parameters
846
846
  # @option opts [String] :idempotency_key Optional client-generated unique key (e.g. a UUID) that makes retries safe. Same key + same body replays the original response; same key + different body → 422; key still processing → 409.
@@ -852,7 +852,7 @@ module Zernio
852
852
 
853
853
  # Send message
854
854
  # Send a message in a conversation. Supports text, attachments, quick replies, buttons, templates, and message tags. Attachment and interactive message support varies by platform. WhatsApp template messages: to send an approved template into this conversation (required when the 24-hour customer-service window is closed), use the `template` field with a single element carrying the template reference: `{ \"elements\": [{ \"name\": ..., \"language\": ..., \"components\": [...] }] }`. See the `template` field below for the exact shape. To send a template to a phone number you have no conversation with yet, use the create-conversation endpoint (POST /v1/inbox/conversations) instead. WhatsApp rich interactive messages (list, CTA URL, Flow, location request) are available via the `interactive` field. Tap events are delivered through the `message.received` webhook with WhatsApp-specific `metadata` fields (`interactiveType`, `interactiveId`, `flowResponseJson`, `flowResponseData`). **Idempotency:** send an `Idempotency-Key` header to make retries safe (e.g. after a client-side timeout where delivery is unknown): same key + same body replays the original response (with `Idempotent-Replayed: true`) instead of sending the message a second time; same key + different body returns 422; a key still in flight returns 409. Works for JSON and multipart (file upload) requests alike. Keys are retained for 24 hours.
855
- # @param conversation_id [String] The conversation ID (id field from list conversations endpoint). This is the platform-specific conversation identifier, not an internal database ID.
855
+ # @param conversation_id [String] Opaque conversation identifier, accepted verbatim from the list endpoint or from the conversationId on inbox webhooks. Format not to be assumed.
856
856
  # @param send_inbox_message_request [SendInboxMessageRequest]
857
857
  # @param [Hash] opts the optional parameters
858
858
  # @option opts [String] :idempotency_key Optional client-generated unique key (e.g. a UUID) that makes retries safe. Same key + same body replays the original response; same key + different body → 422; key still processing → 409.
@@ -11,5 +11,5 @@ Generator version: 7.19.0
11
11
  =end
12
12
 
13
13
  module Zernio
14
- VERSION = '0.0.693'
14
+ VERSION = '0.0.694'
15
15
  end
data/openapi.yaml CHANGED
@@ -24339,7 +24339,7 @@ paths:
24339
24339
  in: path
24340
24340
  required: true
24341
24341
  schema: { type: string }
24342
- description: The conversation ID (id field from list conversations endpoint). This is the platform-specific conversation identifier, not an internal database ID.
24342
+ description: 'Opaque conversation identifier, accepted verbatim from the list endpoint or from the conversationId on inbox webhooks. Format not to be assumed.'
24343
24343
  - $ref: '#/components/parameters/IdempotencyKeyHeader'
24344
24344
  requestBody:
24345
24345
  required: true
@@ -181,7 +181,7 @@ describe 'MessagesApi' do
181
181
  # unit tests for send_inbox_message
182
182
  # Send message
183
183
  # Send a message in a conversation. Supports text, attachments, quick replies, buttons, templates, and message tags. Attachment and interactive message support varies by platform. WhatsApp template messages: to send an approved template into this conversation (required when the 24-hour customer-service window is closed), use the `template` field with a single element carrying the template reference: `{ \"elements\": [{ \"name\": ..., \"language\": ..., \"components\": [...] }] }`. See the `template` field below for the exact shape. To send a template to a phone number you have no conversation with yet, use the create-conversation endpoint (POST /v1/inbox/conversations) instead. WhatsApp rich interactive messages (list, CTA URL, Flow, location request) are available via the `interactive` field. Tap events are delivered through the `message.received` webhook with WhatsApp-specific `metadata` fields (`interactiveType`, `interactiveId`, `flowResponseJson`, `flowResponseData`). **Idempotency:** send an `Idempotency-Key` header to make retries safe (e.g. after a client-side timeout where delivery is unknown): same key + same body replays the original response (with `Idempotent-Replayed: true`) instead of sending the message a second time; same key + different body returns 422; a key still in flight returns 409. Works for JSON and multipart (file upload) requests alike. Keys are retained for 24 hours.
184
- # @param conversation_id The conversation ID (id field from list conversations endpoint). This is the platform-specific conversation identifier, not an internal database ID.
184
+ # @param conversation_id Opaque conversation identifier, accepted verbatim from the list endpoint or from the conversationId on inbox webhooks. Format not to be assumed.
185
185
  # @param send_inbox_message_request
186
186
  # @param [Hash] opts the optional parameters
187
187
  # @option opts [String] :idempotency_key Optional client-generated unique key (e.g. a UUID) that makes retries safe. Same key + same body replays the original response; same key + different body → 422; key still processing → 409.
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.693
4
+ version: 0.0.694
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
@@ -5024,7 +5024,7 @@ files:
5024
5024
  - spec/models/you_tube_video_retention_response_retention_curve_inner_spec.rb
5025
5025
  - spec/models/you_tube_video_retention_response_spec.rb
5026
5026
  - spec/spec_helper.rb
5027
- - zernio-sdk-0.0.693.gem
5027
+ - zernio-sdk-0.0.694.gem
5028
5028
  - zernio-sdk.gemspec
5029
5029
  homepage: https://openapi-generator.tech
5030
5030
  licenses:
Binary file