Skip to content

Commit 82cf230

Browse files
author
TripleChecker
authored
chore(repo): Fix types
1 parent 9b6102c commit 82cf230

File tree

20 files changed

+62
-62
lines changed

20 files changed

+62
-62
lines changed

docs/PUBLISH.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ To release a new stable version of all Clerk packages, find the "ci(repo): Versi
1616

1717
An automated canary release will be take place every time a PR gets merged into `main`.
1818

19-
- Staging versions use the following format: `@clerk/package@x.y.z-canary.commit`, where `package` is the package name, `x`,`y`,`z` are the major, minor and patch versions respectively, `canary` is a stable prerelease mame and `commit` is the id of the last commit in the branch.
19+
- Staging versions use the following format: `@clerk/package@x.y.z-canary.commit`, where `package` is the package name, `x`,`y`,`z` are the major, minor and patch versions respectively, `canary` is a stable prerelease name and `commit` is the id of the last commit in the branch.
2020
- Currently, canary version changes are _not_ committed to the repo and no git tags will be generated. Using this strategy, we avoid merge conflicts, allowing us to constantly deploy canary versions without switching the repo to a "prerelease" mode.
2121
- During a canary release, `@clerk/clerk-js` will also be released. If needed, use the `clerkJSVersion` prop to use a specific version, eg: `<ClerkProvider clerkJSVersion='4.1.1-canary.90012' />`
2222
- A package will not be published if it's not affected by a changeset.
@@ -35,7 +35,7 @@ To perform a snapshot release, simply comment `!snapshot` in your PR. Once the p
3535

3636
Notes:
3737

38-
- Snapshot versions use the following format: `@clerk/package@x.y.z-snapshot.commit`, where `package` is the package name, `x`,`y`,`z` are the major, minor and patch versions respectively, `snapshot` is a stable prerelease mame and `commit` is the id of the last commit in the branch.
38+
- Snapshot versions use the following format: `@clerk/package@x.y.z-snapshot.commit`, where `package` is the package name, `x`,`y`,`z` are the major, minor and patch versions respectively, `snapshot` is a stable prerelease name and `commit` is the id of the last commit in the branch.
3939
- If you want to name your snapshot release, you can pass an argument to the snapshot comment, eg `!snapshot myname` will use `myname` instead of `snapshot`, eg: `@clerk/clerk-js@4.1.1-myname.90012`. Please note: When using a custom name, the underlying id stays the same and only the tag changes. This has the consequence that npm resolves versions alphabetically. You should pin your versions and not rely on resolving through `^` or `~`.
4040
- Snapshot version changes are _not_ committed to the repo and no git tags will be generated - they are meant to be used as "snapshots" of the repo at a particular state for testing purposes.
4141
- During a snapshot release, `@clerk/clerk-js` will also be released. If needed, use the `clerkJSVersion` prop to use a specific version, eg: `<ClerkProvider clerkJSVersion='4.1.1-snapshot.90012' />`

integration/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -565,7 +565,7 @@ Currently, `u` has:
565565
This handler runs in the context of a new browser, as the second browser is completely isolated. The nested `u` variable shadows the `u` variable of the parent scope to make this distinction apparent.
566566
567567
> [!TIP]
568-
> You can find more details in the [source code](./testUtils/index.ts) of `createTestUtils`. For example inside [`appPageObject`](./testUtils/appPageObject.ts) you can find out that `u.page` allows you to programatically go to the index page through `u.page.goToStart()`.
568+
> You can find more details in the [source code](./testUtils/index.ts) of `createTestUtils`. For example inside [`appPageObject`](./testUtils/appPageObject.ts) you can find out that `u.page` allows you to programmatically go to the index page through `u.page.goToStart()`.
569569
570570
## Concepts
571571

integration/certs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ During installation, `mkcert` automatically adds its root CA to your machine's t
2424
export NODE_EXTRA_CA_CERTS="$(mkcert -CAROOT)/rootCA.pem"
2525
```
2626

27-
or provide the `NODE_EXTRA_CA_CERTS` when runnning your tests:
27+
or provide the `NODE_EXTRA_CA_CERTS` when running your tests:
2828

2929
```shell
3030
NODE_EXTRA_CA_CERTS="$(mkcert -CAROOT)/rootCA.pem" playwright test...

