File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -66,6 +66,7 @@ fn main() -> Result<()> {
66
66
. type_attribute ( "kind" , serde_attribute)
67
67
. type_attribute ( "value" , serde_attribute)
68
68
. type_attribute ( "config" , serde_attribute)
69
+ . type_attribute ( "ReferencePath" , serde_attribute)
69
70
. type_attribute ( "ReferenceValue" , serde_attribute)
70
71
. type_attribute ( "NullValue" , serde_attribute)
71
72
. type_attribute ( "Value" , serde_attribute)
Original file line number Diff line number Diff line change @@ -49,7 +49,12 @@ message ReferenceValue {
49
49
int32 primary_level = 2 ;
50
50
int32 secondary_level = 3 ;
51
51
optional int32 tertiary_level = 4 ;
52
- string path = 5 ;
52
+ repeated ReferencePath paths = 5 ;
53
+ }
54
+
55
+ message ReferencePath {
56
+ optional string path = 1 ;
57
+ optional string array_index = 2 ;
53
58
}
54
59
55
60
message NodeParameterDefinition {
You can’t perform that action at this time.
0 commit comments