Skip to content

Commit b83f609

Browse files
committed
feat: made unique boolean into enum
1 parent 53dfaca commit b83f609

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

proto/shared/shared.flow_definition.proto

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,14 @@ message FlowType {
2424
}
2525

2626
message FlowTypeSetting {
27+
enum UniquenessScope {
28+
UNKNOWN = 0;
29+
NONE = 1;
30+
PROJECT = 2;
31+
}
32+
2733
string identifier = 1;
28-
bool unique = 2;
34+
UniquenessScope unique = 2;
2935
string data_type_identifier = 3;
3036
optional shared.Value default_value = 4;
3137
repeated shared.Translation name = 5;

0 commit comments

Comments
 (0)