Mise à jour des librairies vendor

This commit is contained in:
Caribana
2018-05-01 14:43:32 +02:00
parent b67375ae8e
commit d776be73fc
5211 changed files with 59115 additions and 25863 deletions

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
@@ -65,6 +65,19 @@ class Google_Service_IdentityToolkit_Resource_Relyingparty extends Google_Servic
$params = array_merge($params, $optParams);
return $this->call('downloadAccount', array($params), "Google_Service_IdentityToolkit_DownloadAccountResponse");
}
/**
* Reset password for a user. (relyingparty.emailLinkSignin)
*
* @param Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyEmailLinkSigninRequest $postBody
* @param array $optParams Optional parameters.
* @return Google_Service_IdentityToolkit_EmailLinkSigninResponse
*/
public function emailLinkSignin(Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyEmailLinkSigninRequest $postBody, $optParams = array())
{
$params = array('postBody' => $postBody);
$params = array_merge($params, $optParams);
return $this->call('emailLinkSignin', array($params), "Google_Service_IdentityToolkit_EmailLinkSigninResponse");
}
/**
* Returns the account info. (relyingparty.getAccountInfo)
*
@@ -145,6 +158,19 @@ class Google_Service_IdentityToolkit_Resource_Relyingparty extends Google_Servic
$params = array_merge($params, $optParams);
return $this->call('resetPassword', array($params), "Google_Service_IdentityToolkit_ResetPasswordResponse");
}
/**
* Send SMS verification code. (relyingparty.sendVerificationCode)
*
* @param Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartySendVerificationCodeRequest $postBody
* @param array $optParams Optional parameters.
* @return Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartySendVerificationCodeResponse
*/
public function sendVerificationCode(Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartySendVerificationCodeRequest $postBody, $optParams = array())
{
$params = array('postBody' => $postBody);
$params = array_merge($params, $optParams);
return $this->call('sendVerificationCode', array($params), "Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartySendVerificationCodeResponse");
}
/**
* Set account info for a user. (relyingparty.setAccountInfo)
*
@@ -249,4 +275,18 @@ class Google_Service_IdentityToolkit_Resource_Relyingparty extends Google_Servic
$params = array_merge($params, $optParams);
return $this->call('verifyPassword', array($params), "Google_Service_IdentityToolkit_VerifyPasswordResponse");
}
/**
* Verifies ownership of a phone number and creates/updates the user account
* accordingly. (relyingparty.verifyPhoneNumber)
*
* @param Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyVerifyPhoneNumberRequest $postBody
* @param array $optParams Optional parameters.
* @return Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyVerifyPhoneNumberResponse
*/
public function verifyPhoneNumber(Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyVerifyPhoneNumberRequest $postBody, $optParams = array())
{
$params = array('postBody' => $postBody);
$params = array_merge($params, $optParams);
return $this->call('verifyPhoneNumber', array($params), "Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyVerifyPhoneNumberResponse");
}
}