diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -8,7 +8,7 @@
 
 ## Version
 
-`0.3.0`
+`0.5.0`
 
 
 ## Description
diff --git a/gen/Network/Google/DoubleClickBids.hs b/gen/Network/Google/DoubleClickBids.hs
--- a/gen/Network/Google/DoubleClickBids.hs
+++ b/gen/Network/Google/DoubleClickBids.hs
@@ -210,6 +210,7 @@
     -- ** DownloadResponse
     , DownloadResponse
     , downloadResponse
+    , drInventorySources
     , drInsertionOrders
     , drCampaigns
     , drLineItems
diff --git a/gen/Network/Google/DoubleClickBids/Types.hs b/gen/Network/Google/DoubleClickBids/Types.hs
--- a/gen/Network/Google/DoubleClickBids/Types.hs
+++ b/gen/Network/Google/DoubleClickBids/Types.hs
@@ -174,6 +174,7 @@
     -- * DownloadResponse
     , DownloadResponse
     , downloadResponse
+    , drInventorySources
     , drInsertionOrders
     , drCampaigns
     , drLineItems
@@ -249,4 +250,4 @@
 
 -- | View and manage your reports in DoubleClick Bid Manager
 doubleClickBidManagerScope :: Proxy '["https://www.googleapis.com/auth/doubleclickbidmanager"]
-doubleClickBidManagerScope = Proxy;
+doubleClickBidManagerScope = Proxy
diff --git a/gen/Network/Google/DoubleClickBids/Types/Product.hs b/gen/Network/Google/DoubleClickBids/Types/Product.hs
--- a/gen/Network/Google/DoubleClickBids/Types/Product.hs
+++ b/gen/Network/Google/DoubleClickBids/Types/Product.hs
@@ -23,11 +23,14 @@
 -- | List reports response.
 --
 -- /See:/ 'listReportsResponse' smart constructor.
-data ListReportsResponse = ListReportsResponse'
+data ListReportsResponse =
+  ListReportsResponse'
     { _lrrReports :: !(Maybe [Report])
     , _lrrKind    :: !Text
-    } deriving (Eq,Show,Data,Typeable,Generic)
+    }
+  deriving (Eq, Show, Data, Typeable, Generic)
 
+
 -- | Creates a value of 'ListReportsResponse' with the minimum fields required to make a request.
 --
 -- Use one of the following lenses to modify other fields as desired:
@@ -38,11 +41,12 @@
 listReportsResponse
     :: ListReportsResponse
 listReportsResponse =
-    ListReportsResponse'
+  ListReportsResponse'
     { _lrrReports = Nothing
     , _lrrKind = "doubleclickbidmanager#listReportsResponse"
     }
 
+
 -- | Retrieved reports.
 lrrReports :: Lens' ListReportsResponse [Report]
 lrrReports
@@ -74,7 +78,8 @@
 -- | Query metadata.
 --
 -- /See:/ 'queryMetadata' smart constructor.
-data QueryMetadata = QueryMetadata'
+data QueryMetadata =
+  QueryMetadata'
     { _qmGoogleCloudStoragePathForLatestReport :: !(Maybe Text)
     , _qmLocale                                :: !(Maybe Text)
     , _qmFormat                                :: !(Maybe QueryMetadataFormat)
@@ -86,8 +91,10 @@
     , _qmReportCount                           :: !(Maybe (Textual Int32))
     , _qmTitle                                 :: !(Maybe Text)
     , _qmSendNotification                      :: !(Maybe Bool)
-    } deriving (Eq,Show,Data,Typeable,Generic)
+    }
+  deriving (Eq, Show, Data, Typeable, Generic)
 
+
 -- | Creates a value of 'QueryMetadata' with the minimum fields required to make a request.
 --
 -- Use one of the following lenses to modify other fields as desired:
@@ -116,7 +123,7 @@
 queryMetadata
     :: QueryMetadata
 queryMetadata =
-    QueryMetadata'
+  QueryMetadata'
     { _qmGoogleCloudStoragePathForLatestReport = Nothing
     , _qmLocale = Nothing
     , _qmFormat = Nothing
@@ -130,6 +137,7 @@
     , _qmSendNotification = Nothing
     }
 
+
 -- | The path to the location in Google Cloud Storage where the latest report
 -- is stored.
 qmGoogleCloudStoragePathForLatestReport :: Lens' QueryMetadata (Maybe Text)
@@ -239,13 +247,16 @@
 -- | Request to run a stored query to generate a report.
 --
 -- /See:/ 'runQueryRequest' smart constructor.
-data RunQueryRequest = RunQueryRequest'
+data RunQueryRequest =
+  RunQueryRequest'
     { _rqrReportDataEndTimeMs   :: !(Maybe (Textual Int64))
     , _rqrDataRange             :: !(Maybe RunQueryRequestDataRange)
     , _rqrReportDataStartTimeMs :: !(Maybe (Textual Int64))
     , _rqrTimezoneCode          :: !(Maybe Text)
-    } deriving (Eq,Show,Data,Typeable,Generic)
+    }
+  deriving (Eq, Show, Data, Typeable, Generic)
 
+
 -- | Creates a value of 'RunQueryRequest' with the minimum fields required to make a request.
 --
 -- Use one of the following lenses to modify other fields as desired:
@@ -260,13 +271,14 @@
 runQueryRequest
     :: RunQueryRequest
 runQueryRequest =
-    RunQueryRequest'
+  RunQueryRequest'
     { _rqrReportDataEndTimeMs = Nothing
     , _rqrDataRange = Nothing
     , _rqrReportDataStartTimeMs = Nothing
     , _rqrTimezoneCode = Nothing
     }
 
+
 -- | The ending time for the data that is shown in the report. Note,
 -- reportDataEndTimeMs is required if dataRange is CUSTOM_DATES and ignored
 -- otherwise.
@@ -320,11 +332,14 @@
 -- | Filter used to match traffic data in your report.
 --
 -- /See:/ 'filterPair' smart constructor.
-data FilterPair = FilterPair'
+data FilterPair =
+  FilterPair'
     { _fpValue :: !(Maybe Text)
     , _fpType  :: !(Maybe FilterPairType)
-    } deriving (Eq,Show,Data,Typeable,Generic)
+    }
+  deriving (Eq, Show, Data, Typeable, Generic)
 
+
 -- | Creates a value of 'FilterPair' with the minimum fields required to make a request.
 --
 -- Use one of the following lenses to modify other fields as desired:
@@ -334,12 +349,9 @@
 -- * 'fpType'
 filterPair
     :: FilterPair
-filterPair =
-    FilterPair'
-    { _fpValue = Nothing
-    , _fpType = Nothing
-    }
+filterPair = FilterPair' {_fpValue = Nothing, _fpType = Nothing}
 
+
 -- | Filter value.
 fpValue :: Lens' FilterPair (Maybe Text)
 fpValue = lens _fpValue (\ s a -> s{_fpValue = a})
@@ -363,12 +375,15 @@
 -- | Request to upload line items.
 --
 -- /See:/ 'uploadLineItemsRequest' smart constructor.
-data UploadLineItemsRequest = UploadLineItemsRequest'
+data UploadLineItemsRequest =
+  UploadLineItemsRequest'
     { _ulirLineItems :: !(Maybe Text)
     , _ulirFormat    :: !(Maybe UploadLineItemsRequestFormat)
     , _ulirDryRun    :: !(Maybe Bool)
-    } deriving (Eq,Show,Data,Typeable,Generic)
+    }
+  deriving (Eq, Show, Data, Typeable, Generic)
 
