Skip to content
This repository was archived by the owner on Aug 14, 2025. It is now read-only.

Commit 20c4fee

Browse files
release: 0.1.0-alpha.2 (#2)
Automated Release PR --- ## 0.1.0-alpha.2 (2025-06-27) Full Changelog: [v0.1.0-alpha.1...v0.1.0-alpha.2](llamastack/llama-stack-client-typescript@v0.1.0-alpha.1...v0.1.0-alpha.2) ### Features * **api:** update via SDK Studio ([a00f961](llamastack/llama-stack-client-typescript@a00f961)) * **api:** update via SDK Studio ([bef1e47](llamastack/llama-stack-client-typescript@bef1e47)) * **api:** update via SDK Studio ([7fb44fa](llamastack/llama-stack-client-typescript@7fb44fa)) --- This pull request is managed by Stainless's [GitHub App](https://github.com/apps/stainless-app). The [semver version number](https://semver.org/#semantic-versioning-specification-semver) is based on included [commit messages](https://www.conventionalcommits.org/en/v1.0.0/). Alternatively, you can manually set the version number in the title of this pull request. For a better experience, it is recommended to use either rebase-merge or squash-merge when merging this pull request. 🔗 Stainless [website](https://www.stainlessapi.com) 📚 Read the [docs](https://app.stainlessapi.com/docs) 🙋 [Reach out](mailto:support@stainlessapi.com) for help or questions --------- Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
1 parent af009b6 commit 20c4fee

File tree

230 files changed

+17236
-10249
lines changed

Some content is hidden

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

230 files changed

+17236
-10249
lines changed

.devcontainer/devcontainer.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@
99
"postCreateCommand": "yarn install",
1010
"customizations": {
1111
"vscode": {
12-
"extensions": ["esbenp.prettier-vscode"]
12+
"extensions": [
13+
"esbenp.prettier-vscode"
14+
]
1315
}
1416
}
1517
}

.eslintrc.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
module.exports = {
2+
parser: '@typescript-eslint/parser',
3+
plugins: ['@typescript-eslint', 'unused-imports', 'prettier'],
4+
rules: {
5+
'no-unused-vars': 'off',
6+
'prettier/prettier': 'error',
7+
'unused-imports/no-unused-imports': 'error',
8+
},
9+
root: true,
10+
};

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ jobs:
1616
lint:
1717
timeout-minutes: 10
1818
name: lint
19-
runs-on: ${{ github.repository == 'stainless-sdks/llama-stack-client-typescript' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
19+
runs-on: ${{ github.repository == 'stainless-sdks/llama-stack-client-node' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
2020
steps:
2121
- uses: actions/checkout@v4
2222

2323
- name: Set up Node
2424
uses: actions/setup-node@v4
2525
with:
26-
node-version: '20'
26+
node-version: '18'
2727

2828
- name: Bootstrap
2929
run: ./scripts/bootstrap
@@ -34,7 +34,7 @@ jobs:
3434
build:
3535
timeout-minutes: 5
3636
name: build
37-
runs-on: ${{ github.repository == 'stainless-sdks/llama-stack-client-typescript' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
37+
runs-on: ${{ github.repository == 'stainless-sdks/llama-stack-client-node' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
3838
permissions:
3939
contents: read
4040
id-token: write
@@ -44,7 +44,7 @@ jobs:
4444
- name: Set up Node
4545
uses: actions/setup-node@v4
4646
with:
47-
node-version: '20'
47+
node-version: '18'
4848

4949
- name: Bootstrap
5050
run: ./scripts/bootstrap
@@ -53,14 +53,14 @@ jobs:
5353
run: ./scripts/build
5454

5555
- name: Get GitHub OIDC Token
56-
if: github.repository == 'stainless-sdks/llama-stack-client-typescript'
56+
if: github.repository == 'stainless-sdks/llama-stack-client-node'
5757
id: github-oidc
5858
uses: actions/github-script@v6
5959
with:
6060
script: core.setOutput('github_token', await core.getIDToken());
6161

6262
- name: Upload tarball
63-
if: github.repository == 'stainless-sdks/llama-stack-client-typescript'
63+
if: github.repository == 'stainless-sdks/llama-stack-client-node'
6464
env:
6565
URL: https://pkg.stainless.com/s
6666
AUTH: ${{ steps.github-oidc.outputs.github_token }}
@@ -69,7 +69,7 @@ jobs:
6969
test:
7070
timeout-minutes: 10
7171
name: test
72-
runs-on: ${{ github.repository == 'stainless-sdks/llama-stack-client-typescript' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
72+
runs-on: ${{ github.repository == 'stainless-sdks/llama-stack-client-node' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
7373
steps:
7474
- uses: actions/checkout@v4
7575

.github/workflows/release-doctor.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,4 @@ jobs:
1818
run: |
1919
bash ./bin/check-release-environment
2020
env:
21+

.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.1.0-alpha.1"
2+
".": "0.1.0-alpha.2"
33
}

.stats.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
configured_endpoints: 91
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/llamastack%2Fllama-stack-client-0e756984d87c3fd1eb96d486947b3bc2086d5afcf299e8119b6b89bbd86dbe75.yml
3-
openapi_spec_hash: 7c519a25bb9a094d4b4bda17bb20dd88
4-
config_hash: d1f21dfdbf5d9925eecf56b6c1fab755
1+
configured_endpoints: 105
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/llamastack%2Fllama-stack-client-df7a19394e9124c18ec4e888e2856d22b5ebfd6fe6fe6e929ff6cfadb2ae7e2a.yml
3+
openapi_spec_hash: 9428682672fdd7e2afee7af9ef849dc9
4+
config_hash: e1d37a77a6e8ca86fb6bccb4b0f172c9

CHANGELOG.md

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

3+
## 0.1.0-alpha.2 (2025-06-27)
4+
5+
Full Changelog: [v0.1.0-alpha.1...v0.1.0-alpha.2](https://github.com/llamastack/llama-stack-client-typescript/compare/v0.1.0-alpha.1...v0.1.0-alpha.2)
6+
7+
### Features
8+
9+
* **api:** update via SDK Studio ([a00f961](https://github.com/llamastack/llama-stack-client-typescript/commit/a00f961a3a4a8961cd54ad6a92a52aa34cb0d041))
10+
* **api:** update via SDK Studio ([bef1e47](https://github.com/llamastack/llama-stack-client-typescript/commit/bef1e47ad9fe9a03e8ffdaa632981c0666919b73))
11+
* **api:** update via SDK Studio ([7fb44fa](https://github.com/llamastack/llama-stack-client-typescript/commit/7fb44fab41cd95410115d12a7855fd12fbd3b34c))
12+
313
## 0.1.0-alpha.1 (2025-06-27)
414

515
Full Changelog: [v0.0.1-alpha.0...v0.1.0-alpha.1](https://github.com/llamastack/llama-stack-client-typescript/compare/v0.0.1-alpha.0...v0.1.0-alpha.1)

0 commit comments

Comments
 (0)