Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/mcp-server/src/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export const newMcpServer = async ({
new McpServer(
{
name: 'linqapp_sdk_api',
version: '0.33.1',
version: '0.34.0',
},
{
instructions: await getInstructions({ stainlessApiKey, customInstructionsPath }),
Expand Down
3 changes: 2 additions & 1 deletion src/resources/attachments.ts
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,8 @@ export interface AttachmentCreateResponse {
/**
* Presigned URL for uploading the file. PUT the raw binary file content to this
* URL with the `required_headers`. Do not JSON-encode or multipart-wrap the body.
* Expires after 15 minutes.
* Expires after 15 minutes. Treat the URL as opaque — the hostname depends on
* partner configuration and is the same across sandbox and production.
*/
upload_url: string;
}
Expand Down
14 changes: 8 additions & 6 deletions src/resources/chats/chats.ts
Original file line number Diff line number Diff line change
Expand Up @@ -392,9 +392,10 @@ export namespace Chat {
* part of a longer one: `STOP` counts, `please stop` does not. Most keywords must
* match exactly, including case. `OPT OUT` is the exception — it matches in any
* casing, with or without the space or a hyphen, so `opt out`, `Opt-Out` and
* `optout` all count. It clears if they later send `START`, `OPTIN`, or `UNSTOP`,
* or if they keep replying on the chat — sustained two-way conversation is treated
* as a sign the stop keyword was a false positive.
* `optout` all count. It clears if they later send `START`, `OPTIN`, or `UNSTOP` —
* these match in any casing — or if they keep replying — replies in any
* conversation with you count, the same way the block does — since sustained
* two-way conversation is treated as a sign the stop keyword was a false positive.
*
* Linq enforces this: while a recipient is opted out, every send to them is
* rejected with `403` (error code `2024`) before the message is queued, across
Expand Down Expand Up @@ -880,9 +881,10 @@ export namespace ChatCreateResponse {
* part of a longer one: `STOP` counts, `please stop` does not. Most keywords must
* match exactly, including case. `OPT OUT` is the exception — it matches in any
* casing, with or without the space or a hyphen, so `opt out`, `Opt-Out` and
* `optout` all count. It clears if they later send `START`, `OPTIN`, or `UNSTOP`,
* or if they keep replying on the chat — sustained two-way conversation is treated
* as a sign the stop keyword was a false positive.
* `optout` all count. It clears if they later send `START`, `OPTIN`, or `UNSTOP` —
* these match in any casing — or if they keep replying — replies in any
* conversation with you count, the same way the block does — since sustained
* two-way conversation is treated as a sign the stop keyword was a false positive.
*
* Linq enforces this: while a recipient is opted out, every send to them is
* rejected with `403` (error code `2024`) before the message is queued, across
Expand Down
21 changes: 12 additions & 9 deletions src/resources/webhooks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -190,9 +190,10 @@ export namespace MessageEventV2 {
* part of a longer one: `STOP` counts, `please stop` does not. Most keywords must
* match exactly, including case. `OPT OUT` is the exception — it matches in any
* casing, with or without the space or a hyphen, so `opt out`, `Opt-Out` and
* `optout` all count. It clears if they later send `START`, `OPTIN`, or `UNSTOP`,
* or if they keep replying on the chat — sustained two-way conversation is treated
* as a sign the stop keyword was a false positive.
* `optout` all count. It clears if they later send `START`, `OPTIN`, or `UNSTOP` —
* these match in any casing — or if they keep replying — replies in any
* conversation with you count, the same way the block does — since sustained
* two-way conversation is treated as a sign the stop keyword was a false positive.
*
* Linq enforces this: while a recipient is opted out, every send to them is
* rejected with `403` (error code `2024`) before the message is queued, across
Expand Down Expand Up @@ -1206,9 +1207,10 @@ export namespace MessageEditedWebhookEvent {
* part of a longer one: `STOP` counts, `please stop` does not. Most keywords must
* match exactly, including case. `OPT OUT` is the exception — it matches in any
* casing, with or without the space or a hyphen, so `opt out`, `Opt-Out` and
* `optout` all count. It clears if they later send `START`, `OPTIN`, or `UNSTOP`,
* or if they keep replying on the chat — sustained two-way conversation is treated
* as a sign the stop keyword was a false positive.
* `optout` all count. It clears if they later send `START`, `OPTIN`, or `UNSTOP` —
* these match in any casing — or if they keep replying — replies in any
* conversation with you count, the same way the block does — since sustained
* two-way conversation is treated as a sign the stop keyword was a false positive.
*
* Linq enforces this: while a recipient is opted out, every send to them is
* rejected with `403` (error code `2024`) before the message is queued, across
Expand Down Expand Up @@ -1643,9 +1645,10 @@ export namespace ChatCreatedWebhookEvent {
* part of a longer one: `STOP` counts, `please stop` does not. Most keywords must
* match exactly, including case. `OPT OUT` is the exception — it matches in any
* casing, with or without the space or a hyphen, so `opt out`, `Opt-Out` and
* `optout` all count. It clears if they later send `START`, `OPTIN`, or `UNSTOP`,
* or if they keep replying on the chat — sustained two-way conversation is treated
* as a sign the stop keyword was a false positive.
* `optout` all count. It clears if they later send `START`, `OPTIN`, or `UNSTOP` —
* these match in any casing — or if they keep replying — replies in any
* conversation with you count, the same way the block does — since sustained
* two-way conversation is treated as a sign the stop keyword was a false positive.
*
* Linq enforces this: while a recipient is opted out, every send to them is
* rejected with `403` (error code `2024`) before the message is queued, across
Expand Down
Loading