+
 -- | Creates a value of 'UploadLineItemsRequest' with the minimum fields required to make a request.
 --
 -- Use one of the following lenses to modify other fields as desired:
@@ -381,12 +396,10 @@
 uploadLineItemsRequest
     :: UploadLineItemsRequest
 uploadLineItemsRequest =
-    UploadLineItemsRequest'
-    { _ulirLineItems = Nothing
-    , _ulirFormat = Nothing
-    , _ulirDryRun = Nothing
-    }
+  UploadLineItemsRequest'
+    {_ulirLineItems = Nothing, _ulirFormat = Nothing, _ulirDryRun = Nothing}
 
+
 -- | Line items in CSV to upload. Refer to Entity Write File Format for more
 -- information on file format.
 ulirLineItems :: Lens' UploadLineItemsRequest (Maybe Text)
@@ -424,13 +437,16 @@
 -- | Request to fetch stored line items.
 --
 -- /See:/ 'downloadLineItemsRequest' smart constructor.
-data DownloadLineItemsRequest = DownloadLineItemsRequest'
+data DownloadLineItemsRequest =
+  DownloadLineItemsRequest'
     { _dlirFilterType :: !(Maybe DownloadLineItemsRequestFilterType)
     , _dlirFormat     :: !(Maybe DownloadLineItemsRequestFormat)
     , _dlirFileSpec   :: !(Maybe DownloadLineItemsRequestFileSpec)
     , _dlirFilterIds  :: !(Maybe [Textual Int64])
-    } deriving (Eq,Show,Data,Typeable,Generic)
+    }
+  deriving (Eq, Show, Data, Typeable, Generic)
 
+
 -- | Creates a value of 'DownloadLineItemsRequest' with the minimum fields required to make a request.
 --
 -- Use one of the following lenses to modify other fields as desired:
@@ -445,13 +461,14 @@
 downloadLineItemsRequest
     :: DownloadLineItemsRequest
 downloadLineItemsRequest =
-    DownloadLineItemsRequest'
+  DownloadLineItemsRequest'
     { _dlirFilterType = Nothing
     , _dlirFormat = Nothing
     , _dlirFileSpec = Nothing
     , _dlirFilterIds = Nothing
     }
 
+
 -- | Filter type used to filter line items to fetch.
 dlirFilterType :: Lens' DownloadLineItemsRequest (Maybe DownloadLineItemsRequestFilterType)
 dlirFilterType
@@ -496,17 +513,20 @@
                   ("fileSpec" .=) <$> _dlirFileSpec,
                   ("filterIds" .=) <$> _dlirFilterIds])
 
--- | Request to fetch stored campaigns, insertion orders, line items,
--- TrueView ad groups and ads.
+-- | Request to fetch stored inventory sources, campaigns, insertion orders,
+-- line items, TrueView ad groups and ads.
 --
 -- /See:/ 'downloadRequest' smart constructor.
-data DownloadRequest = DownloadRequest'
+data DownloadRequest =
+  DownloadRequest'
     { _drFileTypes  :: !(Maybe [DownloadRequestFileTypesItem])
     , _drFilterType :: !(Maybe DownloadRequestFilterType)
     , _drVersion    :: !(Maybe Text)
     , _drFilterIds  :: !(Maybe [Textual Int64])
-    } deriving (Eq,Show,Data,Typeable,Generic)
+    }
+  deriving (Eq, Show, Data, Typeable, Generic)
 
+
 -- | Creates a value of 'DownloadRequest' with the minimum fields required to make a request.
 --
 -- Use one of the following lenses to modify other fields as desired:
@@ -521,22 +541,26 @@
 downloadRequest
     :: DownloadRequest
 downloadRequest =
-    DownloadRequest'
+  DownloadRequest'
     { _drFileTypes = Nothing
     , _drFilterType = Nothing
     , _drVersion = Nothing
     , _drFilterIds = Nothing
     }
 
--- | File types that will be returned. Acceptable values are: - \"AD\" -
--- \"AD_GROUP\" - \"CAMPAIGN\" - \"INSERTION_ORDER\" - \"LINE_ITEM\"
+
+-- | File types that will be returned. If INVENTORY_SOURCE is requested, no
+-- other file types may be requested. Acceptable values are: - \"AD\" -
+-- \"AD_GROUP\" - \"CAMPAIGN\" - \"INSERTION_ORDER\" - \"INVENTORY_SOURCE\"
+-- - \"LINE_ITEM\"
 drFileTypes :: Lens' DownloadRequest [DownloadRequestFileTypesItem]
 drFileTypes
   = lens _drFileTypes (\ s a -> s{_drFileTypes = a}) .
       _Default
       . _Coerce
 
--- | Filter type used to filter entities to fetch.
+-- | Filter type used to filter entities to fetch. PARTNER_ID and
+-- INVENTORY_SOURCE_ID may only be used when downloading inventory sources.
 drFilterType :: Lens' DownloadRequest (Maybe DownloadRequestFilterType)
 drFilterType
   = lens _drFilterType (\ s a -> s{_drFilterType = a})
@@ -577,11 +601,14 @@
 -- | List queries response.
 --
 -- /See:/ 'listQueriesResponse' smart constructor.
-data ListQueriesResponse = ListQueriesResponse'
+data ListQueriesResponse =
+  ListQueriesResponse'
     { _lqrQueries :: !(Maybe [Query])
     , _lqrKind    :: !Text
-    } deriving (Eq,Show,Data,Typeable,Generic)
+    }
+  deriving (Eq, Show, Data, Typeable, Generic)
 
+
 -- | Creates a value of 'ListQueriesResponse' with the minimum fields required to make a request.
 --
 -- Use one of the following lenses to modify other fields as desired:
@@ -592,11 +619,12 @@
 listQueriesResponse
     :: ListQueriesResponse
 listQueriesResponse =
-    ListQueriesResponse'
+  ListQueriesResponse'
     { _lqrQueries = Nothing
     , _lqrKind = "doubleclickbidmanager#listQueriesResponse"
     }
 
+
 -- | Retrieved queries.
 lqrQueries :: Lens' ListQueriesResponse [Query]
 lqrQueries
@@ -628,10 +656,13 @@
 -- | Upload line items response.
 --
 -- /See:/ 'uploadLineItemsResponse' smart constructor.
-newtype UploadLineItemsResponse = UploadLineItemsResponse'
+newtype UploadLineItemsResponse =
+  UploadLineItemsResponse'
     { _ulirUploadStatus :: Maybe UploadStatus
-    } deriving (Eq,Show,Data,Typeable,Generic)
+    }
+  deriving (Eq, Show, Data, Typeable, Generic)
 
+
 -- | Creates a value of 'UploadLineItemsResponse' with the minimum fields required to make a request.
 --
 -- Use one of the following lenses to modify other fields as desired:
@@ -639,11 +670,9 @@
 -- * 'ulirUploadStatus'
 uploadLineItemsResponse
     :: UploadLineItemsResponse
-uploadLineItemsResponse =
-    UploadLineItemsResponse'
-    { _ulirUploadStatus = Nothing
-    }
+uploadLineItemsResponse = UploadLineItemsResponse' {_ulirUploadStatus = Nothing}
 
