@supabase/lite 0.8.1-next.1 → 0.8.1-next.2
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/LIMITATIONS.md +1 -1
- package/STATUS.md +1 -1
- package/dist/cli/index.js +117 -117
- package/dist/cli/lib.d.ts +3 -1
- package/dist/cli/lib.js +33 -33
- package/dist/{index-Bv2S5btu.d.ts → index-DKO3OQpz.d.ts} +2 -0
- package/dist/index.d.ts +63 -4
- package/dist/index.js +68 -68
- package/dist/vite/index.d.ts +8 -1
- package/package.json +3 -1
package/LIMITATIONS.md
CHANGED
|
@@ -30,7 +30,7 @@ Anchors below point to the corresponding STATUS.md section. If a limitation here
|
|
|
30
30
|
- Legacy JWT-as-apikey (`ANON_KEY`/`SERVICE_ROLE_KEY` HS256) → not supported. Use the opaque `sb_publishable_*`/`sb_secret_*` keys instead. See [API Keys](https://github.com/supabase-community/lite/blob/HEAD/STATUS.md#api-keys).
|
|
31
31
|
- API key enforcement is opt-in: with no `auth.publishable_key`/`auth.secret_key` configured, `/rest/v1` and `/auth/v1` accept any/no `apikey` (unchanged old behavior). See [API Keys](https://github.com/supabase-community/lite/blob/HEAD/STATUS.md#api-keys).
|
|
32
32
|
- A key passed only via `Authorization` (no `apikey` header/query param) → 401. Use `apikey` header or `?apikey=` query param. See [API Keys](https://github.com/supabase-community/lite/blob/HEAD/STATUS.md#api-keys).
|
|
33
|
-
- No local mailbox UI: `auth.email.smtp` /
|
|
33
|
+
- No local mailbox UI: `[auth.email.smtp] enabled = true` sends real mail via `SmtpEmailDriver` (Nodemailer; e.g. to Mailpit/Inbucket at `localhost:1025`), but there is no built-in mailbox web UI to browse those messages — use the SMTP server's own UI. `[inbucket]` config is still parsed but not acted on: no local Inbucket-compatible service is started. The default `ConsoleEmailDriver` prints emails (To/Subject/text) to the console instead. `SmtpEmailDriver` requires Node or Bun; it is not supported on Cloudflare Workers or in the browser. See [Auth email delivery & templates](https://github.com/supabase-community/lite/blob/HEAD/STATUS.md#auth-api-gotrue-compatible).
|
|
34
34
|
|
|
35
35
|
## Auth (planned, not yet shipped)
|
|
36
36
|
|
package/STATUS.md
CHANGED
|
@@ -519,7 +519,7 @@ Supporting infrastructure:
|
|
|
519
519
|
- Configurable email signup, confirmations, and secure/insecure email change. Note: `double_confirm_changes=true` is spec-compatible (finalizes from the current-email confirmation, delivered to the current address) but does not implement GoTrue's full two-mailbox confirmation. See [LIMITATIONS.md](https://github.com/supabase-community/lite/blob/HEAD/LIMITATIONS.md#auth-shipped-with-caveats).
|
|
520
520
|
- Mailer integration (confirmation, recovery, magic link, email change, reauthentication)
|
|
521
521
|
- Default Supabase-styled email templates with `site_url`-based verify links; per-type overrides via `auth.email.template.<type>.{subject,content_path}` (GoTrue `{{ .ConfirmationURL }}` etc. variables)
|
|
522
|
-
- Email drivers `Resend` / `AWS SES` / `Sendmail` (injected via `options.drivers.email`); default `ConsoleEmailDriver` is a console mail catcher — prints To/Subject + the text body (including OTP codes and verification links) to the console instead of delivering
|
|
522
|
+
- Email drivers `Resend` / `AWS SES` / `Sendmail` / `SMTP` (injected via `options.drivers.email`, or auto-selected for SMTP when `[auth.email.smtp] enabled = true`); `SMTP` sends via Nodemailer and requires Node or Bun (not Workers/browser); default `ConsoleEmailDriver` is a console mail catcher — prints To/Subject + the text body (including OTP codes and verification links) to the console instead of delivering
|
|
523
523
|
|
|
524
524
|
### API Keys
|
|
525
525
|
|