Skip to content

Commit bfe6bd9

Browse files
authored
Add beta_enable_view_updates to telemetry configuration schema (#399)
* Add beta_enable_view_updates to telemetry configuration schema * Fix generated type formatting after fresh build
1 parent eb64646 commit bfe6bd9

7 files changed

Lines changed: 25 additions & 4 deletions

File tree

lib/cjs/generated/browserSessionReplay.d.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,9 @@ export type AddStyleSheetChange = StyleSheetSnapshot;
226226
*
227227
* @minItems 1
228228
*/
229-
export type StyleSheetSnapshot = [StyleSheetRules] | [StyleSheetRules, StyleSheetMediaList] | [StyleSheetRules, StyleSheetMediaList, boolean];
229+
export type StyleSheetSnapshot = [
230+
StyleSheetRules
231+
] | [StyleSheetRules, StyleSheetMediaList] | [StyleSheetRules, StyleSheetMediaList, boolean];
230232
/**
231233
* Schema representing a CSS stylesheet's rules, encoded either as a single string or as an array containing a separate string for each rule.
232234
*/

lib/cjs/generated/sessionReplay.d.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,9 @@ export type AddStyleSheetChange = StyleSheetSnapshot;
234234
*
235235
* @minItems 1
236236
*/
237-
export type StyleSheetSnapshot = [StyleSheetRules] | [StyleSheetRules, StyleSheetMediaList] | [StyleSheetRules, StyleSheetMediaList, boolean];
237+
export type StyleSheetSnapshot = [
238+
StyleSheetRules
239+
] | [StyleSheetRules, StyleSheetMediaList] | [StyleSheetRules, StyleSheetMediaList, boolean];
238240
/**
239241
* Schema representing a CSS stylesheet's rules, encoded either as a single string or as an array containing a separate string for each rule.
240242
*/

lib/cjs/generated/telemetry.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -473,6 +473,10 @@ export type TelemetryConfigurationEvent = CommonTelemetryProperties & {
473473
* Whether the beta encode cookie options is enabled
474474
*/
475475
beta_encode_cookie_options?: boolean;
476+
/**
477+
* Whether the beta partial view updates feature is enabled
478+
*/
479+
beta_enable_view_updates?: boolean;
476480
[k: string]: unknown;
477481
};
478482
[k: string]: unknown;

lib/esm/generated/browserSessionReplay.d.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,9 @@ export type AddStyleSheetChange = StyleSheetSnapshot;
226226
*
227227
* @minItems 1
228228
*/
229-
export type StyleSheetSnapshot = [StyleSheetRules] | [StyleSheetRules, StyleSheetMediaList] | [StyleSheetRules, StyleSheetMediaList, boolean];
229+
export type StyleSheetSnapshot = [
230+
StyleSheetRules
231+
] | [StyleSheetRules, StyleSheetMediaList] | [StyleSheetRules, StyleSheetMediaList, boolean];
230232
/**
231233
* Schema representing a CSS stylesheet's rules, encoded either as a single string or as an array containing a separate string for each rule.
232234
*/

lib/esm/generated/sessionReplay.d.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,9 @@ export type AddStyleSheetChange = StyleSheetSnapshot;
234234
*
235235
* @minItems 1
236236
*/
237-
export type StyleSheetSnapshot = [StyleSheetRules] | [StyleSheetRules, StyleSheetMediaList] | [StyleSheetRules, StyleSheetMediaList, boolean];
237+
export type StyleSheetSnapshot = [
238+
StyleSheetRules
239+
] | [StyleSheetRules, StyleSheetMediaList] | [StyleSheetRules, StyleSheetMediaList, boolean];
238240
/**
239241
* Schema representing a CSS stylesheet's rules, encoded either as a single string or as an array containing a separate string for each rule.
240242
*/

lib/esm/generated/telemetry.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -473,6 +473,10 @@ export type TelemetryConfigurationEvent = CommonTelemetryProperties & {
473473
* Whether the beta encode cookie options is enabled
474474
*/
475475
beta_encode_cookie_options?: boolean;
476+
/**
477+
* Whether the beta partial view updates feature is enabled
478+
*/
479+
beta_enable_view_updates?: boolean;
476480
[k: string]: unknown;
477481
};
478482
[k: string]: unknown;

schemas/telemetry/configuration-schema.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -530,6 +530,11 @@
530530
"type": "boolean",
531531
"description": "Whether the beta encode cookie options is enabled",
532532
"readOnly": false
533+
},
534+
"beta_enable_view_updates": {
535+
"type": "boolean",
536+
"description": "Whether the beta partial view updates feature is enabled",
537+
"readOnly": false
533538
}
534539
}
535540
}

0 commit comments

Comments
 (0)