+
 -- | Status of upload.
 ulirUploadStatus :: Lens' UploadLineItemsResponse (Maybe UploadStatus)
 ulirUploadStatus
@@ -665,13 +694,16 @@
 -- | Report metadata.
 --
 -- /See:/ 'reportMetadata' smart constructor.
-data ReportMetadata = ReportMetadata'
+data ReportMetadata =
+  ReportMetadata'
     { _rmStatus                 :: !(Maybe ReportStatus)
     , _rmReportDataEndTimeMs    :: !(Maybe (Textual Int64))
     , _rmGoogleCloudStoragePath :: !(Maybe Text)
     , _rmReportDataStartTimeMs  :: !(Maybe (Textual Int64))
-    } deriving (Eq,Show,Data,Typeable,Generic)
+    }
+  deriving (Eq, Show, Data, Typeable, Generic)
 
+
 -- | Creates a value of 'ReportMetadata' with the minimum fields required to make a request.
 --
 -- Use one of the following lenses to modify other fields as desired:
@@ -686,13 +718,14 @@
 reportMetadata
     :: ReportMetadata
 reportMetadata =
-    ReportMetadata'
+  ReportMetadata'
     { _rmStatus = Nothing
     , _rmReportDataEndTimeMs = Nothing
     , _rmGoogleCloudStoragePath = Nothing
     , _rmReportDataStartTimeMs = Nothing
     }
 
+
 -- | Report status.
 rmStatus :: Lens' ReportMetadata (Maybe ReportStatus)
 rmStatus = lens _rmStatus (\ s a -> s{_rmStatus = a})
@@ -742,12 +775,15 @@
 -- | Represents a report.
 --
 -- /See:/ 'report' smart constructor.
-data Report = Report'
+data Report =
+  Report'
     { _rParams   :: !(Maybe Parameters)
     , _rKey      :: !(Maybe ReportKey)
     , _rMetadata :: !(Maybe ReportMetadata)
-    } deriving (Eq,Show,Data,Typeable,Generic)
+    }
+  deriving (Eq, Show, Data, Typeable, Generic)
 
+
 -- | Creates a value of 'Report' with the minimum fields required to make a request.
 --
 -- Use one of the following lenses to modify other fields as desired:
@@ -759,13 +795,9 @@
 -- * 'rMetadata'
 report
     :: Report
-report =
-    Report'
-    { _rParams = Nothing
-    , _rKey = Nothing
-    , _rMetadata = Nothing
-    }
+report = Report' {_rParams = Nothing, _rKey = Nothing, _rMetadata = Nothing}
 
+
 -- | Report parameters.
 rParams :: Lens' Report (Maybe Parameters)
 rParams = lens _rParams (\ s a -> s{_rParams = a})
@@ -797,15 +829,18 @@
 -- | Represents the upload status of a row in the request.
 --
 -- /See:/ 'rowStatus' smart constructor.
-data RowStatus = RowStatus'
+data RowStatus =
+  RowStatus'
     { _rsEntityName :: !(Maybe Text)
     , _rsChanged    :: !(Maybe Bool)
     , _rsPersisted  :: !(Maybe Bool)
     , _rsRowNumber  :: !(Maybe (Textual Int32))
     , _rsErrors     :: !(Maybe [Text])
     , _rsEntityId   :: !(Maybe (Textual Int64))
-    } deriving (Eq,Show,Data,Typeable,Generic)
+    }
+  deriving (Eq, Show, Data, Typeable, Generic)
 
+
 -- | Creates a value of 'RowStatus' with the minimum fields required to make a request.
 --
 -- Use one of the following lenses to modify other fields as desired:
@@ -824,7 +859,7 @@
 rowStatus
     :: RowStatus
 rowStatus =
-    RowStatus'
+  RowStatus'
     { _rsEntityName = Nothing
     , _rsChanged = Nothing
     , _rsPersisted = Nothing
@@ -833,6 +868,7 @@
     , _rsEntityId = Nothing
     }
 
+
 -- | Entity name.
 rsEntityName :: Lens' RowStatus (Maybe Text)
 rsEntityName
@@ -892,11 +928,14 @@
 -- | Key used to identify a report.
 --
 -- /See:/ 'reportKey' smart constructor.
-data ReportKey = ReportKey'
+data ReportKey =
+  ReportKey'
     { _rkQueryId  :: !(Maybe (Textual Int64))
     , _rkReportId :: !(Maybe (Textual Int64))
-    } deriving (Eq,Show,Data,Typeable,Generic)
+    }
+  deriving (Eq, Show, Data, Typeable, Generic)
 
+
 -- | Creates a value of 'ReportKey' with the minimum fields required to make a request.
 --
 -- Use one of the following lenses to modify other fields as desired:
@@ -906,12 +945,9 @@
 -- * 'rkReportId'
 reportKey
     :: ReportKey
-reportKey =
-    ReportKey'
-    { _rkQueryId = Nothing
-    , _rkReportId = Nothing
-    }
+reportKey = ReportKey' {_rkQueryId = Nothing, _rkReportId = Nothing}
 
+
 -- | Query ID.
 rkQueryId :: Lens' ReportKey (Maybe Int64)
 rkQueryId
@@ -941,11 +977,14 @@
 -- | Represents the status of upload.
 --
 -- /See:/ 'uploadStatus' smart constructor.
-data UploadStatus = UploadStatus'
+data UploadStatus =
+  UploadStatus'
     { _usRowStatus :: !(Maybe [RowStatus])
     , _usErrors    :: !(Maybe [Text])
-    } deriving (Eq,Show,Data,Typeable,Generic)
+    }
+  deriving (Eq, Show, Data, Typeable, Generic)
 
+
 -- | Creates a value of 'UploadStatus' with the minimum fields required to make a request.
 --
 -- Use one of the following lenses to modify other fields as desired:
@@ -955,12 +994,9 @@
 -- * 'usErrors'
 uploadStatus
     :: UploadStatus
-uploadStatus =
-    UploadStatus'
-    { _usRowStatus = Nothing
-    , _usErrors = Nothing
-    }
+uploadStatus = UploadStatus' {_usRowStatus = Nothing, _usErrors = Nothing}
 
+
 -- | Per-row upload status.
 usRowStatus :: Lens' UploadStatus [RowStatus]
 usRowStatus
@@ -993,13 +1029,16 @@
 -- | Information on how frequently and when to run a query.
 --
 -- /See:/ 'querySchedule' smart constructor.
-data QuerySchedule = QuerySchedule'
+data QuerySchedule =
+  QuerySchedule'
     { _qsFrequency           :: !(Maybe QueryScheduleFrequency)
     , _qsEndTimeMs           :: !(Maybe (Textual Int64))
     , _qsNextRunMinuteOfDay  :: !(Maybe (Textual Int32))
     , _qsNextRunTimezoneCode :: !(Maybe Text)
-    } deriving (Eq,Show,Data,Typeable,Generic)
+    }
+  deriving (Eq, Show, Data, Typeable, Generic)
 
+
 -- | Creates a value of 'QuerySchedule' with the minimum fields required to make a request.
 --
 -- Use one of the following lenses to modify other fields as desired:
@@ -1014,13 +1053,14 @@
 querySchedule
     :: QuerySchedule
 querySchedule =
-    QuerySchedule'
+  QuerySchedule'
     { _qsFrequency = Nothing
     , _qsEndTimeMs = Nothing
     , _qsNextRunMinuteOfDay = Nothing
     , _qsNextRunTimezoneCode = Nothing
     }
 
