File tree Expand file tree Collapse file tree 3 files changed +16
-4
lines changed Expand file tree Collapse file tree 3 files changed +16
-4
lines changed Original file line number Diff line number Diff line change @@ -523,7 +523,7 @@ export interface CommonTelemetryProperties {
523523 /**
524524 * UUID of the action
525525 */
526- id : string ;
526+ readonly id : string | string [ ] ;
527527 [ k : string ] : unknown ;
528528 } ;
529529 /**
Original file line number Diff line number Diff line change @@ -523,7 +523,7 @@ export interface CommonTelemetryProperties {
523523 /**
524524 * UUID of the action
525525 */
526- id : string ;
526+ readonly id : string | string [ ] ;
527527 [ k : string ] : unknown ;
528528 } ;
529529 /**
Original file line number Diff line number Diff line change 8787 "required" : [" id" ],
8888 "properties" : {
8989 "id" : {
90- "type" : " string" ,
9190 "description" : " UUID of the action" ,
92- "pattern" : " ^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$"
91+ "readOnly" : true ,
92+ "oneOf" : [
93+ {
94+ "type" : " string" ,
95+ "pattern" : " ^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$"
96+ },
97+ {
98+ "type" : " array" ,
99+ "items" : {
100+ "type" : " string" ,
101+ "pattern" : " ^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$"
102+ }
103+ }
104+ ]
93105 }
94106 }
95107 },
You can’t perform that action at this time.
0 commit comments