@plyaz/types 1.12.2 → 1.12.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.
@@ -48,7 +48,7 @@ export interface AuthServiceProvider {
48
48
  * @param email The user's primary email address from the external provider.
49
49
  * @returns A Promise resolving to an object containing the internal UserContext and the provider-specific RLS JWT.
50
50
  */
51
- syncUserFromExternalToken(externalId: string, email: string): Promise<{
51
+ syncUserFromExternalToken(clerkJwt: string, externalId: string, email: string): Promise<{
52
52
  user: UserContext;
53
53
  supabaseRlsToken: string;
54
54
  }>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plyaz/types",
3
- "version": "1.12.2",
3
+ "version": "1.12.3",
4
4
  "author": "Redeemer Pace",
5
5
  "license": "ISC",
6
6
  "description": "Provides shared TypeScript types and schema utilities for validation and parsing in the @playz ecosystem.",