+
 -- | How often the query is run.
 qsFrequency :: Lens' QuerySchedule (Maybe QueryScheduleFrequency)
 qsFrequency
@@ -1070,10 +1110,13 @@
 -- | Download line items response.
 --
 -- /See:/ 'downloadLineItemsResponse' smart constructor.
-newtype DownloadLineItemsResponse = DownloadLineItemsResponse'
+newtype DownloadLineItemsResponse =
+  DownloadLineItemsResponse'
     { _dlirLineItems :: Maybe Text
-    } deriving (Eq,Show,Data,Typeable,Generic)
+    }
+  deriving (Eq, Show, Data, Typeable, Generic)
 
+
 -- | Creates a value of 'DownloadLineItemsResponse' with the minimum fields required to make a request.
 --
 -- Use one of the following lenses to modify other fields as desired:
@@ -1082,10 +1125,9 @@
 downloadLineItemsResponse
     :: DownloadLineItemsResponse
 downloadLineItemsResponse =
-    DownloadLineItemsResponse'
-    { _dlirLineItems = Nothing
-    }
+  DownloadLineItemsResponse' {_dlirLineItems = Nothing}
 
+
 -- | Retrieved line items in CSV format. For more information about file
 -- formats, see Entity Write File Format.
 dlirLineItems :: Lens' DownloadLineItemsResponse (Maybe Text)
@@ -1107,18 +1149,24 @@
 -- | Download response.
 --
 -- /See:/ 'downloadResponse' smart constructor.
-data DownloadResponse = DownloadResponse'
-    { _drInsertionOrders :: !(Maybe Text)
-    , _drCampaigns       :: !(Maybe Text)
-    , _drLineItems       :: !(Maybe Text)
-    , _drAdGroups        :: !(Maybe Text)
-    , _drAds             :: !(Maybe Text)
-    } deriving (Eq,Show,Data,Typeable,Generic)
+data DownloadResponse =
+  DownloadResponse'
+    { _drInventorySources :: !(Maybe Text)
+    , _drInsertionOrders  :: !(Maybe Text)
+    , _drCampaigns        :: !(Maybe Text)
+    , _drLineItems        :: !(Maybe Text)
+    , _drAdGroups         :: !(Maybe Text)
+    , _drAds              :: !(Maybe Text)
+    }
+  deriving (Eq, Show, Data, Typeable, Generic)
 
+
 -- | Creates a value of 'DownloadResponse' with the minimum fields required to make a request.
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
+-- * 'drInventorySources'
+--
 -- * 'drInsertionOrders'
 --
 -- * 'drCampaigns'
@@ -1131,14 +1179,21 @@
 downloadResponse
     :: DownloadResponse
 downloadResponse =
-    DownloadResponse'
-    { _drInsertionOrders = Nothing
+  DownloadResponse'
+    { _drInventorySources = Nothing
+    , _drInsertionOrders = Nothing
     , _drCampaigns = Nothing
     , _drLineItems = Nothing
     , _drAdGroups = Nothing
     , _drAds = Nothing
     }
 
+
+drInventorySources :: Lens' DownloadResponse (Maybe Text)
+drInventorySources
+  = lens _drInventorySources
+      (\ s a -> s{_drInventorySources = a})
+
 -- | Retrieved insertion orders in SDF format.
 drInsertionOrders :: Lens' DownloadResponse (Maybe Text)
 drInsertionOrders
@@ -1169,8 +1224,10 @@
           = withObject "DownloadResponse"
               (\ o ->
                  DownloadResponse' <$>
-                   (o .:? "insertionOrders") <*> (o .:? "campaigns") <*>
-                     (o .:? "lineItems")
+                   (o .:? "inventorySources") <*>
+                     (o .:? "insertionOrders")
+                     <*> (o .:? "campaigns")
+                     <*> (o .:? "lineItems")
                      <*> (o .:? "adGroups")
                      <*> (o .:? "ads"))
 
@@ -1178,7 +1235,8 @@
         toJSON DownloadResponse'{..}
           = object
               (catMaybes
-                 [("insertionOrders" .=) <$> _drInsertionOrders,
+                 [("inventorySources" .=) <$> _drInventorySources,
+                  ("insertionOrders" .=) <$> _drInsertionOrders,
                   ("campaigns" .=) <$> _drCampaigns,
                   ("lineItems" .=) <$> _drLineItems,
                   ("adGroups" .=) <$> _drAdGroups,
@@ -1187,13 +1245,16 @@
 -- | Report status.
 --
 -- /See:/ 'reportStatus' smart constructor.
-data ReportStatus = ReportStatus'
+data ReportStatus =
+  ReportStatus'
     { _rsState        :: !(Maybe ReportStatusState)
     , _rsFinishTimeMs :: !(Maybe (Textual Int64))
     , _rsFormat       :: !(Maybe ReportStatusFormat)
     , _rsFailure      :: !(Maybe ReportFailure)
-    } deriving (Eq,Show,Data,Typeable,Generic)
+    }
+  deriving (Eq, Show, Data, Typeable, Generic)
 
+
 -- | Creates a value of 'ReportStatus' with the minimum fields required to make a request.
 --
 -- Use one of the following lenses to modify other fields as desired:
@@ -1208,13 +1269,14 @@
 reportStatus
     :: ReportStatus
 reportStatus =
-    ReportStatus'
+  ReportStatus'
     { _rsState = Nothing
     , _rsFinishTimeMs = Nothing
     , _rsFormat = Nothing
     , _rsFailure = Nothing
     }
 
+
 -- | The state of the report.
 rsState :: Lens' ReportStatus (Maybe ReportStatusState)
 rsState = lens _rsState (\ s a -> s{_rsState = a})
@@ -1256,7 +1318,8 @@
 -- | Represents a query.
 --
 -- /See:/ 'query' smart constructor.
-data Query = Query'
+data Query =
+  Query'
     { _qQueryId               :: !(Maybe (Textual Int64))
     , _qReportDataEndTimeMs   :: !(Maybe (Textual Int64))
     , _qSchedule              :: !(Maybe QuerySchedule)
@@ -1265,8 +1328,10 @@
     , _qMetadata              :: !(Maybe QueryMetadata)
     , _qReportDataStartTimeMs :: !(Maybe (Textual Int64))
     , _qTimezoneCode          :: !(Maybe Text)
-    } deriving (Eq,Show,Data,Typeable,Generic)
+    }
+  deriving (Eq, Show, Data, Typeable, Generic)
 
+
 -- | Creates a value of 'Query' with the minimum fields required to make a request.
 --
 -- Use one of the following lenses to modify other fields as desired:
@@ -1289,7 +1354,7 @@
 query
     :: Query
 query =
-    Query'
+  Query'
     { _qQueryId = Nothing
     , _qReportDataEndTimeMs = Nothing
     , _qSchedule = Nothing
@@ -1300,6 +1365,7 @@
     , _qTimezoneCode = Nothing
     }
 
+
 -- | Query ID.
 qQueryId :: Lens' Query (Maybe Int64)
 qQueryId
@@ -1379,14 +1445,17 @@
 -- | Parameters of a query or report.
 --
 -- /See:/ 'parameters' smart constructor.
-data Parameters = Parameters'
+data Parameters =
+  Parameters'
     { _pMetrics           :: !(Maybe [ParametersMetricsItem])
     , _pIncludeInviteData :: !(Maybe Bool)
     , _pFilters           :: !(Maybe [FilterPair])
     , _pGroupBys          :: !(Maybe [ParametersGroupBysItem])
     , _pType              :: !(Maybe ParametersType)
-    } deriving (Eq,Show,Data,Typeable,Generic)
+    }
+  deriving (Eq, Show, Data, Typeable, Generic)
 
+
 -- | Creates a value of 'Parameters' with the minimum fields required to make a request.
 --
 -- Use one of the following lenses to modify other fields as desired:
@@ -1403,7 +1472,7 @@
 parameters
     :: Parameters
 parameters =
-    Parameters'
+  Parameters'
     { _pMetrics = Nothing
     , _pIncludeInviteData = Nothing
     , _pFilters = Nothing
@@ -1411,6 +1480,7 @@
     , _pType = Nothing
     }
 
+
 -- | Metrics to include as columns in your report.
 pMetrics :: Lens' Parameters [ParametersMetricsItem]
 pMetrics
@@ -1418,7 +1488,7 @@
       _Default
       . _Coerce
 
--- | Whether to include data from Invite Media.
+-- | Deprecated. This field is no longer in use.
 pIncludeInviteData :: Lens' Parameters (Maybe Bool)
 pIncludeInviteData
   = lens _pIncludeInviteData
@@ -1466,10 +1536,13 @@
 -- | An explanation of a report failure.
 --
 -- /See:/ 'reportFailure' smart constructor.
-newtype ReportFailure = ReportFailure'
+newtype ReportFailure =
+  ReportFailure'
     { _rfErrorCode :: Maybe ReportFailureErrorCode
-    } deriving (Eq,Show,Data,Typeable,Generic)
+    }
+  deriving (Eq, Show, Data, Typeable, Generic)
 
