@linqapp/sdk-mcp 0.42.2 → 0.43.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.
- package/local-docs-search.js +4 -4
- package/local-docs-search.js.map +1 -1
- package/local-docs-search.mjs +4 -4
- package/local-docs-search.mjs.map +1 -1
- package/package.json +2 -2
- package/server.js +1 -1
- package/server.mjs +1 -1
- package/src/local-docs-search.ts +4 -4
- package/src/server.ts +1 -1
package/local-docs-search.js
CHANGED
|
@@ -48,7 +48,7 @@ const EMBEDDED_METHODS = [
|
|
|
48
48
|
endpoint: '/v3/chats',
|
|
49
49
|
httpMethod: 'post',
|
|
50
50
|
summary: 'Create a new chat',
|
|
51
|
-
description: 'Create a new chat with specified participants and send an initial message.\nThe initial message is required when creating a chat.\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.
|
|
51
|
+
description: 'Create a new chat with specified participants and send an initial message.\nThe initial message is required when creating a chat.\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## First-Message Link Restriction\n\nTo protect sender deliverability, the **first outbound message** of a new chat cannot be a link.\nThe request is rejected with `400` (error code `1005`) when:\n\n- The message contains a `link` part (explicit rich-preview link), or\n- Any `text` part contains a URL.\n\nThis rule applies only to `POST /v3/chats`. Follow-up messages on an existing chat\n(`POST /v3/chats/{chatId}/messages`) are not subject to this restriction.\n\n## Reusing an Existing Chat\n\nChats are keyed on the `from` line plus the exact set of `to` handles. Repeating this\nrequest with the same `from` and `to` returns the **existing** chat and sends the message\ninto it instead of starting a second conversation.\n\nA group chat that has a `display_name` is excluded from that matching. To run several\nparallel groups over the same participants, name each one with `PUT /v3/chats/{chatId}`\nbefore creating the next: the following `POST /v3/chats` with the same `to` then returns a\nnew, separate `chat_id`. Two other cases also produce a new chat instead of reusing one —\nthe participant set changed (a participant was added or removed), or the `from` line left\nthe group.\n\nWhenever the response is a new chat, the first-message rules above apply to that request:\nno link in the first message, and no `reply_to` or message effect. To send into a chat you\nalready know, use `POST /v3/chats/{chatId}/messages` with its `chat_id`.\n',
|
|
52
52
|
stainlessPath: '(resource) chats > (method) create',
|
|
53
53
|
qualified: 'client.chats.create',
|
|
54
54
|
params: [
|
|
@@ -58,7 +58,7 @@ const EMBEDDED_METHODS = [
|
|
|
58
58
|
'override_optout?: boolean;',
|
|
59
59
|
],
|
|
60
60
|
response: "{ chat: { id: string; display_name: string; handles: object[]; health_status: { doc_url: string; status: 'HEALTHY' | 'AT_RISK' | 'CRITICAL' | 'OPTED_OUT'; updated_at: string; }; is_group: boolean; message: object; service: 'iMessage' | 'SMS' | 'RCS'; }; }",
|
|
61
|
-
markdown: "## create\n\n`client.chats.create(from: 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; }, to: string[], override_optout?: boolean): { chat: object; }`\n\n**post** `/v3/chats`\n\nCreate a new chat with specified participants and send an initial message.\nThe initial message is required when creating a chat.\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. Text decorations only render for iMessage recipients.\nFor SMS/RCS, text decorations are not applied.\n\n## First-Message Link Restriction\n\nTo protect sender deliverability, the **first outbound message** of a new chat cannot be a link.\nThe request is rejected with `400` (error code `1005`) when:\n\n- The message contains a `link` part (explicit rich-preview link), or\n- Any `text` part contains a URL.\n\nThis rule applies only to `POST /v3/chats`. Follow-up messages on an existing chat\n(`POST /v3/chats/{chatId}/messages`) are not subject to this restriction.\n\n## Reusing an Existing Chat\n\nChats are keyed on the `from` line plus the exact set of `to` handles. Repeating this\nrequest with the same `from` and `to` returns the **existing** chat and sends the message\ninto it instead of starting a second conversation.\n\nA group chat that has a `display_name` is excluded from that matching. To run several\nparallel groups over the same participants, name each one with `PUT /v3/chats/{chatId}`\nbefore creating the next: the following `POST /v3/chats` with the same `to` then returns a\nnew, separate `chat_id`. Two other cases also produce a new chat instead of reusing one —\nthe participant set changed (a participant was added or removed), or the `from` line left\nthe group.\n\nWhenever the response is a new chat, the first-message rules above apply to that request:\nno link in the first message, and no `reply_to` or message effect. To send into a chat you\nalready know, use `POST /v3/chats/{chatId}/messages` with its `chat_id`.\n\n\n### Parameters\n\n- `from: string`\n Sender phone number in E.164 format. Must be a phone number that the\nauthenticated partner has permission to send from.\n\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 Array of recipient handles (phone numbers in E.164 format or email addresses).\nFor individual chats, provide one recipient. For group chats, provide multiple.\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### Returns\n\n- `{ chat: { id: string; display_name: string; handles: object[]; health_status: { doc_url: string; status: 'HEALTHY' | 'AT_RISK' | 'CRITICAL' | 'OPTED_OUT'; updated_at: string; }; is_group: boolean; message: object; service: 'iMessage' | 'SMS' | 'RCS'; }; }`\n Response for creating a new chat with an initial message\n\n - `chat: { id: string; display_name: string; handles: { id: string; handle: string; joined_at: string; service: 'iMessage' | 'SMS' | 'RCS'; is_me?: boolean; left_at?: string; status?: 'active' | 'left' | 'removed'; }[]; health_status: { doc_url: string; status: 'HEALTHY' | 'AT_RISK' | 'CRITICAL' | 'OPTED_OUT'; updated_at: string; }; is_group: boolean; message: { id: string; created_at: string; delivery_status: 'pending' | 'queued' | 'sent' | 'delivered' | 'received' | 'read' | 'failed'; is_read: boolean; 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; }[]; sent_at: string; delivered_at?: string; effect?: object; from_handle?: object; preferred_service?: 'iMessage' | 'SMS' | 'RCS'; reply_to?: object; service?: 'iMessage' | 'SMS' | 'RCS'; }; service: 'iMessage' | 'SMS' | 'RCS'; }`\n\n### Example\n\n```typescript\nimport LinqAPIV3 from '@linqapp/sdk';\n\nconst client = new LinqAPIV3();\n\nconst chat = await client.chats.create({\n from: '+12052535597',\n message: {},\n to: ['+12052532136'],\n});\n\nconsole.log(chat);\n```",
|
|
61
|
+
markdown: "## create\n\n`client.chats.create(from: 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; }, to: string[], override_optout?: boolean): { chat: object; }`\n\n**post** `/v3/chats`\n\nCreate a new chat with specified participants and send an initial message.\nThe initial message is required when creating a chat.\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## First-Message Link Restriction\n\nTo protect sender deliverability, the **first outbound message** of a new chat cannot be a link.\nThe request is rejected with `400` (error code `1005`) when:\n\n- The message contains a `link` part (explicit rich-preview link), or\n- Any `text` part contains a URL.\n\nThis rule applies only to `POST /v3/chats`. Follow-up messages on an existing chat\n(`POST /v3/chats/{chatId}/messages`) are not subject to this restriction.\n\n## Reusing an Existing Chat\n\nChats are keyed on the `from` line plus the exact set of `to` handles. Repeating this\nrequest with the same `from` and `to` returns the **existing** chat and sends the message\ninto it instead of starting a second conversation.\n\nA group chat that has a `display_name` is excluded from that matching. To run several\nparallel groups over the same participants, name each one with `PUT /v3/chats/{chatId}`\nbefore creating the next: the following `POST /v3/chats` with the same `to` then returns a\nnew, separate `chat_id`. Two other cases also produce a new chat instead of reusing one —\nthe participant set changed (a participant was added or removed), or the `from` line left\nthe group.\n\nWhenever the response is a new chat, the first-message rules above apply to that request:\nno link in the first message, and no `reply_to` or message effect. To send into a chat you\nalready know, use `POST /v3/chats/{chatId}/messages` with its `chat_id`.\n\n\n### Parameters\n\n- `from: string`\n Sender phone number in E.164 format. Must be a phone number that the\nauthenticated partner has permission to send from.\n\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 Array of recipient handles (phone numbers in E.164 format or email addresses).\nFor individual chats, provide one recipient. For group chats, provide multiple.\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### Returns\n\n- `{ chat: { id: string; display_name: string; handles: object[]; health_status: { doc_url: string; status: 'HEALTHY' | 'AT_RISK' | 'CRITICAL' | 'OPTED_OUT'; updated_at: string; }; is_group: boolean; message: object; service: 'iMessage' | 'SMS' | 'RCS'; }; }`\n Response for creating a new chat with an initial message\n\n - `chat: { id: string; display_name: string; handles: { id: string; handle: string; joined_at: string; service: 'iMessage' | 'SMS' | 'RCS'; is_me?: boolean; left_at?: string; status?: 'active' | 'left' | 'removed'; }[]; health_status: { doc_url: string; status: 'HEALTHY' | 'AT_RISK' | 'CRITICAL' | 'OPTED_OUT'; updated_at: string; }; is_group: boolean; message: { id: string; created_at: string; delivery_status: 'pending' | 'queued' | 'sent' | 'delivered' | 'received' | 'read' | 'failed'; is_read: boolean; 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; }[]; sent_at: string; delivered_at?: string; effect?: object; from_handle?: object; preferred_service?: 'iMessage' | 'SMS' | 'RCS'; reply_to?: object; service?: 'iMessage' | 'SMS' | 'RCS'; }; service: 'iMessage' | 'SMS' | 'RCS'; }`\n\n### Example\n\n```typescript\nimport LinqAPIV3 from '@linqapp/sdk';\n\nconst client = new LinqAPIV3();\n\nconst chat = await client.chats.create({\n from: '+12052535597',\n message: {},\n to: ['+12052532136'],\n});\n\nconsole.log(chat);\n```",
|
|
62
62
|
perLanguage: {
|
|
63
63
|
go: {
|
|
64
64
|
method: 'client.Chats.New',
|
|
@@ -402,7 +402,7 @@ const EMBEDDED_METHODS = [
|
|
|
402
402
|
endpoint: '/v3/chats/{chatId}/messages',
|
|
403
403
|
httpMethod: 'post',
|
|
404
404
|
summary: 'Send a message to an existing chat',
|
|
405
|
-
description: 'Send 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.
|
|
405
|
+
description: 'Send 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',
|
|
406
406
|
stainlessPath: '(resource) chats.messages > (method) send',
|
|
407
407
|
qualified: 'client.chats.messages.send',
|
|
408
408
|
params: [
|
|
@@ -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.
|
|
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; 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',
|
package/local-docs-search.js.map
CHANGED
|
@@ -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":";AAAA,sFAAsF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEtF,4DAAoC;AACpC,qDAAuC;AACvC,gDAAkC;AAClC,wCAAqC;AA8CrC,MAAM,gBAAgB,GAAkB;IACtC;QACE,IAAI,EAAE,QAAQ;QACd,QAAQ,EAAE,WAAW;QACrB,UAAU,EAAE,MAAM;QAClB,OAAO,EAAE,mBAAmB;QAC5B,WAAW,EACT,07FAA07F;QAC57F,aAAa,EAAE,oCAAoC;QACnD,SAAS,EAAE,qBAAqB;QAChC,MAAM,EAAE;YACN,eAAe;YACf,22BAA22B;YAC32B,eAAe;YACf,4BAA4B;SAC7B;QACD,QAAQ,EACN,iQAAiQ;QACnQ,QAAQ,EACN,4sVAA4sV;QAC9sV,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,kBAAkB;gBAC1B,OAAO,EACL,ssBAAssB;aACzsB;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,cAAc;gBACtB,OAAO,EACL,qZAAqZ;aACxZ;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,qBAAqB;gBAC7B,OAAO,EACL,2XAA2X;aAC9X;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,sgBAAsgB;aACzgB;SACF;KACF;IACD;QACE,IAAI,EAAE,YAAY;QAClB,QAAQ,EAAE,WAAW;QACrB,UAAU,EAAE,KAAK;QACjB,OAAO,EAAE,gBAAgB;QACzB,WAAW,EACT,m5BAAm5B;QACr5B,aAAa,EAAE,wCAAwC;QACvD,SAAS,EAAE,wBAAwB;QACnC,MAAM,EAAE,CAAC,kBAAkB,EAAE,gBAAgB,EAAE,iBAAiB,EAAE,cAAc,CAAC;QACjF,QAAQ,EACN,4cAA4c;QAC9c,QAAQ,EACN,wvGAAwvG;QAC1vG,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,wBAAwB;gBAChC,OAAO,EACL,mYAAmY;aACtY;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,kBAAkB;gBAC1B,OAAO,EACL,uOAAuO;aAC1O;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,wBAAwB;gBAChC,OAAO,EACL,2SAA2S;aAC9S;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,2GAA2G;aAC9G;SACF;KACF;IACD;QACE,IAAI,EAAE,UAAU;QAChB,QAAQ,EAAE,oBAAoB;QAC9B,UAAU,EAAE,KAAK;QACjB,OAAO,EAAE,kBAAkB;QAC3B,WAAW,EAAE,2CAA2C;QACxD,aAAa,EAAE,sCAAsC;QACrD,SAAS,EAAE,uBAAuB;QAClC,MAAM,EAAE,CAAC,iBAAiB,CAAC;QAC3B,QAAQ,EACN,4cAA4c;QAC9c,QAAQ,EACN,olDAAolD;QACtlD,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,kBAAkB;gBAC1B,OAAO,EACL,0YAA0Y;aAC7Y;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,gBAAgB;gBACxB,OAAO,EACL,8PAA8P;aACjQ;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,uBAAuB;gBAC/B,OAAO,EACL,qRAAqR;aACxR;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,oHAAoH;aACvH;SACF;KACF;IACD;QACE,IAAI,EAAE,QAAQ;QACd,QAAQ,EAAE,oBAAoB;QAC9B,UAAU,EAAE,KAAK;QACjB,OAAO,EAAE,eAAe;QACxB,WAAW,EACT,qPAAqP;QACvP,aAAa,EAAE,oCAAoC;QACnD,SAAS,EAAE,qBAAqB;QAChC,MAAM,EAAE,CAAC,iBAAiB,EAAE,wBAAwB,EAAE,2BAA2B,CAAC;QAClF,QAAQ,EAAE,wCAAwC;QAClD,QAAQ,EACN,u8BAAu8B;QACz8B,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,qBAAqB;gBAC7B,OAAO,EACL,6fAA6f;aAChgB;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,cAAc;gBACtB,OAAO,EACL,8SAA8S;aACjT;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,qBAAqB;gBAC7B,OAAO,EACL,kUAAkU;aACrU;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,wTAAwT;aAC3T;SACF;KACF;IACD;QACE,IAAI,EAAE,cAAc;QACpB,QAAQ,EAAE,yBAAyB;QACnC,UAAU,EAAE,MAAM;QAClB,OAAO,EAAE,mBAAmB;QAC5B,WAAW,EAAE,wCAAwC;QACrD,aAAa,EAAE,0CAA0C;QACzD,SAAS,EAAE,yBAAyB;QACpC,MAAM,EAAE,CAAC,iBAAiB,CAAC;QAC3B,QAAQ,EACN,oXAAoX;QACtX,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,yBAAyB;gBACjC,OAAO,EACL,iWAAiW;aACpW;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,oBAAoB;gBAC5B,OAAO,EACL,2OAA2O;aAC9O;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,yBAAyB;gBACjC,OAAO,EACL,iPAAiP;aACpP;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,yIAAyI;aAC5I;SACF;KACF;IACD;QACE,IAAI,EAAE,YAAY;QAClB,QAAQ,EAAE,0BAA0B;QACpC,UAAU,EAAE,MAAM;QAClB,OAAO,EAAE,oBAAoB;QAC7B,WAAW,EACT,0dAA0d;QAC5d,aAAa,EAAE,wCAAwC;QACvD,SAAS,EAAE,wBAAwB;QACnC,MAAM,EAAE,CAAC,iBAAiB,CAAC;QAC3B,QAAQ,EAAE,2DAA2D;QACrE,QAAQ,EACN,8hCAA8hC;QAChiC,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,wBAAwB;gBAChC,OAAO,EACL,6ZAA6Z;aACha;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,kBAAkB;gBAC1B,OAAO,EACL,8QAA8Q;aACjR;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,wBAAwB;gBAChC,OAAO,EACL,oSAAoS;aACvS;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,0IAA0I;aAC7I;SACF;KACF;IACD;QACE,IAAI,EAAE,oBAAoB;QAC1B,QAAQ,EAAE,uCAAuC;QACjD,UAAU,EAAE,MAAM;QAClB,OAAO,EAAE,qCAAqC;QAC9C,WAAW,EACT,+RAA+R;QACjS,aAAa,EAAE,gDAAgD;QAC/D,SAAS,EAAE,+BAA+B;QAC1C,MAAM,EAAE,CAAC,iBAAiB,CAAC;QAC3B,QAAQ,EACN,2oBAA2oB;QAC7oB,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,+BAA+B;gBACvC,OAAO,EACL,uWAAuW;aAC1W;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,0BAA0B;gBAClC,OAAO,EACL,iPAAiP;aACpP;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,+BAA+B;gBACvC,OAAO,EACL,uPAAuP;aAC1P;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,uJAAuJ;aAC1J;SACF;KACF;IACD;QACE,IAAI,EAAE,gBAAgB;QACtB,QAAQ,EAAE,8BAA8B;QACxC,UAAU,EAAE,MAAM;QAClB,OAAO,EAAE,6BAA6B;QACtC,WAAW,EACT,6cAA6c;QAC/c,aAAa,EAAE,4CAA4C;QAC3D,SAAS,EAAE,4BAA4B;QACvC,MAAM,EAAE;YACN,iBAAiB;YACjB,yBAAyB;YACzB,4BAA4B;YAC5B,0BAA0B;SAC3B;QACD,QAAQ,EACN,8WAA8W;QAChX,QAAQ,EACN,okFAAokF;QACtkF,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,4BAA4B;gBACpC,OAAO,EACL,0iBAA0iB;aAC7iB;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,sBAAsB;gBAC9B,OAAO,EACL,sVAAsV;aACzV;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,4BAA4B;gBACpC,OAAO,EACL,yWAAyW;aAC5W;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,+SAA+S;aAClT;SACF;KACF;IACD;QACE,IAAI,EAAE,KAAK;QACX,QAAQ,EAAE,iCAAiC;QAC3C,UAAU,EAAE,MAAM;QAClB,OAAO,EAAE,6BAA6B;QACtC,WAAW,EACT,mVAAmV;QACrV,aAAa,EAAE,8CAA8C;QAC7D,SAAS,EAAE,+BAA+B;QAC1C,MAAM,EAAE,CAAC,iBAAiB,EAAE,iBAAiB,CAAC;QAC9C,QAAQ,EAAE,2DAA2D;QACrE,QAAQ,EACN,ijCAAijC;QACnjC,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,+BAA+B;gBACvC,OAAO,EACL,igBAAigB;aACpgB;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,wBAAwB;gBAChC,OAAO,EACL,wTAAwT;aAC3T;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,+BAA+B;gBACvC,OAAO,EACL,4UAA4U;aAC/U;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,+OAA+O;aAClP;SACF;KACF;IACD;QACE,IAAI,EAAE,QAAQ;QACd,QAAQ,EAAE,iCAAiC;QAC3C,UAAU,EAAE,QAAQ;QACpB,OAAO,EAAE,kCAAkC;QAC3C,WAAW,EACT,yIAAyI;QAC3I,aAAa,EAAE,iDAAiD;QAChE,SAAS,EAAE,kCAAkC;QAC7C,MAAM,EAAE,CAAC,iBAAiB,EAAE,iBAAiB,CAAC;QAC9C,QAAQ,EAAE,2DAA2D;QACrE,QAAQ,EACN,23BAA23B;QAC73B,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,kCAAkC;gBAC1C,OAAO,EACL,6gBAA6gB;aAChhB;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,2BAA2B;gBACnC,OAAO,EACL,iUAAiU;aACpU;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,kCAAkC;gBAC1C,OAAO,EACL,qVAAqV;aACxV;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,mJAAmJ;aACtJ;SACF;KACF;IACD;QACE,IAAI,EAAE,OAAO;QACb,QAAQ,EAAE,2BAA2B;QACrC,UAAU,EAAE,MAAM;QAClB,OAAO,EAAE,wBAAwB;QACjC,WAAW,EACT,w/DAAw/D;QAC1/D,aAAa,EAAE,0CAA0C;QACzD,SAAS,EAAE,2BAA2B;QACtC,MAAM,EAAE,CAAC,iBAAiB,CAAC;QAC3B,QAAQ,EACN,m0EAAm0E;QACr0E,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,2BAA2B;gBACnC,OAAO,EACL,mWAAmW;aACtW;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,oBAAoB;gBAC5B,OAAO,EACL,2OAA2O;aAC9O;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,2BAA2B;gBACnC,OAAO,EACL,mPAAmP;aACtP;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,2IAA2I;aAC9I;SACF;KACF;IACD;QACE,IAAI,EAAE,MAAM;QACZ,QAAQ,EAAE,2BAA2B;QACrC,UAAU,EAAE,QAAQ;QACpB,OAAO,EAAE,uBAAuB;QAChC,WAAW,EACT,mZAAmZ;QACrZ,aAAa,EAAE,yCAAyC;QACxD,SAAS,EAAE,0BAA0B;QACrC,MAAM,EAAE,CAAC,iBAAiB,CAAC;QAC3B,QAAQ,EACN,6tBAA6tB;QAC/tB,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,0BAA0B;gBAClC,OAAO,EACL,kWAAkW;aACrW;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,mBAAmB;gBAC3B,OAAO,EACL,0OAA0O;aAC7O;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,0BAA0B;gBAClC,OAAO,EACL,kPAAkP;aACrP;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,6IAA6I;aAChJ;SACF;KACF;IACD;QACE,IAAI,EAAE,MAAM;QACZ,QAAQ,EAAE,6BAA6B;QACvC,UAAU,EAAE,MAAM;QAClB,OAAO,EAAE,oCAAoC;QAC7C,WAAW,EACT,6gDAA6gD;QAC/gD,aAAa,EAAE,2CAA2C;QAC1D,SAAS,EAAE,4BAA4B;QACvC,MAAM,EAAE;YACN,iBAAiB;YACjB,22BAA22B;YAC32B,4BAA4B;SAC7B;QACD,QAAQ,EACN,0bAA0b;QAC5b,QAAQ,EACN,mgTAAmgT;QACrgT,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,4BAA4B;gBACpC,OAAO,EACL,guBAAguB;aACnuB;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,qBAAqB;gBAC7B,OAAO,EACL,oZAAoZ;aACvZ;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,4BAA4B;gBACpC,OAAO,EACL,gXAAgX;aACnX;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,qaAAqa;aACxa;SACF;KACF;IACD;QACE,IAAI,EAAE,MAAM;QACZ,QAAQ,EAAE,6BAA6B;QACvC,UAAU,EAAE,KAAK;QACjB,OAAO,EAAE,0BAA0B;QACnC,WAAW,EAAE,mEAAmE;QAChF,aAAa,EAAE,2CAA2C;QAC1D,SAAS,EAAE,4BAA4B;QACvC,MAAM,EAAE,CAAC,iBAAiB,EAAE,kBAAkB,EAAE,iBAAiB,CAAC;QAClE,QAAQ,EACN,0uBAA0uB;QAC5uB,QAAQ,EACN,ukKAAukK;QACzkK,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,4BAA4B;gBACpC,OAAO,EACL,scAAsc;aACzc;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,qBAAqB;gBAC7B,OAAO,EACL,oSAAoS;aACvS;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,4BAA4B;gBACpC,OAAO,EACL,2VAA2V;aAC9V;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,6HAA6H;aAChI;SACF;KACF;IACD;QACE,IAAI,EAAE,SAAS;QACf,QAAQ,EAAE,qCAAqC;QAC/C,UAAU,EAAE,MAAM;QAClB,OAAO,EAAE,0BAA0B;QACnC,WAAW,EACT,gpBAAgpB;QAClpB,aAAa,EAAE,8CAA8C;QAC7D,SAAS,EAAE,+BAA+B;QAC1C,MAAM,EAAE,CAAC,iBAAiB,CAAC;QAC3B,QAAQ,EAAE,wCAAwC;QAClD,QAAQ,EACN,6sCAA6sC;QAC/sC,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,+BAA+B;gBACvC,OAAO,EACL,kcAAkc;aACrc;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,wBAAwB;gBAChC,OAAO,EACL,qTAAqT;aACxT;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,+BAA+B;gBACvC,OAAO,EACL,+UAA+U;aAClV;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,qJAAqJ;aACxJ;SACF;KACF;IACD;QACE,IAAI,EAAE,UAAU;QAChB,QAAQ,EAAE,6BAA6B;QACvC,UAAU,EAAE,KAAK;QACjB,OAAO,EAAE,mBAAmB;QAC5B,WAAW,EACT,w9BAAw9B;QAC19B,aAAa,EAAE,+CAA+C;QAC9D,SAAS,EAAE,gCAAgC;QAC3C,MAAM,EAAE,CAAC,iBAAiB,CAAC;QAC3B,QAAQ,EACN,qIAAqI;QACvI,QAAQ,EACN,8yDAA8yD;QAChzD,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,2BAA2B;gBACnC,OAAO,EACL,2bAA2b;aAC9b;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,yBAAyB;gBACjC,OAAO,EACL,qTAAqT;aACxT;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,gCAAgC;gBACxC,OAAO,EACL,6UAA6U;aAChV;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,6HAA6H;aAChI;SACF;KACF;IACD;QACE,IAAI,EAAE,QAAQ;QACd,QAAQ,EAAE,0BAA0B;QACpC,UAAU,EAAE,MAAM;QAClB,OAAO,EAAE,kCAAkC;QAC3C,WAAW,EACT,kWAAkW;QACpW,aAAa,EAAE,0CAA0C;QACzD,SAAS,EAAE,2BAA2B;QACtC,MAAM,EAAE,CAAC,iBAAiB,EAAE,oEAAoE,CAAC;QACjG,QAAQ,EACN,2PAA2P;QAC7P,QAAQ,EACN,u0EAAu0E;QACz0E,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,wBAAwB;gBAChC,OAAO,EACL,+sBAA+sB;aACltB;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,oBAAoB;gBAC5B,OAAO,EACL,4cAA4c;aAC/c;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,2BAA2B;gBACnC,OAAO,EACL,kZAAkZ;aACrZ;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,qcAAqc;aACxc;SACF;KACF;IACD;QACE,IAAI,EAAE,KAAK;QACX,QAAQ,EAAE,+BAA+B;QACzC,UAAU,EAAE,MAAM;QAClB,OAAO,EAAE,qBAAqB;QAC9B,WAAW,EACT,ggBAAggB;QAClgB,aAAa,EAAE,4CAA4C;QAC3D,SAAS,EAAE,6BAA6B;QACxC,MAAM,EAAE;YACN,iBAAiB;YACjB,sCAAsC;YACtC,qBAAqB;YACrB,oBAAoB;YACpB,iDAAiD;YACjD,mBAAmB;SACpB;QACD,QAAQ,EACN,4pEAA4pE;QAC9pE,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,6BAA6B;gBACrC,OAAO,EACL,mgBAAmgB;aACtgB;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,sBAAsB;gBAC9B,OAAO,EACL,8RAA8R;aACjS;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,6BAA6B;gBACrC,OAAO,EACL,kSAAkS;aACrS;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,8aAA8a;aACjb;SACF;KACF;IACD;QACE,IAAI,EAAE,QAAQ;QACd,QAAQ,EAAE,+BAA+B;QACzC,UAAU,EAAE,QAAQ;QACpB,OAAO,EAAE,wBAAwB;QACjC,WAAW,EAAE,8EAA8E;QAC3F,aAAa,EAAE,+CAA+C;QAC9D,SAAS,EAAE,gCAAgC;QAC3C,MAAM,EAAE,CAAC,iBAAiB,CAAC;QAC3B,QAAQ,EACN,0aAA0a;QAC5a,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,gCAAgC;gBACxC,OAAO,EACL,wWAAwW;aAC3W;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,yBAAyB;gBACjC,OAAO,EACL,gPAAgP;aACnP;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,gCAAgC;gBACxC,OAAO,EACL,wPAAwP;aAC3P;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,iJAAiJ;aACpJ;SACF;KACF;IACD;QACE,IAAI,EAAE,QAAQ;QACd,QAAQ,EAAE,cAAc;QACxB,UAAU,EAAE,MAAM;QAClB,OAAO,EAAE,4CAA4C;QACrD,WAAW,EACT,uqFAAuqF;QACzqF,aAAa,EAAE,uCAAuC;QACtD,SAAS,EAAE,wBAAwB;QACnC,MAAM,EAAE;YACN,22BAA22B;YAC32B,eAAe;YACf,2CAA2C;YAC3C,0BAA0B;YAC1B,4BAA4B;YAC5B,2BAA2B;SAC5B;QACD,QAAQ,EACN,k1BAAk1B;QACp1B,QAAQ,EACN,g/aAAg/a;QACl/a,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,qBAAqB;gBAC7B,OAAO,EACL,usBAAusB;aAC1sB;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,iBAAiB;gBACzB,OAAO,EACL,oZAAoZ;aACvZ;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,wBAAwB;gBAChC,OAAO,EACL,4XAA4X;aAC/X;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,2jBAA2jB;aAC9jB;SACF;KACF;IACD;QACE,IAAI,EAAE,sBAAsB;QAC5B,QAAQ,EAAE,iCAAiC;QAC3C,UAAU,EAAE,KAAK;QACjB,OAAO,EAAE,8BAA8B;QACvC,WAAW,EACT,8RAA8R;QAChS,aAAa,EAAE,qDAAqD;QACpE,SAAS,EAAE,oCAAoC;QAC/C,MAAM,EAAE,CAAC,oBAAoB,EAAE,kBAAkB,EAAE,iBAAiB,EAAE,yBAAyB,CAAC;QAChG,QAAQ,EACN,0uBAA0uB;QAC5uB,QAAQ,EACN,u8KAAu8K;QACz8K,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,oCAAoC;gBAC5C,OAAO,EACL,wdAAwd;aAC3d;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,+BAA+B;gBACvC,OAAO,EACL,iTAAiT;aACpT;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,oCAAoC;gBAC5C,OAAO,EACL,0WAA0W;aAC7W;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,iIAAiI;aACpI;SACF;KACF;IACD;QACE,IAAI,EAAE,UAAU;QAChB,QAAQ,EAAE,0BAA0B;QACpC,UAAU,EAAE,KAAK;QACjB,OAAO,EAAE,qBAAqB;QAC9B,WAAW,EACT,gJAAgJ;QAClJ,aAAa,EAAE,yCAAyC;QACxD,SAAS,EAAE,0BAA0B;QACrC,MAAM,EAAE,CAAC,oBAAoB,CAAC;QAC9B,QAAQ,EACN,0uBAA0uB;QAC5uB,QAAQ,EACN,86JAA86J;QACh7J,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,qBAAqB;gBAC7B,OAAO,EACL,mZAAmZ;aACtZ;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,mBAAmB;gBAC3B,OAAO,EACL,uQAAuQ;aAC1Q;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,0BAA0B;gBAClC,OAAO,EACL,8RAA8R;aACjS;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,0HAA0H;aAC7H;SACF;KACF;IACD;QACE,IAAI,EAAE,QAAQ;QACd,QAAQ,EAAE,0BAA0B;QACpC,UAAU,EAAE,QAAQ;QACpB,OAAO,EAAE,8BAA8B;QACvC,WAAW,EACT,6PAA6P;QAC/P,aAAa,EAAE,uCAAuC;QACtD,SAAS,EAAE,wBAAwB;QACnC,MAAM,EAAE,CAAC,oBAAoB,CAAC;QAC9B,QAAQ,EACN,0kBAA0kB;QAC5kB,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,wBAAwB;gBAChC,OAAO,EACL,gWAAgW;aACnW;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,iBAAiB;gBACzB,OAAO,EACL,wOAAwO;aAC3O;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,wBAAwB;gBAChC,OAAO,EACL,gPAAgP;aACnP;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,4IAA4I;aAC/I;SACF;KACF;IACD;QACE,IAAI,EAAE,cAAc;QACpB,QAAQ,EAAE,oCAAoC;QAC9C,UAAU,EAAE,MAAM;QAClB,OAAO,EAAE,uCAAuC;QAChD,WAAW,EACT,4SAA4S;QAC9S,aAAa,EAAE,6CAA6C;QAC5D,SAAS,EAAE,6BAA6B;QACxC,MAAM,EAAE;YACN,oBAAoB;YACpB,8BAA8B;YAC9B,gGAAgG;YAChG,wBAAwB;YACxB,sBAAsB;SACvB;QACD,QAAQ,EAAE,2DAA2D;QACrE,QAAQ,EACN,+wDAA+wD;QACjxD,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,6BAA6B;gBACrC,OAAO,EACL,mnBAAmnB;aACtnB;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,uBAAuB;gBAC/B,OAAO,EACL,sUAAsU;aACzU;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,6BAA6B;gBACrC,OAAO,EACL,qVAAqV;aACxV;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,mSAAmS;aACtS;SACF;KACF;IACD;QACE,IAAI,EAAE,QAAQ;QACd,QAAQ,EAAE,0BAA0B;QACpC,UAAU,EAAE,OAAO;QACnB,OAAO,EAAE,oCAAoC;QAC7C,WAAW,EACT,yLAAyL;QAC3L,aAAa,EAAE,uCAAuC;QACtD,SAAS,EAAE,wBAAwB;QACnC,MAAM,EAAE,CAAC,oBAAoB,EAAE,eAAe,EAAE,sBAAsB,CAAC;QACvE,QAAQ,EACN,0uBAA0uB;QAC5uB,QAAQ,EACN,mrKAAmrK;QACrrK,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,wBAAwB;gBAChC,OAAO,EACL,kgBAAkgB;aACrgB;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,iBAAiB;gBACzB,OAAO,EACL,mVAAmV;aACtV;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,wBAAwB;gBAChC,OAAO,EACL,iVAAiV;aACpV;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,ySAAyS;aAC5S;SACF;KACF;IACD;QACE,IAAI,EAAE,iBAAiB;QACvB,QAAQ,EAAE,iCAAiC;QAC3C,UAAU,EAAE,MAAM;QAClB,OAAO,EAAE,sCAAsC;QAC/C,WAAW,EACT,0lCAA0lC;QAC5lC,aAAa,EAAE,gDAAgD;QAC/D,SAAS,EAAE,+BAA+B;QAC1C,MAAM,EAAE;YACN,oBAAoB;YACpB,iLAAiL;YACjL,kEAAkE;YAClE,yBAAyB;YACzB,wBAAwB;YACxB,eAAe;SAChB;QACD,QAAQ,EACN,0bAA0b;QAC5b,QAAQ,EACN,i0OAAi0O;QACn0O,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,+BAA+B;gBACvC,OAAO,EACL,+tBAA+tB;aACluB;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,0BAA0B;gBAClC,OAAO,EACL,sbAAsb;aACzb;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,+BAA+B;gBACvC,OAAO,EACL,mbAAmb;aACtb;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,qaAAqa;aACxa;SACF;KACF;IACD;QACE,IAAI,EAAE,UAAU;QAChB,QAAQ,EAAE,+BAA+B;QACzC,UAAU,EAAE,KAAK;QACjB,OAAO,EAAE,4BAA4B;QACrC,WAAW,EACT,wJAAwJ;QAC1J,aAAa,EAAE,8CAA8C;QAC7D,SAAS,EAAE,+BAA+B;QAC1C,MAAM,EAAE,CAAC,oBAAoB,CAAC;QAC9B,QAAQ,EACN,2PAA2P;QAC7P,QAAQ,EACN,uqDAAuqD;QACzqD,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,0BAA0B;gBAClC,OAAO,EACL,saAAsa;aACza;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,wBAAwB;gBAChC,OAAO,EACL,6RAA6R;aAChS;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,+BAA+B;gBACvC,OAAO,EACL,kTAAkT;aACrT;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,+HAA+H;aAClI;SACF;KACF;IACD;QACE,IAAI,EAAE,aAAa;QACnB,QAAQ,EAAE,uCAAuC;QACjD,UAAU,EAAE,MAAM;QAClB,OAAO,EAAE,uBAAuB;QAChC,WAAW,EACT,0LAA0L;QAC5L,aAAa,EAAE,iDAAiD;QAChE,SAAS,EAAE,iCAAiC;QAC5C,MAAM,EAAE,CAAC,oBAAoB,EAAE,+BAA+B,CAAC;QAC/D,QAAQ,EACN,2PAA2P;QAC7P,QAAQ,EACN,6zDAA6zD;QAC/zD,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,iCAAiC;gBACzC,OAAO,EACL,8kBAA8kB;aACjlB;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,2BAA2B;gBACnC,OAAO,EACL,6VAA6V;aAChW;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,iCAAiC;gBACzC,OAAO,EACL,2VAA2V;aAC9V;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,mTAAmT;aACtT;SACF;KACF;IACD;QACE,IAAI,EAAE,MAAM;QACZ,QAAQ,EAAE,qCAAqC;QAC/C,UAAU,EAAE,MAAM;QAClB,OAAO,EAAE,gCAAgC;QACzC,WAAW,EACT,yKAAyK;QAC3K,aAAa,EAAE,0CAA0C;QACzD,SAAS,EAAE,2BAA2B;QACtC,MAAM,EAAE,CAAC,oBAAoB,EAAE,8BAA8B,EAAE,oBAAoB,CAAC;QACpF,QAAQ,EACN,2PAA2P;QAC7P,QAAQ,EACN,47DAA47D;QAC97D,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,2BAA2B;gBACnC,OAAO,EACL,wlBAAwlB;aAC3lB;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,oBAAoB;gBAC5B,OAAO,EACL,iXAAiX;aACpX;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,2BAA2B;gBACnC,OAAO,EACL,+XAA+X;aAClY;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,6SAA6S;aAChT;SACF;KACF;IACD;QACE,IAAI,EAAE,QAAQ;QACd,QAAQ,EAAE,iBAAiB;QAC3B,UAAU,EAAE,MAAM;QAClB,OAAO,EAAE,mBAAmB;QAC5B,WAAW,EACT,qmEAAqmE;QACvmE,aAAa,EAAE,0CAA0C;QACzD,SAAS,EAAE,2BAA2B;QACtC,MAAM,EAAE,CAAC,uBAAuB,EAAE,mBAAmB,EAAE,qBAAqB,CAAC;QAC7E,QAAQ,EACN,wIAAwI;QAC1I,QAAQ,EACN,4zJAA4zJ;QAC9zJ,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,wBAAwB;gBAChC,OAAO,EACL,khBAAkhB;aACrhB;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,oBAAoB;gBAC5B,OAAO,EACL,gUAAgU;aACnU;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,2BAA2B;gBACnC,OAAO,EACL,+VAA+V;aAClW;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,ySAAyS;aAC5S;SACF;KACF;IACD;QACE,IAAI,EAAE,UAAU;QAChB,QAAQ,EAAE,gCAAgC;QAC1C,UAAU,EAAE,KAAK;QACjB,OAAO,EAAE,yBAAyB;QAClC,WAAW,EACT,8KAA8K;QAChL,aAAa,EAAE,4CAA4C;QAC3D,SAAS,EAAE,6BAA6B;QACxC,MAAM,EAAE,CAAC,uBAAuB,CAAC;QACjC,QAAQ,EACN,mKAAmK;QACrK,QAAQ,EACN,+mCAA+mC;QACjnC,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,wBAAwB;gBAChC,OAAO,EACL,4ZAA4Z;aAC/Z;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,sBAAsB;gBAC9B,OAAO,EACL,gRAAgR;aACnR;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,6BAA6B;gBACrC,OAAO,EACL,uSAAuS;aAC1S;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,gIAAgI;aACnI;SACF;KACF;IACD;QACE,IAAI,EAAE,QAAQ;QACd,QAAQ,EAAE,gCAAgC;QAC1C,UAAU,EAAE,QAAQ;QACpB,OAAO,EAAE,sBAAsB;QAC/B,WAAW,EAAE,sEAAsE;QACnF,aAAa,EAAE,0CAA0C;QACzD,SAAS,EAAE,2BAA2B;QACtC,MAAM,EAAE,CAAC,uBAAuB,CAAC;QACjC,QAAQ,EACN,qaAAqa;QACva,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,2BAA2B;gBACnC,OAAO,EACL,mWAAmW;aACtW;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,oBAAoB;gBAC5B,OAAO,EACL,2OAA2O;aAC9O;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,2BAA2B;gBACnC,OAAO,EACL,mPAAmP;aACtP;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,kJAAkJ;aACrJ;SACF;KACF;IACD;QACE,IAAI,EAAE,MAAM;QACZ,QAAQ,EAAE,kBAAkB;QAC5B,UAAU,EAAE,KAAK;QACjB,OAAO,EAAE,iCAAiC;QAC1C,WAAW,EAAE,wDAAwD;QACrE,aAAa,EAAE,yCAAyC;QACxD,SAAS,EAAE,0BAA0B;QACrC,QAAQ,EACN,mKAAmK;QACrK,QAAQ,EACN,osBAAosB;QACtsB,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,0BAA0B;gBAClC,OAAO,EACL,oYAAoY;aACvY;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,mBAAmB;gBAC3B,OAAO,EACL,6OAA6O;aAChP;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,0BAA0B;gBAClC,OAAO,EACL,6QAA6Q;aAChR;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,kHAAkH;aACrH;SACF;KACF;IACD;QACE,IAAI,EAAE,MAAM;QACZ,QAAQ,EAAE,mBAAmB;QAC7B,UAAU,EAAE,KAAK;QACjB,OAAO,EAAE,oBAAoB;QAC7B,WAAW,EACT,gOAAgO;QAClO,aAAa,EAAE,0CAA0C;QACzD,SAAS,EAAE,0BAA0B;QACrC,QAAQ,EACN,uKAAuK;QACzK,QAAQ,EACN,q3BAAq3B;QACv3B,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,0BAA0B;gBAClC,OAAO,EACL,oYAAoY;aACvY;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,oBAAoB;gBAC5B,OAAO,EACL,gPAAgP;aACnP;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,0BAA0B;gBAClC,OAAO,EACL,6QAA6Q;aAChR;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,mHAAmH;aACtH;SACF;KACF;IACD;QACE,IAAI,EAAE,QAAQ;QACd,QAAQ,EAAE,mCAAmC;QAC7C,UAAU,EAAE,KAAK;QACjB,OAAO,EAAE,uBAAuB;QAChC,WAAW,EACT,gLAAgL;QAClL,aAAa,EAAE,4CAA4C;QAC3D,SAAS,EAAE,4BAA4B;QACvC,MAAM,EAAE,CAAC,wBAAwB,EAAE,4BAA4B,CAAC;QAChE,QAAQ,EAAE,kEAAkE;QAC5E,QAAQ,EACN,89BAA89B;QACh+B,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,4BAA4B;gBACpC,OAAO,EACL,uhBAAuhB;aAC1hB;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,sBAAsB;gBAC9B,OAAO,EACL,2UAA2U;aAC9U;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,4BAA4B;gBACpC,OAAO,EACL,oVAAoV;aACvV;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,4QAA4Q;aAC/Q;SACF;KACF;IACD;QACE,IAAI,EAAE,wBAAwB;QAC9B,QAAQ,EAAE,kDAAkD;QAC5D,UAAU,EAAE,MAAM;QAClB,OAAO,EAAE,+BAA+B;QACxC,WAAW,EACT,wXAAwX;QAC1X,aAAa,EAAE,4DAA4D;QAC3E,SAAS,EAAE,0CAA0C;QACrD,MAAM,EAAE,CAAC,sBAAsB,CAAC;QAChC,QAAQ,EAAE,iEAAiE;QAC3E,QAAQ,EACN,6hCAA6hC;QAC/hC,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,0CAA0C;gBAClD,OAAO,EACL,kbAAkb;aACrb;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,sCAAsC;gBAC9C,OAAO,EACL,ySAAyS;aAC5S;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,0CAA0C;gBAClD,OAAO,EACL,yTAAyT;aAC5T;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,kKAAkK;aACrK;SACF;KACF;IACD;QACE,IAAI,EAAE,sBAAsB;QAC5B,QAAQ,EAAE,4DAA4D;QACtE,UAAU,EAAE,KAAK;QACjB,OAAO,EAAE,6BAA6B;QACtC,WAAW,EACT,mKAAmK;QACrK,aAAa,EAAE,0DAA0D;QACzE,SAAS,EAAE,wCAAwC;QACnD,MAAM,EAAE,CAAC,sBAAsB,EAAE,kBAAkB,CAAC;QACpD,QAAQ,EACN,iVAAiV;QACnV,QAAQ,EACN,stDAAstD;QACxtD,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,wCAAwC;gBAChD,OAAO,EACL,0gBAA0gB;aAC7gB;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,oCAAoC;gBAC5C,OAAO,EACL,6TAA6T;aAChU;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,wCAAwC;gBAChD,OAAO,EACL,0UAA0U;aAC7U;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,4JAA4J;aAC/J;SACF;KACF;IACD;QACE,IAAI,EAAE,UAAU;QAChB,QAAQ,EAAE,sBAAsB;QAChC,UAAU,EAAE,KAAK;QACjB,OAAO,EAAE,iCAAiC;QAC1C,WAAW,EACT,+iCAA+iC;QACjjC,aAAa,EAAE,iDAAiD;QAChE,SAAS,EAAE,iCAAiC;QAC5C,MAAM,EAAE,CAAC,0BAA0B,EAAE,gBAAgB,CAAC;QACtD,QAAQ,EAAE,4CAA4C;QACtD,QAAQ,EACN,izEAAizE;QACnzE,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,4BAA4B;gBACpC,OAAO,EACL,8aAA8a;aACjb;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,2BAA2B;gBACnC,OAAO,EACL,4PAA4P;aAC/P;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,iCAAiC;gBACzC,OAAO,EACL,yRAAyR;aAC5R;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,sHAAsH;aACzH;SACF;KACF;IACD;QACE,IAAI,EAAE,QAAQ;QACd,QAAQ,EAAE,sBAAsB;QAChC,UAAU,EAAE,MAAM;QAClB,OAAO,EAAE,0BAA0B;QACnC,WAAW,EACT,m9BAAm9B;QACr9B,aAAa,EAAE,+CAA+C;QAC9D,SAAS,EAAE,+BAA+B;QAC1C,MAAM,EAAE;YACN,kBAAkB;YAClB,oBAAoB;YACpB,uBAAuB;YACvB,uBAAuB;YACvB,gBAAgB;YAChB,oBAAoB;YACpB,oCAAoC;YACpC,wBAAwB;YACxB,oBAAoB;YACpB,oBAAoB;YACpB,8BAA8B;YAC9B,qBAAqB;YACrB,6BAA6B;YAC7B,2BAA2B;SAC5B;QACD,QAAQ,EACN,6mBAA6mB;QAC/mB,QAAQ,EACN,4iNAA4iN;QAC9iN,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,4BAA4B;gBACpC,OAAO,EACL,mnBAAmnB;aACtnB;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,yBAAyB;gBACjC,OAAO,EACL,uXAAuX;aAC1X;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,+BAA+B;gBACvC,OAAO,EACL,kYAAkY;aACrY;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,wkBAAwkB;aAC3kB;SACF;KACF;IACD;QACE,IAAI,EAAE,UAAU;QAChB,QAAQ,EAAE,yCAAyC;QACnD,UAAU,EAAE,KAAK;QACjB,OAAO,EAAE,uBAAuB;QAChC,WAAW,EAAE,mDAAmD;QAChE,aAAa,EAAE,iDAAiD;QAChE,SAAS,EAAE,iCAAiC;QAC5C,MAAM,EAAE,CAAC,2BAA2B,CAAC;QACrC,QAAQ,EACN,6mBAA6mB;QAC/mB,QAAQ,EACN,2zEAA2zE;QAC7zE,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,4BAA4B;gBACpC,OAAO,EACL,waAAwa;aAC3a;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,2BAA2B;gBACnC,OAAO,EACL,+RAA+R;aAClS;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,iCAAiC;gBACzC,OAAO,EACL,0TAA0T;aAC7T;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,0IAA0I;aAC7I;SACF;KACF;IACD;QACE,IAAI,EAAE,MAAM;QACZ,QAAQ,EAAE,sBAAsB;QAChC,UAAU,EAAE,KAAK;QACjB,OAAO,EAAE,uBAAuB;QAChC,WAAW,EACT,uJAAuJ;QACzJ,aAAa,EAAE,6CAA6C;QAC5D,SAAS,EAAE,6BAA6B;QACxC,MAAM,EAAE;YACN,iBAAiB;YACjB,kBAAkB;YAClB,0FAA0F;SAC3F;QACD,QAAQ,EACN,iiBAAiiB;QACniB,QAAQ,EACN,6lEAA6lE;QAC/lE,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,6BAA6B;gBACrC,OAAO,EACL,waAAwa;aAC3a;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,uBAAuB;gBAC/B,OAAO,EACL,gPAAgP;aACnP;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,6BAA6B;gBACrC,OAAO,EACL,6QAA6Q;aAChR;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,sHAAsH;aACzH;SACF;KACF;IACD;QACE,IAAI,EAAE,QAAQ;QACd,QAAQ,EAAE,gDAAgD;QAC1D,UAAU,EAAE,MAAM;QAClB,OAAO,EAAE,0BAA0B;QACnC,WAAW,EACT,yLAAyL;QAC3L,aAAa,EAAE,+CAA+C;QAC9D,SAAS,EAAE,+BAA+B;QAC1C,MAAM,EAAE,CAAC,2BAA2B,CAAC;QACrC,QAAQ,EACN,6mBAA6mB;QAC/mB,QAAQ,EACN,m8EAAm8E;QACr8E,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,+BAA+B;gBACvC,OAAO,EACL,2aAA2a;aAC9a;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,yBAAyB;gBACjC,OAAO,EACL,6RAA6R;aAChS;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,+BAA+B;gBACvC,OAAO,EACL,iTAAiT;aACpT;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,iKAAiK;aACpK;SACF;KACF;IACD;QACE,IAAI,EAAE,SAAS;QACf,QAAQ,EAAE,2CAA2C;QACrD,UAAU,EAAE,MAAM;QAClB,OAAO,EAAE,mCAAmC;QAC5C,WAAW,EACT,yOAAyO;QAC3O,aAAa,EAAE,iDAAiD;QAChE,SAAS,EAAE,iCAAiC;QAC5C,MAAM,EAAE,CAAC,mBAAmB,EAAE,qBAAqB,CAAC;QACpD,QAAQ,EAAE,gEAAgE;QAC1E,QAAQ,EACN,++BAA++B;QACj/B,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,iCAAiC;gBACzC,OAAO,EACL,6gBAA6gB;aAChhB;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,2BAA2B;gBACnC,OAAO,EACL,mUAAmU;aACtU;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,iCAAiC;gBACzC,OAAO,EACL,qVAAqV;aACxV;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,yRAAyR;aAC5R;SACF;KACF;IACD;QACE,IAAI,EAAE,UAAU;QAChB,QAAQ,EAAE,mCAAmC;QAC7C,UAAU,EAAE,KAAK;QACjB,OAAO,EAAE,6BAA6B;QACtC,WAAW,EAAE,yEAAyE;QACtF,aAAa,EAAE,kDAAkD;QACjE,SAAS,EAAE,kCAAkC;QAC7C,MAAM,EAAE,CAAC,mBAAmB,CAAC;QAC7B,QAAQ,EAAE,sEAAsE;QAChF,QAAQ,EACN,wrBAAwrB;QAC1rB,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,6BAA6B;gBACrC,OAAO,EACL,qZAAqZ;aACxZ;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,4BAA4B;gBACpC,OAAO,EACL,4QAA4Q;aAC/Q;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,kCAAkC;gBAC1C,OAAO,EACL,gSAAgS;aACnS;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,kIAAkI;aACrI;SACF;KACF;IACD;QACE,IAAI,EAAE,SAAS;QACf,QAAQ,EAAE,uCAAuC;QACjD,UAAU,EAAE,MAAM;QAClB,OAAO,EAAE,2BAA2B;QACpC,WAAW,EACT,+PAA+P;QACjQ,aAAa,EAAE,+CAA+C;QAC9D,SAAS,EAAE,+BAA+B;QAC1C,MAAM,EAAE,CAAC,iBAAiB,CAAC;QAC3B,QAAQ,EACN,2GAA2G;QAC7G,QAAQ,EACN,2+BAA2+B;QAC7+B,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,+BAA+B;gBACvC,OAAO,EACL,saAAsa;aACza;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,yBAAyB;gBACjC,OAAO,EACL,2RAA2R;aAC9R;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,+BAA+B;gBACvC,OAAO,EACL,6SAA6S;aAChT;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,sJAAsJ;aACzJ;SACF;KACF;IACD;QACE,IAAI,EAAE,QAAQ;QACd,QAAQ,EAAE,sCAAsC;QAChD,UAAU,EAAE,MAAM;QAClB,OAAO,EAAE,mCAAmC;QAC5C,WAAW,EACT,8bAA8b;QAChc,aAAa,EAAE,8CAA8C;QAC7D,SAAS,EAAE,8BAA8B;QACzC,MAAM,EAAE,CAAC,iBAAiB,EAAE,eAAe,EAAE,qBAAqB,CAAC;QACnE,QAAQ,EACN,2GAA2G;QAC7G,QAAQ,EACN,g3CAAg3C;QACl3C,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,8BAA8B;gBACtC,OAAO,EACL,+hBAA+hB;aACliB;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,wBAAwB;gBAChC,OAAO,EACL,kVAAkV;aACrV;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,8BAA8B;gBACtC,OAAO,EACL,iWAAiW;aACpW;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,iRAAiR;aACpR;SACF;KACF;IACD;QACE,IAAI,EAAE,YAAY;QAClB,QAAQ,EAAE,0CAA0C;QACpD,UAAU,EAAE,KAAK;QACjB,OAAO,EAAE,kCAAkC;QAC3C,WAAW,EAAE,kCAAkC;QAC/C,aAAa,EAAE,kDAAkD;QACjE,SAAS,EAAE,kCAAkC;QAC7C,MAAM,EAAE,CAAC,iBAAiB,CAAC;QAC3B,QAAQ,EACN,2GAA2G;QAC7G,QAAQ,EACN,yxBAAyxB;QAC3xB,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,kCAAkC;gBAC1C,OAAO,EACL,yaAAya;aAC5a;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,4BAA4B;gBACpC,OAAO,EACL,8RAA8R;aACjS;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,kCAAkC;gBAC1C,OAAO,EACL,gTAAgT;aACnT;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,yIAAyI;aAC5I;SACF;KACF;IACD;QACE,IAAI,EAAE,QAAQ;QACd,QAAQ,EAAE,0CAA0C;QACpD,UAAU,EAAE,QAAQ;QACpB,OAAO,EAAE,8BAA8B;QACvC,WAAW,EACT,mIAAmI;QACrI,aAAa,EAAE,8CAA8C;QAC7D,SAAS,EAAE,8BAA8B;QACzC,MAAM,EAAE,CAAC,iBAAiB,CAAC;QAC3B,QAAQ,EACN,2GAA2G;QAC7G,QAAQ,EACN,i3BAAi3B;QACn3B,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,8BAA8B;gBACtC,OAAO,EACL,qaAAqa;aACxa;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,wBAAwB;gBAChC,OAAO,EACL,0RAA0R;aAC7R;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,8BAA8B;gBACtC,OAAO,EACL,4SAA4S;aAC/S;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,2JAA2J;aAC9J;SACF;KACF;IACD;QACE,IAAI,EAAE,QAAQ;QACd,QAAQ,EAAE,cAAc;QACxB,UAAU,EAAE,MAAM;QAClB,OAAO,EAAE,sDAAsD;QAC/D,WAAW,EACT,gQAAgQ;QAClQ,aAAa,EAAE,uCAAuC;QACtD,SAAS,EAAE,wBAAwB;QACnC,MAAM,EAAE;YACN,uBAAuB;YACvB,mBAAmB;YACnB,iBAAiB;YACjB,uBAAuB;YACvB,8CAA8C;YAC9C,oBAAoB;SACrB;QACD,QAAQ,EACN,gKAAgK;QAClK,QAAQ,EACN,0gDAA0gD;QAC5gD,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,qBAAqB;gBAC7B,OAAO,EACL,6dAA6d;aAChe;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,iBAAiB;gBACzB,OAAO,EACL,iSAAiS;aACpS;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,wBAAwB;gBAChC,OAAO,EACL,gUAAgU;aACnU;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,qUAAqU;aACxU;SACF;KACF;IACD;QACE,IAAI,EAAE,UAAU;QAChB,QAAQ,EAAE,0BAA0B;QACpC,UAAU,EAAE,KAAK;QACjB,OAAO,EAAE,eAAe;QACxB,WAAW,EAAE,eAAe;QAC5B,aAAa,EAAE,yCAAyC;QACxD,SAAS,EAAE,0BAA0B;QACrC,MAAM,EAAE,CAAC,oBAAoB,CAAC;QAC9B,QAAQ,EACN,gKAAgK;QAClK,QAAQ,EACN,04BAA04B;QAC54B,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,qBAAqB;gBAC7B,OAAO,EACL,wXAAwX;aAC3X;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,mBAAmB;gBAC3B,OAAO,EACL,4OAA4O;aAC/O;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,0BAA0B;gBAClC,OAAO,EACL,mQAAmQ;aACtQ;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,0HAA0H;aAC7H;SACF;KACF;IACD;QACE,IAAI,EAAE,QAAQ;QACd,QAAQ,EAAE,iCAAiC;QAC3C,UAAU,EAAE,MAAM;QAClB,OAAO,EAAE,kBAAkB;QAC3B,WAAW,EAAE,kDAAkD;QAC/D,aAAa,EAAE,uCAAuC;QACtD,SAAS,EAAE,wBAAwB;QACnC,MAAM,EAAE,CAAC,oBAAoB,CAAC;QAC9B,QAAQ,EACN,gKAAgK;QAClK,QAAQ,EACN,+6BAA+6B;QACj7B,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,wBAAwB;gBAChC,OAAO,EACL,2XAA2X;aAC9X;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,iBAAiB;gBACzB,OAAO,EACL,0OAA0O;aAC7O;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,wBAAwB;gBAChC,OAAO,EACL,iQAAiQ;aACpQ;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,iJAAiJ;aACpJ;SACF;KACF;IACD;QACE,IAAI,EAAE,aAAa;QACnB,QAAQ,EAAE,sCAAsC;QAChD,UAAU,EAAE,KAAK;QACjB,OAAO,EAAE,qCAAqC;QAC9C,WAAW,EACT,wOAAwO;QAC1O,aAAa,EAAE,4CAA4C;QAC3D,SAAS,EAAE,6BAA6B;QACxC,MAAM,EAAE,CAAC,oBAAoB,CAAC;QAC9B,QAAQ,EACN,mGAAmG;QACrG,QAAQ,EACN,60BAA60B;QAC/0B,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,6BAA6B;gBACrC,OAAO,EACL,uYAAuY;aAC1Y;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,sBAAsB;gBAC9B,OAAO,EACL,sPAAsP;aACzP;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,6BAA6B;gBACrC,OAAO,EACL,6QAA6Q;aAChR;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,sIAAsI;aACzI;SACF;KACF;IACD;QACE,IAAI,EAAE,MAAM;QACZ,QAAQ,EAAE,qBAAqB;QAC/B,UAAU,EAAE,KAAK;QACjB,OAAO,EAAE,sBAAsB;QAC/B,WAAW,EACT,yQAAyQ;QAC3Q,aAAa,EAAE,4CAA4C;QAC3D,SAAS,EAAE,4BAA4B;QACvC,QAAQ,EAAE,kFAAkF;QAC5F,QAAQ,EACN,8wBAA8wB;QAChxB,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,4BAA4B;gBACpC,OAAO,EACL,4YAA4Y;aAC/Y;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,sBAAsB;gBAC9B,OAAO,EACL,wPAAwP;aAC3P;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,4BAA4B;gBACpC,OAAO,EACL,qRAAqR;aACxR;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,qHAAqH;aACxH;SACF;KACF;IACD;QACE,IAAI,EAAE,OAAO;QACb,QAAQ,EAAE,qBAAqB;QAC/B,UAAU,EAAE,MAAM;QAClB,OAAO,EAAE,gBAAgB;QACzB,WAAW,EACT,mbAAmb;QACrb,aAAa,EAAE,6CAA6C;QAC5D,SAAS,EAAE,6BAA6B;QACxC,MAAM,EAAE,CAAC,iBAAiB,EAAE,kBAAkB,CAAC;QAC/C,QAAQ,EAAE,+EAA+E;QACzF,QAAQ,EACN,0tCAA0tC;QAC5tC,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,6BAA6B;gBACrC,OAAO,EACL,weAAwe;aAC3e;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,uBAAuB;gBAC/B,OAAO,EACL,4RAA4R;aAC/R;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,6BAA6B;gBACrC,OAAO,EACL,mTAAmT;aACtT;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,gQAAgQ;aACnQ;SACF;KACF;IACD;QACE,IAAI,EAAE,SAAS;QACf,QAAQ,EAAE,qBAAqB;QAC/B,UAAU,EAAE,QAAQ;QACpB,OAAO,EAAE,kBAAkB;QAC3B,WAAW,EACT,8MAA8M;QAChN,aAAa,EAAE,+CAA+C;QAC9D,SAAS,EAAE,+BAA+B;QAC1C,MAAM,EAAE,CAAC,iBAAiB,CAAC;QAC3B,QAAQ,EACN,4iBAA4iB;QAC9iB,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,+BAA+B;gBACvC,OAAO,EACL,qYAAqY;aACxY;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,yBAAyB;gBACjC,OAAO,EACL,+NAA+N;aAClO;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,+BAA+B;gBACvC,OAAO,EACL,2OAA2O;aAC9O;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,uIAAuI;aAC1I;SACF;KACF;IACD;QACE,IAAI,EAAE,MAAM;QACZ,QAAQ,EAAE,iBAAiB;QAC3B,UAAU,EAAE,KAAK;QACjB,OAAO,EAAE,iCAAiC;QAC1C,WAAW,EACT,mMAAmM;QACrM,aAAa,EAAE,wCAAwC;QACvD,SAAS,EAAE,yBAAyB;QACpC,QAAQ,EACN,yIAAyI;QAC3I,QAAQ,EACN,qxBAAqxB;QACvxB,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,yBAAyB;gBACjC,OAAO,EACL,gYAAgY;aACnY;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,kBAAkB;gBAC1B,OAAO,EACL,wOAAwO;aAC3O;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,yBAAyB;gBACjC,OAAO,EACL,wQAAwQ;aAC3Q;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,iHAAiH;aACpH;SACF;KACF;IACD;QACE,IAAI,EAAE,UAAU;QAChB,QAAQ,EAAE,8BAA8B;QACxC,UAAU,EAAE,KAAK;QACjB,OAAO,EAAE,oBAAoB;QAC7B,WAAW,EAAE,oBAAoB;QACjC,aAAa,EAAE,4CAA4C;QAC3D,SAAS,EAAE,6BAA6B;QACxC,MAAM,EAAE,CAAC,qBAAqB,CAAC;QAC/B,QAAQ,EACN,oHAAoH;QACtH,QAAQ,EACN,82BAA82B;QACh3B,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,wBAAwB;gBAChC,OAAO,EACL,qYAAqY;aACxY;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,sBAAsB;gBAC9B,OAAO,EACL,yPAAyP;aAC5P;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,6BAA6B;gBACrC,OAAO,EACL,gRAAgR;aACnR;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,6HAA6H;aAChI;SACF;KACF;IACD;QACE,IAAI,EAAE,MAAM;QACZ,QAAQ,EAAE,oBAAoB;QAC9B,UAAU,EAAE,KAAK;QACjB,OAAO,EAAE,oCAAoC;QAC7C,WAAW,EACT,wMAAwM;QAC1M,aAAa,EAAE,2CAA2C;QAC1D,SAAS,EAAE,2BAA2B;QACtC,QAAQ,EAAE,mFAAmF;QAC7F,QAAQ,EACN,iwBAAiwB;QACnwB,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,2BAA2B;gBACnC,OAAO,EACL,iYAAiY;aACpY;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,qBAAqB;gBAC7B,OAAO,EACL,6OAA6O;aAChP;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,2BAA2B;gBACnC,OAAO,EACL,0QAA0Q;aAC7Q;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,oHAAoH;aACvH;SACF;KACF;IACD;QACE,IAAI,EAAE,QAAQ;QACd,QAAQ,EAAE,2BAA2B;QACrC,UAAU,EAAE,MAAM;QAClB,OAAO,EAAE,mCAAmC;QAC5C,WAAW,EACT,g3CAAg3C;QACl3C,aAAa,EAAE,oDAAoD;QACnE,SAAS,EAAE,oCAAoC;QAC/C,MAAM,EAAE,CAAC,8BAA8B,EAAE,qBAAqB,EAAE,2BAA2B,CAAC;QAC5F,QAAQ,EACN,gLAAgL;QAClL,QAAQ,EACN,mhGAAmhG;QACrhG,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,iCAAiC;gBACzC,OAAO,EACL,gqBAAgqB;aACnqB;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,8BAA8B;gBACtC,OAAO,EACL,yYAAyY;aAC5Y;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,oCAAoC;gBAC5C,OAAO,EACL,saAAsa;aACza;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,yfAAyf;aAC5f;SACF;KACF;IACD;QACE,IAAI,EAAE,MAAM;QACZ,QAAQ,EAAE,2BAA2B;QACrC,UAAU,EAAE,KAAK;QACjB,OAAO,EAAE,gCAAgC;QACzC,WAAW,EACT,gKAAgK;QAClK,aAAa,EAAE,kDAAkD;QACjE,SAAS,EAAE,kCAAkC;QAC7C,QAAQ,EACN,0LAA0L;QAC5L,QAAQ,EACN,q4BAAq4B;QACv4B,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,kCAAkC;gBAC1C,OAAO,EACL,6ZAA6Z;aACha;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,4BAA4B;gBACpC,OAAO,EACL,wQAAwQ;aAC3Q;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,kCAAkC;gBAC1C,OAAO,EACL,qSAAqS;aACxS;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,2HAA2H;aAC9H;SACF;KACF;IACD;QACE,IAAI,EAAE,UAAU;QAChB,QAAQ,EAAE,4CAA4C;QACtD,UAAU,EAAE,KAAK;QACjB,OAAO,EAAE,kCAAkC;QAC3C,WAAW,EACT,0HAA0H;QAC5H,aAAa,EAAE,sDAAsD;QACrE,SAAS,EAAE,sCAAsC;QACjD,MAAM,EAAE,CAAC,yBAAyB,CAAC;QACnC,QAAQ,EACN,wJAAwJ;QAC1J,QAAQ,EACN,0kCAA0kC;QAC5kC,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,iCAAiC;gBACzC,OAAO,EACL,ubAAub;aAC1b;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,gCAAgC;gBACxC,OAAO,EACL,8SAA8S;aACjT;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,sCAAsC;gBAC9C,OAAO,EACL,yUAAyU;aAC5U;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,4IAA4I;aAC/I;SACF;KACF;IACD;QACE,IAAI,EAAE,QAAQ;QACd,QAAQ,EAAE,4CAA4C;QACtD,UAAU,EAAE,KAAK;QACjB,OAAO,EAAE,+BAA+B;QACxC,WAAW,EACT,6MAA6M;QAC/M,aAAa,EAAE,oDAAoD;QACnE,SAAS,EAAE,oCAAoC;QAC/C,MAAM,EAAE;YACN,yBAAyB;YACzB,sBAAsB;YACtB,2BAA2B;YAC3B,+BAA+B;YAC/B,sBAAsB;SACvB;QACD,QAAQ,EACN,wJAAwJ;QAC1J,QAAQ,EACN,mvDAAmvD;QACrvD,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,oCAAoC;gBAC5C,OAAO,EACL,4kBAA4kB;aAC/kB;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,8BAA8B;gBACtC,OAAO,EACL,wXAAwX;aAC3X;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,oCAAoC;gBAC5C,OAAO,EACL,sYAAsY;aACzY;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,6fAA6f;aAChgB;SACF;KACF;IACD;QACE,IAAI,EAAE,QAAQ;QACd,QAAQ,EAAE,4CAA4C;QACtD,UAAU,EAAE,QAAQ;QACpB,OAAO,EAAE,+BAA+B;QACxC,WAAW,EAAE,gCAAgC;QAC7C,aAAa,EAAE,oDAAoD;QACnE,SAAS,EAAE,oCAAoC;QAC/C,MAAM,EAAE,CAAC,yBAAyB,CAAC;QACnC,QAAQ,EACN,iaAAia;QACna,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,oCAAoC;gBAC5C,OAAO,EACL,4WAA4W;aAC/W;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,8BAA8B;gBACtC,OAAO,EACL,qPAAqP;aACxP;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,oCAAoC;gBAC5C,OAAO,EACL,4PAA4P;aAC/P;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,8JAA8J;aACjK;SACF;KACF;IACD;QACE,IAAI,EAAE,gBAAgB;QACtB,QAAQ,EAAE,+BAA+B;QACzC,UAAU,EAAE,MAAM;QAClB,OAAO,EAAE,2BAA2B;QACpC,WAAW,EAAE,wFAAwF;QACrG,aAAa,EAAE,iDAAiD;QAChE,SAAS,EAAE,iCAAiC;QAC5C,MAAM,EAAE,CAAC,kBAAkB,EAAE,gBAAgB,CAAC;QAC9C,QAAQ,EAAE,+FAA+F;QACzG,QAAQ,EACN,gqCAAgqC;QAClqC,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,iCAAiC;gBACzC,OAAO,EACL,mhBAAmhB;aACthB;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,4BAA4B;gBACpC,OAAO,EACL,iSAAiS;aACpS;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,iCAAiC;gBACzC,OAAO,EACL,uTAAuT;aAC1T;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,iRAAiR;aACpR;SACF;KACF;IACD;QACE,IAAI,EAAE,WAAW;QACjB,QAAQ,EAAE,0BAA0B;QACpC,UAAU,EAAE,MAAM;QAClB,OAAO,EAAE,sBAAsB;QAC/B,WAAW,EACT,ymBAAymB;QAC3mB,aAAa,EAAE,4CAA4C;QAC3D,SAAS,EAAE,4BAA4B;QACvC,MAAM,EAAE,CAAC,kBAAkB,EAAE,gBAAgB,CAAC;QAC9C,QAAQ,EAAE,+FAA+F;QACzG,QAAQ,EACN,iqDAAiqD;QACnqD,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,4BAA4B;gBACpC,OAAO,EACL,ygBAAygB;aAC5gB;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,sBAAsB;gBAC9B,OAAO,EACL,2RAA2R;aAC9R;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,4BAA4B;gBACpC,OAAO,EACL,kTAAkT;aACrT;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,4QAA4Q;aAC/Q;SACF;KACF;IACD;QACE,IAAI,EAAE,UAAU;QAChB,QAAQ,EAAE,kBAAkB;QAC5B,UAAU,EAAE,KAAK;QACjB,OAAO,EAAE,mBAAmB;QAC5B,WAAW,EACT,+IAA+I;QACjJ,aAAa,EAAE,6CAA6C;QAC5D,SAAS,EAAE,6BAA6B;QACxC,MAAM,EAAE,CAAC,wBAAwB,CAAC;QAClC,QAAQ,EACN,iIAAiI;QACnI,QAAQ,EACN,83BAA83B;QACh4B,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,wBAAwB;gBAChC,OAAO,EACL,+ZAA+Z;aACla;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,uBAAuB;gBAC/B,OAAO,EACL,iPAAiP;aACpP;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,6BAA6B;gBACrC,OAAO,EACL,8QAA8Q;aACjR;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,kHAAkH;aACrH;SACF;KACF;IACD;QACE,IAAI,EAAE,QAAQ;QACd,QAAQ,EAAE,kBAAkB;QAC5B,UAAU,EAAE,MAAM;QAClB,OAAO,EAAE,oBAAoB;QAC7B,WAAW,EACT,+WAA+W;QACjX,aAAa,EAAE,2CAA2C;QAC1D,SAAS,EAAE,2BAA2B;QACtC,MAAM,EAAE,CAAC,qBAAqB,EAAE,uBAAuB,EAAE,qBAAqB,EAAE,qBAAqB,CAAC;QACtG,QAAQ,EACN,2GAA2G;QAC7G,QAAQ,EACN,w7CAAw7C;QAC17C,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,wBAAwB;gBAChC,OAAO,EACL,mmBAAmmB;aACtmB;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,qBAAqB;gBAC7B,OAAO,EACL,6YAA6Y;aAChZ;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,2BAA2B;gBACnC,OAAO,EACL,saAAsa;aACza;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,sXAAsX;aACzX;SACF;KACF;IACD;QACE,IAAI,EAAE,QAAQ;QACd,QAAQ,EAAE,kBAAkB;QAC5B,UAAU,EAAE,OAAO;QACnB,OAAO,EAAE,qBAAqB;QAC9B,WAAW,EACT,gUAAgU;QAClU,aAAa,EAAE,2CAA2C;QAC1D,SAAS,EAAE,2BAA2B;QACtC,MAAM,EAAE,CAAC,uBAAuB,EAAE,sBAAsB,EAAE,qBAAqB,EAAE,qBAAqB,CAAC;QACvG,QAAQ,EACN,2GAA2G;QAC7G,QAAQ,EACN,g7CAAg7C;QACl7C,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,MAAM,EAAE,2BAA2B;gBACnC,OAAO,EACL,onBAAonB;aACvnB;YACD,MAAM,EAAE;gBACN,MAAM,EAAE,qBAAqB;gBAC7B,OAAO,EACL,yYAAyY;aAC5Y;YACD,UAAU,EAAE;gBACV,MAAM,EAAE,2BAA2B;gBACnC,OAAO,EACL,kaAAka;aACra;YACD,IAAI,EAAE;gBACJ,OAAO,EACL,wVAAwV;aAC3V;SACF;KACF;CACF,CAAC;AAEF,MAAM,gBAAgB,GAA4C;IAChE;QACE,QAAQ,EAAE,IAAI;QACd,OAAO,EACL,g/dAAg/d;KACn/d;IACD;QACE,QAAQ,EAAE,QAAQ;QAClB,OAAO,EACL,+1gBAA+1gB;KACl2gB;IACD;QACE,QAAQ,EAAE,YAAY;QACtB,OAAO,EACL,uheAAuhe;KAC1he;CACF,CAAC;AAEF,MAAM,aAAa,GAAG;IACpB,MAAM,EAAE;QACN,MAAM;QACN,UAAU;QACV,SAAS;QACT,aAAa;QACb,WAAW;QACX,eAAe;QACf,SAAS;QACT,gBAAgB;KACjB;IACD,WAAW,EAAE,CAAC,MAAM,EAAE,WAAW,CAAC;IAClC,aAAa,EAAE;QACb,MAAM,EAAE,IAAI;QACZ,KAAK,EAAE,GAAG;QACV,KAAK,EAAE;YACL,IAAI,EAAE,CAAC;YACP,aAAa,EAAE,CAAC;YAChB,QAAQ,EAAE,CAAC;YACX,SAAS,EAAE,CAAC;YACZ,OAAO,EAAE,CAAC;YACV,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,CAAC;SACW;KAC5B;CACF,CAAC;AAEF;;;;GAIG;AACH,MAAa,eAAe;IAClB,WAAW,CAAiC;IAC5C,UAAU,CAAiC;IAEnD;QACE,IAAI,CAAC,WAAW,GAAG,IAAI,oBAAU,CAAqB,aAAa,CAAC,CAAC;QACrE,IAAI,CAAC,UAAU,GAAG,IAAI,oBAAU,CAAqB,aAAa,CAAC,CAAC;IACtE,CAAC;IAED,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,IAA2B;QAC7C,MAAM,QAAQ,GAAG,IAAI,eAAe,EAAE,CAAC;QACvC,QAAQ,CAAC,YAAY,CAAC,gBAAgB,CAAC,CAAC;QACxC,KAAK,MAAM,MAAM,IAAI,gBAAgB,EAAE,CAAC;YACtC,QAAQ,CAAC,UAAU,CAAC,MAAM,CAAC,OAAO,EAAE,UAAU,MAAM,CAAC,QAAQ,EAAE,CAAC,CAAC;QACnE,CAAC;QACD,IAAI,IAAI,EAAE,OAAO,EAAE,CAAC;YAClB,MAAM,QAAQ,CAAC,iBAAiB,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QACjD,CAAC;QACD,OAAO,QAAQ,CAAC;IAClB,CAAC;IAED,MAAM,CAAC,KAMN;QACC,MAAM,EAAE,KAAK,EAAE,QAAQ,GAAG,YAAY,EAAE,MAAM,GAAG,SAAS,EAAE,UAAU,GAAG,CAAC,EAAE,SAAS,GAAG,OAAO,EAAE,GAAG,KAAK,CAAC;QAE1G,MAAM,WAAW,GAAG,MAAM,KAAK,SAAS,IAAI,MAAM,KAAK,MAAM,CAAC;QAE9D,kDAAkD;QAClD,sEAAsE;QACtE,oDAAoD;QACpD,MAAM,UAAU,GAAG,IAAI,CAAC,WAAW;aAChC,MAAM,CAAC,KAAK,CAAC;aACb,GAAG,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,GAAG,GAAG,EAAE,KAAK,EAAE,aAAsB,EAAE,CAAC,CAAC,CAAC;QAC7D,MAAM,SAAS,GAAG,IAAI,CAAC,UAAU;aAC9B,MAAM,CAAC,KAAK,CAAC;aACb,MAAM,CAAC,CAAC,GAAG,EAAE,EAAE;YACd,MAAM,MAAM,GAAK,GAA+B,CAAC,WAAW,CAA4B,EAAE,MAAM,CAAC;YACjG,IAAI,CAAC,MAAM;gBAAE,OAAO,IAAI,CAAC;YACzB,iFAAiF;YACjF,IAAI,UAA8B,CAAC;YACnC,IAAI,MAAM,CAAC,UAAU,CAAC,SAAS,CAAC;gBAAE,UAAU,GAAG,MAAM,CAAC,KAAK,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC;iBACzE,IAAI,MAAM,CAAC,UAAU,CAAC,OAAO,CAAC;gBAAE,UAAU,GAAG,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;YACvE,IAAI,CAAC,UAAU;gBAAE,OAAO,IAAI,CAAC;YAC7B,OAAO,UAAU,KAAK,QAAQ,IAAI,CAAC,QAAQ,KAAK,YAAY,IAAI,UAAU,KAAK,YAAY,CAAC,CAAC;QAC/F,CAAC,CAAC;aACD,GAAG,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,GAAG,GAAG,EAAE,KAAK,EAAE,OAAgB,EAAE,CAAC,CAAC,CAAC;QACvD,MAAM,MAAM,GAAG,CAAC,GAAG,UAAU,EAAE,GAAG,SAAS,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,KAAK,GAAG,CAAC,CAAC,KAAK,CAAC,CAAC;QAC/E,MAAM,GAAG,GAAG,MAAM,CAAC,KAAK,CAAC,CAAC,EAAE,UAAU,CAAC,CAAC;QAExC,MAAM,WAAW,GAAyC,EAAE,CAAC;QAE7D,KAAK,MAAM,GAAG,IAAI,GAAG,EAAE,CAAC;YACtB,MAAM,QAAQ,GAAI,GAA+B,CAAC,WAAW,CAAC,CAAC;YAC/D,IAAI,GAAG,CAAC,KAAK,KAAK,aAAa,EAAE,CAAC;gBAChC,MAAM,CAAC,GAAG,QAAuB,CAAC;gBAClC,IAAI,WAAW,IAAI,CAAC,CAAC,QAAQ,EAAE,CAAC;oBAC9B,WAAW,CAAC,IAAI,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC;gBAC/B,CAAC;qBAAM,CAAC;oBACN,4DAA4D;oBAC5D,yDAAyD;oBACzD,oBAAoB;oBACpB,MAAM,QAAQ,GAAG,CAAC,CAAC,WAAW,EAAE,CAAC,QAAQ,CAAC,CAAC;oBAC3C,WAAW,CAAC,IAAI,CAAC;wBACf,MAAM,EAAE,QAAQ,EAAE,MAAM,IAAI,CAAC,CAAC,SAAS;wBACvC,OAAO,EAAE,CAAC,CAAC,OAAO;wBAClB,WAAW,EAAE,CAAC,CAAC,WAAW;wBAC1B,QAAQ,EAAE,GAAG,CAAC,CAAC,UAAU,CAAC,WAAW,EAAE,IAAI,CAAC,CAAC,QAAQ,EAAE;wBACvD,GAAG,CAAC,QAAQ,EAAE,OAAO,CAAC,CAAC,CAAC,EAAE,OAAO,EAAE,QAAQ,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;wBAC3D,GAAG,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;wBACzC,GAAG,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,EAAE,QAAQ,EAAE,CAAC,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;qBAChD,CAAC,CAAC;gBACL,CAAC;YACH,CAAC;iBAAM,CAAC;gBACN,MAAM,CAAC,GAAG,QAAsB,CAAC;gBACjC,WAAW,CAAC,IAAI,CAAC;oBACf,OAAO,EAAE,CAAC,CAAC,OAAO;oBAClB,GAAG,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;iBAC1C,CAAC,CAAC;YACL,CAAC;QACH,CAAC;QAED,IAAI,WAAW,GAAG,CAAC,CAAC;QACpB,MAAM,OAAO,GAAyC,EAAE,CAAC;QACzD,KAAK,MAAM,MAAM,IAAI,WAAW,EAAE,CAAC;YACjC,MAAM,GAAG,GAAG,OAAO,MAAM,KAAK,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC,MAAM,CAAC;YACvF,WAAW,IAAI,GAAG,CAAC;YACnB,IAAI,WAAW,GAAG,SAAS;gBAAE,MAAM;YACnC,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;QACvB,CAAC;QAED,IAAI,OAAO,CAAC,MAAM,GAAG,WAAW,CAAC,MAAM,EAAE,CAAC;YACxC,OAAO,CAAC,OAAO,CAAC,sBAAsB,OAAO,CAAC,MAAM,OAAO,WAAW,CAAC,MAAM,WAAW,CAAC,CAAC;QAC5F,CAAC;QAED,OAAO,EAAE,OAAO,EAAE,CAAC;IACrB,CAAC;IAEO,YAAY,CAAC,OAAsB;QACzC,MAAM,IAAI,GAAyB,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC;YACxD,EAAE,EAAE,UAAU,CAAC,EAAE;YACjB,IAAI,EAAE,aAAsB;YAC5B,IAAI,EAAE,CAAC,CAAC,IAAI;YACZ,QAAQ,EAAE,CAAC,CAAC,QAAQ;YACpB,OAAO,EAAE,CAAC,CAAC,OAAO;YAClB,WAAW,EAAE,CAAC,CAAC,WAAW;YAC1B,SAAS,EAAE,CAAC,CAAC,SAAS;YACtB,aAAa,EAAE,CAAC,CAAC,aAAa;YAC9B,SAAS,EAAE,CAAuC;SACnD,CAAC,CAAC,CAAC;QACJ,IAAI,IAAI,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;YACpB,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;QAChC,CAAC;IACH,CAAC;IAEO,KAAK,CAAC,iBAAiB,CAAC,OAAe;QAC7C,IAAI,OAAO,CAAC;QACZ,IAAI,CAAC;YACH,OAAO,GAAG,MAAM,EAAE,CAAC,OAAO,CAAC,OAAO,EAAE,EAAE,aAAa,EAAE,IAAI,EAAE,CAAC,CAAC;QAC/D,CAAC;QAAC,OAAO,GAAG,EAAE,CAAC;YACb,IAAA,kBAAS,GAAE,CAAC,IAAI,CAAC,EAAE,GAAG,EAAE,OAAO,EAAE,EAAE,+BAA+B,CAAC,CAAC;YACpE,OAAO;QACT,CAAC;QAED,MAAM,KAAK,GAAG,OAAO;aAClB,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;aACzB,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,CAAC,CAAC;QAErG,KAAK,MAAM,IAAI,IAAI,KAAK,EAAE,CAAC;YACzB,IAAI,CAAC;gBACH,MAAM,QAAQ,GAAG,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE,IAAI,CAAC,IAAI,CAAC,CAAC;gBAC/C,MAAM,OAAO,GAAG,MAAM,EAAE,CAAC,QAAQ,CAAC,QAAQ,EAAE,OAAO,CAAC,CAAC;gBAErD,IAAI,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,EAAE,CAAC;oBAChC,MAAM,KAAK,GAAG,YAAY,CAAC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC;oBAChD,IAAI,KAAK,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;wBACrB,IAAI,CAAC,UAAU,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC,EAAE,IAAI,CAAC,IAAI,CAAC,CAAC;oBACjD,CAAC;gBACH,CAAC;qBAAM,CAAC;oBACN,wDAAwD;oBACxD,yDAAyD;oBACzD,yCAAyC;oBACzC,EAAE;oBACF,WAAW;oBACX,QAAQ;oBACR,qBAAqB;oBACrB,QAAQ;oBACR,+BAA+B;oBAC/B,QAAQ;oBACR,MAAM,WAAW,GAAG,gBAAgB,CAAC,OAAO,CAAC,CAAC;oBAC9C,MAAM,MAAM,GAAG,WAAW,CAAC,QAAQ,CAAC,CAAC,CAAC,QAAQ,WAAW,CAAC,QAAQ,IAAI,IAAI,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC;oBAC9F,IAAI,CAAC,UAAU,CAAC,OAAO,EAAE,MAAM,CAAC,CAAC;gBACnC,CAAC;YACH,CAAC;YAAC,OAAO,GAAG,EAAE,CAAC;gBACb,IAAA,kBAAS,GAAE,CAAC,IAAI,CAAC,EAAE,GAAG,EAAE,IAAI,EAAE,IAAI,CAAC,IAAI,EAAE,EAAE,2BAA2B,CAAC,CAAC;YAC1E,CAAC;QACH,CAAC;IACH,CAAC;IAEO,UAAU,CAAC,QAAgB,EAAE,MAAc;QACjD,MAAM,MAAM,GAAG,aAAa,CAAC,QAAQ,CAAC,CAAC;QACvC,MAAM,MAAM,GAAG,IAAI,CAAC,UAAU,CAAC,aAAa,CAAC;QAE7C,MAAM,IAAI,GAAyB,MAAM,CAAC,GAAG,CAAC,CAAC,KAAK,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC;YAC3D,EAAE,EAAE,SAAS,MAAM,GAAG,CAAC,EAAE;YACzB,IAAI,EAAE,OAAgB;YACtB,OAAO,EAAE,KAAK,CAAC,OAAO;YACtB,GAAG,CAAC,KAAK,CAAC,cAAc,IAAI,IAAI,CAAC,CAAC,CAAC,EAAE,cAAc,EAAE,KAAK,CAAC,cAAc,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;YACjF,SAAS,EAAE,EAAE,GAAG,KAAK,EAAE,MAAM,EAAwC;SACtE,CAAC,CAAC,CAAC;QAEJ,IAAI,IAAI,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;YACpB,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;QAC/B,CAAC;IACH,CAAC;CACF;AAnLD,0CAmLC;AAED,8EAA8E;AAC9E,SAAS,aAAa,CAAC,QAAgB;IACrC,yBAAyB;IACzB,MAAM,QAAQ,GAAG,QAAQ,CAAC,OAAO,CAAC,wBAAwB,EAAE,EAAE,CAAC,CAAC;IAChE,MAAM,KAAK,GAAG,QAAQ,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;IAEnC,MAAM,MAAM,GAAgE,EAAE,CAAC;IAC/E,MAAM,OAAO,GAAa,EAAE,CAAC;IAC7B,IAAI,OAAO,GAAa,EAAE,CAAC;IAE3B,MAAM,KAAK,GAAG,GAAG,EAAE;QACjB,MAAM,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,CAAC;QACvC,IAAI,CAAC,IAAI;YAAE,OAAO;QAClB,MAAM,cAAc,GAAG,OAAO,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;QAC5E,8BAA8B;QAC9B,MAAM,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;QAChC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC,IAAI,GAAG,EAAE,CAAC;YAC3C,MAAM,KAAK,GAAG,KAAK,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;YAChD,IAAI,KAAK,EAAE,CAAC;gBACV,MAAM,CAAC,IAAI,CAAC,EAAE,OAAO,EAAE,KAAK,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,cAAc,IAAI,IAAI,CAAC,CAAC,CAAC,EAAE,cAAc,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC;YACnG,CAAC;QACH,CAAC;QACD,OAAO,GAAG,EAAE,CAAC;IACf,CAAC,CAAC;IAEF,KAAK,MAAM,IAAI,IAAI,KAAK,EAAE,CAAC;QACzB,MAAM,WAAW,GAAG,IAAI,CAAC,KAAK,CAAC,kBAAkB,CAAC,CAAC;QACnD,IAAI,WAAW,EAAE,CAAC;YAChB,KAAK,EAAE,CAAC;YACR,MAAM,KAAK,GAAG,WAAW,CAAC,CAAC,CAAE,CAAC,MAAM,CAAC;YACrC,MAAM,IAAI,GAAG,WAAW,CAAC,CAAC,CAAE,CAAC,IAAI,EAAE,CAAC;YACpC,OAAO,OAAO,CAAC,MAAM,IAAI,KAAK;gBAAE,OAAO,CAAC,GAAG,EAAE,CAAC;YAC9C,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACrB,CAAC;aAAM,CAAC;YACN,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACrB,CAAC;IACH,CAAC;IACD,KAAK,EAAE,CAAC;IAER,OAAO,MAAM,CAAC;AAChB,CAAC;AAED,gEAAgE;AAChE,SAAS,YAAY,CAAC,IAAa,EAAE,KAAK,GAAG,CAAC;IAC5C,IAAI,KAAK,GAAG,EAAE;QAAE,OAAO,EAAE,CAAC;IAC1B,IAAI,OAAO,IAAI,KAAK,QAAQ;QAAE,OAAO,IAAI,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC;IAC/D,IAAI,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC;QAAE,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,YAAY,CAAC,IAAI,EAAE,KAAK,GAAG,CAAC,CAAC,CAAC,CAAC;IACtF,IAAI,OAAO,IAAI,KAAK,QAAQ,IAAI,IAAI,KAAK,IAAI,EAAE,CAAC;QAC9C,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,YAAY,CAAC,CAAC,EAAE,KAAK,GAAG,CAAC,CAAC,CAAC,CAAC;IACxE,CAAC;IACD,OAAO,EAAE,CAAC;AACZ,CAAC;AAED,gGAAgG;AAChG,SAAS,gBAAgB,CAAC,QAAgB;IACxC,MAAM,KAAK,GAAG,QAAQ,CAAC,KAAK,CAAC,uBAAuB,CAAC,CAAC;IACtD,IAAI,CAAC,KAAK;QAAE,OAAO,EAAE,CAAC;IACtB,MAAM,IAAI,GAAG,KAAK,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC;IAC5B,MAAM,SAAS,GAAG,IAAI,CAAC,KAAK,CAAC,qBAAqB,CAAC,CAAC;IACpD,OAAO,SAAS,CAAC,CAAC,CAAC,EAAE,QAAQ,EAAE,SAAS,CAAC,CAAC,CAAE,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;AAC7D,CAAC"}
|
package/local-docs-search.mjs
CHANGED
|
@@ -9,7 +9,7 @@ const EMBEDDED_METHODS = [
|
|
|
9
9
|
endpoint: '/v3/chats',
|
|
10
10
|
httpMethod: 'post',
|
|
11
11
|
summary: 'Create a new chat',
|
|
12
|
-
description: 'Create a new chat with specified participants and send an initial message.\nThe initial message is required when creating a chat.\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.
|
|
12
|
+
description: 'Create a new chat with specified participants and send an initial message.\nThe initial message is required when creating a chat.\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## First-Message Link Restriction\n\nTo protect sender deliverability, the **first outbound message** of a new chat cannot be a link.\nThe request is rejected with `400` (error code `1005`) when:\n\n- The message contains a `link` part (explicit rich-preview link), or\n- Any `text` part contains a URL.\n\nThis rule applies only to `POST /v3/chats`. Follow-up messages on an existing chat\n(`POST /v3/chats/{chatId}/messages`) are not subject to this restriction.\n\n## Reusing an Existing Chat\n\nChats are keyed on the `from` line plus the exact set of `to` handles. Repeating this\nrequest with the same `from` and `to` returns the **existing** chat and sends the message\ninto it instead of starting a second conversation.\n\nA group chat that has a `display_name` is excluded from that matching. To run several\nparallel groups over the same participants, name each one with `PUT /v3/chats/{chatId}`\nbefore creating the next: the following `POST /v3/chats` with the same `to` then returns a\nnew, separate `chat_id`. Two other cases also produce a new chat instead of reusing one —\nthe participant set changed (a participant was added or removed), or the `from` line left\nthe group.\n\nWhenever the response is a new chat, the first-message rules above apply to that request:\nno link in the first message, and no `reply_to` or message effect. To send into a chat you\nalready know, use `POST /v3/chats/{chatId}/messages` with its `chat_id`.\n',
|
|
13
13
|
stainlessPath: '(resource) chats > (method) create',
|
|
14
14
|
qualified: 'client.chats.create',
|
|
15
15
|
params: [
|
|
@@ -19,7 +19,7 @@ const EMBEDDED_METHODS = [
|
|
|
19
19
|
'override_optout?: boolean;',
|
|
20
20
|
],
|
|
21
21
|
response: "{ chat: { id: string; display_name: string; handles: object[]; health_status: { doc_url: string; status: 'HEALTHY' | 'AT_RISK' | 'CRITICAL' | 'OPTED_OUT'; updated_at: string; }; is_group: boolean; message: object; service: 'iMessage' | 'SMS' | 'RCS'; }; }",
|
|
22
|
-
markdown: "## create\n\n`client.chats.create(from: 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; }, to: string[], override_optout?: boolean): { chat: object; }`\n\n**post** `/v3/chats`\n\nCreate a new chat with specified participants and send an initial message.\nThe initial message is required when creating a chat.\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. Text decorations only render for iMessage recipients.\nFor SMS/RCS, text decorations are not applied.\n\n## First-Message Link Restriction\n\nTo protect sender deliverability, the **first outbound message** of a new chat cannot be a link.\nThe request is rejected with `400` (error code `1005`) when:\n\n- The message contains a `link` part (explicit rich-preview link), or\n- Any `text` part contains a URL.\n\nThis rule applies only to `POST /v3/chats`. Follow-up messages on an existing chat\n(`POST /v3/chats/{chatId}/messages`) are not subject to this restriction.\n\n## Reusing an Existing Chat\n\nChats are keyed on the `from` line plus the exact set of `to` handles. Repeating this\nrequest with the same `from` and `to` returns the **existing** chat and sends the message\ninto it instead of starting a second conversation.\n\nA group chat that has a `display_name` is excluded from that matching. To run several\nparallel groups over the same participants, name each one with `PUT /v3/chats/{chatId}`\nbefore creating the next: the following `POST /v3/chats` with the same `to` then returns a\nnew, separate `chat_id`. Two other cases also produce a new chat instead of reusing one —\nthe participant set changed (a participant was added or removed), or the `from` line left\nthe group.\n\nWhenever the response is a new chat, the first-message rules above apply to that request:\nno link in the first message, and no `reply_to` or message effect. To send into a chat you\nalready know, use `POST /v3/chats/{chatId}/messages` with its `chat_id`.\n\n\n### Parameters\n\n- `from: string`\n Sender phone number in E.164 format. Must be a phone number that the\nauthenticated partner has permission to send from.\n\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 Array of recipient handles (phone numbers in E.164 format or email addresses).\nFor individual chats, provide one recipient. For group chats, provide multiple.\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### Returns\n\n- `{ chat: { id: string; display_name: string; handles: object[]; health_status: { doc_url: string; status: 'HEALTHY' | 'AT_RISK' | 'CRITICAL' | 'OPTED_OUT'; updated_at: string; }; is_group: boolean; message: object; service: 'iMessage' | 'SMS' | 'RCS'; }; }`\n Response for creating a new chat with an initial message\n\n - `chat: { id: string; display_name: string; handles: { id: string; handle: string; joined_at: string; service: 'iMessage' | 'SMS' | 'RCS'; is_me?: boolean; left_at?: string; status?: 'active' | 'left' | 'removed'; }[]; health_status: { doc_url: string; status: 'HEALTHY' | 'AT_RISK' | 'CRITICAL' | 'OPTED_OUT'; updated_at: string; }; is_group: boolean; message: { id: string; created_at: string; delivery_status: 'pending' | 'queued' | 'sent' | 'delivered' | 'received' | 'read' | 'failed'; is_read: boolean; 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; }[]; sent_at: string; delivered_at?: string; effect?: object; from_handle?: object; preferred_service?: 'iMessage' | 'SMS' | 'RCS'; reply_to?: object; service?: 'iMessage' | 'SMS' | 'RCS'; }; service: 'iMessage' | 'SMS' | 'RCS'; }`\n\n### Example\n\n```typescript\nimport LinqAPIV3 from '@linqapp/sdk';\n\nconst client = new LinqAPIV3();\n\nconst chat = await client.chats.create({\n from: '+12052535597',\n message: {},\n to: ['+12052532136'],\n});\n\nconsole.log(chat);\n```",
|
|
22
|
+
markdown: "## create\n\n`client.chats.create(from: 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; }, to: string[], override_optout?: boolean): { chat: object; }`\n\n**post** `/v3/chats`\n\nCreate a new chat with specified participants and send an initial message.\nThe initial message is required when creating a chat.\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## First-Message Link Restriction\n\nTo protect sender deliverability, the **first outbound message** of a new chat cannot be a link.\nThe request is rejected with `400` (error code `1005`) when:\n\n- The message contains a `link` part (explicit rich-preview link), or\n- Any `text` part contains a URL.\n\nThis rule applies only to `POST /v3/chats`. Follow-up messages on an existing chat\n(`POST /v3/chats/{chatId}/messages`) are not subject to this restriction.\n\n## Reusing an Existing Chat\n\nChats are keyed on the `from` line plus the exact set of `to` handles. Repeating this\nrequest with the same `from` and `to` returns the **existing** chat and sends the message\ninto it instead of starting a second conversation.\n\nA group chat that has a `display_name` is excluded from that matching. To run several\nparallel groups over the same participants, name each one with `PUT /v3/chats/{chatId}`\nbefore creating the next: the following `POST /v3/chats` with the same `to` then returns a\nnew, separate `chat_id`. Two other cases also produce a new chat instead of reusing one —\nthe participant set changed (a participant was added or removed), or the `from` line left\nthe group.\n\nWhenever the response is a new chat, the first-message rules above apply to that request:\nno link in the first message, and no `reply_to` or message effect. To send into a chat you\nalready know, use `POST /v3/chats/{chatId}/messages` with its `chat_id`.\n\n\n### Parameters\n\n- `from: string`\n Sender phone number in E.164 format. Must be a phone number that the\nauthenticated partner has permission to send from.\n\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 Array of recipient handles (phone numbers in E.164 format or email addresses).\nFor individual chats, provide one recipient. For group chats, provide multiple.\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### Returns\n\n- `{ chat: { id: string; display_name: string; handles: object[]; health_status: { doc_url: string; status: 'HEALTHY' | 'AT_RISK' | 'CRITICAL' | 'OPTED_OUT'; updated_at: string; }; is_group: boolean; message: object; service: 'iMessage' | 'SMS' | 'RCS'; }; }`\n Response for creating a new chat with an initial message\n\n - `chat: { id: string; display_name: string; handles: { id: string; handle: string; joined_at: string; service: 'iMessage' | 'SMS' | 'RCS'; is_me?: boolean; left_at?: string; status?: 'active' | 'left' | 'removed'; }[]; health_status: { doc_url: string; status: 'HEALTHY' | 'AT_RISK' | 'CRITICAL' | 'OPTED_OUT'; updated_at: string; }; is_group: boolean; message: { id: string; created_at: string; delivery_status: 'pending' | 'queued' | 'sent' | 'delivered' | 'received' | 'read' | 'failed'; is_read: boolean; 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; }[]; sent_at: string; delivered_at?: string; effect?: object; from_handle?: object; preferred_service?: 'iMessage' | 'SMS' | 'RCS'; reply_to?: object; service?: 'iMessage' | 'SMS' | 'RCS'; }; service: 'iMessage' | 'SMS' | 'RCS'; }`\n\n### Example\n\n```typescript\nimport LinqAPIV3 from '@linqapp/sdk';\n\nconst client = new LinqAPIV3();\n\nconst chat = await client.chats.create({\n from: '+12052535597',\n message: {},\n to: ['+12052532136'],\n});\n\nconsole.log(chat);\n```",
|
|
23
23
|
perLanguage: {
|
|
24
24
|
go: {
|
|
25
25
|
method: 'client.Chats.New',
|
|
@@ -363,7 +363,7 @@ const EMBEDDED_METHODS = [
|
|
|
363
363
|
endpoint: '/v3/chats/{chatId}/messages',
|
|
364
364
|
httpMethod: 'post',
|
|
365
365
|
summary: 'Send a message to an existing chat',
|
|
366
|
-
description: 'Send 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.
|
|
366
|
+
description: 'Send 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',
|
|
367
367
|
stainlessPath: '(resource) chats.messages > (method) send',
|
|
368
368
|
qualified: 'client.chats.messages.send',
|
|
369
369
|
params: [
|
|
@@ -372,7 +372,7 @@ const EMBEDDED_METHODS = [
|
|
|
372
372
|
'override_optout?: boolean;',
|
|
373
373
|
],
|
|
374
374
|
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; }; }",
|
|
375
|
-
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.
|
|
375
|
+
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; 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```",
|
|
376
376
|
perLanguage: {
|
|
377
377
|
go: {
|
|
378
378
|
method: 'client.Chats.Messages.Send',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"local-docs-search.mjs","sourceRoot":"","sources":["src/local-docs-search.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"local-docs-search.mjs","sourceRoot":"","sources":["src/local-docs-search.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@linqapp/sdk-mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.43.0",
|
|
4
4
|
"description": "The official MCP Server for the Linq API V3 API",
|
|
5
5
|
"author": "Linq API V3 <support@linq.com>",
|
|
6
6
|
"types": "./index.d.ts",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"access": "public"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@linqapp/sdk": "^0.
|
|
21
|
+
"@linqapp/sdk": "^0.43.0",
|
|
22
22
|
"ajv": "^8.18.0",
|
|
23
23
|
"@cloudflare/cabidela": "^0.2.4",
|
|
24
24
|
"@hono/node-server": "^1.19.10",
|
package/server.js
CHANGED
|
@@ -19,7 +19,7 @@ const instructions_1 = require("./instructions.js");
|
|
|
19
19
|
const methods_1 = require("./methods.js");
|
|
20
20
|
const newMcpServer = async ({ stainlessApiKey, customInstructionsPath, }) => new mcp_js_1.McpServer({
|
|
21
21
|
name: 'linqapp_sdk_api',
|
|
22
|
-
version: '0.42.
|
|
22
|
+
version: '0.42.2',
|
|
23
23
|
}, {
|
|
24
24
|
instructions: await (0, instructions_1.getInstructions)({ stainlessApiKey, customInstructionsPath }),
|
|
25
25
|
capabilities: { tools: {}, logging: {} },
|
package/server.mjs
CHANGED
|
@@ -10,7 +10,7 @@ import { getInstructions } from "./instructions.mjs";
|
|
|
10
10
|
import { blockedMethodsForCodeTool } from "./methods.mjs";
|
|
11
11
|
export const newMcpServer = async ({ stainlessApiKey, customInstructionsPath, }) => new McpServer({
|
|
12
12
|
name: 'linqapp_sdk_api',
|
|
13
|
-
version: '0.42.
|
|
13
|
+
version: '0.42.2',
|
|
14
14
|
}, {
|
|
15
15
|
instructions: await getInstructions({ stainlessApiKey, customInstructionsPath }),
|
|
16
16
|
capabilities: { tools: {}, logging: {} },
|
package/src/local-docs-search.ts
CHANGED
|
@@ -56,7 +56,7 @@ const EMBEDDED_METHODS: MethodEntry[] = [
|
|
|
56
56
|
httpMethod: 'post',
|
|
57
57
|
summary: 'Create a new chat',
|
|
58
58
|
description:
|
|
59
|
-
'Create a new chat with specified participants and send an initial message.\nThe initial message is required when creating a chat.\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.
|
|
59
|
+
'Create a new chat with specified participants and send an initial message.\nThe initial message is required when creating a chat.\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## First-Message Link Restriction\n\nTo protect sender deliverability, the **first outbound message** of a new chat cannot be a link.\nThe request is rejected with `400` (error code `1005`) when:\n\n- The message contains a `link` part (explicit rich-preview link), or\n- Any `text` part contains a URL.\n\nThis rule applies only to `POST /v3/chats`. Follow-up messages on an existing chat\n(`POST /v3/chats/{chatId}/messages`) are not subject to this restriction.\n\n## Reusing an Existing Chat\n\nChats are keyed on the `from` line plus the exact set of `to` handles. Repeating this\nrequest with the same `from` and `to` returns the **existing** chat and sends the message\ninto it instead of starting a second conversation.\n\nA group chat that has a `display_name` is excluded from that matching. To run several\nparallel groups over the same participants, name each one with `PUT /v3/chats/{chatId}`\nbefore creating the next: the following `POST /v3/chats` with the same `to` then returns a\nnew, separate `chat_id`. Two other cases also produce a new chat instead of reusing one —\nthe participant set changed (a participant was added or removed), or the `from` line left\nthe group.\n\nWhenever the response is a new chat, the first-message rules above apply to that request:\nno link in the first message, and no `reply_to` or message effect. To send into a chat you\nalready know, use `POST /v3/chats/{chatId}/messages` with its `chat_id`.\n',
|
|
60
60
|
stainlessPath: '(resource) chats > (method) create',
|
|
61
61
|
qualified: 'client.chats.create',
|
|
62
62
|
params: [
|
|
@@ -68,7 +68,7 @@ const EMBEDDED_METHODS: MethodEntry[] = [
|
|
|
68
68
|
response:
|
|
69
69
|
"{ chat: { id: string; display_name: string; handles: object[]; health_status: { doc_url: string; status: 'HEALTHY' | 'AT_RISK' | 'CRITICAL' | 'OPTED_OUT'; updated_at: string; }; is_group: boolean; message: object; service: 'iMessage' | 'SMS' | 'RCS'; }; }",
|
|
70
70
|
markdown:
|
|
71
|
-
"## create\n\n`client.chats.create(from: 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; }, to: string[], override_optout?: boolean): { chat: object; }`\n\n**post** `/v3/chats`\n\nCreate a new chat with specified participants and send an initial message.\nThe initial message is required when creating a chat.\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. Text decorations only render for iMessage recipients.\nFor SMS/RCS, text decorations are not applied.\n\n## First-Message Link Restriction\n\nTo protect sender deliverability, the **first outbound message** of a new chat cannot be a link.\nThe request is rejected with `400` (error code `1005`) when:\n\n- The message contains a `link` part (explicit rich-preview link), or\n- Any `text` part contains a URL.\n\nThis rule applies only to `POST /v3/chats`. Follow-up messages on an existing chat\n(`POST /v3/chats/{chatId}/messages`) are not subject to this restriction.\n\n## Reusing an Existing Chat\n\nChats are keyed on the `from` line plus the exact set of `to` handles. Repeating this\nrequest with the same `from` and `to` returns the **existing** chat and sends the message\ninto it instead of starting a second conversation.\n\nA group chat that has a `display_name` is excluded from that matching. To run several\nparallel groups over the same participants, name each one with `PUT /v3/chats/{chatId}`\nbefore creating the next: the following `POST /v3/chats` with the same `to` then returns a\nnew, separate `chat_id`. Two other cases also produce a new chat instead of reusing one —\nthe participant set changed (a participant was added or removed), or the `from` line left\nthe group.\n\nWhenever the response is a new chat, the first-message rules above apply to that request:\nno link in the first message, and no `reply_to` or message effect. To send into a chat you\nalready know, use `POST /v3/chats/{chatId}/messages` with its `chat_id`.\n\n\n### Parameters\n\n- `from: string`\n Sender phone number in E.164 format. Must be a phone number that the\nauthenticated partner has permission to send from.\n\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 Array of recipient handles (phone numbers in E.164 format or email addresses).\nFor individual chats, provide one recipient. For group chats, provide multiple.\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### Returns\n\n- `{ chat: { id: string; display_name: string; handles: object[]; health_status: { doc_url: string; status: 'HEALTHY' | 'AT_RISK' | 'CRITICAL' | 'OPTED_OUT'; updated_at: string; }; is_group: boolean; message: object; service: 'iMessage' | 'SMS' | 'RCS'; }; }`\n Response for creating a new chat with an initial message\n\n - `chat: { id: string; display_name: string; handles: { id: string; handle: string; joined_at: string; service: 'iMessage' | 'SMS' | 'RCS'; is_me?: boolean; left_at?: string; status?: 'active' | 'left' | 'removed'; }[]; health_status: { doc_url: string; status: 'HEALTHY' | 'AT_RISK' | 'CRITICAL' | 'OPTED_OUT'; updated_at: string; }; is_group: boolean; message: { id: string; created_at: string; delivery_status: 'pending' | 'queued' | 'sent' | 'delivered' | 'received' | 'read' | 'failed'; is_read: boolean; 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; }[]; sent_at: string; delivered_at?: string; effect?: object; from_handle?: object; preferred_service?: 'iMessage' | 'SMS' | 'RCS'; reply_to?: object; service?: 'iMessage' | 'SMS' | 'RCS'; }; service: 'iMessage' | 'SMS' | 'RCS'; }`\n\n### Example\n\n```typescript\nimport LinqAPIV3 from '@linqapp/sdk';\n\nconst client = new LinqAPIV3();\n\nconst chat = await client.chats.create({\n from: '+12052535597',\n message: {},\n to: ['+12052532136'],\n});\n\nconsole.log(chat);\n```",
|
|
71
|
+
"## create\n\n`client.chats.create(from: 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; }, to: string[], override_optout?: boolean): { chat: object; }`\n\n**post** `/v3/chats`\n\nCreate a new chat with specified participants and send an initial message.\nThe initial message is required when creating a chat.\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## First-Message Link Restriction\n\nTo protect sender deliverability, the **first outbound message** of a new chat cannot be a link.\nThe request is rejected with `400` (error code `1005`) when:\n\n- The message contains a `link` part (explicit rich-preview link), or\n- Any `text` part contains a URL.\n\nThis rule applies only to `POST /v3/chats`. Follow-up messages on an existing chat\n(`POST /v3/chats/{chatId}/messages`) are not subject to this restriction.\n\n## Reusing an Existing Chat\n\nChats are keyed on the `from` line plus the exact set of `to` handles. Repeating this\nrequest with the same `from` and `to` returns the **existing** chat and sends the message\ninto it instead of starting a second conversation.\n\nA group chat that has a `display_name` is excluded from that matching. To run several\nparallel groups over the same participants, name each one with `PUT /v3/chats/{chatId}`\nbefore creating the next: the following `POST /v3/chats` with the same `to` then returns a\nnew, separate `chat_id`. Two other cases also produce a new chat instead of reusing one —\nthe participant set changed (a participant was added or removed), or the `from` line left\nthe group.\n\nWhenever the response is a new chat, the first-message rules above apply to that request:\nno link in the first message, and no `reply_to` or message effect. To send into a chat you\nalready know, use `POST /v3/chats/{chatId}/messages` with its `chat_id`.\n\n\n### Parameters\n\n- `from: string`\n Sender phone number in E.164 format. Must be a phone number that the\nauthenticated partner has permission to send from.\n\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 Array of recipient handles (phone numbers in E.164 format or email addresses).\nFor individual chats, provide one recipient. For group chats, provide multiple.\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### Returns\n\n- `{ chat: { id: string; display_name: string; handles: object[]; health_status: { doc_url: string; status: 'HEALTHY' | 'AT_RISK' | 'CRITICAL' | 'OPTED_OUT'; updated_at: string; }; is_group: boolean; message: object; service: 'iMessage' | 'SMS' | 'RCS'; }; }`\n Response for creating a new chat with an initial message\n\n - `chat: { id: string; display_name: string; handles: { id: string; handle: string; joined_at: string; service: 'iMessage' | 'SMS' | 'RCS'; is_me?: boolean; left_at?: string; status?: 'active' | 'left' | 'removed'; }[]; health_status: { doc_url: string; status: 'HEALTHY' | 'AT_RISK' | 'CRITICAL' | 'OPTED_OUT'; updated_at: string; }; is_group: boolean; message: { id: string; created_at: string; delivery_status: 'pending' | 'queued' | 'sent' | 'delivered' | 'received' | 'read' | 'failed'; is_read: boolean; 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; }[]; sent_at: string; delivered_at?: string; effect?: object; from_handle?: object; preferred_service?: 'iMessage' | 'SMS' | 'RCS'; reply_to?: object; service?: 'iMessage' | 'SMS' | 'RCS'; }; service: 'iMessage' | 'SMS' | 'RCS'; }`\n\n### Example\n\n```typescript\nimport LinqAPIV3 from '@linqapp/sdk';\n\nconst client = new LinqAPIV3();\n\nconst chat = await client.chats.create({\n from: '+12052535597',\n message: {},\n to: ['+12052532136'],\n});\n\nconsole.log(chat);\n```",
|
|
72
72
|
perLanguage: {
|
|
73
73
|
go: {
|
|
74
74
|
method: 'client.Chats.New',
|
|
@@ -484,7 +484,7 @@ const EMBEDDED_METHODS: MethodEntry[] = [
|
|
|
484
484
|
httpMethod: 'post',
|
|
485
485
|
summary: 'Send a message to an existing chat',
|
|
486
486
|
description:
|
|
487
|
-
'Send 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.
|
|
487
|
+
'Send 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',
|
|
488
488
|
stainlessPath: '(resource) chats.messages > (method) send',
|
|
489
489
|
qualified: 'client.chats.messages.send',
|
|
490
490
|
params: [
|
|
@@ -495,7 +495,7 @@ const EMBEDDED_METHODS: MethodEntry[] = [
|
|
|
495
495
|
response:
|
|
496
496
|
"{ 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; }; }",
|
|
497
497
|
markdown:
|
|
498
|
-
"## 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.
|
|
498
|
+
"## 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; 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```",
|
|
499
499
|
perLanguage: {
|
|
500
500
|
go: {
|
|
501
501
|
method: 'client.Chats.Messages.Send',
|