packages/astro/CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@
273273

274274
### Patch Changes
275275

276-
- Add backwards compatibility for ignoring prerendered routes in Astro ([#4694](https://github.com/clerk/javascript/pull/4694)) by [@wobsoriano](https://github.com/wobsoriano)
276+
- Add backwards compatibility for ignoring pre-rendered routes in Astro ([#4694](https://github.com/clerk/javascript/pull/4694)) by [@wobsoriano](https://github.com/wobsoriano)
277277

278278
- Updated dependencies [[`8ee5d84995fa17532491ff96efac5738c9bcd9ef`](https://github.com/clerk/javascript/commit/8ee5d84995fa17532491ff96efac5738c9bcd9ef), [`09fedd1df155d30cc055ce701b133aa6470e9b47`](https://github.com/clerk/javascript/commit/09fedd1df155d30cc055ce701b133aa6470e9b47), [`b6aa589f75be62a89a3853d496176ed2f2c0e2c5`](https://github.com/clerk/javascript/commit/b6aa589f75be62a89a3853d496176ed2f2c0e2c5), [`235eaae4c3c9400492fca47d20a47c7081041565`](https://github.com/clerk/javascript/commit/235eaae4c3c9400492fca47d20a47c7081041565)]:
279279
- @clerk/types@4.36.0
@@ -856,7 +856,7 @@
856856
+ import { SignInButton } from "@clerk/astro/components"
857857
```
858858

859-
- Simplify submodules and drop the `bunlded` variant. by [@nikosdouvlis](https://github.com/nikosdouvlis)
859+
- Simplify submodules and drop the `bundled` variant. by [@nikosdouvlis](https://github.com/nikosdouvlis)
860860

861861
Moved
862862

@@ -875,7 +875,7 @@
875875

876876
- Add a reusable ID generation function by [@nikosdouvlis](https://github.com/nikosdouvlis)
877877

878-
- Remove `@nanostores/react` from depedency. by [@nikosdouvlis](https://github.com/nikosdouvlis)
878+
- Remove `@nanostores/react` from dependency. by [@nikosdouvlis](https://github.com/nikosdouvlis)
879879

880880
- Introduce `<AuthenticateWithRedirectCallback/>` as an Astro and as a React component by [@nikosdouvlis](https://github.com/nikosdouvlis)
881881

packages/backend/CHANGELOG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -933,7 +933,7 @@
933933
```ts
934934
import { clerkClient } from '@clerk/clerk-sdk-node';
935935

936-
// Use the default settings from the already instanciated clerkClient
936+
// Use the default settings from the already instantiated clerkClient
937937
clerkClient.verifyToken(token);
938938
// or provide overrides the options
939939
clerkClient.verifyToken(token, {
@@ -1563,7 +1563,7 @@
15631563
- 2e77cd737: Set correct information on required Node.js and React versions in README
15641564
- 63dfe8dc9: Resolve Vercel edge-runtime "TypeError: Failed to parse URL" when `@clerk/remix` is used
15651565
- e921af259: Replace enums with `as const` objects so `@clerk/backend` is consistent with the other packages
1566-
- c22cd5214: Fix type inferance for auth helper.
1566+
- c22cd5214: Fix type inference for auth helper.
15671567
- 7cb1241a9: Trigger the handshake when no dev browser token exists in development.
15681568
- bad4de1a2: Fixed an issue where errors returned from backend api requests are not converted to camelCase.
15691569
- 66b283653: Fix infinite redirect loops for production instances with incorrect secret keys'
@@ -2644,7 +2644,7 @@
26442644
26452645
- Update `authenticateRequest()` to respect the `CloudFront-Forwarded-Proto` header when determining the correct `forwardedProto` value. This fixes an issue when Clerk is used in applications that are deployed behind AWS CloudFront, where previously all requests were treated as cross-origin. ([#1817](https://github.com/clerk/javascript/pull/1817)) by [@dimkl](https://github.com/dimkl)
26462646
2647-
- Remove experimenta jsdoc tags from multi-domain types. ([#1819](https://github.com/clerk/javascript/pull/1819)) by [@panteliselef](https://github.com/panteliselef)
2647+
- Remove experimental jsdoc tags from multi-domain types. ([#1819](https://github.com/clerk/javascript/pull/1819)) by [@panteliselef](https://github.com/panteliselef)
26482648
26492649
- Updated dependencies [[`b59b6b75d`](https://github.com/clerk/javascript/commit/b59b6b75dc61bc4d7e61f7cca774f3731a2929b9), [`164f3aac7`](https://github.com/clerk/javascript/commit/164f3aac7928bc69301846130cc77986569d4e91), [`68259a2bb`](https://github.com/clerk/javascript/commit/68259a2bb8193befdde9101d4ec9bf305881d5e2), [`33e927c59`](https://github.com/clerk/javascript/commit/33e927c59fbf06436ff642ef9f846bd3b467e3e1), [`9514618d6`](https://github.com/clerk/javascript/commit/9514618d65cfdde0ff011eabd41a992b61fc8dc1), [`c7c6912f3`](https://github.com/clerk/javascript/commit/c7c6912f34874467bc74104690fe9f95491cc10d), [`71bb1c7b5`](https://github.com/clerk/javascript/commit/71bb1c7b570f7b0bbc377c8104c9abcc1af4cacf)]:
26502650
- @clerk/types@3.54.0
@@ -2870,7 +2870,7 @@
28702870
28712871
- Support `audience` parameter in authentication request ([#1004](https://github.com/clerk/javascript/pull/1004)) by [@dimkl](https://github.com/dimkl)
28722872
2873-
The audience parameter is used to verify the the aud claim in
2873+
The audience parameter is used to verify the aud claim in
28742874
the request matches the value of the parameter or is included
28752875
(when the user provides a list).
28762876

packages/chrome-extension/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1162,7 +1162,7 @@
11621162
- `WithClerkProp` type
11631163
- `MultisessionAppSupport` component (moved to /internal subpath)
11641164
- `EmailLinkErrorCode` enum
1165-
- Drop `StructureContext` and related errors to reduce to reduce code complexity since it seems that it was not being used.
1165+
- Drop `StructureContext` and related errors to reduce code complexity since it seems that it was not being used.
11661166
- Drop `withUser`, `WithUser`, `withClerk` HOFs and `WithClerk`, `withSession`, `WithSession` HOCs from the `@clerk/clerk-react`
11671167
to reduce the export surface since it's trivial to implement if needed.
11681168

@@ -1841,7 +1841,7 @@
18411841
- `WithClerkProp` type
18421842
- `MultisessionAppSupport` component (moved to /internal subpath)
18431843
- `EmailLinkErrorCode` enum
1844-
- Drop `StructureContext` and related errors to reduce to reduce code complexity since it seems that it was not being used.
1844+
- Drop `StructureContext` and related errors to reduce code complexity since it seems that it was not being used.
18451845
- Drop `withUser`, `WithUser`, `withClerk` HOFs and `WithClerk`, `withSession`, `WithSession` HOCs from the `@clerk/clerk-react`
18461846
to reduce the export surface since it's trivial to implement if needed.
18471847

packages/chrome-extension/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Please see the latest extension [authentication support matrix](https://clerk.co
6666
```
6767

6868
5. **Update the extension manifest:** You'll need to update your extension manifest permissions to support Clerk.
69-
1. [**Base configuration**:](/packages/chrome-extension/docs/manifest.md#base-configuration) Use this if you plan to only use Clerk in the context of the extention.
69+
1. [**Base configuration**:](/packages/chrome-extension/docs/manifest.md#base-configuration) Use this if you plan to only use Clerk in the context of the extension.
7070
2. [**Session sync configuration**:](/packages/chrome-extension/docs/manifest.md#sync-host-configuration) Use this if you plan to share authentication with a website in the same browser.
7171
6. **Add Clerk to your app:** Though not required, we generally suggest using Plasmo for browser extension development. This will enforce common standards across your extension as well as allow for easier integration with other browsers in the future.
7272

0 commit comments

Comments
 (0)