Skip to content

Commit ba89f3c

Browse files
stainless-app[bot]kylos101ona-agent
authored
release: 0.14.0 (#93)
* feat(api): add time range filters to event list method * feat(api): add bpfDebugLevel field to KernelControlsConfig in environments * fix(api): rename executableDenyList to vetoExecPolicy in policies * chore(internal): remove mock server code * chore: update mock server docs * codegen metadata * chore(test): update skip reason message * feat(api): add resourceIds to role assignments, simplify executable deny list in policies * codegen metadata * codegen metadata * feat(api): add SONNET_4_6 model variants to AgentExecution * feat(api): add CountResponseRelation type * feat(api): add sort parameter to projects list and Sort/SortOrder types * codegen metadata * fix(docs/contributing): correct pnpm link command * codegen metadata * codegen metadata * codegen metadata * feat(api): add lockdownAt field to EnvironmentStatus * codegen metadata * codegen metadata * chore(internal): move stringifyQuery implementation to internal function * docs(api): clarify resourceId/resourceIds permission behavior in groups role assignments * codegen metadata * feat(types): remove agent execution enum values from Principal and ResourceRole * feat(api): add filter parameter to groups list method * codegen metadata * codegen metadata * chore(docs): add missing descriptions * feat(api): add acknowledgeToken parameter to environments start method * codegen metadata * codegen metadata * codegen metadata * fix(api): remove acknowledgeToken parameter from environments start method * codegen metadata * codegen metadata * codegen metadata * feat: [backend/api] add backend search for group members * feat(api): add resourceTypeFilters parameter to events watch method * codegen metadata * feat(api): add organizationTier to identity authenticated response * codegen metadata * fix: fix request delays for retrying to be more respectful of high requested delays * codegen metadata * feat(api): add RUNNER_CAPABILITY_WARM_POOL to RunnerCapability enum * feat(api): add excludePromptContent parameter to agents list prompts method * chore(types): move CountResponseRelation from organizations to shared * codegen metadata * chore(ci): skip uploading artifacts on stainless-internal branches * fix(client): preserve URL params already embedded in path * feat(api): add sessionId parameter to agents and environments * feat(api): add snapshotSizeBytes field to PrebuildStatus * codegen metadata * chore(internal): update dependencies to address dependabot vulnerabilities * codegen metadata * feat(api): add warm pool CRUD methods and types to prebuilds * codegen metadata * feat(api): add agentMessage param and AgentMessage/Type types to agents * feat(api): add role/senderExecutionId fields to agents AgentMessage * codegen metadata * feat(api): add SESSION_ADMIN and SESSION_USER to ResourceRole enum * feat(api): add TEAM_ADMIN and TEAM_VIEWER to ResourceRole * codegen metadata * codegen metadata * codegen metadata * feat(api): add WakeEvent type and wakeEvent parameter to agents * codegen metadata * codegen metadata * codegen metadata * codegen metadata * codegen metadata * feat(api): add SUPPORTED_MODEL_HAIKU_4_5 to AgentExecution model * codegen metadata * codegen metadata * codegen metadata * codegen metadata * docs(api): clarify timeout constraints in environments and organization policies * codegen metadata * feat(api): add sort option to ListAuditLogs * feat(api): add automations resource with workflows/executions/actions * codegen metadata * codegen metadata * codegen metadata * codegen metadata * docs(api): update annotations parameter examples in agents * feat(api): add sessionIds filter to agents/environments list methods * feat(api): add updateWindow field to runners configuration * feat(api): add sessionId parameter to environments create from project * codegen metadata * codegen metadata * chore(internal): tweak CI branches * feat(api): add read_only field to PersonalAccessToken proto messages * feat(api): add RESOURCE_ROLE_ORG_AUDIT_LOG_READER to ResourceRole enum * codegen metadata * codegen metadata * codegen metadata * codegen metadata * feat(api): add loop conditions to agents, update wake event types * codegen metadata * codegen metadata * codegen metadata * codegen metadata * feat(api): add AGENT_EXECUTION_VIEWER role to ResourceRole type * feat(api): add conversation_sharing_policy to agent policy * chore(internal): regenerate SDK with no functional changes * codegen metadata * codegen metadata * feat(api): add hasFailedExecutionSince parameter to automations list method * feat(api): add credentialProxy field to environments Secret * chore(internal): update gitignore * feat(api): add search parameter to agents list prompts method * codegen metadata * feat(api): add min_size and max_size to prebuilds warm pools * codegen metadata * codegen metadata * chore(ci): skip lint on metadata-only changes Note that we still want to run tests, as these depend on the metadata. * chore(internal): regenerate SDK with no functional changes * codegen metadata * feat(api): add managedMetricsEnabled field to runners MetricsConfiguration * feat(api): allow min_size >= 0 for warm pool dynamic scaling * feat(ec2): add RUNNER_CAPABILITY_ASG_WARM_POOL capability * feat(api): add desiredSize field to WarmPoolStatus in prebuilds * chore(internal): regenerate SDK with no functional changes * chore(internal): regenerate SDK with no functional changes * codegen metadata * codegen metadata * feat(agents): enforce sub-agent depth and concurrency limits in backend * feat(api): add terminal field to RunsOn * chore(internal): regenerate SDK with no functional changes * codegen metadata * feat(api): add customAgents field and CustomSecurityAgent type to policies * fix(types): make id optional in CustomSecurityAgent * codegen metadata * feat(api): add exclude_team_ids parameter to organization list members * feat(backend/api,dashboard): add server-side `recentlyCompleted` sort for `ListWorkflows` * codegen metadata * feat(api): add claimsExpression field to SSO configurations * codegen metadata * codegen metadata * feat(api): add RESOURCE_TYPE_NOTIFICATION to ResourceType enum * feat(api): add environment field to agent wake events * feat(api): add disabled parameter to automation update method * codegen metadata * codegen metadata * codegen metadata * codegen metadata * codegen metadata * codegen metadata * codegen metadata * release: 0.14.0 * ci: pin actions to latest release commit SHAs - actions/checkout: v6 → v6.0.2 (de0fac2e) - actions/setup-node: v4 → v6.3.0 (53b83947) - actions/github-script: v8 tag → v8 SHA (ed597411) Co-authored-by: Ona <no-reply@ona.com> --------- Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com> Co-authored-by: Kyle Brennan <kyle@ona.com> Co-authored-by: Ona <no-reply@ona.com>
1 parent c8d2951 commit ba89f3c

File tree

81 files changed

+5425
-439
lines changed

Some content is hidden

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

81 files changed

+5425
-439
lines changed

.github/workflows/ci.yml

Lines changed: 23 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
name: CI
22
on:
33
push:
4-
branches-ignore:
5-
- 'generated'
6-
- 'codegen/**'
7-
- 'integrated/**'
8-
- 'stl-preview-head/**'
9-
- 'stl-preview-base/**'
4+
branches:
5+
- '**'
6+
- '!integrated/**'
7+
- '!stl-preview-head/**'
8+
- '!stl-preview-base/**'
9+
- '!generated'
10+
- '!codegen/**'
11+
- 'codegen/stl/**'
1012
pull_request:
1113
branches-ignore:
1214
- 'stl-preview-head/**'
@@ -17,12 +19,12 @@ jobs:
1719
timeout-minutes: 10
1820
name: lint
1921
runs-on: ${{ github.repository == 'stainless-sdks/gitpod-typescript' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
20-
if: github.event_name == 'push' || github.event.pull_request.head.repo.fork
22+
if: (github.event_name == 'push' || github.event.pull_request.head.repo.fork) && (github.event_name != 'push' || github.event.head_commit.message != 'codegen metadata')
2123
steps:
22-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
24+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2325

2426
- name: Set up Node
25-
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
27+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
2628
with:
2729
node-version: '20'
2830

@@ -36,15 +38,15 @@ jobs:
3638
timeout-minutes: 5
3739
name: build
3840
runs-on: ${{ github.repository == 'stainless-sdks/gitpod-typescript' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
39-
if: github.event_name == 'push' || github.event.pull_request.head.repo.fork
41+
if: (github.event_name == 'push' || github.event.pull_request.head.repo.fork) && (github.event_name != 'push' || github.event.head_commit.message != 'codegen metadata')
4042
permissions:
4143
contents: read
4244
id-token: write
4345
steps:
44-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
46+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
4547

4648
- name: Set up Node
47-
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
49+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
4850
with:
4951
node-version: '20'
5052

@@ -55,14 +57,18 @@ jobs:
5557
run: ./scripts/build
5658

5759
- name: Get GitHub OIDC Token
58-
if: github.repository == 'stainless-sdks/gitpod-typescript'
60+
if: |-
61+
github.repository == 'stainless-sdks/gitpod-typescript' &&
62+
!startsWith(github.ref, 'refs/heads/stl/')
5963
id: github-oidc
60-
uses: actions/github-script@v8
64+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
6165
with:
6266
script: core.setOutput('github_token', await core.getIDToken());
6367

6468
- name: Upload tarball
65-
if: github.repository == 'stainless-sdks/gitpod-typescript'
69+
if: |-
70+
github.repository == 'stainless-sdks/gitpod-typescript' &&
71+
!startsWith(github.ref, 'refs/heads/stl/')
6672
env:
6773
URL: https://pkg.stainless.com/s
6874
AUTH: ${{ steps.github-oidc.outputs.github_token }}
@@ -74,10 +80,10 @@ jobs:
7480
runs-on: ${{ github.repository == 'stainless-sdks/gitpod-typescript' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
7581
if: github.event_name == 'push' || github.event.pull_request.head.repo.fork
7682
steps:
77-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
83+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
7884

7985
- name: Set up Node
80-
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
86+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
8187
with:
8288
node-version: '20'
8389

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
.prism.log
2+
.stdy.log
23
node_modules
34
yarn-error.log
45
codegen.log

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.13.0"
2+
".": "0.14.0"
33
}

.stats.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
configured_endpoints: 175
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/gitpod%2Fgitpod-1923b5d3865532d64d80c22746aa63991bbf227cf1cbefc8cdb14a374c4c5b89.yml
3-
openapi_spec_hash: 304200ebfa8622f5f6846895528f06e3
4-
config_hash: 469d30a2d44895c8c53a5aac370a56f1
1+
configured_endpoints: 193
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/gitpod%2Fgitpod-dabc0ff98cd7b9d91850b3c0dbada4e487e698333cd0b7257959e4819d9a29d6.yml
3+
openapi_spec_hash: b974bdc6025a26cfa62857bf74ec379b
4+
config_hash: 13514c5eb422e4eb01767e718798de1e

CHANGELOG.md

Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,100 @@
11
# Changelog
22

3+
## 0.14.0 (2026-04-02)
4+
5+
Full Changelog: [v0.13.0...v0.14.0](https://github.com/gitpod-io/gitpod-sdk-typescript/compare/v0.13.0...v0.14.0)
6+
7+
### Features
8+
9+
* [backend/api] add backend search for group members ([d7dee78](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/d7dee782586a5d1685a6a3c740e3fa2dc4d80bd5))
10+
* **agents:** enforce sub-agent depth and concurrency limits in backend ([091e1e1](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/091e1e1dcdb3f67bba806f330766274004234736))
11+
* **api:** add acknowledgeToken parameter to environments start method ([4e4cf9c](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/4e4cf9c8c51749944cd4d37f98ca46fd48524b0f))
12+
* **api:** add AGENT_EXECUTION_VIEWER role to ResourceRole type ([e728590](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/e728590a07f53977b6e22ae1e49db5dedfaf37e6))
13+
* **api:** add agentMessage param and AgentMessage/Type types to agents ([3116d62](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/3116d62117a33546b4293d0914819e26836688c4))
14+
* **api:** add automations resource with workflows/executions/actions ([c714e29](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/c714e295b0d1f65f804fc85a93487e9549a47d1d))
15+
* **api:** add bpfDebugLevel field to KernelControlsConfig in environments ([a287ad3](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/a287ad3af6bf663011161691ca7913a446541a42))
16+
* **api:** add claimsExpression field to SSO configurations ([d341ea2](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/d341ea27e87d728ff4001679b665cb629335ee63))
17+
* **api:** add conversation_sharing_policy to agent policy ([bf403a1](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/bf403a175281b9b5e61d644015548d4e1f5f2607))
18+
* **api:** add CountResponseRelation type ([b873069](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/b87306930d710a13c53c98b56b96b812c3521d84))
19+
* **api:** add credentialProxy field to environments Secret ([02863e6](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/02863e6b7f366348e46cb44e53c15404aea596ce))
20+
* **api:** add customAgents field and CustomSecurityAgent type to policies ([1a61b78](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/1a61b782581ec2402a5c628e4f57feb676669323))
21+
* **api:** add desiredSize field to WarmPoolStatus in prebuilds ([353883c](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/353883cb024626e7994a08f2deecea0dd60a1849))
22+
* **api:** add disabled parameter to automation update method ([badc257](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/badc257d04b0aecb4a3becba683862e2d6d64d0f))
23+
* **api:** add environment field to agent wake events ([992e5d0](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/992e5d0e42c8e6546be7ec08e3ace411edaf015c))
24+
* **api:** add exclude_team_ids parameter to organization list members ([272e39c](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/272e39c392b6a5a6c459e6bbd40407d4a8a6294b))
25+
* **api:** add excludePromptContent parameter to agents list prompts method ([49a254a](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/49a254a20c1966e30bbd4d0e7efe1a124fd0f12e))
26+
* **api:** add filter parameter to groups list method ([8bc4dd7](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/8bc4dd780908d6853d89b803caa340bf25537f4d))
27+
* **api:** add hasFailedExecutionSince parameter to automations list method ([217a0b3](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/217a0b3270e3962bf8097c1c0e9748f0d9a4c271))
28+
* **api:** add lockdownAt field to EnvironmentStatus ([1b40ec9](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/1b40ec9b2d39a90bc0c82691bf7b7c5b47f2799c))
29+
* **api:** add loop conditions to agents, update wake event types ([e2f1f5d](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/e2f1f5d8f0cc088a0f5b2cf503ad003b4833b4c1))
30+
* **api:** add managedMetricsEnabled field to runners MetricsConfiguration ([b7d2e42](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/b7d2e429e498e58bdde9c171e67f90aaacd087da))
31+
* **api:** add min_size and max_size to prebuilds warm pools ([50e0e9c](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/50e0e9c4da97de8fe91ea2b193930556f33dfe74))
32+
* **api:** add organizationTier to identity authenticated response ([510f3f8](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/510f3f8486518e6fb69f44cbc7b34e842b22c1ca))
33+
* **api:** add read_only field to PersonalAccessToken proto messages ([9dbc9a5](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/9dbc9a5410b59c6e1161e886a72e5c50ae221bf1))
34+
* **api:** add RESOURCE_ROLE_ORG_AUDIT_LOG_READER to ResourceRole enum ([811b8f3](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/811b8f37b3caed8228b561180d61981c9278f299))
35+
* **api:** add RESOURCE_TYPE_NOTIFICATION to ResourceType enum ([f605d55](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/f605d55f111bf83b4e472fe8b639d0953361ef9e))
36+
* **api:** add resourceIds to role assignments, simplify executable deny list in policies ([a2c14c0](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/a2c14c0e1702564a2855ea6d7f49605dd6e7e4c1))
37+
* **api:** add resourceTypeFilters parameter to events watch method ([07bb8ec](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/07bb8ec587dd0b5b1d5b43ed506ab8733ebbd073))
38+
* **api:** add role/senderExecutionId fields to agents AgentMessage ([2c815f0](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/2c815f0c52891d6b0d7869bffdccd28890520b22))
39+
* **api:** add RUNNER_CAPABILITY_WARM_POOL to RunnerCapability enum ([f7ee363](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/f7ee36368822b4dbad149abf3d1944a6d3f1a2fb))
40+
* **api:** add search parameter to agents list prompts method ([7e78aca](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/7e78aca647ff60acafe52ab90c0846207190df66))
41+
* **api:** add SESSION_ADMIN and SESSION_USER to ResourceRole enum ([186e30f](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/186e30fccfe1a41601816d1a46bf163e00c24b18))
42+
* **api:** add sessionId parameter to agents and environments ([0ef9494](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/0ef9494e37d62933fea68a26d73c8932f7ebce11))
43+
* **api:** add sessionId parameter to environments create from project ([693174b](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/693174bb0cc890681450918bde61b0b29656f122))
44+
* **api:** add sessionIds filter to agents/environments list methods ([52e0a3a](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/52e0a3afe617f580ce1dbca45eb761cdd8e9034b))
45+
* **api:** add snapshotSizeBytes field to PrebuildStatus ([17124f0](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/17124f098f482d4d8160f40b26439eb0f741b5e0))
46+
* **api:** add SONNET_4_6 model variants to AgentExecution ([8646e6e](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/8646e6ea9fc56779c5785cb0a614116064320cbc))
47+
* **api:** add sort option to ListAuditLogs ([e617fb0](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/e617fb005b9122702ee2987a316d12d46bc22c35))
48+
* **api:** add sort parameter to projects list and Sort/SortOrder types ([3322c72](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/3322c72b72dd47a46c674074f580aef9a36dcedd))
49+
* **api:** add SUPPORTED_MODEL_HAIKU_4_5 to AgentExecution model ([eb7a869](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/eb7a869bec5729291aededfc320b4b9ea499a5f7))
50+
* **api:** add TEAM_ADMIN and TEAM_VIEWER to ResourceRole ([4428302](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/442830279d79a2181f304c53bacc465616989c42))
51+
* **api:** add terminal field to RunsOn ([a285f60](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/a285f6013dd1382c2dcd5e3d520e90f44af02354))
52+
* **api:** add time range filters to event list method ([1b2c056](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/1b2c0567bfad884aadcb3bbeb81af84c76afe1c3))
53+
* **api:** add updateWindow field to runners configuration ([54c0225](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/54c0225d6cfbeb43cd5c7163667c29a5e28c08b6))
54+
* **api:** add WakeEvent type and wakeEvent parameter to agents ([ea254b6](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/ea254b67bf12c9dca3b8d205d56883c53179dd20))
55+
* **api:** add warm pool CRUD methods and types to prebuilds ([2ebb4cd](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/2ebb4cdb5f1461a96bac9b29cc4ffcf1dbf9c439))
56+
* **api:** allow min_size &gt;= 0 for warm pool dynamic scaling ([a72b6c8](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/a72b6c81385168933314a76794899bb91c6114cf))
57+
* **backend/api,dashboard:** add server-side `recentlyCompleted` sort for `ListWorkflows` ([567bc3a](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/567bc3a93c2cc65fd939527a3a0868cf30fd1e44))
58+
* **ec2:** add RUNNER_CAPABILITY_ASG_WARM_POOL capability ([993a447](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/993a447ef3390cd787661868a28bb2116345821e))
59+
* **types:** remove agent execution enum values from Principal and ResourceRole ([4378ae7](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/4378ae76a8d9b668c2b428009c39ec35aa8dc781))
60+
61+
62+
### Bug Fixes
63+
64+
* **api:** remove acknowledgeToken parameter from environments start method ([77917e4](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/77917e43fbdc905617e238b8f2d0c1a9e5c9fade))
65+
* **api:** rename executableDenyList to vetoExecPolicy in policies ([84bf167](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/84bf167dd9dd77c72968cd5267d9a2b25a6caa76))
66+
* **client:** preserve URL params already embedded in path ([7424783](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/7424783edb1c99c339910557206e36d02cc9ad75))
67+
* **docs/contributing:** correct pnpm link command ([43ff14c](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/43ff14ca7e7126233cd7dd75cd191766b96ab492))
68+
* fix request delays for retrying to be more respectful of high requested delays ([858345c](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/858345c8d80809668d46f6b0757c0fb14702cb73))
69+
* **types:** make id optional in CustomSecurityAgent ([25f783f](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/25f783f7f7490c965a8a9819547d943c95e1bf33))
70+
71+
72+
### Chores
73+
74+
* **ci:** skip lint on metadata-only changes ([74a87ee](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/74a87ee1d29679c394c0c8417f57944f1fcf6b77))
75+
* **ci:** skip uploading artifacts on stainless-internal branches ([a4c7e10](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/a4c7e10ee9bda8648752c8c56f49960a54cca88a))
76+
* **docs:** add missing descriptions ([ad400e2](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/ad400e2a897ed2b82a4dff08de92b16d74b0e6d1))
77+
* **internal:** move stringifyQuery implementation to internal function ([b25ce90](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/b25ce90fcccaa5dab211114e17d9c155f26b05c5))
78+
* **internal:** regenerate SDK with no functional changes ([c095797](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/c095797ffaf0db7caedd47aac75b3dc8baa8a3d5))
79+
* **internal:** regenerate SDK with no functional changes ([cc9b601](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/cc9b601ae180912ef05f7809e416f14e04af28c8))
80+
* **internal:** regenerate SDK with no functional changes ([ca8c11c](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/ca8c11c5e9b538421341f2f09c633dcf39439f15))
81+
* **internal:** regenerate SDK with no functional changes ([a7e1b02](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/a7e1b02445a7bd5f00409acf0af72615c91c6202))
82+
* **internal:** regenerate SDK with no functional changes ([2b0fe0b](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/2b0fe0b585142ca23d6786d32312650514e4ddd0))
83+
* **internal:** remove mock server code ([d7effec](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/d7effeca87947f2c067de984a7fac9f4e498eaac))
84+
* **internal:** tweak CI branches ([834cba6](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/834cba602e5f46c845b48991abc643c43628aa94))
85+
* **internal:** update dependencies to address dependabot vulnerabilities ([3daa978](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/3daa97802cc6ccbfc732028820ff17c46f775503))
86+
* **internal:** update gitignore ([51da5bf](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/51da5bfc1509472e2a96ce199097bca3377e7b6a))
87+
* **test:** update skip reason message ([9e5570d](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/9e5570d13dbf4c3101e679038a8e4bdb2460882d))
88+
* **types:** move CountResponseRelation from organizations to shared ([c47174a](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/c47174a9c78d9785316d7f4085a4aea653b11cc1))
89+
* update mock server docs ([cd79de5](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/cd79de5fbf0ffd6dcc51c8a0d930065335254f1f))
90+
91+
92+
### Documentation
93+
94+
* **api:** clarify resourceId/resourceIds permission behavior in groups role assignments ([1b36502](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/1b36502903ea6f8a6b558bd152379137191907a8))
95+
* **api:** clarify timeout constraints in environments and organization policies ([8a68a4d](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/8a68a4d7213b28c0c5376ccc3eb873692f4961ba))
96+
* **api:** update annotations parameter examples in agents ([723978c](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/723978c628dab92a05195c67346c796b7232583c))
97+
398
## 0.13.0 (2026-02-18)
499

5100
Full Changelog: [v0.12.0...v0.13.0](https://github.com/gitpod-io/gitpod-sdk-typescript/compare/v0.12.0...v0.13.0)

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ $ yarn link @gitpod/sdk
6060
# With pnpm
6161
$ pnpm link --global
6262
$ cd ../my-package
63-
$ pnpm link -global @gitpod/sdk
63+
$ pnpm link --global @gitpod/sdk
6464
```
6565

6666
## Running tests

0 commit comments

Comments
 (0)