File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ export BlobStoreEntry
20
20
$(TYPEDEF)
21
21
General Data Store Entry.
22
22
"""
23
- @Base . kwdef struct BlobStoreEntry <: AbstractDataEntry
23
+ @Base . kwdef struct BlobEntry <: AbstractDataEntry
24
24
""" This is created by server-side GraphQL """
25
25
id:: Union{UUID, Nothing} = nothing
26
26
""" This is the S3 blob ID, or the filesystem blob ID. """
@@ -33,12 +33,15 @@ General Data Store Entry.
33
33
origin:: String # E.g. user|robot|session|varlabel
34
34
description:: String
35
35
mimeType:: String
36
- metadata:: String = " "
36
+ metadata:: Dict{Symbol, SmallDataTypes} = Dict {Symbol,SmallDataTypes} ()
37
37
timestamp:: ZonedDateTime = now (localzone ())
38
- _type:: String = " BlobStoreEntry "
38
+ _type:: String = " BlobEntry "
39
39
_version:: String = string (_getDFGVersion ()) # TBD consider upgrading to ::VersionNumber
40
40
end
41
41
42
+ # should be deprecated by v0.21
43
+ const BlobStoreEntry = BlobEntry
44
+
42
45
_fixtimezone (cts:: NamedTuple ) = ZonedDateTime (cts. utc_datetime* " +00" )
43
46
44
47
# # needed for deserialization from JSON during DFG v0.19 transition, see #867
You can’t perform that action at this time.
0 commit comments