Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.15.0"
".": "0.16.0"
}
6 changes: 3 additions & 3 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 213
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/gitpod/gitpod-f8271fd3c90de2edf4e8e63bce296f295fb8e54c0522b4d159d1d1f33a902474.yml
openapi_spec_hash: fb7b7d87dc232de2b141c5cc57d16fd1
config_hash: 3d1af35edc400f59127c3b02ca3ab0ec
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/gitpod/gitpod-94f36fded8e90d8bcf5f750206a965932ad1c5231100de24b7ce3ff59f436488.yml
openapi_spec_hash: 1e6493fab0cb74f76595bbc2864a20ca
config_hash: da696e1819c7bb116b31ba7dfbf38757
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.16.0 (2026-07-31)

Full Changelog: [v0.15.0...v0.16.0](https://github.com/gitpod-io/gitpod-sdk-typescript/compare/v0.15.0...v0.16.0)

### Features

* **automations:** add organization policy defaults ([b6024e9](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/b6024e90aef9fef44e6188ff6f5c50e1cf67534b))

## 0.15.0 (2026-07-30)

Full Changelog: [v0.14.0...v0.15.0](https://github.com/gitpod-io/gitpod-sdk-typescript/compare/v0.14.0...v0.15.0)
Expand Down
1 change: 1 addition & 0 deletions api.md
Original file line number Diff line number Diff line change
Expand Up @@ -515,6 +515,7 @@ Methods:
Types:

- <code><a href="./src/resources/organizations/policies.ts">AgentPolicy</a></code>
- <code><a href="./src/resources/organizations/policies.ts">AutomationPolicy</a></code>
- <code><a href="./src/resources/organizations/policies.ts">CodexModelPolicy</a></code>
- <code><a href="./src/resources/organizations/policies.ts">ConversationSharingPolicy</a></code>
- <code><a href="./src/resources/organizations/policies.ts">CrowdStrikeConfig</a></code>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gitpod/sdk",
"version": "0.15.0",
"version": "0.16.0",
"description": "The official TypeScript library for the Gitpod API",
"author": "Gitpod <dev-feedback@gitpod.com>",
"types": "dist/index.d.ts",
Expand Down
1 change: 1 addition & 0 deletions src/resources/organizations/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ export {
export {
Policies,
type AgentPolicy,
type AutomationPolicy,
type CodexModelPolicy,
type ConversationSharingPolicy,
type CrowdStrikeConfig,
Expand Down
2 changes: 2 additions & 0 deletions src/resources/organizations/organizations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ import {
import * as PoliciesAPI from './policies';
import {
AgentPolicy,
AutomationPolicy,
CodexModelPolicy,
ConversationSharingPolicy,
CrowdStrikeConfig,
Expand Down Expand Up @@ -1057,6 +1058,7 @@ export declare namespace Organizations {
export {
Policies as Policies,
type AgentPolicy as AgentPolicy,
type AutomationPolicy as AutomationPolicy,
type CodexModelPolicy as CodexModelPolicy,
type ConversationSharingPolicy as ConversationSharingPolicy,
type CrowdStrikeConfig as CrowdStrikeConfig,
Expand Down
21 changes: 21 additions & 0 deletions src/resources/organizations/policies.ts
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,26 @@ export interface AgentPolicy {
scmToolsAllowedGroupId?: string;
}

/**
* AutomationPolicy contains organization limits for self-service Automations.
*/
export interface AutomationPolicy {
/**
* max_automations_per_user is the ownership quota for each user.
*/
maxAutomationsPerUser?: number;

/**
* max_parallel_actions is the concurrent-action limit for each Automation.
*/
maxParallelActions?: number;

/**
* max_projects_per_automation is the project-selection limit for each Automation.
*/
maxProjectsPerAutomation?: number;
}

/**
* CodexModelPolicy controls per-model availability for Codex.
*/
Expand Down Expand Up @@ -771,6 +791,7 @@ export namespace PolicyUpdateParams {
export declare namespace Policies {
export {
type AgentPolicy as AgentPolicy,
type AutomationPolicy as AutomationPolicy,
type CodexModelPolicy as CodexModelPolicy,
type ConversationSharingPolicy as ConversationSharingPolicy,
type CrowdStrikeConfig as CrowdStrikeConfig,
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const VERSION = '0.15.0'; // x-release-please-version
export const VERSION = '0.16.0'; // x-release-please-version
Loading