Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
"@types/react": "catalog:react",
"@types/react-dom": "catalog:react",
"@vitejs/plugin-react": "^4.5.2",
"@vitest/coverage-v8": "3.2.4",
"@vitest/coverage-v8": "4.1.5",
"chalk": "4.1.2",
"citty": "^0.1.6",
"conventional-changelog-conventionalcommits": "^4.6.3",
Expand Down Expand Up @@ -147,7 +147,7 @@
"typescript": "catalog:repo",
"typescript-eslint": "8.58.0",
"uuid": "8.3.2",
"vitest": "3.2.4",
"vitest": "4.1.5",
"zx": "catalog:repo"
},
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319",
Expand Down
2 changes: 1 addition & 1 deletion packages/backend/src/api/endpoints/JwtTemplatesApi.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { ClerkPaginationRequest } from '@clerk/shared/types';
import { joinPaths } from 'src/util/path';

import { joinPaths } from '../../util/path';
import type { DeletedObject, JwtTemplate } from '../resources';
import type { PaginatedResourceResponse } from '../resources/Deserializer';
import { AbstractAPI } from './AbstractApi';
Expand Down
2 changes: 1 addition & 1 deletion packages/backend/src/api/endpoints/WaitlistEntryApi.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { ClerkPaginationRequest } from '@clerk/shared/types';
import { joinPaths } from 'src/util/path';

import { joinPaths } from '../../util/path';
import type { DeletedObject } from '../resources/DeletedObject';
import type { PaginatedResourceResponse } from '../resources/Deserializer';
import type { WaitlistEntryStatus } from '../resources/Enums';
Expand Down
2 changes: 1 addition & 1 deletion packages/backend/src/webhooks.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { getEnvVariable } from '@clerk/shared/getEnvVariable';
import { errorThrower } from 'src/util/shared';
import { Webhook } from 'standardwebhooks';

import type { WebhookEvent } from './api/resources/Webhooks';
import { errorThrower } from './util/shared';

/**
* @inline
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,3 @@ exports[`constants > from environment variables 1`] = `
"SECRET_KEY": "TEST_SECRET_KEY",
}
`;

exports[`constants from environment variables 1`] = `
{
"API_URL": "CLERK_API_URL",
"API_VERSION": "CLERK_API_VERSION",
"JWT_KEY": "CLERK_JWT_KEY",
"PUBLISHABLE_KEY": "CLERK_PUBLISHABLE_KEY",
"SDK_METADATA": {
"environment": "test",
"name": "@clerk/fastify",
"version": "0.0.0-test",
},
"SECRET_KEY": "CLERK_SECRET_KEY",
}
`;
14 changes: 0 additions & 14 deletions packages/fastify/src/__tests__/__snapshots__/getAuth.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,3 @@ For more info, check out the docs: https://clerk.com/docs,
or come say hi in our discord server: https://clerk.com/discord
]
`;

exports[`getAuth(req) throws error if clerkPlugin is on registered 1`] = `
"🔒 Clerk: The "clerkPlugin" should be registered before using the "getAuth".
Example:

import { clerkPlugin } from '@clerk/fastify';

const server: FastifyInstance = Fastify({ logger: true });
server.register(clerkPlugin);

For more info, check out the docs: https://clerk.com/docs,
or come say hi in our discord server: https://clerk.com/discord
"
`;
517 changes: 196 additions & 321 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

Loading