+
 -- | Creates a value of 'ReportFailure' with the minimum fields required to make a request.
 --
 -- Use one of the following lenses to modify other fields as desired:
@@ -1477,10 +1550,8 @@
 -- * 'rfErrorCode'
 reportFailure
     :: ReportFailure
-reportFailure =
-    ReportFailure'
-    { _rfErrorCode = Nothing
-    }
+reportFailure = ReportFailure' {_rfErrorCode = Nothing}
+
 
 -- | Error code that shows why the report was not created.
 rfErrorCode :: Lens' ReportFailure (Maybe ReportFailureErrorCode)
diff --git a/gen/Network/Google/DoubleClickBids/Types/Sum.hs b/gen/Network/Google/DoubleClickBids/Types/Sum.hs
--- a/gen/Network/Google/DoubleClickBids/Types/Sum.hs
+++ b/gen/Network/Google/DoubleClickBids/Types/Sum.hs
@@ -227,7 +227,8 @@
 instance ToJSON DownloadLineItemsRequestFilterType where
     toJSON = toJSONText
 
--- | Filter type used to filter entities to fetch.
+-- | Filter type used to filter entities to fetch. PARTNER_ID and
+-- INVENTORY_SOURCE_ID may only be used when downloading inventory sources.
 data DownloadRequestFilterType
     = DRFTAdvertiserId
       -- ^ @ADVERTISER_ID@
@@ -235,8 +236,12 @@
       -- ^ @CAMPAIGN_ID@
     | DRFTInsertionOrderId
       -- ^ @INSERTION_ORDER_ID@
+    | DRFTInventorySourceId
+      -- ^ @INVENTORY_SOURCE_ID@
     | DRFTLineItemId
       -- ^ @LINE_ITEM_ID@
+    | DRFTPartnerId
+      -- ^ @PARTNER_ID@
       deriving (Eq, Ord, Enum, Read, Show, Data, Typeable, Generic)
 
 instance Hashable DownloadRequestFilterType
@@ -246,7 +251,9 @@
         "ADVERTISER_ID" -> Right DRFTAdvertiserId
         "CAMPAIGN_ID" -> Right DRFTCampaignId
         "INSERTION_ORDER_ID" -> Right DRFTInsertionOrderId
+        "INVENTORY_SOURCE_ID" -> Right DRFTInventorySourceId
         "LINE_ITEM_ID" -> Right DRFTLineItemId
+        "PARTNER_ID" -> Right DRFTPartnerId
         x -> Left ("Unable to parse DownloadRequestFilterType from: " <> x)
 
 instance ToHttpApiData DownloadRequestFilterType where
@@ -254,7 +261,9 @@
         DRFTAdvertiserId -> "ADVERTISER_ID"
         DRFTCampaignId -> "CAMPAIGN_ID"
         DRFTInsertionOrderId -> "INSERTION_ORDER_ID"
+        DRFTInventorySourceId -> "INVENTORY_SOURCE_ID"
         DRFTLineItemId -> "LINE_ITEM_ID"
+        DRFTPartnerId -> "PARTNER_ID"
 
 instance FromJSON DownloadRequestFilterType where
     parseJSON = parseJSONText "DownloadRequestFilterType"
@@ -271,6 +280,8 @@
       -- ^ @CAMPAIGN@
     | InsertionOrder
       -- ^ @INSERTION_ORDER@
+    | InventorySource
+      -- ^ @INVENTORY_SOURCE@
     | LineItem
       -- ^ @LINE_ITEM@
       deriving (Eq, Ord, Enum, Read, Show, Data, Typeable, Generic)
@@ -283,6 +294,7 @@
         "AD_GROUP" -> Right AdGroup
         "CAMPAIGN" -> Right Campaign
         "INSERTION_ORDER" -> Right InsertionOrder
+        "INVENTORY_SOURCE" -> Right InventorySource
         "LINE_ITEM" -> Right LineItem
         x -> Left ("Unable to parse DownloadRequestFileTypesItem from: " <> x)
 
@@ -292,6 +304,7 @@
         AdGroup -> "AD_GROUP"
         Campaign -> "CAMPAIGN"
         InsertionOrder -> "INSERTION_ORDER"
+        InventorySource -> "INVENTORY_SOURCE"
         LineItem -> "LINE_ITEM"
 
 instance FromJSON DownloadRequestFileTypesItem where
@@ -1789,6 +1802,8 @@
       -- ^ @FILTER_CONVERSION_DELAY@
     | FilterCountry
       -- ^ @FILTER_COUNTRY@
+    | FilterCreativeAttribute
+      -- ^ @FILTER_CREATIVE_ATTRIBUTE@
     | FilterCreativeHeight
       -- ^ @FILTER_CREATIVE_HEIGHT@
     | FilterCreativeId
@@ -1827,8 +1842,14 @@
       -- ^ @FILTER_GENDER@
     | FilterInsertionOrder
       -- ^ @FILTER_INSERTION_ORDER@
+    | FilterInventoryCommitmentType
+      -- ^ @FILTER_INVENTORY_COMMITMENT_TYPE@
+    | FilterInventoryDeliveryMethod
+      -- ^ @FILTER_INVENTORY_DELIVERY_METHOD@
     | FilterInventoryFormat
       -- ^ @FILTER_INVENTORY_FORMAT@
+    | FilterInventoryRateType
+      -- ^ @FILTER_INVENTORY_RATE_TYPE@
     | FilterInventorySource
       -- ^ @FILTER_INVENTORY_SOURCE@
     | FilterInventorySourceType
@@ -2025,6 +2046,7 @@
         "FILTER_COMPANION_CREATIVE_ID" -> Right FilterCompanionCreativeId
         "FILTER_CONVERSION_DELAY" -> Right FilterConversionDelay
         "FILTER_COUNTRY" -> Right FilterCountry
