@@ -513,6 +513,15 @@ export type RumErrorEvent = CommonProperties &
513513 * Profiling context
514514 */
515515 profiling ?: ProfilingInternalContextSchema
516+ /**
517+ * Mapping of source file URLs to their debug IDs for source map deobfuscation
518+ */
519+ readonly debug_ids ?: {
520+ /**
521+ * Debug ID (UUID) for the source file
522+ */
523+ [ k : string ] : string
524+ }
516525 [ k : string ] : unknown
517526 }
518527 [ k : string ] : unknown
@@ -637,6 +646,15 @@ export type RumLongTaskEvent = CommonProperties &
637646 * Profiling context
638647 */
639648 profiling ?: ProfilingInternalContextSchema
649+ /**
650+ * Mapping of source file URLs to their debug IDs for source map deobfuscation
651+ */
652+ readonly debug_ids ?: {
653+ /**
654+ * Debug ID (UUID) for the source file
655+ */
656+ [ k : string ] : string
657+ }
640658 [ k : string ] : unknown
641659 }
642660 [ k : string ] : unknown
@@ -919,70 +937,7 @@ export type RumViewEvent = CommonProperties &
919937 }
920938 [ k : string ] : unknown
921939 }
922- /**
923- * Internal properties
924- */
925940 readonly _dd : {
926- /**
927- * Version of the update of the view event
928- */
929- readonly document_version : number
930- /**
931- * List of the page states during the view
932- */
933- readonly page_states ?: {
934- /**
935- * Page state name
936- */
937- readonly state : 'active' | 'passive' | 'hidden' | 'frozen' | 'terminated'
938- /**
939- * Duration in ns between start of the view and start of the page state
940- */
941- readonly start : number
942- [ k : string ] : unknown
943- } [ ]
944- /**
945- * Debug metadata for Replay Sessions
946- */
947- replay_stats ?: {
948- /**
949- * The number of records produced during this view lifetime
950- */
951- records_count ?: number
952- /**
953- * The number of segments sent during this view lifetime
954- */
955- segments_count ?: number
956- /**
957- * The total size in bytes of the segments sent during this view lifetime
958- */
959- segments_total_raw_size ?: number
960- [ k : string ] : unknown
961- }
962- /**
963- * Additional information of the reported Cumulative Layout Shift
964- */
965- readonly cls ?: {
966- /**
967- * Pixel ratio of the device where the layout shift was reported
968- */
969- readonly device_pixel_ratio ?: number
970- [ k : string ] : unknown
971- }
972- /**
973- * Subset of the SDK configuration options in use during its execution
974- */
975- readonly configuration ?: {
976- /**
977- * Whether session replay recording configured to start manually
978- */
979- readonly start_session_replay_recording_manually ?: boolean
980- [ k : string ] : unknown
981- }
982- /**
983- * Profiling context
984- */
985- profiling ?: ProfilingInternalContextSchema
986941 [ k : string ] : unknown
987942 }
988943 [ k : string ] : unknown
@@ -998,16 +953,6 @@ export type RumViewUpdateEvent = ViewContainerSchema &
998953 * RUM event type
999954 */
1000955 readonly type : 'view_update'
1001- /**
1002- * Internal properties
1003- */
1004- readonly _dd ?: {
1005- /**
1006- * Version of the update of the view event
1007- */
1008- readonly document_version : number
1009- [ k : string ] : unknown
1010- }
1011956 [ k : string ] : unknown
1012957 }
1013958export type RumVitalEvent = RumVitalDurationEvent | RumVitalOperationStepEvent
@@ -1657,6 +1602,26 @@ export interface ProfilingInternalContextSchema {
16571602 | 'failed-to-lazy-load'
16581603 | 'missing-document-policy-header'
16591604 | 'unexpected-exception'
1605+ /**
1606+ * The reason provided by the profiling quota admission API. This attribute is only present if the status is `stopped` due to quota.
1607+ *
1608+ * Possible values:
1609+ * - `quota_ok`: Quota check passed.
1610+ * - `quota_exceeded`: The organization has exceeded its profiling quota.
1611+ * - `org_disabled`: The organization has profiling disabled.
1612+ * - `backend_unavailable`: The quota admission API is unavailable or not initialized.
1613+ * - `undefined`: The quota reason is undefined.
1614+ * - `timeout`: The quota check timed out on the client side.
1615+ * - `api-error`: An API error occurred on the client side.
1616+ */
1617+ readonly quota_reason ?:
1618+ | 'quota_ok'
1619+ | 'quota_exceeded'
1620+ | 'org_disabled'
1621+ | 'backend_unavailable'
1622+ | 'undefined'
1623+ | 'timeout'
1624+ | 'api-error'
16601625 [ k : string ] : unknown
16611626}
16621627/**
@@ -2045,6 +2010,72 @@ export interface ViewProperties {
20452010 }
20462011 [ k : string ] : unknown
20472012 }
2013+ /**
2014+ * Internal properties
2015+ */
2016+ readonly _dd ?: {
2017+ /**
2018+ * Version of the update of the view event
2019+ */
2020+ readonly document_version : number
2021+ /**
2022+ * List of the page states during the view
2023+ */
2024+ readonly page_states ?: {
2025+ /**
2026+ * Page state name
2027+ */
2028+ readonly state : 'active' | 'passive' | 'hidden' | 'frozen' | 'terminated'
2029+ /**
2030+ * Duration in ns between start of the view and start of the page state
2031+ */
2032+ readonly start : number
2033+ [ k : string ] : unknown
2034+ } [ ]
2035+ /**
2036+ * Debug metadata for Replay Sessions
2037+ */
2038+ replay_stats ?: {
2039+ /**
2040+ * The number of records produced during this view lifetime
2041+ */
2042+ records_count ?: number
2043+ /**
2044+ * The number of segments sent during this view lifetime
2045+ */
2046+ segments_count ?: number
2047+ /**
2048+ * The total size in bytes of the segments sent during this view lifetime
2049+ */
2050+ segments_total_raw_size ?: number
2051+ [ k : string ] : unknown
2052+ }
2053+ /**
2054+ * Additional information of the reported Cumulative Layout Shift
2055+ */
2056+ readonly cls ?: {
2057+ /**
2058+ * Pixel ratio of the device where the layout shift was reported
2059+ */
2060+ readonly device_pixel_ratio ?: number
2061+ [ k : string ] : unknown
2062+ }
2063+ /**
2064+ * Subset of the SDK configuration options in use during its execution
2065+ */
2066+ readonly configuration ?: {
2067+ /**
2068+ * Whether session replay recording configured to start manually
2069+ */
2070+ readonly start_session_replay_recording_manually ?: boolean
2071+ [ k : string ] : unknown
2072+ }
2073+ /**
2074+ * Profiling context
2075+ */
2076+ profiling ?: ProfilingInternalContextSchema
2077+ [ k : string ] : unknown
2078+ }
20482079 [ k : string ] : unknown
20492080}
20502081/**
0 commit comments