Skip to content

Commit

Permalink
Updated PHP client to v1.180.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Bitmovin OpenApi Bot committed Dec 12, 2023
1 parent b73baf6 commit 930f6ab
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ To install the API client with composer, add the following to your composer.json
{
"require":
{
"bitmovin/bitmovin-api-sdk-php": "1.179.0"
"bitmovin/bitmovin-api-sdk-php": "1.180.0"
}
}
```
Expand All @@ -49,7 +49,7 @@ Then run `php composer.phar install`

OR

run the following command: `php composer.phar require bitmovin/bitmovin-api-sdk-php:1.179.0`
run the following command: `php composer.phar require bitmovin/bitmovin-api-sdk-php:1.180.0`

## Initialization

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "bitmovin/bitmovin-api-sdk-php",
"description": "This is the Bitmovin API SDK for PHP",
"version": "1.179.0",
"version": "1.180.0",
"authors": [
{
"name": "Bitmovin Inc",
Expand Down
4 changes: 4 additions & 0 deletions docs/classes/BitmovinApiSdk_Models_AccountInformation.html
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ <h2 id="synopsis">Synopsis</h2>
</li><li>public <span title="BitmovinApiSdk\Models\bool">bool</span> <a href="#members">$verified</a>;
</li><li>public <span title="BitmovinApiSdk\Models\Marketplace">Marketplace</span> <a href="#members">$marketplace</a>;
</li><li>public <span title="BitmovinApiSdk\Models\bool">bool</span> <a href="#members">$mfaEnabled</a>;
</li><li>public string <a href="#members">$intercomIdVerification</a>;
</li></ul><ul class="none"><li>// Inherited members from <span title="BitmovinApiSdk\Models\BitmovinResource">BitmovinResource</span></li><li>public string <a href="#members">$name</a>;
</li><li>public string <a href="#members">$description</a>;
</li><li>public <span title="Carbon\Carbon">Carbon</span> <a href="#members">$createdAt</a>;
Expand Down Expand Up @@ -136,6 +137,9 @@ <h4>public</h4>
<li id="id"><strong>$id</strong>
string</li>
<li id="intercomIdVerification"><strong>$intercomIdVerification</strong>
string</li>
<li id="lastName"><strong>$lastName</strong>
string</li>
Expand Down
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ <h2>Software Documentation</h2>
</div>
<div id="buildinfo">
<h3>Build</h3>
<p>Tue, 28 Nov 2023 15:06:09 +0000</p>
<p>Tue, 12 Dec 2023 13:20:33 +0000</p>
<h3>VCS Info</h3>
<p>
tag: <br/>
Expand Down
2 changes: 1 addition & 1 deletion src/Common/Middleware/CustomApiHeaders.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public function __construct(string $apiKey, ?string $tenantOrgId)
'Content-Type' => 'application/json',
'X-Api-Key' => $apiKey,
'X-Api-Client' => 'bitmovin-api-sdk-php',
'X-Api-Client-Version' => '1.179.0',
'X-Api-Client-Version' => '1.180.0',
];

if ($tenantOrgId !== null) {
Expand Down
3 changes: 3 additions & 0 deletions src/Models/AccountInformation.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ class AccountInformation extends BitmovinResource
/** @var bool */
public $mfaEnabled;

/** @var string */
public $intercomIdVerification;

public function __construct($attributes = null)
{
parent::__construct($attributes);
Expand Down

0 comments on commit 930f6ab

Please sign in to comment.