Skip to content

Commit

Permalink
ci: regenerated with OpenAPI Doc 0.4.0 ., Speakeasy CLI 1.313.0
Browse files Browse the repository at this point in the history
  • Loading branch information
speakeasybot committed Jun 21, 2024
1 parent e3274e0 commit dc1308d
Show file tree
Hide file tree
Showing 8 changed files with 34 additions and 12 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: eb530f662240663b5cb067995daf351c
docChecksum: dc49a07c3d8b79e5d6468202954aaafd
docVersion: 0.4.0 .
speakeasyVersion: 1.310.0
generationVersion: 2.347.4
releaseVersion: 0.38.7
configChecksum: d56e084660042f0fd0b004c7a2ddc7c0
speakeasyVersion: 1.313.0
generationVersion: 2.347.8
releaseVersion: 0.38.8
configChecksum: e8ec9b3779c039459b55e1ebf13976ac
repoURL: https://github.com/speakeasy-api/speakeasy-client-sdk-php.git
repoSubDirectory: .
installationURL: https://github.com/speakeasy-api/speakeasy-client-sdk-php
Expand Down
12 changes: 11 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -964,4 +964,14 @@ Based on:
### Generated
- [php v0.38.7] .
### Releases
- [Composer v0.38.7] https://packagist.org/packages/speakeasy-api/speakeasy-client-sdk-php#v0.38.7 - .
- [Composer v0.38.7] https://packagist.org/packages/speakeasy-api/speakeasy-client-sdk-php#v0.38.7 - .

## 2024-06-21 00:12:55
### Changes
Based on:
- OpenAPI Doc 0.4.0 . https://docs.speakeasyapi.dev/openapi.yaml
- Speakeasy CLI 1.313.0 (2.347.8) https://github.com/speakeasy-api/speakeasy
### Generated
- [php v0.38.8] .
### Releases
- [Composer v0.38.8] https://packagist.org/packages/speakeasy-api/speakeasy-client-sdk-php#v0.38.8 - .
1 change: 1 addition & 0 deletions docs/Models/Shared/CliEvent.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
| `generatePublished` | *?bool* | :heavy_minus_sign: | Indicates whether the target was considered published. |
| `generateRepoUrl` | *?string* | :heavy_minus_sign: | Expected Repo URL, for use in documentation generation. |
| `generateTarget` | *?string* | :heavy_minus_sign: | The target of the event. |
| `generateTargetName` | *?string* | :heavy_minus_sign: | The workflow name of the target. |
| `generateTargetVersion` | *?string* | :heavy_minus_sign: | The version of the target. |
| `generateVersion` | *?string* | :heavy_minus_sign: | Version of the generation logic used. |
| `ghActionOrganization` | *?string* | :heavy_minus_sign: | GitHub organization of the action. |
Expand Down
2 changes: 1 addition & 1 deletion docs/Models/Shared/TargetSDK.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
| `generateNumberOfOperationsUsed` | *?int* | :heavy_minus_sign: | The number of operations used in generation. |
| `generatePublished` | *?bool* | :heavy_minus_sign: | Indicates whether the target was considered published. |
| `generateTarget` | *string* | :heavy_check_mark: | eg `typescript`, `terraform`, `python` |
| `generateTargetName` | *?string* | :heavy_minus_sign: | The name of the target as defined by the user. |
| `generateTargetName` | *?string* | :heavy_minus_sign: | The workflow name of the target. |
| `generateTargetVersion` | *?string* | :heavy_minus_sign: | The version of the Speakeasy generator for this target eg v2 of the typescript generator. |
| `ghActionOrganization` | *?string* | :heavy_minus_sign: | GitHub organization of the action. |
| `ghActionRef` | *?string* | :heavy_minus_sign: | GitHub Action ref value. |
Expand Down
2 changes: 1 addition & 1 deletion 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.38.7
version: 0.38.8
flattenGlobalSecurity: true
imports:
option: openapi
Expand Down
11 changes: 11 additions & 0 deletions src/Models/Shared/CliEvent.php
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,16 @@ class CliEvent
#[\JMS\Serializer\Annotation\SkipWhenEmpty]
public ?string $generateTarget = null;

/**
* The workflow name of the target.
*
* @var ?string $generateTargetName
*/
#[\JMS\Serializer\Annotation\SerializedName('generate_target_name')]
#[\JMS\Serializer\Annotation\Type('string')]
#[\JMS\Serializer\Annotation\SkipWhenEmpty]
public ?string $generateTargetName = null;

/**
* The version of the target.
*
Expand Down Expand Up @@ -803,6 +813,7 @@ public function __construct()
$this->generatePublished = null;
$this->generateRepoUrl = null;
$this->generateTarget = null;
$this->generateTargetName = null;
$this->generateTargetVersion = null;
$this->generateVersion = null;
$this->ghActionOrganization = null;
Expand Down
2 changes: 1 addition & 1 deletion src/Models/Shared/TargetSDK.php
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ class TargetSDK
public string $generateTarget;

/**
* The name of the target as defined by the user.
* The workflow name of the target.
*
* @var ?string $generateTargetName
*/
Expand Down
6 changes: 3 additions & 3 deletions src/SDKConfiguration.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ class SDKConfiguration

public string $openapiDocVersion = '0.4.0 .';

public string $sdkVersion = '0.38.7';
public string $sdkVersion = '0.38.8';

public string $genVersion = '2.347.4';
public string $genVersion = '2.347.8';

public string $userAgent = 'speakeasy-sdk/php 0.38.7 2.347.4 0.4.0 . speakeasy-api/speakeasy-client-sdk-php';
public string $userAgent = 'speakeasy-sdk/php 0.38.8 2.347.8 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 dc1308d

Please sign in to comment.