Skip to content

Commit

Permalink
[RUM-2436] telemetry: add usePartitionedCrossSiteSessionCookie conf…
Browse files Browse the repository at this point in the history
…ig parameter
  • Loading branch information
bcaudan committed Dec 20, 2023
1 parent 3098312 commit 5bb197c
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
6 changes: 5 additions & 1 deletion lib/cjs/generated/telemetry.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,9 +140,13 @@ export declare type TelemetryConfigurationEvent = CommonTelemetryProperties & {
*/
track_long_task?: boolean;
/**
* Whether a secure cross-site session cookie is used
* Whether a secure cross-site session cookie is used (deprecated)
*/
use_cross_site_session_cookie?: boolean;
/**
* Whether a partitioned secure cross-site session cookie is used
*/
use_partitioned_cross_site_session_cookie?: boolean;
/**
* Whether a secure session cookie is used
*/
Expand Down
6 changes: 5 additions & 1 deletion lib/esm/generated/telemetry.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,9 +140,13 @@ export declare type TelemetryConfigurationEvent = CommonTelemetryProperties & {
*/
track_long_task?: boolean;
/**
* Whether a secure cross-site session cookie is used
* Whether a secure cross-site session cookie is used (deprecated)
*/
use_cross_site_session_cookie?: boolean;
/**
* Whether a partitioned secure cross-site session cookie is used
*/
use_partitioned_cross_site_session_cookie?: boolean;
/**
* Whether a secure session cookie is used
*/
Expand Down
6 changes: 5 additions & 1 deletion schemas/telemetry/configuration-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,11 @@
},
"use_cross_site_session_cookie": {
"type": "boolean",
"description": "Whether a secure cross-site session cookie is used"
"description": "Whether a secure cross-site session cookie is used (deprecated)"
},
"use_partitioned_cross_site_session_cookie": {
"type": "boolean",
"description": "Whether a partitioned secure cross-site session cookie is used"
},
"use_secure_session_cookie": {
"type": "boolean",
Expand Down

0 comments on commit 5bb197c

Please sign in to comment.