Skip to content

Commit

Permalink
remove default values
Browse files Browse the repository at this point in the history
  • Loading branch information
RomanGaignault committed Jan 13, 2025
1 parent 45f8abc commit d8b3d63
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions lib/cjs/generated/telemetry.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -382,9 +382,9 @@ export declare type TelemetryConfigurationEvent = CommonTelemetryProperties & {
*/
is_main_process?: boolean;
/**
* The list of events that include feature flags collection
* The list of events that include feature flags collection. The tracking is enabled by default on views and errors.
*/
collect_feature_flags_on?: ('view' | 'error' | 'vital' | 'resource' | 'action' | 'long_task')[];
collect_feature_flags_on?: ('vital' | 'resource' | 'action' | 'long_task')[];
/**
* Whether the anonymous users are tracked
*/
Expand Down
4 changes: 2 additions & 2 deletions lib/esm/generated/telemetry.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -382,9 +382,9 @@ export declare type TelemetryConfigurationEvent = CommonTelemetryProperties & {
*/
is_main_process?: boolean;
/**
* The list of events that include feature flags collection
* The list of events that include feature flags collection. The tracking is enabled by default on views and errors.
*/
collect_feature_flags_on?: ('view' | 'error' | 'vital' | 'resource' | 'action' | 'long_task')[];
collect_feature_flags_on?: ('vital' | 'resource' | 'action' | 'long_task')[];
/**
* Whether the anonymous users are tracked
*/
Expand Down
4 changes: 2 additions & 2 deletions schemas/telemetry/configuration-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -418,9 +418,9 @@
"type": "array",
"items": {
"type": "string",
"enum": ["view", "error", "vital", "resource", "action", "long_task"]
"enum": ["vital", "resource", "action", "long_task"]
},
"description": "The list of events that include feature flags collection"
"description": "The list of events that include feature flags collection. The tracking is enabled by default on views and errors."
},
"track_anonymous_user": {
"type": "boolean",
Expand Down

0 comments on commit d8b3d63

Please sign in to comment.