Skip to content

Commit 63f21d9

Browse files
authored
Merge pull request #22 from StackOneHQ/speakeasy-sdk-regen-1736640213
chore: 🐝 Update SDK - Generate 0.23.2
2 parents 3d303c1 + 47aa32b commit 63f21d9

88 files changed

Lines changed: 4641 additions & 634 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: 833 additions & 560 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
@@ -13,7 +13,7 @@ generation:
1313
oAuth2ClientCredentialsEnabled: false
1414
oAuth2PasswordEnabled: false
1515
php:
16-
version: 0.23.0
16+
version: 0.23.2
1717
additionalDependencies:
1818
autoload: {}
1919
autoload-dev: {}

β€Ž.speakeasy/workflow.lockβ€Ž

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,20 @@ sources:
88
- latest
99
stackone-specs:
1010
sourceNamespace: stackone-specs
11-
sourceRevisionDigest: sha256:8b88a8b8e385b59815587a748cd055160a39025f600c23082178614448726271
12-
sourceBlobDigest: sha256:cd8b29022ae7d5e8855f17d266665e45e376777e62be6a36b64c1e4e145fa41c
11+
sourceRevisionDigest: sha256:c1dfaa091afe705a84027c10227ab061ca6db9e304b76b7d69ce22aca3253a31
12+
sourceBlobDigest: sha256:7feb39b65be170bb5679b836c652a6f0e35f84d5facd478c0bf49acb34659d86
1313
tags:
1414
- latest
15-
- speakeasy-sdk-regen-1731801831
15+
- speakeasy-sdk-regen-1736640213
1616
- 1.0.0
1717
targets:
1818
stack-one:
1919
source: stackone-specs
2020
sourceNamespace: stackone-specs
21-
sourceRevisionDigest: sha256:8b88a8b8e385b59815587a748cd055160a39025f600c23082178614448726271
22-
sourceBlobDigest: sha256:cd8b29022ae7d5e8855f17d266665e45e376777e62be6a36b64c1e4e145fa41c
21+
sourceRevisionDigest: sha256:c1dfaa091afe705a84027c10227ab061ca6db9e304b76b7d69ce22aca3253a31
22+
sourceBlobDigest: sha256:7feb39b65be170bb5679b836c652a6f0e35f84d5facd478c0bf49acb34659d86
2323
codeSamplesNamespace: stackone-specs-php-code-samples
24-
codeSamplesRevisionDigest: sha256:9fd72c670f53deeea3c0d31ee1de7a8fc3f4fa2420d767275932dc603e636ae3
24+
codeSamplesRevisionDigest: sha256:996c3fa7ba636577228ba378a3477ef4378e585952c687eebb8dd4e114730def
2525
workflow:
2626
workflowVersion: 1.0.0
2727
speakeasyVersion: latest

