@xouteiro/auth_npm 1.0.2 → 1.0.4

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.
Files changed (2) hide show
  1. package/index.d.ts +4 -0
  2. package/package.json +2 -1
package/index.d.ts ADDED
@@ -0,0 +1,4 @@
1
+ declare module '@xouteiro/auth_npm' {
2
+ export function initializeSupabase(url: string, anonKey: string): void;
3
+ // Add other exports from the package as needed
4
+ }
package/package.json CHANGED
@@ -1,8 +1,9 @@
1
1
  {
2
2
  "name": "@xouteiro/auth_npm",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "description": "Authentication package for Supabase",
5
5
  "main": "src/index.js",
6
+ "types": "src/index.d.ts",
6
7
  "scripts": {
7
8
  "build": "tsup"
8
9
  },