Skip to content

Commit 66418bb

Browse files
authored
add numeric types to the log payload (#99)
This should allow us to carry through numeric values without having to convert to string in the SDK
1 parent 8cdf0f8 commit 66418bb

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/bitdrift_public/protobuf/logging/v1/payload.proto

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ message Data {
2020
oneof data_type {
2121
string string_data = 1;
2222
BinaryData binary_data = 2;
23+
uint64 int_data = 3;
24+
double double_data = 4;
25+
int64 sint_data = 5;
26+
bool bool_data = 6;
2327
}
2428
}
2529

0 commit comments

Comments
 (0)