Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 22 additions & 20 deletions .speakeasy/gen.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .speakeasy/gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ generation:
generateNewTests: false
skipResponseBodyAssertions: false
php:
version: 0.28.5
version: 0.28.6
additionalDependencies:
autoload: {}
autoload-dev: {}
Expand Down
14 changes: 7 additions & 7 deletions .speakeasy/workflow.lock
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
speakeasyVersion: 1.700.0
speakeasyVersion: 1.700.2
sources:
hris:
sourceNamespace: hris
Expand All @@ -8,20 +8,20 @@ sources:
- latest
stackone-specs:
sourceNamespace: stackone-specs
sourceRevisionDigest: sha256:ffdae624075a4ecb1890a6a6e4f09d5a87f72c558ae4b497c2723f20cde6cddf
sourceBlobDigest: sha256:1c184c8f9ceb7580ee0b2462d087419b923e5fd948a76b85706e5d0bd919554b
sourceRevisionDigest: sha256:b96e646ebfd4d34ab284b45c547663fbabb2f3d8d76f6436db2a312615bcfa23
sourceBlobDigest: sha256:18b19ddc3a149eaf0011152213b54faffe95a42244838d36b1c8c5243adc2886
tags:
- latest
- speakeasy-sdk-regen-1769535902
- speakeasy-sdk-regen-1769904346
- 1.0.0
targets:
stack-one:
source: stackone-specs
sourceNamespace: stackone-specs
sourceRevisionDigest: sha256:ffdae624075a4ecb1890a6a6e4f09d5a87f72c558ae4b497c2723f20cde6cddf
sourceBlobDigest: sha256:1c184c8f9ceb7580ee0b2462d087419b923e5fd948a76b85706e5d0bd919554b
sourceRevisionDigest: sha256:b96e646ebfd4d34ab284b45c547663fbabb2f3d8d76f6436db2a312615bcfa23
sourceBlobDigest: sha256:18b19ddc3a149eaf0011152213b54faffe95a42244838d36b1c8c5243adc2886
codeSamplesNamespace: stackone-specs-php-code-samples
codeSamplesRevisionDigest: sha256:0d5550b206b339848b61d4e5adb00c7a59268f529b296d5ff6a26157c79aaa2a
codeSamplesRevisionDigest: sha256:b621a3b8b6d8ccbf65e50f38779692abe81d6a7443284355070790acdc7983fe
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 @@ -338,4 +338,14 @@ Based on:
### Generated
- [php v0.28.5] .
### Releases
- [Composer v0.28.5] https://packagist.org/packages/stackone/client-sdk#v0.28.5 - .
- [Composer v0.28.5] https://packagist.org/packages/stackone/client-sdk#v0.28.5 - .

## 2026-02-01 00:05:25
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.700.2 (2.801.2) https://github.com/speakeasy-api/speakeasy
### Generated
- [php v0.28.6] .
### Releases
- [Composer v0.28.6] https://packagist.org/packages/stackone/client-sdk#v0.28.6 - .
13 changes: 7 additions & 6 deletions docs/Models/Components/ActionBuildResponseDto.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@

## Fields

| Field | Type | Required | Description |
| -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- |
| `status` | [Components\ActionBuildResponseDtoStatus](../../Models/Components/ActionBuildResponseDtoStatus.md) | :heavy_check_mark: | Build status |
| `actionsIndexed` | *float* | :heavy_check_mark: | Number of actions indexed |
| `connectorFilter` | *?string* | :heavy_minus_sign: | Connector filter applied |
| `error` | *?string* | :heavy_minus_sign: | Error message if status is error |
| Field | Type | Required | Description | Example |
| -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- |
| `status` | [Components\ActionBuildResponseDtoStatus](../../Models/Components/ActionBuildResponseDtoStatus.md) | :heavy_check_mark: | Build status | accepted |
| `message` | *?string* | :heavy_minus_sign: | Status message | |
| `actionsIndexed` | *?float* | :heavy_minus_sign: | Number of actions indexed (only for synchronous builds) | |
| `connectorFilter` | *?string* | :heavy_minus_sign: | Connector filter applied | |
| `error` | *?string* | :heavy_minus_sign: | Error message if status is error | |
9 changes: 5 additions & 4 deletions docs/Models/Components/ActionBuildResponseDtoStatus.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ Build status

## Values

| Name | Value |
| --------- | --------- |
| `Success` | success |
| `Error` | error |
| Name | Value |
| ---------- | ---------- |
| `Accepted` | accepted |
| `Success` | success |
| `Error` | error |
22 changes: 17 additions & 5 deletions src/Models/Components/ActionBuildResponseDto.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,22 @@ class ActionBuildResponseDto
public ActionBuildResponseDtoStatus $status;

/**
* Number of actions indexed
* Status message
*
* @var float $actionsIndexed
* @var ?string $message
*/
#[\Speakeasy\Serializer\Annotation\SerializedName('message')]
#[\Speakeasy\Serializer\Annotation\SkipWhenNull]
public ?string $message = null;

/**
* Number of actions indexed (only for synchronous builds)
*
* @var ?float $actionsIndexed
*/
#[\Speakeasy\Serializer\Annotation\SerializedName('actions_indexed')]
public float $actionsIndexed;
#[\Speakeasy\Serializer\Annotation\SkipWhenNull]
public ?float $actionsIndexed = null;

/**
* Connector filter applied
Expand All @@ -48,14 +58,16 @@ class ActionBuildResponseDto

/**
* @param ActionBuildResponseDtoStatus $status
* @param float $actionsIndexed
* @param ?string $message
* @param ?float $actionsIndexed
* @param ?string $connectorFilter
* @param ?string $error
* @phpstan-pure
*/
public function __construct(ActionBuildResponseDtoStatus $status, float $actionsIndexed, ?string $connectorFilter = null, ?string $error = null)
public function __construct(ActionBuildResponseDtoStatus $status, ?string $message = null, ?float $actionsIndexed = null, ?string $connectorFilter = null, ?string $error = null)
{
$this->status = $status;
$this->message = $message;
$this->actionsIndexed = $actionsIndexed;
$this->connectorFilter = $connectorFilter;
$this->error = $error;
Expand Down
1 change: 1 addition & 0 deletions src/Models/Components/ActionBuildResponseDtoStatus.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
/** Build status */
enum ActionBuildResponseDtoStatus: string
{
case Accepted = 'accepted';
case Success = 'success';
case Error = 'error';
}
6 changes: 3 additions & 3 deletions src/SDKConfiguration.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ class SDKConfiguration

public string $openapiDocVersion = '1.0.0';

public string $sdkVersion = '0.28.5';
public string $sdkVersion = '0.28.6';

public string $genVersion = '2.801.0';
public string $genVersion = '2.801.2';

public string $userAgent = 'speakeasy-sdk/php 0.28.5 2.801.0 1.0.0 stackone/client-sdk';
public string $userAgent = 'speakeasy-sdk/php 0.28.6 2.801.2 1.0.0 stackone/client-sdk';

public ?RetryConfig $retryConfig = null;

Expand Down