@supabase/lite 0.8.0 → 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 +17 -4
- package/PATTERNS.md +22 -1
- package/README.md +50 -6
- package/STATUS.md +49 -23
- package/dist/{Connection-D9UUTsjg.d.ts → Connection-ZWTDByQ5.d.ts} +27 -0
- package/dist/cli/index.js +177 -139
- package/dist/cli/lib.d.ts +59 -6
- package/dist/cli/lib.js +48 -45
- package/dist/db/bun/index.d.ts +1 -0
- package/dist/db/bun/index.js +2 -2
- package/dist/db/fallback.d.ts +1 -1
- package/dist/db/node/index.d.ts +1 -0
- package/dist/db/node/index.js +2 -2
- package/dist/db/postgres/pglite/PgliteConnection.js +22 -22
- package/dist/db/workerd/index.d.ts +2 -0
- package/dist/db/workerd/index.js +2 -2
- package/dist/{index-xv_pDjEt.d.ts → index-DKO3OQpz.d.ts} +42 -0
- package/dist/index.d.ts +403 -484
- package/dist/index.js +99 -67
- package/dist/static/.vite/manifest.json +2 -2
- package/dist/static/assets/{main-DO_xnvTw.js → main-1bwWb_1q.js} +100 -17
- package/dist/static/assets/{main-BITGMylP.css → main-BDsRycsc.css} +39 -0
- package/dist/vite/index.d.ts +326 -479
- package/dist/vite/index.js +2 -2
- package/package.json +7 -5
- package/skills/supalite/SKILL.md +1 -1
|
@@ -57,6 +57,8 @@ declare const schema: s.ObjectSchema<{
|
|
|
57
57
|
enabled?: boolean | undefined;
|
|
58
58
|
enable_signup?: boolean | undefined;
|
|
59
59
|
jwt_secret?: string | undefined;
|
|
60
|
+
publishable_key?: string | undefined;
|
|
61
|
+
secret_key?: string | undefined;
|
|
60
62
|
site_url?: string | undefined;
|
|
61
63
|
additional_redirect_urls?: string[] | undefined;
|
|
62
64
|
jwt_expiry?: number | undefined;
|
|
@@ -143,6 +145,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
143
145
|
otp_length?: number | undefined;
|
|
144
146
|
otp_expiry?: number | undefined;
|
|
145
147
|
smtp?: {
|
|
148
|
+
enabled?: boolean | undefined;
|
|
146
149
|
port?: number | undefined;
|
|
147
150
|
host?: string | undefined;
|
|
148
151
|
user?: string | undefined;
|
|
@@ -196,6 +199,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
196
199
|
url?: string | undefined;
|
|
197
200
|
redirect_uri?: string | undefined;
|
|
198
201
|
skip_nonce_check?: boolean | undefined;
|
|
202
|
+
email_optional?: boolean | undefined;
|
|
199
203
|
} | undefined;
|
|
200
204
|
azure?: {
|
|
201
205
|
enabled?: boolean | undefined;
|
|
@@ -204,6 +208,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
204
208
|
url?: string | undefined;
|
|
205
209
|
redirect_uri?: string | undefined;
|
|
206
210
|
skip_nonce_check?: boolean | undefined;
|
|
211
|
+
email_optional?: boolean | undefined;
|
|
207
212
|
} | undefined;
|
|
208
213
|
bitbucket?: {
|
|
209
214
|
enabled?: boolean | undefined;
|
|
@@ -212,6 +217,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
212
217
|
url?: string | undefined;
|
|
213
218
|
redirect_uri?: string | undefined;
|
|
214
219
|
skip_nonce_check?: boolean | undefined;
|
|
220
|
+
email_optional?: boolean | undefined;
|
|
215
221
|
} | undefined;
|
|
216
222
|
discord?: {
|
|
217
223
|
enabled?: boolean | undefined;
|
|
@@ -220,6 +226,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
220
226
|
url?: string | undefined;
|
|
221
227
|
redirect_uri?: string | undefined;
|
|
222
228
|
skip_nonce_check?: boolean | undefined;
|
|
229
|
+
email_optional?: boolean | undefined;
|
|
223
230
|
} | undefined;
|
|
224
231
|
facebook?: {
|
|
225
232
|
enabled?: boolean | undefined;
|
|
@@ -228,6 +235,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
228
235
|
url?: string | undefined;
|
|
229
236
|
redirect_uri?: string | undefined;
|
|
230
237
|
skip_nonce_check?: boolean | undefined;
|
|
238
|
+
email_optional?: boolean | undefined;
|
|
231
239
|
} | undefined;
|
|
232
240
|
github?: {
|
|
233
241
|
enabled?: boolean | undefined;
|
|
@@ -236,6 +244,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
236
244
|
url?: string | undefined;
|
|
237
245
|
redirect_uri?: string | undefined;
|
|
238
246
|
skip_nonce_check?: boolean | undefined;
|
|
247
|
+
email_optional?: boolean | undefined;
|
|
239
248
|
} | undefined;
|
|
240
249
|
gitlab?: {
|
|
241
250
|
enabled?: boolean | undefined;
|
|
@@ -244,6 +253,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
244
253
|
url?: string | undefined;
|
|
245
254
|
redirect_uri?: string | undefined;
|
|
246
255
|
skip_nonce_check?: boolean | undefined;
|
|
256
|
+
email_optional?: boolean | undefined;
|
|
247
257
|
} | undefined;
|
|
248
258
|
google?: {
|
|
249
259
|
enabled?: boolean | undefined;
|
|
@@ -252,6 +262,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
252
262
|
url?: string | undefined;
|
|
253
263
|
redirect_uri?: string | undefined;
|
|
254
264
|
skip_nonce_check?: boolean | undefined;
|
|
265
|
+
email_optional?: boolean | undefined;
|
|
255
266
|
} | undefined;
|
|
256
267
|
kakao?: {
|
|
257
268
|
enabled?: boolean | undefined;
|
|
@@ -260,6 +271,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
260
271
|
url?: string | undefined;
|
|
261
272
|
redirect_uri?: string | undefined;
|
|
262
273
|
skip_nonce_check?: boolean | undefined;
|
|
274
|
+
email_optional?: boolean | undefined;
|
|
263
275
|
} | undefined;
|
|
264
276
|
keycloak?: {
|
|
265
277
|
enabled?: boolean | undefined;
|
|
@@ -268,6 +280,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
268
280
|
url?: string | undefined;
|
|
269
281
|
redirect_uri?: string | undefined;
|
|
270
282
|
skip_nonce_check?: boolean | undefined;
|
|
283
|
+
email_optional?: boolean | undefined;
|
|
271
284
|
} | undefined;
|
|
272
285
|
linkedin?: {
|
|
273
286
|
enabled?: boolean | undefined;
|
|
@@ -276,6 +289,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
276
289
|
url?: string | undefined;
|
|
277
290
|
redirect_uri?: string | undefined;
|
|
278
291
|
skip_nonce_check?: boolean | undefined;
|
|
292
|
+
email_optional?: boolean | undefined;
|
|
279
293
|
} | undefined;
|
|
280
294
|
notion?: {
|
|
281
295
|
enabled?: boolean | undefined;
|
|
@@ -284,6 +298,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
284
298
|
url?: string | undefined;
|
|
285
299
|
redirect_uri?: string | undefined;
|
|
286
300
|
skip_nonce_check?: boolean | undefined;
|
|
301
|
+
email_optional?: boolean | undefined;
|
|
287
302
|
} | undefined;
|
|
288
303
|
twitch?: {
|
|
289
304
|
enabled?: boolean | undefined;
|
|
@@ -292,6 +307,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
292
307
|
url?: string | undefined;
|
|
293
308
|
redirect_uri?: string | undefined;
|
|
294
309
|
skip_nonce_check?: boolean | undefined;
|
|
310
|
+
email_optional?: boolean | undefined;
|
|
295
311
|
} | undefined;
|
|
296
312
|
twitter?: {
|
|
297
313
|
enabled?: boolean | undefined;
|
|
@@ -300,6 +316,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
300
316
|
url?: string | undefined;
|
|
301
317
|
redirect_uri?: string | undefined;
|
|
302
318
|
skip_nonce_check?: boolean | undefined;
|
|
319
|
+
email_optional?: boolean | undefined;
|
|
303
320
|
} | undefined;
|
|
304
321
|
slack?: {
|
|
305
322
|
enabled?: boolean | undefined;
|
|
@@ -308,6 +325,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
308
325
|
url?: string | undefined;
|
|
309
326
|
redirect_uri?: string | undefined;
|
|
310
327
|
skip_nonce_check?: boolean | undefined;
|
|
328
|
+
email_optional?: boolean | undefined;
|
|
311
329
|
} | undefined;
|
|
312
330
|
spotify?: {
|
|
313
331
|
enabled?: boolean | undefined;
|
|
@@ -316,6 +334,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
316
334
|
url?: string | undefined;
|
|
317
335
|
redirect_uri?: string | undefined;
|
|
318
336
|
skip_nonce_check?: boolean | undefined;
|
|
337
|
+
email_optional?: boolean | undefined;
|
|
319
338
|
} | undefined;
|
|
320
339
|
workos?: {
|
|
321
340
|
enabled?: boolean | undefined;
|
|
@@ -324,6 +343,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
324
343
|
url?: string | undefined;
|
|
325
344
|
redirect_uri?: string | undefined;
|
|
326
345
|
skip_nonce_check?: boolean | undefined;
|
|
346
|
+
email_optional?: boolean | undefined;
|
|
327
347
|
} | undefined;
|
|
328
348
|
zoom?: {
|
|
329
349
|
enabled?: boolean | undefined;
|
|
@@ -332,12 +352,15 @@ declare const schema: s.ObjectSchema<{
|
|
|
332
352
|
url?: string | undefined;
|
|
333
353
|
redirect_uri?: string | undefined;
|
|
334
354
|
skip_nonce_check?: boolean | undefined;
|
|
355
|
+
email_optional?: boolean | undefined;
|
|
335
356
|
} | undefined;
|
|
336
357
|
} | undefined;
|
|
337
358
|
} | undefined, {
|
|
338
359
|
enabled?: boolean | undefined;
|
|
339
360
|
enable_signup?: boolean | undefined;
|
|
340
361
|
jwt_secret?: string | undefined;
|
|
362
|
+
publishable_key?: string | undefined;
|
|
363
|
+
secret_key?: string | undefined;
|
|
341
364
|
site_url?: string | undefined;
|
|
342
365
|
additional_redirect_urls?: string[] | undefined;
|
|
343
366
|
jwt_expiry?: number | undefined;
|
|
@@ -424,6 +447,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
424
447
|
otp_length?: number | undefined;
|
|
425
448
|
otp_expiry?: number | undefined;
|
|
426
449
|
smtp?: {
|
|
450
|
+
enabled?: boolean | undefined;
|
|
427
451
|
port?: number | undefined;
|
|
428
452
|
host?: string | undefined;
|
|
429
453
|
user?: string | undefined;
|
|
@@ -477,6 +501,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
477
501
|
url?: string | undefined;
|
|
478
502
|
redirect_uri?: string | undefined;
|
|
479
503
|
skip_nonce_check?: boolean | undefined;
|
|
504
|
+
email_optional?: boolean | undefined;
|
|
480
505
|
} | undefined;
|
|
481
506
|
azure?: {
|
|
482
507
|
enabled?: boolean | undefined;
|
|
@@ -485,6 +510,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
485
510
|
url?: string | undefined;
|
|
486
511
|
redirect_uri?: string | undefined;
|
|
487
512
|
skip_nonce_check?: boolean | undefined;
|
|
513
|
+
email_optional?: boolean | undefined;
|
|
488
514
|
} | undefined;
|
|
489
515
|
bitbucket?: {
|
|
490
516
|
enabled?: boolean | undefined;
|
|
@@ -493,6 +519,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
493
519
|
url?: string | undefined;
|
|
494
520
|
redirect_uri?: string | undefined;
|
|
495
521
|
skip_nonce_check?: boolean | undefined;
|
|
522
|
+
email_optional?: boolean | undefined;
|
|
496
523
|
} | undefined;
|
|
497
524
|
discord?: {
|
|
498
525
|
enabled?: boolean | undefined;
|
|
@@ -501,6 +528,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
501
528
|
url?: string | undefined;
|
|
502
529
|
redirect_uri?: string | undefined;
|
|
503
530
|
skip_nonce_check?: boolean | undefined;
|
|
531
|
+
email_optional?: boolean | undefined;
|
|
504
532
|
} | undefined;
|
|
505
533
|
facebook?: {
|
|
506
534
|
enabled?: boolean | undefined;
|
|
@@ -509,6 +537,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
509
537
|
url?: string | undefined;
|
|
510
538
|
redirect_uri?: string | undefined;
|
|
511
539
|
skip_nonce_check?: boolean | undefined;
|
|
540
|
+
email_optional?: boolean | undefined;
|
|
512
541
|
} | undefined;
|
|
513
542
|
github?: {
|
|
514
543
|
enabled?: boolean | undefined;
|
|
@@ -517,6 +546,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
517
546
|
url?: string | undefined;
|
|
518
547
|
redirect_uri?: string | undefined;
|
|
519
548
|
skip_nonce_check?: boolean | undefined;
|
|
549
|
+
email_optional?: boolean | undefined;
|
|
520
550
|
} | undefined;
|
|
521
551
|
gitlab?: {
|
|
522
552
|
enabled?: boolean | undefined;
|
|
@@ -525,6 +555,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
525
555
|
url?: string | undefined;
|
|
526
556
|
redirect_uri?: string | undefined;
|
|
527
557
|
skip_nonce_check?: boolean | undefined;
|
|
558
|
+
email_optional?: boolean | undefined;
|
|
528
559
|
} | undefined;
|
|
529
560
|
google?: {
|
|
530
561
|
enabled?: boolean | undefined;
|
|
@@ -533,6 +564,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
533
564
|
url?: string | undefined;
|
|
534
565
|
redirect_uri?: string | undefined;
|
|
535
566
|
skip_nonce_check?: boolean | undefined;
|
|
567
|
+
email_optional?: boolean | undefined;
|
|
536
568
|
} | undefined;
|
|
537
569
|
kakao?: {
|
|
538
570
|
enabled?: boolean | undefined;
|
|
@@ -541,6 +573,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
541
573
|
url?: string | undefined;
|
|
542
574
|
redirect_uri?: string | undefined;
|
|
543
575
|
skip_nonce_check?: boolean | undefined;
|
|
576
|
+
email_optional?: boolean | undefined;
|
|
544
577
|
} | undefined;
|
|
545
578
|
keycloak?: {
|
|
546
579
|
enabled?: boolean | undefined;
|
|
@@ -549,6 +582,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
549
582
|
url?: string | undefined;
|
|
550
583
|
redirect_uri?: string | undefined;
|
|
551
584
|
skip_nonce_check?: boolean | undefined;
|
|
585
|
+
email_optional?: boolean | undefined;
|
|
552
586
|
} | undefined;
|
|
553
587
|
linkedin?: {
|
|
554
588
|
enabled?: boolean | undefined;
|
|
@@ -557,6 +591,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
557
591
|
url?: string | undefined;
|
|
558
592
|
redirect_uri?: string | undefined;
|
|
559
593
|
skip_nonce_check?: boolean | undefined;
|
|
594
|
+
email_optional?: boolean | undefined;
|
|
560
595
|
} | undefined;
|
|
561
596
|
notion?: {
|
|
562
597
|
enabled?: boolean | undefined;
|
|
@@ -565,6 +600,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
565
600
|
url?: string | undefined;
|
|
566
601
|
redirect_uri?: string | undefined;
|
|
567
602
|
skip_nonce_check?: boolean | undefined;
|
|
603
|
+
email_optional?: boolean | undefined;
|
|
568
604
|
} | undefined;
|
|
569
605
|
twitch?: {
|
|
570
606
|
enabled?: boolean | undefined;
|
|
@@ -573,6 +609,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
573
609
|
url?: string | undefined;
|
|
574
610
|
redirect_uri?: string | undefined;
|
|
575
611
|
skip_nonce_check?: boolean | undefined;
|
|
612
|
+
email_optional?: boolean | undefined;
|
|
576
613
|
} | undefined;
|
|
577
614
|
twitter?: {
|
|
578
615
|
enabled?: boolean | undefined;
|
|
@@ -581,6 +618,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
581
618
|
url?: string | undefined;
|
|
582
619
|
redirect_uri?: string | undefined;
|
|
583
620
|
skip_nonce_check?: boolean | undefined;
|
|
621
|
+
email_optional?: boolean | undefined;
|
|
584
622
|
} | undefined;
|
|
585
623
|
slack?: {
|
|
586
624
|
enabled?: boolean | undefined;
|
|
@@ -589,6 +627,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
589
627
|
url?: string | undefined;
|
|
590
628
|
redirect_uri?: string | undefined;
|
|
591
629
|
skip_nonce_check?: boolean | undefined;
|
|
630
|
+
email_optional?: boolean | undefined;
|
|
592
631
|
} | undefined;
|
|
593
632
|
spotify?: {
|
|
594
633
|
enabled?: boolean | undefined;
|
|
@@ -597,6 +636,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
597
636
|
url?: string | undefined;
|
|
598
637
|
redirect_uri?: string | undefined;
|
|
599
638
|
skip_nonce_check?: boolean | undefined;
|
|
639
|
+
email_optional?: boolean | undefined;
|
|
600
640
|
} | undefined;
|
|
601
641
|
workos?: {
|
|
602
642
|
enabled?: boolean | undefined;
|
|
@@ -605,6 +645,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
605
645
|
url?: string | undefined;
|
|
606
646
|
redirect_uri?: string | undefined;
|
|
607
647
|
skip_nonce_check?: boolean | undefined;
|
|
648
|
+
email_optional?: boolean | undefined;
|
|
608
649
|
} | undefined;
|
|
609
650
|
zoom?: {
|
|
610
651
|
enabled?: boolean | undefined;
|
|
@@ -613,6 +654,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
613
654
|
url?: string | undefined;
|
|
614
655
|
redirect_uri?: string | undefined;
|
|
615
656
|
skip_nonce_check?: boolean | undefined;
|
|
657
|
+
email_optional?: boolean | undefined;
|
|
616
658
|
} | undefined;
|
|
617
659
|
} | undefined;
|
|
618
660
|
} | undefined>;
|