Skip to content

Commit

Permalink
Remove jstype=string from resources.proto (#1040)
Browse files Browse the repository at this point in the history
  • Loading branch information
Aswinr24 authored Oct 19, 2024
1 parent d1b173b commit 36d5b88
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions api/yorkie/v1/resources.proto
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ message Change {

message ChangeID {
uint32 client_seq = 1;
int64 server_seq = 2 [jstype = JS_STRING];
int64 lamport = 3 [jstype = JS_STRING];
int64 server_seq = 2;
int64 lamport = 3;
bytes actor_id = 4;
}

Expand Down Expand Up @@ -332,7 +332,7 @@ message Presence {
}

message Checkpoint {
int64 server_seq = 1 [jstype = JS_STRING];
int64 server_seq = 1;
uint32 client_seq = 2;
}

Expand All @@ -343,7 +343,7 @@ message TextNodePos {
}

message TimeTicket {
int64 lamport = 1 [jstype = JS_STRING];
int64 lamport = 1;
uint32 delimiter = 2;
bytes actor_id = 3;
}
Expand Down

0 comments on commit 36d5b88

Please sign in to comment.