Skip to content

Commit

Permalink
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.418.2
Browse files Browse the repository at this point in the history
  • Loading branch information
speakeasybot committed Oct 14, 2024
1 parent 2816ed7 commit 172d716
Show file tree
Hide file tree
Showing 7 changed files with 37 additions and 16 deletions.
10 changes: 5 additions & 5 deletions .speakeasy/gen.lock
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
lockVersion: 2.0.0
id: db1bb4da-054f-485f-8c6e-d42db3f1da90
management:
docChecksum: 423cb74009b95d54915258fb6e315547
docChecksum: 2d37437d80dc456d75ab3edb949f06f6
docVersion: 0.4.0 .
speakeasyVersion: 1.417.0
generationVersion: 2.438.2
releaseVersion: 0.44.0
configChecksum: 77ee1b273922ed6ef47f37dd97734858
speakeasyVersion: 1.418.2
generationVersion: 2.438.3
releaseVersion: 0.44.1
configChecksum: c7bdd120ebe8b782dc3da29613077757
repoURL: https://github.com/speakeasy-api/speakeasy-client-sdk-php.git
repoSubDirectory: .
installationURL: https://github.com/speakeasy-api/speakeasy-client-sdk-php
Expand Down
2 changes: 1 addition & 1 deletion .speakeasy/gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ generation:
auth:
oAuth2ClientCredentialsEnabled: false
php:
version: 0.44.0
version: 0.44.1
clientServerStatusCodesAsErrors: true
flattenGlobalSecurity: true
imports:
Expand Down
10 changes: 5 additions & 5 deletions .speakeasy/workflow.lock
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
speakeasyVersion: 1.417.0
speakeasyVersion: 1.418.2
sources:
my-source:
sourceNamespace: my-source
sourceRevisionDigest: sha256:0d9a2154801cbe688ffc9351d0cf254379308770fbe1b8d9201528ad63c566c7
sourceBlobDigest: sha256:eac306db32b189da0c4ad06634416d17f600aa31a3a9f3defd174b47b1e5b6af
sourceRevisionDigest: sha256:dce91b65cb2d448c62955d1a9f739e7c1854f1cedfcbe459539d4cbdd8c34e2b
sourceBlobDigest: sha256:9260eb98c91037312d4b3aac5f17594613b554dfb1f624d80e3832f7af02ebde
tags:
- latest
- main
targets:
php-target:
source: my-source
sourceNamespace: my-source
sourceRevisionDigest: sha256:0d9a2154801cbe688ffc9351d0cf254379308770fbe1b8d9201528ad63c566c7
sourceBlobDigest: sha256:eac306db32b189da0c4ad06634416d17f600aa31a3a9f3defd174b47b1e5b6af
sourceRevisionDigest: sha256:dce91b65cb2d448c62955d1a9f739e7c1854f1cedfcbe459539d4cbdd8c34e2b
sourceBlobDigest: sha256:9260eb98c91037312d4b3aac5f17594613b554dfb1f624d80e3832f7af02ebde
workflow:
workflowVersion: 1.0.0
speakeasyVersion: latest
Expand Down
12 changes: 11 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -1314,4 +1314,14 @@ Based on:
### Generated
- [php v0.44.0] .
### Releases
- [Composer v0.44.0] https://packagist.org/packages/speakeasy-api/speakeasy-client-sdk-php#v0.44.0 - .
- [Composer v0.44.0] https://packagist.org/packages/speakeasy-api/speakeasy-client-sdk-php#v0.44.0 - .

## 2024-10-14 00:16:24
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.418.2 (2.438.3) https://github.com/speakeasy-api/speakeasy
### Generated
- [php v0.44.1] .
### Releases
- [Composer v0.44.1] https://packagist.org/packages/speakeasy-api/speakeasy-client-sdk-php#v0.44.1 - .
1 change: 1 addition & 0 deletions docs/Models/Shared/Workspace.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ A speakeasy workspace
| `slug` | *string* | :heavy_check_mark: | N/A |
| `updatedAt` | [\DateTime](https://www.php.net/manual/en/class.datetime.php) | :heavy_check_mark: | N/A |
| `verified` | *bool* | :heavy_check_mark: | N/A |
| `inactive` | *?bool* | :heavy_minus_sign: | N/A |
| ~~`telemetryDisabled`~~ | *?bool* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.<br/><br/>Deprecated. Use organization.telemetry_disabled instead. |
| `ociRepo` | *?string* | :heavy_minus_sign: | N/A |
| `ociRepoCreatedAt` | [\DateTime](https://www.php.net/manual/en/class.datetime.php) | :heavy_minus_sign: | N/A |
12 changes: 11 additions & 1 deletion src/Models/Shared/Workspace.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,14 @@ class Workspace
#[\JMS\Serializer\Annotation\SerializedName('id')]
public string $id;

/**
*
* @var ?bool $inactive
*/
#[\JMS\Serializer\Annotation\SerializedName('inactive')]
#[\JMS\Serializer\Annotation\SkipWhenNull]
public ?bool $inactive = null;

/**
*
* @var string $name
Expand Down Expand Up @@ -95,11 +103,12 @@ class Workspace
* @param string $slug
* @param \DateTime $updatedAt
* @param bool $verified
* @param ?bool $inactive
* @param ?bool $telemetryDisabled
* @param ?string $ociRepo
* @param ?\DateTime $ociRepoCreatedAt
*/
public function __construct(\DateTime $createdAt, string $id, string $name, string $organizationId, string $slug, \DateTime $updatedAt, bool $verified, ?bool $telemetryDisabled = null, ?string $ociRepo = null, ?\DateTime $ociRepoCreatedAt = null)
public function __construct(\DateTime $createdAt, string $id, string $name, string $organizationId, string $slug, \DateTime $updatedAt, bool $verified, ?bool $inactive = null, ?bool $telemetryDisabled = null, ?string $ociRepo = null, ?\DateTime $ociRepoCreatedAt = null)
{
$this->createdAt = $createdAt;
$this->id = $id;
Expand All @@ -108,6 +117,7 @@ public function __construct(\DateTime $createdAt, string $id, string $name, stri
$this->slug = $slug;
$this->updatedAt = $updatedAt;
$this->verified = $verified;
$this->inactive = $inactive;
$this->telemetryDisabled = $telemetryDisabled;
$this->ociRepo = $ociRepo;
$this->ociRepoCreatedAt = $ociRepoCreatedAt;
Expand Down
6 changes: 3 additions & 3 deletions src/SDKConfiguration.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ class SDKConfiguration

public string $openapiDocVersion = '0.4.0 .';

public string $sdkVersion = '0.44.0';
public string $sdkVersion = '0.44.1';

public string $genVersion = '2.438.2';
public string $genVersion = '2.438.3';

public string $userAgent = 'speakeasy-sdk/php 0.44.0 2.438.2 0.4.0 . speakeasy-api/speakeasy-client-sdk-php';
public string $userAgent = 'speakeasy-sdk/php 0.44.1 2.438.3 0.4.0 . speakeasy-api/speakeasy-client-sdk-php';
/** @var array<string, array<string, array<string, mixed>>> */
public ?array $globals = [
'parameters' => [],
Expand Down

0 comments on commit 172d716

Please sign in to comment.