Rocky_Mountain_Vending/.pnpm-store/v10/files/b9/a61d9b789f4f84de749448430733a5515187cbb7bc20fd7e2faa0c4e818e13018950d01c31e2ca2c310eaf5cf16004af3b612448470a666748eb6e02543789
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

29 lines
1.1 KiB
Text

export type AttachmentType = 'event.attachment' | 'event.minidump' | 'event.applecrashreport' | 'unreal.context' | 'unreal.logs' | 'event.view_hierarchy';
/**
* An attachment to an event. This is used to upload arbitrary data to Sentry.
*
* Please take care to not add sensitive information in attachments.
*
* https://develop.sentry.dev/sdk/envelopes/#attachment
*/
export interface Attachment {
/**
* The attachment data. Can be a string or a binary data (byte array)
*/
data: string | Uint8Array;
/**
* The name of the uploaded file without a path component
*/
filename: string;
/**
* The content type of the attachment payload. Defaults to `application/octet-stream` if not specified.
*
* Any valid [media type](https://www.iana.org/assignments/media-types/media-types.xhtml) is allowed.
*/
contentType?: string;
/**
* The type of the attachment. Defaults to `event.attachment` if not specified.
*/
attachmentType?: AttachmentType;
}
//# sourceMappingURL=attachment.d.ts.map