Skip to content

Commit fabe1ed

Browse files
github-actions[bot]speakeasybotspeakeasy-github[bot]
authored
chore: 🐝 Update SDK - Generate 4.19.0 (#168)
* ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.508.1 * empty commit to trigger [run-tests] workflow --------- Co-authored-by: speakeasybot <[email protected]> Co-authored-by: speakeasy-github[bot] <128539517+speakeasy-github[bot]@users.noreply.github.com>
1 parent 714aeca commit fabe1ed

File tree

560 files changed

+15653
-2962
lines changed

Some content is hidden

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

560 files changed

+15653
-2962
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/mcp-server
2+
/bin
13
/.eslintcache
24
/.speakeasy/reports
35
/react-query

.npmignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
!/REACT_QUERY.md
55
!/**/*.ts
66
!/**/*.js
7+
!/**/*.mjs
78
!/**/*.json
89
!/**/*.map
910

.speakeasy/gen.lock

Lines changed: 95 additions & 58 deletions
Large diffs are not rendered by default.

.speakeasy/workflow.lock

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
speakeasyVersion: 1.493.0
1+
speakeasyVersion: 1.508.1
22
sources:
33
my-source:
44
sourceNamespace: my-source
5-
sourceRevisionDigest: sha256:fc5673e0420c59f36061bb56160faffa79d3b97454c6c81b25b391efbe43b2c4
6-
sourceBlobDigest: sha256:facacf7843ca3018fb4b4de16143c453067c5c6ba057a99cf903ea26ae5b8a73
5+
sourceRevisionDigest: sha256:b32b4f7127920067518cc5d58dd3ba474a6094cfe6c2f90fc5b81b2473ad7c79
6+
sourceBlobDigest: sha256:d4a4fc500a4b4a2fcc69a7b5df5d6cd3c4a9cc8bd07a9fa1f37c91c17875cb35
77
tags:
88
- latest
9-
- speakeasy-sdk-regen-1739783224
9+
- speakeasy-sdk-regen-1740992830
1010
- 1.0.0
1111
targets:
1212
StackOneTypeScriptClient:
1313
source: my-source
1414
sourceNamespace: my-source
15-
sourceRevisionDigest: sha256:fc5673e0420c59f36061bb56160faffa79d3b97454c6c81b25b391efbe43b2c4
16-
sourceBlobDigest: sha256:facacf7843ca3018fb4b4de16143c453067c5c6ba057a99cf903ea26ae5b8a73
15+
sourceRevisionDigest: sha256:b32b4f7127920067518cc5d58dd3ba474a6094cfe6c2f90fc5b81b2473ad7c79
16+
sourceBlobDigest: sha256:d4a4fc500a4b4a2fcc69a7b5df5d6cd3c4a9cc8bd07a9fa1f37c91c17875cb35
1717
codeSamplesNamespace: code-samples-typescript-stackonetypescriptclient
18-
codeSamplesRevisionDigest: sha256:4c4ec3e9c21400f5123ac5759992e993ba75af375a8197c056c9144cee45812f
18+
codeSamplesRevisionDigest: sha256:1cc2114df574f4a96299ef4a3c315f46911261b1c919bb9dbf01aa1949b1fe57
1919
workflow:
2020
workflowVersion: 1.0.0
2121
speakeasyVersion: latest

RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1486,4 +1486,14 @@ Based on:
14861486
### Generated
14871487
- [typescript v4.18.1] .
14881488
### Releases
1489-
- [NPM v4.18.1] https://www.npmjs.com/package/@stackone/stackone-client-ts/v/4.18.1 - .
1489+
- [NPM v4.18.1] https://www.npmjs.com/package/@stackone/stackone-client-ts/v/4.18.1 - .
1490+
1491+
## 2025-03-03 09:06:50
1492+
### Changes
1493+
Based on:
1494+
- OpenAPI Doc
1495+
- Speakeasy CLI 1.508.1 (2.536.0) https://github.com/speakeasy-api/speakeasy
1496+
### Generated
1497+
- [typescript v4.19.0] .
1498+
### Releases
1499+
- [NPM v4.19.0] https://www.npmjs.com/package/@stackone/stackone-client-ts/v/4.19.0 - .

codeSamples.yaml

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

docs/sdk/models/operations/atscreateapplicationrequest.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,11 @@ let value: AtsCreateApplicationRequest = {
3333
passthrough: {
3434
"other_known_names": "John Doe",
3535
},
36-
phoneNumber: "+1234567890",
36+
phoneNumbers: [
37+
{
38+
phone: "+447700112233",
39+
},
40+
],
3741
socialLinks: [
3842
{
3943
type: "linkedin",

docs/sdk/models/operations/atscreatecandidaterequest.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,11 @@ let value: AtsCreateCandidateRequest = {
2727
passthrough: {
2828
"other_known_names": "John Doe",
2929
},
30-
phoneNumber: "+1234567890",
30+
phoneNumbers: [
31+
{
32+
phone: "+447700112233",
33+
},
34+
],
3135
socialLinks: [
3236
{
3337
type: "linkedin",

docs/sdk/models/operations/atsgetuserrequest.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import { AtsGetUserRequest } from "@stackone/stackone-client-ts/sdk/models/operations";
77

88
let value: AtsGetUserRequest = {
9-
fields: "id,remote_id,first_name,last_name,name,email",
9+
fields: "id,remote_id,first_name,last_name,name,email,phone",
1010
id: "<id>",
1111
xAccountId: "<id>",
1212
};
@@ -16,7 +16,7 @@ let value: AtsGetUserRequest = {
1616

1717
| Field | Type | Required | Description | Example |
1818
| ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ |
19-
| `fields` | *string* | :heavy_minus_sign: | The comma separated list of fields that will be returned in the response (if empty, all fields are returned) | id,remote_id,first_name,last_name,name,email |
19+
| `fields` | *string* | :heavy_minus_sign: | The comma separated list of fields that will be returned in the response (if empty, all fields are returned) | id,remote_id,first_name,last_name,name,email,phone |
2020
| `id` | *string* | :heavy_check_mark: | N/A | |
2121
| `proxy` | Record<string, *any*> | :heavy_minus_sign: | Query parameters that can be used to pass through parameters to the underlying provider request by surrounding them with 'proxy' key | |
2222
| `raw` | *boolean* | :heavy_minus_sign: | Indicates that the raw request result is returned | |

docs/sdk/models/operations/atslistusersrequest.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import { AtsListUsersRequest } from "@stackone/stackone-client-ts/sdk/models/operations";
77

88
let value: AtsListUsersRequest = {
9-
fields: "id,remote_id,first_name,last_name,name,email",
9+
fields: "id,remote_id,first_name,last_name,name,email,phone",
1010
filter: {
1111
updatedAfter: "2020-01-01T00:00:00.000Z",
1212
},
@@ -18,7 +18,7 @@ let value: AtsListUsersRequest = {
1818

1919
| Field | Type | Required | Description | Example |
2020
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
21-
| `fields` | *string* | :heavy_minus_sign: | The comma separated list of fields that will be returned in the response (if empty, all fields are returned) | id,remote_id,first_name,last_name,name,email |
21+
| `fields` | *string* | :heavy_minus_sign: | The comma separated list of fields that will be returned in the response (if empty, all fields are returned) | id,remote_id,first_name,last_name,name,email,phone |
2222
| `filter` | [operations.AtsListUsersQueryParamFilter](../../../sdk/models/operations/atslistusersqueryparamfilter.md) | :heavy_minus_sign: | Filter parameters that allow greater customisation of the list response | |
2323
| `next` | *string* | :heavy_minus_sign: | The unified cursor | |
2424
| ~~`page`~~ | *string* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.<br/><br/>The page number of the results to fetch | |

0 commit comments

Comments
 (0)