@linqapp/sdk-mcp 0.49.1 → 0.50.0

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.
@@ -411,7 +411,7 @@ const EMBEDDED_METHODS = [
411
411
  'override_optout?: boolean;',
412
412
  ],
413
413
  response: "{ chat_id: string; message: { id: string; created_at: string; delivery_status: 'pending' | 'queued' | 'sent' | 'delivered' | 'received' | 'read' | 'failed'; is_read: boolean; parts: text_part_response | media_part_response | link_part_response | object | object[]; sent_at: string; delivered_at?: string; effect?: message_effect; from_handle?: chat_handle; preferred_service?: service_type; reply_to?: reply_to; service?: service_type; }; }",
414
- markdown: "## send\n\n`client.chats.messages.send(chatId: string, message: { effect?: message_effect; experience?: object; idempotency_key?: string; parts?: text_part | media_part | link_part | object | object[]; preferred_service?: service_type; reply_to?: reply_to; }, override_optout?: boolean): { chat_id: string; message: sent_message; }`\n\n**post** `/v3/chats/{chatId}/messages`\n\nSend a message to an existing chat. Use this endpoint when you already have\na chat ID and want to send additional messages to it.\n\n## Message Effects\n\nYou can add iMessage effects to make your messages more expressive. Effects are\noptional and can be either screen effects (full-screen animations) or bubble effects\n(message bubble animations).\n\n**Screen Effects:** `confetti`, `fireworks`, `lasers`, `sparkles`, `celebration`,\n`hearts`, `love`, `balloons`, `happy_birthday`, `echo`, `spotlight`\n\n**Bubble Effects:** `slam`, `loud`, `gentle`, `invisible`\n\nOnly one effect type can be applied per message.\n\n## Inline Text Decorations (iMessage only)\n\nUse the `text_decorations` array on a text part to apply styling and animations to character ranges.\n\nEach decoration specifies a `range: [start, end)` and exactly one of `style` or `animation`.\n\n**Styles:** `bold`, `italic`, `strikethrough`, `underline`\n**Animations:** `big`, `small`, `shake`, `nod`, `explode`, `ripple`, `bloom`, `jitter`\n\n```json\n{\n \"type\": \"text\",\n \"value\": \"Hello world\",\n \"text_decorations\": [\n { \"range\": [0, 5], \"style\": \"bold\" },\n { \"range\": [6, 11], \"animation\": \"shake\" }\n ]\n}\n```\n\n**Note:** Style ranges (bold, italic, etc.) may overlap, but animation ranges must not overlap with other animations or styles. Decorations render per recipient, not per message:\nin a group with both iMessage and SMS/RCS participants, iMessage recipients see the decorations and SMS/RCS recipients receive the same message as plain text.\n\n\n### Parameters\n\n- `chatId: string`\n\n- `message: { effect?: { name?: string; type?: 'screen' | 'bubble'; }; experience?: { action: string; name: string; params?: object; }; idempotency_key?: string; parts?: { type: 'text'; value: string; mention?: string; mention_range?: number[]; text_decorations?: text_decoration[]; } | { type: 'media'; attachment_id?: string; url?: string; } | { type: 'link'; value: string; } | { app: { bundle_id: string; name: string; team_id: string; app_store_id?: number; }; layout: { caption?: string; image_subtitle?: string; image_title?: string; image_url?: string; subcaption?: string; trailing_caption?: string; trailing_subcaption?: string; }; type: 'imessage_app'; fallback_text?: string; interactive?: boolean; url?: string; } | { type: 'app_clip'; value: string; }[]; preferred_service?: 'iMessage' | 'SMS' | 'RCS'; reply_to?: { message_id: string; part_index?: number; }; }`\n Message content container. Groups all message-related fields together,\nseparating the \"what\" (message content) from the \"where\" (routing fields like from/to).\n\nA message carries EITHER `parts` — text and attachments, which compose\ninto one bubble — or a single `experience` invocation, which renders an\nexperience inside Linq's iMessage app. Never both: an app card is the whole message\n(Apple's `MSMessage` cannot coexist with text), so copy and a card are\ntwo sends, not one.\n\n - `effect?: { name?: string; type?: 'screen' | 'bubble'; }`\n iMessage effect to apply to this message (screen or bubble effect)\n - `experience?: { action: string; name: string; params?: object; }`\n Invokes an action on an experience — a third party that renders inside\nLinq's iMessage app. Linq resolves the recipient's connection, mints any\nsession the action needs, composes the card and sends it; none of that\nis visible to you.\n\nCall `GET /v3/experiences/{experience}` for the actions you may invoke\nand the fields each accepts.\n\n - `idempotency_key?: string`\n Optional idempotency key for this message.\nUse this to prevent duplicate sends of the same message. Reusing a key\nwhose message was deleted — or was an ephemeral message that has since\nexpired — returns 404; the message is never resent.\n\n - `parts?: { type: 'text'; value: string; mention?: string; mention_range?: number[]; text_decorations?: { range: number[]; animation?: 'big' | 'small' | 'shake' | 'nod' | 'explode' | 'ripple' | 'bloom' | 'jitter'; style?: 'bold' | 'italic' | 'strikethrough' | 'underline'; }[]; } | { type: 'media'; attachment_id?: string; url?: string; } | { type: 'link'; value: string; } | { app: { bundle_id: string; name: string; team_id: string; app_store_id?: number; }; layout: { caption?: string; image_subtitle?: string; image_title?: string; image_url?: string; subcaption?: string; trailing_caption?: string; trailing_subcaption?: string; }; type: 'imessage_app'; fallback_text?: string; interactive?: boolean; url?: string; } | { type: 'app_clip'; value: string; }[]`\n Array of message parts. Each part can be text, media, or link.\nParts are displayed in order. Text and media can be mixed freely,\nbut a `link` part must be the only part in the message.\n\n**Rich Link Previews:**\n- Use a `link` part to send a URL with a rich preview card\n- A `link` part must be the **only** part in the message\n- To send a URL as plain text (no preview), use a `text` part instead\n\n**App Clip Payment Cards:**\n- Use an `app_clip` part to send a Linq checkout link as an Apple Pay\n App Clip card (the payment preview with the Open button)\n- An `app_clip` part must be the **only** part in the message\n- iMessage-only: unlike `link`, it never downgrades to SMS/RCS — the\n send fails instead of delivering a bare URL\n\n**Supported Media:**\n- Images: .jpg, .jpeg, .png, .gif, .heic, .heif, .tif, .tiff, .bmp\n- Videos: .mp4, .mov, .m4v, .mpeg, .mpg, .3gp\n- Audio: .m4a, .mp3, .aac, .caf, .wav, .aiff, .amr\n- Documents: .pdf, .txt, .rtf, .csv, .doc, .docx, .xls, .xlsx, .ppt, .pptx, .pages, .numbers, .key, .epub, .zip, .html, .htm\n- Contact & Calendar: .vcf, .ics\n\n**Audio:**\n- Audio files (.m4a, .mp3, .aac, .caf, .wav, .aiff, .amr) are fully supported as media parts\n- To send audio as an **iMessage voice memo bubble** (inline playback UI), use the dedicated\n `/v3/chats/{chatId}/voicememo` endpoint instead\n\n**Validation Rules:**\n- A `link` part must be the **only** part in the message. It cannot be combined\n with text or media parts.\n- An `app_clip` part must be the **only** part in the message. Its `value`\n must be a Linq checkout link (e.g. from `POST /v3/payment_requests`);\n any other URL is rejected.\n- Consecutive text parts are not allowed. Text parts must be separated by\n media parts. For example, [text, text] is invalid, but [text, media, text] is valid.\n- Maximum of **100 parts** total.\n- Media parts using a public `url` (downloaded by the server on send) are\n capped at **40**. Parts using `attachment_id` or presigned URLs\n are exempt from this sub-limit. For bulk media sends exceeding 40 files,\n pre-upload via `POST /v3/attachments` and reference by `attachment_id` or `download_url`.\n\n - `preferred_service?: 'iMessage' | 'SMS' | 'RCS'`\n Messaging service type\n - `reply_to?: { message_id: string; part_index?: number; }`\n Reply to another message to create a threaded conversation\n\n- `override_optout?: boolean`\n Send even though the recipient asked you to stop (`403`, error code\n`2024`). Applies to this request only: the opt-out stays in place, so\nthe next send without this flag is rejected again. Every override is\nrecorded against your API key.\n\n\n### Returns\n\n- `{ chat_id: string; message: { id: string; created_at: string; delivery_status: 'pending' | 'queued' | 'sent' | 'delivered' | 'received' | 'read' | 'failed'; is_read: boolean; parts: text_part_response | media_part_response | link_part_response | object | object[]; sent_at: string; delivered_at?: string; effect?: message_effect; from_handle?: chat_handle; preferred_service?: service_type; reply_to?: reply_to; service?: service_type; }; }`\n Response for sending a message to a chat\n\n - `chat_id: string`\n - `message: { id: string; created_at: string; delivery_status: 'pending' | 'queued' | 'sent' | 'delivered' | 'received' | 'read' | 'failed'; is_read: boolean; parts: { reactions: reaction[]; type: 'text'; value: string; mention?: string; mention_range?: number[]; text_decorations?: text_decoration[]; } | { id: string; filename: string; mime_type: string; reactions: reaction[]; size_bytes: number; type: 'media'; url: string; } | { reactions: reaction[]; type: 'link'; value: string; } | { app: { bundle_id: string; name: string; team_id: string; app_store_id?: number; }; layout: { caption?: string; image_subtitle?: string; image_title?: string; image_url?: string; subcaption?: string; trailing_caption?: string; trailing_subcaption?: string; }; reactions: object[]; type: 'imessage_app'; url: string; fallback_text?: string; } | { reactions: object[]; type: 'app_clip'; value: string; description?: string; image_url?: string; title?: string; }[]; sent_at: string; delivered_at?: string; effect?: { name?: string; type?: 'screen' | 'bubble'; }; from_handle?: { id: string; handle: string; joined_at: string; service: service_type; is_me?: boolean; left_at?: string; status?: 'active' | 'left' | 'removed'; }; preferred_service?: 'iMessage' | 'SMS' | 'RCS'; reply_to?: { message_id: string; part_index?: number; }; service?: 'iMessage' | 'SMS' | 'RCS'; }`\n\n### Example\n\n```typescript\nimport LinqAPIV3 from '@linqapp/sdk';\n\nconst client = new LinqAPIV3();\n\nconst response = await client.chats.messages.send('550e8400-e29b-41d4-a716-446655440000', { message: {} });\n\nconsole.log(response);\n```",
414
+ markdown: "## send\n\n`client.chats.messages.send(chatId: string, message: { effect?: message_effect; experience?: object; idempotency_key?: string; parts?: text_part | media_part | link_part | object | object[]; preferred_service?: service_type; reply_to?: reply_to; }, override_optout?: boolean): { chat_id: string; message: sent_message; }`\n\n**post** `/v3/chats/{chatId}/messages`\n\nSend a message to an existing chat. Use this endpoint when you already have\na chat ID and want to send additional messages to it.\n\n## Message Effects\n\nYou can add iMessage effects to make your messages more expressive. Effects are\noptional and can be either screen effects (full-screen animations) or bubble effects\n(message bubble animations).\n\n**Screen Effects:** `confetti`, `fireworks`, `lasers`, `sparkles`, `celebration`,\n`hearts`, `love`, `balloons`, `happy_birthday`, `echo`, `spotlight`\n\n**Bubble Effects:** `slam`, `loud`, `gentle`, `invisible`\n\nOnly one effect type can be applied per message.\n\n## Inline Text Decorations (iMessage only)\n\nUse the `text_decorations` array on a text part to apply styling and animations to character ranges.\n\nEach decoration specifies a `range: [start, end)` and exactly one of `style` or `animation`.\n\n**Styles:** `bold`, `italic`, `strikethrough`, `underline`\n**Animations:** `big`, `small`, `shake`, `nod`, `explode`, `ripple`, `bloom`, `jitter`\n\n```json\n{\n \"type\": \"text\",\n \"value\": \"Hello world\",\n \"text_decorations\": [\n { \"range\": [0, 5], \"style\": \"bold\" },\n { \"range\": [6, 11], \"animation\": \"shake\" }\n ]\n}\n```\n\n**Note:** Style ranges (bold, italic, etc.) may overlap, but animation ranges must not overlap with other animations or styles. Decorations render per recipient, not per message:\nin a group with both iMessage and SMS/RCS participants, iMessage recipients see the decorations and SMS/RCS recipients receive the same message as plain text.\n\n\n### Parameters\n\n- `chatId: string`\n\n- `message: { effect?: { name?: string; type?: 'screen' | 'bubble'; }; experience?: { action: string; name: string; params?: object; }; idempotency_key?: string; parts?: { type: 'text'; value: string; mention?: string; mention_range?: number[]; text_decorations?: text_decoration[]; } | { type: 'media'; attachment_id?: string; url?: string; } | { type: 'link'; value: string; } | { app: { bundle_id: string; name: string; team_id: string; app_store_id?: number; }; layout: { caption?: string; image_subtitle?: string; image_title?: string; image_url?: string; subcaption?: string; trailing_caption?: string; trailing_subcaption?: string; }; type: 'imessage_app'; fallback_text?: string; interactive?: boolean; url?: string; } | { type: 'app_clip'; value: string; }[]; preferred_service?: 'iMessage' | 'SMS' | 'RCS'; reply_to?: { message_id: string; part_index?: number; }; }`\n Message content container. Groups all message-related fields together,\nseparating the \"what\" (message content) from the \"where\" (routing fields like from/to).\n\nA message carries EITHER `parts` — text and attachments, which compose\ninto one bubble — or a single `experience` invocation, which renders an\nexperience inside Linq's iMessage app. Never both: an app card is the whole message\n(Apple's `MSMessage` cannot coexist with text), so copy and a card are\ntwo sends, not one.\n\n - `effect?: { name?: string; type?: 'screen' | 'bubble'; }`\n iMessage effect to apply to this message (screen or bubble effect)\n - `experience?: { action: string; name: string; params?: object; }`\n Invokes an action on an experience — a third party that renders inside\nLinq's iMessage app. Linq resolves the recipient's connection, mints any\nsession the action needs, composes the card and sends it; none of that\nis visible to you.\n\nCall `GET /v3/experiences/{experience}` for the actions you may invoke\nand the fields each accepts.\n\n - `idempotency_key?: string`\n Optional idempotency key for this message.\nUse this to prevent duplicate sends of the same message. Reusing a key\nwhose message was deleted — or was an ephemeral message that has since\nexpired — returns 404; the message is never resent.\n\n - `parts?: { type: 'text'; value: string; mention?: string; mention_range?: number[]; text_decorations?: { range: number[]; animation?: 'big' | 'small' | 'shake' | 'nod' | 'explode' | 'ripple' | 'bloom' | 'jitter'; style?: 'bold' | 'italic' | 'strikethrough' | 'underline'; }[]; } | { type: 'media'; attachment_id?: string; url?: string; } | { type: 'link'; value: string; } | { app: { bundle_id: string; name: string; team_id: string; app_store_id?: number; }; layout: { caption?: string; image_subtitle?: string; image_title?: string; image_url?: string; subcaption?: string; trailing_caption?: string; trailing_subcaption?: string; }; type: 'imessage_app'; fallback_text?: string; interactive?: boolean; url?: string; } | { type: 'app_clip'; value: string; }[]`\n Array of message parts. Each part can be text, media, or link.\nParts are displayed in order. Text and media can be mixed freely,\nbut a `link` part must be the only part in the message.\n\n**Rich Link Previews:**\n- Use a `link` part to send a URL with a rich preview card\n- A `link` part must be the **only** part in the message\n- To send a URL as plain text (no preview), use a `text` part instead\n\n**App Clip Payment Cards:**\n- Use an `app_clip` part to send a Linq checkout link as an Apple Pay\n App Clip card (the payment preview with the Open button)\n- An `app_clip` part must be the **only** part in the message\n- iMessage-only: unlike `link`, it never downgrades to SMS/RCS — the\n send fails instead of delivering a bare URL\n\n**Supported Media:**\n- Images: .jpg, .jpeg, .png, .gif, .heic, .heif, .tif, .tiff, .bmp\n- Videos: .mp4, .mov, .m4v, .mpeg, .mpg, .3gp\n- Audio: .m4a, .mp3, .aac, .caf, .wav, .aiff, .amr\n- Documents: .pdf, .txt, .rtf, .csv, .doc, .docx, .xls, .xlsx, .ppt, .pptx, .pages, .numbers, .key, .epub, .zip, .html, .htm\n- Contact & Calendar: .vcf, .ics\n\n**Audio:**\n- Audio files (.m4a, .mp3, .aac, .caf, .wav, .aiff, .amr) are fully supported as media parts\n- To send audio as an **iMessage voice memo bubble** (inline playback UI), use the dedicated\n `/v3/chats/{chatId}/voicememo` endpoint instead\n\n**Validation Rules:**\n- A `link` part must be the **only** part in the message. It cannot be combined\n with text or media parts.\n- An `app_clip` part must be the **only** part in the message. Its `value`\n must be a Linq checkout link (e.g. from `POST /v3/payment_requests`);\n any other URL is rejected.\n- Consecutive text parts are not allowed. Text parts must be separated by\n media parts. For example, [text, text] is invalid, but [text, media, text] is valid.\n- Maximum of **100 parts** total.\n- Media parts using a public `url` (downloaded by the server on send) are\n capped at **40**. Parts using `attachment_id` or presigned URLs\n are exempt from this sub-limit. For bulk media sends exceeding 40 files,\n pre-upload via `POST /v3/attachments` and reference by `attachment_id` or `download_url`.\n\n - `preferred_service?: 'iMessage' | 'SMS' | 'RCS'`\n Messaging service type\n - `reply_to?: { message_id: string; part_index?: number; }`\n Reply to another message to create a threaded conversation\n\n- `override_optout?: boolean`\n Send even though the recipient asked you to stop (`403`, error code\n`2024`). Applies to this request only: the opt-out stays in place, so\nthe next send without this flag is rejected again. Every override is\nrecorded against your API key.\n\n\n### Returns\n\n- `{ chat_id: string; message: { id: string; created_at: string; delivery_status: 'pending' | 'queued' | 'sent' | 'delivered' | 'received' | 'read' | 'failed'; is_read: boolean; parts: text_part_response | media_part_response | link_part_response | object | object[]; sent_at: string; delivered_at?: string; effect?: message_effect; from_handle?: chat_handle; preferred_service?: service_type; reply_to?: reply_to; service?: service_type; }; }`\n Response for sending a message to a chat\n\n - `chat_id: string`\n - `message: { id: string; created_at: string; delivery_status: 'pending' | 'queued' | 'sent' | 'delivered' | 'received' | 'read' | 'failed'; is_read: boolean; parts: { reactions: reaction[]; type: 'text'; value: string; mention?: string; mention_range?: number[]; mentions?: object[]; text_decorations?: text_decoration[]; } | { id: string; filename: string; mime_type: string; reactions: reaction[]; size_bytes: number; type: 'media'; url: string; } | { reactions: reaction[]; type: 'link'; value: string; } | { app: { bundle_id: string; name: string; team_id: string; app_store_id?: number; }; layout: { caption?: string; image_subtitle?: string; image_title?: string; image_url?: string; subcaption?: string; trailing_caption?: string; trailing_subcaption?: string; }; reactions: object[]; type: 'imessage_app'; url: string; fallback_text?: string; } | { reactions: object[]; type: 'app_clip'; value: string; description?: string; image_url?: string; title?: string; }[]; sent_at: string; delivered_at?: string; effect?: { name?: string; type?: 'screen' | 'bubble'; }; from_handle?: { id: string; handle: string; joined_at: string; service: service_type; is_me?: boolean; left_at?: string; status?: 'active' | 'left' | 'removed'; }; preferred_service?: 'iMessage' | 'SMS' | 'RCS'; reply_to?: { message_id: string; part_index?: number; }; service?: 'iMessage' | 'SMS' | 'RCS'; }`\n\n### Example\n\n```typescript\nimport LinqAPIV3 from '@linqapp/sdk';\n\nconst client = new LinqAPIV3();\n\nconst response = await client.chats.messages.send('550e8400-e29b-41d4-a716-446655440000', { message: {} });\n\nconsole.log(response);\n```",
415
415
  perLanguage: {
416
416
  go: {
417
417
  method: 'client.Chats.Messages.Send',
@@ -440,7 +440,7 @@ const EMBEDDED_METHODS = [
440
440
  qualified: 'client.chats.messages.list',
441
441
  params: ['chatId: string;', 'cursor?: string;', 'limit?: number;'],
442
442
  response: "{ id: string; chat_id: string; created_at: string; delivery_status: 'pending' | 'queued' | 'sent' | 'delivered' | 'received' | 'read' | 'failed'; is_delivered: boolean; is_from_me: boolean; is_read: boolean; updated_at: string; delivered_at?: string; effect?: object; from?: string; from_handle?: object; parts?: object | object | object | { app: object; layout: object; reactions: reaction[]; type: 'imessage_app'; url: string; fallback_text?: string; } | { reactions: reaction[]; type: 'app_clip'; value: string; description?: string; image_url?: string; title?: string; }[]; preferred_service?: 'iMessage' | 'SMS' | 'RCS'; read_at?: string; reconciled_at?: string; reply_to?: object; sent_at?: string; service?: 'iMessage' | 'SMS' | 'RCS'; }",
443
- markdown: "## list\n\n`client.chats.messages.list(chatId: string, cursor?: string, limit?: number): { id: string; chat_id: string; created_at: string; delivery_status: 'pending' | 'queued' | 'sent' | 'delivered' | 'received' | 'read' | 'failed'; is_delivered: boolean; is_from_me: boolean; is_read: boolean; updated_at: string; delivered_at?: string; effect?: message_effect; from?: string; from_handle?: chat_handle; parts?: text_part_response | media_part_response | link_part_response | object | object[]; preferred_service?: service_type; read_at?: string; reconciled_at?: string; reply_to?: reply_to; sent_at?: string; service?: service_type; }`\n\n**get** `/v3/chats/{chatId}/messages`\n\nRetrieve messages from a specific chat with pagination support.\n\n\n### Parameters\n\n- `chatId: string`\n\n- `cursor?: string`\n Pagination cursor from previous next_cursor response\n\n- `limit?: number`\n Maximum number of messages to return\n\n### Returns\n\n- `{ id: string; chat_id: string; created_at: string; delivery_status: 'pending' | 'queued' | 'sent' | 'delivered' | 'received' | 'read' | 'failed'; is_delivered: boolean; is_from_me: boolean; is_read: boolean; updated_at: string; delivered_at?: string; effect?: { name?: string; type?: 'screen' | 'bubble'; }; from?: string; from_handle?: { id: string; handle: string; joined_at: string; service: service_type; is_me?: boolean; left_at?: string; status?: 'active' | 'left' | 'removed'; }; parts?: { reactions: reaction[]; type: 'text'; value: string; mention?: string; mention_range?: number[]; text_decorations?: text_decoration[]; } | { id: string; filename: string; mime_type: string; reactions: reaction[]; size_bytes: number; type: 'media'; url: string; } | { reactions: reaction[]; type: 'link'; value: string; } | { app: { bundle_id: string; name: string; team_id: string; app_store_id?: number; }; layout: { caption?: string; image_subtitle?: string; image_title?: string; image_url?: string; subcaption?: string; trailing_caption?: string; trailing_subcaption?: string; }; reactions: object[]; type: 'imessage_app'; url: string; fallback_text?: string; } | { reactions: object[]; type: 'app_clip'; value: string; description?: string; image_url?: string; title?: string; }[]; preferred_service?: 'iMessage' | 'SMS' | 'RCS'; read_at?: string; reconciled_at?: string; reply_to?: { message_id: string; part_index?: number; }; sent_at?: string; service?: 'iMessage' | 'SMS' | 'RCS'; }`\n\n - `id: string`\n - `chat_id: string`\n - `created_at: string`\n - `delivery_status: 'pending' | 'queued' | 'sent' | 'delivered' | 'received' | 'read' | 'failed'`\n - `is_delivered: boolean`\n - `is_from_me: boolean`\n - `is_read: boolean`\n - `updated_at: string`\n - `delivered_at?: string`\n - `effect?: { name?: string; type?: 'screen' | 'bubble'; }`\n - `from?: string`\n - `from_handle?: { id: string; handle: string; joined_at: string; service: 'iMessage' | 'SMS' | 'RCS'; is_me?: boolean; left_at?: string; status?: 'active' | 'left' | 'removed'; }`\n - `parts?: { reactions: { handle: chat_handle; is_me: boolean; type: reaction_type; custom_emoji?: string; sticker?: object; }[]; type: 'text'; value: string; mention?: string; mention_range?: number[]; text_decorations?: { range: number[]; animation?: 'big' | 'small' | 'shake' | 'nod' | 'explode' | 'ripple' | 'bloom' | 'jitter'; style?: 'bold' | 'italic' | 'strikethrough' | 'underline'; }[]; } | { id: string; filename: string; mime_type: string; reactions: { handle: chat_handle; is_me: boolean; type: reaction_type; custom_emoji?: string; sticker?: object; }[]; size_bytes: number; type: 'media'; url: string; } | { reactions: { handle: chat_handle; is_me: boolean; type: reaction_type; custom_emoji?: string; sticker?: object; }[]; type: 'link'; value: string; } | { app: { bundle_id: string; name: string; team_id: string; app_store_id?: number; }; layout: { caption?: string; image_subtitle?: string; image_title?: string; image_url?: string; subcaption?: string; trailing_caption?: string; trailing_subcaption?: string; }; reactions: { handle: object; is_me: boolean; type: 'love' | 'like' | 'dislike' | 'laugh' | 'emphasize' | 'question' | 'custom' | 'sticker'; custom_emoji?: string; sticker?: { file_name?: string; height?: number; mime_type?: string; url?: string; width?: number; }; }[]; type: 'imessage_app'; url: string; fallback_text?: string; } | { reactions: { handle: object; is_me: boolean; type: 'love' | 'like' | 'dislike' | 'laugh' | 'emphasize' | 'question' | 'custom' | 'sticker'; custom_emoji?: string; sticker?: { file_name?: string; height?: number; mime_type?: string; url?: string; width?: number; }; }[]; type: 'app_clip'; value: string; description?: string; image_url?: string; title?: string; }[]`\n - `preferred_service?: 'iMessage' | 'SMS' | 'RCS'`\n - `read_at?: string`\n - `reconciled_at?: string`\n - `reply_to?: { message_id: string; part_index?: number; }`\n - `sent_at?: string`\n - `service?: 'iMessage' | 'SMS' | 'RCS'`\n\n### Example\n\n```typescript\nimport LinqAPIV3 from '@linqapp/sdk';\n\nconst client = new LinqAPIV3();\n\n// Automatically fetches more pages as needed.\nfor await (const message of client.chats.messages.list('550e8400-e29b-41d4-a716-446655440000')) {\n console.log(message);\n}\n```",
443
+ markdown: "## list\n\n`client.chats.messages.list(chatId: string, cursor?: string, limit?: number): { id: string; chat_id: string; created_at: string; delivery_status: 'pending' | 'queued' | 'sent' | 'delivered' | 'received' | 'read' | 'failed'; is_delivered: boolean; is_from_me: boolean; is_read: boolean; updated_at: string; delivered_at?: string; effect?: message_effect; from?: string; from_handle?: chat_handle; parts?: text_part_response | media_part_response | link_part_response | object | object[]; preferred_service?: service_type; read_at?: string; reconciled_at?: string; reply_to?: reply_to; sent_at?: string; service?: service_type; }`\n\n**get** `/v3/chats/{chatId}/messages`\n\nRetrieve messages from a specific chat with pagination support.\n\n\n### Parameters\n\n- `chatId: string`\n\n- `cursor?: string`\n Pagination cursor from previous next_cursor response\n\n- `limit?: number`\n Maximum number of messages to return\n\n### Returns\n\n- `{ id: string; chat_id: string; created_at: string; delivery_status: 'pending' | 'queued' | 'sent' | 'delivered' | 'received' | 'read' | 'failed'; is_delivered: boolean; is_from_me: boolean; is_read: boolean; updated_at: string; delivered_at?: string; effect?: { name?: string; type?: 'screen' | 'bubble'; }; from?: string; from_handle?: { id: string; handle: string; joined_at: string; service: service_type; is_me?: boolean; left_at?: string; status?: 'active' | 'left' | 'removed'; }; parts?: { reactions: reaction[]; type: 'text'; value: string; mention?: string; mention_range?: number[]; mentions?: object[]; text_decorations?: text_decoration[]; } | { id: string; filename: string; mime_type: string; reactions: reaction[]; size_bytes: number; type: 'media'; url: string; } | { reactions: reaction[]; type: 'link'; value: string; } | { app: { bundle_id: string; name: string; team_id: string; app_store_id?: number; }; layout: { caption?: string; image_subtitle?: string; image_title?: string; image_url?: string; subcaption?: string; trailing_caption?: string; trailing_subcaption?: string; }; reactions: object[]; type: 'imessage_app'; url: string; fallback_text?: string; } | { reactions: object[]; type: 'app_clip'; value: string; description?: string; image_url?: string; title?: string; }[]; preferred_service?: 'iMessage' | 'SMS' | 'RCS'; read_at?: string; reconciled_at?: string; reply_to?: { message_id: string; part_index?: number; }; sent_at?: string; service?: 'iMessage' | 'SMS' | 'RCS'; }`\n\n - `id: string`\n - `chat_id: string`\n - `created_at: string`\n - `delivery_status: 'pending' | 'queued' | 'sent' | 'delivered' | 'received' | 'read' | 'failed'`\n - `is_delivered: boolean`\n - `is_from_me: boolean`\n - `is_read: boolean`\n - `updated_at: string`\n - `delivered_at?: string`\n - `effect?: { name?: string; type?: 'screen' | 'bubble'; }`\n - `from?: string`\n - `from_handle?: { id: string; handle: string; joined_at: string; service: 'iMessage' | 'SMS' | 'RCS'; is_me?: boolean; left_at?: string; status?: 'active' | 'left' | 'removed'; }`\n - `parts?: { reactions: { handle: chat_handle; is_me: boolean; type: reaction_type; custom_emoji?: string; sticker?: object; }[]; type: 'text'; value: string; mention?: string; mention_range?: number[]; mentions?: { handle: string; is_me: boolean; range: number[]; }[]; text_decorations?: { range: number[]; animation?: 'big' | 'small' | 'shake' | 'nod' | 'explode' | 'ripple' | 'bloom' | 'jitter'; style?: 'bold' | 'italic' | 'strikethrough' | 'underline'; }[]; } | { id: string; filename: string; mime_type: string; reactions: { handle: chat_handle; is_me: boolean; type: reaction_type; custom_emoji?: string; sticker?: object; }[]; size_bytes: number; type: 'media'; url: string; } | { reactions: { handle: chat_handle; is_me: boolean; type: reaction_type; custom_emoji?: string; sticker?: object; }[]; type: 'link'; value: string; } | { app: { bundle_id: string; name: string; team_id: string; app_store_id?: number; }; layout: { caption?: string; image_subtitle?: string; image_title?: string; image_url?: string; subcaption?: string; trailing_caption?: string; trailing_subcaption?: string; }; reactions: { handle: object; is_me: boolean; type: 'love' | 'like' | 'dislike' | 'laugh' | 'emphasize' | 'question' | 'custom' | 'sticker'; custom_emoji?: string; sticker?: { file_name?: string; height?: number; mime_type?: string; url?: string; width?: number; }; }[]; type: 'imessage_app'; url: string; fallback_text?: string; } | { reactions: { handle: object; is_me: boolean; type: 'love' | 'like' | 'dislike' | 'laugh' | 'emphasize' | 'question' | 'custom' | 'sticker'; custom_emoji?: string; sticker?: { file_name?: string; height?: number; mime_type?: string; url?: string; width?: number; }; }[]; type: 'app_clip'; value: string; description?: string; image_url?: string; title?: string; }[]`\n - `preferred_service?: 'iMessage' | 'SMS' | 'RCS'`\n - `read_at?: string`\n - `reconciled_at?: string`\n - `reply_to?: { message_id: string; part_index?: number; }`\n - `sent_at?: string`\n - `service?: 'iMessage' | 'SMS' | 'RCS'`\n\n### Example\n\n```typescript\nimport LinqAPIV3 from '@linqapp/sdk';\n\nconst client = new LinqAPIV3();\n\n// Automatically fetches more pages as needed.\nfor await (const message of client.chats.messages.list('550e8400-e29b-41d4-a716-446655440000')) {\n console.log(message);\n}\n```",
444
444
  perLanguage: {
445
445
  go: {
446
446
  method: 'client.Chats.Messages.List',
@@ -626,7 +626,7 @@ const EMBEDDED_METHODS = [
626
626
  'Idempotency-Key?: string;',
627
627
  ],
628
628
  response: "{ chat_id: string; created_new_chat: boolean; from: string; from_selection: { reason: 'reused_active_chat' | 'new_best_number' | 'failover_flagged'; reused_existing_chat: boolean; }; handles: { id: string; handle: string; joined_at: string; service: service_type; is_me?: boolean; left_at?: string; status?: 'active' | 'left' | 'removed'; }[]; is_group: boolean; message: { id: string; created_at: string; delivery_status: 'pending' | 'queued' | 'sent' | 'delivered' | 'received' | 'read' | 'failed'; is_read: boolean; parts: text_part_response | media_part_response | link_part_response | object | object[]; sent_at: string; delivered_at?: string; effect?: message_effect; from_handle?: chat_handle; preferred_service?: service_type; reply_to?: reply_to; service?: service_type; }; service: 'iMessage' | 'SMS' | 'RCS'; previous_chat_id?: string; }",
629
- markdown: "## create\n\n`client.messages.create(message: { effect?: message_effect; experience?: object; idempotency_key?: string; parts?: text_part | media_part | link_part | object | object[]; preferred_service?: service_type; reply_to?: reply_to; }, to: string[], continuation_message?: { text: string; }, exclude_from?: string[], override_optout?: boolean, Idempotency-Key?: string): { chat_id: string; created_new_chat: boolean; from: string; from_selection: object; handles: chat_handle[]; is_group: boolean; message: sent_message; service: service_type; previous_chat_id?: string; }`\n\n**post** `/v3/messages`\n\nSend a message to one or more recipients **without supplying a `from`\nnumber**. Linq resolves both the sending line and the target chat for you,\nthen returns exactly which line was used, which chat the message landed in,\nwhether a new chat was created, and every resulting message id.\n\nThis fuses \"create chat\" and \"send message\" behind a single\nmessage-centric resource. Provide only the recipients (`to`) and the\n`message`; the platform decides the rest.\n\n## How the from-number and chat are chosen\n\n- **Reuse** — if a chat with exactly these recipients already exists on a\n line that can still send, the message is sent into that chat on its\n existing line (`from_selection.reason = reused_active_chat`). The\n most-recently-active such chat wins; chats stranded on flagged lines\n (e.g. by an earlier failover) are skipped.\n- **New** — if no such chat exists, a new chat is created on the best\n available line (`from_selection.reason = new_best_number`).\n- **Failover** — if matching chats exist but none is on a line that can\n send, a **new** chat is created on a fresh best line and the flagged chat\n is abandoned (`from_selection.reason = failover_flagged`,\n `previous_chat_id` set). If you supply `continuation_message`, that\n text is sent as the single message INSTEAD of `message` (useful as a\n fresh-number-appropriate opener). Exactly one message is sent either way.\n\nRecipients (`to`) are an order-independent set: a single handle is a direct\nchat, multiple handles a group chat.\n\n## Excluding lines\n\n`exclude_from` keeps specific lines out of **this** send's line pick. It\nonly affects picking a line for a new chat — an existing chat is always\nreused on its own line, preferring a chat on a non-excluded line when the\nrecipients have more than one. An exclusion never abandons a live chat or\nmoves it to a new number, so if the only chat these recipients have is on\nan excluded line, that chat is still used. `from` tells you the line that\nwas actually used.\n\n## Differences from POST /v3/chats\n\n- The first message **may contain a link** (including for a newly created\n chat). Note: sending a link as the very first message on a freshly\n selected line can elevate that line's flagging risk — it is allowed, not\n recommended.\n- Voice memos are **not** supported here. To send an iMessage voice-memo\n bubble, use `POST /v3/chats/{chatId}/voicememo` with a known chat id.\n\n## Service preference, effects, decorations\n\nSet `message.preferred_service` (`iMessage` | `RCS` | `SMS`), `message.effect`,\nand per-part `text_decorations` exactly as on the other send endpoints.\n\nAlways responds `202 Accepted` — chat creation is incidental to the send.\n\n\n### Parameters\n\n- `message: { effect?: { name?: string; type?: 'screen' | 'bubble'; }; experience?: { action: string; name: string; params?: object; }; idempotency_key?: string; parts?: { type: 'text'; value: string; mention?: string; mention_range?: number[]; text_decorations?: text_decoration[]; } | { type: 'media'; attachment_id?: string; url?: string; } | { type: 'link'; value: string; } | { app: { bundle_id: string; name: string; team_id: string; app_store_id?: number; }; layout: { caption?: string; image_subtitle?: string; image_title?: string; image_url?: string; subcaption?: string; trailing_caption?: string; trailing_subcaption?: string; }; type: 'imessage_app'; fallback_text?: string; interactive?: boolean; url?: string; } | { type: 'app_clip'; value: string; }[]; preferred_service?: 'iMessage' | 'SMS' | 'RCS'; reply_to?: { message_id: string; part_index?: number; }; }`\n Message content container. Groups all message-related fields together,\nseparating the \"what\" (message content) from the \"where\" (routing fields like from/to).\n\nA message carries EITHER `parts` — text and attachments, which compose\ninto one bubble — or a single `experience` invocation, which renders an\nexperience inside Linq's iMessage app. Never both: an app card is the whole message\n(Apple's `MSMessage` cannot coexist with text), so copy and a card are\ntwo sends, not one.\n\n - `effect?: { name?: string; type?: 'screen' | 'bubble'; }`\n iMessage effect to apply to this message (screen or bubble effect)\n - `experience?: { action: string; name: string; params?: object; }`\n Invokes an action on an experience — a third party that renders inside\nLinq's iMessage app. Linq resolves the recipient's connection, mints any\nsession the action needs, composes the card and sends it; none of that\nis visible to you.\n\nCall `GET /v3/experiences/{experience}` for the actions you may invoke\nand the fields each accepts.\n\n - `idempotency_key?: string`\n Optional idempotency key for this message.\nUse this to prevent duplicate sends of the same message. Reusing a key\nwhose message was deleted — or was an ephemeral message that has since\nexpired — returns 404; the message is never resent.\n\n - `parts?: { type: 'text'; value: string; mention?: string; mention_range?: number[]; text_decorations?: { range: number[]; animation?: 'big' | 'small' | 'shake' | 'nod' | 'explode' | 'ripple' | 'bloom' | 'jitter'; style?: 'bold' | 'italic' | 'strikethrough' | 'underline'; }[]; } | { type: 'media'; attachment_id?: string; url?: string; } | { type: 'link'; value: string; } | { app: { bundle_id: string; name: string; team_id: string; app_store_id?: number; }; layout: { caption?: string; image_subtitle?: string; image_title?: string; image_url?: string; subcaption?: string; trailing_caption?: string; trailing_subcaption?: string; }; type: 'imessage_app'; fallback_text?: string; interactive?: boolean; url?: string; } | { type: 'app_clip'; value: string; }[]`\n Array of message parts. Each part can be text, media, or link.\nParts are displayed in order. Text and media can be mixed freely,\nbut a `link` part must be the only part in the message.\n\n**Rich Link Previews:**\n- Use a `link` part to send a URL with a rich preview card\n- A `link` part must be the **only** part in the message\n- To send a URL as plain text (no preview), use a `text` part instead\n\n**App Clip Payment Cards:**\n- Use an `app_clip` part to send a Linq checkout link as an Apple Pay\n App Clip card (the payment preview with the Open button)\n- An `app_clip` part must be the **only** part in the message\n- iMessage-only: unlike `link`, it never downgrades to SMS/RCS — the\n send fails instead of delivering a bare URL\n\n**Supported Media:**\n- Images: .jpg, .jpeg, .png, .gif, .heic, .heif, .tif, .tiff, .bmp\n- Videos: .mp4, .mov, .m4v, .mpeg, .mpg, .3gp\n- Audio: .m4a, .mp3, .aac, .caf, .wav, .aiff, .amr\n- Documents: .pdf, .txt, .rtf, .csv, .doc, .docx, .xls, .xlsx, .ppt, .pptx, .pages, .numbers, .key, .epub, .zip, .html, .htm\n- Contact & Calendar: .vcf, .ics\n\n**Audio:**\n- Audio files (.m4a, .mp3, .aac, .caf, .wav, .aiff, .amr) are fully supported as media parts\n- To send audio as an **iMessage voice memo bubble** (inline playback UI), use the dedicated\n `/v3/chats/{chatId}/voicememo` endpoint instead\n\n**Validation Rules:**\n- A `link` part must be the **only** part in the message. It cannot be combined\n with text or media parts.\n- An `app_clip` part must be the **only** part in the message. Its `value`\n must be a Linq checkout link (e.g. from `POST /v3/payment_requests`);\n any other URL is rejected.\n- Consecutive text parts are not allowed. Text parts must be separated by\n media parts. For example, [text, text] is invalid, but [text, media, text] is valid.\n- Maximum of **100 parts** total.\n- Media parts using a public `url` (downloaded by the server on send) are\n capped at **40**. Parts using `attachment_id` or presigned URLs\n are exempt from this sub-limit. For bulk media sends exceeding 40 files,\n pre-upload via `POST /v3/attachments` and reference by `attachment_id` or `download_url`.\n\n - `preferred_service?: 'iMessage' | 'SMS' | 'RCS'`\n Messaging service type\n - `reply_to?: { message_id: string; part_index?: number; }`\n Reply to another message to create a threaded conversation\n\n- `to: string[]`\n Recipient handles (E.164 phone numbers or email addresses). One handle\nis a direct chat; multiple handles a group chat. Order-independent — the\nset identifies the chat.\n\n\n- `continuation_message?: { text: string; }`\n Text-only fallback that **replaces** `message` ONLY on the failover branch —\nwhen a chat with these recipients already existed but its line was flagged,\nso a new chat is created on a fresh line. On that branch this text is sent as\nthe single message instead of `message` (the recipient is on a new number, so\nyou typically want a fresh-number-appropriate opener rather than the original\ncontent). Ignored otherwise (a healthy reuse, or genuine first contact).\nCarries no parts, media, or effects — exactly one message is ever sent.\n\n - `text: string`\n The replacement message text, sent as the single message on failover.\n\n- `exclude_from?: string[]`\n Lines (E.164) not to pick for this send. Applies for this request\nonly — nothing is remembered between calls.\n\n**Exclusion only affects picking a line for a new chat.** If `to`\nalready has a chat, that chat is reused on its own line, and a chat on\na non-excluded line is preferred when there is more than one. If the\nonly chat these recipients have is on an excluded line, it is still\nreused — an exclusion never abandons a live chat or moves it to a new\nnumber. Check `from` in the response to see the line that was actually\nused.\n\nNumbers that are not your lines are ignored. Every entry must be\nE.164 — a value like `4155551234` is rejected rather than silently\nskipped. Excluding every one of your available lines returns 400 when\na line has to be picked.\n\n\n- `override_optout?: boolean`\n Send even though the recipient asked you to stop (`403`, error code\n`2024`). Applies to this request only: the opt-out stays in place, so\nthe next send without this flag is rejected again. Every override is\nrecorded against your API key.\n\n\n- `Idempotency-Key?: string`\n\n### Returns\n\n- `{ chat_id: string; created_new_chat: boolean; from: string; from_selection: { reason: 'reused_active_chat' | 'new_best_number' | 'failover_flagged'; reused_existing_chat: boolean; }; handles: { id: string; handle: string; joined_at: string; service: service_type; is_me?: boolean; left_at?: string; status?: 'active' | 'left' | 'removed'; }[]; is_group: boolean; message: { id: string; created_at: string; delivery_status: 'pending' | 'queued' | 'sent' | 'delivered' | 'received' | 'read' | 'failed'; is_read: boolean; parts: text_part_response | media_part_response | link_part_response | object | object[]; sent_at: string; delivered_at?: string; effect?: message_effect; from_handle?: chat_handle; preferred_service?: service_type; reply_to?: reply_to; service?: service_type; }; service: 'iMessage' | 'SMS' | 'RCS'; previous_chat_id?: string; }`\n Result of an auto-from send. Self-describing: which line was used, which\nchat the message landed in, whether a new chat was created, and the\nresulting message id(s).\n\n\n - `chat_id: string`\n - `created_new_chat: boolean`\n - `from: string`\n - `from_selection: { reason: 'reused_active_chat' | 'new_best_number' | 'failover_flagged'; reused_existing_chat: boolean; }`\n - `handles: { id: string; handle: string; joined_at: string; service: 'iMessage' | 'SMS' | 'RCS'; is_me?: boolean; left_at?: string; status?: 'active' | 'left' | 'removed'; }[]`\n - `is_group: boolean`\n - `message: { id: string; created_at: string; delivery_status: 'pending' | 'queued' | 'sent' | 'delivered' | 'received' | 'read' | 'failed'; is_read: boolean; parts: { reactions: reaction[]; type: 'text'; value: string; mention?: string; mention_range?: number[]; text_decorations?: text_decoration[]; } | { id: string; filename: string; mime_type: string; reactions: reaction[]; size_bytes: number; type: 'media'; url: string; } | { reactions: reaction[]; type: 'link'; value: string; } | { app: { bundle_id: string; name: string; team_id: string; app_store_id?: number; }; layout: { caption?: string; image_subtitle?: string; image_title?: string; image_url?: string; subcaption?: string; trailing_caption?: string; trailing_subcaption?: string; }; reactions: object[]; type: 'imessage_app'; url: string; fallback_text?: string; } | { reactions: object[]; type: 'app_clip'; value: string; description?: string; image_url?: string; title?: string; }[]; sent_at: string; delivered_at?: string; effect?: { name?: string; type?: 'screen' | 'bubble'; }; from_handle?: { id: string; handle: string; joined_at: string; service: service_type; is_me?: boolean; left_at?: string; status?: 'active' | 'left' | 'removed'; }; preferred_service?: 'iMessage' | 'SMS' | 'RCS'; reply_to?: { message_id: string; part_index?: number; }; service?: 'iMessage' | 'SMS' | 'RCS'; }`\n - `service: 'iMessage' | 'SMS' | 'RCS'`\n - `previous_chat_id?: string`\n\n### Example\n\n```typescript\nimport LinqAPIV3 from '@linqapp/sdk';\n\nconst client = new LinqAPIV3();\n\nconst message = await client.messages.create({\n message: {},\n to: ['+14155559876'],\n});\n\nconsole.log(message);\n```",
629
+ markdown: "## create\n\n`client.messages.create(message: { effect?: message_effect; experience?: object; idempotency_key?: string; parts?: text_part | media_part | link_part | object | object[]; preferred_service?: service_type; reply_to?: reply_to; }, to: string[], continuation_message?: { text: string; }, exclude_from?: string[], override_optout?: boolean, Idempotency-Key?: string): { chat_id: string; created_new_chat: boolean; from: string; from_selection: object; handles: chat_handle[]; is_group: boolean; message: sent_message; service: service_type; previous_chat_id?: string; }`\n\n**post** `/v3/messages`\n\nSend a message to one or more recipients **without supplying a `from`\nnumber**. Linq resolves both the sending line and the target chat for you,\nthen returns exactly which line was used, which chat the message landed in,\nwhether a new chat was created, and every resulting message id.\n\nThis fuses \"create chat\" and \"send message\" behind a single\nmessage-centric resource. Provide only the recipients (`to`) and the\n`message`; the platform decides the rest.\n\n## How the from-number and chat are chosen\n\n- **Reuse** — if a chat with exactly these recipients already exists on a\n line that can still send, the message is sent into that chat on its\n existing line (`from_selection.reason = reused_active_chat`). The\n most-recently-active such chat wins; chats stranded on flagged lines\n (e.g. by an earlier failover) are skipped.\n- **New** — if no such chat exists, a new chat is created on the best\n available line (`from_selection.reason = new_best_number`).\n- **Failover** — if matching chats exist but none is on a line that can\n send, a **new** chat is created on a fresh best line and the flagged chat\n is abandoned (`from_selection.reason = failover_flagged`,\n `previous_chat_id` set). If you supply `continuation_message`, that\n text is sent as the single message INSTEAD of `message` (useful as a\n fresh-number-appropriate opener). Exactly one message is sent either way.\n\nRecipients (`to`) are an order-independent set: a single handle is a direct\nchat, multiple handles a group chat.\n\n## Excluding lines\n\n`exclude_from` keeps specific lines out of **this** send's line pick. It\nonly affects picking a line for a new chat — an existing chat is always\nreused on its own line, preferring a chat on a non-excluded line when the\nrecipients have more than one. An exclusion never abandons a live chat or\nmoves it to a new number, so if the only chat these recipients have is on\nan excluded line, that chat is still used. `from` tells you the line that\nwas actually used.\n\n## Differences from POST /v3/chats\n\n- The first message **may contain a link** (including for a newly created\n chat). Note: sending a link as the very first message on a freshly\n selected line can elevate that line's flagging risk — it is allowed, not\n recommended.\n- Voice memos are **not** supported here. To send an iMessage voice-memo\n bubble, use `POST /v3/chats/{chatId}/voicememo` with a known chat id.\n\n## Service preference, effects, decorations\n\nSet `message.preferred_service` (`iMessage` | `RCS` | `SMS`), `message.effect`,\nand per-part `text_decorations` exactly as on the other send endpoints.\n\nAlways responds `202 Accepted` — chat creation is incidental to the send.\n\n\n### Parameters\n\n- `message: { effect?: { name?: string; type?: 'screen' | 'bubble'; }; experience?: { action: string; name: string; params?: object; }; idempotency_key?: string; parts?: { type: 'text'; value: string; mention?: string; mention_range?: number[]; text_decorations?: text_decoration[]; } | { type: 'media'; attachment_id?: string; url?: string; } | { type: 'link'; value: string; } | { app: { bundle_id: string; name: string; team_id: string; app_store_id?: number; }; layout: { caption?: string; image_subtitle?: string; image_title?: string; image_url?: string; subcaption?: string; trailing_caption?: string; trailing_subcaption?: string; }; type: 'imessage_app'; fallback_text?: string; interactive?: boolean; url?: string; } | { type: 'app_clip'; value: string; }[]; preferred_service?: 'iMessage' | 'SMS' | 'RCS'; reply_to?: { message_id: string; part_index?: number; }; }`\n Message content container. Groups all message-related fields together,\nseparating the \"what\" (message content) from the \"where\" (routing fields like from/to).\n\nA message carries EITHER `parts` — text and attachments, which compose\ninto one bubble — or a single `experience` invocation, which renders an\nexperience inside Linq's iMessage app. Never both: an app card is the whole message\n(Apple's `MSMessage` cannot coexist with text), so copy and a card are\ntwo sends, not one.\n\n - `effect?: { name?: string; type?: 'screen' | 'bubble'; }`\n iMessage effect to apply to this message (screen or bubble effect)\n - `experience?: { action: string; name: string; params?: object; }`\n Invokes an action on an experience — a third party that renders inside\nLinq's iMessage app. Linq resolves the recipient's connection, mints any\nsession the action needs, composes the card and sends it; none of that\nis visible to you.\n\nCall `GET /v3/experiences/{experience}` for the actions you may invoke\nand the fields each accepts.\n\n - `idempotency_key?: string`\n Optional idempotency key for this message.\nUse this to prevent duplicate sends of the same message. Reusing a key\nwhose message was deleted — or was an ephemeral message that has since\nexpired — returns 404; the message is never resent.\n\n - `parts?: { type: 'text'; value: string; mention?: string; mention_range?: number[]; text_decorations?: { range: number[]; animation?: 'big' | 'small' | 'shake' | 'nod' | 'explode' | 'ripple' | 'bloom' | 'jitter'; style?: 'bold' | 'italic' | 'strikethrough' | 'underline'; }[]; } | { type: 'media'; attachment_id?: string; url?: string; } | { type: 'link'; value: string; } | { app: { bundle_id: string; name: string; team_id: string; app_store_id?: number; }; layout: { caption?: string; image_subtitle?: string; image_title?: string; image_url?: string; subcaption?: string; trailing_caption?: string; trailing_subcaption?: string; }; type: 'imessage_app'; fallback_text?: string; interactive?: boolean; url?: string; } | { type: 'app_clip'; value: string; }[]`\n Array of message parts. Each part can be text, media, or link.\nParts are displayed in order. Text and media can be mixed freely,\nbut a `link` part must be the only part in the message.\n\n**Rich Link Previews:**\n- Use a `link` part to send a URL with a rich preview card\n- A `link` part must be the **only** part in the message\n- To send a URL as plain text (no preview), use a `text` part instead\n\n**App Clip Payment Cards:**\n- Use an `app_clip` part to send a Linq checkout link as an Apple Pay\n App Clip card (the payment preview with the Open button)\n- An `app_clip` part must be the **only** part in the message\n- iMessage-only: unlike `link`, it never downgrades to SMS/RCS — the\n send fails instead of delivering a bare URL\n\n**Supported Media:**\n- Images: .jpg, .jpeg, .png, .gif, .heic, .heif, .tif, .tiff, .bmp\n- Videos: .mp4, .mov, .m4v, .mpeg, .mpg, .3gp\n- Audio: .m4a, .mp3, .aac, .caf, .wav, .aiff, .amr\n- Documents: .pdf, .txt, .rtf, .csv, .doc, .docx, .xls, .xlsx, .ppt, .pptx, .pages, .numbers, .key, .epub, .zip, .html, .htm\n- Contact & Calendar: .vcf, .ics\n\n**Audio:**\n- Audio files (.m4a, .mp3, .aac, .caf, .wav, .aiff, .amr) are fully supported as media parts\n- To send audio as an **iMessage voice memo bubble** (inline playback UI), use the dedicated\n `/v3/chats/{chatId}/voicememo` endpoint instead\n\n**Validation Rules:**\n- A `link` part must be the **only** part in the message. It cannot be combined\n with text or media parts.\n- An `app_clip` part must be the **only** part in the message. Its `value`\n must be a Linq checkout link (e.g. from `POST /v3/payment_requests`);\n any other URL is rejected.\n- Consecutive text parts are not allowed. Text parts must be separated by\n media parts. For example, [text, text] is invalid, but [text, media, text] is valid.\n- Maximum of **100 parts** total.\n- Media parts using a public `url` (downloaded by the server on send) are\n capped at **40**. Parts using `attachment_id` or presigned URLs\n are exempt from this sub-limit. For bulk media sends exceeding 40 files,\n pre-upload via `POST /v3/attachments` and reference by `attachment_id` or `download_url`.\n\n - `preferred_service?: 'iMessage' | 'SMS' | 'RCS'`\n Messaging service type\n - `reply_to?: { message_id: string; part_index?: number; }`\n Reply to another message to create a threaded conversation\n\n- `to: string[]`\n Recipient handles (E.164 phone numbers or email addresses). One handle\nis a direct chat; multiple handles a group chat. Order-independent — the\nset identifies the chat.\n\n\n- `continuation_message?: { text: string; }`\n Text-only fallback that **replaces** `message` ONLY on the failover branch —\nwhen a chat with these recipients already existed but its line was flagged,\nso a new chat is created on a fresh line. On that branch this text is sent as\nthe single message instead of `message` (the recipient is on a new number, so\nyou typically want a fresh-number-appropriate opener rather than the original\ncontent). Ignored otherwise (a healthy reuse, or genuine first contact).\nCarries no parts, media, or effects — exactly one message is ever sent.\n\n - `text: string`\n The replacement message text, sent as the single message on failover.\n\n- `exclude_from?: string[]`\n Lines (E.164) not to pick for this send. Applies for this request\nonly — nothing is remembered between calls.\n\n**Exclusion only affects picking a line for a new chat.** If `to`\nalready has a chat, that chat is reused on its own line, and a chat on\na non-excluded line is preferred when there is more than one. If the\nonly chat these recipients have is on an excluded line, it is still\nreused — an exclusion never abandons a live chat or moves it to a new\nnumber. Check `from` in the response to see the line that was actually\nused.\n\nNumbers that are not your lines are ignored. Every entry must be\nE.164 — a value like `4155551234` is rejected rather than silently\nskipped. Excluding every one of your available lines returns 400 when\na line has to be picked.\n\n\n- `override_optout?: boolean`\n Send even though the recipient asked you to stop (`403`, error code\n`2024`). Applies to this request only: the opt-out stays in place, so\nthe next send without this flag is rejected again. Every override is\nrecorded against your API key.\n\n\n- `Idempotency-Key?: string`\n\n### Returns\n\n- `{ chat_id: string; created_new_chat: boolean; from: string; from_selection: { reason: 'reused_active_chat' | 'new_best_number' | 'failover_flagged'; reused_existing_chat: boolean; }; handles: { id: string; handle: string; joined_at: string; service: service_type; is_me?: boolean; left_at?: string; status?: 'active' | 'left' | 'removed'; }[]; is_group: boolean; message: { id: string; created_at: string; delivery_status: 'pending' | 'queued' | 'sent' | 'delivered' | 'received' | 'read' | 'failed'; is_read: boolean; parts: text_part_response | media_part_response | link_part_response | object | object[]; sent_at: string; delivered_at?: string; effect?: message_effect; from_handle?: chat_handle; preferred_service?: service_type; reply_to?: reply_to; service?: service_type; }; service: 'iMessage' | 'SMS' | 'RCS'; previous_chat_id?: string; }`\n Result of an auto-from send. Self-describing: which line was used, which\nchat the message landed in, whether a new chat was created, and the\nresulting message id(s).\n\n\n - `chat_id: string`\n - `created_new_chat: boolean`\n - `from: string`\n - `from_selection: { reason: 'reused_active_chat' | 'new_best_number' | 'failover_flagged'; reused_existing_chat: boolean; }`\n - `handles: { id: string; handle: string; joined_at: string; service: 'iMessage' | 'SMS' | 'RCS'; is_me?: boolean; left_at?: string; status?: 'active' | 'left' | 'removed'; }[]`\n - `is_group: boolean`\n - `message: { id: string; created_at: string; delivery_status: 'pending' | 'queued' | 'sent' | 'delivered' | 'received' | 'read' | 'failed'; is_read: boolean; parts: { reactions: reaction[]; type: 'text'; value: string; mention?: string; mention_range?: number[]; mentions?: object[]; text_decorations?: text_decoration[]; } | { id: string; filename: string; mime_type: string; reactions: reaction[]; size_bytes: number; type: 'media'; url: string; } | { reactions: reaction[]; type: 'link'; value: string; } | { app: { bundle_id: string; name: string; team_id: string; app_store_id?: number; }; layout: { caption?: string; image_subtitle?: string; image_title?: string; image_url?: string; subcaption?: string; trailing_caption?: string; trailing_subcaption?: string; }; reactions: object[]; type: 'imessage_app'; url: string; fallback_text?: string; } | { reactions: object[]; type: 'app_clip'; value: string; description?: string; image_url?: string; title?: string; }[]; sent_at: string; delivered_at?: string; effect?: { name?: string; type?: 'screen' | 'bubble'; }; from_handle?: { id: string; handle: string; joined_at: string; service: service_type; is_me?: boolean; left_at?: string; status?: 'active' | 'left' | 'removed'; }; preferred_service?: 'iMessage' | 'SMS' | 'RCS'; reply_to?: { message_id: string; part_index?: number; }; service?: 'iMessage' | 'SMS' | 'RCS'; }`\n - `service: 'iMessage' | 'SMS' | 'RCS'`\n - `previous_chat_id?: string`\n\n### Example\n\n```typescript\nimport LinqAPIV3 from '@linqapp/sdk';\n\nconst client = new LinqAPIV3();\n\nconst message = await client.messages.create({\n message: {},\n to: ['+14155559876'],\n});\n\nconsole.log(message);\n```",
630
630
  perLanguage: {
631
631
  go: {
632
632
  method: 'client.Messages.New',
@@ -655,7 +655,7 @@ const EMBEDDED_METHODS = [
655
655
  qualified: 'client.messages.listMessagesThread',
656
656
  params: ['messageId: string;', 'cursor?: string;', 'limit?: number;', "order?: 'asc' | 'desc';"],
657
657
  response: "{ id: string; chat_id: string; created_at: string; delivery_status: 'pending' | 'queued' | 'sent' | 'delivered' | 'received' | 'read' | 'failed'; is_delivered: boolean; is_from_me: boolean; is_read: boolean; updated_at: string; delivered_at?: string; effect?: object; from?: string; from_handle?: object; parts?: object | object | object | { app: object; layout: object; reactions: reaction[]; type: 'imessage_app'; url: string; fallback_text?: string; } | { reactions: reaction[]; type: 'app_clip'; value: string; description?: string; image_url?: string; title?: string; }[]; preferred_service?: 'iMessage' | 'SMS' | 'RCS'; read_at?: string; reconciled_at?: string; reply_to?: object; sent_at?: string; service?: 'iMessage' | 'SMS' | 'RCS'; }",
658
- markdown: "## list_messages_thread\n\n`client.messages.listMessagesThread(messageId: string, cursor?: string, limit?: number, order?: 'asc' | 'desc'): { id: string; chat_id: string; created_at: string; delivery_status: 'pending' | 'queued' | 'sent' | 'delivered' | 'received' | 'read' | 'failed'; is_delivered: boolean; is_from_me: boolean; is_read: boolean; updated_at: string; delivered_at?: string; effect?: message_effect; from?: string; from_handle?: chat_handle; parts?: text_part_response | media_part_response | link_part_response | object | object[]; preferred_service?: service_type; read_at?: string; reconciled_at?: string; reply_to?: reply_to; sent_at?: string; service?: service_type; }`\n\n**get** `/v3/messages/{messageId}/thread`\n\nRetrieve all messages in a conversation thread. Given any message ID in the thread,\nreturns the originator message and all replies in chronological order.\n\nIf the message is not part of a thread, returns just that single message.\n\nSupports pagination and configurable ordering.\n\n\n### Parameters\n\n- `messageId: string`\n\n- `cursor?: string`\n Pagination cursor from previous next_cursor response\n\n- `limit?: number`\n Maximum number of messages to return\n\n- `order?: 'asc' | 'desc'`\n Sort order for messages (asc = oldest first, desc = newest first)\n\n### Returns\n\n- `{ id: string; chat_id: string; created_at: string; delivery_status: 'pending' | 'queued' | 'sent' | 'delivered' | 'received' | 'read' | 'failed'; is_delivered: boolean; is_from_me: boolean; is_read: boolean; updated_at: string; delivered_at?: string; effect?: { name?: string; type?: 'screen' | 'bubble'; }; from?: string; from_handle?: { id: string; handle: string; joined_at: string; service: service_type; is_me?: boolean; left_at?: string; status?: 'active' | 'left' | 'removed'; }; parts?: { reactions: reaction[]; type: 'text'; value: string; mention?: string; mention_range?: number[]; text_decorations?: text_decoration[]; } | { id: string; filename: string; mime_type: string; reactions: reaction[]; size_bytes: number; type: 'media'; url: string; } | { reactions: reaction[]; type: 'link'; value: string; } | { app: { bundle_id: string; name: string; team_id: string; app_store_id?: number; }; layout: { caption?: string; image_subtitle?: string; image_title?: string; image_url?: string; subcaption?: string; trailing_caption?: string; trailing_subcaption?: string; }; reactions: object[]; type: 'imessage_app'; url: string; fallback_text?: string; } | { reactions: object[]; type: 'app_clip'; value: string; description?: string; image_url?: string; title?: string; }[]; preferred_service?: 'iMessage' | 'SMS' | 'RCS'; read_at?: string; reconciled_at?: string; reply_to?: { message_id: string; part_index?: number; }; sent_at?: string; service?: 'iMessage' | 'SMS' | 'RCS'; }`\n\n - `id: string`\n - `chat_id: string`\n - `created_at: string`\n - `delivery_status: 'pending' | 'queued' | 'sent' | 'delivered' | 'received' | 'read' | 'failed'`\n - `is_delivered: boolean`\n - `is_from_me: boolean`\n - `is_read: boolean`\n - `updated_at: string`\n - `delivered_at?: string`\n - `effect?: { name?: string; type?: 'screen' | 'bubble'; }`\n - `from?: string`\n - `from_handle?: { id: string; handle: string; joined_at: string; service: 'iMessage' | 'SMS' | 'RCS'; is_me?: boolean; left_at?: string; status?: 'active' | 'left' | 'removed'; }`\n - `parts?: { reactions: { handle: chat_handle; is_me: boolean; type: reaction_type; custom_emoji?: string; sticker?: object; }[]; type: 'text'; value: string; mention?: string; mention_range?: number[]; text_decorations?: { range: number[]; animation?: 'big' | 'small' | 'shake' | 'nod' | 'explode' | 'ripple' | 'bloom' | 'jitter'; style?: 'bold' | 'italic' | 'strikethrough' | 'underline'; }[]; } | { id: string; filename: string; mime_type: string; reactions: { handle: chat_handle; is_me: boolean; type: reaction_type; custom_emoji?: string; sticker?: object; }[]; size_bytes: number; type: 'media'; url: string; } | { reactions: { handle: chat_handle; is_me: boolean; type: reaction_type; custom_emoji?: string; sticker?: object; }[]; type: 'link'; value: string; } | { app: { bundle_id: string; name: string; team_id: string; app_store_id?: number; }; layout: { caption?: string; image_subtitle?: string; image_title?: string; image_url?: string; subcaption?: string; trailing_caption?: string; trailing_subcaption?: string; }; reactions: { handle: object; is_me: boolean; type: 'love' | 'like' | 'dislike' | 'laugh' | 'emphasize' | 'question' | 'custom' | 'sticker'; custom_emoji?: string; sticker?: { file_name?: string; height?: number; mime_type?: string; url?: string; width?: number; }; }[]; type: 'imessage_app'; url: string; fallback_text?: string; } | { reactions: { handle: object; is_me: boolean; type: 'love' | 'like' | 'dislike' | 'laugh' | 'emphasize' | 'question' | 'custom' | 'sticker'; custom_emoji?: string; sticker?: { file_name?: string; height?: number; mime_type?: string; url?: string; width?: number; }; }[]; type: 'app_clip'; value: string; description?: string; image_url?: string; title?: string; }[]`\n - `preferred_service?: 'iMessage' | 'SMS' | 'RCS'`\n - `read_at?: string`\n - `reconciled_at?: string`\n - `reply_to?: { message_id: string; part_index?: number; }`\n - `sent_at?: string`\n - `service?: 'iMessage' | 'SMS' | 'RCS'`\n\n### Example\n\n```typescript\nimport LinqAPIV3 from '@linqapp/sdk';\n\nconst client = new LinqAPIV3();\n\n// Automatically fetches more pages as needed.\nfor await (const message of client.messages.listMessagesThread('69a37c7d-af4f-4b5e-af42-e28e98ce873a')) {\n console.log(message);\n}\n```",
658
+ markdown: "## list_messages_thread\n\n`client.messages.listMessagesThread(messageId: string, cursor?: string, limit?: number, order?: 'asc' | 'desc'): { id: string; chat_id: string; created_at: string; delivery_status: 'pending' | 'queued' | 'sent' | 'delivered' | 'received' | 'read' | 'failed'; is_delivered: boolean; is_from_me: boolean; is_read: boolean; updated_at: string; delivered_at?: string; effect?: message_effect; from?: string; from_handle?: chat_handle; parts?: text_part_response | media_part_response | link_part_response | object | object[]; preferred_service?: service_type; read_at?: string; reconciled_at?: string; reply_to?: reply_to; sent_at?: string; service?: service_type; }`\n\n**get** `/v3/messages/{messageId}/thread`\n\nRetrieve all messages in a conversation thread. Given any message ID in the thread,\nreturns the originator message and all replies in chronological order.\n\nIf the message is not part of a thread, returns just that single message.\n\nSupports pagination and configurable ordering.\n\n\n### Parameters\n\n- `messageId: string`\n\n- `cursor?: string`\n Pagination cursor from previous next_cursor response\n\n- `limit?: number`\n Maximum number of messages to return\n\n- `order?: 'asc' | 'desc'`\n Sort order for messages (asc = oldest first, desc = newest first)\n\n### Returns\n\n- `{ id: string; chat_id: string; created_at: string; delivery_status: 'pending' | 'queued' | 'sent' | 'delivered' | 'received' | 'read' | 'failed'; is_delivered: boolean; is_from_me: boolean; is_read: boolean; updated_at: string; delivered_at?: string; effect?: { name?: string; type?: 'screen' | 'bubble'; }; from?: string; from_handle?: { id: string; handle: string; joined_at: string; service: service_type; is_me?: boolean; left_at?: string; status?: 'active' | 'left' | 'removed'; }; parts?: { reactions: reaction[]; type: 'text'; value: string; mention?: string; mention_range?: number[]; mentions?: object[]; text_decorations?: text_decoration[]; } | { id: string; filename: string; mime_type: string; reactions: reaction[]; size_bytes: number; type: 'media'; url: string; } | { reactions: reaction[]; type: 'link'; value: string; } | { app: { bundle_id: string; name: string; team_id: string; app_store_id?: number; }; layout: { caption?: string; image_subtitle?: string; image_title?: string; image_url?: string; subcaption?: string; trailing_caption?: string; trailing_subcaption?: string; }; reactions: object[]; type: 'imessage_app'; url: string; fallback_text?: string; } | { reactions: object[]; type: 'app_clip'; value: string; description?: string; image_url?: string; title?: string; }[]; preferred_service?: 'iMessage' | 'SMS' | 'RCS'; read_at?: string; reconciled_at?: string; reply_to?: { message_id: string; part_index?: number; }; sent_at?: string; service?: 'iMessage' | 'SMS' | 'RCS'; }`\n\n - `id: string`\n - `chat_id: string`\n - `created_at: string`\n - `delivery_status: 'pending' | 'queued' | 'sent' | 'delivered' | 'received' | 'read' | 'failed'`\n - `is_delivered: boolean`\n - `is_from_me: boolean`\n - `is_read: boolean`\n - `updated_at: string`\n - `delivered_at?: string`\n - `effect?: { name?: string; type?: 'screen' | 'bubble'; }`\n - `from?: string`\n - `from_handle?: { id: string; handle: string; joined_at: string; service: 'iMessage' | 'SMS' | 'RCS'; is_me?: boolean; left_at?: string; status?: 'active' | 'left' | 'removed'; }`\n - `parts?: { reactions: { handle: chat_handle; is_me: boolean; type: reaction_type; custom_emoji?: string; sticker?: object; }[]; type: 'text'; value: string; mention?: string; mention_range?: number[]; mentions?: { handle: string; is_me: boolean; range: number[]; }[]; text_decorations?: { range: number[]; animation?: 'big' | 'small' | 'shake' | 'nod' | 'explode' | 'ripple' | 'bloom' | 'jitter'; style?: 'bold' | 'italic' | 'strikethrough' | 'underline'; }[]; } | { id: string; filename: string; mime_type: string; reactions: { handle: chat_handle; is_me: boolean; type: reaction_type; custom_emoji?: string; sticker?: object; }[]; size_bytes: number; type: 'media'; url: string; } | { reactions: { handle: chat_handle; is_me: boolean; type: reaction_type; custom_emoji?: string; sticker?: object; }[]; type: 'link'; value: string; } | { app: { bundle_id: string; name: string; team_id: string; app_store_id?: number; }; layout: { caption?: string; image_subtitle?: string; image_title?: string; image_url?: string; subcaption?: string; trailing_caption?: string; trailing_subcaption?: string; }; reactions: { handle: object; is_me: boolean; type: 'love' | 'like' | 'dislike' | 'laugh' | 'emphasize' | 'question' | 'custom' | 'sticker'; custom_emoji?: string; sticker?: { file_name?: string; height?: number; mime_type?: string; url?: string; width?: number; }; }[]; type: 'imessage_app'; url: string; fallback_text?: string; } | { reactions: { handle: object; is_me: boolean; type: 'love' | 'like' | 'dislike' | 'laugh' | 'emphasize' | 'question' | 'custom' | 'sticker'; custom_emoji?: string; sticker?: { file_name?: string; height?: number; mime_type?: string; url?: string; width?: number; }; }[]; type: 'app_clip'; value: string; description?: string; image_url?: string; title?: string; }[]`\n - `preferred_service?: 'iMessage' | 'SMS' | 'RCS'`\n - `read_at?: string`\n - `reconciled_at?: string`\n - `reply_to?: { message_id: string; part_index?: number; }`\n - `sent_at?: string`\n - `service?: 'iMessage' | 'SMS' | 'RCS'`\n\n### Example\n\n```typescript\nimport LinqAPIV3 from '@linqapp/sdk';\n\nconst client = new LinqAPIV3();\n\n// Automatically fetches more pages as needed.\nfor await (const message of client.messages.listMessagesThread('69a37c7d-af4f-4b5e-af42-e28e98ce873a')) {\n console.log(message);\n}\n```",
659
659
  perLanguage: {
660
660
  go: {
661
661
  method: 'client.Messages.ListMessagesThread',
@@ -684,7 +684,7 @@ const EMBEDDED_METHODS = [
684
684
  qualified: 'client.messages.retrieve',
685
685
  params: ['messageId: string;'],
686
686
  response: "{ id: string; chat_id: string; created_at: string; delivery_status: 'pending' | 'queued' | 'sent' | 'delivered' | 'received' | 'read' | 'failed'; is_delivered: boolean; is_from_me: boolean; is_read: boolean; updated_at: string; delivered_at?: string; effect?: object; from?: string; from_handle?: object; parts?: object | object | object | { app: object; layout: object; reactions: reaction[]; type: 'imessage_app'; url: string; fallback_text?: string; } | { reactions: reaction[]; type: 'app_clip'; value: string; description?: string; image_url?: string; title?: string; }[]; preferred_service?: 'iMessage' | 'SMS' | 'RCS'; read_at?: string; reconciled_at?: string; reply_to?: object; sent_at?: string; service?: 'iMessage' | 'SMS' | 'RCS'; }",
687
- markdown: "## retrieve\n\n`client.messages.retrieve(messageId: string): { id: string; chat_id: string; created_at: string; delivery_status: 'pending' | 'queued' | 'sent' | 'delivered' | 'received' | 'read' | 'failed'; is_delivered: boolean; is_from_me: boolean; is_read: boolean; updated_at: string; delivered_at?: string; effect?: message_effect; from?: string; from_handle?: chat_handle; parts?: text_part_response | media_part_response | link_part_response | object | object[]; preferred_service?: service_type; read_at?: string; reconciled_at?: string; reply_to?: reply_to; sent_at?: string; service?: service_type; }`\n\n**get** `/v3/messages/{messageId}`\n\nRetrieve a specific message by its ID. This endpoint returns the full message\ndetails including text, attachments, reactions, and metadata.\n\n\n### Parameters\n\n- `messageId: string`\n\n### Returns\n\n- `{ id: string; chat_id: string; created_at: string; delivery_status: 'pending' | 'queued' | 'sent' | 'delivered' | 'received' | 'read' | 'failed'; is_delivered: boolean; is_from_me: boolean; is_read: boolean; updated_at: string; delivered_at?: string; effect?: { name?: string; type?: 'screen' | 'bubble'; }; from?: string; from_handle?: { id: string; handle: string; joined_at: string; service: service_type; is_me?: boolean; left_at?: string; status?: 'active' | 'left' | 'removed'; }; parts?: { reactions: reaction[]; type: 'text'; value: string; mention?: string; mention_range?: number[]; text_decorations?: text_decoration[]; } | { id: string; filename: string; mime_type: string; reactions: reaction[]; size_bytes: number; type: 'media'; url: string; } | { reactions: reaction[]; type: 'link'; value: string; } | { app: { bundle_id: string; name: string; team_id: string; app_store_id?: number; }; layout: { caption?: string; image_subtitle?: string; image_title?: string; image_url?: string; subcaption?: string; trailing_caption?: string; trailing_subcaption?: string; }; reactions: object[]; type: 'imessage_app'; url: string; fallback_text?: string; } | { reactions: object[]; type: 'app_clip'; value: string; description?: string; image_url?: string; title?: string; }[]; preferred_service?: 'iMessage' | 'SMS' | 'RCS'; read_at?: string; reconciled_at?: string; reply_to?: { message_id: string; part_index?: number; }; sent_at?: string; service?: 'iMessage' | 'SMS' | 'RCS'; }`\n\n - `id: string`\n - `chat_id: string`\n - `created_at: string`\n - `delivery_status: 'pending' | 'queued' | 'sent' | 'delivered' | 'received' | 'read' | 'failed'`\n - `is_delivered: boolean`\n - `is_from_me: boolean`\n - `is_read: boolean`\n - `updated_at: string`\n - `delivered_at?: string`\n - `effect?: { name?: string; type?: 'screen' | 'bubble'; }`\n - `from?: string`\n - `from_handle?: { id: string; handle: string; joined_at: string; service: 'iMessage' | 'SMS' | 'RCS'; is_me?: boolean; left_at?: string; status?: 'active' | 'left' | 'removed'; }`\n - `parts?: { reactions: { handle: chat_handle; is_me: boolean; type: reaction_type; custom_emoji?: string; sticker?: object; }[]; type: 'text'; value: string; mention?: string; mention_range?: number[]; text_decorations?: { range: number[]; animation?: 'big' | 'small' | 'shake' | 'nod' | 'explode' | 'ripple' | 'bloom' | 'jitter'; style?: 'bold' | 'italic' | 'strikethrough' | 'underline'; }[]; } | { id: string; filename: string; mime_type: string; reactions: { handle: chat_handle; is_me: boolean; type: reaction_type; custom_emoji?: string; sticker?: object; }[]; size_bytes: number; type: 'media'; url: string; } | { reactions: { handle: chat_handle; is_me: boolean; type: reaction_type; custom_emoji?: string; sticker?: object; }[]; type: 'link'; value: string; } | { app: { bundle_id: string; name: string; team_id: string; app_store_id?: number; }; layout: { caption?: string; image_subtitle?: string; image_title?: string; image_url?: string; subcaption?: string; trailing_caption?: string; trailing_subcaption?: string; }; reactions: { handle: object; is_me: boolean; type: 'love' | 'like' | 'dislike' | 'laugh' | 'emphasize' | 'question' | 'custom' | 'sticker'; custom_emoji?: string; sticker?: { file_name?: string; height?: number; mime_type?: string; url?: string; width?: number; }; }[]; type: 'imessage_app'; url: string; fallback_text?: string; } | { reactions: { handle: object; is_me: boolean; type: 'love' | 'like' | 'dislike' | 'laugh' | 'emphasize' | 'question' | 'custom' | 'sticker'; custom_emoji?: string; sticker?: { file_name?: string; height?: number; mime_type?: string; url?: string; width?: number; }; }[]; type: 'app_clip'; value: string; description?: string; image_url?: string; title?: string; }[]`\n - `preferred_service?: 'iMessage' | 'SMS' | 'RCS'`\n - `read_at?: string`\n - `reconciled_at?: string`\n - `reply_to?: { message_id: string; part_index?: number; }`\n - `sent_at?: string`\n - `service?: 'iMessage' | 'SMS' | 'RCS'`\n\n### Example\n\n```typescript\nimport LinqAPIV3 from '@linqapp/sdk';\n\nconst client = new LinqAPIV3();\n\nconst message = await client.messages.retrieve('69a37c7d-af4f-4b5e-af42-e28e98ce873a');\n\nconsole.log(message);\n```",
687
+ markdown: "## retrieve\n\n`client.messages.retrieve(messageId: string): { id: string; chat_id: string; created_at: string; delivery_status: 'pending' | 'queued' | 'sent' | 'delivered' | 'received' | 'read' | 'failed'; is_delivered: boolean; is_from_me: boolean; is_read: boolean; updated_at: string; delivered_at?: string; effect?: message_effect; from?: string; from_handle?: chat_handle; parts?: text_part_response | media_part_response | link_part_response | object | object[]; preferred_service?: service_type; read_at?: string; reconciled_at?: string; reply_to?: reply_to; sent_at?: string; service?: service_type; }`\n\n**get** `/v3/messages/{messageId}`\n\nRetrieve a specific message by its ID. This endpoint returns the full message\ndetails including text, attachments, reactions, and metadata.\n\n\n### Parameters\n\n- `messageId: string`\n\n### Returns\n\n- `{ id: string; chat_id: string; created_at: string; delivery_status: 'pending' | 'queued' | 'sent' | 'delivered' | 'received' | 'read' | 'failed'; is_delivered: boolean; is_from_me: boolean; is_read: boolean; updated_at: string; delivered_at?: string; effect?: { name?: string; type?: 'screen' | 'bubble'; }; from?: string; from_handle?: { id: string; handle: string; joined_at: string; service: service_type; is_me?: boolean; left_at?: string; status?: 'active' | 'left' | 'removed'; }; parts?: { reactions: reaction[]; type: 'text'; value: string; mention?: string; mention_range?: number[]; mentions?: object[]; text_decorations?: text_decoration[]; } | { id: string; filename: string; mime_type: string; reactions: reaction[]; size_bytes: number; type: 'media'; url: string; } | { reactions: reaction[]; type: 'link'; value: string; } | { app: { bundle_id: string; name: string; team_id: string; app_store_id?: number; }; layout: { caption?: string; image_subtitle?: string; image_title?: string; image_url?: string; subcaption?: string; trailing_caption?: string; trailing_subcaption?: string; }; reactions: object[]; type: 'imessage_app'; url: string; fallback_text?: string; } | { reactions: object[]; type: 'app_clip'; value: string; description?: string; image_url?: string; title?: string; }[]; preferred_service?: 'iMessage' | 'SMS' | 'RCS'; read_at?: string; reconciled_at?: string; reply_to?: { message_id: string; part_index?: number; }; sent_at?: string; service?: 'iMessage' | 'SMS' | 'RCS'; }`\n\n - `id: string`\n - `chat_id: string`\n - `created_at: string`\n - `delivery_status: 'pending' | 'queued' | 'sent' | 'delivered' | 'received' | 'read' | 'failed'`\n - `is_delivered: boolean`\n - `is_from_me: boolean`\n - `is_read: boolean`\n - `updated_at: string`\n - `delivered_at?: string`\n - `effect?: { name?: string; type?: 'screen' | 'bubble'; }`\n - `from?: string`\n - `from_handle?: { id: string; handle: string; joined_at: string; service: 'iMessage' | 'SMS' | 'RCS'; is_me?: boolean; left_at?: string; status?: 'active' | 'left' | 'removed'; }`\n - `parts?: { reactions: { handle: chat_handle; is_me: boolean; type: reaction_type; custom_emoji?: string; sticker?: object; }[]; type: 'text'; value: string; mention?: string; mention_range?: number[]; mentions?: { handle: string; is_me: boolean; range: number[]; }[]; text_decorations?: { range: number[]; animation?: 'big' | 'small' | 'shake' | 'nod' | 'explode' | 'ripple' | 'bloom' | 'jitter'; style?: 'bold' | 'italic' | 'strikethrough' | 'underline'; }[]; } | { id: string; filename: string; mime_type: string; reactions: { handle: chat_handle; is_me: boolean; type: reaction_type; custom_emoji?: string; sticker?: object; }[]; size_bytes: number; type: 'media'; url: string; } | { reactions: { handle: chat_handle; is_me: boolean; type: reaction_type; custom_emoji?: string; sticker?: object; }[]; type: 'link'; value: string; } | { app: { bundle_id: string; name: string; team_id: string; app_store_id?: number; }; layout: { caption?: string; image_subtitle?: string; image_title?: string; image_url?: string; subcaption?: string; trailing_caption?: string; trailing_subcaption?: string; }; reactions: { handle: object; is_me: boolean; type: 'love' | 'like' | 'dislike' | 'laugh' | 'emphasize' | 'question' | 'custom' | 'sticker'; custom_emoji?: string; sticker?: { file_name?: string; height?: number; mime_type?: string; url?: string; width?: number; }; }[]; type: 'imessage_app'; url: string; fallback_text?: string; } | { reactions: { handle: object; is_me: boolean; type: 'love' | 'like' | 'dislike' | 'laugh' | 'emphasize' | 'question' | 'custom' | 'sticker'; custom_emoji?: string; sticker?: { file_name?: string; height?: number; mime_type?: string; url?: string; width?: number; }; }[]; type: 'app_clip'; value: string; description?: string; image_url?: string; title?: string; }[]`\n - `preferred_service?: 'iMessage' | 'SMS' | 'RCS'`\n - `read_at?: string`\n - `reconciled_at?: string`\n - `reply_to?: { message_id: string; part_index?: number; }`\n - `sent_at?: string`\n - `service?: 'iMessage' | 'SMS' | 'RCS'`\n\n### Example\n\n```typescript\nimport LinqAPIV3 from '@linqapp/sdk';\n\nconst client = new LinqAPIV3();\n\nconst message = await client.messages.retrieve('69a37c7d-af4f-4b5e-af42-e28e98ce873a');\n\nconsole.log(message);\n```",
688
688
  perLanguage: {
689
689
  go: {
690
690
  method: 'client.Messages.Get',
@@ -776,7 +776,7 @@ const EMBEDDED_METHODS = [
776
776
  qualified: 'client.messages.update',
777
777
  params: ['messageId: string;', 'text: string;', 'part_index?: number;'],
778
778
  response: "{ id: string; chat_id: string; created_at: string; delivery_status: 'pending' | 'queued' | 'sent' | 'delivered' | 'received' | 'read' | 'failed'; is_delivered: boolean; is_from_me: boolean; is_read: boolean; updated_at: string; delivered_at?: string; effect?: object; from?: string; from_handle?: object; parts?: object | object | object | { app: object; layout: object; reactions: reaction[]; type: 'imessage_app'; url: string; fallback_text?: string; } | { reactions: reaction[]; type: 'app_clip'; value: string; description?: string; image_url?: string; title?: string; }[]; preferred_service?: 'iMessage' | 'SMS' | 'RCS'; read_at?: string; reconciled_at?: string; reply_to?: object; sent_at?: string; service?: 'iMessage' | 'SMS' | 'RCS'; }",
779
- markdown: "## update\n\n`client.messages.update(messageId: string, text: string, part_index?: number): { id: string; chat_id: string; created_at: string; delivery_status: 'pending' | 'queued' | 'sent' | 'delivered' | 'received' | 'read' | 'failed'; is_delivered: boolean; is_from_me: boolean; is_read: boolean; updated_at: string; delivered_at?: string; effect?: message_effect; from?: string; from_handle?: chat_handle; parts?: text_part_response | media_part_response | link_part_response | object | object[]; preferred_service?: service_type; read_at?: string; reconciled_at?: string; reply_to?: reply_to; sent_at?: string; service?: service_type; }`\n\n**patch** `/v3/messages/{messageId}`\n\nEdit the text content of a specific part of a previously sent message.\n\n**Note:** A message can be edited up to 5 times, and only within 15 minutes of when it was originally sent.\n\n\n### Parameters\n\n- `messageId: string`\n\n- `text: string`\n New text content for the message part\n\n- `part_index?: number`\n Index of the message part to edit. Defaults to 0.\n\n### Returns\n\n- `{ id: string; chat_id: string; created_at: string; delivery_status: 'pending' | 'queued' | 'sent' | 'delivered' | 'received' | 'read' | 'failed'; is_delivered: boolean; is_from_me: boolean; is_read: boolean; updated_at: string; delivered_at?: string; effect?: { name?: string; type?: 'screen' | 'bubble'; }; from?: string; from_handle?: { id: string; handle: string; joined_at: string; service: service_type; is_me?: boolean; left_at?: string; status?: 'active' | 'left' | 'removed'; }; parts?: { reactions: reaction[]; type: 'text'; value: string; mention?: string; mention_range?: number[]; text_decorations?: text_decoration[]; } | { id: string; filename: string; mime_type: string; reactions: reaction[]; size_bytes: number; type: 'media'; url: string; } | { reactions: reaction[]; type: 'link'; value: string; } | { app: { bundle_id: string; name: string; team_id: string; app_store_id?: number; }; layout: { caption?: string; image_subtitle?: string; image_title?: string; image_url?: string; subcaption?: string; trailing_caption?: string; trailing_subcaption?: string; }; reactions: object[]; type: 'imessage_app'; url: string; fallback_text?: string; } | { reactions: object[]; type: 'app_clip'; value: string; description?: string; image_url?: string; title?: string; }[]; preferred_service?: 'iMessage' | 'SMS' | 'RCS'; read_at?: string; reconciled_at?: string; reply_to?: { message_id: string; part_index?: number; }; sent_at?: string; service?: 'iMessage' | 'SMS' | 'RCS'; }`\n\n - `id: string`\n - `chat_id: string`\n - `created_at: string`\n - `delivery_status: 'pending' | 'queued' | 'sent' | 'delivered' | 'received' | 'read' | 'failed'`\n - `is_delivered: boolean`\n - `is_from_me: boolean`\n - `is_read: boolean`\n - `updated_at: string`\n - `delivered_at?: string`\n - `effect?: { name?: string; type?: 'screen' | 'bubble'; }`\n - `from?: string`\n - `from_handle?: { id: string; handle: string; joined_at: string; service: 'iMessage' | 'SMS' | 'RCS'; is_me?: boolean; left_at?: string; status?: 'active' | 'left' | 'removed'; }`\n - `parts?: { reactions: { handle: chat_handle; is_me: boolean; type: reaction_type; custom_emoji?: string; sticker?: object; }[]; type: 'text'; value: string; mention?: string; mention_range?: number[]; text_decorations?: { range: number[]; animation?: 'big' | 'small' | 'shake' | 'nod' | 'explode' | 'ripple' | 'bloom' | 'jitter'; style?: 'bold' | 'italic' | 'strikethrough' | 'underline'; }[]; } | { id: string; filename: string; mime_type: string; reactions: { handle: chat_handle; is_me: boolean; type: reaction_type; custom_emoji?: string; sticker?: object; }[]; size_bytes: number; type: 'media'; url: string; } | { reactions: { handle: chat_handle; is_me: boolean; type: reaction_type; custom_emoji?: string; sticker?: object; }[]; type: 'link'; value: string; } | { app: { bundle_id: string; name: string; team_id: string; app_store_id?: number; }; layout: { caption?: string; image_subtitle?: string; image_title?: string; image_url?: string; subcaption?: string; trailing_caption?: string; trailing_subcaption?: string; }; reactions: { handle: object; is_me: boolean; type: 'love' | 'like' | 'dislike' | 'laugh' | 'emphasize' | 'question' | 'custom' | 'sticker'; custom_emoji?: string; sticker?: { file_name?: string; height?: number; mime_type?: string; url?: string; width?: number; }; }[]; type: 'imessage_app'; url: string; fallback_text?: string; } | { reactions: { handle: object; is_me: boolean; type: 'love' | 'like' | 'dislike' | 'laugh' | 'emphasize' | 'question' | 'custom' | 'sticker'; custom_emoji?: string; sticker?: { file_name?: string; height?: number; mime_type?: string; url?: string; width?: number; }; }[]; type: 'app_clip'; value: string; description?: string; image_url?: string; title?: string; }[]`\n - `preferred_service?: 'iMessage' | 'SMS' | 'RCS'`\n - `read_at?: string`\n - `reconciled_at?: string`\n - `reply_to?: { message_id: string; part_index?: number; }`\n - `sent_at?: string`\n - `service?: 'iMessage' | 'SMS' | 'RCS'`\n\n### Example\n\n```typescript\nimport LinqAPIV3 from '@linqapp/sdk';\n\nconst client = new LinqAPIV3();\n\nconst message = await client.messages.update('69a37c7d-af4f-4b5e-af42-e28e98ce873a', { text: 'This is the edited message content' });\n\nconsole.log(message);\n```",
779
+ markdown: "## update\n\n`client.messages.update(messageId: string, text: string, part_index?: number): { id: string; chat_id: string; created_at: string; delivery_status: 'pending' | 'queued' | 'sent' | 'delivered' | 'received' | 'read' | 'failed'; is_delivered: boolean; is_from_me: boolean; is_read: boolean; updated_at: string; delivered_at?: string; effect?: message_effect; from?: string; from_handle?: chat_handle; parts?: text_part_response | media_part_response | link_part_response | object | object[]; preferred_service?: service_type; read_at?: string; reconciled_at?: string; reply_to?: reply_to; sent_at?: string; service?: service_type; }`\n\n**patch** `/v3/messages/{messageId}`\n\nEdit the text content of a specific part of a previously sent message.\n\n**Note:** A message can be edited up to 5 times, and only within 15 minutes of when it was originally sent.\n\n\n### Parameters\n\n- `messageId: string`\n\n- `text: string`\n New text content for the message part\n\n- `part_index?: number`\n Index of the message part to edit. Defaults to 0.\n\n### Returns\n\n- `{ id: string; chat_id: string; created_at: string; delivery_status: 'pending' | 'queued' | 'sent' | 'delivered' | 'received' | 'read' | 'failed'; is_delivered: boolean; is_from_me: boolean; is_read: boolean; updated_at: string; delivered_at?: string; effect?: { name?: string; type?: 'screen' | 'bubble'; }; from?: string; from_handle?: { id: string; handle: string; joined_at: string; service: service_type; is_me?: boolean; left_at?: string; status?: 'active' | 'left' | 'removed'; }; parts?: { reactions: reaction[]; type: 'text'; value: string; mention?: string; mention_range?: number[]; mentions?: object[]; text_decorations?: text_decoration[]; } | { id: string; filename: string; mime_type: string; reactions: reaction[]; size_bytes: number; type: 'media'; url: string; } | { reactions: reaction[]; type: 'link'; value: string; } | { app: { bundle_id: string; name: string; team_id: string; app_store_id?: number; }; layout: { caption?: string; image_subtitle?: string; image_title?: string; image_url?: string; subcaption?: string; trailing_caption?: string; trailing_subcaption?: string; }; reactions: object[]; type: 'imessage_app'; url: string; fallback_text?: string; } | { reactions: object[]; type: 'app_clip'; value: string; description?: string; image_url?: string; title?: string; }[]; preferred_service?: 'iMessage' | 'SMS' | 'RCS'; read_at?: string; reconciled_at?: string; reply_to?: { message_id: string; part_index?: number; }; sent_at?: string; service?: 'iMessage' | 'SMS' | 'RCS'; }`\n\n - `id: string`\n - `chat_id: string`\n - `created_at: string`\n - `delivery_status: 'pending' | 'queued' | 'sent' | 'delivered' | 'received' | 'read' | 'failed'`\n - `is_delivered: boolean`\n - `is_from_me: boolean`\n - `is_read: boolean`\n - `updated_at: string`\n - `delivered_at?: string`\n - `effect?: { name?: string; type?: 'screen' | 'bubble'; }`\n - `from?: string`\n - `from_handle?: { id: string; handle: string; joined_at: string; service: 'iMessage' | 'SMS' | 'RCS'; is_me?: boolean; left_at?: string; status?: 'active' | 'left' | 'removed'; }`\n - `parts?: { reactions: { handle: chat_handle; is_me: boolean; type: reaction_type; custom_emoji?: string; sticker?: object; }[]; type: 'text'; value: string; mention?: string; mention_range?: number[]; mentions?: { handle: string; is_me: boolean; range: number[]; }[]; text_decorations?: { range: number[]; animation?: 'big' | 'small' | 'shake' | 'nod' | 'explode' | 'ripple' | 'bloom' | 'jitter'; style?: 'bold' | 'italic' | 'strikethrough' | 'underline'; }[]; } | { id: string; filename: string; mime_type: string; reactions: { handle: chat_handle; is_me: boolean; type: reaction_type; custom_emoji?: string; sticker?: object; }[]; size_bytes: number; type: 'media'; url: string; } | { reactions: { handle: chat_handle; is_me: boolean; type: reaction_type; custom_emoji?: string; sticker?: object; }[]; type: 'link'; value: string; } | { app: { bundle_id: string; name: string; team_id: string; app_store_id?: number; }; layout: { caption?: string; image_subtitle?: string; image_title?: string; image_url?: string; subcaption?: string; trailing_caption?: string; trailing_subcaption?: string; }; reactions: { handle: object; is_me: boolean; type: 'love' | 'like' | 'dislike' | 'laugh' | 'emphasize' | 'question' | 'custom' | 'sticker'; custom_emoji?: string; sticker?: { file_name?: string; height?: number; mime_type?: string; url?: string; width?: number; }; }[]; type: 'imessage_app'; url: string; fallback_text?: string; } | { reactions: { handle: object; is_me: boolean; type: 'love' | 'like' | 'dislike' | 'laugh' | 'emphasize' | 'question' | 'custom' | 'sticker'; custom_emoji?: string; sticker?: { file_name?: string; height?: number; mime_type?: string; url?: string; width?: number; }; }[]; type: 'app_clip'; value: string; description?: string; image_url?: string; title?: string; }[]`\n - `preferred_service?: 'iMessage' | 'SMS' | 'RCS'`\n - `read_at?: string`\n - `reconciled_at?: string`\n - `reply_to?: { message_id: string; part_index?: number; }`\n - `sent_at?: string`\n - `service?: 'iMessage' | 'SMS' | 'RCS'`\n\n### Example\n\n```typescript\nimport LinqAPIV3 from '@linqapp/sdk';\n\nconst client = new LinqAPIV3();\n\nconst message = await client.messages.update('69a37c7d-af4f-4b5e-af42-e28e98ce873a', { text: 'This is the edited message content' });\n\nconsole.log(message);\n```",
780
780
  perLanguage: {
781
781
  go: {
782
782
  method: 'client.Messages.Update',
@@ -812,7 +812,7 @@ const EMBEDDED_METHODS = [
812
812
  'url?: string;',
813
813
  ],
814
814
  response: "{ chat_id: string; message: { id: string; created_at: string; delivery_status: 'pending' | 'queued' | 'sent' | 'delivered' | 'received' | 'read' | 'failed'; is_read: boolean; parts: text_part_response | media_part_response | link_part_response | object | object[]; sent_at: string; delivered_at?: string; effect?: message_effect; from_handle?: chat_handle; preferred_service?: service_type; reply_to?: reply_to; service?: service_type; }; }",
815
- markdown: "## update_app_card\n\n`client.messages.updateAppCard(messageId: string, layout: { caption?: string; image_subtitle?: string; image_title?: string; image_url?: string; subcaption?: string; trailing_caption?: string; trailing_subcaption?: string; }, experience?: { action: string; name: string; params?: object; }, fallback_text?: string, interactive?: boolean, url?: string): { chat_id: string; message: sent_message; }`\n\n**post** `/v3/messages/{messageId}/update`\n\nReplaces a previously delivered `imessage_app` card on the recipient's screen with new\ncontent, instead of posting a new bubble (like a game move redrawing the board).\n\nThe update is delivered as a **new message** with its own id and delivery lifecycle\n(`message.sent` / `message.delivered` / `message.failed` webhooks fire for the new id).\nTo update the card again, reference the message id returned by this call.\n\nConstraints:\n- The referenced message must be an `imessage_app` card sent by you (`400` otherwise —\n inbound cards cannot be updated).\n- The referenced card must already be delivered (`409` otherwise — retry after the\n `message.delivered` webhook for it).\n- The app identity (`team_id`, `bundle_id`, name) is inherited from the original card and\n cannot change; only `url`, `fallback_text`, and `layout` are replaced.\n- iMessage-only, like all app cards.\n- Concurrent updates against the same card are not serialized server-side; the last one\n delivered wins on the recipient's screen. Serialize updates by always referencing the\n message id returned by the previous call.\n\n\n### Parameters\n\n- `messageId: string`\n\n- `layout: { caption?: string; image_subtitle?: string; image_title?: string; image_url?: string; subcaption?: string; trailing_caption?: string; trailing_subcaption?: string; }`\n Visible layout of the card. At least one of\n`caption`, `subcaption`, `trailing_caption`, `trailing_subcaption`, or `image_url` must be\nset, otherwise the card renders as an empty bubble.\n\n`image_url` displays a preview image at the top of the card. The image renders on the\nrecipient's card whether or not they have your app installed. The small icon beside the\ncaption is the app's own icon and is not settable here.\n\n`* Note - requires a trusted chat w/ inbound activity`\n\n`image_title` and `image_subtitle` render as text overlaid on the image (title bold, subtitle\nbeneath it). They only appear when `image_url` is set — without an image there is nothing to\noverlay — so setting either without `image_url` is rejected.\n\n - `caption?: string`\n Primary label, top-left and bold.\n - `image_subtitle?: string`\n Text shown below `image_title`, overlaid on the card image. Requires `image_url`.\n - `image_title?: string`\n Bold text overlaid on the card image. Requires `image_url` (rejected without it).\n - `image_url?: string`\n URL of an image (JPEG, PNG, HEIF, or WebP) to display as the card's preview image; an unreachable or non-image URL returns a validation error. Renders for all recipients regardless of whether they have the app. Note - requires a trusted chat w/ inbound activity. In responses, this is the re-hosted `cdn.linqapp.com` copy of the image you supplied, not your original URL.\n - `subcaption?: string`\n Secondary label, below `caption` on the left.\n - `trailing_caption?: string`\n Label shown top-right.\n - `trailing_subcaption?: string`\n Label shown below `trailing_caption`, on the right.\n\n- `experience?: { action: string; name: string; params?: object; }`\n Invokes an action on an experience — a third party that renders inside\nLinq's iMessage app. Linq resolves the recipient's connection, mints any\nsession the action needs, composes the card and sends it; none of that\nis visible to you.\n\nCall `GET /v3/experiences/{experience}` for the actions you may invoke\nand the fields each accepts.\n\n - `action: string`\n Which of its actions, e.g. `attach_card`.\n - `name: string`\n The experience to invoke, e.g. `agentcard` or `agentpay`.\n - `params?: object`\n Values for the fields this action exposes. Keys are exactly the\nfield names listed for the action — no mapping, no nesting.\n\nDisplay copy only, except a `url`-type field — that value sets the\ndestination, and must be an absolute `https` URL.\n\nSome fields are read rather than sent: `agentpay`'s\n`request_payment` takes only a `checkout_url` and resolves the\namount and reason from that payment request itself, so the card\ncannot state a figure the checkout will not charge.\n\n\n- `fallback_text?: string`\n Text shown on surfaces that cannot render the card (notifications, lock screen). Defaults\nto the caption when omitted.\n\n\n- `interactive?: boolean`\n Whether the updated card renders as your app's interactive balloon for recipients who\nhave your iMessage app installed. `true` (default) lets your installed extension draw its\nlive view; `false` always shows the static `layout` card. Recipients without your app\nalways see the static card regardless of this flag.\n\nDefaults to `true` when omitted — it is **not** inherited from the original card. To keep a\ncard static across updates, re-send `interactive: false` on each update.\n\n\n- `url?: string`\n URL the recipient's app opens when they tap the updated card.\n\nMutually exclusive with `experience` and `raw_payload_data`.\n\n\n### Returns\n\n- `{ chat_id: string; message: { id: string; created_at: string; delivery_status: 'pending' | 'queued' | 'sent' | 'delivered' | 'received' | 'read' | 'failed'; is_read: boolean; parts: text_part_response | media_part_response | link_part_response | object | object[]; sent_at: string; delivered_at?: string; effect?: message_effect; from_handle?: chat_handle; preferred_service?: service_type; reply_to?: reply_to; service?: service_type; }; }`\n Response for sending a message to a chat\n\n - `chat_id: string`\n - `message: { id: string; created_at: string; delivery_status: 'pending' | 'queued' | 'sent' | 'delivered' | 'received' | 'read' | 'failed'; is_read: boolean; parts: { reactions: reaction[]; type: 'text'; value: string; mention?: string; mention_range?: number[]; text_decorations?: text_decoration[]; } | { id: string; filename: string; mime_type: string; reactions: reaction[]; size_bytes: number; type: 'media'; url: string; } | { reactions: reaction[]; type: 'link'; value: string; } | { app: { bundle_id: string; name: string; team_id: string; app_store_id?: number; }; layout: { caption?: string; image_subtitle?: string; image_title?: string; image_url?: string; subcaption?: string; trailing_caption?: string; trailing_subcaption?: string; }; reactions: object[]; type: 'imessage_app'; url: string; fallback_text?: string; } | { reactions: object[]; type: 'app_clip'; value: string; description?: string; image_url?: string; title?: string; }[]; sent_at: string; delivered_at?: string; effect?: { name?: string; type?: 'screen' | 'bubble'; }; from_handle?: { id: string; handle: string; joined_at: string; service: service_type; is_me?: boolean; left_at?: string; status?: 'active' | 'left' | 'removed'; }; preferred_service?: 'iMessage' | 'SMS' | 'RCS'; reply_to?: { message_id: string; part_index?: number; }; service?: 'iMessage' | 'SMS' | 'RCS'; }`\n\n### Example\n\n```typescript\nimport LinqAPIV3 from '@linqapp/sdk';\n\nconst client = new LinqAPIV3();\n\nconst response = await client.messages.updateAppCard('69a37c7d-af4f-4b5e-af42-e28e98ce873a', { layout: {} });\n\nconsole.log(response);\n```",
815
+ markdown: "## update_app_card\n\n`client.messages.updateAppCard(messageId: string, layout: { caption?: string; image_subtitle?: string; image_title?: string; image_url?: string; subcaption?: string; trailing_caption?: string; trailing_subcaption?: string; }, experience?: { action: string; name: string; params?: object; }, fallback_text?: string, interactive?: boolean, url?: string): { chat_id: string; message: sent_message; }`\n\n**post** `/v3/messages/{messageId}/update`\n\nReplaces a previously delivered `imessage_app` card on the recipient's screen with new\ncontent, instead of posting a new bubble (like a game move redrawing the board).\n\nThe update is delivered as a **new message** with its own id and delivery lifecycle\n(`message.sent` / `message.delivered` / `message.failed` webhooks fire for the new id).\nTo update the card again, reference the message id returned by this call.\n\nConstraints:\n- The referenced message must be an `imessage_app` card sent by you (`400` otherwise —\n inbound cards cannot be updated).\n- The referenced card must already be delivered (`409` otherwise — retry after the\n `message.delivered` webhook for it).\n- The app identity (`team_id`, `bundle_id`, name) is inherited from the original card and\n cannot change; only `url`, `fallback_text`, and `layout` are replaced.\n- iMessage-only, like all app cards.\n- Concurrent updates against the same card are not serialized server-side; the last one\n delivered wins on the recipient's screen. Serialize updates by always referencing the\n message id returned by the previous call.\n\n\n### Parameters\n\n- `messageId: string`\n\n- `layout: { caption?: string; image_subtitle?: string; image_title?: string; image_url?: string; subcaption?: string; trailing_caption?: string; trailing_subcaption?: string; }`\n Visible layout of the card. At least one of\n`caption`, `subcaption`, `trailing_caption`, `trailing_subcaption`, or `image_url` must be\nset, otherwise the card renders as an empty bubble.\n\n`image_url` displays a preview image at the top of the card. The image renders on the\nrecipient's card whether or not they have your app installed. The small icon beside the\ncaption is the app's own icon and is not settable here.\n\n`* Note - requires a trusted chat w/ inbound activity`\n\n`image_title` and `image_subtitle` render as text overlaid on the image (title bold, subtitle\nbeneath it). They only appear when `image_url` is set — without an image there is nothing to\noverlay — so setting either without `image_url` is rejected.\n\n - `caption?: string`\n Primary label, top-left and bold.\n - `image_subtitle?: string`\n Text shown below `image_title`, overlaid on the card image. Requires `image_url`.\n - `image_title?: string`\n Bold text overlaid on the card image. Requires `image_url` (rejected without it).\n - `image_url?: string`\n URL of an image (JPEG, PNG, HEIF, or WebP) to display as the card's preview image; an unreachable or non-image URL returns a validation error. Renders for all recipients regardless of whether they have the app. Note - requires a trusted chat w/ inbound activity. In responses, this is the re-hosted `cdn.linqapp.com` copy of the image you supplied, not your original URL.\n - `subcaption?: string`\n Secondary label, below `caption` on the left.\n - `trailing_caption?: string`\n Label shown top-right.\n - `trailing_subcaption?: string`\n Label shown below `trailing_caption`, on the right.\n\n- `experience?: { action: string; name: string; params?: object; }`\n Invokes an action on an experience — a third party that renders inside\nLinq's iMessage app. Linq resolves the recipient's connection, mints any\nsession the action needs, composes the card and sends it; none of that\nis visible to you.\n\nCall `GET /v3/experiences/{experience}` for the actions you may invoke\nand the fields each accepts.\n\n - `action: string`\n Which of its actions, e.g. `attach_card`.\n - `name: string`\n The experience to invoke, e.g. `agentcard` or `agentpay`.\n - `params?: object`\n Values for the fields this action exposes. Keys are exactly the\nfield names listed for the action — no mapping, no nesting.\n\nDisplay copy only, except a `url`-type field — that value sets the\ndestination, and must be an absolute `https` URL.\n\nSome fields are read rather than sent: `agentpay`'s\n`request_payment` takes only a `checkout_url` and resolves the\namount and reason from that payment request itself, so the card\ncannot state a figure the checkout will not charge.\n\n\n- `fallback_text?: string`\n Text shown on surfaces that cannot render the card (notifications, lock screen). Defaults\nto the caption when omitted.\n\n\n- `interactive?: boolean`\n Whether the updated card renders as your app's interactive balloon for recipients who\nhave your iMessage app installed. `true` (default) lets your installed extension draw its\nlive view; `false` always shows the static `layout` card. Recipients without your app\nalways see the static card regardless of this flag.\n\nDefaults to `true` when omitted — it is **not** inherited from the original card. To keep a\ncard static across updates, re-send `interactive: false` on each update.\n\n\n- `url?: string`\n URL the recipient's app opens when they tap the updated card.\n\nMutually exclusive with `experience` and `raw_payload_data`.\n\n\n### Returns\n\n- `{ chat_id: string; message: { id: string; created_at: string; delivery_status: 'pending' | 'queued' | 'sent' | 'delivered' | 'received' | 'read' | 'failed'; is_read: boolean; parts: text_part_response | media_part_response | link_part_response | object | object[]; sent_at: string; delivered_at?: string; effect?: message_effect; from_handle?: chat_handle; preferred_service?: service_type; reply_to?: reply_to; service?: service_type; }; }`\n Response for sending a message to a chat\n\n - `chat_id: string`\n - `message: { id: string; created_at: string; delivery_status: 'pending' | 'queued' | 'sent' | 'delivered' | 'received' | 'read' | 'failed'; is_read: boolean; parts: { reactions: reaction[]; type: 'text'; value: string; mention?: string; mention_range?: number[]; mentions?: object[]; text_decorations?: text_decoration[]; } | { id: string; filename: string; mime_type: string; reactions: reaction[]; size_bytes: number; type: 'media'; url: string; } | { reactions: reaction[]; type: 'link'; value: string; } | { app: { bundle_id: string; name: string; team_id: string; app_store_id?: number; }; layout: { caption?: string; image_subtitle?: string; image_title?: string; image_url?: string; subcaption?: string; trailing_caption?: string; trailing_subcaption?: string; }; reactions: object[]; type: 'imessage_app'; url: string; fallback_text?: string; } | { reactions: object[]; type: 'app_clip'; value: string; description?: string; image_url?: string; title?: string; }[]; sent_at: string; delivered_at?: string; effect?: { name?: string; type?: 'screen' | 'bubble'; }; from_handle?: { id: string; handle: string; joined_at: string; service: service_type; is_me?: boolean; left_at?: string; status?: 'active' | 'left' | 'removed'; }; preferred_service?: 'iMessage' | 'SMS' | 'RCS'; reply_to?: { message_id: string; part_index?: number; }; service?: 'iMessage' | 'SMS' | 'RCS'; }`\n\n### Example\n\n```typescript\nimport LinqAPIV3 from '@linqapp/sdk';\n\nconst client = new LinqAPIV3();\n\nconst response = await client.messages.updateAppCard('69a37c7d-af4f-4b5e-af42-e28e98ce873a', { layout: {} });\n\nconsole.log(response);\n```",
816
816
  perLanguage: {
817
817
  go: {
818
818
  method: 'client.Messages.UpdateAppCard',
@@ -1 +1 @@
1
- {"version":3,"file":"local-docs-search.js","sourceRoot":"","sources":["src/local-docs-search.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"local-docs-search.js","sourceRoot":"","sources":["src/local-docs-search.ts"],"names":[],"mappings":"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"}