Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
c928874
fix: grant BYO management observation access
alongubkin Aug 8, 2026
8e92d5b
fix: improve onboarding JSON output
alongubkin Aug 9, 2026
f9780ab
fix: preserve observed AI model access state
alongubkin Aug 9, 2026
165dbd2
fix: avoid GCP management self-inspection
alongubkin Aug 9, 2026
c2d2c4d
fix: clarify unsupported AI client APIs
alongubkin Aug 9, 2026
d020b09
test: cover AI client API guidance
alongubkin Aug 9, 2026
13405b6
fix: clarify CLI onboarding paths
alongubkin Aug 9, 2026
9b5bb31
fix: expose only qualified direct OpenAI models
alongubkin Aug 9, 2026
1b2d282
feat: add customer-scoped remote storage bindings
alongubkin Aug 9, 2026
e161d9a
feat: accept byo/ namespaced model ids in the ai gateway
alongubkin Aug 9, 2026
7c921a7
feat: expand AI Gateway model routing
alongubkin Aug 10, 2026
8855e64
fix: select Rust build tools for the host
alongubkin Aug 14, 2026
5f0324b
test: align AI gateway integration expectations
alongubkin Aug 14, 2026
fb10359
fix: regenerate final Platform client schema from branch sources
alongubkin Aug 14, 2026
7688009
fix: preserve direct OpenAI routing in final stack
alongubkin Aug 14, 2026
49314e6
test: refresh Azure bucket package snapshot
alongubkin Aug 14, 2026
f639a40
test: refresh GCP package snapshots
alongubkin Aug 14, 2026
a428e19
refactor: generalize remote environment bindings
alongubkin Aug 15, 2026
a0484be
chore: update generated SDK lockfile
alongubkin Aug 15, 2026
a906865
fix: allocate memory for generated SDK build
alongubkin Aug 15, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
2 changes: 1 addition & 1 deletion client-sdks/platform/openapi.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion client-sdks/platform/rust/openapi-3.0.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion client-sdks/platform/rust/openapi.json

Large diffs are not rendered by default.

9,030 changes: 6,445 additions & 2,585 deletions client-sdks/platform/typescript/.speakeasy/gen.lock

Large diffs are not rendered by default.

8 changes: 5 additions & 3 deletions client-sdks/platform/typescript/FUNCTIONS.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ specific category of applications.

```typescript
import { AlienCore } from "@alienplatform/platform-api/core.js";
import { userListMemberships } from "@alienplatform/platform-api/funcs/userListMemberships.js";
import { getWorkspaceInvitationPreview } from "@alienplatform/platform-api/funcs/getWorkspaceInvitationPreview.js";

// Use `AlienCore` for best tree-shaking performance.
// You can create one instance of it to use across an application.
Expand All @@ -29,12 +29,14 @@ const alien = new AlienCore({
});

async function run() {
const res = await userListMemberships(alien);
const res = await getWorkspaceInvitationPreview(alien, {
token: "<value>",
});
if (res.ok) {
const { value: result } = res;
console.log(result);
} else {
console.log("userListMemberships failed:", res.error);
console.log("getWorkspaceInvitationPreview failed:", res.error);
}
}

Expand Down
202 changes: 194 additions & 8 deletions client-sdks/platform/typescript/README.md

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion client-sdks/platform/typescript/USAGE.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ const alien = new Alien({
});

async function run() {
const result = await alien.user.listMemberships();
const result = await alien.getWorkspaceInvitationPreview({
token: "<value>",
});

console.log(result);
}
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions client-sdks/platform/typescript/docs/models/activerelease.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 0 additions & 22 deletions client-sdks/platform/typescript/docs/models/actor1.md

This file was deleted.

22 changes: 0 additions & 22 deletions client-sdks/platform/typescript/docs/models/actor2.md

This file was deleted.

19 changes: 0 additions & 19 deletions client-sdks/platform/typescript/docs/models/actorunion1.md

This file was deleted.

19 changes: 0 additions & 19 deletions client-sdks/platform/typescript/docs/models/actorunion2.md

This file was deleted.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading