Skip to content
Merged
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
4 changes: 2 additions & 2 deletions lib/cjs/generated/rum.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1431,7 +1431,7 @@ export interface CommonProperties {
/**
* The source of this event
*/
readonly source?: 'android' | 'ios' | 'browser' | 'flutter' | 'react-native' | 'roku' | 'unity' | 'kotlin-multiplatform';
readonly source?: 'android' | 'ios' | 'browser' | 'flutter' | 'react-native' | 'roku' | 'unity' | 'kotlin-multiplatform' | 'electron';
/**
* View properties
*/
Expand Down Expand Up @@ -1747,7 +1747,7 @@ export interface ViewContainerSchema {
/**
* Source of the parent view
*/
readonly source: 'android' | 'ios' | 'browser' | 'flutter' | 'react-native' | 'roku' | 'unity' | 'kotlin-multiplatform';
readonly source: 'android' | 'ios' | 'browser' | 'flutter' | 'react-native' | 'roku' | 'unity' | 'kotlin-multiplatform' | 'electron';
[k: string]: unknown;
};
[k: string]: unknown;
Expand Down
2 changes: 1 addition & 1 deletion lib/cjs/generated/telemetry.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@ export interface CommonTelemetryProperties {
/**
* The source of this event
*/
readonly source: 'android' | 'ios' | 'browser' | 'flutter' | 'react-native' | 'unity' | 'kotlin-multiplatform';
readonly source: 'android' | 'ios' | 'browser' | 'flutter' | 'react-native' | 'unity' | 'kotlin-multiplatform' | 'electron';
/**
* The version of the SDK generating the telemetry event
*/
Expand Down
4 changes: 2 additions & 2 deletions lib/esm/generated/rum.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1431,7 +1431,7 @@ export interface CommonProperties {
/**
* The source of this event
*/
readonly source?: 'android' | 'ios' | 'browser' | 'flutter' | 'react-native' | 'roku' | 'unity' | 'kotlin-multiplatform';
readonly source?: 'android' | 'ios' | 'browser' | 'flutter' | 'react-native' | 'roku' | 'unity' | 'kotlin-multiplatform' | 'electron';
/**
* View properties
*/
Expand Down Expand Up @@ -1747,7 +1747,7 @@ export interface ViewContainerSchema {
/**
* Source of the parent view
*/
readonly source: 'android' | 'ios' | 'browser' | 'flutter' | 'react-native' | 'roku' | 'unity' | 'kotlin-multiplatform';
readonly source: 'android' | 'ios' | 'browser' | 'flutter' | 'react-native' | 'roku' | 'unity' | 'kotlin-multiplatform' | 'electron';
[k: string]: unknown;
};
[k: string]: unknown;
Expand Down
2 changes: 1 addition & 1 deletion lib/esm/generated/telemetry.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@ export interface CommonTelemetryProperties {
/**
* The source of this event
*/
readonly source: 'android' | 'ios' | 'browser' | 'flutter' | 'react-native' | 'unity' | 'kotlin-multiplatform';
readonly source: 'android' | 'ios' | 'browser' | 'flutter' | 'react-native' | 'unity' | 'kotlin-multiplatform' | 'electron';
/**
* The version of the SDK generating the telemetry event
*/
Expand Down
12 changes: 11 additions & 1 deletion schemas/rum/_common-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,17 @@
"source": {
"type": "string",
"description": "The source of this event",
"enum": ["android", "ios", "browser", "flutter", "react-native", "roku", "unity", "kotlin-multiplatform"],
"enum": [
"android",
"ios",
"browser",
"flutter",
"react-native",
"roku",
"unity",
"kotlin-multiplatform",
"electron"
],
"readOnly": true
},
"view": {
Expand Down
12 changes: 11 additions & 1 deletion schemas/rum/_view-container-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,17 @@
"source": {
"type": "string",
"description": "Source of the parent view",
"enum": ["android", "ios", "browser", "flutter", "react-native", "roku", "unity", "kotlin-multiplatform"],
"enum": [
"android",
"ios",
"browser",
"flutter",
"react-native",
"roku",
"unity",
"kotlin-multiplatform",
"electron"
],
"readOnly": true
}
},
Expand Down
2 changes: 1 addition & 1 deletion schemas/telemetry/_common-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"source": {
"type": "string",
"description": "The source of this event",
"enum": ["android", "ios", "browser", "flutter", "react-native", "unity", "kotlin-multiplatform"],
"enum": ["android", "ios", "browser", "flutter", "react-native", "unity", "kotlin-multiplatform", "electron"],
"readOnly": true
},
"version": {
Expand Down
Loading