Skip to content

Commit 73b681c

Browse files
release: 0.4.0 (#32)
* fix: optimize sse chunk reading off-by-one error (#31) * feat(api): manual updates (#33) * codegen metadata * release: 0.4.0 --------- Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
1 parent 1b0851c commit 73b681c

18 files changed

+931
-67
lines changed

.release-please-manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.3.1"
2+
".": "0.4.0"
33
}

.stats.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
configured_endpoints: 111
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/gitpod%2Fgitpod-cd6a05ae99d2a050577fa0e729e6ae89b4eacd78f61366a77269398368f8a877.yml
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/gitpod%2Fgitpod-064a191bc556bcab46bb5d612c844437e1a4aef5981a4a99ab7f825a96ede4fa.yml

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## 0.4.0 (2025-02-21)
4+
5+
Full Changelog: [v0.3.1...v0.4.0](https://github.com/gitpod-io/gitpod-sdk-typescript/compare/v0.3.1...v0.4.0)
6+
7+
### Features
8+
9+
* add lib and examples ([#36](https://github.com/gitpod-io/gitpod-sdk-typescript/issues/36)) ([1b0851c](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/1b0851cdf0944a6a784dd4cf370fa967aaf56a5f))
10+
* **api:** manual updates ([#33](https://github.com/gitpod-io/gitpod-sdk-typescript/issues/33)) ([6c0b9a6](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/6c0b9a6c1140068f2838f8451e375813f8181eb7))
11+
12+
13+
### Bug Fixes
14+
15+
* optimize sse chunk reading off-by-one error ([#31](https://github.com/gitpod-io/gitpod-sdk-typescript/issues/31)) ([ff08afe](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/ff08afe756856c253787602bc15f85557425ba01))
16+
317
## 0.3.1 (2025-02-18)
418

519
Full Changelog: [v0.3.0...v0.3.1](https://github.com/gitpod-io/gitpod-sdk-typescript/compare/v0.3.0...v0.3.1)

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gitpod/sdk",
3-
"version": "0.3.1",
3+
"version": "0.4.0",
44
"description": "The official TypeScript library for the Gitpod API",
55
"author": "Gitpod <[email protected]>",
66
"types": "dist/index.d.ts",

src/internal/decoders/line.ts

+31
Original file line numberDiff line numberDiff line change
@@ -147,3 +147,34 @@ function findNewlineIndex(
147147

148148
return null;
149149
}
150+
151+
export function findDoubleNewlineIndex(buffer: Uint8Array): number {
152+
// This function searches the buffer for the end patterns (\r\r, \n\n, \r\n\r\n)
153+
// and returns the index right after the first occurrence of any pattern,
154+
// or -1 if none of the patterns are found.
155+
const newline = 0x0a; // \n
156+
const carriage = 0x0d; // \r
157+
158+
for (let i = 0; i < buffer.length - 1; i++) {
159+
if (buffer[i] === newline && buffer[i + 1] === newline) {
160+
// \n\n
161+
return i + 2;
162+
}
163+
if (buffer[i] === carriage && buffer[i + 1] === carriage) {
164+
// \r\r
165+
return i + 2;
166+
}
167+
if (
168+
buffer[i] === carriage &&
169+
buffer[i + 1] === newline &&
170+
i + 3 < buffer.length &&
171+
buffer[i + 2] === carriage &&
172+
buffer[i + 3] === newline
173+
) {
174+
// \r\n\r\n
175+
return i + 4;
176+
}
177+
}
178+
179+
return -1;
180+
}

src/resources/events.ts

+43-3
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,32 @@ import { JSONLDecoder } from '../internal/decoders/jsonl';
1111

1212
export class Events extends APIResource {
1313
/**
14-
* ListAuditLogs retrieves a paginated list of audit logs for the specified
15-
* organization
14+
* Lists audit logs with filtering and pagination options.
15+
*
16+
* Use this method to:
17+
*
18+
* - View audit history
19+
* - Track user actions
20+
* - Monitor system changes
21+
*
22+
* ### Examples
23+
*
24+
* - List all logs:
25+
*
26+
* ```yaml
27+
* pagination:
28+
* pageSize: 20
29+
* ```
30+
*
31+
* - Filter by actor:
32+
*
33+
* ```yaml
34+
* filter:
35+
* actorIds: ["d2c94c27-3b76-4a42-b88c-95a85e392c68"]
36+
* actorPrincipals: ["PRINCIPAL_USER"]
37+
* pagination:
38+
* pageSize: 20
39+
* ```
1640
*/
1741
list(
1842
params: EventListParams,
@@ -28,7 +52,23 @@ export class Events extends APIResource {
2852
}
2953

3054
/**
31-
* WatchEvents streams all requests events to the client
55+
* Streams events for all projects, runners, environments, tasks, and services
56+
* based on the specified scope.
57+
*
58+
* Use this method to:
59+
*
60+
* - Monitor resource changes in real-time
61+
* - Track system events
62+
* - Receive notifications
63+
*
64+
* The scope parameter determines which events to watch:
65+
*
66+
* - Organization scope (default): Watch all organization-wide events including
67+
* projects, runners and environments. Task and service events are not included.
68+
* Use by setting organization=true or omitting the scope.
69+
* - Environment scope: Watch events for a specific environment, including its
70+
* tasks, task executions, and services. Use by setting environment_id to the
71+
* UUID of the environment to watch.
3272
*/
3373
watch(body: EventWatchParams, options?: RequestOptions): APIPromise<JSONLDecoder<EventWatchResponse>> {
3474
return this._client

src/resources/groups.ts

+29-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,35 @@ import { RequestOptions } from '../internal/request-options';
66

77
export class Groups extends APIResource {
88
/**
9-
* ListGroups lists groups
9+
* Lists groups with optional pagination.
10+
*
11+
* Use this method to:
12+
*
13+
* - View all groups
14+
* - Check group memberships
15+
* - Monitor group configurations
16+
* - Audit group access
17+
*
18+
* ### Examples
19+
*
20+
* - List all groups:
21+
*
22+
* Shows all groups with pagination.
23+
*
24+
* ```yaml
25+
* pagination:
26+
* pageSize: 20
27+
* ```
28+
*
29+
* - List with custom page size:
30+
*
31+
* Shows groups with specified page size.
32+
*
33+
* ```yaml
34+
* pagination:
35+
* pageSize: 50
36+
* token: "next-page-token-from-previous-response"
37+
* ```
1038
*/
1139
list(params: GroupListParams, options?: RequestOptions): PagePromise<GroupsGroupsPage, Group> {
1240
const { token, pageSize, ...body } = params;

src/resources/projects/policies.ts

+75-4
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,75 @@ import { RequestOptions } from '../../internal/request-options';
77

88
export class Policies extends APIResource {
99
/**
10-
* CreateProjectPolicy creates a Project Policy.
10+
* Creates a new policy for a project.
11+
*
12+
* Use this method to:
13+
*
14+
* - Set up access controls
15+
* - Define group permissions
16+
* - Configure role-based access
17+
*
18+
* ### Examples
19+
*
20+
* - Create admin policy:
21+
*
22+
* Grants admin access to a group.
23+
*
24+
* ```yaml
25+
* projectId: "b0e12f6c-4c67-429d-a4a6-d9838b5da047"
26+
* groupId: "f53d2330-3795-4c5d-a1f3-453121af9c60"
27+
* role: PROJECT_ROLE_ADMIN
28+
* ```
1129
*/
1230
create(body: PolicyCreateParams, options?: RequestOptions): APIPromise<PolicyCreateResponse> {
1331
return this._client.post('/gitpod.v1.ProjectService/CreateProjectPolicy', { body, ...options });
1432
}
1533

1634
/**
17-
* UpdateProjectPolicy updates a Project Policy.
35+
* Updates an existing project policy.
36+
*
37+
* Use this method to:
38+
*
39+
* - Modify access levels
40+
* - Change group roles
41+
* - Update permissions
42+
*
43+
* ### Examples
44+
*
45+
* - Update policy role:
46+
*
47+
* Changes a group's access level.
48+
*
49+
* ```yaml
50+
* projectId: "b0e12f6c-4c67-429d-a4a6-d9838b5da047"
51+
* groupId: "f53d2330-3795-4c5d-a1f3-453121af9c60"
52+
* role: PROJECT_ROLE_EDITOR
53+
* ```
1854
*/
1955
update(body: PolicyUpdateParams, options?: RequestOptions): APIPromise<PolicyUpdateResponse> {
2056
return this._client.post('/gitpod.v1.ProjectService/UpdateProjectPolicy', { body, ...options });
2157
}
2258

2359
/**
24-
* ListProjectPolicies lists policies for a project.
60+
* Lists policies for a project.
61+
*
62+
* Use this method to:
63+
*
64+
* - View access controls
65+
* - Check policy configurations
66+
* - Audit permissions
67+
*
68+
* ### Examples
69+
*
70+
* - List policies:
71+
*
72+
* Shows all policies for a project.
73+
*
74+
* ```yaml
75+
* projectId: "b0e12f6c-4c67-429d-a4a6-d9838b5da047"
76+
* pagination:
77+
* pageSize: 20
78+
* ```
2579
*/
2680
list(
2781
params: PolicyListParams,
@@ -36,7 +90,24 @@ export class Policies extends APIResource {
3690
}
3791

3892
/**
39-
* DeleteProjectPolicy deletes a Project Policy.
93+
* Deletes a project policy.
94+
*
95+
* Use this method to:
96+
*
97+
* - Remove access controls
98+
* - Revoke permissions
99+
* - Clean up policies
100+
*
101+
* ### Examples
102+
*
103+
* - Delete policy:
104+
*
105+
* Removes a group's access policy.
106+
*
107+
* ```yaml
108+
* projectId: "b0e12f6c-4c67-429d-a4a6-d9838b5da047"
109+
* groupId: "f53d2330-3795-4c5d-a1f3-453121af9c60"
110+
* ```
40111
*/
41112
delete(body: PolicyDeleteParams, options?: RequestOptions): APIPromise<unknown> {
42113
return this._client.post('/gitpod.v1.ProjectService/DeleteProjectPolicy', { body, ...options });

0 commit comments

Comments
 (0)