Skip to content

Commit c016866

Browse files
committed
Add Export message type to ThingType protocol
1 parent d551de7 commit c016866

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

common/concept.proto

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -329,6 +329,7 @@ message Type {
329329
ThingType.GetPlaysOverridden.Req thing_type_get_plays_overridden_req = 313; // TODO: reorder
330330
ThingType.SetPlays.Req thing_type_set_plays_req = 307;
331331
ThingType.UnsetPlays.Req thing_type_unset_plays_req = 308;
332+
ThingType.Export.Req thing_type_export_req = 314; // TODO: reorder
332333

333334
// EntityType method requests
334335
EntityType.Create.Req entity_type_create_req = 400;
@@ -369,6 +370,7 @@ message Type {
369370
ThingType.GetPlaysOverridden.Res thing_type_get_plays_overridden_res = 307; // TODO: reorder
370371
ThingType.SetPlays.Res thing_type_set_plays_res = 304;
371372
ThingType.UnsetPlays.Res thing_type_unset_plays_res = 305;
373+
ThingType.Export.Res thing_type_export_res = 308; // TODO: reorder
372374

373375
// EntityType method responses
374376
EntityType.Create.Res entity_type_create_res = 400;
@@ -623,6 +625,13 @@ message ThingType {
623625
}
624626
message Res {}
625627
}
628+
629+
message Export {
630+
message Req {}
631+
message Res {
632+
string schema = 1;
633+
}
634+
}
626635
}
627636

628637
// EntityType methods

0 commit comments

Comments
 (0)