kyd-shared-badge 0.3.2 → 0.3.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kyd-shared-badge",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
4
4
  "private": false,
5
5
  "main": "./src/index.ts",
6
6
  "module": "./src/index.ts",
package/src/lib/routes.ts CHANGED
@@ -69,7 +69,7 @@ function tryParseEvidenceServer(text: string): any | null {
69
69
  return null;
70
70
  }
71
71
 
72
- export async function POST(req: NextRequest, userId: string, companyId?: string) {
72
+ export async function createSessionRoute(req: NextRequest, userId: string, companyId?: string) {
73
73
  try {
74
74
  // const user = await verifyCognito(req);
75
75
  const body = await req.json().catch(() => ({}));