@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
|
@@ -2,7 +2,6 @@ export * from './2.0.0';
|
|
|
2
2
|
export declare const DB: import("fumadb").FumaDBFactory<(import("fumadb/schema").Schema<"1.0.0", {
|
|
3
3
|
subject: import("fumadb/schema").Table<{
|
|
4
4
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
5
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
6
5
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
7
6
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
8
7
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -27,7 +26,6 @@ export declare const DB: import("fumadb").FumaDBFactory<(import("fumadb/schema")
|
|
|
27
26
|
}, Omit<{}, "domain" | "subject" | "consentRecords" | "policy"> & {
|
|
28
27
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
29
28
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
30
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
31
29
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
32
30
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
33
31
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -99,7 +97,6 @@ export declare const DB: import("fumadb").FumaDBFactory<(import("fumadb/schema")
|
|
|
99
97
|
}, Omit<{}, "consent" | "subject"> & {
|
|
100
98
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
101
99
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
102
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
103
100
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
104
101
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
105
102
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -134,7 +131,6 @@ export declare const DB: import("fumadb").FumaDBFactory<(import("fumadb/schema")
|
|
|
134
131
|
}, Omit<{}, "consent" | "subject"> & {
|
|
135
132
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
136
133
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
137
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
138
134
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
139
135
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
140
136
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -159,7 +155,6 @@ export declare const DB: import("fumadb").FumaDBFactory<(import("fumadb/schema")
|
|
|
159
155
|
}, Omit<{}, "domain" | "subject" | "consentRecords" | "policy"> & {
|
|
160
156
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
161
157
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
162
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
163
158
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
164
159
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
165
160
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -246,7 +241,6 @@ export declare const DB: import("fumadb").FumaDBFactory<(import("fumadb/schema")
|
|
|
246
241
|
}, Omit<{}, "subject"> & {
|
|
247
242
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
248
243
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
249
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
250
244
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
251
245
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
252
246
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -283,7 +277,6 @@ export declare const DB: import("fumadb").FumaDBFactory<(import("fumadb/schema")
|
|
|
283
277
|
}, Omit<{}, "domain" | "subject" | "consentRecords" | "policy"> & {
|
|
284
278
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
285
279
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
286
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
287
280
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
288
281
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
289
282
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -316,7 +309,6 @@ export declare const DB: import("fumadb").FumaDBFactory<(import("fumadb/schema")
|
|
|
316
309
|
}, Omit<{}, "consent" | "subject"> & {
|
|
317
310
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
318
311
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
319
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
320
312
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
321
313
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
322
314
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -355,7 +347,6 @@ export declare const DB: import("fumadb").FumaDBFactory<(import("fumadb/schema")
|
|
|
355
347
|
}, Omit<{}, "subject"> & {
|
|
356
348
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
357
349
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
358
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
359
350
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
360
351
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
361
352
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -413,7 +404,6 @@ export declare const DB: import("fumadb").FumaDBFactory<(import("fumadb/schema")
|
|
|
413
404
|
}, Omit<{}, "consent" | "subject"> & {
|
|
414
405
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
415
406
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
416
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
417
407
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
418
408
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
419
409
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -459,7 +449,6 @@ export declare const DB: import("fumadb").FumaDBFactory<(import("fumadb/schema")
|
|
|
459
449
|
}, Omit<{}, "subject"> & {
|
|
460
450
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
461
451
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
462
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
463
452
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
464
453
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
465
454
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -516,7 +505,6 @@ export declare const DB: import("fumadb").FumaDBFactory<(import("fumadb/schema")
|
|
|
516
505
|
}, Omit<{}, "domain" | "subject" | "consentRecords" | "policy"> & {
|
|
517
506
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
518
507
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
519
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
520
508
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
521
509
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
522
510
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -549,7 +537,6 @@ export declare const DB: import("fumadb").FumaDBFactory<(import("fumadb/schema")
|
|
|
549
537
|
}, Omit<{}, "consent" | "subject"> & {
|
|
550
538
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
551
539
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
552
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
553
540
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
554
541
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
555
542
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -588,7 +575,6 @@ export declare const DB: import("fumadb").FumaDBFactory<(import("fumadb/schema")
|
|
|
588
575
|
}, Omit<{}, "subject"> & {
|
|
589
576
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
590
577
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
591
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
592
578
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
593
579
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
594
580
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -646,7 +632,6 @@ export declare const DB: import("fumadb").FumaDBFactory<(import("fumadb/schema")
|
|
|
646
632
|
}, Omit<{}, "consent" | "subject"> & {
|
|
647
633
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
648
634
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
649
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
650
635
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
651
636
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
652
637
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -692,7 +677,6 @@ export declare const DB: import("fumadb").FumaDBFactory<(import("fumadb/schema")
|
|
|
692
677
|
}, Omit<{}, "subject"> & {
|
|
693
678
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
694
679
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
695
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
696
680
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
697
681
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
698
682
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -749,7 +733,6 @@ export declare const DB: import("fumadb").FumaDBFactory<(import("fumadb/schema")
|
|
|
749
733
|
}, Omit<{}, "domain" | "subject" | "consentRecords" | "policy"> & {
|
|
750
734
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
751
735
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
752
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
753
736
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
754
737
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
755
738
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -782,7 +765,6 @@ export declare const DB: import("fumadb").FumaDBFactory<(import("fumadb/schema")
|
|
|
782
765
|
}, Omit<{}, "consent" | "subject"> & {
|
|
783
766
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
784
767
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
785
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
786
768
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
787
769
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
788
770
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -821,7 +803,6 @@ export declare const DB: import("fumadb").FumaDBFactory<(import("fumadb/schema")
|
|
|
821
803
|
}, Omit<{}, "subject"> & {
|
|
822
804
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
823
805
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
824
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
825
806
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
826
807
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
827
808
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -895,7 +876,6 @@ export declare const DB: import("fumadb").FumaDBFactory<(import("fumadb/schema")
|
|
|
895
876
|
}, Omit<{}, "consent" | "subject"> & {
|
|
896
877
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
897
878
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
898
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
899
879
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
900
880
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
901
881
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -941,7 +921,6 @@ export declare const DB: import("fumadb").FumaDBFactory<(import("fumadb/schema")
|
|
|
941
921
|
}, Omit<{}, "subject"> & {
|
|
942
922
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
943
923
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
944
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
945
924
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
946
925
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
947
926
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -983,7 +962,6 @@ export declare const DB: import("fumadb").FumaDBFactory<(import("fumadb/schema")
|
|
|
983
962
|
}, Omit<{}, "subject"> & {
|
|
984
963
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
985
964
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
986
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
987
965
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
988
966
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
989
967
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -1008,7 +986,6 @@ export declare const DB: import("fumadb").FumaDBFactory<(import("fumadb/schema")
|
|
|
1008
986
|
}, Omit<{}, "domain" | "subject" | "consentRecords" | "policy"> & {
|
|
1009
987
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
1010
988
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
1011
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
1012
989
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1013
990
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1014
991
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -1080,7 +1057,6 @@ export declare const DB: import("fumadb").FumaDBFactory<(import("fumadb/schema")
|
|
|
1080
1057
|
}, Omit<{}, "consent" | "subject"> & {
|
|
1081
1058
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
1082
1059
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
1083
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
1084
1060
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1085
1061
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1086
1062
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -1115,7 +1091,6 @@ export declare const DB: import("fumadb").FumaDBFactory<(import("fumadb/schema")
|
|
|
1115
1091
|
}, Omit<{}, "consent" | "subject"> & {
|
|
1116
1092
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
1117
1093
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
1118
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
1119
1094
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1120
1095
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1121
1096
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -1140,7 +1115,6 @@ export declare const DB: import("fumadb").FumaDBFactory<(import("fumadb/schema")
|
|
|
1140
1115
|
}, Omit<{}, "domain" | "subject" | "consentRecords" | "policy"> & {
|
|
1141
1116
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
1142
1117
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
1143
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
1144
1118
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1145
1119
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1146
1120
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -1237,7 +1211,6 @@ export declare const DB: import("fumadb").FumaDBFactory<(import("fumadb/schema")
|
|
|
1237
1211
|
}, Omit<{}, "consent" | "subject"> & {
|
|
1238
1212
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
1239
1213
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
1240
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
1241
1214
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1242
1215
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1243
1216
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -1262,7 +1235,6 @@ export declare const DB: import("fumadb").FumaDBFactory<(import("fumadb/schema")
|
|
|
1262
1235
|
}, Omit<{}, "domain" | "subject" | "consentRecords" | "policy"> & {
|
|
1263
1236
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
1264
1237
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
1265
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
1266
1238
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1267
1239
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1268
1240
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -1356,7 +1328,6 @@ export declare const DB: import("fumadb").FumaDBFactory<(import("fumadb/schema")
|
|
|
1356
1328
|
}, Omit<{}, "subject"> & {
|
|
1357
1329
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
1358
1330
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
1359
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
1360
1331
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1361
1332
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1362
1333
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -1383,7 +1354,6 @@ export declare const DB: import("fumadb").FumaDBFactory<(import("fumadb/schema")
|
|
|
1383
1354
|
}, Omit<{}, "domain" | "subject" | "consentRecords" | "policy"> & {
|
|
1384
1355
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
1385
1356
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
1386
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
1387
1357
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1388
1358
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1389
1359
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -1429,7 +1399,6 @@ export declare const DB: import("fumadb").FumaDBFactory<(import("fumadb/schema")
|
|
|
1429
1399
|
}, Omit<{}, "subject"> & {
|
|
1430
1400
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
1431
1401
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
1432
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
1433
1402
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1434
1403
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1435
1404
|
lastIpAddress: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
@@ -1506,7 +1475,6 @@ export declare const DB: import("fumadb").FumaDBFactory<(import("fumadb/schema")
|
|
|
1506
1475
|
}> | import("fumadb/schema").Schema<"2.0.0", {
|
|
1507
1476
|
subject: import("fumadb/schema").Table<{
|
|
1508
1477
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
1509
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
1510
1478
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1511
1479
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1512
1480
|
createdAt: import("fumadb/schema").Column<"timestamp", Date | null, Date>;
|
|
@@ -1528,11 +1496,11 @@ export declare const DB: import("fumadb").FumaDBFactory<(import("fumadb/schema")
|
|
|
1528
1496
|
jurisdictionModel: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1529
1497
|
tcString: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1530
1498
|
uiSource: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1499
|
+
consentAction: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1531
1500
|
tenantId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1532
1501
|
}, Omit<{}, "domain" | "subject" | "policy"> & {
|
|
1533
1502
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
1534
1503
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
1535
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
1536
1504
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1537
1505
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1538
1506
|
createdAt: import("fumadb/schema").Column<"timestamp", Date | null, Date>;
|
|
@@ -1561,6 +1529,7 @@ export declare const DB: import("fumadb").FumaDBFactory<(import("fumadb/schema")
|
|
|
1561
1529
|
jurisdictionModel: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1562
1530
|
tcString: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1563
1531
|
uiSource: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1532
|
+
consentAction: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1564
1533
|
tenantId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1565
1534
|
}, Omit<{}, "domain" | "subject" | "policy"> & /*elided*/ any>>;
|
|
1566
1535
|
}>>;
|
|
@@ -1588,6 +1557,7 @@ export declare const DB: import("fumadb").FumaDBFactory<(import("fumadb/schema")
|
|
|
1588
1557
|
jurisdictionModel: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1589
1558
|
tcString: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1590
1559
|
uiSource: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1560
|
+
consentAction: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1591
1561
|
tenantId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1592
1562
|
}, Omit<{}, "domain" | "subject" | "policy"> & /*elided*/ any>>;
|
|
1593
1563
|
}>>;
|
|
@@ -1607,7 +1577,6 @@ export declare const DB: import("fumadb").FumaDBFactory<(import("fumadb/schema")
|
|
|
1607
1577
|
}, Omit<{}, "subject"> & {
|
|
1608
1578
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
1609
1579
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
1610
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
1611
1580
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1612
1581
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1613
1582
|
createdAt: import("fumadb/schema").Column<"timestamp", Date | null, Date>;
|
|
@@ -1638,11 +1607,11 @@ export declare const DB: import("fumadb").FumaDBFactory<(import("fumadb/schema")
|
|
|
1638
1607
|
jurisdictionModel: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1639
1608
|
tcString: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1640
1609
|
uiSource: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1610
|
+
consentAction: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1641
1611
|
tenantId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1642
1612
|
}, Omit<{}, "domain" | "subject" | "policy"> & {
|
|
1643
1613
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
1644
1614
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
1645
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
1646
1615
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1647
1616
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1648
1617
|
createdAt: import("fumadb/schema").Column<"timestamp", Date | null, Date>;
|
|
@@ -1664,6 +1633,7 @@ export declare const DB: import("fumadb").FumaDBFactory<(import("fumadb/schema")
|
|
|
1664
1633
|
jurisdictionModel: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1665
1634
|
tcString: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1666
1635
|
uiSource: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1636
|
+
consentAction: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1667
1637
|
tenantId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1668
1638
|
}, Omit<{}, "domain" | "subject" | "policy"> & /*elided*/ any>>;
|
|
1669
1639
|
auditLogs: import("fumadb/schema").ImplicitRelation<"many", import("fumadb/schema").Table<{
|
|
@@ -1681,7 +1651,6 @@ export declare const DB: import("fumadb").FumaDBFactory<(import("fumadb/schema")
|
|
|
1681
1651
|
}, Omit<{}, "subject"> & {
|
|
1682
1652
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
1683
1653
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
1684
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
1685
1654
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1686
1655
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1687
1656
|
createdAt: import("fumadb/schema").Column<"timestamp", Date | null, Date>;
|
|
@@ -1721,6 +1690,7 @@ export declare const DB: import("fumadb").FumaDBFactory<(import("fumadb/schema")
|
|
|
1721
1690
|
jurisdictionModel: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1722
1691
|
tcString: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1723
1692
|
uiSource: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1693
|
+
consentAction: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1724
1694
|
tenantId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1725
1695
|
}, Omit<{}, "domain" | "subject" | "policy"> & /*elided*/ any>>;
|
|
1726
1696
|
}>>;
|
|
@@ -1750,11 +1720,11 @@ export declare const DB: import("fumadb").FumaDBFactory<(import("fumadb/schema")
|
|
|
1750
1720
|
jurisdictionModel: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1751
1721
|
tcString: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1752
1722
|
uiSource: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1723
|
+
consentAction: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1753
1724
|
tenantId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1754
1725
|
}, Omit<{}, "domain" | "subject" | "policy"> & {
|
|
1755
1726
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
1756
1727
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
1757
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
1758
1728
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1759
1729
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1760
1730
|
createdAt: import("fumadb/schema").Column<"timestamp", Date | null, Date>;
|
|
@@ -1776,6 +1746,7 @@ export declare const DB: import("fumadb").FumaDBFactory<(import("fumadb/schema")
|
|
|
1776
1746
|
jurisdictionModel: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1777
1747
|
tcString: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1778
1748
|
uiSource: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1749
|
+
consentAction: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1779
1750
|
tenantId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1780
1751
|
}, Omit<{}, "domain" | "subject" | "policy"> & /*elided*/ any>>;
|
|
1781
1752
|
auditLogs: import("fumadb/schema").ImplicitRelation<"many", import("fumadb/schema").Table<{
|
|
@@ -1793,7 +1764,6 @@ export declare const DB: import("fumadb").FumaDBFactory<(import("fumadb/schema")
|
|
|
1793
1764
|
}, Omit<{}, "subject"> & {
|
|
1794
1765
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
1795
1766
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
1796
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
1797
1767
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1798
1768
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1799
1769
|
createdAt: import("fumadb/schema").Column<"timestamp", Date | null, Date>;
|
|
@@ -1824,6 +1794,7 @@ export declare const DB: import("fumadb").FumaDBFactory<(import("fumadb/schema")
|
|
|
1824
1794
|
jurisdictionModel: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1825
1795
|
tcString: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1826
1796
|
uiSource: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1797
|
+
consentAction: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1827
1798
|
tenantId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1828
1799
|
}, Omit<{}, "domain" | "subject" | "policy"> & /*elided*/ any>>;
|
|
1829
1800
|
}>>;
|
|
@@ -1860,11 +1831,11 @@ export declare const DB: import("fumadb").FumaDBFactory<(import("fumadb/schema")
|
|
|
1860
1831
|
jurisdictionModel: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1861
1832
|
tcString: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1862
1833
|
uiSource: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1834
|
+
consentAction: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1863
1835
|
tenantId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1864
1836
|
}, Omit<{}, "domain" | "subject" | "policy"> & {
|
|
1865
1837
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
1866
1838
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
1867
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
1868
1839
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1869
1840
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1870
1841
|
createdAt: import("fumadb/schema").Column<"timestamp", Date | null, Date>;
|
|
@@ -1886,6 +1857,7 @@ export declare const DB: import("fumadb").FumaDBFactory<(import("fumadb/schema")
|
|
|
1886
1857
|
jurisdictionModel: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1887
1858
|
tcString: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1888
1859
|
uiSource: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1860
|
+
consentAction: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1889
1861
|
tenantId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1890
1862
|
}, Omit<{}, "domain" | "subject" | "policy"> & /*elided*/ any>>;
|
|
1891
1863
|
auditLogs: import("fumadb/schema").ImplicitRelation<"many", import("fumadb/schema").Table<{
|
|
@@ -1903,7 +1875,6 @@ export declare const DB: import("fumadb").FumaDBFactory<(import("fumadb/schema")
|
|
|
1903
1875
|
}, Omit<{}, "subject"> & {
|
|
1904
1876
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
1905
1877
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
1906
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
1907
1878
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1908
1879
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1909
1880
|
createdAt: import("fumadb/schema").Column<"timestamp", Date | null, Date>;
|
|
@@ -1934,6 +1905,7 @@ export declare const DB: import("fumadb").FumaDBFactory<(import("fumadb/schema")
|
|
|
1934
1905
|
jurisdictionModel: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1935
1906
|
tcString: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1936
1907
|
uiSource: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1908
|
+
consentAction: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1937
1909
|
tenantId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1938
1910
|
}, Omit<{}, "domain" | "subject" | "policy"> & /*elided*/ any>>;
|
|
1939
1911
|
}>>;
|
|
@@ -1961,6 +1933,7 @@ export declare const DB: import("fumadb").FumaDBFactory<(import("fumadb/schema")
|
|
|
1961
1933
|
jurisdictionModel: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1962
1934
|
tcString: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1963
1935
|
uiSource: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1936
|
+
consentAction: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1964
1937
|
tenantId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1965
1938
|
}, Omit<{}, "domain" | "subject" | "policy"> & /*elided*/ any>>;
|
|
1966
1939
|
}>>;
|
|
@@ -1980,7 +1953,6 @@ export declare const DB: import("fumadb").FumaDBFactory<(import("fumadb/schema")
|
|
|
1980
1953
|
}, Omit<{}, "subject"> & {
|
|
1981
1954
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
1982
1955
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
1983
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
1984
1956
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1985
1957
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1986
1958
|
createdAt: import("fumadb/schema").Column<"timestamp", Date | null, Date>;
|
|
@@ -2002,11 +1974,11 @@ export declare const DB: import("fumadb").FumaDBFactory<(import("fumadb/schema")
|
|
|
2002
1974
|
jurisdictionModel: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2003
1975
|
tcString: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2004
1976
|
uiSource: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
1977
|
+
consentAction: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2005
1978
|
tenantId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2006
1979
|
}, Omit<{}, "domain" | "subject" | "policy"> & {
|
|
2007
1980
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
2008
1981
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
2009
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
2010
1982
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2011
1983
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2012
1984
|
createdAt: import("fumadb/schema").Column<"timestamp", Date | null, Date>;
|
|
@@ -2035,6 +2007,7 @@ export declare const DB: import("fumadb").FumaDBFactory<(import("fumadb/schema")
|
|
|
2035
2007
|
jurisdictionModel: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2036
2008
|
tcString: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2037
2009
|
uiSource: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2010
|
+
consentAction: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2038
2011
|
tenantId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2039
2012
|
}, Omit<{}, "domain" | "subject" | "policy"> & /*elided*/ any>>;
|
|
2040
2013
|
}>>;
|
|
@@ -2062,6 +2035,7 @@ export declare const DB: import("fumadb").FumaDBFactory<(import("fumadb/schema")
|
|
|
2062
2035
|
jurisdictionModel: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2063
2036
|
tcString: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2064
2037
|
uiSource: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2038
|
+
consentAction: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2065
2039
|
tenantId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2066
2040
|
}, Omit<{}, "domain" | "subject" | "policy"> & /*elided*/ any>>;
|
|
2067
2041
|
}>>;
|
|
@@ -2085,7 +2059,6 @@ export declare const DB: import("fumadb").FumaDBFactory<(import("fumadb/schema")
|
|
|
2085
2059
|
export declare const LatestDB: import("fumadb").FumaDBFactory<import("fumadb/schema").Schema<"2.0.0", {
|
|
2086
2060
|
subject: import("fumadb/schema").Table<{
|
|
2087
2061
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
2088
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
2089
2062
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2090
2063
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2091
2064
|
createdAt: import("fumadb/schema").Column<"timestamp", Date | null, Date>;
|
|
@@ -2107,11 +2080,11 @@ export declare const LatestDB: import("fumadb").FumaDBFactory<import("fumadb/sch
|
|
|
2107
2080
|
jurisdictionModel: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2108
2081
|
tcString: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2109
2082
|
uiSource: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2083
|
+
consentAction: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2110
2084
|
tenantId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2111
2085
|
}, Omit<{}, "domain" | "subject" | "policy"> & {
|
|
2112
2086
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
2113
2087
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
2114
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
2115
2088
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2116
2089
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2117
2090
|
createdAt: import("fumadb/schema").Column<"timestamp", Date | null, Date>;
|
|
@@ -2140,6 +2113,7 @@ export declare const LatestDB: import("fumadb").FumaDBFactory<import("fumadb/sch
|
|
|
2140
2113
|
jurisdictionModel: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2141
2114
|
tcString: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2142
2115
|
uiSource: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2116
|
+
consentAction: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2143
2117
|
tenantId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2144
2118
|
}, Omit<{}, "domain" | "subject" | "policy"> & /*elided*/ any>>;
|
|
2145
2119
|
}>>;
|
|
@@ -2167,6 +2141,7 @@ export declare const LatestDB: import("fumadb").FumaDBFactory<import("fumadb/sch
|
|
|
2167
2141
|
jurisdictionModel: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2168
2142
|
tcString: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2169
2143
|
uiSource: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2144
|
+
consentAction: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2170
2145
|
tenantId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2171
2146
|
}, Omit<{}, "domain" | "subject" | "policy"> & /*elided*/ any>>;
|
|
2172
2147
|
}>>;
|
|
@@ -2186,7 +2161,6 @@ export declare const LatestDB: import("fumadb").FumaDBFactory<import("fumadb/sch
|
|
|
2186
2161
|
}, Omit<{}, "subject"> & {
|
|
2187
2162
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
2188
2163
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
2189
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
2190
2164
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2191
2165
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2192
2166
|
createdAt: import("fumadb/schema").Column<"timestamp", Date | null, Date>;
|
|
@@ -2217,11 +2191,11 @@ export declare const LatestDB: import("fumadb").FumaDBFactory<import("fumadb/sch
|
|
|
2217
2191
|
jurisdictionModel: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2218
2192
|
tcString: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2219
2193
|
uiSource: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2194
|
+
consentAction: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2220
2195
|
tenantId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2221
2196
|
}, Omit<{}, "domain" | "subject" | "policy"> & {
|
|
2222
2197
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
2223
2198
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
2224
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
2225
2199
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2226
2200
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2227
2201
|
createdAt: import("fumadb/schema").Column<"timestamp", Date | null, Date>;
|
|
@@ -2243,6 +2217,7 @@ export declare const LatestDB: import("fumadb").FumaDBFactory<import("fumadb/sch
|
|
|
2243
2217
|
jurisdictionModel: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2244
2218
|
tcString: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2245
2219
|
uiSource: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2220
|
+
consentAction: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2246
2221
|
tenantId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2247
2222
|
}, Omit<{}, "domain" | "subject" | "policy"> & /*elided*/ any>>;
|
|
2248
2223
|
auditLogs: import("fumadb/schema").ImplicitRelation<"many", import("fumadb/schema").Table<{
|
|
@@ -2260,7 +2235,6 @@ export declare const LatestDB: import("fumadb").FumaDBFactory<import("fumadb/sch
|
|
|
2260
2235
|
}, Omit<{}, "subject"> & {
|
|
2261
2236
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
2262
2237
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
2263
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
2264
2238
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2265
2239
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2266
2240
|
createdAt: import("fumadb/schema").Column<"timestamp", Date | null, Date>;
|
|
@@ -2300,6 +2274,7 @@ export declare const LatestDB: import("fumadb").FumaDBFactory<import("fumadb/sch
|
|
|
2300
2274
|
jurisdictionModel: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2301
2275
|
tcString: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2302
2276
|
uiSource: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2277
|
+
consentAction: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2303
2278
|
tenantId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2304
2279
|
}, Omit<{}, "domain" | "subject" | "policy"> & /*elided*/ any>>;
|
|
2305
2280
|
}>>;
|
|
@@ -2329,11 +2304,11 @@ export declare const LatestDB: import("fumadb").FumaDBFactory<import("fumadb/sch
|
|
|
2329
2304
|
jurisdictionModel: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2330
2305
|
tcString: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2331
2306
|
uiSource: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2307
|
+
consentAction: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2332
2308
|
tenantId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2333
2309
|
}, Omit<{}, "domain" | "subject" | "policy"> & {
|
|
2334
2310
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
2335
2311
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
2336
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
2337
2312
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2338
2313
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2339
2314
|
createdAt: import("fumadb/schema").Column<"timestamp", Date | null, Date>;
|
|
@@ -2355,6 +2330,7 @@ export declare const LatestDB: import("fumadb").FumaDBFactory<import("fumadb/sch
|
|
|
2355
2330
|
jurisdictionModel: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2356
2331
|
tcString: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2357
2332
|
uiSource: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2333
|
+
consentAction: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2358
2334
|
tenantId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2359
2335
|
}, Omit<{}, "domain" | "subject" | "policy"> & /*elided*/ any>>;
|
|
2360
2336
|
auditLogs: import("fumadb/schema").ImplicitRelation<"many", import("fumadb/schema").Table<{
|
|
@@ -2372,7 +2348,6 @@ export declare const LatestDB: import("fumadb").FumaDBFactory<import("fumadb/sch
|
|
|
2372
2348
|
}, Omit<{}, "subject"> & {
|
|
2373
2349
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
2374
2350
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
2375
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
2376
2351
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2377
2352
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2378
2353
|
createdAt: import("fumadb/schema").Column<"timestamp", Date | null, Date>;
|
|
@@ -2403,6 +2378,7 @@ export declare const LatestDB: import("fumadb").FumaDBFactory<import("fumadb/sch
|
|
|
2403
2378
|
jurisdictionModel: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2404
2379
|
tcString: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2405
2380
|
uiSource: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2381
|
+
consentAction: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2406
2382
|
tenantId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2407
2383
|
}, Omit<{}, "domain" | "subject" | "policy"> & /*elided*/ any>>;
|
|
2408
2384
|
}>>;
|
|
@@ -2439,11 +2415,11 @@ export declare const LatestDB: import("fumadb").FumaDBFactory<import("fumadb/sch
|
|
|
2439
2415
|
jurisdictionModel: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2440
2416
|
tcString: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2441
2417
|
uiSource: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2418
|
+
consentAction: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2442
2419
|
tenantId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2443
2420
|
}, Omit<{}, "domain" | "subject" | "policy"> & {
|
|
2444
2421
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
2445
2422
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
2446
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
2447
2423
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2448
2424
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2449
2425
|
createdAt: import("fumadb/schema").Column<"timestamp", Date | null, Date>;
|
|
@@ -2465,6 +2441,7 @@ export declare const LatestDB: import("fumadb").FumaDBFactory<import("fumadb/sch
|
|
|
2465
2441
|
jurisdictionModel: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2466
2442
|
tcString: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2467
2443
|
uiSource: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2444
|
+
consentAction: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2468
2445
|
tenantId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2469
2446
|
}, Omit<{}, "domain" | "subject" | "policy"> & /*elided*/ any>>;
|
|
2470
2447
|
auditLogs: import("fumadb/schema").ImplicitRelation<"many", import("fumadb/schema").Table<{
|
|
@@ -2482,7 +2459,6 @@ export declare const LatestDB: import("fumadb").FumaDBFactory<import("fumadb/sch
|
|
|
2482
2459
|
}, Omit<{}, "subject"> & {
|
|
2483
2460
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
2484
2461
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
2485
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
2486
2462
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2487
2463
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2488
2464
|
createdAt: import("fumadb/schema").Column<"timestamp", Date | null, Date>;
|
|
@@ -2513,6 +2489,7 @@ export declare const LatestDB: import("fumadb").FumaDBFactory<import("fumadb/sch
|
|
|
2513
2489
|
jurisdictionModel: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2514
2490
|
tcString: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2515
2491
|
uiSource: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2492
|
+
consentAction: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2516
2493
|
tenantId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2517
2494
|
}, Omit<{}, "domain" | "subject" | "policy"> & /*elided*/ any>>;
|
|
2518
2495
|
}>>;
|
|
@@ -2540,6 +2517,7 @@ export declare const LatestDB: import("fumadb").FumaDBFactory<import("fumadb/sch
|
|
|
2540
2517
|
jurisdictionModel: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2541
2518
|
tcString: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2542
2519
|
uiSource: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2520
|
+
consentAction: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2543
2521
|
tenantId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2544
2522
|
}, Omit<{}, "domain" | "subject" | "policy"> & /*elided*/ any>>;
|
|
2545
2523
|
}>>;
|
|
@@ -2559,7 +2537,6 @@ export declare const LatestDB: import("fumadb").FumaDBFactory<import("fumadb/sch
|
|
|
2559
2537
|
}, Omit<{}, "subject"> & {
|
|
2560
2538
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
2561
2539
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
2562
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
2563
2540
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2564
2541
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2565
2542
|
createdAt: import("fumadb/schema").Column<"timestamp", Date | null, Date>;
|
|
@@ -2581,11 +2558,11 @@ export declare const LatestDB: import("fumadb").FumaDBFactory<import("fumadb/sch
|
|
|
2581
2558
|
jurisdictionModel: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2582
2559
|
tcString: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2583
2560
|
uiSource: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2561
|
+
consentAction: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2584
2562
|
tenantId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2585
2563
|
}, Omit<{}, "domain" | "subject" | "policy"> & {
|
|
2586
2564
|
subject: import("fumadb/schema").ExplicitRelation<"one", import("fumadb/schema").Table<{
|
|
2587
2565
|
id: import("fumadb/schema").IdColumn<"varchar(255)", string, string>;
|
|
2588
|
-
isIdentified: import("fumadb/schema").Column<"bool", boolean | null, boolean>;
|
|
2589
2566
|
externalId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2590
2567
|
identityProvider: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2591
2568
|
createdAt: import("fumadb/schema").Column<"timestamp", Date | null, Date>;
|
|
@@ -2614,6 +2591,7 @@ export declare const LatestDB: import("fumadb").FumaDBFactory<import("fumadb/sch
|
|
|
2614
2591
|
jurisdictionModel: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2615
2592
|
tcString: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2616
2593
|
uiSource: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2594
|
+
consentAction: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2617
2595
|
tenantId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2618
2596
|
}, Omit<{}, "domain" | "subject" | "policy"> & /*elided*/ any>>;
|
|
2619
2597
|
}>>;
|
|
@@ -2641,6 +2619,7 @@ export declare const LatestDB: import("fumadb").FumaDBFactory<import("fumadb/sch
|
|
|
2641
2619
|
jurisdictionModel: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2642
2620
|
tcString: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2643
2621
|
uiSource: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2622
|
+
consentAction: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2644
2623
|
tenantId: import("fumadb/schema").Column<"string", string | null, string | null>;
|
|
2645
2624
|
}, Omit<{}, "domain" | "subject" | "policy"> & /*elided*/ any>>;
|
|
2646
2625
|
}>>;
|