- regen with import-mappings - add CustomTypes and CustomInstances - update openapi-generator commit Instead of A.Value, IntOrString becomes a sum type with constructors IntOrStringI and IntOrStringS Instead of Text, Quantity becomes a newtype over Text. Currently no custom construction or serialization is implemeneted (i.e. the Text should be the wire format) See CustomTypes.hs for details on the Quantity type.
7 lines
262 B
Haskell
7 lines
262 B
Haskell
{-# OPTIONS_GHC -fno-warn-dodgy-imports #-}
|
|
|
|
module Kubernetes.OpenAPI.ImportMappings (module ImportMappings) where
|
|
|
|
import Kubernetes.OpenAPI.CustomTypes as ImportMappings (IntOrString(..))
|
|
import Kubernetes.OpenAPI.CustomTypes as ImportMappings (Quantity(..))
|