@@ -358,12 +358,18 @@ class EventSpecification(google.protobuf.message.Message):
358
358
359
359
DESCRIPTOR : google .protobuf .descriptor .Descriptor
360
360
361
- SETUP_SCHEMA_FIELD_NUMBER : builtins .int
361
+ TITLE_FIELD_NUMBER : builtins .int
362
+ DESCRIPTION_FIELD_NUMBER : builtins .int
363
+ CONFIG_SCHEMA_FIELD_NUMBER : builtins .int
362
364
MESSAGE_SCHEMA_FIELD_NUMBER : builtins .int
363
365
MESSAGE_EXAMPLES_FIELD_NUMBER : builtins .int
366
+ title : builtins .str
367
+ """Event title."""
368
+ description : builtins .str
369
+ """Event description."""
364
370
@property
365
- def setup_schema (self ) -> google .protobuf .struct_pb2 .Struct :
366
- """JSON schema describing the component event setup data."""
371
+ def config_schema (self ) -> google .protobuf .struct_pb2 .Struct :
372
+ """JSON schema describing the component event config data."""
367
373
@property
368
374
def message_schema (self ) -> google .protobuf .struct_pb2 .Struct :
369
375
"""JSON schema describing the component event message data."""
@@ -373,12 +379,14 @@ class EventSpecification(google.protobuf.message.Message):
373
379
def __init__ (
374
380
self ,
375
381
* ,
376
- setup_schema : google .protobuf .struct_pb2 .Struct | None = ...,
382
+ title : builtins .str = ...,
383
+ description : builtins .str = ...,
384
+ config_schema : google .protobuf .struct_pb2 .Struct | None = ...,
377
385
message_schema : google .protobuf .struct_pb2 .Struct | None = ...,
378
386
message_examples : collections .abc .Iterable [google .protobuf .struct_pb2 .Struct ] | None = ...,
379
387
) -> None : ...
380
- def HasField (self , field_name : typing_extensions .Literal ["message_schema " , b"message_schema " , "setup_schema " , b"setup_schema " ]) -> builtins .bool : ...
381
- def ClearField (self , field_name : typing_extensions .Literal ["message_examples" , b"message_examples" , "message_schema" , b"message_schema" , "setup_schema " , b"setup_schema " ]) -> None : ...
388
+ def HasField (self , field_name : typing_extensions .Literal ["config_schema " , b"config_schema " , "message_schema " , b"message_schema " ]) -> builtins .bool : ...
389
+ def ClearField (self , field_name : typing_extensions .Literal ["config_schema" , b"config_schema" , "description" , b"description" , " message_examples" , b"message_examples" , "message_schema" , b"message_schema" , "title " , b"title " ]) -> None : ...
382
390
383
391
global___EventSpecification = EventSpecification
384
392
0 commit comments