Skip to content

Commit 90afab5

Browse files
committed
chore: update schema
1 parent dce5217 commit 90afab5

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

packages/core/src/domain/telemetry/telemetryEvent.types.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -641,17 +641,17 @@ export interface CommonTelemetryProperties {
641641
*/
642642
model?: string
643643
/**
644-
* Number of device processors
644+
* Number of logical CPU cores available for scheduling on the device at runtime, as reported by the operating system.
645645
*/
646-
readonly processor_count?: number
646+
readonly logical_cpu_count?: number
647647
/**
648648
* Total RAM in megabytes
649649
*/
650650
readonly total_ram?: number
651651
/**
652652
* Whether the device is considered a low RAM device (Android)
653653
*/
654-
readonly is_low_ram_device?: boolean
654+
readonly is_low_ram?: boolean
655655
[k: string]: unknown
656656
}
657657
/**

packages/rum-core/src/rumEvent.types.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1685,17 +1685,17 @@ export interface CommonProperties {
16851685
*/
16861686
readonly brightness_level?: number
16871687
/**
1688-
* Number of device processors
1688+
* Number of logical CPU cores available for scheduling on the device at runtime, as reported by the operating system.
16891689
*/
1690-
readonly processor_count?: number
1690+
readonly logical_cpu_count?: number
16911691
/**
16921692
* Total RAM in megabytes
16931693
*/
16941694
readonly total_ram?: number
16951695
/**
16961696
* Whether the device is considered a low RAM device (Android)
16971697
*/
1698-
readonly is_low_ram_device?: boolean
1698+
readonly is_low_ram?: boolean
16991699
[k: string]: unknown
17001700
}
17011701
/**

packages/rum/src/types/sessionReplay.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ export type AddDocTypeNodeChange = [
419419
'#doctype' | StringReference,
420420
StringOrStringReference,
421421
StringOrStringReference,
422-
StringOrStringReference,
422+
StringOrStringReference
423423
]
424424
/**
425425
* Browser-specific. Schema representing a string, either expressed as a literal or as an index into the string table.
@@ -560,7 +560,7 @@ export type VisualViewportChange = [
560560
VisualViewportPageTop,
561561
VisualViewportWidth,
562562
VisualViewportHeight,
563-
VisualViewportScale,
563+
VisualViewportScale
564564
]
565565
/**
566566
* The offset of the left edge of the visual viewport from the left edge of the layout viewport in CSS pixels.

rum-events-format

Submodule rum-events-format updated 53 files

0 commit comments

Comments
 (0)