We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 618ea94 commit e94db4fCopy full SHA for e94db4f
src/Types.fs
@@ -1,14 +1,16 @@
1
namespace SqlStreamStore.FSharp
2
3
+[<RequireQualifiedAccessAttribute>]
4
+type StreamMessageId =
5
+ | Custom of System.Guid
6
+ | Auto
7
+
8
type MessageDetails =
- { id: Id
9
+ { id: StreamMessageId
10
type_: string
11
jsonData: string
12
jsonMetadata: string }
13
-and Id =
- | Custom of System.Guid
- | Auto
14
15
[<RequireQualifiedAccessAttribute>]
16
type AppendVersion =
@@ -38,4 +40,4 @@ type AppendException =
38
40
39
41
type ReadingDirection =
42
| Forward
- | Backward
43
+ | Backward
0 commit comments