Add live field provenance for React components

This commit is contained in:
Timothy J. Aveni
2026-07-12 18:24:18 -07:00
parent cab21888e6
commit 68c4c30d8f
2 changed files with 111 additions and 21 deletions
+16
View File
@@ -58,6 +58,19 @@ message CrdtValue {
bytes payload = 3; bytes payload = 3;
} }
message FieldValueSource {
string object_id = 1;
string field_name = 2;
string field_type = 3;
string field_storage = 4;
string conflict_strategy = 5;
uint64 revision = 6;
}
message ValueSource {
FieldValueSource field = 1;
}
message Value { message Value {
oneof kind { oneof kind {
NullValue null_value = 1; NullValue null_value = 1;
@@ -71,6 +84,7 @@ message Value {
RefValue ref_value = 9; RefValue ref_value = 9;
CrdtValue crdt_value = 10; CrdtValue crdt_value = 10;
} }
ValueSource source = 11;
} }
message CreateObjectRequest { message CreateObjectRequest {
@@ -94,6 +108,7 @@ message SetFieldRequest {
string object_id = 1; string object_id = 1;
string field_name = 2; string field_name = 2;
Value value = 3; Value value = 3;
string client_mutation_id = 4;
} }
message SetFieldResponse { message SetFieldResponse {
@@ -181,4 +196,5 @@ message CaminoOp {
string actor = 5; string actor = 5;
quixos.FunctionRef function_ref = 6; quixos.FunctionRef function_ref = 6;
string created_at = 7; string created_at = 7;
string client_mutation_id = 8;
} }
File diff suppressed because one or more lines are too long