-
Notifications
You must be signed in to change notification settings - Fork 13
[ENG-347] Fade get-raw-message #97
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -145,6 +145,22 @@ types: | |
| type: list<MessageItem> | ||
| docs: Ordered by `timestamp` descending. | ||
|
|
||
| RawMessageResponse: | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. P1: According to linked Linear issue ENG-347, Prompt for AI agents |
||
| docs: Signed URL to download the raw .eml file. Uses CloudFront signing, same as attachments. | ||
| properties: | ||
| message_id: | ||
| type: MessageId | ||
| docs: ID of the message. | ||
| size: | ||
| type: MessageSize | ||
| docs: Size of the raw message in bytes. | ||
| download_url: | ||
| type: string | ||
| docs: Pre-signed CloudFront URL to download the raw message. Expires at expires_at. | ||
| expires_at: | ||
| type: datetime | ||
| docs: Time at which the download URL expires. | ||
|
|
||
| Addresses: | ||
| discriminated: false | ||
| union: | ||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -235,6 +235,7 @@ Copy one of the blocks below into Cursor or Claude for complete Messages API kno | |||||
| * - messages.forward(inboxId, messageId, { to, subject?, text?, html? }) | ||||||
| * - messages.update(inboxId, messageId, { addLabels?, removeLabels? }) | ||||||
| * - messages.getAttachment(inboxId, messageId, attachmentId) | ||||||
| * - messages.getRaw(inboxId, messageId) -> { message_id, size, download_url, expires_at } (CloudFront signed URL for .eml) | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. P2: Use camelCase field names for the TypeScript Prompt for AI agents
Suggested change
|
||||||
| * - messages.getRaw(inboxId, messageId) | ||||||
| * | ||||||
| * Reply content: use extractedText/extractedHtml for new content without quoted history. | ||||||
|
|
||||||
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
P1: According to linked Linear issue ENG-347,
getRawshould be faded/removed, but this change adds thegetRawendpoint back into the API definition.Prompt for AI agents