+        "FILTER_CREATIVE_ATTRIBUTE" -> Right FilterCreativeAttribute
         "FILTER_CREATIVE_HEIGHT" -> Right FilterCreativeHeight
         "FILTER_CREATIVE_ID" -> Right FilterCreativeId
         "FILTER_CREATIVE_SIZE" -> Right FilterCreativeSize
@@ -2044,7 +2066,10 @@
         "FILTER_FLOODLIGHT_PIXEL_ID" -> Right FilterFloodlightPixelId
         "FILTER_GENDER" -> Right FilterGender
         "FILTER_INSERTION_ORDER" -> Right FilterInsertionOrder
+        "FILTER_INVENTORY_COMMITMENT_TYPE" -> Right FilterInventoryCommitmentType
+        "FILTER_INVENTORY_DELIVERY_METHOD" -> Right FilterInventoryDeliveryMethod
         "FILTER_INVENTORY_FORMAT" -> Right FilterInventoryFormat
+        "FILTER_INVENTORY_RATE_TYPE" -> Right FilterInventoryRateType
         "FILTER_INVENTORY_SOURCE" -> Right FilterInventorySource
         "FILTER_INVENTORY_SOURCE_TYPE" -> Right FilterInventorySourceType
         "FILTER_KEYWORD" -> Right FilterKeyword
@@ -2153,6 +2178,7 @@
         FilterCompanionCreativeId -> "FILTER_COMPANION_CREATIVE_ID"
         FilterConversionDelay -> "FILTER_CONVERSION_DELAY"
         FilterCountry -> "FILTER_COUNTRY"
+        FilterCreativeAttribute -> "FILTER_CREATIVE_ATTRIBUTE"
         FilterCreativeHeight -> "FILTER_CREATIVE_HEIGHT"
         FilterCreativeId -> "FILTER_CREATIVE_ID"
         FilterCreativeSize -> "FILTER_CREATIVE_SIZE"
@@ -2172,7 +2198,10 @@
         FilterFloodlightPixelId -> "FILTER_FLOODLIGHT_PIXEL_ID"
         FilterGender -> "FILTER_GENDER"
         FilterInsertionOrder -> "FILTER_INSERTION_ORDER"
+        FilterInventoryCommitmentType -> "FILTER_INVENTORY_COMMITMENT_TYPE"
+        FilterInventoryDeliveryMethod -> "FILTER_INVENTORY_DELIVERY_METHOD"
         FilterInventoryFormat -> "FILTER_INVENTORY_FORMAT"
+        FilterInventoryRateType -> "FILTER_INVENTORY_RATE_TYPE"
         FilterInventorySource -> "FILTER_INVENTORY_SOURCE"
         FilterInventorySourceType -> "FILTER_INVENTORY_SOURCE_TYPE"
         FilterKeyword -> "FILTER_KEYWORD"
@@ -2429,6 +2458,8 @@
       -- ^ @FILTER_CONVERSION_DELAY@
     | PGBIFilterCountry
       -- ^ @FILTER_COUNTRY@
+    | PGBIFilterCreativeAttribute
+      -- ^ @FILTER_CREATIVE_ATTRIBUTE@
     | PGBIFilterCreativeHeight
       -- ^ @FILTER_CREATIVE_HEIGHT@
     | PGBIFilterCreativeId
@@ -2467,8 +2498,14 @@
       -- ^ @FILTER_GENDER@
     | PGBIFilterInsertionOrder
       -- ^ @FILTER_INSERTION_ORDER@
+    | PGBIFilterInventoryCommitmentType
+      -- ^ @FILTER_INVENTORY_COMMITMENT_TYPE@
+    | PGBIFilterInventoryDeliveryMethod
+      -- ^ @FILTER_INVENTORY_DELIVERY_METHOD@
     | PGBIFilterInventoryFormat
       -- ^ @FILTER_INVENTORY_FORMAT@
+    | PGBIFilterInventoryRateType
+      -- ^ @FILTER_INVENTORY_RATE_TYPE@
     | PGBIFilterInventorySource
       -- ^ @FILTER_INVENTORY_SOURCE@
     | PGBIFilterInventorySourceType
@@ -2665,6 +2702,7 @@
         "FILTER_COMPANION_CREATIVE_ID" -> Right PGBIFilterCompanionCreativeId
         "FILTER_CONVERSION_DELAY" -> Right PGBIFilterConversionDelay
         "FILTER_COUNTRY" -> Right PGBIFilterCountry
+        "FILTER_CREATIVE_ATTRIBUTE" -> Right PGBIFilterCreativeAttribute
         "FILTER_CREATIVE_HEIGHT" -> Right PGBIFilterCreativeHeight
         "FILTER_CREATIVE_ID" -> Right PGBIFilterCreativeId
         "FILTER_CREATIVE_SIZE" -> Right PGBIFilterCreativeSize
@@ -2684,7 +2722,10 @@
         "FILTER_FLOODLIGHT_PIXEL_ID" -> Right PGBIFilterFloodlightPixelId
         "FILTER_GENDER" -> Right PGBIFilterGender
         "FILTER_INSERTION_ORDER" -> Right PGBIFilterInsertionOrder
+        "FILTER_INVENTORY_COMMITMENT_TYPE" -> Right PGBIFilterInventoryCommitmentType
+        "FILTER_INVENTORY_DELIVERY_METHOD" -> Right PGBIFilterInventoryDeliveryMethod
         "FILTER_INVENTORY_FORMAT" -> Right PGBIFilterInventoryFormat
+        "FILTER_INVENTORY_RATE_TYPE" -> Right PGBIFilterInventoryRateType
         "FILTER_INVENTORY_SOURCE" -> Right PGBIFilterInventorySource
         "FILTER_INVENTORY_SOURCE_TYPE" -> Right PGBIFilterInventorySourceType
         "FILTER_KEYWORD" -> Right PGBIFilterKeyword
@@ -2793,6 +2834,7 @@
         PGBIFilterCompanionCreativeId -> "FILTER_COMPANION_CREATIVE_ID"
         PGBIFilterConversionDelay -> "FILTER_CONVERSION_DELAY"
         PGBIFilterCountry -> "FILTER_COUNTRY"
+        PGBIFilterCreativeAttribute -> "FILTER_CREATIVE_ATTRIBUTE"
         PGBIFilterCreativeHeight -> "FILTER_CREATIVE_HEIGHT"
         PGBIFilterCreativeId -> "FILTER_CREATIVE_ID"
         PGBIFilterCreativeSize -> "FILTER_CREATIVE_SIZE"
@@ -2812,7 +2854,10 @@
         PGBIFilterFloodlightPixelId -> "FILTER_FLOODLIGHT_PIXEL_ID"
         PGBIFilterGender -> "FILTER_GENDER"
         PGBIFilterInsertionOrder -> "FILTER_INSERTION_ORDER"
+        PGBIFilterInventoryCommitmentType -> "FILTER_INVENTORY_COMMITMENT_TYPE"
+        PGBIFilterInventoryDeliveryMethod -> "FILTER_INVENTORY_DELIVERY_METHOD"
         PGBIFilterInventoryFormat -> "FILTER_INVENTORY_FORMAT"
