Skip to content

Commit 40302a3

Browse files
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.459.3 (#157)
Co-authored-by: speakeasybot <[email protected]>
1 parent fe601c6 commit 40302a3

File tree

420 files changed

+1008
-463
lines changed

Some content is hidden

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

420 files changed

+1008
-463
lines changed

.speakeasy/gen.lock

Lines changed: 13 additions & 11 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.455.3
1+
speakeasyVersion: 1.459.3
22
sources:
33
my-source:
44
sourceNamespace: my-source
5-
sourceRevisionDigest: sha256:265a3ba335a1741026e908e94aab6049654e20dc808eb1e61f6ed39b72d50f0a
6-
sourceBlobDigest: sha256:2d63f84a77650c6df7f4b8419187de64835eba8eceecc7c91fd52a09a8dd2e7b
5+
sourceRevisionDigest: sha256:fb0aa81480820cef7cd50b8e07e1bc57b456457737dca459a83df280c182ebb9
6+
sourceBlobDigest: sha256:0cf9032c05e0ad08286e9868352522a4f9536070004fb6b50128c49a0ea41dd4
77
tags:
88
- latest
9-
- speakeasy-sdk-regen-1734340014
9+
- speakeasy-sdk-regen-1734944774
1010
- 1.0.0
1111
targets:
1212
StackOneTypeScriptClient:
1313
source: my-source
1414
sourceNamespace: my-source
15-
sourceRevisionDigest: sha256:265a3ba335a1741026e908e94aab6049654e20dc808eb1e61f6ed39b72d50f0a
16-
sourceBlobDigest: sha256:2d63f84a77650c6df7f4b8419187de64835eba8eceecc7c91fd52a09a8dd2e7b
15+
sourceRevisionDigest: sha256:fb0aa81480820cef7cd50b8e07e1bc57b456457737dca459a83df280c182ebb9
16+
sourceBlobDigest: sha256:0cf9032c05e0ad08286e9868352522a4f9536070004fb6b50128c49a0ea41dd4
1717
codeSamplesNamespace: code-samples-typescript-stackonetypescriptclient
18-
codeSamplesRevisionDigest: sha256:ca5df78d0bd2253ae4aad4259bd963eb3dd4871c8696b5a1ee985b92cc7986c7
18+
codeSamplesRevisionDigest: sha256:fe5ee39ed7409407dd58527f530102a4f483a3e7a284bccb248f22809d0421c1
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
@@ -1376,4 +1376,14 @@ Based on:
13761376
### Generated
13771377
- [typescript v4.17.5] .
13781378
### Releases
1379-
- [NPM v4.17.5] https://www.npmjs.com/package/@stackone/stackone-client-ts/v/4.17.5 - .
1379+
- [NPM v4.17.5] https://www.npmjs.com/package/@stackone/stackone-client-ts/v/4.17.5 - .
1380+
1381+
## 2024-12-23 09:06:07
1382+
### Changes
1383+
Based on:
1384+
- OpenAPI Doc
1385+
- Speakeasy CLI 1.459.3 (2.483.6) https://github.com/speakeasy-api/speakeasy
1386+
### Generated
1387+
- [typescript v4.17.6] .
1388+
### Releases
1389+
- [NPM v4.17.6] https://www.npmjs.com/package/@stackone/stackone-client-ts/v/4.17.6 - .

RUNTIMES.md

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Supported JavaScript runtimes
22

3-
This SDK is intended to be used in JavaScript runtimes that support the following features:
3+
This SDK is intended to be used in JavaScript runtimes that support ECMAScript 2020 or newer. The SDK uses the following features:
44

55
* [Web Fetch API][web-fetch]
66
* [Web Streams API][web-streams] and in particular `ReadableStream`
@@ -20,3 +20,29 @@ Runtime environments that are explicitly supported are:
2020
- Note that Deno does not currently have native support for streaming file uploads backed by the filesystem ([issue link][deno-file-streaming])
2121

2222
[deno-file-streaming]: https://github.com/denoland/deno/issues/11018
23+
24+
## Recommended TypeScript compiler options
25+
26+
The following `tsconfig.json` options are recommended for projects using this
27+
SDK in order to get static type support for features like async iterables,
28+
streams and `fetch`-related APIs ([`for await...of`][for-await-of],
29+
[`AbortSignal`][abort-signal], [`Request`][request], [`Response`][response] and
30+
so on):
31+
32+
[for-await-of]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/for-await...of
33+
[abort-signal]: https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal
34+
[request]: https://developer.mozilla.org/en-US/docs/Web/API/Request
35+
[response]: https://developer.mozilla.org/en-US/docs/Web/API/Response
36+
37+
```jsonc
38+
{
39+
"compilerOptions": {
40+
"target": "es2020", // or higher
41+
"lib": ["es2020", "dom", "dom.iterable"],
42+
}
43+
}
44+
```
45+
46+
While `target` can be set to older ECMAScript versions, it may result in extra,
47+
unnecessary compatibility code being generated if you are not targeting old
48+
runtimes.

codeSamples.yaml

Lines changed: 22 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -5351,16 +5351,17 @@ actions:
53515351
name: "Information-Technology",
53525352
},
53535353
],
5354+
categories: [
5355+
{
5356+
name: "Information-Technology",
5357+
},
5358+
],
53545359
content: [
53555360
{
53565361
title: "Software Engineer Lv 1",
53575362
description: "This video acts as learning content for software engineers.",
53585363
contentUrl: "https://www.youtube.com/watch?v=16873",
5359-
},
5360-
],
5361-
categories: [
5362-
{
5363-
name: "Information-Technology",
5364+
order: 1,
53645365
},
53655366
],
53665367
},
@@ -5419,16 +5420,23 @@ actions:
54195420
name: "Information-Technology",
54205421
},
54215422
],
5423+
categories: [
5424+
{
5425+
name: "Information-Technology",
5426+
},
5427+
],
54225428
content: [
54235429
{
54245430
title: "Software Engineer Lv 1",
54255431
description: "This video acts as learning content for software engineers.",
54265432
contentUrl: "https://www.youtube.com/watch?v=16873",
5433+
order: 1,
54275434
},
5428-
],
5429-
categories: [
54305435
{
5431-
name: "Information-Technology",
5436+
title: "Software Engineer Lv 1",
5437+
description: "This video acts as learning content for software engineers.",
5438+
contentUrl: "https://www.youtube.com/watch?v=16873",
5439+
order: 1,
54325440
},
54335441
],
54345442
},
@@ -5462,16 +5470,17 @@ actions:
54625470
name: "Information-Technology",
54635471
},
54645472
],
5473+
categories: [
5474+
{
5475+
name: "Information-Technology",
5476+
},
5477+
],
54655478
content: [
54665479
{
54675480
title: "Software Engineer Lv 1",
54685481
description: "This video acts as learning content for software engineers.",
54695482
contentUrl: "https://www.youtube.com/watch?v=16873",
5470-
},
5471-
],
5472-
categories: [
5473-
{
5474-
name: "Information-Technology",
5483+
order: 1,
54755484
},
54765485
],
54775486
},

