Skip to content

Commit

Permalink
Merge pull request #88 from dolittle/support-more-conversions
Browse files Browse the repository at this point in the history
Support more conversions
  • Loading branch information
jakhog authored Feb 8, 2022
2 parents a414c46 + 51111e2 commit 5703cee
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions Source/Runtime/Events.Processing/Projections.proto
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,17 @@ message ProjectionCopyToMongoDB {
}

enum BSONType {
NONE = 0;
DATE = 1;
GUID = 2;
None = 0;

DateAsDate = 1;
DateAsArray = 2;
DateAsDocument = 3;
DateAsString = 4;
DateAsInt64 = 5;

GUIDAsStandardBinary = 6;
GUIDAsCSharpLegacyBinary = 8;
GUIDAsString = 9;
}
}

Expand Down

0 comments on commit 5703cee

Please sign in to comment.