Skip to content

Commit d5178e7

Browse files
authored
[PANA-6072] update action schema to contain new field composed_path_selector (#365)
* [PANA-6072] update action schema to contain new field `composed_path_selector` * [PANA-6072] build source definitions
1 parent ca1ddcd commit d5178e7

3 files changed

Lines changed: 13 additions & 0 deletions

File tree

lib/cjs/generated/rum.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,10 @@ export type RumActionEvent = CommonProperties & ViewContainerSchema & {
131131
* CSS selector path of the target element
132132
*/
133133
readonly selector?: string;
134+
/**
135+
* Selector data based on the click event composed path
136+
*/
137+
readonly composed_path_selector?: string;
134138
/**
135139
* Width of the target element (in pixels)
136140
*/

lib/esm/generated/rum.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,10 @@ export type RumActionEvent = CommonProperties & ViewContainerSchema & {
131131
* CSS selector path of the target element
132132
*/
133133
readonly selector?: string;
134+
/**
135+
* Selector data based on the click event composed path
136+
*/
137+
readonly composed_path_selector?: string;
134138
/**
135139
* Width of the target element (in pixels)
136140
*/

schemas/rum/action-schema.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,11 @@
180180
"description": "CSS selector path of the target element",
181181
"readOnly": true
182182
},
183+
"composed_path_selector": {
184+
"type": "string",
185+
"description": "Selector data based on the click event composed path",
186+
"readOnly": true
187+
},
183188
"width": {
184189
"type": "integer",
185190
"description": "Width of the target element (in pixels)",

0 commit comments

Comments
 (0)