From 0a7f648b3ec320898b8a8e60d6129ec4312b0d5f Mon Sep 17 00:00:00 2001 From: stainless-bot Date: Thu, 9 May 2024 13:10:10 +0000 Subject: [PATCH] chore: update SDK settings --- CONTRIBUTING.md | 6 +++--- README.md | 6 +++--- package.json | 2 +- src/_shims/index-deno.ts | 2 +- src/_shims/web-runtime.ts | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 59f82f0..d585f4d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -42,14 +42,14 @@ If you’d like to use the repository from source, you can either install from g To install via git: ```bash -npm install git+ssh://git@github.com:stainless-sdks/plastic-labs/honcho-node.git +npm install git+ssh://git@github.com:stainless-sdks/honcho-node.git ``` Alternatively, to link a local copy of the repo: ```bash # Clone -git clone https://www.github.com/stainless-sdks/plastic-labs/honcho-node +git clone https://www.github.com/stainless-sdks/honcho-node cd honcho-node # With yarn @@ -99,7 +99,7 @@ the changes aren't made through the automated pipeline, you may want to make rel ### Publish with a GitHub workflow -You can release to package managers by using [the `Publish NPM` GitHub action](https://www.github.com/stainless-sdks/plastic-labs/honcho-node/actions/workflows/publish-npm.yml). This requires a setup organization or repository secret to be set up. +You can release to package managers by using [the `Publish NPM` GitHub action](https://www.github.com/stainless-sdks/honcho-node/actions/workflows/publish-npm.yml). This requires a setup organization or repository secret to be set up. ### Publish manually diff --git a/README.md b/README.md index f1fbbe7..dcd0ed7 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ It is generated with [Stainless](https://www.stainlessapi.com/). ## Installation ```sh -npm install git+ssh://git@github.com:stainless-sdks/plastic-labs/honcho-node.git +npm install git+ssh://git@github.com:stainless-sdks/honcho-node.git ``` > [!NOTE] @@ -252,7 +252,7 @@ import Honcho from 'honcho'; ``` To do the inverse, add `import "honcho/shims/node"` (which does import polyfills). -This can also be useful if you are getting the wrong TypeScript types for `Response` ([more details](https://github.com/stainless-sdks/tree/main/src/_shims#readme)). +This can also be useful if you are getting the wrong TypeScript types for `Response` ([more details](https://github.com/plastic-labs/tree/main/src/_shims#readme)). ### Logging and middleware @@ -311,7 +311,7 @@ This package generally follows [SemVer](https://semver.org/spec/v2.0.0.html) con We take backwards-compatibility seriously and work hard to ensure you can rely on a smooth upgrade experience. -We are keen for your feedback; please open an [issue](https://www.github.com/stainless-sdks/plastic-labs/honcho-node/issues) with questions, bugs, or suggestions. +We are keen for your feedback; please open an [issue](https://www.github.com/stainless-sdks/honcho-node/issues) with questions, bugs, or suggestions. ## Requirements diff --git a/package.json b/package.json index 7c5d6e5..3d09bc3 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "types": "dist/index.d.ts", "main": "dist/index.js", "type": "commonjs", - "repository": "github:stainless-sdks/honcho-node", + "repository": "github:plastic-labs/honcho-node", "license": "Apache-2.0", "packageManager": "yarn@1.22.22", "files": [ diff --git a/src/_shims/index-deno.ts b/src/_shims/index-deno.ts index 3d0c9f3..a808c85 100644 --- a/src/_shims/index-deno.ts +++ b/src/_shims/index-deno.ts @@ -79,7 +79,7 @@ export function getDefaultAgent(url: string) { } export function fileFromPath() { throw new Error( - 'The `fileFromPath` function is only supported in Node. See the README for more details: https://www.github.com/stainless-sdks/plastic-labs/honcho-node#file-uploads', + 'The `fileFromPath` function is only supported in Node. See the README for more details: https://www.github.com/stainless-sdks/honcho-node#file-uploads', ); } diff --git a/src/_shims/web-runtime.ts b/src/_shims/web-runtime.ts index 1fbba3c..037cbf6 100644 --- a/src/_shims/web-runtime.ts +++ b/src/_shims/web-runtime.ts @@ -95,7 +95,7 @@ export function getRuntime({ manuallyImported }: { manuallyImported?: boolean } getDefaultAgent: (url: string) => undefined, fileFromPath: () => { throw new Error( - 'The `fileFromPath` function is only supported in Node. See the README for more details: https://www.github.com/stainless-sdks/plastic-labs/honcho-node#file-uploads', + 'The `fileFromPath` function is only supported in Node. See the README for more details: https://www.github.com/stainless-sdks/honcho-node#file-uploads', ); }, isFsReadStream: (value: any) => false,