docs/sdk/models/operations/atsgetassessmentsrequestresponse.md

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ let value: AtsGetAssessmentsRequestResponse = {
1818
passthrough: {
1919
"other_known_names": "John Doe",
2020
},
21+
remoteId: "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
2122
},
2223
candidate: {
2324
emails: [
@@ -33,6 +34,7 @@ let value: AtsGetAssessmentsRequestResponse = {
3334
"other_known_names": "John Doe",
3435
},
3536
profileUrl: "https://exmaple.com/candidate?id=xyz",
37+
remoteId: "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
3638
},
3739
id: "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
3840
job: {
@@ -41,6 +43,7 @@ let value: AtsGetAssessmentsRequestResponse = {
4143
4244
firstName: "John",
4345
lastName: "Doe",
46+
remoteUserId: "e3cb75bf-aa84-466e-a6c1-b8322b257a48",
4447
role: "Software Engineer",
4548
userId: "123456",
4649
},
@@ -49,26 +52,24 @@ let value: AtsGetAssessmentsRequestResponse = {
4952
passthrough: {
5053
"other_known_names": "John Doe",
5154
},
55+
remoteId: "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
5256
title: "Software Engineer",
5357
},
5458
package: {
5559
description:
5660
"Skills test to gauge a candidate's proficiency in job-specific skills",
5761
id: "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
5862
name: "Test 1",
63+
remoteId: "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
5964
},
6065
remoteId: "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
6166
requester: {
62-
emails: [
63-
{
64-
type: "personal",
65-
66-
},
67-
],
68-
id: "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
69-
passthrough: {
70-
"other_known_names": "John Doe",
71-
},
67+
68+
firstName: "John",
69+
lastName: "Doe",
70+
remoteUserId: "e3cb75bf-aa84-466e-a6c1-b8322b257a48",
71+
role: "Software Engineer",
72+
userId: "123456",
7273
},
7374
resultsUpdateUrl: "https://exmaple.com/integrations/results/update",
7475
},

docs/sdk/models/operations/atsgetassessmentsresultresponse.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ let value: AtsGetAssessmentsResultResponse = {
2121
candidate: {
2222
id: "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
2323
profileUrl: "https://exmaple.com/candidate?id=xyz",
24+
remoteId: "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
2425
},
2526
id: "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
2627
remoteId: "8187e5da-dc77-475e-9949-af0f1fa4e4e3",

docs/sdk/models/operations/atsgetbackgroundcheckrequestresponse.md

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ let value: AtsGetBackgroundCheckRequestResponse = {
1818
passthrough: {
1919
"other_known_names": "John Doe",
2020
},
21+
remoteId: "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
2122
},
2223
candidate: {
2324
emails: [
@@ -33,6 +34,7 @@ let value: AtsGetBackgroundCheckRequestResponse = {
3334
"other_known_names": "John Doe",
3435
},
3536
profileUrl: "https://exmaple.com/candidate?id=xyz",
37+
remoteId: "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
3638
},
3739
id: "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
3840
job: {
@@ -41,6 +43,7 @@ let value: AtsGetBackgroundCheckRequestResponse = {
4143
4244
firstName: "John",
4345
lastName: "Doe",
46+
remoteUserId: "e3cb75bf-aa84-466e-a6c1-b8322b257a48",
4447
role: "Software Engineer",
4548
userId: "123456",
4649
},
@@ -49,33 +52,32 @@ let value: AtsGetBackgroundCheckRequestResponse = {
4952
passthrough: {
5053
"other_known_names": "John Doe",
5154
},
55+
remoteId: "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
5256
title: "Software Engineer",
5357
},
5458
package: {
5559
description: "Standard background package for hires",
5660
id: "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
5761
name: "Standard Background Check",
62+
remoteId: "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
5863
tests: [
5964
{
6065
description:
6166
"Skills test to gauge a candidate's proficiency in job-specific skills",
6267
id: "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
6368
name: "Test 1",
69+
remoteId: "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
6470
},
6571
],
6672
},
6773
remoteId: "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
6874
requester: {
69-
emails: [
70-
{
71-
type: "personal",
72-
73-
},
74-
],
75-
id: "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
76-
passthrough: {
77-
"other_known_names": "John Doe",
78-
},
75+
76+
firstName: "John",
77+
lastName: "Doe",
78+
remoteUserId: "e3cb75bf-aa84-466e-a6c1-b8322b257a48",
79+
role: "Software Engineer",
80+
userId: "123456",
7981
},
8082
resultsUpdateUrl: "https://exmaple.com/integrations/results/update",
8183
},

docs/sdk/models/operations/atsgetbackgroundcheckresultresponse.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ let value: AtsGetBackgroundCheckResultResponse = {
2020
candidate: {
2121
id: "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
2222
profileUrl: "https://exmaple.com/candidate?id=xyz",
23+
remoteId: "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
2324
},
2425
id: "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
2526
remoteId: "8187e5da-dc77-475e-9949-af0f1fa4e4e3",

docs/sdk/models/operations/atslistbackgroundcheckrequestresponse.md

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ let value: AtsListBackgroundCheckRequestResponse = {
1919
passthrough: {
2020
"other_known_names": "John Doe",
2121
},
22+
remoteId: "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
2223
},
2324
candidate: {
2425
emails: [
@@ -34,6 +35,7 @@ let value: AtsListBackgroundCheckRequestResponse = {
3435
"other_known_names": "John Doe",
3536
},
3637
profileUrl: "https://exmaple.com/candidate?id=xyz",
38+
remoteId: "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
3739
},
3840
id: "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
3941
job: {
@@ -42,6 +44,7 @@ let value: AtsListBackgroundCheckRequestResponse = {
4244
4345
firstName: "John",
4446
lastName: "Doe",
47+
remoteUserId: "e3cb75bf-aa84-466e-a6c1-b8322b257a48",
4548
role: "Software Engineer",
4649
userId: "123456",
4750
},
@@ -50,33 +53,32 @@ let value: AtsListBackgroundCheckRequestResponse = {
5053
passthrough: {
5154
"other_known_names": "John Doe",
5255
},
56+
remoteId: "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
5357
title: "Software Engineer",
5458
},
5559
package: {
5660
description: "Standard background package for hires",
5761
id: "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
5862
name: "Standard Background Check",
63+
remoteId: "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
5964
tests: [
6065
{
6166
description:
6267
"Skills test to gauge a candidate's proficiency in job-specific skills",
6368
id: "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
6469
name: "Test 1",
70+
remoteId: "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
6571
},
6672
],
6773
},
6874
remoteId: "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
6975
requester: {
70-
emails: [
71-
{
72-
type: "personal",
73-
74-
},
75-
],
76-
id: "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
77-
passthrough: {
78-
"other_known_names": "John Doe",
79-
},
76+
77+
firstName: "John",
78+
lastName: "Doe",
79+
remoteUserId: "e3cb75bf-aa84-466e-a6c1-b8322b257a48",
80+
role: "Software Engineer",
81+
userId: "123456",
8082
},
8183
resultsUpdateUrl: "https://exmaple.com/integrations/results/update",
8284
},

0 commit comments

Comments
 (0)