Skip to content

Commit 914fb2e

Browse files
chore: update SDK settings
1 parent a9a23ed commit 914fb2e

File tree

12 files changed

+126
-12
lines changed

12 files changed

+126
-12
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Release Doctor
2+
on:
3+
pull_request:
4+
branches:
5+
- main
6+
workflow_dispatch:
7+
8+
jobs:
9+
release_doctor:
10+
name: release doctor
11+
runs-on: ubuntu-latest
12+
if: github.repository == 'stainless-api/dbahn-stations-typescript' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || startsWith(github.head_ref, 'release-please') || github.head_ref == 'next')
13+
14+
steps:
15+
- uses: actions/checkout@v4
16+
17+
- name: Check release environment
18+
run: |
19+
bash ./bin/check-release-environment
20+
env:
21+

.release-please-manifest.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
".": "0.0.1"
3+
}

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 4
22
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/references%2Fdbahn-stations-2a72886a1ec37a86550e3c5137230284269a32a606b28816e214905c8b06f677.yml
33
openapi_spec_hash: 7c2a8cbfc4afd14d0ea8dbb3c3eb2e6a
4-
config_hash: a996ee7b58cc2c0f3b880a503024080a
4+
config_hash: 5d8388386b6c9f4327ca7e907de5078f

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,14 @@ If you’d like to use the repository from source, you can either install from g
4242
To install via git:
4343

4444
```sh
45-
$ npm install git+ssh://[email protected]:stainless-sdks/dbahn-stations-typescript.git
45+
$ npm install git+ssh://[email protected]:stainless-api/dbahn-stations-typescript.git
4646
```
4747

4848
Alternatively, to link a local copy of the repo:
4949

5050
```sh
5151
# Clone
52-
$ git clone https://www.github.com/stainless-sdks/dbahn-stations-typescript
52+
$ git clone https://www.github.com/stainless-api/dbahn-stations-typescript
5353
$ cd dbahn-stations-typescript
5454

5555
# With yarn

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ It is generated with [Stainless](https://www.stainless.com/).
1111
## Installation
1212

1313
```sh
14-
npm install git+ssh://[email protected]:stainless-sdks/dbahn-stations-typescript.git
14+
npm install git+ssh://[email protected]:stainless-api/dbahn-stations-typescript.git
1515
```
1616

1717
> [!NOTE]
@@ -337,7 +337,7 @@ This package generally follows [SemVer](https://semver.org/spec/v2.0.0.html) con
337337

338338
We take backwards-compatibility seriously and work hard to ensure you can rely on a smooth upgrade experience.
339339

340-
We are keen for your feedback; please open an [issue](https://www.github.com/stainless-sdks/dbahn-stations-typescript/issues) with questions, bugs, or suggestions.
340+
We are keen for your feedback; please open an [issue](https://www.github.com/stainless-api/dbahn-stations-typescript/issues) with questions, bugs, or suggestions.
341341

342342
## Requirements
343343

bin/check-release-environment

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#!/usr/bin/env bash
2+
3+
errors=()
4+
5+
lenErrors=${#errors[@]}
6+
7+
if [[ lenErrors -gt 0 ]]; then
8+
echo -e "Found the following errors in the release environment:\n"
9+
10+
for error in "${errors[@]}"; do
11+
echo -e "- $error\n"
12+
done
13+
14+
exit 1
15+
fi
16+
17+
echo "The environment is ready to push releases!"
18+

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"types": "dist/index.d.ts",
77
"main": "dist/index.js",
88
"type": "commonjs",
9-
"repository": "github:stainless-sdks/dbahn-stations-typescript",
9+
"repository": "github:stainless-api/dbahn-stations-typescript",
1010
"license": "Apache-2.0",
1111
"packageManager": "[email protected]",
1212
"files": [

packages/mcp-server/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ It is generated with [Stainless](https://www.stainless.com/).
99
Because it's not published yet, clone the repo and build it:
1010

1111
```sh
12-
git clone [email protected]:stainless-sdks/dbahn-stations-typescript.git
12+
git clone [email protected]:stainless-api/dbahn-stations-typescript.git
1313
cd dbahn-stations-typescript
1414
./scripts/bootstrap
1515
./scripts/build

packages/mcp-server/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
},
1010
"repository": {
1111
"type": "git",
12-
"url": "git+https://github.com/stainless-sdks/dbahn-stations-typescript.git"
12+
"url": "git+https://github.com/stainless-api/dbahn-stations-typescript.git"
1313
},
14-
"homepage": "https://github.com/stainless-sdks/dbahn-stations-typescript/tree/main/packages/mcp-server#readme",
14+
"homepage": "https://github.com/stainless-api/dbahn-stations-typescript/tree/main/packages/mcp-server#readme",
1515
"documentation": "https://docs.dbahn-stations.com",
1616
"server": {
1717
"type": "node",

packages/mcp-server/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
"type": "commonjs",
99
"repository": {
1010
"type": "git",
11-
"url": "git+https://github.com/stainless-sdks/dbahn-stations-typescript.git",
11+
"url": "git+https://github.com/stainless-api/dbahn-stations-typescript.git",
1212
"directory": "packages/mcp-server"
1313
},
14-
"homepage": "https://github.com/stainless-sdks/dbahn-stations-typescript/tree/main/packages/mcp-server#readme",
14+
"homepage": "https://github.com/stainless-api/dbahn-stations-typescript/tree/main/packages/mcp-server#readme",
1515
"license": "Apache-2.0",
1616
"packageManager": "[email protected]",
1717
"private": false,

0 commit comments

Comments
 (0)