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
12 changes: 12 additions & 0 deletions lib/cjs/generated/telemetry.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -417,6 +417,18 @@ export declare type TelemetryConfigurationEvent = CommonTelemetryProperties & {
* Whether a list of allowed origins is used to control SDK execution in browser extension contexts. When enabled, the SDK will check if the current origin matches the allowed origins list before running.
*/
use_allowed_tracking_origins?: boolean;
/**
* The version of the SDK that is running.
*/
sdk_version?: string;
/**
* The source of the SDK, e.g., 'browser', 'ios', 'android', 'flutter', 'react-native', 'unity', 'kotlin-multiplatform'.
*/
source?: string;
/**
* The variant of the SDK build (e.g., standard, lite, etc.).
*/
variant?: string;
[k: string]: unknown;
};
[k: string]: unknown;
Expand Down
12 changes: 12 additions & 0 deletions lib/esm/generated/telemetry.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -417,6 +417,18 @@ export declare type TelemetryConfigurationEvent = CommonTelemetryProperties & {
* Whether a list of allowed origins is used to control SDK execution in browser extension contexts. When enabled, the SDK will check if the current origin matches the allowed origins list before running.
*/
use_allowed_tracking_origins?: boolean;
/**
* The version of the SDK that is running.
*/
sdk_version?: string;
/**
* The source of the SDK, e.g., 'browser', 'ios', 'android', 'flutter', 'react-native', 'unity', 'kotlin-multiplatform'.
*/
source?: string;
/**
* The variant of the SDK build (e.g., standard, lite, etc.).
*/
variant?: string;
[k: string]: unknown;
};
[k: string]: unknown;
Expand Down
15 changes: 15 additions & 0 deletions schemas/telemetry/configuration-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -460,6 +460,21 @@
"description": "Whether a list of allowed origins is used to control SDK execution in browser extension contexts. When enabled, the SDK will check if the current origin matches the allowed origins list before running.",
"readOnly": false,
"default": false
},
"sdk_version": {
"type": "string",
"description": "The version of the SDK that is running.",
"readOnly": false
},
"source": {
"type": "string",
"description": "The source of the SDK, e.g., 'browser', 'ios', 'android', 'flutter', 'react-native', 'unity', 'kotlin-multiplatform'.",
"readOnly": false
},
"variant": {
"type": "string",
"description": "The variant of the SDK build (e.g., standard, lite, etc.).",
"readOnly": false
}
}
}
Expand Down