File tree Expand file tree Collapse file tree 6 files changed +6
-6
lines changed
library/Freckle/CloudEvent/V1 Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ cabal-version: 2.2
55-- see: https://github.com/sol/hpack
66
77name : cloudevents-haskell
8- version : 0.1 .0.0
8+ version : 0.2 .0.0
99synopsis : Unofficial Haskell SDK for the CloudEvents specification
1010description : See the README on GitHub at <https://github.com/freckle/cloudevents-haskell#readme>
1111category : Utils
Original file line number Diff line number Diff line change @@ -27,7 +27,6 @@ import Autodocodec
2727 , requiredField'
2828 , (.=)
2929 )
30- import Freckle.CloudEvent.V1.Event.Internal.Data (CloudEvent (.. ))
3130import Data.Aeson (FromJSON , ToJSON , encode )
3231import Data.Binary (Binary )
3332import Data.ByteString (ByteString )
@@ -36,6 +35,7 @@ import Data.Maybe (catMaybes)
3635import Data.String (IsString (.. ))
3736import Data.Text (Text )
3837import Data.Text.Encoding (encodeUtf8 )
38+ import Freckle.CloudEvent.V1.Event.Internal.Data (CloudEvent (.. ))
3939import GHC.Generics (Generic )
4040import GHC.Records (HasField )
4141import Iri.Rendering.Text (iri )
Original file line number Diff line number Diff line change @@ -13,11 +13,11 @@ import Autodocodec
1313 , HasObjectCodec (objectCodec )
1414 , object
1515 )
16- import Freckle.CloudEvent.V1.Event.Internal.Data (CloudEvent (.. ))
1716import Data.Aeson (FromJSON , ToJSON )
1817import Data.Binary (Binary )
1918import Data.Text (Text )
2019import Data.Time (UTCTime )
20+ import Freckle.CloudEvent.V1.Event.Internal.Data (CloudEvent (.. ))
2121import GHC.Generics (Generic )
2222import Iri.Data (Iri )
2323
Original file line number Diff line number Diff line change @@ -13,11 +13,11 @@ import Autodocodec
1313 , requiredField'
1414 , (.=)
1515 )
16- import Freckle.CloudEvent.V1.Event.Internal.Orphans ()
1716import Data.Aeson (FromJSON , ToJSON )
1817import Data.Binary (Binary )
1918import Data.Text (Text )
2019import Data.Time (UTCTime )
20+ import Freckle.CloudEvent.V1.Event.Internal.Orphans ()
2121import GHC.Generics (Generic )
2222import Iri.Data (Iri )
2323
Original file line number Diff line number Diff line change 33
44module Freckle.CloudEvent.V1.Event.Lens where
55
6- import Freckle.CloudEvent.V1.Event.Data (CloudEvent )
76import Control.Lens (makeLensesFor )
7+ import Freckle.CloudEvent.V1.Event.Internal.Data (CloudEvent )
88
99makeLensesFor
1010 [ (" ceId" , " _ceId" )
Original file line number Diff line number Diff line change @@ -8,9 +8,9 @@ import Prelude
88
99import Autodocodec (HasCodec , HasObjectCodec )
1010import Autodocodec.Schema (jsonSchemaViaCodec , validateAccordingTo )
11- import Freckle.CloudEvent.V1.Event.Data (CloudEvent )
1211import Data.Aeson (Value )
1312import Data.Kind (Type )
13+ import Freckle.CloudEvent.V1.Event.Data (CloudEvent )
1414
1515-- | Validates that a JSON value conforms to a specific CloudEvents specification.
1616-- Requires the event data type and extension attributes to be specified as type applications with the event data type first.
You can’t perform that action at this time.
0 commit comments