@supabase/lite 0.7.1 → 0.8.1-next.1
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 +179 -141
- package/dist/cli/lib.d.ts +57 -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-Bv2S5btu.d.ts} +40 -0
- package/dist/index.d.ts +342 -482
- 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 +318 -478
- package/dist/vite/index.js +2 -2
- package/package.json +5 -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;
|
|
@@ -196,6 +198,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
196
198
|
url?: string | undefined;
|
|
197
199
|
redirect_uri?: string | undefined;
|
|
198
200
|
skip_nonce_check?: boolean | undefined;
|
|
201
|
+
email_optional?: boolean | undefined;
|
|
199
202
|
} | undefined;
|
|
200
203
|
azure?: {
|
|
201
204
|
enabled?: boolean | undefined;
|
|
@@ -204,6 +207,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
204
207
|
url?: string | undefined;
|
|
205
208
|
redirect_uri?: string | undefined;
|
|
206
209
|
skip_nonce_check?: boolean | undefined;
|
|
210
|
+
email_optional?: boolean | undefined;
|
|
207
211
|
} | undefined;
|
|
208
212
|
bitbucket?: {
|
|
209
213
|
enabled?: boolean | undefined;
|
|
@@ -212,6 +216,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
212
216
|
url?: string | undefined;
|
|
213
217
|
redirect_uri?: string | undefined;
|
|
214
218
|
skip_nonce_check?: boolean | undefined;
|
|
219
|
+
email_optional?: boolean | undefined;
|
|
215
220
|
} | undefined;
|
|
216
221
|
discord?: {
|
|
217
222
|
enabled?: boolean | undefined;
|
|
@@ -220,6 +225,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
220
225
|
url?: string | undefined;
|
|
221
226
|
redirect_uri?: string | undefined;
|
|
222
227
|
skip_nonce_check?: boolean | undefined;
|
|
228
|
+
email_optional?: boolean | undefined;
|
|
223
229
|
} | undefined;
|
|
224
230
|
facebook?: {
|
|
225
231
|
enabled?: boolean | undefined;
|
|
@@ -228,6 +234,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
228
234
|
url?: string | undefined;
|
|
229
235
|
redirect_uri?: string | undefined;
|
|
230
236
|
skip_nonce_check?: boolean | undefined;
|
|
237
|
+
email_optional?: boolean | undefined;
|
|
231
238
|
} | undefined;
|
|
232
239
|
github?: {
|
|
233
240
|
enabled?: boolean | undefined;
|
|
@@ -236,6 +243,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
236
243
|
url?: string | undefined;
|
|
237
244
|
redirect_uri?: string | undefined;
|
|
238
245
|
skip_nonce_check?: boolean | undefined;
|
|
246
|
+
email_optional?: boolean | undefined;
|
|
239
247
|
} | undefined;
|
|
240
248
|
gitlab?: {
|
|
241
249
|
enabled?: boolean | undefined;
|
|
@@ -244,6 +252,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
244
252
|
url?: string | undefined;
|
|
245
253
|
redirect_uri?: string | undefined;
|
|
246
254
|
skip_nonce_check?: boolean | undefined;
|
|
255
|
+
email_optional?: boolean | undefined;
|
|
247
256
|
} | undefined;
|
|
248
257
|
google?: {
|
|
249
258
|
enabled?: boolean | undefined;
|
|
@@ -252,6 +261,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
252
261
|
url?: string | undefined;
|
|
253
262
|
redirect_uri?: string | undefined;
|
|
254
263
|
skip_nonce_check?: boolean | undefined;
|
|
264
|
+
email_optional?: boolean | undefined;
|
|
255
265
|
} | undefined;
|
|
256
266
|
kakao?: {
|
|
257
267
|
enabled?: boolean | undefined;
|
|
@@ -260,6 +270,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
260
270
|
url?: string | undefined;
|
|
261
271
|
redirect_uri?: string | undefined;
|
|
262
272
|
skip_nonce_check?: boolean | undefined;
|
|
273
|
+
email_optional?: boolean | undefined;
|
|
263
274
|
} | undefined;
|
|
264
275
|
keycloak?: {
|
|
265
276
|
enabled?: boolean | undefined;
|
|
@@ -268,6 +279,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
268
279
|
url?: string | undefined;
|
|
269
280
|
redirect_uri?: string | undefined;
|
|
270
281
|
skip_nonce_check?: boolean | undefined;
|
|
282
|
+
email_optional?: boolean | undefined;
|
|
271
283
|
} | undefined;
|
|
272
284
|
linkedin?: {
|
|
273
285
|
enabled?: boolean | undefined;
|
|
@@ -276,6 +288,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
276
288
|
url?: string | undefined;
|
|
277
289
|
redirect_uri?: string | undefined;
|
|
278
290
|
skip_nonce_check?: boolean | undefined;
|
|
291
|
+
email_optional?: boolean | undefined;
|
|
279
292
|
} | undefined;
|
|
280
293
|
notion?: {
|
|
281
294
|
enabled?: boolean | undefined;
|
|
@@ -284,6 +297,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
284
297
|
url?: string | undefined;
|
|
285
298
|
redirect_uri?: string | undefined;
|
|
286
299
|
skip_nonce_check?: boolean | undefined;
|
|
300
|
+
email_optional?: boolean | undefined;
|
|
287
301
|
} | undefined;
|
|
288
302
|
twitch?: {
|
|
289
303
|
enabled?: boolean | undefined;
|
|
@@ -292,6 +306,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
292
306
|
url?: string | undefined;
|
|
293
307
|
redirect_uri?: string | undefined;
|
|
294
308
|
skip_nonce_check?: boolean | undefined;
|
|
309
|
+
email_optional?: boolean | undefined;
|
|
295
310
|
} | undefined;
|
|
296
311
|
twitter?: {
|
|
297
312
|
enabled?: boolean | undefined;
|
|
@@ -300,6 +315,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
300
315
|
url?: string | undefined;
|
|
301
316
|
redirect_uri?: string | undefined;
|
|
302
317
|
skip_nonce_check?: boolean | undefined;
|
|
318
|
+
email_optional?: boolean | undefined;
|
|
303
319
|
} | undefined;
|
|
304
320
|
slack?: {
|
|
305
321
|
enabled?: boolean | undefined;
|
|
@@ -308,6 +324,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
308
324
|
url?: string | undefined;
|
|
309
325
|
redirect_uri?: string | undefined;
|
|
310
326
|
skip_nonce_check?: boolean | undefined;
|
|
327
|
+
email_optional?: boolean | undefined;
|
|
311
328
|
} | undefined;
|
|
312
329
|
spotify?: {
|
|
313
330
|
enabled?: boolean | undefined;
|
|
@@ -316,6 +333,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
316
333
|
url?: string | undefined;
|
|
317
334
|
redirect_uri?: string | undefined;
|
|
318
335
|
skip_nonce_check?: boolean | undefined;
|
|
336
|
+
email_optional?: boolean | undefined;
|
|
319
337
|
} | undefined;
|
|
320
338
|
workos?: {
|
|
321
339
|
enabled?: boolean | undefined;
|
|
@@ -324,6 +342,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
324
342
|
url?: string | undefined;
|
|
325
343
|
redirect_uri?: string | undefined;
|
|
326
344
|
skip_nonce_check?: boolean | undefined;
|
|
345
|
+
email_optional?: boolean | undefined;
|
|
327
346
|
} | undefined;
|
|
328
347
|
zoom?: {
|
|
329
348
|
enabled?: boolean | undefined;
|
|
@@ -332,12 +351,15 @@ declare const schema: s.ObjectSchema<{
|
|
|
332
351
|
url?: string | undefined;
|
|
333
352
|
redirect_uri?: string | undefined;
|
|
334
353
|
skip_nonce_check?: boolean | undefined;
|
|
354
|
+
email_optional?: boolean | undefined;
|
|
335
355
|
} | undefined;
|
|
336
356
|
} | undefined;
|
|
337
357
|
} | undefined, {
|
|
338
358
|
enabled?: boolean | undefined;
|
|
339
359
|
enable_signup?: boolean | undefined;
|
|
340
360
|
jwt_secret?: string | undefined;
|
|
361
|
+
publishable_key?: string | undefined;
|
|
362
|
+
secret_key?: string | undefined;
|
|
341
363
|
site_url?: string | undefined;
|
|
342
364
|
additional_redirect_urls?: string[] | undefined;
|
|
343
365
|
jwt_expiry?: number | undefined;
|
|
@@ -477,6 +499,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
477
499
|
url?: string | undefined;
|
|
478
500
|
redirect_uri?: string | undefined;
|
|
479
501
|
skip_nonce_check?: boolean | undefined;
|
|
502
|
+
email_optional?: boolean | undefined;
|
|
480
503
|
} | undefined;
|
|
481
504
|
azure?: {
|
|
482
505
|
enabled?: boolean | undefined;
|
|
@@ -485,6 +508,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
485
508
|
url?: string | undefined;
|
|
486
509
|
redirect_uri?: string | undefined;
|
|
487
510
|
skip_nonce_check?: boolean | undefined;
|
|
511
|
+
email_optional?: boolean | undefined;
|
|
488
512
|
} | undefined;
|
|
489
513
|
bitbucket?: {
|
|
490
514
|
enabled?: boolean | undefined;
|
|
@@ -493,6 +517,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
493
517
|
url?: string | undefined;
|
|
494
518
|
redirect_uri?: string | undefined;
|
|
495
519
|
skip_nonce_check?: boolean | undefined;
|
|
520
|
+
email_optional?: boolean | undefined;
|
|
496
521
|
} | undefined;
|
|
497
522
|
discord?: {
|
|
498
523
|
enabled?: boolean | undefined;
|
|
@@ -501,6 +526,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
501
526
|
url?: string | undefined;
|
|
502
527
|
redirect_uri?: string | undefined;
|
|
503
528
|
skip_nonce_check?: boolean | undefined;
|
|
529
|
+
email_optional?: boolean | undefined;
|
|
504
530
|
} | undefined;
|
|
505
531
|
facebook?: {
|
|
506
532
|
enabled?: boolean | undefined;
|
|
@@ -509,6 +535,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
509
535
|
url?: string | undefined;
|
|
510
536
|
redirect_uri?: string | undefined;
|
|
511
537
|
skip_nonce_check?: boolean | undefined;
|
|
538
|
+
email_optional?: boolean | undefined;
|
|
512
539
|
} | undefined;
|
|
513
540
|
github?: {
|
|
514
541
|
enabled?: boolean | undefined;
|
|
@@ -517,6 +544,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
517
544
|
url?: string | undefined;
|
|
518
545
|
redirect_uri?: string | undefined;
|
|
519
546
|
skip_nonce_check?: boolean | undefined;
|
|
547
|
+
email_optional?: boolean | undefined;
|
|
520
548
|
} | undefined;
|
|
521
549
|
gitlab?: {
|
|
522
550
|
enabled?: boolean | undefined;
|
|
@@ -525,6 +553,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
525
553
|
url?: string | undefined;
|
|
526
554
|
redirect_uri?: string | undefined;
|
|
527
555
|
skip_nonce_check?: boolean | undefined;
|
|
556
|
+
email_optional?: boolean | undefined;
|
|
528
557
|
} | undefined;
|
|
529
558
|
google?: {
|
|
530
559
|
enabled?: boolean | undefined;
|
|
@@ -533,6 +562,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
533
562
|
url?: string | undefined;
|
|
534
563
|
redirect_uri?: string | undefined;
|
|
535
564
|
skip_nonce_check?: boolean | undefined;
|
|
565
|
+
email_optional?: boolean | undefined;
|
|
536
566
|
} | undefined;
|
|
537
567
|
kakao?: {
|
|
538
568
|
enabled?: boolean | undefined;
|
|
@@ -541,6 +571,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
541
571
|
url?: string | undefined;
|
|
542
572
|
redirect_uri?: string | undefined;
|
|
543
573
|
skip_nonce_check?: boolean | undefined;
|
|
574
|
+
email_optional?: boolean | undefined;
|
|
544
575
|
} | undefined;
|
|
545
576
|
keycloak?: {
|
|
546
577
|
enabled?: boolean | undefined;
|
|
@@ -549,6 +580,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
549
580
|
url?: string | undefined;
|
|
550
581
|
redirect_uri?: string | undefined;
|
|
551
582
|
skip_nonce_check?: boolean | undefined;
|
|
583
|
+
email_optional?: boolean | undefined;
|
|
552
584
|
} | undefined;
|
|
553
585
|
linkedin?: {
|
|
554
586
|
enabled?: boolean | undefined;
|
|
@@ -557,6 +589,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
557
589
|
url?: string | undefined;
|
|
558
590
|
redirect_uri?: string | undefined;
|
|
559
591
|
skip_nonce_check?: boolean | undefined;
|
|
592
|
+
email_optional?: boolean | undefined;
|
|
560
593
|
} | undefined;
|
|
561
594
|
notion?: {
|
|
562
595
|
enabled?: boolean | undefined;
|
|
@@ -565,6 +598,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
565
598
|
url?: string | undefined;
|
|
566
599
|
redirect_uri?: string | undefined;
|
|
567
600
|
skip_nonce_check?: boolean | undefined;
|
|
601
|
+
email_optional?: boolean | undefined;
|
|
568
602
|
} | undefined;
|
|
569
603
|
twitch?: {
|
|
570
604
|
enabled?: boolean | undefined;
|
|
@@ -573,6 +607,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
573
607
|
url?: string | undefined;
|
|
574
608
|
redirect_uri?: string | undefined;
|
|
575
609
|
skip_nonce_check?: boolean | undefined;
|
|
610
|
+
email_optional?: boolean | undefined;
|
|
576
611
|
} | undefined;
|
|
577
612
|
twitter?: {
|
|
578
613
|
enabled?: boolean | undefined;
|
|
@@ -581,6 +616,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
581
616
|
url?: string | undefined;
|
|
582
617
|
redirect_uri?: string | undefined;
|
|
583
618
|
skip_nonce_check?: boolean | undefined;
|
|
619
|
+
email_optional?: boolean | undefined;
|
|
584
620
|
} | undefined;
|
|
585
621
|
slack?: {
|
|
586
622
|
enabled?: boolean | undefined;
|
|
@@ -589,6 +625,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
589
625
|
url?: string | undefined;
|
|
590
626
|
redirect_uri?: string | undefined;
|
|
591
627
|
skip_nonce_check?: boolean | undefined;
|
|
628
|
+
email_optional?: boolean | undefined;
|
|
592
629
|
} | undefined;
|
|
593
630
|
spotify?: {
|
|
594
631
|
enabled?: boolean | undefined;
|
|
@@ -597,6 +634,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
597
634
|
url?: string | undefined;
|
|
598
635
|
redirect_uri?: string | undefined;
|
|
599
636
|
skip_nonce_check?: boolean | undefined;
|
|
637
|
+
email_optional?: boolean | undefined;
|
|
600
638
|
} | undefined;
|
|
601
639
|
workos?: {
|
|
602
640
|
enabled?: boolean | undefined;
|
|
@@ -605,6 +643,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
605
643
|
url?: string | undefined;
|
|
606
644
|
redirect_uri?: string | undefined;
|
|
607
645
|
skip_nonce_check?: boolean | undefined;
|
|
646
|
+
email_optional?: boolean | undefined;
|
|
608
647
|
} | undefined;
|
|
609
648
|
zoom?: {
|
|
610
649
|
enabled?: boolean | undefined;
|
|
@@ -613,6 +652,7 @@ declare const schema: s.ObjectSchema<{
|
|
|
613
652
|
url?: string | undefined;
|
|
614
653
|
redirect_uri?: string | undefined;
|
|
615
654
|
skip_nonce_check?: boolean | undefined;
|
|
655
|
+
email_optional?: boolean | undefined;
|
|
616
656
|
} | undefined;
|
|
617
657
|
} | undefined;
|
|
618
658
|
} | undefined>;
|