Skip to content

Commit

Permalink
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.441.0
Browse files Browse the repository at this point in the history
  • Loading branch information
speakeasybot committed Nov 20, 2024
1 parent 7fc6103 commit e7f3c4d
Show file tree
Hide file tree
Showing 7 changed files with 33 additions and 23 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: be67da8c42c207e9bca0fa82315ff95a
docChecksum: f29435bb099891e387e6c1c61cb02f8c
docVersion: 0.4.0
speakeasyVersion: 1.440.1
speakeasyVersion: 1.441.0
generationVersion: 2.460.1
releaseVersion: 0.45.6
configChecksum: 9844b8a3354d2da8ba63a45c6b4b9df9
releaseVersion: 0.45.7
configChecksum: 5b5900365d0674bc378d3c134951c761
repoURL: https://github.com/speakeasy-api/speakeasy-client-sdk-php.git
repoSubDirectory: .
installationURL: https://github.com/speakeasy-api/speakeasy-client-sdk-php
Expand Down Expand Up @@ -1758,7 +1758,7 @@ examples:
multipart/form-data: {"languages": ["<value>", "<value>", "<value>"], "schema_file": {"": "example.file"}}
responses:
"202":
application/json: {"jobID": "<id>", "status": "pending"}
application/json: {"job_id": "<id>", "status": "pending"}
4XX:
application/json: {"message": "<value>", "status_code": 394086}
getCodeSamplePreviewAsync:
Expand Down
2 changes: 1 addition & 1 deletion .speakeasy/gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ generation:
oAuth2ClientCredentialsEnabled: false
oAuth2PasswordEnabled: false
php:
version: 0.45.6
version: 0.45.7
clientServerStatusCodesAsErrors: true
defaultErrorName: SDKException
flattenGlobalSecurity: true
Expand Down
14 changes: 7 additions & 7 deletions .speakeasy/workflow.lock
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
speakeasyVersion: 1.440.1
speakeasyVersion: 1.441.0
sources:
my-source:
sourceNamespace: my-source
sourceRevisionDigest: sha256:39c76800a32e873a363b2599d9075415587056c9f6f641cf5b837905d6f35912
sourceBlobDigest: sha256:09ddb2e461603760c80a36a3e80f1e009e34e54d1a45c66c7732fce71d6d14b6
sourceRevisionDigest: sha256:17a0032305feade0801df84935e579b937acb95bc72dd3771c7444899a2dd778
sourceBlobDigest: sha256:7f479e2230654a7fc954584afd38a44cb6e0bb683b3a58e9b33dd2159400851a
tags:
- latest
- speakeasy-sdk-regen-1731716179
- speakeasy-sdk-regen-1732061770
targets:
php-target:
source: my-source
sourceNamespace: my-source
sourceRevisionDigest: sha256:39c76800a32e873a363b2599d9075415587056c9f6f641cf5b837905d6f35912
sourceBlobDigest: sha256:09ddb2e461603760c80a36a3e80f1e009e34e54d1a45c66c7732fce71d6d14b6
sourceRevisionDigest: sha256:17a0032305feade0801df84935e579b937acb95bc72dd3771c7444899a2dd778
sourceBlobDigest: sha256:7f479e2230654a7fc954584afd38a44cb6e0bb683b3a58e9b33dd2159400851a
codeSamplesNamespace: my-source-code-samples
codeSamplesRevisionDigest: sha256:2cce0992939f9b38009e4efb28ee5b97e614c34869e7c474fdc481255a03766c
codeSamplesRevisionDigest: sha256:5b591a599868d8c884b205814b8d3b166f409615e58e6ebf31b02779b9fcfacf
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 @@ -1434,4 +1434,14 @@ Based on:
### Generated
- [php v0.45.6] .
### Releases
- [Composer v0.45.6] https://packagist.org/packages/speakeasy-api/speakeasy-client-sdk-php#v0.45.6 - .
- [Composer v0.45.6] https://packagist.org/packages/speakeasy-api/speakeasy-client-sdk-php#v0.45.6 - .

## 2024-11-20 00:16:07
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.441.0 (2.460.1) https://github.com/speakeasy-api/speakeasy
### Generated
- [php v0.45.7] .
### Releases
- [Composer v0.45.7] https://packagist.org/packages/speakeasy-api/speakeasy-client-sdk-php#v0.45.7 - .
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ Job accepted, returns a job ID to poll for status and result

| Field | Type | Required | Description |
| -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- |
| `jobID` | *string* | :heavy_check_mark: | The job ID for polling |
| `jobId` | *string* | :heavy_check_mark: | The job ID for polling |
| `status` | [Shared\CodeSamplesJobStatus](../../Models/Shared/CodeSamplesJobStatus.md) | :heavy_check_mark: | The current status of the job. Possible values are `pending` or `running`. |
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ class GenerateCodeSamplePreviewAsyncResponseBody
/**
* The job ID for polling
*
* @var string $jobID
* @var string $jobId
*/
#[\Speakeasy\Serializer\Annotation\SerializedName('jobID')]
public string $jobID;
#[\Speakeasy\Serializer\Annotation\SerializedName('job_id')]
public string $jobId;

/**
* The current status of the job. Possible values are `pending` or `running`.
Expand All @@ -30,12 +30,12 @@ class GenerateCodeSamplePreviewAsyncResponseBody
public Shared\CodeSamplesJobStatus $status;

/**
* @param string $jobID
* @param string $jobId
* @param Shared\CodeSamplesJobStatus $status
*/
public function __construct(string $jobID, Shared\CodeSamplesJobStatus $status)
public function __construct(string $jobId, Shared\CodeSamplesJobStatus $status)
{
$this->jobID = $jobID;
$this->jobId = $jobId;
$this->status = $status;
}
}
4 changes: 2 additions & 2 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.45.6';
public string $sdkVersion = '0.45.7';

public string $genVersion = '2.460.1';

public string $userAgent = 'speakeasy-sdk/php 0.45.6 2.460.1 0.4.0 speakeasy-api/speakeasy-client-sdk-php';
public string $userAgent = 'speakeasy-sdk/php 0.45.7 2.460.1 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 e7f3c4d

Please sign in to comment.