packages feed

gogol-abusiveexperiencereport 0.4.0 → 0.5.0

raw patch · 6 files changed

+32/−19 lines, 6 filesdep ~gogol-corePVP ok

version bump matches the API change (PVP)

Dependency ranges changed: gogol-core

API changes (from Hackage documentation)

Files

README.md view
@@ -8,7 +8,7 @@  ## Version -`0.3.0`+`0.5.0`   ## Description
gen/Network/Google/AbusiveExperienceReport/Types.hs view
@@ -61,4 +61,4 @@  -- | Test scope for access to the Zoo service xapiZooScope :: Proxy '["https://www.googleapis.com/auth/xapi.zoo"]-xapiZooScope = Proxy;+xapiZooScope = Proxy
gen/Network/Google/AbusiveExperienceReport/Types/Product.hs view
@@ -23,7 +23,8 @@ -- | Response message for GetSiteSummary. -- -- /See:/ 'siteSummaryResponse' smart constructor.-data SiteSummaryResponse = SiteSummaryResponse'+data SiteSummaryResponse =+  SiteSummaryResponse'     { _ssrAbusiveStatus   :: !(Maybe SiteSummaryResponseAbusiveStatus)     , _ssrEnforcementTime :: !(Maybe DateTime')     , _ssrLastChangeTime  :: !(Maybe DateTime')@@ -31,8 +32,10 @@     , _ssrUnderReview     :: !(Maybe Bool)     , _ssrReportURL       :: !(Maybe Text)     , _ssrReviewedSite    :: !(Maybe Text)-    } deriving (Eq,Show,Data,Typeable,Generic)+    }+  deriving (Eq, Show, Data, Typeable, Generic) + -- | Creates a value of 'SiteSummaryResponse' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired:@@ -53,7 +56,7 @@ siteSummaryResponse     :: SiteSummaryResponse siteSummaryResponse =-    SiteSummaryResponse'+  SiteSummaryResponse'     { _ssrAbusiveStatus = Nothing     , _ssrEnforcementTime = Nothing     , _ssrLastChangeTime = Nothing@@ -63,6 +66,7 @@     , _ssrReviewedSite = Nothing     } + -- | The status of the site reviewed for the abusive experiences. ssrAbusiveStatus :: Lens' SiteSummaryResponse (Maybe SiteSummaryResponseAbusiveStatus) ssrAbusiveStatus@@ -133,10 +137,13 @@ -- | Response message for ListViolatingSites. -- -- /See:/ 'violatingSitesResponse' smart constructor.-newtype ViolatingSitesResponse = ViolatingSitesResponse'+newtype ViolatingSitesResponse =+  ViolatingSitesResponse'     { _vsrViolatingSites :: Maybe [SiteSummaryResponse]-    } deriving (Eq,Show,Data,Typeable,Generic)+    }+  deriving (Eq, Show, Data, Typeable, Generic) + -- | Creates a value of 'ViolatingSitesResponse' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired:@@ -144,10 +151,8 @@ -- * 'vsrViolatingSites' violatingSitesResponse     :: ViolatingSitesResponse-violatingSitesResponse =-    ViolatingSitesResponse'-    { _vsrViolatingSites = Nothing-    }+violatingSitesResponse = ViolatingSitesResponse' {_vsrViolatingSites = Nothing}+  -- | A list of summaries of violating sites. vsrViolatingSites :: Lens' ViolatingSitesResponse [SiteSummaryResponse]
gen/Network/Google/Resource/AbusiveExperienceReport/Sites/Get.hs view
@@ -60,15 +60,18 @@ -- | Gets a summary of the abusive experience rating of a site. -- -- /See:/ 'sitesGet' smart constructor.-data SitesGet = SitesGet'+data SitesGet =+  SitesGet'     { _sgXgafv          :: !(Maybe Xgafv)     , _sgUploadProtocol :: !(Maybe Text)     , _sgAccessToken    :: !(Maybe Text)     , _sgUploadType     :: !(Maybe Text)     , _sgName           :: !Text     , _sgCallback       :: !(Maybe Text)-    } deriving (Eq,Show,Data,Typeable,Generic)+    }+  deriving (Eq, Show, Data, Typeable, Generic) + -- | Creates a value of 'SitesGet' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired:@@ -88,7 +91,7 @@     :: Text -- ^ 'sgName'     -> SitesGet sitesGet pSgName_ =-    SitesGet'+  SitesGet'     { _sgXgafv = Nothing     , _sgUploadProtocol = Nothing     , _sgAccessToken = Nothing@@ -96,6 +99,7 @@     , _sgName = pSgName_     , _sgCallback = Nothing     }+  -- | V1 error format. sgXgafv :: Lens' SitesGet (Maybe Xgafv)
gen/Network/Google/Resource/AbusiveExperienceReport/ViolatingSites/List.hs view
@@ -59,14 +59,17 @@ -- | Lists sites with Abusive Experience Report statuses of \"Failing\". -- -- /See:/ 'violatingSitesList' smart constructor.-data ViolatingSitesList = ViolatingSitesList'+data ViolatingSitesList =+  ViolatingSitesList'     { _vslXgafv          :: !(Maybe Xgafv)     , _vslUploadProtocol :: !(Maybe Text)     , _vslAccessToken    :: !(Maybe Text)     , _vslUploadType     :: !(Maybe Text)     , _vslCallback       :: !(Maybe Text)-    } deriving (Eq,Show,Data,Typeable,Generic)+    }+  deriving (Eq, Show, Data, Typeable, Generic) + -- | Creates a value of 'ViolatingSitesList' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired:@@ -83,13 +86,14 @@ violatingSitesList     :: ViolatingSitesList violatingSitesList =-    ViolatingSitesList'+  ViolatingSitesList'     { _vslXgafv = Nothing     , _vslUploadProtocol = Nothing     , _vslAccessToken = Nothing     , _vslUploadType = Nothing     , _vslCallback = Nothing     }+  -- | V1 error format. vslXgafv :: Lens' ViolatingSitesList (Maybe Xgafv)
gogol-abusiveexperiencereport.cabal view
@@ -1,5 +1,5 @@ name:                  gogol-abusiveexperiencereport-version:               0.4.0+version:               0.5.0 synopsis:              Google Abusive Experience Report SDK. homepage:              https://github.com/brendanhay/gogol bug-reports:           https://github.com/brendanhay/gogol/issues@@ -44,5 +44,5 @@         , Network.Google.AbusiveExperienceReport.Types.Sum      build-depends:-          gogol-core == 0.4.0.*+          gogol-core == 0.5.0.*         , base       >= 4.7 && < 5