Skip to content

Commit edf38e2

Browse files
authored
Merge pull request #36 from StackOneHQ/speakeasy-sdk-regen-1758413038
chore: 🐝 Update SDK - Generate 0.26.1
2 parents 9d391e7 + 5fff8cd commit edf38e2

262 files changed

Lines changed: 2599 additions & 1327 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.speakeasy/gen.lock

Lines changed: 283 additions & 202 deletions
Large diffs are not rendered by default.

.speakeasy/gen.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ generation:
2222
generateNewTests: false
2323
skipResponseBodyAssertions: false
2424
php:
25-
version: 0.26.0
25+
version: 0.26.1
2626
additionalDependencies:
2727
autoload: {}
2828
autoload-dev: {}

.speakeasy/workflow.lock

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
speakeasyVersion: 1.615.2
1+
speakeasyVersion: 1.634.2
22
sources:
33
hris:
44
sourceNamespace: hris
@@ -8,20 +8,20 @@ sources:
88
- latest
99
stackone-specs:
1010
sourceNamespace: stackone-specs
11-
sourceRevisionDigest: sha256:7c866d81e0204d6cd727cc01966a3789d7e490300bf9516c3384286a7103f386
12-
sourceBlobDigest: sha256:70f8813ea92b533a8fae837591dddb3045b3ffcf257cc6c9a1e0e8607ade991d
11+
sourceRevisionDigest: sha256:9430d503f03711997c90b59ccb3e72c5dbf0a57cbe12be9ac8d6676ea9afba96
12+
sourceBlobDigest: sha256:7926c43914393d4fc0115a612ef636cd51c10c1a29d7fc5d92b54fc4007a828a
1313
tags:
1414
- latest
15-
- speakeasy-sdk-regen-1757949453
15+
- speakeasy-sdk-regen-1758413038
1616
- 1.0.0
1717
targets:
1818
stack-one:
1919
source: stackone-specs
2020
sourceNamespace: stackone-specs
21-
sourceRevisionDigest: sha256:7c866d81e0204d6cd727cc01966a3789d7e490300bf9516c3384286a7103f386
22-
sourceBlobDigest: sha256:70f8813ea92b533a8fae837591dddb3045b3ffcf257cc6c9a1e0e8607ade991d
21+
sourceRevisionDigest: sha256:9430d503f03711997c90b59ccb3e72c5dbf0a57cbe12be9ac8d6676ea9afba96
22+
sourceBlobDigest: sha256:7926c43914393d4fc0115a612ef636cd51c10c1a29d7fc5d92b54fc4007a828a
2323
codeSamplesNamespace: stackone-specs-php-code-samples
24-
codeSamplesRevisionDigest: sha256:bd4ba86d3993c598e670aa491d967e43fde03767b2dc89084e535c2a98db4148
24+
codeSamplesRevisionDigest: sha256:0735d6ac8c7c6926f8c38a28c5dc69b2f4a551cdcbf8ffdf90170e0b46e9769b
2525
workflow:
2626
workflowVersion: 1.0.0
2727
speakeasyVersion: latest

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ $sdk = client\StackOne::builder()
6868

