@c15t/backend 2.0.0-rc.1 → 2.0.0-rc.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.
- package/.turbo/turbo-build.log +11 -11
- package/CHANGELOG.md +16 -0
- package/dist/core.cjs +22 -24
- package/dist/core.d.ts.map +1 -1
- package/dist/core.js +22 -24
- package/dist/db/registry/index.d.ts +0 -1
- package/dist/db/registry/index.d.ts.map +1 -1
- package/dist/db/registry/subject.d.ts +0 -1
- package/dist/db/registry/subject.d.ts.map +1 -1
- package/dist/db/schema/1.0.0/index.d.ts +0 -31
- package/dist/db/schema/1.0.0/index.d.ts.map +1 -1
- package/dist/db/schema/1.0.0/subject.d.ts +0 -1
- package/dist/db/schema/1.0.0/subject.d.ts.map +1 -1
- package/dist/db/schema/2.0.0/consent.d.ts +2 -0
- package/dist/db/schema/2.0.0/consent.d.ts.map +1 -1
- package/dist/db/schema/2.0.0/index.d.ts +16 -11
- package/dist/db/schema/2.0.0/index.d.ts.map +1 -1
- package/dist/db/schema/2.0.0/subject.d.ts +0 -1
- package/dist/db/schema/2.0.0/subject.d.ts.map +1 -1
- package/dist/db/schema/index.d.ts +32 -53
- package/dist/db/schema/index.d.ts.map +1 -1
- package/dist/db/schema.cjs +1 -2
- package/dist/db/schema.js +1 -2
- package/dist/handlers/subject/get.handler.d.ts +0 -1
- package/dist/handlers/subject/get.handler.d.ts.map +1 -1
- package/dist/handlers/subject/list.handler.d.ts +0 -1
- package/dist/handlers/subject/list.handler.d.ts.map +1 -1
- package/dist/handlers/subject/patch.handler.d.ts +0 -1
- package/dist/handlers/subject/patch.handler.d.ts.map +1 -1
- package/dist/handlers/subject/post.handler.d.ts.map +1 -1
- package/dist/router.cjs +17 -16
- package/dist/router.js +17 -16
- package/dist/routes/init.d.ts.map +1 -1
- package/dist/types/index.d.ts +13 -5
- package/dist/types/index.d.ts.map +1 -1
- package/dist/version.d.ts +1 -1
- package/package.json +2 -2
- package/src/core.ts +1 -0
- package/src/db/registry/subject.test.ts +1 -18
- package/src/db/registry/subject.ts +0 -3
- package/src/db/schema/1.0.0/subject.ts +0 -1
- package/src/db/schema/2.0.0/consent.ts +2 -0
- package/src/db/schema/2.0.0/subject.ts +0 -1
- package/src/db/tenant-scope.test.ts +10 -13
- package/src/handlers/subject/get.handler.ts +0 -1
- package/src/handlers/subject/list.handler.ts +0 -1
- package/src/handlers/subject/patch.handler.ts +0 -3
- package/src/handlers/subject/post.handler.ts +14 -0
- package/src/routes/init.ts +8 -5
- package/src/types/index.ts +14 -5
- package/src/version.ts +1 -1
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
export declare const v1: import("fumadb/schema").Schema<"1.0.0", {
|
|
2
2
|
subject: import("fumadb/schema").Table<{
|
|
3
3
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
4
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
5
4
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
6
5
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
7
6
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -26,7 +25,6 @@ export declare const v1: import("fumadb/schema").Schema<"1.0.0", {
|
|
|
26
25
|
}, Omit<{}, "domain" | "subject" | "consentRecords" | "policy"> & {
|
|
27
26
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
28
27
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
29
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
30
28
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
31
29
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
32
30
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -98,7 +96,6 @@ export declare const v1: import("fumadb/schema").Schema<"1.0.0", {
|
|
|
98
96
|
}, Omit<{}, "consent" | "subject"> & {
|
|
99
97
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
100
98
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
101
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
102
99
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
103
100
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
104
101
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -133,7 +130,6 @@ export declare const v1: import("fumadb/schema").Schema<"1.0.0", {
|
|
|
133
130
|
}, Omit<{}, "consent" | "subject"> & {
|
|
134
131
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
135
132
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
136
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
137
133
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
138
134
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
139
135
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -158,7 +154,6 @@ export declare const v1: import("fumadb/schema").Schema<"1.0.0", {
|
|
|
158
154
|
}, Omit<{}, "domain" | "subject" | "consentRecords" | "policy"> & {
|
|
159
155
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
160
156
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
161
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
162
157
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
163
158
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
164
159
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -245,7 +240,6 @@ export declare const v1: import("fumadb/schema").Schema<"1.0.0", {
|
|
|
245
240
|
}, Omit<{}, "subject"> & {
|
|
246
241
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
247
242
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
248
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
249
243
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
250
244
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
251
245
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -282,7 +276,6 @@ export declare const v1: import("fumadb/schema").Schema<"1.0.0", {
|
|
|
282
276
|
}, Omit<{}, "domain" | "subject" | "consentRecords" | "policy"> & {
|
|
283
277
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
284
278
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
285
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
286
279
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
287
280
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
288
281
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -315,7 +308,6 @@ export declare const v1: import("fumadb/schema").Schema<"1.0.0", {
|
|
|
315
308
|
}, Omit<{}, "consent" | "subject"> & {
|
|
316
309
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
317
310
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
318
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
319
311
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
320
312
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
321
313
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -354,7 +346,6 @@ export declare const v1: import("fumadb/schema").Schema<"1.0.0", {
|
|
|
354
346
|
}, Omit<{}, "subject"> & {
|
|
355
347
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
356
348
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
357
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
358
349
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
359
350
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
360
351
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -412,7 +403,6 @@ export declare const v1: import("fumadb/schema").Schema<"1.0.0", {
|
|
|
412
403
|
}, Omit<{}, "consent" | "subject"> & {
|
|
413
404
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
414
405
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
415
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
416
406
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
417
407
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
418
408
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -458,7 +448,6 @@ export declare const v1: import("fumadb/schema").Schema<"1.0.0", {
|
|
|
458
448
|
}, Omit<{}, "subject"> & {
|
|
459
449
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
460
450
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
461
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
462
451
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
463
452
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
464
453
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -515,7 +504,6 @@ export declare const v1: import("fumadb/schema").Schema<"1.0.0", {
|
|
|
515
504
|
}, Omit<{}, "domain" | "subject" | "consentRecords" | "policy"> & {
|
|
516
505
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
517
506
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
518
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
519
507
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
520
508
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
521
509
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -548,7 +536,6 @@ export declare const v1: import("fumadb/schema").Schema<"1.0.0", {
|
|
|
548
536
|
}, Omit<{}, "consent" | "subject"> & {
|
|
549
537
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
550
538
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
551
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
552
539
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
553
540
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
554
541
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -587,7 +574,6 @@ export declare const v1: import("fumadb/schema").Schema<"1.0.0", {
|
|
|
587
574
|
}, Omit<{}, "subject"> & {
|
|
588
575
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
589
576
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
590
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
591
577
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
592
578
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
593
579
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -645,7 +631,6 @@ export declare const v1: import("fumadb/schema").Schema<"1.0.0", {
|
|
|
645
631
|
}, Omit<{}, "consent" | "subject"> & {
|
|
646
632
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
647
633
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
648
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
649
634
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
650
635
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
651
636
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -691,7 +676,6 @@ export declare const v1: import("fumadb/schema").Schema<"1.0.0", {
|
|
|
691
676
|
}, Omit<{}, "subject"> & {
|
|
692
677
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
693
678
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
694
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
695
679
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
696
680
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
697
681
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -748,7 +732,6 @@ export declare const v1: import("fumadb/schema").Schema<"1.0.0", {
|
|
|
748
732
|
}, Omit<{}, "domain" | "subject" | "consentRecords" | "policy"> & {
|
|
749
733
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
750
734
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
751
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
752
735
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
753
736
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
754
737
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -781,7 +764,6 @@ export declare const v1: import("fumadb/schema").Schema<"1.0.0", {
|
|
|
781
764
|
}, Omit<{}, "consent" | "subject"> & {
|
|
782
765
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
783
766
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
784
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
785
767
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
786
768
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
787
769
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -820,7 +802,6 @@ export declare const v1: import("fumadb/schema").Schema<"1.0.0", {
|
|
|
820
802
|
}, Omit<{}, "subject"> & {
|
|
821
803
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
822
804
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
823
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
824
805
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
825
806
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
826
807
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -894,7 +875,6 @@ export declare const v1: import("fumadb/schema").Schema<"1.0.0", {
|
|
|
894
875
|
}, Omit<{}, "consent" | "subject"> & {
|
|
895
876
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
896
877
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
897
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
898
878
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
899
879
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
900
880
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -940,7 +920,6 @@ export declare const v1: import("fumadb/schema").Schema<"1.0.0", {
|
|
|
940
920
|
}, Omit<{}, "subject"> & {
|
|
941
921
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
942
922
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
943
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
944
923
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
945
924
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
946
925
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -982,7 +961,6 @@ export declare const v1: import("fumadb/schema").Schema<"1.0.0", {
|
|
|
982
961
|
}, Omit<{}, "subject"> & {
|
|
983
962
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
984
963
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
985
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
986
964
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
987
965
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
988
966
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -1007,7 +985,6 @@ export declare const v1: import("fumadb/schema").Schema<"1.0.0", {
|
|
|
1007
985
|
}, Omit<{}, "domain" | "subject" | "consentRecords" | "policy"> & {
|
|
1008
986
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
1009
987
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
1010
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
1011
988
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1012
989
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1013
990
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -1079,7 +1056,6 @@ export declare const v1: import("fumadb/schema").Schema<"1.0.0", {
|
|
|
1079
1056
|
}, Omit<{}, "consent" | "subject"> & {
|
|
1080
1057
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
1081
1058
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
1082
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
1083
1059
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1084
1060
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1085
1061
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -1114,7 +1090,6 @@ export declare const v1: import("fumadb/schema").Schema<"1.0.0", {
|
|
|
1114
1090
|
}, Omit<{}, "consent" | "subject"> & {
|
|
1115
1091
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
1116
1092
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
1117
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
1118
1093
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1119
1094
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1120
1095
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -1139,7 +1114,6 @@ export declare const v1: import("fumadb/schema").Schema<"1.0.0", {
|
|
|
1139
1114
|
}, Omit<{}, "domain" | "subject" | "consentRecords" | "policy"> & {
|
|
1140
1115
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
1141
1116
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
1142
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
1143
1117
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1144
1118
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1145
1119
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -1236,7 +1210,6 @@ export declare const v1: import("fumadb/schema").Schema<"1.0.0", {
|
|
|
1236
1210
|
}, Omit<{}, "consent" | "subject"> & {
|
|
1237
1211
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
1238
1212
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
1239
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
1240
1213
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1241
1214
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1242
1215
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -1261,7 +1234,6 @@ export declare const v1: import("fumadb/schema").Schema<"1.0.0", {
|
|
|
1261
1234
|
}, Omit<{}, "domain" | "subject" | "consentRecords" | "policy"> & {
|
|
1262
1235
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
1263
1236
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
1264
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
1265
1237
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1266
1238
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1267
1239
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -1355,7 +1327,6 @@ export declare const v1: import("fumadb/schema").Schema<"1.0.0", {
|
|
|
1355
1327
|
}, Omit<{}, "subject"> & {
|
|
1356
1328
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
1357
1329
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
1358
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
1359
1330
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1360
1331
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1361
1332
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -1382,7 +1353,6 @@ export declare const v1: import("fumadb/schema").Schema<"1.0.0", {
|
|
|
1382
1353
|
}, Omit<{}, "domain" | "subject" | "consentRecords" | "policy"> & {
|
|
1383
1354
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
1384
1355
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
1385
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
1386
1356
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1387
1357
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1388
1358
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -1428,7 +1398,6 @@ export declare const v1: import("fumadb/schema").Schema<"1.0.0", {
|
|
|
1428
1398
|
}, Omit<{}, "subject"> & {
|
|
1429
1399
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
1430
1400
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
1431
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
1432
1401
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1433
1402
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1434
1403
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/db/schema/1.0.0/index.ts"],"names":[],"mappings":"AASA,eAAO,MAAM,EAAE
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/db/schema/1.0.0/index.ts"],"names":[],"mappings":"AASA,eAAO,MAAM,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAsCb,CAAC"}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
export declare const subjectTable: import("fumadb/schema").Table<{
|
|
2
2
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
3
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
4
3
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
5
4
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
6
5
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"subject.d.ts","sourceRoot":"","sources":["../../../../src/db/schema/1.0.0/subject.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,YAAY
|
|
1
|
+
{"version":3,"file":"subject.d.ts","sourceRoot":"","sources":["../../../../src/db/schema/1.0.0/subject.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,YAAY;;;;;;;;MAQvB,CAAC"}
|
|
@@ -18,6 +18,8 @@ export declare const consentTable: import("fumadb/schema").Table<{
|
|
|
18
18
|
tcString: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
19
19
|
/** Which UI component collected this consent (e.g., 'banner', 'dialog', 'widget') */
|
|
20
20
|
uiSource: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
21
|
+
/** Derived consent action (e.g., 'accept_all', 'reject_all', 'opt_out', 'custom') */
|
|
22
|
+
consentAction: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
21
23
|
tenantId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
22
24
|
}, {}>;
|
|
23
25
|
export { consentSchema, type Consent };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"consent.d.ts","sourceRoot":"","sources":["../../../../src/db/schema/2.0.0/consent.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,OAAO,EAAE,aAAa,EAAE,MAAM,cAAc,CAAC;AAG3D,eAAO,MAAM,YAAY;;;;;;;;;;;IAWxB,0DAA0D;;IAE1D,4DAA4D;;IAE5D,gDAAgD;;IAEhD,qFAAqF;;;MAGpF,CAAC;AAEH,OAAO,EAAE,aAAa,EAAE,KAAK,OAAO,EAAE,CAAC"}
|
|
1
|
+
{"version":3,"file":"consent.d.ts","sourceRoot":"","sources":["../../../../src/db/schema/2.0.0/consent.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,OAAO,EAAE,aAAa,EAAE,MAAM,cAAc,CAAC;AAG3D,eAAO,MAAM,YAAY;;;;;;;;;;;IAWxB,0DAA0D;;IAE1D,4DAA4D;;IAE5D,gDAAgD;;IAEhD,qFAAqF;;IAErF,qFAAqF;;;MAGpF,CAAC;AAEH,OAAO,EAAE,aAAa,EAAE,KAAK,OAAO,EAAE,CAAC"}
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
export declare const v2: import("fumadb/schema").Schema<"2.0.0", {
|
|
2
2
|
subject: import("fumadb/schema").Table<{
|
|
3
3
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
4
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
5
4
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
6
5
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
7
6
|
createdAt: import("fumadb/schema").Column<"timestamp", Date | null, Date>;
|
|
@@ -23,11 +22,11 @@ export declare const v2: import("fumadb/schema").Schema<"2.0.0", {
|
|
|
23
22
|
jurisdictionModel: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
24
23
|
tcString: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
25
24
|
uiSource: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
25
|
+
consentAction: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
26
26
|
tenantId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
27
27
|
}, Omit<{}, "domain" | "subject" | "policy"> & {
|
|
28
28
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
29
29
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
30
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
31
30
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
32
31
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
33
32
|
createdAt: import("fumadb/schema").Column<"timestamp", Date | null, Date>;
|
|
@@ -56,6 +55,7 @@ export declare const v2: import("fumadb/schema").Schema<"2.0.0", {
|
|
|
56
55
|
jurisdictionModel: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
57
56
|
tcString: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
58
57
|
uiSource: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
58
|
+
consentAction: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
59
59
|
tenantId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
60
60
|
}, Omit<{}, "domain" | "subject" | "policy"> & /*elided*/ any>>;
|
|
61
61
|
}>>;
|
|
@@ -83,6 +83,7 @@ export declare const v2: import("fumadb/schema").Schema<"2.0.0", {
|
|
|
83
83
|
jurisdictionModel: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
84
84
|
tcString: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
85
85
|
uiSource: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
86
|
+
consentAction: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
86
87
|
tenantId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
87
88
|
}, Omit<{}, "domain" | "subject" | "policy"> & /*elided*/ any>>;
|
|
88
89
|
}>>;
|
|
@@ -102,7 +103,6 @@ export declare const v2: import("fumadb/schema").Schema<"2.0.0", {
|
|
|
102
103
|
}, Omit<{}, "subject"> & {
|
|
103
104
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
104
105
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
105
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
106
106
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
107
107
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
108
108
|
createdAt: import("fumadb/schema").Column<"timestamp", Date | null, Date>;
|
|
@@ -133,11 +133,11 @@ export declare const v2: import("fumadb/schema").Schema<"2.0.0", {
|
|
|
133
133
|
jurisdictionModel: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
134
134
|
tcString: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
135
135
|
uiSource: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
136
|
+
consentAction: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
136
137
|
tenantId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
137
138
|
}, Omit<{}, "domain" | "subject" | "policy"> & {
|
|
138
139
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
139
140
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
140
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
141
141
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
142
142
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
143
143
|
createdAt: import("fumadb/schema").Column<"timestamp", Date | null, Date>;
|
|
@@ -159,6 +159,7 @@ export declare const v2: import("fumadb/schema").Schema<"2.0.0", {
|
|
|
159
159
|
jurisdictionModel: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
160
160
|
tcString: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
161
161
|
uiSource: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
162
|
+
consentAction: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
162
163
|
tenantId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
163
164
|
}, Omit<{}, "domain" | "subject" | "policy"> & /*elided*/ any>>;
|
|
164
165
|
auditLogs: import("fumadb/schema").ImplicitRelation<"many", import("fumadb/schema").Table<{
|
|
@@ -176,7 +177,6 @@ export declare const v2: import("fumadb/schema").Schema<"2.0.0", {
|
|
|
176
177
|
}, Omit<{}, "subject"> & {
|
|
177
178
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
178
179
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
179
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
180
180
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
181
181
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
182
182
|
createdAt: import("fumadb/schema").Column<"timestamp", Date | null, Date>;
|
|
@@ -216,6 +216,7 @@ export declare const v2: import("fumadb/schema").Schema<"2.0.0", {
|
|
|
216
216
|
jurisdictionModel: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
217
217
|
tcString: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
218
218
|
uiSource: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
219
|
+
consentAction: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
219
220
|
tenantId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
220
221
|
}, Omit<{}, "domain" | "subject" | "policy"> & /*elided*/ any>>;
|
|
221
222
|
}>>;
|
|
@@ -245,11 +246,11 @@ export declare const v2: import("fumadb/schema").Schema<"2.0.0", {
|
|
|
245
246
|
jurisdictionModel: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
246
247
|
tcString: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
247
248
|
uiSource: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
249
|
+
consentAction: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
248
250
|
tenantId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
249
251
|
}, Omit<{}, "domain" | "subject" | "policy"> & {
|
|
250
252
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
251
253
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
252
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
253
254
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
254
255
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
255
256
|
createdAt: import("fumadb/schema").Column<"timestamp", Date | null, Date>;
|
|
@@ -271,6 +272,7 @@ export declare const v2: import("fumadb/schema").Schema<"2.0.0", {
|
|
|
271
272
|
jurisdictionModel: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
272
273
|
tcString: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
273
274
|
uiSource: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
275
|
+
consentAction: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
274
276
|
tenantId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
275
277
|
}, Omit<{}, "domain" | "subject" | "policy"> & /*elided*/ any>>;
|
|
276
278
|
auditLogs: import("fumadb/schema").ImplicitRelation<"many", import("fumadb/schema").Table<{
|
|
@@ -288,7 +290,6 @@ export declare const v2: import("fumadb/schema").Schema<"2.0.0", {
|
|
|
288
290
|
}, Omit<{}, "subject"> & {
|
|
289
291
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
290
292
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
291
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
292
293
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
293
294
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
294
295
|
createdAt: import("fumadb/schema").Column<"timestamp", Date | null, Date>;
|
|
@@ -319,6 +320,7 @@ export declare const v2: import("fumadb/schema").Schema<"2.0.0", {
|
|
|
319
320
|
jurisdictionModel: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
320
321
|
tcString: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
321
322
|
uiSource: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
323
|
+
consentAction: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
322
324
|
tenantId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
323
325
|
}, Omit<{}, "domain" | "subject" | "policy"> & /*elided*/ any>>;
|
|
324
326
|
}>>;
|
|
@@ -355,11 +357,11 @@ export declare const v2: import("fumadb/schema").Schema<"2.0.0", {
|
|
|
355
357
|
jurisdictionModel: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
356
358
|
tcString: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
357
359
|
uiSource: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
360
|
+
consentAction: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
358
361
|
tenantId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
359
362
|
}, Omit<{}, "domain" | "subject" | "policy"> & {
|
|
360
363
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
361
364
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
362
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
363
365
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
364
366
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
365
367
|
createdAt: import("fumadb/schema").Column<"timestamp", Date | null, Date>;
|
|
@@ -381,6 +383,7 @@ export declare const v2: import("fumadb/schema").Schema<"2.0.0", {
|
|
|
381
383
|
jurisdictionModel: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
382
384
|
tcString: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
383
385
|
uiSource: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
386
|
+
consentAction: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
384
387
|
tenantId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
385
388
|
}, Omit<{}, "domain" | "subject" | "policy"> & /*elided*/ any>>;
|
|
386
389
|
auditLogs: import("fumadb/schema").ImplicitRelation<"many", import("fumadb/schema").Table<{
|
|
@@ -398,7 +401,6 @@ export declare const v2: import("fumadb/schema").Schema<"2.0.0", {
|
|
|
398
401
|
}, Omit<{}, "subject"> & {
|
|
399
402
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
400
403
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
401
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
402
404
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
403
405
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
404
406
|
createdAt: import("fumadb/schema").Column<"timestamp", Date | null, Date>;
|
|
@@ -429,6 +431,7 @@ export declare const v2: import("fumadb/schema").Schema<"2.0.0", {
|
|
|
429
431
|
jurisdictionModel: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
430
432
|
tcString: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
431
433
|
uiSource: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
434
|
+
consentAction: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
432
435
|
tenantId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
433
436
|
}, Omit<{}, "domain" | "subject" | "policy"> & /*elided*/ any>>;
|
|
434
437
|
}>>;
|
|
@@ -456,6 +459,7 @@ export declare const v2: import("fumadb/schema").Schema<"2.0.0", {
|
|
|
456
459
|
jurisdictionModel: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
457
460
|
tcString: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
458
461
|
uiSource: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
462
|
+
consentAction: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
459
463
|
tenantId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
460
464
|
}, Omit<{}, "domain" | "subject" | "policy"> & /*elided*/ any>>;
|
|
461
465
|
}>>;
|
|
@@ -475,7 +479,6 @@ export declare const v2: import("fumadb/schema").Schema<"2.0.0", {
|
|
|
475
479
|
}, Omit<{}, "subject"> & {
|
|
476
480
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
477
481
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
478
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
479
482
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
480
483
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
481
484
|
createdAt: import("fumadb/schema").Column<"timestamp", Date | null, Date>;
|
|
@@ -497,11 +500,11 @@ export declare const v2: import("fumadb/schema").Schema<"2.0.0", {
|
|
|
497
500
|
jurisdictionModel: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
498
501
|
tcString: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
499
502
|
uiSource: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
503
|
+
consentAction: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
500
504
|
tenantId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
501
505
|
}, Omit<{}, "domain" | "subject" | "policy"> & {
|
|
502
506
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
503
507
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
504
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
505
508
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
506
509
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
507
510
|
createdAt: import("fumadb/schema").Column<"timestamp", Date | null, Date>;
|
|
@@ -530,6 +533,7 @@ export declare const v2: import("fumadb/schema").Schema<"2.0.0", {
|
|
|
530
533
|
jurisdictionModel: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
531
534
|
tcString: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
532
535
|
uiSource: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
536
|
+
consentAction: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
533
537
|
tenantId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
534
538
|
}, Omit<{}, "domain" | "subject" | "policy"> & /*elided*/ any>>;
|
|
535
539
|
}>>;
|
|
@@ -557,6 +561,7 @@ export declare const v2: import("fumadb/schema").Schema<"2.0.0", {
|
|
|
557
561
|
jurisdictionModel: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
558
562
|
tcString: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
559
563
|
uiSource: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
564
|
+
consentAction: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
560
565
|
tenantId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
561
566
|
}, Omit<{}, "domain" | "subject" | "policy"> & /*elided*/ any>>;
|
|
562
567
|
}>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/db/schema/2.0.0/index.ts"],"names":[],"mappings":"AAQA,eAAO,MAAM,EAAE
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/db/schema/2.0.0/index.ts"],"names":[],"mappings":"AAQA,eAAO,MAAM,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA+Bb,CAAC;AAEH,cAAc,aAAa,CAAC;AAC5B,cAAc,WAAW,CAAC;AAC1B,cAAc,kBAAkB,CAAC;AACjC,cAAc,mBAAmB,CAAC;AAClC,cAAc,UAAU,CAAC;AACzB,cAAc,WAAW,CAAC"}
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { type Subject, subjectSchema } from '@c15t/schema';
|
|
2
2
|
export declare const subjectTable: import("fumadb/schema").Table<{
|
|
3
3
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
4
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
5
4
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
6
5
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
7
6
|
createdAt: import("fumadb/schema").Column<"timestamp", Date | null, Date>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"subject.d.ts","sourceRoot":"","sources":["../../../../src/db/schema/2.0.0/subject.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,OAAO,EAAE,aAAa,EAAE,MAAM,cAAc,CAAC;AAG3D,eAAO,MAAM,YAAY
|
|
1
|
+
{"version":3,"file":"subject.d.ts","sourceRoot":"","sources":["../../../../src/db/schema/2.0.0/subject.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,OAAO,EAAE,aAAa,EAAE,MAAM,cAAc,CAAC;AAG3D,eAAO,MAAM,YAAY;;;;;;;MAOvB,CAAC;AAEH,OAAO,EAAE,aAAa,EAAE,KAAK,OAAO,EAAE,CAAC"}
|