Merge pull request #7 from typeable/fix-store-and-flags-2

More fixes
This commit is contained in:
Ville Tirronen 2022-07-28 13:45:30 +03:00 committed by GitHub
commit ab7e686d9d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -147,6 +147,9 @@ newtype IntId t = IntId { unIntId :: Integer }
#ifdef USE_FLAT
, Flat
#endif
#ifdef USE_STORE
, Data.Store.Store
#endif
#endif
, FromJSON, ToJSON, NFData, Hashable, FromJSONKey, ToJSONKey, ToSchema
, ToParamSchema, FromHttpApiData, ToHttpApiData, PathPiece, Arbitrary
@ -193,6 +196,9 @@ newtype Name t = Name { unName :: Text }
#ifdef USE_FLAT
, Flat
#endif
#ifdef USE_STORE
, Data.Store.Store
#endif
#endif
, FromJSON, ToJSON, NFData, Hashable, FromJSONKey, ToJSONKey, ToSchema
, ToParamSchema, FromHttpApiData, ToHttpApiData, PathPiece