forked from feast-dev/feast
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypes.ts
More file actions
29 lines (27 loc) · 698 Bytes
/
Copy pathtypes.ts
File metadata and controls
29 lines (27 loc) · 698 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
enum FEAST_FCO_TYPES {
dataSource = "dataSource",
entity = "entity",
featureView = "featureView",
featureService = "featureService",
}
enum FEAST_FEATURE_VALUE_TYPES {
FLOAT = "FLOAT",
INT64 = "INT64",
STRING = "STRING",
BOOL = "BOOL",
BYTES = "BYTES",
INT32 = "INT32",
DOUBLE = "DOUBLE",
UNIX_TIMESTAMP = "UNIX_TIMESTAMP",
INVALID = "INVALID",
BYTES_LIST = "BYTES_LIST",
STRING_LIST = "STRING_LIST",
INT32_LIST = "INT32_LIST",
INT64_LIST = "INT64_LIST",
DOUBLE_LIST = "DOUBLE_LIST",
FLOAT_LIST = "FLOAT_LIST",
BOOL_LIST = "BOOL_LIST",
UNIX_TIMESTAMP_LIST = "UNIX_TIMESTAMP_LIST",
NULL = "NULL"
}
export { FEAST_FCO_TYPES, FEAST_FEATURE_VALUE_TYPES };