β€ŽREADME.mdβ€Ž

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ Marketing: The documentation for the StackOne Unified API - MARKETING
1919
* [stackone/client-sdk](#stackoneclient-sdk)
2020
* [SDK Installation](#sdk-installation)
2121
* [SDK Example Usage](#sdk-example-usage)
22+
* [Authentication](#authentication)
2223
* [Available Resources and Operations](#available-resources-and-operations)
2324
* [Pagination](#pagination)
2425
* [Error Handling](#error-handling)
@@ -84,6 +85,49 @@ foreach ($responses as $response) {
8485
```
8586
<!-- End SDK Example Usage [usage] -->
8687

88+
<!-- Start Authentication [security] -->
89+
## Authentication
90+
91+
### Per-Client Security Schemes
92+
93+
This SDK supports the following security scheme globally:
94+
95+
| Name | Type | Scheme |
96+
| ------------------------- | ---- | ---------- |
97+
| `username`<br/>`password` | http | HTTP Basic |
98+
99+
You can set the security parameters through the `setSecurity` function on the `SDKBuilder` when initializing the SDK. For example:
100+
```php
101+
declare(strict_types=1);
102+
103+
require 'vendor/autoload.php';
104+
105+
use StackOne\client;
106+
use StackOne\client\Models\Components;
107+
108+
$sdk = client\StackOne::builder()
109+
->setSecurity(
110+
new Components\Security(
111+
username: '',
112+
password: '',
113+
)
114+
)
115+
->build();
116+
117+
$request = new Components\ConnectSessionAuthenticate(
118+
token: '<value>',
119+
);
120+
121+
$response = $sdk->connectSessions->authenticateConnectSession(
122+
request: $request
123+
);
124+
125+
if ($response->connectSession !== null) {
126+
// handle response
127+
}
128+
```
129+
<!-- End Authentication [security] -->
130+
87131
<!-- Start Available Resources and Operations [operations] -->
88132
## Available Resources and Operations
89133

@@ -101,6 +145,7 @@ foreach ($responses as $response) {
101145
### [ats](docs/sdks/ats/README.md)
102146

103147
* [createApplication](docs/sdks/ats/README.md#createapplication) - Create Application
148+
* [createApplicationNote](docs/sdks/ats/README.md#createapplicationnote) - Create Application Note
104149
* [createBackgroundCheckPackage](docs/sdks/ats/README.md#createbackgroundcheckpackage) - Create Background Check Package
105150
* [createCandidate](docs/sdks/ats/README.md#createcandidate) - Create Candidate
106151
* [createCandidateNote](docs/sdks/ats/README.md#createcandidatenote) - Create Candidate Note
@@ -110,6 +155,7 @@ foreach ($responses as $response) {
110155
* [getApplication](docs/sdks/ats/README.md#getapplication) - Get Application
111156
* [getApplicationCustomFieldDefinition](docs/sdks/ats/README.md#getapplicationcustomfielddefinition) - Get Application Custom Field Definition
112157
* [getApplicationDocument](docs/sdks/ats/README.md#getapplicationdocument) - Get Application Document
158+
* [getApplicationNote](docs/sdks/ats/README.md#getapplicationnote) - Get Application Note
113159
* [getApplicationOffer](docs/sdks/ats/README.md#getapplicationoffer) - Get Application Offer
114160
* [getApplicationScheduledInterview](docs/sdks/ats/README.md#getapplicationscheduledinterview) - Get Applications scheduled interview
115161
* [getApplicationScorecard](docs/sdks/ats/README.md#getapplicationscorecard) - Get Application Scorecard
@@ -135,6 +181,7 @@ foreach ($responses as $response) {
135181
* [getUser](docs/sdks/ats/README.md#getuser) - Get User
136182
* [listApplicationCustomFieldDefinitions](docs/sdks/ats/README.md#listapplicationcustomfielddefinitions) - List Application Custom Field Definitions
137183
* [listApplicationDocuments](docs/sdks/ats/README.md#listapplicationdocuments) - List Application Documents
184+
* [listApplicationNotes](docs/sdks/ats/README.md#listapplicationnotes) - List Application Notes
138185
* [listApplicationScorecards](docs/sdks/ats/README.md#listapplicationscorecards) - List Application Scorecards
139186
* [listApplications](docs/sdks/ats/README.md#listapplications) - List Applications
140187
* [listApplicationsOffers](docs/sdks/ats/README.md#listapplicationsoffers) - List Application Offers
@@ -159,6 +206,7 @@ foreach ($responses as $response) {
159206
* [moveApplication](docs/sdks/ats/README.md#moveapplication) - Move Application
160207
* [rejectApplication](docs/sdks/ats/README.md#rejectapplication) - Reject Application
161208
* [updateApplication](docs/sdks/ats/README.md#updateapplication) - Update an Application
209+
* [updateApplicationNote](docs/sdks/ats/README.md#updateapplicationnote) - Update an Application Note
162210
* [updateCandidate](docs/sdks/ats/README.md#updatecandidate) - Update Candidate
163211
* [updateJob](docs/sdks/ats/README.md#updatejob) - Update Job
164212
* [uploadApplicationDocument](docs/sdks/ats/README.md#uploadapplicationdocument) - Upload Application Document

β€ŽRELEASES.mdβ€Ž

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,4 +148,14 @@ Based on:
148148
### Generated
149149
- [php v0.23.0] .
150150
### Releases
151-
- [Composer v0.23.0] https://packagist.org/packages/stackone/client-sdk#v0.23.0 - .
151+
- [Composer v0.23.0] https://packagist.org/packages/stackone/client-sdk#v0.23.0 - .
152+
153+
## 2025-01-26 00:03:11
154+
### Changes
155+
Based on:
156+
- OpenAPI Doc
157+
- Speakeasy CLI 1.462.2 (2.486.1) https://github.com/speakeasy-api/speakeasy
158+
### Generated
159+
- [php v0.23.2] .
160+
### Releases
161+
- [Composer v0.23.2] https://packagist.org/packages/stackone/client-sdk#v0.23.2 - .
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# AtsUpdateNotesRequestDto
2+
3+
4+
## Fields
5+
6+
| Field | Type | Required | Description | Example |
7+
| --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- |
8+
| `content` | array<[Components\NoteContentApiModel](../../Models/Components/NoteContentApiModel.md)> | :heavy_minus_sign: | N/A | |
9+
| `authorId` | *?string* | :heavy_minus_sign: | Unique identifier of the author | 1234567890 |
10+
| `visibility` | [?Components\AtsUpdateNotesRequestDtoVisibility](../../Models/Components/AtsUpdateNotesRequestDtoVisibility.md) | :heavy_minus_sign: | Visibility of the note | public |
11+
| `passthrough` | array<string, *mixed*> | :heavy_minus_sign: | Value to pass through to the provider | {<br/>"other_known_names": "John Doe"<br/>} |
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
# AtsUpdateNotesRequestDtoSourceValue
2+
3+
The source value of the notes visibility.
4+
5+
6+
## Supported Types
7+
8+
### `string`
9+
10+
```php
11+
/**
12+
* @var string
13+
*/
14+
string $value = /* values here */
15+
```
16+
17+
### `float`
18+
19+
```php
20+
/**
21+
* @var float
22+
*/
23+
float $value = /* values here */
24+
```
25+
26+
### `bool`
27+
28+
```php
29+
/**
30+
* @var bool
31+
*/
32+
bool $value = /* values here */
33+
```
34+
35+
### `Components\AtsUpdateNotesRequestDtoSourceValue4`
36+
37+
```php
38+
/**
39+
* @var Components\AtsUpdateNotesRequestDtoSourceValue4
40+
*/
41+
Components\AtsUpdateNotesRequestDtoSourceValue4 $value = /* values here */
42+
```
43+
44+
### `array`
45+
46+
```php
47+
/**
48+
* @var array<mixed>
49+
*/
50+
array $value = /* values here */
51+
```
52+
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# AtsUpdateNotesRequestDtoSourceValue4
2+
3+
4+
## Fields
5+
6+
| Field | Type | Required | Description |
7+
| ----------- | ----------- | ----------- | ----------- |
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# AtsUpdateNotesRequestDtoValue
2+
3+
The visibility of the notes.
4+
5+
6+
## Values
7+
8+
| Name | Value |
9+
| --------- | --------- |
10+
| `Private` | private |
11+
| `Public` | public |
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# AtsUpdateNotesRequestDtoVisibility
2+
3+
Visibility of the note
4+
5+
6+
## Fields
7+
8+
| Field | Type | Required | Description | Example |
9+
| ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- |
10+
| `value` | [?Components\AtsUpdateNotesRequestDtoValue](../../Models/Components/AtsUpdateNotesRequestDtoValue.md) | :heavy_minus_sign: | The visibility of the notes. | public |
11+
| `sourceValue` | [string\|float\|bool\|Components\AtsUpdateNotesRequestDtoSourceValue4\|array\|null](../../Models/Components/AtsUpdateNotesRequestDtoSourceValue.md) | :heavy_minus_sign: | The source value of the notes visibility. | Public |

0 commit comments

Comments
Β (0)