events.iterate.com

Event type

events.iterate.com/project/agent-reply-presented

A signed-in client is ALREADY SHOWING an agent's chat reply to the user (the mobile thread screen and the web thread view append this when the reply renders foregrounded). Purely a delivery hint: push channels holding a pending chat-reply notification for the reply settle it suppressed instead of ringing a phone about something on screen. Claims for unknown or already-sent notifications are no-ops, so clients append freely.

Payload schema

pathstring

The agent stream the presented reply lives on.

replyEventOffsetinteger

The presented reply's identity on that stream: the offset of its agents/web-message-sent event (offsets are per-stream, so path + offset together are the identity).

Raw JSON schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "path": {
      "type": "string",
      "pattern": "^\\/agents\\/.*",
      "description": "The agent stream the presented reply lives on."
    },
    "replyEventOffset": {
      "type": "integer",
      "exclusiveMinimum": 0,
      "maximum": 9007199254740991,
      "description": "The presented reply's identity on that stream: the offset of its agents/web-message-sent event (offsets are per-stream, so path + offset together are the identity)."
    }
  },
  "required": [
    "path",
    "replyEventOffset"
  ],
  "additionalProperties": false
}