+        PGBIFilterInventoryRateType -> "FILTER_INVENTORY_RATE_TYPE"
         PGBIFilterInventorySource -> "FILTER_INVENTORY_SOURCE"
         PGBIFilterInventorySourceType -> "FILTER_INVENTORY_SOURCE_TYPE"
         PGBIFilterKeyword -> "FILTER_KEYWORD"
diff --git a/gen/Network/Google/Resource/DoubleClickBidManager/Lineitems/Downloadlineitems.hs b/gen/Network/Google/Resource/DoubleClickBidManager/Lineitems/Downloadlineitems.hs
--- a/gen/Network/Google/Resource/DoubleClickBidManager/Lineitems/Downloadlineitems.hs
+++ b/gen/Network/Google/Resource/DoubleClickBidManager/Lineitems/Downloadlineitems.hs
@@ -55,10 +55,13 @@
 -- supported.
 --
 -- /See:/ 'lineitemsDownloadlineitems' smart constructor.
-newtype LineitemsDownloadlineitems = LineitemsDownloadlineitems'
+newtype LineitemsDownloadlineitems =
+  LineitemsDownloadlineitems'
     { _ldPayload :: DownloadLineItemsRequest
-    } deriving (Eq,Show,Data,Typeable,Generic)
+    }
+  deriving (Eq, Show, Data, Typeable, Generic)
 
+
 -- | Creates a value of 'LineitemsDownloadlineitems' with the minimum fields required to make a request.
 --
 -- Use one of the following lenses to modify other fields as desired:
@@ -68,9 +71,8 @@
     :: DownloadLineItemsRequest -- ^ 'ldPayload'
     -> LineitemsDownloadlineitems
 lineitemsDownloadlineitems pLdPayload_ =
-    LineitemsDownloadlineitems'
-    { _ldPayload = pLdPayload_
-    }
+  LineitemsDownloadlineitems' {_ldPayload = pLdPayload_}
+
 
 -- | Multipart request metadata.
 ldPayload :: Lens' LineitemsDownloadlineitems DownloadLineItemsRequest
diff --git a/gen/Network/Google/Resource/DoubleClickBidManager/Lineitems/Uploadlineitems.hs b/gen/Network/Google/Resource/DoubleClickBidManager/Lineitems/Uploadlineitems.hs
--- a/gen/Network/Google/Resource/DoubleClickBidManager/Lineitems/Uploadlineitems.hs
+++ b/gen/Network/Google/Resource/DoubleClickBidManager/Lineitems/Uploadlineitems.hs
@@ -53,10 +53,13 @@
 -- | Uploads line items in CSV format. TrueView line items are not supported.
 --
 -- /See:/ 'lineitemsUploadlineitems' smart constructor.
-newtype LineitemsUploadlineitems = LineitemsUploadlineitems'
+newtype LineitemsUploadlineitems =
+  LineitemsUploadlineitems'
     { _luPayload :: UploadLineItemsRequest
-    } deriving (Eq,Show,Data,Typeable,Generic)
+    }
+  deriving (Eq, Show, Data, Typeable, Generic)
 
+
 -- | Creates a value of 'LineitemsUploadlineitems' with the minimum fields required to make a request.
 --
 -- Use one of the following lenses to modify other fields as desired:
@@ -66,9 +69,8 @@
     :: UploadLineItemsRequest -- ^ 'luPayload'
     -> LineitemsUploadlineitems
 lineitemsUploadlineitems pLuPayload_ =
-    LineitemsUploadlineitems'
-    { _luPayload = pLuPayload_
-    }
+  LineitemsUploadlineitems' {_luPayload = pLuPayload_}
+
 
 -- | Multipart request metadata.
 luPayload :: Lens' LineitemsUploadlineitems UploadLineItemsRequest
diff --git a/gen/Network/Google/Resource/DoubleClickBidManager/Queries/CreateQuery.hs b/gen/Network/Google/Resource/DoubleClickBidManager/Queries/CreateQuery.hs
--- a/gen/Network/Google/Resource/DoubleClickBidManager/Queries/CreateQuery.hs
+++ b/gen/Network/Google/Resource/DoubleClickBidManager/Queries/CreateQuery.hs
@@ -51,10 +51,13 @@
 -- | Creates a query.
 --
 -- /See:/ 'queriesCreateQuery' smart constructor.
-newtype QueriesCreateQuery = QueriesCreateQuery'
+newtype QueriesCreateQuery =
+  QueriesCreateQuery'
     { _qcqPayload :: Query
-    } deriving (Eq,Show,Data,Typeable,Generic)
+    }
+  deriving (Eq, Show, Data, Typeable, Generic)
 
+
 -- | Creates a value of 'QueriesCreateQuery' with the minimum fields required to make a request.
 --
 -- Use one of the following lenses to modify other fields as desired:
@@ -64,9 +67,8 @@
     :: Query -- ^ 'qcqPayload'
     -> QueriesCreateQuery
 queriesCreateQuery pQcqPayload_ =
-    QueriesCreateQuery'
-    { _qcqPayload = pQcqPayload_
-    }
+  QueriesCreateQuery' {_qcqPayload = pQcqPayload_}
+
 
 -- | Multipart request metadata.
 qcqPayload :: Lens' QueriesCreateQuery Query
diff --git a/gen/Network/Google/Resource/DoubleClickBidManager/Queries/DeleteQuery.hs b/gen/Network/Google/Resource/DoubleClickBidManager/Queries/DeleteQuery.hs
--- a/gen/Network/Google/Resource/DoubleClickBidManager/Queries/DeleteQuery.hs
+++ b/gen/Network/Google/Resource/DoubleClickBidManager/Queries/DeleteQuery.hs
@@ -51,10 +51,13 @@
 -- | Deletes a stored query as well as the associated stored reports.
 --
 -- /See:/ 'queriesDeleteQuery' smart constructor.
-newtype QueriesDeleteQuery = QueriesDeleteQuery'
+newtype QueriesDeleteQuery =
+  QueriesDeleteQuery'
     { _qdqQueryId :: Textual Int64
-    } deriving (Eq,Show,Data,Typeable,Generic)
+    }
+  deriving (Eq, Show, Data, Typeable, Generic)
 
+
 -- | Creates a value of 'QueriesDeleteQuery' with the minimum fields required to make a request.
 --
 -- Use one of the following lenses to modify other fields as desired:
@@ -64,9 +67,8 @@
     :: Int64 -- ^ 'qdqQueryId'
     -> QueriesDeleteQuery
 queriesDeleteQuery pQdqQueryId_ =
-    QueriesDeleteQuery'
-    { _qdqQueryId = _Coerce # pQdqQueryId_
-    }
+  QueriesDeleteQuery' {_qdqQueryId = _Coerce # pQdqQueryId_}
+
 
 -- | Query ID to delete.
 qdqQueryId :: Lens' QueriesDeleteQuery Int64
diff --git a/gen/Network/Google/Resource/DoubleClickBidManager/Queries/GetQuery.hs b/gen/Network/Google/Resource/DoubleClickBidManager/Queries/GetQuery.hs
--- a/gen/Network/Google/Resource/DoubleClickBidManager/Queries/GetQuery.hs
+++ b/gen/Network/Google/Resource/DoubleClickBidManager/Queries/GetQuery.hs
@@ -51,10 +51,13 @@
 -- | Retrieves a stored query.
 --
 -- /See:/ 'queriesGetQuery' smart constructor.
