Skip to content

Commit bb9467f

Browse files
feat(api): update via SDK Studio (#14)
1 parent f104a26 commit bb9467f

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

.github/workflows/publish-npm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This workflow is triggered when a GitHub release is created.
22
# It can also be run manually to re-publish to NPM in case it failed for some reason.
3-
# You can run this workflow by navigating to https://www.github.com/ZeroEntropy-AI/zeroentropy-node/actions/workflows/publish-npm.yml
3+
# You can run this workflow by navigating to https://www.github.com/zeroentropy-ai/zeroentropy-node/actions/workflows/publish-npm.yml
44
name: Publish NPM
55
on:
66
workflow_dispatch:

.github/workflows/release-doctor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
release_doctor:
1010
name: release doctor
1111
runs-on: ubuntu-latest
12-
if: github.repository == 'ZeroEntropy-AI/zeroentropy-node' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || startsWith(github.head_ref, 'release-please') || github.head_ref == 'next')
12+
if: github.repository == 'zeroentropy-ai/zeroentropy-node' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || startsWith(github.head_ref, 'release-please') || github.head_ref == 'next')
1313

1414
steps:
1515
- uses: actions/checkout@v4

CONTRIBUTING.md

Lines changed: 3 additions & 3 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]:ZeroEntropy-AI/zeroentropy-node.git
45+
$ npm install git+ssh://[email protected]:zeroentropy-ai/zeroentropy-node.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/ZeroEntropy-AI/zeroentropy-node
52+
$ git clone https://www.github.com/zeroentropy-ai/zeroentropy-node
5353
$ cd zeroentropy-node
5454

5555
# With yarn
@@ -99,7 +99,7 @@ the changes aren't made through the automated pipeline, you may want to make rel
9999

100100
### Publish with a GitHub workflow
101101

102-
You can release to package managers by using [the `Publish NPM` GitHub action](https://www.github.com/ZeroEntropy-AI/zeroentropy-node/actions/workflows/publish-npm.yml). This requires a setup organization or repository secret to be set up.
102+
You can release to package managers by using [the `Publish NPM` GitHub action](https://www.github.com/zeroentropy-ai/zeroentropy-node/actions/workflows/publish-npm.yml). This requires a setup organization or repository secret to be set up.
103103

104104
### Publish manually
105105

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ import ZeroEntropy from 'zeroentropy';
250250
```
251251

252252
To do the inverse, add `import "zeroentropy/shims/node"` (which does import polyfills).
253-
This can also be useful if you are getting the wrong TypeScript types for `Response` ([more details](https://github.com/ZeroEntropy-AI/zeroentropy-node/tree/main/src/_shims#readme)).
253+
This can also be useful if you are getting the wrong TypeScript types for `Response` ([more details](https://github.com/zeroentropy-ai/zeroentropy-node/tree/main/src/_shims#readme)).
254254

255255
### Logging and middleware
256256

@@ -306,7 +306,7 @@ This package generally follows [SemVer](https://semver.org/spec/v2.0.0.html) con
306306

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

309-
We are keen for your feedback; please open an [issue](https://www.github.com/ZeroEntropy-AI/zeroentropy-node/issues) with questions, bugs, or suggestions.
309+
We are keen for your feedback; please open an [issue](https://www.github.com/zeroentropy-ai/zeroentropy-node/issues) with questions, bugs, or suggestions.
310310

311311
## Requirements
312312

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:ZeroEntropy-AI/zeroentropy-node",
9+
"repository": "github:zeroentropy-ai/zeroentropy-node",
1010
"license": "Apache-2.0",
1111
"packageManager": "[email protected]",
1212
"files": [

src/_shims/index-deno.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ export function getDefaultAgent(url: string) {
7979
}
8080
export function fileFromPath() {
8181
throw new Error(
82-
'The `fileFromPath` function is only supported in Node. See the README for more details: https://www.github.com/ZeroEntropy-AI/zeroentropy-node#file-uploads',
82+
'The `fileFromPath` function is only supported in Node. See the README for more details: https://www.github.com/zeroentropy-ai/zeroentropy-node#file-uploads',
8383
);
8484
}
8585

src/_shims/web-runtime.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ export function getRuntime({ manuallyImported }: { manuallyImported?: boolean }
9595
getDefaultAgent: (url: string) => undefined,
9696
fileFromPath: () => {
9797
throw new Error(
98-
'The `fileFromPath` function is only supported in Node. See the README for more details: https://www.github.com/ZeroEntropy-AI/zeroentropy-node#file-uploads',
98+
'The `fileFromPath` function is only supported in Node. See the README for more details: https://www.github.com/zeroentropy-ai/zeroentropy-node#file-uploads',
9999
);
100100
},
101101
isFsReadStream: (value: any) => false,

0 commit comments

Comments
 (0)