From 9089b333d8a10d3ba3902005e7f904814f4bd162 Mon Sep 17 00:00:00 2001 From: Brie Bruns Date: Wed, 6 Jul 2022 14:30:40 -0600 Subject: [PATCH] Update deps --- composer.lock | 4 +- vendor/composer/installed.json | 6 +- vendor/composer/installed.php | 8 +- vendor/guzzlehttp/psr7/src/UriComparator.php | 52 ++++++ .../Microsoft/Graph/Model/AttachmentBase.php | 139 ++++++++++++++ .../Graph/Model/AuthorizationInfo.php | 52 ++++++ .../CustomExtensionCallbackConfiguration.php | 57 ++++++ .../Model/CustomExtensionCalloutRequest.php | 109 +++++++++++ .../Model/CustomExtensionCalloutResponse.php | 109 +++++++++++ .../Graph/Model/CustomExtensionData.php | 26 +++ .../Graph/Model/TaskFileAttachment.php | 58 ++++++ .../Graph/Model/TeamsAppSettings.php | 54 ++++++ .../src/Model/AssociatedTeamInfo.php | 27 +++ .../src/Model/Certification.php | 176 ++++++++++++++++++ .../src/Model/SharedWithChannelTeamInfo.php | 86 +++++++++ .../microsoft-graph/src/Model/TeamInfo.php | 116 ++++++++++++ 16 files changed, 1070 insertions(+), 9 deletions(-) create mode 100644 vendor/guzzlehttp/psr7/src/UriComparator.php create mode 100644 vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AttachmentBase.php create mode 100644 vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AuthorizationInfo.php create mode 100644 vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CustomExtensionCallbackConfiguration.php create mode 100644 vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CustomExtensionCalloutRequest.php create mode 100644 vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CustomExtensionCalloutResponse.php create mode 100644 vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CustomExtensionData.php create mode 100644 vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/TaskFileAttachment.php create mode 100644 vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/TeamsAppSettings.php create mode 100644 vendor/microsoft/microsoft-graph/src/Model/AssociatedTeamInfo.php create mode 100644 vendor/microsoft/microsoft-graph/src/Model/Certification.php create mode 100644 vendor/microsoft/microsoft-graph/src/Model/SharedWithChannelTeamInfo.php create mode 100644 vendor/microsoft/microsoft-graph/src/Model/TeamInfo.php diff --git a/composer.lock b/composer.lock index 4ad40e6..e8cf23a 100644 --- a/composer.lock +++ b/composer.lock @@ -586,7 +586,7 @@ }, { "name": "symfony/deprecation-contracts", - "version": "v2.5.1", + "version": "v2.5.2", "source": { "type": "git", "url": "https://github.com/symfony/deprecation-contracts.git", @@ -633,7 +633,7 @@ "description": "A generic function and convention to trigger deprecation notices", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.1" + "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2" }, "funding": [ { diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json index 26b9568..7ca38a9 100644 --- a/vendor/composer/installed.json +++ b/vendor/composer/installed.json @@ -604,8 +604,8 @@ }, { "name": "symfony/deprecation-contracts", - "version": "v2.5.1", - "version_normalized": "2.5.1.0", + "version": "v2.5.2", + "version_normalized": "2.5.2.0", "source": { "type": "git", "url": "https://github.com/symfony/deprecation-contracts.git", @@ -654,7 +654,7 @@ "description": "A generic function and convention to trigger deprecation notices", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.1" + "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2" }, "funding": [ { diff --git a/vendor/composer/installed.php b/vendor/composer/installed.php index 29b83e1..57c2c43 100644 --- a/vendor/composer/installed.php +++ b/vendor/composer/installed.php @@ -5,7 +5,7 @@ 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), - 'reference' => 'fbf2d2fef3cb884ff5bd4569fd096d7582e3d8e3', + 'reference' => '75eed2affaaf8cdc40f9897b0b381e4fb11d306d', 'name' => '__root__', 'dev' => true, ), @@ -16,7 +16,7 @@ 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), - 'reference' => 'fbf2d2fef3cb884ff5bd4569fd096d7582e3d8e3', + 'reference' => '75eed2affaaf8cdc40f9897b0b381e4fb11d306d', 'dev_requirement' => false, ), 'guzzlehttp/guzzle' => array( @@ -110,8 +110,8 @@ 'dev_requirement' => false, ), 'symfony/deprecation-contracts' => array( - 'pretty_version' => 'v2.5.1', - 'version' => '2.5.1.0', + 'pretty_version' => 'v2.5.2', + 'version' => '2.5.2.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/deprecation-contracts', 'aliases' => array(), diff --git a/vendor/guzzlehttp/psr7/src/UriComparator.php b/vendor/guzzlehttp/psr7/src/UriComparator.php new file mode 100644 index 0000000..70c582a --- /dev/null +++ b/vendor/guzzlehttp/psr7/src/UriComparator.php @@ -0,0 +1,52 @@ +getHost(), $modified->getHost()) !== 0) { + return true; + } + + if ($original->getScheme() !== $modified->getScheme()) { + return true; + } + + if (self::computePort($original) !== self::computePort($modified)) { + return true; + } + + return false; + } + + private static function computePort(UriInterface $uri): int + { + $port = $uri->getPort(); + + if (null !== $port) { + return $port; + } + + return 'https' === $uri->getScheme() ? 443 : 80; + } + + private function __construct() + { + // cannot be instantiated + } +} diff --git a/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AttachmentBase.php b/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AttachmentBase.php new file mode 100644 index 0000000..720a090 --- /dev/null +++ b/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AttachmentBase.php @@ -0,0 +1,139 @@ +_propDict)) { + return $this->_propDict["contentType"]; + } else { + return null; + } + } + + /** + * Sets the contentType + * + * @param string $val The contentType + * + * @return AttachmentBase + */ + public function setContentType($val) + { + $this->_propDict["contentType"] = $val; + return $this; + } + + /** + * Gets the lastModifiedDateTime + * + * @return \DateTime|null The lastModifiedDateTime + */ + public function getLastModifiedDateTime() + { + if (array_key_exists("lastModifiedDateTime", $this->_propDict)) { + if (is_a($this->_propDict["lastModifiedDateTime"], "\DateTime") || is_null($this->_propDict["lastModifiedDateTime"])) { + return $this->_propDict["lastModifiedDateTime"]; + } else { + $this->_propDict["lastModifiedDateTime"] = new \DateTime($this->_propDict["lastModifiedDateTime"]); + return $this->_propDict["lastModifiedDateTime"]; + } + } + return null; + } + + /** + * Sets the lastModifiedDateTime + * + * @param \DateTime $val The lastModifiedDateTime + * + * @return AttachmentBase + */ + public function setLastModifiedDateTime($val) + { + $this->_propDict["lastModifiedDateTime"] = $val; + return $this; + } + + /** + * Gets the name + * + * @return string|null The name + */ + public function getName() + { + if (array_key_exists("name", $this->_propDict)) { + return $this->_propDict["name"]; + } else { + return null; + } + } + + /** + * Sets the name + * + * @param string $val The name + * + * @return AttachmentBase + */ + public function setName($val) + { + $this->_propDict["name"] = $val; + return $this; + } + + /** + * Gets the size + * + * @return int|null The size + */ + public function getSize() + { + if (array_key_exists("size", $this->_propDict)) { + return $this->_propDict["size"]; + } else { + return null; + } + } + + /** + * Sets the size + * + * @param int $val The size + * + * @return AttachmentBase + */ + public function setSize($val) + { + $this->_propDict["size"] = intval($val); + return $this; + } + +} diff --git a/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AuthorizationInfo.php b/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AuthorizationInfo.php new file mode 100644 index 0000000..7990a9f --- /dev/null +++ b/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AuthorizationInfo.php @@ -0,0 +1,52 @@ +_propDict)) { + return $this->_propDict["certificateUserIds"]; + } else { + return null; + } + } + + /** + * Sets the certificateUserIds + * + * @param string $val The value of the certificateUserIds + * + * @return AuthorizationInfo + */ + public function setCertificateUserIds($val) + { + $this->_propDict["certificateUserIds"] = $val; + return $this; + } +} diff --git a/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CustomExtensionCallbackConfiguration.php b/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CustomExtensionCallbackConfiguration.php new file mode 100644 index 0000000..97b5e56 --- /dev/null +++ b/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CustomExtensionCallbackConfiguration.php @@ -0,0 +1,57 @@ +_propDict)) { + if (is_a($this->_propDict["timeoutDuration"], "\DateInterval") || is_null($this->_propDict["timeoutDuration"])) { + return $this->_propDict["timeoutDuration"]; + } else { + $this->_propDict["timeoutDuration"] = new \DateInterval($this->_propDict["timeoutDuration"]); + return $this->_propDict["timeoutDuration"]; + } + } + return null; + } + + /** + * Sets the timeoutDuration + * + * @param \DateInterval $val The value to assign to the timeoutDuration + * + * @return CustomExtensionCallbackConfiguration The CustomExtensionCallbackConfiguration + */ + public function setTimeoutDuration($val) + { + $this->_propDict["timeoutDuration"] = $val; + return $this; + } +} diff --git a/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CustomExtensionCalloutRequest.php b/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CustomExtensionCalloutRequest.php new file mode 100644 index 0000000..3b9165b --- /dev/null +++ b/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CustomExtensionCalloutRequest.php @@ -0,0 +1,109 @@ +_propDict)) { + if (is_a($this->_propDict["data"], "\Beta\Microsoft\Graph\Model\CustomExtensionData") || is_null($this->_propDict["data"])) { + return $this->_propDict["data"]; + } else { + $this->_propDict["data"] = new CustomExtensionData($this->_propDict["data"]); + return $this->_propDict["data"]; + } + } + return null; + } + + /** + * Sets the data + * + * @param CustomExtensionData $val The value to assign to the data + * + * @return CustomExtensionCalloutRequest The CustomExtensionCalloutRequest + */ + public function setData($val) + { + $this->_propDict["data"] = $val; + return $this; + } + /** + * Gets the source + * + * @return string|null The source + */ + public function getSource() + { + if (array_key_exists("source", $this->_propDict)) { + return $this->_propDict["source"]; + } else { + return null; + } + } + + /** + * Sets the source + * + * @param string $val The value of the source + * + * @return CustomExtensionCalloutRequest + */ + public function setSource($val) + { + $this->_propDict["source"] = $val; + return $this; + } + /** + * Gets the type + * + * @return string|null The type + */ + public function getType() + { + if (array_key_exists("type", $this->_propDict)) { + return $this->_propDict["type"]; + } else { + return null; + } + } + + /** + * Sets the type + * + * @param string $val The value of the type + * + * @return CustomExtensionCalloutRequest + */ + public function setType($val) + { + $this->_propDict["type"] = $val; + return $this; + } +} diff --git a/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CustomExtensionCalloutResponse.php b/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CustomExtensionCalloutResponse.php new file mode 100644 index 0000000..c337dc0 --- /dev/null +++ b/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CustomExtensionCalloutResponse.php @@ -0,0 +1,109 @@ +_propDict)) { + if (is_a($this->_propDict["data"], "\Beta\Microsoft\Graph\Model\CustomExtensionData") || is_null($this->_propDict["data"])) { + return $this->_propDict["data"]; + } else { + $this->_propDict["data"] = new CustomExtensionData($this->_propDict["data"]); + return $this->_propDict["data"]; + } + } + return null; + } + + /** + * Sets the data + * + * @param CustomExtensionData $val The value to assign to the data + * + * @return CustomExtensionCalloutResponse The CustomExtensionCalloutResponse + */ + public function setData($val) + { + $this->_propDict["data"] = $val; + return $this; + } + /** + * Gets the source + * + * @return string|null The source + */ + public function getSource() + { + if (array_key_exists("source", $this->_propDict)) { + return $this->_propDict["source"]; + } else { + return null; + } + } + + /** + * Sets the source + * + * @param string $val The value of the source + * + * @return CustomExtensionCalloutResponse + */ + public function setSource($val) + { + $this->_propDict["source"] = $val; + return $this; + } + /** + * Gets the type + * + * @return string|null The type + */ + public function getType() + { + if (array_key_exists("type", $this->_propDict)) { + return $this->_propDict["type"]; + } else { + return null; + } + } + + /** + * Sets the type + * + * @param string $val The value of the type + * + * @return CustomExtensionCalloutResponse + */ + public function setType($val) + { + $this->_propDict["type"] = $val; + return $this; + } +} diff --git a/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CustomExtensionData.php b/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CustomExtensionData.php new file mode 100644 index 0000000..f57b359 --- /dev/null +++ b/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CustomExtensionData.php @@ -0,0 +1,26 @@ +_propDict)) { + if (is_a($this->_propDict["contentBytes"], "\GuzzleHttp\Psr7\Stream") || is_null($this->_propDict["contentBytes"])) { + return $this->_propDict["contentBytes"]; + } else { + $this->_propDict["contentBytes"] = \GuzzleHttp\Psr7\Utils::streamFor($this->_propDict["contentBytes"]); + return $this->_propDict["contentBytes"]; + } + } + return null; + } + + /** + * Sets the contentBytes + * + * @param \GuzzleHttp\Psr7\Stream $val The contentBytes + * + * @return TaskFileAttachment + */ + public function setContentBytes($val) + { + $this->_propDict["contentBytes"] = $val; + return $this; + } + +} diff --git a/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/TeamsAppSettings.php b/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/TeamsAppSettings.php new file mode 100644 index 0000000..2ba6721 --- /dev/null +++ b/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/TeamsAppSettings.php @@ -0,0 +1,54 @@ +_propDict)) { + return $this->_propDict["isChatResourceSpecificConsentEnabled"]; + } else { + return null; + } + } + + /** + * Sets the isChatResourceSpecificConsentEnabled + * + * @param bool $val The isChatResourceSpecificConsentEnabled + * + * @return TeamsAppSettings + */ + public function setIsChatResourceSpecificConsentEnabled($val) + { + $this->_propDict["isChatResourceSpecificConsentEnabled"] = boolval($val); + return $this; + } + +} diff --git a/vendor/microsoft/microsoft-graph/src/Model/AssociatedTeamInfo.php b/vendor/microsoft/microsoft-graph/src/Model/AssociatedTeamInfo.php new file mode 100644 index 0000000..5318289 --- /dev/null +++ b/vendor/microsoft/microsoft-graph/src/Model/AssociatedTeamInfo.php @@ -0,0 +1,27 @@ +_propDict)) { + return $this->_propDict["certificationDetailsUrl"]; + } else { + return null; + } + } + + /** + * Sets the certificationDetailsUrl + * URL that shows certification details for the application. + * + * @param string $val The value of the certificationDetailsUrl + * + * @return Certification + */ + public function setCertificationDetailsUrl($val) + { + $this->_propDict["certificationDetailsUrl"] = $val; + return $this; + } + + /** + * Gets the certificationExpirationDateTime + * The timestamp when the current certification for the application will expire. + * + * @return \DateTime|null The certificationExpirationDateTime + */ + public function getCertificationExpirationDateTime() + { + if (array_key_exists("certificationExpirationDateTime", $this->_propDict)) { + if (is_a($this->_propDict["certificationExpirationDateTime"], "\DateTime") || is_null($this->_propDict["certificationExpirationDateTime"])) { + return $this->_propDict["certificationExpirationDateTime"]; + } else { + $this->_propDict["certificationExpirationDateTime"] = new \DateTime($this->_propDict["certificationExpirationDateTime"]); + return $this->_propDict["certificationExpirationDateTime"]; + } + } + return null; + } + + /** + * Sets the certificationExpirationDateTime + * The timestamp when the current certification for the application will expire. + * + * @param \DateTime $val The value to assign to the certificationExpirationDateTime + * + * @return Certification The Certification + */ + public function setCertificationExpirationDateTime($val) + { + $this->_propDict["certificationExpirationDateTime"] = $val; + return $this; + } + /** + * Gets the isCertifiedByMicrosoft + * Indicates whether the application is certified by Microsoft. + * + * @return bool|null The isCertifiedByMicrosoft + */ + public function getIsCertifiedByMicrosoft() + { + if (array_key_exists("isCertifiedByMicrosoft", $this->_propDict)) { + return $this->_propDict["isCertifiedByMicrosoft"]; + } else { + return null; + } + } + + /** + * Sets the isCertifiedByMicrosoft + * Indicates whether the application is certified by Microsoft. + * + * @param bool $val The value of the isCertifiedByMicrosoft + * + * @return Certification + */ + public function setIsCertifiedByMicrosoft($val) + { + $this->_propDict["isCertifiedByMicrosoft"] = $val; + return $this; + } + /** + * Gets the isPublisherAttested + * Indicates whether the application has been self-attested by the application developer or the publisher. + * + * @return bool|null The isPublisherAttested + */ + public function getIsPublisherAttested() + { + if (array_key_exists("isPublisherAttested", $this->_propDict)) { + return $this->_propDict["isPublisherAttested"]; + } else { + return null; + } + } + + /** + * Sets the isPublisherAttested + * Indicates whether the application has been self-attested by the application developer or the publisher. + * + * @param bool $val The value of the isPublisherAttested + * + * @return Certification + */ + public function setIsPublisherAttested($val) + { + $this->_propDict["isPublisherAttested"] = $val; + return $this; + } + + /** + * Gets the lastCertificationDateTime + * The timestamp when the certification for the application was most recently added or updated. + * + * @return \DateTime|null The lastCertificationDateTime + */ + public function getLastCertificationDateTime() + { + if (array_key_exists("lastCertificationDateTime", $this->_propDict)) { + if (is_a($this->_propDict["lastCertificationDateTime"], "\DateTime") || is_null($this->_propDict["lastCertificationDateTime"])) { + return $this->_propDict["lastCertificationDateTime"]; + } else { + $this->_propDict["lastCertificationDateTime"] = new \DateTime($this->_propDict["lastCertificationDateTime"]); + return $this->_propDict["lastCertificationDateTime"]; + } + } + return null; + } + + /** + * Sets the lastCertificationDateTime + * The timestamp when the certification for the application was most recently added or updated. + * + * @param \DateTime $val The value to assign to the lastCertificationDateTime + * + * @return Certification The Certification + */ + public function setLastCertificationDateTime($val) + { + $this->_propDict["lastCertificationDateTime"] = $val; + return $this; + } +} diff --git a/vendor/microsoft/microsoft-graph/src/Model/SharedWithChannelTeamInfo.php b/vendor/microsoft/microsoft-graph/src/Model/SharedWithChannelTeamInfo.php new file mode 100644 index 0000000..4cca586 --- /dev/null +++ b/vendor/microsoft/microsoft-graph/src/Model/SharedWithChannelTeamInfo.php @@ -0,0 +1,86 @@ +_propDict)) { + return $this->_propDict["isHostTeam"]; + } else { + return null; + } + } + + /** + * Sets the isHostTeam + * Indicates whether the team is the host of the channel. + * + * @param bool $val The isHostTeam + * + * @return SharedWithChannelTeamInfo + */ + public function setIsHostTeam($val) + { + $this->_propDict["isHostTeam"] = boolval($val); + return $this; + } + + + /** + * Gets the allowedMembers + * A collection of team members who have access to the shared channel. + * + * @return array|null The allowedMembers + */ + public function getAllowedMembers() + { + if (array_key_exists("allowedMembers", $this->_propDict)) { + return $this->_propDict["allowedMembers"]; + } else { + return null; + } + } + + /** + * Sets the allowedMembers + * A collection of team members who have access to the shared channel. + * + * @param ConversationMember[] $val The allowedMembers + * + * @return SharedWithChannelTeamInfo + */ + public function setAllowedMembers($val) + { + $this->_propDict["allowedMembers"] = $val; + return $this; + } + +} diff --git a/vendor/microsoft/microsoft-graph/src/Model/TeamInfo.php b/vendor/microsoft/microsoft-graph/src/Model/TeamInfo.php new file mode 100644 index 0000000..23c07b6 --- /dev/null +++ b/vendor/microsoft/microsoft-graph/src/Model/TeamInfo.php @@ -0,0 +1,116 @@ +_propDict)) { + return $this->_propDict["displayName"]; + } else { + return null; + } + } + + /** + * Sets the displayName + * The name of the team. + * + * @param string $val The displayName + * + * @return TeamInfo + */ + public function setDisplayName($val) + { + $this->_propDict["displayName"] = $val; + return $this; + } + + /** + * Gets the tenantId + * The ID of the Azure Active Directory tenant. + * + * @return string|null The tenantId + */ + public function getTenantId() + { + if (array_key_exists("tenantId", $this->_propDict)) { + return $this->_propDict["tenantId"]; + } else { + return null; + } + } + + /** + * Sets the tenantId + * The ID of the Azure Active Directory tenant. + * + * @param string $val The tenantId + * + * @return TeamInfo + */ + public function setTenantId($val) + { + $this->_propDict["tenantId"] = $val; + return $this; + } + + /** + * Gets the team + * + * @return Team|null The team + */ + public function getTeam() + { + if (array_key_exists("team", $this->_propDict)) { + if (is_a($this->_propDict["team"], "\Microsoft\Graph\Model\Team") || is_null($this->_propDict["team"])) { + return $this->_propDict["team"]; + } else { + $this->_propDict["team"] = new Team($this->_propDict["team"]); + return $this->_propDict["team"]; + } + } + return null; + } + + /** + * Sets the team + * + * @param Team $val The team + * + * @return TeamInfo + */ + public function setTeam($val) + { + $this->_propDict["team"] = $val; + return $this; + } + +}