-newtype QueriesGetQuery = QueriesGetQuery'
+newtype QueriesGetQuery =
+  QueriesGetQuery'
     { _qgqQueryId :: Textual Int64
-    } deriving (Eq,Show,Data,Typeable,Generic)
+    }
+  deriving (Eq, Show, Data, Typeable, Generic)
 
+
 -- | Creates a value of 'QueriesGetQuery' with the minimum fields required to make a request.
 --
 -- Use one of the following lenses to modify other fields as desired:
@@ -64,9 +67,8 @@
     :: Int64 -- ^ 'qgqQueryId'
     -> QueriesGetQuery
 queriesGetQuery pQgqQueryId_ =
-    QueriesGetQuery'
-    { _qgqQueryId = _Coerce # pQgqQueryId_
-    }
+  QueriesGetQuery' {_qgqQueryId = _Coerce # pQgqQueryId_}
+
 
 -- | Query ID to retrieve.
 qgqQueryId :: Lens' QueriesGetQuery Int64
diff --git a/gen/Network/Google/Resource/DoubleClickBidManager/Queries/Listqueries.hs b/gen/Network/Google/Resource/DoubleClickBidManager/Queries/Listqueries.hs
--- a/gen/Network/Google/Resource/DoubleClickBidManager/Queries/Listqueries.hs
+++ b/gen/Network/Google/Resource/DoubleClickBidManager/Queries/Listqueries.hs
@@ -50,14 +50,16 @@
 --
 -- /See:/ 'queriesListqueries' smart constructor.
 data QueriesListqueries =
-    QueriesListqueries'
-    deriving (Eq,Show,Data,Typeable,Generic)
+  QueriesListqueries'
+  deriving (Eq, Show, Data, Typeable, Generic)
 
+
 -- | Creates a value of 'QueriesListqueries' with the minimum fields required to make a request.
 --
 queriesListqueries
     :: QueriesListqueries
 queriesListqueries = QueriesListqueries'
+
 
 instance GoogleRequest QueriesListqueries where
         type Rs QueriesListqueries = ListQueriesResponse
diff --git a/gen/Network/Google/Resource/DoubleClickBidManager/Queries/RunQuery.hs b/gen/Network/Google/Resource/DoubleClickBidManager/Queries/RunQuery.hs
--- a/gen/Network/Google/Resource/DoubleClickBidManager/Queries/RunQuery.hs
+++ b/gen/Network/Google/Resource/DoubleClickBidManager/Queries/RunQuery.hs
@@ -53,11 +53,14 @@
 -- | Runs a stored query to generate a report.
 --
 -- /See:/ 'queriesRunQuery' smart constructor.
-data QueriesRunQuery = QueriesRunQuery'
+data QueriesRunQuery =
+  QueriesRunQuery'
     { _qrqQueryId :: !(Textual Int64)
     , _qrqPayload :: !RunQueryRequest
-    } deriving (Eq,Show,Data,Typeable,Generic)
+    }
+  deriving (Eq, Show, Data, Typeable, Generic)
 
+
 -- | Creates a value of 'QueriesRunQuery' with the minimum fields required to make a request.
 --
 -- Use one of the following lenses to modify other fields as desired:
@@ -70,10 +73,9 @@
     -> RunQueryRequest -- ^ 'qrqPayload'
     -> QueriesRunQuery
 queriesRunQuery pQrqQueryId_ pQrqPayload_ =
-    QueriesRunQuery'
-    { _qrqQueryId = _Coerce # pQrqQueryId_
-    , _qrqPayload = pQrqPayload_
-    }
+  QueriesRunQuery'
+    {_qrqQueryId = _Coerce # pQrqQueryId_, _qrqPayload = pQrqPayload_}
+
 
 -- | Query ID to run.
 qrqQueryId :: Lens' QueriesRunQuery Int64
diff --git a/gen/Network/Google/Resource/DoubleClickBidManager/Reports/Listreports.hs b/gen/Network/Google/Resource/DoubleClickBidManager/Reports/Listreports.hs
--- a/gen/Network/Google/Resource/DoubleClickBidManager/Reports/Listreports.hs
+++ b/gen/Network/Google/Resource/DoubleClickBidManager/Reports/Listreports.hs
@@ -53,10 +53,13 @@
 -- | Retrieves stored reports.
 --
 -- /See:/ 'reportsListreports' smart constructor.
-newtype ReportsListreports = ReportsListreports'
+newtype ReportsListreports =
+  ReportsListreports'
     { _rlQueryId :: Textual Int64
-    } deriving (Eq,Show,Data,Typeable,Generic)
+    }
+  deriving (Eq, Show, Data, Typeable, Generic)
 
+
 -- | Creates a value of 'ReportsListreports' with the minimum fields required to make a request.
 --
 -- Use one of the following lenses to modify other fields as desired:
@@ -66,9 +69,8 @@
     :: Int64 -- ^ 'rlQueryId'
     -> ReportsListreports
 reportsListreports pRlQueryId_ =
-    ReportsListreports'
-    { _rlQueryId = _Coerce # pRlQueryId_
-    }
+  ReportsListreports' {_rlQueryId = _Coerce # pRlQueryId_}
+
 
 -- | Query ID with which the reports are associated.
 rlQueryId :: Lens' ReportsListreports Int64
diff --git a/gen/Network/Google/Resource/DoubleClickBidManager/Sdf/Download.hs b/gen/Network/Google/Resource/DoubleClickBidManager/Sdf/Download.hs
--- a/gen/Network/Google/Resource/DoubleClickBidManager/Sdf/Download.hs
+++ b/gen/Network/Google/Resource/DoubleClickBidManager/Sdf/Download.hs
@@ -53,10 +53,13 @@
 -- | Retrieves entities in SDF format.
 --
 -- /See:/ 'sdfDownload' smart constructor.
-newtype SdfDownload = SdfDownload'
+newtype SdfDownload =
+  SdfDownload'
     { _sdPayload :: DownloadRequest
-    } deriving (Eq,Show,Data,Typeable,Generic)
+    }
+  deriving (Eq, Show, Data, Typeable, Generic)
 
+
 -- | Creates a value of 'SdfDownload' with the minimum fields required to make a request.
 --
 -- Use one of the following lenses to modify other fields as desired:
@@ -65,10 +68,8 @@
 sdfDownload
     :: DownloadRequest -- ^ 'sdPayload'
     -> SdfDownload
-sdfDownload pSdPayload_ =
-    SdfDownload'
-    { _sdPayload = pSdPayload_
-    }
+sdfDownload pSdPayload_ = SdfDownload' {_sdPayload = pSdPayload_}
+
 
 -- | Multipart request metadata.
 sdPayload :: Lens' SdfDownload DownloadRequest
diff --git a/gogol-doubleclick-bids.cabal b/gogol-doubleclick-bids.cabal
--- a/gogol-doubleclick-bids.cabal
+++ b/gogol-doubleclick-bids.cabal
@@ -1,5 +1,5 @@
 name:                  gogol-doubleclick-bids
-version:               0.4.0
+version:               0.5.0
 synopsis:              Google DoubleClick Bid Manager SDK.
 homepage:              https://github.com/brendanhay/gogol
 bug-reports:           https://github.com/brendanhay/gogol/issues
@@ -54,5 +54,5 @@
         , Network.Google.DoubleClickBids.Types.Sum
 
     build-depends:
-          gogol-core == 0.4.0.*
+          gogol-core == 0.5.0.*
         , base       >= 4.7 && < 5