6969
$request = new Operations\HrisListEmployeesRequest(
7070
xAccountId: '<id>',
71-
fields: 'id,remote_id,first_name,last_name,name,display_name,gender,ethnicity,date_of_birth,birthday,marital_status,avatar_url,avatar,personal_email,personal_phone_number,work_email,work_phone_number,job_id,remote_job_id,job_title,job_description,department_id,remote_department_id,department,cost_centers,company,manager_id,remote_manager_id,hire_date,start_date,tenure,work_anniversary,employment_type,employment_contract_type,employment_status,termination_date,company_name,company_id,remote_company_id,preferred_language,citizenships,home_location,work_location,employments,custom_fields,created_at,updated_at,benefits,employee_number,national_identity_number,national_identity_numbers,skills',
71+
fields: 'id,remote_id,first_name,last_name,name,display_name,gender,ethnicity,date_of_birth,birthday,marital_status,avatar_url,avatar,personal_email,personal_phone_number,work_email,work_phone_number,job_id,remote_job_id,job_title,job_description,department_id,remote_department_id,department,cost_centers,company,manager_id,remote_manager_id,hire_date,start_date,tenure,work_anniversary,employment_type,employment_contract_type,employment_status,termination_date,company_name,company_id,remote_company_id,preferred_language,citizenships,home_location,work_location,employments,custom_fields,created_at,updated_at,benefits,employee_number,national_identity_number,national_identity_numbers,skills,unified_custom_fields',
7272
filter: new Operations\HrisListEmployeesQueryParamFilter(
7373
updatedAfter: Utils\Utils::parseDateTime('2020-01-01T00:00:00.000Z'),
7474
),
@@ -336,6 +336,8 @@ if ($response->statusCode === 200) {
336336
* [getEmployee](docs/sdks/hris/README.md#getemployee) - Get Employee
337337
* [updateEmployee](docs/sdks/hris/README.md#updateemployee) - Update Employee
338338
* [inviteEmployee](docs/sdks/hris/README.md#inviteemployee) - Invite Employee
339+
* [listEmployeeShifts](docs/sdks/hris/README.md#listemployeeshifts) - List Employee Shifts
340+
* [getEmployeeShift](docs/sdks/hris/README.md#getemployeeshift) - Get Employee Shift
339341
* [listEmployeeTimeOffRequests](docs/sdks/hris/README.md#listemployeetimeoffrequests) - List Employee Time Off Requests
340342
* [createEmployeeTimeOffRequest](docs/sdks/hris/README.md#createemployeetimeoffrequest) - Create Employee Time Off Request
341343
* [getEmployeesTimeOffRequest](docs/sdks/hris/README.md#getemployeestimeoffrequest) - Get Employees Time Off Request

RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,4 +238,14 @@ Based on:
238238
### Generated
239239
- [php v0.26.0] .
240240
### Releases
241-
- [Composer v0.26.0] https://packagist.org/packages/stackone/client-sdk#v0.26.0 - .
241+
- [Composer v0.26.0] https://packagist.org/packages/stackone/client-sdk#v0.26.0 - .
242+
243+
## 2025-10-05 00:03:35
244+
### Changes
245+
Based on:
246+
- OpenAPI Doc
247+
- Speakeasy CLI 1.634.2 (2.721.3) https://github.com/speakeasy-api/speakeasy
248+
### Generated
249+
- [php v0.26.1] .
250+
### Releases
251+
- [Composer v0.26.1] https://packagist.org/packages/stackone/client-sdk#v0.26.1 - .

USAGE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ $sdk = client\StackOne::builder()
2222

2323
$request = new Operations\HrisListEmployeesRequest(
2424
xAccountId: '<id>',
25-
fields: 'id,remote_id,first_name,last_name,name,display_name,gender,ethnicity,date_of_birth,birthday,marital_status,avatar_url,avatar,personal_email,personal_phone_number,work_email,work_phone_number,job_id,remote_job_id,job_title,job_description,department_id,remote_department_id,department,cost_centers,company,manager_id,remote_manager_id,hire_date,start_date,tenure,work_anniversary,employment_type,employment_contract_type,employment_status,termination_date,company_name,company_id,remote_company_id,preferred_language,citizenships,home_location,work_location,employments,custom_fields,created_at,updated_at,benefits,employee_number,national_identity_number,national_identity_numbers,skills',
25+
fields: 'id,remote_id,first_name,last_name,name,display_name,gender,ethnicity,date_of_birth,birthday,marital_status,avatar_url,avatar,personal_email,personal_phone_number,work_email,work_phone_number,job_id,remote_job_id,job_title,job_description,department_id,remote_department_id,department,cost_centers,company,manager_id,remote_manager_id,hire_date,start_date,tenure,work_anniversary,employment_type,employment_contract_type,employment_status,termination_date,company_name,company_id,remote_company_id,preferred_language,citizenships,home_location,work_location,employments,custom_fields,created_at,updated_at,benefits,employee_number,national_identity_number,national_identity_numbers,skills,unified_custom_fields',
2626
filter: new Operations\HrisListEmployeesQueryParamFilter(
2727
updatedAfter: Utils\Utils::parseDateTime('2020-01-01T00:00:00.000Z'),
2828
),

docs/Models/Components/ActionMetaItem.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@
66
| Field | Type | Required | Description |
77
| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- |
88
| `id` | *?string* | :heavy_minus_sign: | The action ID |
9-
| `name` | *?string* | :heavy_minus_sign: | The action name |
9+
| `label` | *?string* | :heavy_minus_sign: | The action label |
1010
| `description` | *?string* | :heavy_minus_sign: | The action description |
1111
| `schemaType` | *?string* | :heavy_minus_sign: | The schema type for the action |
12+
| `tags` | array<*string*> | :heavy_minus_sign: | The tags associated with this action |
1213
| `authentication` | array<[Components\AuthenticationMetaItem](../../Models/Components/AuthenticationMetaItem.md)> | :heavy_minus_sign: | The authentication methods supported by this action |
1314
| `operationDetails` | array<string, *mixed*> | :heavy_minus_sign: | The operation details for the action |

docs/Models/Components/ActionsRpcRequestDto.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@
33

44
## Fields
55

6-
| Field | Type | Required | Description | Example |
7-
| ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- |
8-
| `action` | *string* | :heavy_check_mark: | The action to execute | create_employee |
9-
| `input` | [?Components\Input](../../Models/Components/Input.md) | :heavy_minus_sign: | Input parameters for the action | |
6+
| Field | Type | Required | Description | Example |
7+
| ------------------------------------------ | ------------------------------------------ | ------------------------------------------ | ------------------------------------------ | ------------------------------------------ |
8+
| `action` | *string* | :heavy_check_mark: | The action to execute | create_employee |
9+
| `path` | array<string, *mixed*> | :heavy_minus_sign: | Path parameters for the action | {<br/>"id": "123"<br/>} |
10+
| `query` | array<string, *mixed*> | :heavy_minus_sign: | Query parameters for the action | {<br/>"param1": "value1",<br/>"param2": "value2"<br/>} |
11+
| `headers` | array<string, *mixed*> | :heavy_minus_sign: | Headers for the action | {<br/>"Content-Type": "application/json"<br/>} |
12+
| `body` | array<string, *mixed*> | :heavy_minus_sign: | Request body for the action | {<br/>"data": "example"<br/>} |

0 commit comments

Comments
 (0)