@learncard/types 5.6.14 → 5.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/crypto.d.ts +43 -43
- package/dist/did.d.ts +1823 -549
- package/dist/did.d.ts.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/lcn.d.ts +811 -805
- package/dist/lcn.d.ts.map +1 -1
- package/dist/learncard.d.ts +714 -312
- package/dist/learncard.d.ts.map +1 -1
- package/dist/learncloud.d.ts +2045 -491
- package/dist/learncloud.d.ts.map +1 -1
- package/dist/mongo.d.ts +4 -4
- package/dist/obv3.d.ts +40092 -10214
- package/dist/obv3.d.ts.map +1 -1
- package/dist/registries.d.ts +8 -0
- package/dist/registries.d.ts.map +1 -0
- package/dist/types.cjs.development.js +1412 -666
- package/dist/types.cjs.development.js.map +4 -4
- package/dist/types.cjs.production.min.js +1 -1
- package/dist/types.cjs.production.min.js.map +4 -4
- package/dist/types.esm.js +5 -1
- package/dist/types.esm.js.map +3 -3
- package/dist/vc.d.ts +19387 -4311
- package/dist/vc.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/lcn.d.ts
CHANGED
@@ -91,6 +91,11 @@ export declare const LCNProfileValidator: z.ZodObject<{
|
|
91
91
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
92
92
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
93
93
|
}, "strip", z.ZodTypeAny, {
|
94
|
+
profileId: string;
|
95
|
+
displayName: string;
|
96
|
+
shortBio: string;
|
97
|
+
bio: string;
|
98
|
+
did: string;
|
94
99
|
type?: string | undefined;
|
95
100
|
image?: string | undefined;
|
96
101
|
email?: string | undefined;
|
@@ -114,12 +119,9 @@ export declare const LCNProfileValidator: z.ZodObject<{
|
|
114
119
|
repeatIdBackgroundImage?: boolean | undefined;
|
115
120
|
} | undefined;
|
116
121
|
dob?: string | undefined;
|
122
|
+
}, {
|
117
123
|
profileId: string;
|
118
|
-
displayName: string;
|
119
|
-
shortBio: string;
|
120
|
-
bio: string;
|
121
124
|
did: string;
|
122
|
-
}, {
|
123
125
|
type?: string | undefined;
|
124
126
|
image?: string | undefined;
|
125
127
|
email?: string | undefined;
|
@@ -146,8 +148,6 @@ export declare const LCNProfileValidator: z.ZodObject<{
|
|
146
148
|
repeatIdBackgroundImage?: boolean | undefined;
|
147
149
|
} | undefined;
|
148
150
|
dob?: string | undefined;
|
149
|
-
profileId: string;
|
150
|
-
did: string;
|
151
151
|
}>;
|
152
152
|
export type LCNProfile = z.infer<typeof LCNProfileValidator>;
|
153
153
|
export declare const LCNProfileQueryValidator: z.ZodObject<{
|
@@ -319,7 +319,7 @@ export declare const LCNProfileQueryValidator: z.ZodObject<{
|
|
319
319
|
isServiceProfile?: boolean | undefined;
|
320
320
|
}>;
|
321
321
|
export type LCNProfileQuery = z.infer<typeof LCNProfileQueryValidator>;
|
322
|
-
export declare const PaginatedLCNProfilesValidator: z.ZodObject<z.extendShape<{
|
322
|
+
export declare const PaginatedLCNProfilesValidator: z.ZodObject<z.objectUtil.extendShape<{
|
323
323
|
cursor: z.ZodOptional<z.ZodString>;
|
324
324
|
hasMore: z.ZodBoolean;
|
325
325
|
}, {
|
@@ -377,6 +377,11 @@ export declare const PaginatedLCNProfilesValidator: z.ZodObject<z.extendShape<{
|
|
377
377
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
378
378
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
379
379
|
}, "strip", z.ZodTypeAny, {
|
380
|
+
profileId: string;
|
381
|
+
displayName: string;
|
382
|
+
shortBio: string;
|
383
|
+
bio: string;
|
384
|
+
did: string;
|
380
385
|
type?: string | undefined;
|
381
386
|
image?: string | undefined;
|
382
387
|
email?: string | undefined;
|
@@ -400,12 +405,9 @@ export declare const PaginatedLCNProfilesValidator: z.ZodObject<z.extendShape<{
|
|
400
405
|
repeatIdBackgroundImage?: boolean | undefined;
|
401
406
|
} | undefined;
|
402
407
|
dob?: string | undefined;
|
408
|
+
}, {
|
403
409
|
profileId: string;
|
404
|
-
displayName: string;
|
405
|
-
shortBio: string;
|
406
|
-
bio: string;
|
407
410
|
did: string;
|
408
|
-
}, {
|
409
411
|
type?: string | undefined;
|
410
412
|
image?: string | undefined;
|
411
413
|
email?: string | undefined;
|
@@ -432,13 +434,15 @@ export declare const PaginatedLCNProfilesValidator: z.ZodObject<z.extendShape<{
|
|
432
434
|
repeatIdBackgroundImage?: boolean | undefined;
|
433
435
|
} | undefined;
|
434
436
|
dob?: string | undefined;
|
435
|
-
profileId: string;
|
436
|
-
did: string;
|
437
437
|
}>, "many">;
|
438
438
|
}>, "strip", z.ZodTypeAny, {
|
439
|
-
cursor?: string | undefined;
|
440
439
|
hasMore: boolean;
|
441
440
|
records: {
|
441
|
+
profileId: string;
|
442
|
+
displayName: string;
|
443
|
+
shortBio: string;
|
444
|
+
bio: string;
|
445
|
+
did: string;
|
442
446
|
type?: string | undefined;
|
443
447
|
image?: string | undefined;
|
444
448
|
email?: string | undefined;
|
@@ -462,16 +466,13 @@ export declare const PaginatedLCNProfilesValidator: z.ZodObject<z.extendShape<{
|
|
462
466
|
repeatIdBackgroundImage?: boolean | undefined;
|
463
467
|
} | undefined;
|
464
468
|
dob?: string | undefined;
|
465
|
-
profileId: string;
|
466
|
-
displayName: string;
|
467
|
-
shortBio: string;
|
468
|
-
bio: string;
|
469
|
-
did: string;
|
470
469
|
}[];
|
471
|
-
}, {
|
472
470
|
cursor?: string | undefined;
|
471
|
+
}, {
|
473
472
|
hasMore: boolean;
|
474
473
|
records: {
|
474
|
+
profileId: string;
|
475
|
+
did: string;
|
475
476
|
type?: string | undefined;
|
476
477
|
image?: string | undefined;
|
477
478
|
email?: string | undefined;
|
@@ -498,9 +499,8 @@ export declare const PaginatedLCNProfilesValidator: z.ZodObject<z.extendShape<{
|
|
498
499
|
repeatIdBackgroundImage?: boolean | undefined;
|
499
500
|
} | undefined;
|
500
501
|
dob?: string | undefined;
|
501
|
-
profileId: string;
|
502
|
-
did: string;
|
503
502
|
}[];
|
503
|
+
cursor?: string | undefined;
|
504
504
|
}>;
|
505
505
|
export type PaginatedLCNProfiles = z.infer<typeof PaginatedLCNProfilesValidator>;
|
506
506
|
export declare const LCNProfileConnectionStatusEnum: z.ZodEnum<["CONNECTED", "PENDING_REQUEST_SENT", "PENDING_REQUEST_RECEIVED", "NOT_CONNECTED"]>;
|
@@ -515,30 +515,30 @@ export declare const LCNProfileManagerValidator: z.ZodObject<{
|
|
515
515
|
image: z.ZodOptional<z.ZodString>;
|
516
516
|
heroImage: z.ZodOptional<z.ZodString>;
|
517
517
|
}, "strip", z.ZodTypeAny, {
|
518
|
+
id: string;
|
519
|
+
created: string;
|
518
520
|
image?: string | undefined;
|
519
521
|
email?: string | undefined;
|
520
522
|
displayName?: string | undefined;
|
521
523
|
shortBio?: string | undefined;
|
522
524
|
bio?: string | undefined;
|
523
525
|
heroImage?: string | undefined;
|
526
|
+
}, {
|
524
527
|
id: string;
|
525
528
|
created: string;
|
526
|
-
}, {
|
527
529
|
image?: string | undefined;
|
528
530
|
email?: string | undefined;
|
529
531
|
displayName?: string | undefined;
|
530
532
|
shortBio?: string | undefined;
|
531
533
|
bio?: string | undefined;
|
532
534
|
heroImage?: string | undefined;
|
533
|
-
id: string;
|
534
|
-
created: string;
|
535
535
|
}>;
|
536
536
|
export type LCNProfileManager = z.infer<typeof LCNProfileManagerValidator>;
|
537
|
-
export declare const PaginatedLCNProfileManagersValidator: z.ZodObject<z.extendShape<{
|
537
|
+
export declare const PaginatedLCNProfileManagersValidator: z.ZodObject<z.objectUtil.extendShape<{
|
538
538
|
cursor: z.ZodOptional<z.ZodString>;
|
539
539
|
hasMore: z.ZodBoolean;
|
540
540
|
}, {
|
541
|
-
records: z.ZodArray<z.ZodObject<z.extendShape<{
|
541
|
+
records: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
542
542
|
id: z.ZodString;
|
543
543
|
created: z.ZodString;
|
544
544
|
displayName: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
@@ -550,54 +550,54 @@ export declare const PaginatedLCNProfileManagersValidator: z.ZodObject<z.extendS
|
|
550
550
|
}, {
|
551
551
|
did: z.ZodString;
|
552
552
|
}>, "strip", z.ZodTypeAny, {
|
553
|
+
id: string;
|
554
|
+
created: string;
|
555
|
+
did: string;
|
553
556
|
image?: string | undefined;
|
554
557
|
email?: string | undefined;
|
555
558
|
displayName?: string | undefined;
|
556
559
|
shortBio?: string | undefined;
|
557
560
|
bio?: string | undefined;
|
558
561
|
heroImage?: string | undefined;
|
562
|
+
}, {
|
559
563
|
id: string;
|
560
564
|
created: string;
|
561
565
|
did: string;
|
562
|
-
}, {
|
563
566
|
image?: string | undefined;
|
564
567
|
email?: string | undefined;
|
565
568
|
displayName?: string | undefined;
|
566
569
|
shortBio?: string | undefined;
|
567
570
|
bio?: string | undefined;
|
568
571
|
heroImage?: string | undefined;
|
569
|
-
id: string;
|
570
|
-
created: string;
|
571
|
-
did: string;
|
572
572
|
}>, "many">;
|
573
573
|
}>, "strip", z.ZodTypeAny, {
|
574
|
-
cursor?: string | undefined;
|
575
574
|
hasMore: boolean;
|
576
575
|
records: {
|
576
|
+
id: string;
|
577
|
+
created: string;
|
578
|
+
did: string;
|
577
579
|
image?: string | undefined;
|
578
580
|
email?: string | undefined;
|
579
581
|
displayName?: string | undefined;
|
580
582
|
shortBio?: string | undefined;
|
581
583
|
bio?: string | undefined;
|
582
584
|
heroImage?: string | undefined;
|
583
|
-
id: string;
|
584
|
-
created: string;
|
585
|
-
did: string;
|
586
585
|
}[];
|
587
|
-
}, {
|
588
586
|
cursor?: string | undefined;
|
587
|
+
}, {
|
589
588
|
hasMore: boolean;
|
590
589
|
records: {
|
590
|
+
id: string;
|
591
|
+
created: string;
|
592
|
+
did: string;
|
591
593
|
image?: string | undefined;
|
592
594
|
email?: string | undefined;
|
593
595
|
displayName?: string | undefined;
|
594
596
|
shortBio?: string | undefined;
|
595
597
|
bio?: string | undefined;
|
596
598
|
heroImage?: string | undefined;
|
597
|
-
id: string;
|
598
|
-
created: string;
|
599
|
-
did: string;
|
600
599
|
}[];
|
600
|
+
cursor?: string | undefined;
|
601
601
|
}>;
|
602
602
|
export type PaginatedLCNProfileManagers = z.infer<typeof PaginatedLCNProfileManagersValidator>;
|
603
603
|
export declare const LCNProfileManagerQueryValidator: z.ZodObject<{
|
@@ -720,7 +720,7 @@ export declare const LCNProfileManagerQueryValidator: z.ZodObject<{
|
|
720
720
|
} | undefined;
|
721
721
|
}>;
|
722
722
|
export type LCNProfileManagerQuery = z.infer<typeof LCNProfileManagerQueryValidator>;
|
723
|
-
export declare const PaginatedLCNProfilesAndManagersValidator: z.ZodObject<z.extendShape<{
|
723
|
+
export declare const PaginatedLCNProfilesAndManagersValidator: z.ZodObject<z.objectUtil.extendShape<{
|
724
724
|
cursor: z.ZodOptional<z.ZodString>;
|
725
725
|
hasMore: z.ZodBoolean;
|
726
726
|
}, {
|
@@ -779,6 +779,11 @@ export declare const PaginatedLCNProfilesAndManagersValidator: z.ZodObject<z.ext
|
|
779
779
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
780
780
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
781
781
|
}, "strip", z.ZodTypeAny, {
|
782
|
+
profileId: string;
|
783
|
+
displayName: string;
|
784
|
+
shortBio: string;
|
785
|
+
bio: string;
|
786
|
+
did: string;
|
782
787
|
type?: string | undefined;
|
783
788
|
image?: string | undefined;
|
784
789
|
email?: string | undefined;
|
@@ -802,12 +807,9 @@ export declare const PaginatedLCNProfilesAndManagersValidator: z.ZodObject<z.ext
|
|
802
807
|
repeatIdBackgroundImage?: boolean | undefined;
|
803
808
|
} | undefined;
|
804
809
|
dob?: string | undefined;
|
810
|
+
}, {
|
805
811
|
profileId: string;
|
806
|
-
displayName: string;
|
807
|
-
shortBio: string;
|
808
|
-
bio: string;
|
809
812
|
did: string;
|
810
|
-
}, {
|
811
813
|
type?: string | undefined;
|
812
814
|
image?: string | undefined;
|
813
815
|
email?: string | undefined;
|
@@ -834,10 +836,8 @@ export declare const PaginatedLCNProfilesAndManagersValidator: z.ZodObject<z.ext
|
|
834
836
|
repeatIdBackgroundImage?: boolean | undefined;
|
835
837
|
} | undefined;
|
836
838
|
dob?: string | undefined;
|
837
|
-
profileId: string;
|
838
|
-
did: string;
|
839
839
|
}>;
|
840
|
-
manager: z.ZodOptional<z.ZodObject<z.extendShape<{
|
840
|
+
manager: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
841
841
|
id: z.ZodString;
|
842
842
|
created: z.ZodString;
|
843
843
|
displayName: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
@@ -849,39 +849,33 @@ export declare const PaginatedLCNProfilesAndManagersValidator: z.ZodObject<z.ext
|
|
849
849
|
}, {
|
850
850
|
did: z.ZodString;
|
851
851
|
}>, "strip", z.ZodTypeAny, {
|
852
|
-
image?: string | undefined;
|
853
|
-
email?: string | undefined;
|
854
|
-
displayName?: string | undefined;
|
855
|
-
shortBio?: string | undefined;
|
856
|
-
bio?: string | undefined;
|
857
|
-
heroImage?: string | undefined;
|
858
852
|
id: string;
|
859
853
|
created: string;
|
860
854
|
did: string;
|
861
|
-
}, {
|
862
855
|
image?: string | undefined;
|
863
856
|
email?: string | undefined;
|
864
857
|
displayName?: string | undefined;
|
865
858
|
shortBio?: string | undefined;
|
866
859
|
bio?: string | undefined;
|
867
860
|
heroImage?: string | undefined;
|
861
|
+
}, {
|
868
862
|
id: string;
|
869
863
|
created: string;
|
870
864
|
did: string;
|
871
|
-
}>>;
|
872
|
-
}, "strip", z.ZodTypeAny, {
|
873
|
-
manager?: {
|
874
865
|
image?: string | undefined;
|
875
866
|
email?: string | undefined;
|
876
867
|
displayName?: string | undefined;
|
877
868
|
shortBio?: string | undefined;
|
878
869
|
bio?: string | undefined;
|
879
870
|
heroImage?: string | undefined;
|
880
|
-
|
881
|
-
|
882
|
-
did: string;
|
883
|
-
} | undefined;
|
871
|
+
}>>;
|
872
|
+
}, "strip", z.ZodTypeAny, {
|
884
873
|
profile: {
|
874
|
+
profileId: string;
|
875
|
+
displayName: string;
|
876
|
+
shortBio: string;
|
877
|
+
bio: string;
|
878
|
+
did: string;
|
885
879
|
type?: string | undefined;
|
886
880
|
image?: string | undefined;
|
887
881
|
email?: string | undefined;
|
@@ -905,25 +899,22 @@ export declare const PaginatedLCNProfilesAndManagersValidator: z.ZodObject<z.ext
|
|
905
899
|
repeatIdBackgroundImage?: boolean | undefined;
|
906
900
|
} | undefined;
|
907
901
|
dob?: string | undefined;
|
908
|
-
profileId: string;
|
909
|
-
displayName: string;
|
910
|
-
shortBio: string;
|
911
|
-
bio: string;
|
912
|
-
did: string;
|
913
902
|
};
|
914
|
-
}, {
|
915
903
|
manager?: {
|
904
|
+
id: string;
|
905
|
+
created: string;
|
906
|
+
did: string;
|
916
907
|
image?: string | undefined;
|
917
908
|
email?: string | undefined;
|
918
909
|
displayName?: string | undefined;
|
919
910
|
shortBio?: string | undefined;
|
920
911
|
bio?: string | undefined;
|
921
912
|
heroImage?: string | undefined;
|
922
|
-
id: string;
|
923
|
-
created: string;
|
924
|
-
did: string;
|
925
913
|
} | undefined;
|
914
|
+
}, {
|
926
915
|
profile: {
|
916
|
+
profileId: string;
|
917
|
+
did: string;
|
927
918
|
type?: string | undefined;
|
928
919
|
image?: string | undefined;
|
929
920
|
email?: string | undefined;
|
@@ -950,26 +941,28 @@ export declare const PaginatedLCNProfilesAndManagersValidator: z.ZodObject<z.ext
|
|
950
941
|
repeatIdBackgroundImage?: boolean | undefined;
|
951
942
|
} | undefined;
|
952
943
|
dob?: string | undefined;
|
953
|
-
profileId: string;
|
954
|
-
did: string;
|
955
944
|
};
|
956
|
-
}>, "many">;
|
957
|
-
}>, "strip", z.ZodTypeAny, {
|
958
|
-
cursor?: string | undefined;
|
959
|
-
hasMore: boolean;
|
960
|
-
records: {
|
961
945
|
manager?: {
|
946
|
+
id: string;
|
947
|
+
created: string;
|
948
|
+
did: string;
|
962
949
|
image?: string | undefined;
|
963
950
|
email?: string | undefined;
|
964
951
|
displayName?: string | undefined;
|
965
952
|
shortBio?: string | undefined;
|
966
953
|
bio?: string | undefined;
|
967
954
|
heroImage?: string | undefined;
|
968
|
-
id: string;
|
969
|
-
created: string;
|
970
|
-
did: string;
|
971
955
|
} | undefined;
|
956
|
+
}>, "many">;
|
957
|
+
}>, "strip", z.ZodTypeAny, {
|
958
|
+
hasMore: boolean;
|
959
|
+
records: {
|
972
960
|
profile: {
|
961
|
+
profileId: string;
|
962
|
+
displayName: string;
|
963
|
+
shortBio: string;
|
964
|
+
bio: string;
|
965
|
+
did: string;
|
973
966
|
type?: string | undefined;
|
974
967
|
image?: string | undefined;
|
975
968
|
email?: string | undefined;
|
@@ -993,29 +986,26 @@ export declare const PaginatedLCNProfilesAndManagersValidator: z.ZodObject<z.ext
|
|
993
986
|
repeatIdBackgroundImage?: boolean | undefined;
|
994
987
|
} | undefined;
|
995
988
|
dob?: string | undefined;
|
996
|
-
profileId: string;
|
997
|
-
displayName: string;
|
998
|
-
shortBio: string;
|
999
|
-
bio: string;
|
1000
|
-
did: string;
|
1001
989
|
};
|
1002
|
-
}[];
|
1003
|
-
}, {
|
1004
|
-
cursor?: string | undefined;
|
1005
|
-
hasMore: boolean;
|
1006
|
-
records: {
|
1007
990
|
manager?: {
|
991
|
+
id: string;
|
992
|
+
created: string;
|
993
|
+
did: string;
|
1008
994
|
image?: string | undefined;
|
1009
995
|
email?: string | undefined;
|
1010
996
|
displayName?: string | undefined;
|
1011
997
|
shortBio?: string | undefined;
|
1012
998
|
bio?: string | undefined;
|
1013
999
|
heroImage?: string | undefined;
|
1014
|
-
id: string;
|
1015
|
-
created: string;
|
1016
|
-
did: string;
|
1017
1000
|
} | undefined;
|
1001
|
+
}[];
|
1002
|
+
cursor?: string | undefined;
|
1003
|
+
}, {
|
1004
|
+
hasMore: boolean;
|
1005
|
+
records: {
|
1018
1006
|
profile: {
|
1007
|
+
profileId: string;
|
1008
|
+
did: string;
|
1019
1009
|
type?: string | undefined;
|
1020
1010
|
image?: string | undefined;
|
1021
1011
|
email?: string | undefined;
|
@@ -1042,10 +1032,20 @@ export declare const PaginatedLCNProfilesAndManagersValidator: z.ZodObject<z.ext
|
|
1042
1032
|
repeatIdBackgroundImage?: boolean | undefined;
|
1043
1033
|
} | undefined;
|
1044
1034
|
dob?: string | undefined;
|
1045
|
-
profileId: string;
|
1046
|
-
did: string;
|
1047
1035
|
};
|
1036
|
+
manager?: {
|
1037
|
+
id: string;
|
1038
|
+
created: string;
|
1039
|
+
did: string;
|
1040
|
+
image?: string | undefined;
|
1041
|
+
email?: string | undefined;
|
1042
|
+
displayName?: string | undefined;
|
1043
|
+
shortBio?: string | undefined;
|
1044
|
+
bio?: string | undefined;
|
1045
|
+
heroImage?: string | undefined;
|
1046
|
+
} | undefined;
|
1048
1047
|
}[];
|
1048
|
+
cursor?: string | undefined;
|
1049
1049
|
}>;
|
1050
1050
|
export type PaginatedLCNProfilesAndManagers = z.infer<typeof PaginatedLCNProfilesAndManagersValidator>;
|
1051
1051
|
export declare const SentCredentialInfoValidator: z.ZodObject<{
|
@@ -1055,17 +1055,17 @@ export declare const SentCredentialInfoValidator: z.ZodObject<{
|
|
1055
1055
|
sent: z.ZodString;
|
1056
1056
|
received: z.ZodOptional<z.ZodString>;
|
1057
1057
|
}, "strip", z.ZodTypeAny, {
|
1058
|
-
received?: string | undefined;
|
1059
1058
|
uri: string;
|
1060
1059
|
to: string;
|
1061
1060
|
from: string;
|
1062
1061
|
sent: string;
|
1063
|
-
}, {
|
1064
1062
|
received?: string | undefined;
|
1063
|
+
}, {
|
1065
1064
|
uri: string;
|
1066
1065
|
to: string;
|
1067
1066
|
from: string;
|
1068
1067
|
sent: string;
|
1068
|
+
received?: string | undefined;
|
1069
1069
|
}>;
|
1070
1070
|
export type SentCredentialInfo = z.infer<typeof SentCredentialInfoValidator>;
|
1071
1071
|
export declare const BoostPermissionsValidator: z.ZodObject<{
|
@@ -1082,7 +1082,6 @@ export declare const BoostPermissionsValidator: z.ZodObject<{
|
|
1082
1082
|
canManageChildrenProfiles: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1083
1083
|
canViewAnalytics: z.ZodBoolean;
|
1084
1084
|
}, "strip", z.ZodTypeAny, {
|
1085
|
-
canManageChildrenProfiles?: boolean | undefined;
|
1086
1085
|
role: string;
|
1087
1086
|
canEdit: boolean;
|
1088
1087
|
canIssue: boolean;
|
@@ -1094,8 +1093,8 @@ export declare const BoostPermissionsValidator: z.ZodObject<{
|
|
1094
1093
|
canRevokeChildren: string;
|
1095
1094
|
canManageChildrenPermissions: string;
|
1096
1095
|
canViewAnalytics: boolean;
|
1097
|
-
}, {
|
1098
1096
|
canManageChildrenProfiles?: boolean | undefined;
|
1097
|
+
}, {
|
1099
1098
|
role: string;
|
1100
1099
|
canEdit: boolean;
|
1101
1100
|
canIssue: boolean;
|
@@ -1107,6 +1106,7 @@ export declare const BoostPermissionsValidator: z.ZodObject<{
|
|
1107
1106
|
canRevokeChildren: string;
|
1108
1107
|
canManageChildrenPermissions: string;
|
1109
1108
|
canViewAnalytics: boolean;
|
1109
|
+
canManageChildrenProfiles?: boolean | undefined;
|
1110
1110
|
}>;
|
1111
1111
|
export type BoostPermissions = z.infer<typeof BoostPermissionsValidator>;
|
1112
1112
|
export declare const BoostPermissionsQueryValidator: z.ZodObject<{
|
@@ -1990,7 +1990,7 @@ export declare const FullClaimHookValidator: z.ZodIntersection<z.ZodObject<{
|
|
1990
1990
|
};
|
1991
1991
|
}>]>>;
|
1992
1992
|
export type FullClaimHook = z.infer<typeof FullClaimHookValidator>;
|
1993
|
-
export declare const PaginatedClaimHooksValidator: z.ZodObject<z.extendShape<{
|
1993
|
+
export declare const PaginatedClaimHooksValidator: z.ZodObject<z.objectUtil.extendShape<{
|
1994
1994
|
cursor: z.ZodOptional<z.ZodString>;
|
1995
1995
|
hasMore: z.ZodBoolean;
|
1996
1996
|
}, {
|
@@ -2152,7 +2152,6 @@ export declare const PaginatedClaimHooksValidator: z.ZodObject<z.extendShape<{
|
|
2152
2152
|
};
|
2153
2153
|
}>]>>, "many">;
|
2154
2154
|
}>, "strip", z.ZodTypeAny, {
|
2155
|
-
cursor?: string | undefined;
|
2156
2155
|
hasMore: boolean;
|
2157
2156
|
records: ({
|
2158
2157
|
id: string;
|
@@ -2185,8 +2184,8 @@ export declare const PaginatedClaimHooksValidator: z.ZodObject<z.extendShape<{
|
|
2185
2184
|
targetUri: string;
|
2186
2185
|
};
|
2187
2186
|
}))[];
|
2188
|
-
}, {
|
2189
2187
|
cursor?: string | undefined;
|
2188
|
+
}, {
|
2190
2189
|
hasMore: boolean;
|
2191
2190
|
records: ({
|
2192
2191
|
id: string;
|
@@ -2219,6 +2218,7 @@ export declare const PaginatedClaimHooksValidator: z.ZodObject<z.extendShape<{
|
|
2219
2218
|
targetUri: string;
|
2220
2219
|
};
|
2221
2220
|
}))[];
|
2221
|
+
cursor?: string | undefined;
|
2222
2222
|
}>;
|
2223
2223
|
export type PaginatedClaimHooksType = z.infer<typeof PaginatedClaimHooksValidator>;
|
2224
2224
|
export declare const LCNBoostStatus: z.ZodEnum<["DRAFT", "LIVE"]>;
|
@@ -2245,7 +2245,6 @@ export declare const BoostValidator: z.ZodObject<{
|
|
2245
2245
|
canManageChildrenProfiles: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2246
2246
|
canViewAnalytics: z.ZodBoolean;
|
2247
2247
|
}, "strip", z.ZodTypeAny, {
|
2248
|
-
canManageChildrenProfiles?: boolean | undefined;
|
2249
2248
|
role: string;
|
2250
2249
|
canEdit: boolean;
|
2251
2250
|
canIssue: boolean;
|
@@ -2257,8 +2256,8 @@ export declare const BoostValidator: z.ZodObject<{
|
|
2257
2256
|
canRevokeChildren: string;
|
2258
2257
|
canManageChildrenPermissions: string;
|
2259
2258
|
canViewAnalytics: boolean;
|
2260
|
-
}, {
|
2261
2259
|
canManageChildrenProfiles?: boolean | undefined;
|
2260
|
+
}, {
|
2262
2261
|
role: string;
|
2263
2262
|
canEdit: boolean;
|
2264
2263
|
canIssue: boolean;
|
@@ -2270,8 +2269,11 @@ export declare const BoostValidator: z.ZodObject<{
|
|
2270
2269
|
canRevokeChildren: string;
|
2271
2270
|
canManageChildrenPermissions: string;
|
2272
2271
|
canViewAnalytics: boolean;
|
2272
|
+
canManageChildrenProfiles?: boolean | undefined;
|
2273
2273
|
}>>;
|
2274
|
+
allowAnyoneToCreateChildren: z.ZodOptional<z.ZodBoolean>;
|
2274
2275
|
}, "strip", z.ZodTypeAny, {
|
2276
|
+
uri: string;
|
2275
2277
|
type?: string | undefined;
|
2276
2278
|
status?: "DRAFT" | "LIVE" | undefined;
|
2277
2279
|
name?: string | undefined;
|
@@ -2279,7 +2281,6 @@ export declare const BoostValidator: z.ZodObject<{
|
|
2279
2281
|
autoConnectRecipients?: boolean | undefined;
|
2280
2282
|
meta?: Record<string, any> | undefined;
|
2281
2283
|
claimPermissions?: {
|
2282
|
-
canManageChildrenProfiles?: boolean | undefined;
|
2283
2284
|
role: string;
|
2284
2285
|
canEdit: boolean;
|
2285
2286
|
canIssue: boolean;
|
@@ -2291,9 +2292,11 @@ export declare const BoostValidator: z.ZodObject<{
|
|
2291
2292
|
canRevokeChildren: string;
|
2292
2293
|
canManageChildrenPermissions: string;
|
2293
2294
|
canViewAnalytics: boolean;
|
2295
|
+
canManageChildrenProfiles?: boolean | undefined;
|
2294
2296
|
} | undefined;
|
2295
|
-
|
2297
|
+
allowAnyoneToCreateChildren?: boolean | undefined;
|
2296
2298
|
}, {
|
2299
|
+
uri: string;
|
2297
2300
|
type?: string | undefined;
|
2298
2301
|
status?: "DRAFT" | "LIVE" | undefined;
|
2299
2302
|
name?: string | undefined;
|
@@ -2301,7 +2304,6 @@ export declare const BoostValidator: z.ZodObject<{
|
|
2301
2304
|
autoConnectRecipients?: boolean | undefined;
|
2302
2305
|
meta?: Record<string, any> | undefined;
|
2303
2306
|
claimPermissions?: {
|
2304
|
-
canManageChildrenProfiles?: boolean | undefined;
|
2305
2307
|
role: string;
|
2306
2308
|
canEdit: boolean;
|
2307
2309
|
canIssue: boolean;
|
@@ -2313,8 +2315,9 @@ export declare const BoostValidator: z.ZodObject<{
|
|
2313
2315
|
canRevokeChildren: string;
|
2314
2316
|
canManageChildrenPermissions: string;
|
2315
2317
|
canViewAnalytics: boolean;
|
2318
|
+
canManageChildrenProfiles?: boolean | undefined;
|
2316
2319
|
} | undefined;
|
2317
|
-
|
2320
|
+
allowAnyoneToCreateChildren?: boolean | undefined;
|
2318
2321
|
}>;
|
2319
2322
|
export type Boost = z.infer<typeof BoostValidator>;
|
2320
2323
|
export declare const BoostQueryValidator: z.ZodObject<{
|
@@ -2453,7 +2456,7 @@ export declare const BoostQueryValidator: z.ZodObject<{
|
|
2453
2456
|
}> | undefined;
|
2454
2457
|
}>;
|
2455
2458
|
export type BoostQuery = z.infer<typeof BoostQueryValidator>;
|
2456
|
-
export declare const PaginatedBoostsValidator: z.ZodObject<z.extendShape<{
|
2459
|
+
export declare const PaginatedBoostsValidator: z.ZodObject<z.objectUtil.extendShape<{
|
2457
2460
|
cursor: z.ZodOptional<z.ZodString>;
|
2458
2461
|
hasMore: z.ZodBoolean;
|
2459
2462
|
}, {
|
@@ -2479,7 +2482,6 @@ export declare const PaginatedBoostsValidator: z.ZodObject<z.extendShape<{
|
|
2479
2482
|
canManageChildrenProfiles: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2480
2483
|
canViewAnalytics: z.ZodBoolean;
|
2481
2484
|
}, "strip", z.ZodTypeAny, {
|
2482
|
-
canManageChildrenProfiles?: boolean | undefined;
|
2483
2485
|
role: string;
|
2484
2486
|
canEdit: boolean;
|
2485
2487
|
canIssue: boolean;
|
@@ -2491,8 +2493,8 @@ export declare const PaginatedBoostsValidator: z.ZodObject<z.extendShape<{
|
|
2491
2493
|
canRevokeChildren: string;
|
2492
2494
|
canManageChildrenPermissions: string;
|
2493
2495
|
canViewAnalytics: boolean;
|
2494
|
-
}, {
|
2495
2496
|
canManageChildrenProfiles?: boolean | undefined;
|
2497
|
+
}, {
|
2496
2498
|
role: string;
|
2497
2499
|
canEdit: boolean;
|
2498
2500
|
canIssue: boolean;
|
@@ -2504,8 +2506,11 @@ export declare const PaginatedBoostsValidator: z.ZodObject<z.extendShape<{
|
|
2504
2506
|
canRevokeChildren: string;
|
2505
2507
|
canManageChildrenPermissions: string;
|
2506
2508
|
canViewAnalytics: boolean;
|
2509
|
+
canManageChildrenProfiles?: boolean | undefined;
|
2507
2510
|
}>>;
|
2511
|
+
allowAnyoneToCreateChildren: z.ZodOptional<z.ZodBoolean>;
|
2508
2512
|
}, "strip", z.ZodTypeAny, {
|
2513
|
+
uri: string;
|
2509
2514
|
type?: string | undefined;
|
2510
2515
|
status?: "DRAFT" | "LIVE" | undefined;
|
2511
2516
|
name?: string | undefined;
|
@@ -2513,7 +2518,6 @@ export declare const PaginatedBoostsValidator: z.ZodObject<z.extendShape<{
|
|
2513
2518
|
autoConnectRecipients?: boolean | undefined;
|
2514
2519
|
meta?: Record<string, any> | undefined;
|
2515
2520
|
claimPermissions?: {
|
2516
|
-
canManageChildrenProfiles?: boolean | undefined;
|
2517
2521
|
role: string;
|
2518
2522
|
canEdit: boolean;
|
2519
2523
|
canIssue: boolean;
|
@@ -2525,9 +2529,11 @@ export declare const PaginatedBoostsValidator: z.ZodObject<z.extendShape<{
|
|
2525
2529
|
canRevokeChildren: string;
|
2526
2530
|
canManageChildrenPermissions: string;
|
2527
2531
|
canViewAnalytics: boolean;
|
2532
|
+
canManageChildrenProfiles?: boolean | undefined;
|
2528
2533
|
} | undefined;
|
2529
|
-
|
2534
|
+
allowAnyoneToCreateChildren?: boolean | undefined;
|
2530
2535
|
}, {
|
2536
|
+
uri: string;
|
2531
2537
|
type?: string | undefined;
|
2532
2538
|
status?: "DRAFT" | "LIVE" | undefined;
|
2533
2539
|
name?: string | undefined;
|
@@ -2535,7 +2541,6 @@ export declare const PaginatedBoostsValidator: z.ZodObject<z.extendShape<{
|
|
2535
2541
|
autoConnectRecipients?: boolean | undefined;
|
2536
2542
|
meta?: Record<string, any> | undefined;
|
2537
2543
|
claimPermissions?: {
|
2538
|
-
canManageChildrenProfiles?: boolean | undefined;
|
2539
2544
|
role: string;
|
2540
2545
|
canEdit: boolean;
|
2541
2546
|
canIssue: boolean;
|
@@ -2547,13 +2552,14 @@ export declare const PaginatedBoostsValidator: z.ZodObject<z.extendShape<{
|
|
2547
2552
|
canRevokeChildren: string;
|
2548
2553
|
canManageChildrenPermissions: string;
|
2549
2554
|
canViewAnalytics: boolean;
|
2555
|
+
canManageChildrenProfiles?: boolean | undefined;
|
2550
2556
|
} | undefined;
|
2551
|
-
|
2557
|
+
allowAnyoneToCreateChildren?: boolean | undefined;
|
2552
2558
|
}>, "many">;
|
2553
2559
|
}>, "strip", z.ZodTypeAny, {
|
2554
|
-
cursor?: string | undefined;
|
2555
2560
|
hasMore: boolean;
|
2556
2561
|
records: {
|
2562
|
+
uri: string;
|
2557
2563
|
type?: string | undefined;
|
2558
2564
|
status?: "DRAFT" | "LIVE" | undefined;
|
2559
2565
|
name?: string | undefined;
|
@@ -2561,7 +2567,6 @@ export declare const PaginatedBoostsValidator: z.ZodObject<z.extendShape<{
|
|
2561
2567
|
autoConnectRecipients?: boolean | undefined;
|
2562
2568
|
meta?: Record<string, any> | undefined;
|
2563
2569
|
claimPermissions?: {
|
2564
|
-
canManageChildrenProfiles?: boolean | undefined;
|
2565
2570
|
role: string;
|
2566
2571
|
canEdit: boolean;
|
2567
2572
|
canIssue: boolean;
|
@@ -2573,13 +2578,15 @@ export declare const PaginatedBoostsValidator: z.ZodObject<z.extendShape<{
|
|
2573
2578
|
canRevokeChildren: string;
|
2574
2579
|
canManageChildrenPermissions: string;
|
2575
2580
|
canViewAnalytics: boolean;
|
2581
|
+
canManageChildrenProfiles?: boolean | undefined;
|
2576
2582
|
} | undefined;
|
2577
|
-
|
2583
|
+
allowAnyoneToCreateChildren?: boolean | undefined;
|
2578
2584
|
}[];
|
2579
|
-
}, {
|
2580
2585
|
cursor?: string | undefined;
|
2586
|
+
}, {
|
2581
2587
|
hasMore: boolean;
|
2582
2588
|
records: {
|
2589
|
+
uri: string;
|
2583
2590
|
type?: string | undefined;
|
2584
2591
|
status?: "DRAFT" | "LIVE" | undefined;
|
2585
2592
|
name?: string | undefined;
|
@@ -2587,7 +2594,6 @@ export declare const PaginatedBoostsValidator: z.ZodObject<z.extendShape<{
|
|
2587
2594
|
autoConnectRecipients?: boolean | undefined;
|
2588
2595
|
meta?: Record<string, any> | undefined;
|
2589
2596
|
claimPermissions?: {
|
2590
|
-
canManageChildrenProfiles?: boolean | undefined;
|
2591
2597
|
role: string;
|
2592
2598
|
canEdit: boolean;
|
2593
2599
|
canIssue: boolean;
|
@@ -2599,9 +2605,11 @@ export declare const PaginatedBoostsValidator: z.ZodObject<z.extendShape<{
|
|
2599
2605
|
canRevokeChildren: string;
|
2600
2606
|
canManageChildrenPermissions: string;
|
2601
2607
|
canViewAnalytics: boolean;
|
2608
|
+
canManageChildrenProfiles?: boolean | undefined;
|
2602
2609
|
} | undefined;
|
2603
|
-
|
2610
|
+
allowAnyoneToCreateChildren?: boolean | undefined;
|
2604
2611
|
}[];
|
2612
|
+
cursor?: string | undefined;
|
2605
2613
|
}>;
|
2606
2614
|
export type PaginatedBoostsType = z.infer<typeof PaginatedBoostsValidator>;
|
2607
2615
|
export declare const BoostRecipientValidator: z.ZodObject<{
|
@@ -2659,6 +2667,11 @@ export declare const BoostRecipientValidator: z.ZodObject<{
|
|
2659
2667
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
2660
2668
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
2661
2669
|
}, "strip", z.ZodTypeAny, {
|
2670
|
+
profileId: string;
|
2671
|
+
displayName: string;
|
2672
|
+
shortBio: string;
|
2673
|
+
bio: string;
|
2674
|
+
did: string;
|
2662
2675
|
type?: string | undefined;
|
2663
2676
|
image?: string | undefined;
|
2664
2677
|
email?: string | undefined;
|
@@ -2682,12 +2695,9 @@ export declare const BoostRecipientValidator: z.ZodObject<{
|
|
2682
2695
|
repeatIdBackgroundImage?: boolean | undefined;
|
2683
2696
|
} | undefined;
|
2684
2697
|
dob?: string | undefined;
|
2698
|
+
}, {
|
2685
2699
|
profileId: string;
|
2686
|
-
displayName: string;
|
2687
|
-
shortBio: string;
|
2688
|
-
bio: string;
|
2689
2700
|
did: string;
|
2690
|
-
}, {
|
2691
2701
|
type?: string | undefined;
|
2692
2702
|
image?: string | undefined;
|
2693
2703
|
email?: string | undefined;
|
@@ -2714,16 +2724,17 @@ export declare const BoostRecipientValidator: z.ZodObject<{
|
|
2714
2724
|
repeatIdBackgroundImage?: boolean | undefined;
|
2715
2725
|
} | undefined;
|
2716
2726
|
dob?: string | undefined;
|
2717
|
-
profileId: string;
|
2718
|
-
did: string;
|
2719
2727
|
}>;
|
2720
2728
|
from: z.ZodString;
|
2721
2729
|
received: z.ZodOptional<z.ZodString>;
|
2722
2730
|
uri: z.ZodOptional<z.ZodString>;
|
2723
2731
|
}, "strip", z.ZodTypeAny, {
|
2724
|
-
received?: string | undefined;
|
2725
|
-
uri?: string | undefined;
|
2726
2732
|
to: {
|
2733
|
+
profileId: string;
|
2734
|
+
displayName: string;
|
2735
|
+
shortBio: string;
|
2736
|
+
bio: string;
|
2737
|
+
did: string;
|
2727
2738
|
type?: string | undefined;
|
2728
2739
|
image?: string | undefined;
|
2729
2740
|
email?: string | undefined;
|
@@ -2747,17 +2758,14 @@ export declare const BoostRecipientValidator: z.ZodObject<{
|
|
2747
2758
|
repeatIdBackgroundImage?: boolean | undefined;
|
2748
2759
|
} | undefined;
|
2749
2760
|
dob?: string | undefined;
|
2750
|
-
profileId: string;
|
2751
|
-
displayName: string;
|
2752
|
-
shortBio: string;
|
2753
|
-
bio: string;
|
2754
|
-
did: string;
|
2755
2761
|
};
|
2756
2762
|
from: string;
|
2757
|
-
}, {
|
2758
2763
|
received?: string | undefined;
|
2759
2764
|
uri?: string | undefined;
|
2765
|
+
}, {
|
2760
2766
|
to: {
|
2767
|
+
profileId: string;
|
2768
|
+
did: string;
|
2761
2769
|
type?: string | undefined;
|
2762
2770
|
image?: string | undefined;
|
2763
2771
|
email?: string | undefined;
|
@@ -2784,13 +2792,13 @@ export declare const BoostRecipientValidator: z.ZodObject<{
|
|
2784
2792
|
repeatIdBackgroundImage?: boolean | undefined;
|
2785
2793
|
} | undefined;
|
2786
2794
|
dob?: string | undefined;
|
2787
|
-
profileId: string;
|
2788
|
-
did: string;
|
2789
2795
|
};
|
2790
2796
|
from: string;
|
2797
|
+
received?: string | undefined;
|
2798
|
+
uri?: string | undefined;
|
2791
2799
|
}>;
|
2792
2800
|
export type BoostRecipientInfo = z.infer<typeof BoostRecipientValidator>;
|
2793
|
-
export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.extendShape<{
|
2801
|
+
export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.objectUtil.extendShape<{
|
2794
2802
|
cursor: z.ZodOptional<z.ZodString>;
|
2795
2803
|
hasMore: z.ZodBoolean;
|
2796
2804
|
}, {
|
@@ -2849,6 +2857,11 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.extendShap
|
|
2849
2857
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
2850
2858
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
2851
2859
|
}, "strip", z.ZodTypeAny, {
|
2860
|
+
profileId: string;
|
2861
|
+
displayName: string;
|
2862
|
+
shortBio: string;
|
2863
|
+
bio: string;
|
2864
|
+
did: string;
|
2852
2865
|
type?: string | undefined;
|
2853
2866
|
image?: string | undefined;
|
2854
2867
|
email?: string | undefined;
|
@@ -2872,12 +2885,9 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.extendShap
|
|
2872
2885
|
repeatIdBackgroundImage?: boolean | undefined;
|
2873
2886
|
} | undefined;
|
2874
2887
|
dob?: string | undefined;
|
2888
|
+
}, {
|
2875
2889
|
profileId: string;
|
2876
|
-
displayName: string;
|
2877
|
-
shortBio: string;
|
2878
|
-
bio: string;
|
2879
2890
|
did: string;
|
2880
|
-
}, {
|
2881
2891
|
type?: string | undefined;
|
2882
2892
|
image?: string | undefined;
|
2883
2893
|
email?: string | undefined;
|
@@ -2904,16 +2914,17 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.extendShap
|
|
2904
2914
|
repeatIdBackgroundImage?: boolean | undefined;
|
2905
2915
|
} | undefined;
|
2906
2916
|
dob?: string | undefined;
|
2907
|
-
profileId: string;
|
2908
|
-
did: string;
|
2909
2917
|
}>;
|
2910
2918
|
from: z.ZodString;
|
2911
2919
|
received: z.ZodOptional<z.ZodString>;
|
2912
2920
|
uri: z.ZodOptional<z.ZodString>;
|
2913
2921
|
}, "strip", z.ZodTypeAny, {
|
2914
|
-
received?: string | undefined;
|
2915
|
-
uri?: string | undefined;
|
2916
2922
|
to: {
|
2923
|
+
profileId: string;
|
2924
|
+
displayName: string;
|
2925
|
+
shortBio: string;
|
2926
|
+
bio: string;
|
2927
|
+
did: string;
|
2917
2928
|
type?: string | undefined;
|
2918
2929
|
image?: string | undefined;
|
2919
2930
|
email?: string | undefined;
|
@@ -2937,17 +2948,14 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.extendShap
|
|
2937
2948
|
repeatIdBackgroundImage?: boolean | undefined;
|
2938
2949
|
} | undefined;
|
2939
2950
|
dob?: string | undefined;
|
2940
|
-
profileId: string;
|
2941
|
-
displayName: string;
|
2942
|
-
shortBio: string;
|
2943
|
-
bio: string;
|
2944
|
-
did: string;
|
2945
2951
|
};
|
2946
2952
|
from: string;
|
2947
|
-
}, {
|
2948
2953
|
received?: string | undefined;
|
2949
2954
|
uri?: string | undefined;
|
2955
|
+
}, {
|
2950
2956
|
to: {
|
2957
|
+
profileId: string;
|
2958
|
+
did: string;
|
2951
2959
|
type?: string | undefined;
|
2952
2960
|
image?: string | undefined;
|
2953
2961
|
email?: string | undefined;
|
@@ -2974,18 +2982,20 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.extendShap
|
|
2974
2982
|
repeatIdBackgroundImage?: boolean | undefined;
|
2975
2983
|
} | undefined;
|
2976
2984
|
dob?: string | undefined;
|
2977
|
-
profileId: string;
|
2978
|
-
did: string;
|
2979
2985
|
};
|
2980
2986
|
from: string;
|
2987
|
+
received?: string | undefined;
|
2988
|
+
uri?: string | undefined;
|
2981
2989
|
}>, "many">;
|
2982
2990
|
}>, "strip", z.ZodTypeAny, {
|
2983
|
-
cursor?: string | undefined;
|
2984
2991
|
hasMore: boolean;
|
2985
2992
|
records: {
|
2986
|
-
received?: string | undefined;
|
2987
|
-
uri?: string | undefined;
|
2988
2993
|
to: {
|
2994
|
+
profileId: string;
|
2995
|
+
displayName: string;
|
2996
|
+
shortBio: string;
|
2997
|
+
bio: string;
|
2998
|
+
did: string;
|
2989
2999
|
type?: string | undefined;
|
2990
3000
|
image?: string | undefined;
|
2991
3001
|
email?: string | undefined;
|
@@ -3009,21 +3019,18 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.extendShap
|
|
3009
3019
|
repeatIdBackgroundImage?: boolean | undefined;
|
3010
3020
|
} | undefined;
|
3011
3021
|
dob?: string | undefined;
|
3012
|
-
profileId: string;
|
3013
|
-
displayName: string;
|
3014
|
-
shortBio: string;
|
3015
|
-
bio: string;
|
3016
|
-
did: string;
|
3017
3022
|
};
|
3018
3023
|
from: string;
|
3024
|
+
received?: string | undefined;
|
3025
|
+
uri?: string | undefined;
|
3019
3026
|
}[];
|
3020
|
-
}, {
|
3021
3027
|
cursor?: string | undefined;
|
3028
|
+
}, {
|
3022
3029
|
hasMore: boolean;
|
3023
3030
|
records: {
|
3024
|
-
received?: string | undefined;
|
3025
|
-
uri?: string | undefined;
|
3026
3031
|
to: {
|
3032
|
+
profileId: string;
|
3033
|
+
did: string;
|
3027
3034
|
type?: string | undefined;
|
3028
3035
|
image?: string | undefined;
|
3029
3036
|
email?: string | undefined;
|
@@ -3050,11 +3057,12 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.extendShap
|
|
3050
3057
|
repeatIdBackgroundImage?: boolean | undefined;
|
3051
3058
|
} | undefined;
|
3052
3059
|
dob?: string | undefined;
|
3053
|
-
profileId: string;
|
3054
|
-
did: string;
|
3055
3060
|
};
|
3056
3061
|
from: string;
|
3062
|
+
received?: string | undefined;
|
3063
|
+
uri?: string | undefined;
|
3057
3064
|
}[];
|
3065
|
+
cursor?: string | undefined;
|
3058
3066
|
}>;
|
3059
3067
|
export type PaginatedBoostRecipientsType = z.infer<typeof PaginatedBoostRecipientsValidator>;
|
3060
3068
|
export declare const LCNBoostClaimLinkSigningAuthorityValidator: z.ZodObject<{
|
@@ -3062,13 +3070,13 @@ export declare const LCNBoostClaimLinkSigningAuthorityValidator: z.ZodObject<{
|
|
3062
3070
|
name: z.ZodString;
|
3063
3071
|
did: z.ZodOptional<z.ZodString>;
|
3064
3072
|
}, "strip", z.ZodTypeAny, {
|
3065
|
-
did?: string | undefined;
|
3066
3073
|
name: string;
|
3067
3074
|
endpoint: string;
|
3068
|
-
}, {
|
3069
3075
|
did?: string | undefined;
|
3076
|
+
}, {
|
3070
3077
|
name: string;
|
3071
3078
|
endpoint: string;
|
3079
|
+
did?: string | undefined;
|
3072
3080
|
}>;
|
3073
3081
|
export type LCNBoostClaimLinkSigningAuthorityType = z.infer<typeof LCNBoostClaimLinkSigningAuthorityValidator>;
|
3074
3082
|
export declare const LCNBoostClaimLinkOptionsValidator: z.ZodObject<{
|
@@ -3182,7 +3190,6 @@ export declare const ConsentFlowContractValidator: z.ZodObject<{
|
|
3182
3190
|
required: boolean;
|
3183
3191
|
}>>>;
|
3184
3192
|
}, "strip", z.ZodTypeAny, {
|
3185
|
-
anonymize?: boolean | undefined;
|
3186
3193
|
credentials: {
|
3187
3194
|
categories: Record<string, {
|
3188
3195
|
required: boolean;
|
@@ -3191,6 +3198,7 @@ export declare const ConsentFlowContractValidator: z.ZodObject<{
|
|
3191
3198
|
personal: Record<string, {
|
3192
3199
|
required: boolean;
|
3193
3200
|
}>;
|
3201
|
+
anonymize?: boolean | undefined;
|
3194
3202
|
}, {
|
3195
3203
|
anonymize?: boolean | undefined;
|
3196
3204
|
credentials?: {
|
@@ -3248,7 +3256,6 @@ export declare const ConsentFlowContractValidator: z.ZodObject<{
|
|
3248
3256
|
}>>;
|
3249
3257
|
}, "strip", z.ZodTypeAny, {
|
3250
3258
|
read: {
|
3251
|
-
anonymize?: boolean | undefined;
|
3252
3259
|
credentials: {
|
3253
3260
|
categories: Record<string, {
|
3254
3261
|
required: boolean;
|
@@ -3257,6 +3264,7 @@ export declare const ConsentFlowContractValidator: z.ZodObject<{
|
|
3257
3264
|
personal: Record<string, {
|
3258
3265
|
required: boolean;
|
3259
3266
|
}>;
|
3267
|
+
anonymize?: boolean | undefined;
|
3260
3268
|
};
|
3261
3269
|
write: {
|
3262
3270
|
credentials: {
|
@@ -3322,7 +3330,6 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
3322
3330
|
required: boolean;
|
3323
3331
|
}>>>;
|
3324
3332
|
}, "strip", z.ZodTypeAny, {
|
3325
|
-
anonymize?: boolean | undefined;
|
3326
3333
|
credentials: {
|
3327
3334
|
categories: Record<string, {
|
3328
3335
|
required: boolean;
|
@@ -3331,6 +3338,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
3331
3338
|
personal: Record<string, {
|
3332
3339
|
required: boolean;
|
3333
3340
|
}>;
|
3341
|
+
anonymize?: boolean | undefined;
|
3334
3342
|
}, {
|
3335
3343
|
anonymize?: boolean | undefined;
|
3336
3344
|
credentials?: {
|
@@ -3388,7 +3396,6 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
3388
3396
|
}>>;
|
3389
3397
|
}, "strip", z.ZodTypeAny, {
|
3390
3398
|
read: {
|
3391
|
-
anonymize?: boolean | undefined;
|
3392
3399
|
credentials: {
|
3393
3400
|
categories: Record<string, {
|
3394
3401
|
required: boolean;
|
@@ -3397,6 +3404,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
3397
3404
|
personal: Record<string, {
|
3398
3405
|
required: boolean;
|
3399
3406
|
}>;
|
3407
|
+
anonymize?: boolean | undefined;
|
3400
3408
|
};
|
3401
3409
|
write: {
|
3402
3410
|
credentials: {
|
@@ -3485,6 +3493,11 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
3485
3493
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
3486
3494
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
3487
3495
|
}, "strip", z.ZodTypeAny, {
|
3496
|
+
profileId: string;
|
3497
|
+
displayName: string;
|
3498
|
+
shortBio: string;
|
3499
|
+
bio: string;
|
3500
|
+
did: string;
|
3488
3501
|
type?: string | undefined;
|
3489
3502
|
image?: string | undefined;
|
3490
3503
|
email?: string | undefined;
|
@@ -3508,12 +3521,9 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
3508
3521
|
repeatIdBackgroundImage?: boolean | undefined;
|
3509
3522
|
} | undefined;
|
3510
3523
|
dob?: string | undefined;
|
3524
|
+
}, {
|
3511
3525
|
profileId: string;
|
3512
|
-
displayName: string;
|
3513
|
-
shortBio: string;
|
3514
|
-
bio: string;
|
3515
3526
|
did: string;
|
3516
|
-
}, {
|
3517
3527
|
type?: string | undefined;
|
3518
3528
|
image?: string | undefined;
|
3519
3529
|
email?: string | undefined;
|
@@ -3540,8 +3550,6 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
3540
3550
|
repeatIdBackgroundImage?: boolean | undefined;
|
3541
3551
|
} | undefined;
|
3542
3552
|
dob?: string | undefined;
|
3543
|
-
profileId: string;
|
3544
|
-
did: string;
|
3545
3553
|
}>;
|
3546
3554
|
name: z.ZodString;
|
3547
3555
|
subtitle: z.ZodOptional<z.ZodString>;
|
@@ -3610,42 +3618,15 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
3610
3618
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
3611
3619
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
3612
3620
|
}, "strip", z.ZodTypeAny, {
|
3613
|
-
type?: string | undefined;
|
3614
|
-
image?: string | undefined;
|
3615
|
-
email?: string | undefined;
|
3616
|
-
role?: string | undefined;
|
3617
|
-
isPrivate?: boolean | undefined;
|
3618
|
-
heroImage?: string | undefined;
|
3619
|
-
websiteLink?: string | undefined;
|
3620
|
-
isServiceProfile?: boolean | undefined;
|
3621
|
-
notificationsWebhook?: string | undefined;
|
3622
|
-
display?: {
|
3623
|
-
backgroundColor?: string | undefined;
|
3624
|
-
backgroundImage?: string | undefined;
|
3625
|
-
fadeBackgroundImage?: boolean | undefined;
|
3626
|
-
repeatBackgroundImage?: boolean | undefined;
|
3627
|
-
fontColor?: string | undefined;
|
3628
|
-
accentColor?: string | undefined;
|
3629
|
-
accentFontColor?: string | undefined;
|
3630
|
-
idBackgroundImage?: string | undefined;
|
3631
|
-
fadeIdBackgroundImage?: boolean | undefined;
|
3632
|
-
idBackgroundColor?: string | undefined;
|
3633
|
-
repeatIdBackgroundImage?: boolean | undefined;
|
3634
|
-
} | undefined;
|
3635
|
-
dob?: string | undefined;
|
3636
3621
|
profileId: string;
|
3637
3622
|
displayName: string;
|
3638
3623
|
shortBio: string;
|
3639
3624
|
bio: string;
|
3640
3625
|
did: string;
|
3641
|
-
}, {
|
3642
3626
|
type?: string | undefined;
|
3643
3627
|
image?: string | undefined;
|
3644
3628
|
email?: string | undefined;
|
3645
3629
|
role?: string | undefined;
|
3646
|
-
displayName?: string | undefined;
|
3647
|
-
shortBio?: string | undefined;
|
3648
|
-
bio?: string | undefined;
|
3649
3630
|
isPrivate?: boolean | undefined;
|
3650
3631
|
heroImage?: string | undefined;
|
3651
3632
|
websiteLink?: string | undefined;
|
@@ -3665,24 +3646,16 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
3665
3646
|
repeatIdBackgroundImage?: boolean | undefined;
|
3666
3647
|
} | undefined;
|
3667
3648
|
dob?: string | undefined;
|
3649
|
+
}, {
|
3668
3650
|
profileId: string;
|
3669
3651
|
did: string;
|
3670
|
-
}>, "many">>;
|
3671
|
-
}, "strip", z.ZodTypeAny, {
|
3672
|
-
description?: string | undefined;
|
3673
|
-
image?: string | undefined;
|
3674
|
-
subtitle?: string | undefined;
|
3675
|
-
reasonForAccessing?: string | undefined;
|
3676
|
-
needsGuardianConsent?: boolean | undefined;
|
3677
|
-
redirectUrl?: string | undefined;
|
3678
|
-
frontDoorBoostUri?: string | undefined;
|
3679
|
-
expiresAt?: string | undefined;
|
3680
|
-
autoBoosts?: string[] | undefined;
|
3681
|
-
writers?: {
|
3682
3652
|
type?: string | undefined;
|
3683
3653
|
image?: string | undefined;
|
3684
3654
|
email?: string | undefined;
|
3685
3655
|
role?: string | undefined;
|
3656
|
+
displayName?: string | undefined;
|
3657
|
+
shortBio?: string | undefined;
|
3658
|
+
bio?: string | undefined;
|
3686
3659
|
isPrivate?: boolean | undefined;
|
3687
3660
|
heroImage?: string | undefined;
|
3688
3661
|
websiteLink?: string | undefined;
|
@@ -3702,19 +3675,14 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
3702
3675
|
repeatIdBackgroundImage?: boolean | undefined;
|
3703
3676
|
} | undefined;
|
3704
3677
|
dob?: string | undefined;
|
3705
|
-
|
3706
|
-
|
3707
|
-
shortBio: string;
|
3708
|
-
bio: string;
|
3709
|
-
did: string;
|
3710
|
-
}[] | undefined;
|
3678
|
+
}>, "many">>;
|
3679
|
+
}, "strip", z.ZodTypeAny, {
|
3711
3680
|
name: string;
|
3712
3681
|
createdAt: string;
|
3713
3682
|
uri: string;
|
3714
3683
|
updatedAt: string;
|
3715
3684
|
contract: {
|
3716
3685
|
read: {
|
3717
|
-
anonymize?: boolean | undefined;
|
3718
3686
|
credentials: {
|
3719
3687
|
categories: Record<string, {
|
3720
3688
|
required: boolean;
|
@@ -3723,6 +3691,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
3723
3691
|
personal: Record<string, {
|
3724
3692
|
required: boolean;
|
3725
3693
|
}>;
|
3694
|
+
anonymize?: boolean | undefined;
|
3726
3695
|
};
|
3727
3696
|
write: {
|
3728
3697
|
credentials: {
|
@@ -3736,6 +3705,11 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
3736
3705
|
};
|
3737
3706
|
};
|
3738
3707
|
owner: {
|
3708
|
+
profileId: string;
|
3709
|
+
displayName: string;
|
3710
|
+
shortBio: string;
|
3711
|
+
bio: string;
|
3712
|
+
did: string;
|
3739
3713
|
type?: string | undefined;
|
3740
3714
|
image?: string | undefined;
|
3741
3715
|
email?: string | undefined;
|
@@ -3759,13 +3733,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
3759
3733
|
repeatIdBackgroundImage?: boolean | undefined;
|
3760
3734
|
} | undefined;
|
3761
3735
|
dob?: string | undefined;
|
3762
|
-
profileId: string;
|
3763
|
-
displayName: string;
|
3764
|
-
shortBio: string;
|
3765
|
-
bio: string;
|
3766
|
-
did: string;
|
3767
3736
|
};
|
3768
|
-
}, {
|
3769
3737
|
description?: string | undefined;
|
3770
3738
|
image?: string | undefined;
|
3771
3739
|
subtitle?: string | undefined;
|
@@ -3776,13 +3744,15 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
3776
3744
|
expiresAt?: string | undefined;
|
3777
3745
|
autoBoosts?: string[] | undefined;
|
3778
3746
|
writers?: {
|
3747
|
+
profileId: string;
|
3748
|
+
displayName: string;
|
3749
|
+
shortBio: string;
|
3750
|
+
bio: string;
|
3751
|
+
did: string;
|
3779
3752
|
type?: string | undefined;
|
3780
3753
|
image?: string | undefined;
|
3781
3754
|
email?: string | undefined;
|
3782
3755
|
role?: string | undefined;
|
3783
|
-
displayName?: string | undefined;
|
3784
|
-
shortBio?: string | undefined;
|
3785
|
-
bio?: string | undefined;
|
3786
3756
|
isPrivate?: boolean | undefined;
|
3787
3757
|
heroImage?: string | undefined;
|
3788
3758
|
websiteLink?: string | undefined;
|
@@ -3802,9 +3772,8 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
3802
3772
|
repeatIdBackgroundImage?: boolean | undefined;
|
3803
3773
|
} | undefined;
|
3804
3774
|
dob?: string | undefined;
|
3805
|
-
profileId: string;
|
3806
|
-
did: string;
|
3807
3775
|
}[] | undefined;
|
3776
|
+
}, {
|
3808
3777
|
name: string;
|
3809
3778
|
createdAt: string;
|
3810
3779
|
uri: string;
|
@@ -3833,6 +3802,8 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
3833
3802
|
} | undefined;
|
3834
3803
|
};
|
3835
3804
|
owner: {
|
3805
|
+
profileId: string;
|
3806
|
+
did: string;
|
3836
3807
|
type?: string | undefined;
|
3837
3808
|
image?: string | undefined;
|
3838
3809
|
email?: string | undefined;
|
@@ -3859,13 +3830,50 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
3859
3830
|
repeatIdBackgroundImage?: boolean | undefined;
|
3860
3831
|
} | undefined;
|
3861
3832
|
dob?: string | undefined;
|
3833
|
+
};
|
3834
|
+
description?: string | undefined;
|
3835
|
+
image?: string | undefined;
|
3836
|
+
subtitle?: string | undefined;
|
3837
|
+
reasonForAccessing?: string | undefined;
|
3838
|
+
needsGuardianConsent?: boolean | undefined;
|
3839
|
+
redirectUrl?: string | undefined;
|
3840
|
+
frontDoorBoostUri?: string | undefined;
|
3841
|
+
expiresAt?: string | undefined;
|
3842
|
+
autoBoosts?: string[] | undefined;
|
3843
|
+
writers?: {
|
3862
3844
|
profileId: string;
|
3863
3845
|
did: string;
|
3864
|
-
|
3846
|
+
type?: string | undefined;
|
3847
|
+
image?: string | undefined;
|
3848
|
+
email?: string | undefined;
|
3849
|
+
role?: string | undefined;
|
3850
|
+
displayName?: string | undefined;
|
3851
|
+
shortBio?: string | undefined;
|
3852
|
+
bio?: string | undefined;
|
3853
|
+
isPrivate?: boolean | undefined;
|
3854
|
+
heroImage?: string | undefined;
|
3855
|
+
websiteLink?: string | undefined;
|
3856
|
+
isServiceProfile?: boolean | undefined;
|
3857
|
+
notificationsWebhook?: string | undefined;
|
3858
|
+
display?: {
|
3859
|
+
backgroundColor?: string | undefined;
|
3860
|
+
backgroundImage?: string | undefined;
|
3861
|
+
fadeBackgroundImage?: boolean | undefined;
|
3862
|
+
repeatBackgroundImage?: boolean | undefined;
|
3863
|
+
fontColor?: string | undefined;
|
3864
|
+
accentColor?: string | undefined;
|
3865
|
+
accentFontColor?: string | undefined;
|
3866
|
+
idBackgroundImage?: string | undefined;
|
3867
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
3868
|
+
idBackgroundColor?: string | undefined;
|
3869
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
3870
|
+
} | undefined;
|
3871
|
+
dob?: string | undefined;
|
3872
|
+
}[] | undefined;
|
3865
3873
|
}>;
|
3866
3874
|
export type ConsentFlowContractDetails = z.infer<typeof ConsentFlowContractDetailsValidator>;
|
3867
3875
|
export type ConsentFlowContractDetailsInput = z.input<typeof ConsentFlowContractDetailsValidator>;
|
3868
|
-
export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.extendShape<{
|
3876
|
+
export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objectUtil.extendShape<{
|
3869
3877
|
cursor: z.ZodOptional<z.ZodString>;
|
3870
3878
|
hasMore: z.ZodBoolean;
|
3871
3879
|
}, {
|
@@ -3898,7 +3906,6 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
3898
3906
|
required: boolean;
|
3899
3907
|
}>>>;
|
3900
3908
|
}, "strip", z.ZodTypeAny, {
|
3901
|
-
anonymize?: boolean | undefined;
|
3902
3909
|
credentials: {
|
3903
3910
|
categories: Record<string, {
|
3904
3911
|
required: boolean;
|
@@ -3907,6 +3914,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
3907
3914
|
personal: Record<string, {
|
3908
3915
|
required: boolean;
|
3909
3916
|
}>;
|
3917
|
+
anonymize?: boolean | undefined;
|
3910
3918
|
}, {
|
3911
3919
|
anonymize?: boolean | undefined;
|
3912
3920
|
credentials?: {
|
@@ -3964,7 +3972,6 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
3964
3972
|
}>>;
|
3965
3973
|
}, "strip", z.ZodTypeAny, {
|
3966
3974
|
read: {
|
3967
|
-
anonymize?: boolean | undefined;
|
3968
3975
|
credentials: {
|
3969
3976
|
categories: Record<string, {
|
3970
3977
|
required: boolean;
|
@@ -3973,6 +3980,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
3973
3980
|
personal: Record<string, {
|
3974
3981
|
required: boolean;
|
3975
3982
|
}>;
|
3983
|
+
anonymize?: boolean | undefined;
|
3976
3984
|
};
|
3977
3985
|
write: {
|
3978
3986
|
credentials: {
|
@@ -4061,6 +4069,11 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
4061
4069
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
4062
4070
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
4063
4071
|
}, "strip", z.ZodTypeAny, {
|
4072
|
+
profileId: string;
|
4073
|
+
displayName: string;
|
4074
|
+
shortBio: string;
|
4075
|
+
bio: string;
|
4076
|
+
did: string;
|
4064
4077
|
type?: string | undefined;
|
4065
4078
|
image?: string | undefined;
|
4066
4079
|
email?: string | undefined;
|
@@ -4084,12 +4097,9 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
4084
4097
|
repeatIdBackgroundImage?: boolean | undefined;
|
4085
4098
|
} | undefined;
|
4086
4099
|
dob?: string | undefined;
|
4100
|
+
}, {
|
4087
4101
|
profileId: string;
|
4088
|
-
displayName: string;
|
4089
|
-
shortBio: string;
|
4090
|
-
bio: string;
|
4091
4102
|
did: string;
|
4092
|
-
}, {
|
4093
4103
|
type?: string | undefined;
|
4094
4104
|
image?: string | undefined;
|
4095
4105
|
email?: string | undefined;
|
@@ -4116,8 +4126,6 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
4116
4126
|
repeatIdBackgroundImage?: boolean | undefined;
|
4117
4127
|
} | undefined;
|
4118
4128
|
dob?: string | undefined;
|
4119
|
-
profileId: string;
|
4120
|
-
did: string;
|
4121
4129
|
}>;
|
4122
4130
|
name: z.ZodString;
|
4123
4131
|
subtitle: z.ZodOptional<z.ZodString>;
|
@@ -4186,6 +4194,11 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
4186
4194
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
4187
4195
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
4188
4196
|
}, "strip", z.ZodTypeAny, {
|
4197
|
+
profileId: string;
|
4198
|
+
displayName: string;
|
4199
|
+
shortBio: string;
|
4200
|
+
bio: string;
|
4201
|
+
did: string;
|
4189
4202
|
type?: string | undefined;
|
4190
4203
|
image?: string | undefined;
|
4191
4204
|
email?: string | undefined;
|
@@ -4209,12 +4222,9 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
4209
4222
|
repeatIdBackgroundImage?: boolean | undefined;
|
4210
4223
|
} | undefined;
|
4211
4224
|
dob?: string | undefined;
|
4225
|
+
}, {
|
4212
4226
|
profileId: string;
|
4213
|
-
displayName: string;
|
4214
|
-
shortBio: string;
|
4215
|
-
bio: string;
|
4216
4227
|
did: string;
|
4217
|
-
}, {
|
4218
4228
|
type?: string | undefined;
|
4219
4229
|
image?: string | undefined;
|
4220
4230
|
email?: string | undefined;
|
@@ -4241,56 +4251,14 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
4241
4251
|
repeatIdBackgroundImage?: boolean | undefined;
|
4242
4252
|
} | undefined;
|
4243
4253
|
dob?: string | undefined;
|
4244
|
-
profileId: string;
|
4245
|
-
did: string;
|
4246
4254
|
}>, "many">>;
|
4247
4255
|
}, "owner">, "strip", z.ZodTypeAny, {
|
4248
|
-
description?: string | undefined;
|
4249
|
-
image?: string | undefined;
|
4250
|
-
subtitle?: string | undefined;
|
4251
|
-
reasonForAccessing?: string | undefined;
|
4252
|
-
needsGuardianConsent?: boolean | undefined;
|
4253
|
-
redirectUrl?: string | undefined;
|
4254
|
-
frontDoorBoostUri?: string | undefined;
|
4255
|
-
expiresAt?: string | undefined;
|
4256
|
-
autoBoosts?: string[] | undefined;
|
4257
|
-
writers?: {
|
4258
|
-
type?: string | undefined;
|
4259
|
-
image?: string | undefined;
|
4260
|
-
email?: string | undefined;
|
4261
|
-
role?: string | undefined;
|
4262
|
-
isPrivate?: boolean | undefined;
|
4263
|
-
heroImage?: string | undefined;
|
4264
|
-
websiteLink?: string | undefined;
|
4265
|
-
isServiceProfile?: boolean | undefined;
|
4266
|
-
notificationsWebhook?: string | undefined;
|
4267
|
-
display?: {
|
4268
|
-
backgroundColor?: string | undefined;
|
4269
|
-
backgroundImage?: string | undefined;
|
4270
|
-
fadeBackgroundImage?: boolean | undefined;
|
4271
|
-
repeatBackgroundImage?: boolean | undefined;
|
4272
|
-
fontColor?: string | undefined;
|
4273
|
-
accentColor?: string | undefined;
|
4274
|
-
accentFontColor?: string | undefined;
|
4275
|
-
idBackgroundImage?: string | undefined;
|
4276
|
-
fadeIdBackgroundImage?: boolean | undefined;
|
4277
|
-
idBackgroundColor?: string | undefined;
|
4278
|
-
repeatIdBackgroundImage?: boolean | undefined;
|
4279
|
-
} | undefined;
|
4280
|
-
dob?: string | undefined;
|
4281
|
-
profileId: string;
|
4282
|
-
displayName: string;
|
4283
|
-
shortBio: string;
|
4284
|
-
bio: string;
|
4285
|
-
did: string;
|
4286
|
-
}[] | undefined;
|
4287
4256
|
name: string;
|
4288
4257
|
createdAt: string;
|
4289
4258
|
uri: string;
|
4290
4259
|
updatedAt: string;
|
4291
4260
|
contract: {
|
4292
4261
|
read: {
|
4293
|
-
anonymize?: boolean | undefined;
|
4294
4262
|
credentials: {
|
4295
4263
|
categories: Record<string, {
|
4296
4264
|
required: boolean;
|
@@ -4299,6 +4267,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
4299
4267
|
personal: Record<string, {
|
4300
4268
|
required: boolean;
|
4301
4269
|
}>;
|
4270
|
+
anonymize?: boolean | undefined;
|
4302
4271
|
};
|
4303
4272
|
write: {
|
4304
4273
|
credentials: {
|
@@ -4311,7 +4280,6 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
4311
4280
|
}>;
|
4312
4281
|
};
|
4313
4282
|
};
|
4314
|
-
}, {
|
4315
4283
|
description?: string | undefined;
|
4316
4284
|
image?: string | undefined;
|
4317
4285
|
subtitle?: string | undefined;
|
@@ -4322,13 +4290,15 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
4322
4290
|
expiresAt?: string | undefined;
|
4323
4291
|
autoBoosts?: string[] | undefined;
|
4324
4292
|
writers?: {
|
4293
|
+
profileId: string;
|
4294
|
+
displayName: string;
|
4295
|
+
shortBio: string;
|
4296
|
+
bio: string;
|
4297
|
+
did: string;
|
4325
4298
|
type?: string | undefined;
|
4326
4299
|
image?: string | undefined;
|
4327
4300
|
email?: string | undefined;
|
4328
4301
|
role?: string | undefined;
|
4329
|
-
displayName?: string | undefined;
|
4330
|
-
shortBio?: string | undefined;
|
4331
|
-
bio?: string | undefined;
|
4332
4302
|
isPrivate?: boolean | undefined;
|
4333
4303
|
heroImage?: string | undefined;
|
4334
4304
|
websiteLink?: string | undefined;
|
@@ -4348,9 +4318,8 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
4348
4318
|
repeatIdBackgroundImage?: boolean | undefined;
|
4349
4319
|
} | undefined;
|
4350
4320
|
dob?: string | undefined;
|
4351
|
-
profileId: string;
|
4352
|
-
did: string;
|
4353
4321
|
}[] | undefined;
|
4322
|
+
}, {
|
4354
4323
|
name: string;
|
4355
4324
|
createdAt: string;
|
4356
4325
|
uri: string;
|
@@ -4378,11 +4347,6 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
4378
4347
|
}> | undefined;
|
4379
4348
|
} | undefined;
|
4380
4349
|
};
|
4381
|
-
}>, "many">;
|
4382
|
-
}>, "strip", z.ZodTypeAny, {
|
4383
|
-
cursor?: string | undefined;
|
4384
|
-
hasMore: boolean;
|
4385
|
-
records: {
|
4386
4350
|
description?: string | undefined;
|
4387
4351
|
image?: string | undefined;
|
4388
4352
|
subtitle?: string | undefined;
|
@@ -4393,10 +4357,15 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
4393
4357
|
expiresAt?: string | undefined;
|
4394
4358
|
autoBoosts?: string[] | undefined;
|
4395
4359
|
writers?: {
|
4360
|
+
profileId: string;
|
4361
|
+
did: string;
|
4396
4362
|
type?: string | undefined;
|
4397
4363
|
image?: string | undefined;
|
4398
4364
|
email?: string | undefined;
|
4399
4365
|
role?: string | undefined;
|
4366
|
+
displayName?: string | undefined;
|
4367
|
+
shortBio?: string | undefined;
|
4368
|
+
bio?: string | undefined;
|
4400
4369
|
isPrivate?: boolean | undefined;
|
4401
4370
|
heroImage?: string | undefined;
|
4402
4371
|
websiteLink?: string | undefined;
|
@@ -4416,19 +4385,17 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
4416
4385
|
repeatIdBackgroundImage?: boolean | undefined;
|
4417
4386
|
} | undefined;
|
4418
4387
|
dob?: string | undefined;
|
4419
|
-
profileId: string;
|
4420
|
-
displayName: string;
|
4421
|
-
shortBio: string;
|
4422
|
-
bio: string;
|
4423
|
-
did: string;
|
4424
4388
|
}[] | undefined;
|
4389
|
+
}>, "many">;
|
4390
|
+
}>, "strip", z.ZodTypeAny, {
|
4391
|
+
hasMore: boolean;
|
4392
|
+
records: {
|
4425
4393
|
name: string;
|
4426
4394
|
createdAt: string;
|
4427
4395
|
uri: string;
|
4428
4396
|
updatedAt: string;
|
4429
4397
|
contract: {
|
4430
4398
|
read: {
|
4431
|
-
anonymize?: boolean | undefined;
|
4432
4399
|
credentials: {
|
4433
4400
|
categories: Record<string, {
|
4434
4401
|
required: boolean;
|
@@ -4437,6 +4404,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
4437
4404
|
personal: Record<string, {
|
4438
4405
|
required: boolean;
|
4439
4406
|
}>;
|
4407
|
+
anonymize?: boolean | undefined;
|
4440
4408
|
};
|
4441
4409
|
write: {
|
4442
4410
|
credentials: {
|
@@ -4449,11 +4417,6 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
4449
4417
|
}>;
|
4450
4418
|
};
|
4451
4419
|
};
|
4452
|
-
}[];
|
4453
|
-
}, {
|
4454
|
-
cursor?: string | undefined;
|
4455
|
-
hasMore: boolean;
|
4456
|
-
records: {
|
4457
4420
|
description?: string | undefined;
|
4458
4421
|
image?: string | undefined;
|
4459
4422
|
subtitle?: string | undefined;
|
@@ -4464,13 +4427,15 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
4464
4427
|
expiresAt?: string | undefined;
|
4465
4428
|
autoBoosts?: string[] | undefined;
|
4466
4429
|
writers?: {
|
4430
|
+
profileId: string;
|
4431
|
+
displayName: string;
|
4432
|
+
shortBio: string;
|
4433
|
+
bio: string;
|
4434
|
+
did: string;
|
4467
4435
|
type?: string | undefined;
|
4468
4436
|
image?: string | undefined;
|
4469
4437
|
email?: string | undefined;
|
4470
4438
|
role?: string | undefined;
|
4471
|
-
displayName?: string | undefined;
|
4472
|
-
shortBio?: string | undefined;
|
4473
|
-
bio?: string | undefined;
|
4474
4439
|
isPrivate?: boolean | undefined;
|
4475
4440
|
heroImage?: string | undefined;
|
4476
4441
|
websiteLink?: string | undefined;
|
@@ -4490,9 +4455,12 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
4490
4455
|
repeatIdBackgroundImage?: boolean | undefined;
|
4491
4456
|
} | undefined;
|
4492
4457
|
dob?: string | undefined;
|
4493
|
-
profileId: string;
|
4494
|
-
did: string;
|
4495
4458
|
}[] | undefined;
|
4459
|
+
}[];
|
4460
|
+
cursor?: string | undefined;
|
4461
|
+
}, {
|
4462
|
+
hasMore: boolean;
|
4463
|
+
records: {
|
4496
4464
|
name: string;
|
4497
4465
|
createdAt: string;
|
4498
4466
|
uri: string;
|
@@ -4520,7 +4488,47 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
4520
4488
|
}> | undefined;
|
4521
4489
|
} | undefined;
|
4522
4490
|
};
|
4491
|
+
description?: string | undefined;
|
4492
|
+
image?: string | undefined;
|
4493
|
+
subtitle?: string | undefined;
|
4494
|
+
reasonForAccessing?: string | undefined;
|
4495
|
+
needsGuardianConsent?: boolean | undefined;
|
4496
|
+
redirectUrl?: string | undefined;
|
4497
|
+
frontDoorBoostUri?: string | undefined;
|
4498
|
+
expiresAt?: string | undefined;
|
4499
|
+
autoBoosts?: string[] | undefined;
|
4500
|
+
writers?: {
|
4501
|
+
profileId: string;
|
4502
|
+
did: string;
|
4503
|
+
type?: string | undefined;
|
4504
|
+
image?: string | undefined;
|
4505
|
+
email?: string | undefined;
|
4506
|
+
role?: string | undefined;
|
4507
|
+
displayName?: string | undefined;
|
4508
|
+
shortBio?: string | undefined;
|
4509
|
+
bio?: string | undefined;
|
4510
|
+
isPrivate?: boolean | undefined;
|
4511
|
+
heroImage?: string | undefined;
|
4512
|
+
websiteLink?: string | undefined;
|
4513
|
+
isServiceProfile?: boolean | undefined;
|
4514
|
+
notificationsWebhook?: string | undefined;
|
4515
|
+
display?: {
|
4516
|
+
backgroundColor?: string | undefined;
|
4517
|
+
backgroundImage?: string | undefined;
|
4518
|
+
fadeBackgroundImage?: boolean | undefined;
|
4519
|
+
repeatBackgroundImage?: boolean | undefined;
|
4520
|
+
fontColor?: string | undefined;
|
4521
|
+
accentColor?: string | undefined;
|
4522
|
+
accentFontColor?: string | undefined;
|
4523
|
+
idBackgroundImage?: string | undefined;
|
4524
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
4525
|
+
idBackgroundColor?: string | undefined;
|
4526
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
4527
|
+
} | undefined;
|
4528
|
+
dob?: string | undefined;
|
4529
|
+
}[] | undefined;
|
4523
4530
|
}[];
|
4531
|
+
cursor?: string | undefined;
|
4524
4532
|
}>;
|
4525
4533
|
export type PaginatedConsentFlowContracts = z.infer<typeof PaginatedConsentFlowContractsValidator>;
|
4526
4534
|
export declare const ConsentFlowContractDataValidator: z.ZodObject<{
|
@@ -4540,14 +4548,14 @@ export declare const ConsentFlowContractDataValidator: z.ZodObject<{
|
|
4540
4548
|
};
|
4541
4549
|
personal: Record<string, string>;
|
4542
4550
|
}, {
|
4543
|
-
personal?: Record<string, string> | undefined;
|
4544
4551
|
date: string;
|
4545
4552
|
credentials: {
|
4546
4553
|
categories?: Record<string, string[]> | undefined;
|
4547
4554
|
};
|
4555
|
+
personal?: Record<string, string> | undefined;
|
4548
4556
|
}>;
|
4549
4557
|
export type ConsentFlowContractData = z.infer<typeof ConsentFlowContractDataValidator>;
|
4550
|
-
export declare const PaginatedConsentFlowDataValidator: z.ZodObject<z.extendShape<{
|
4558
|
+
export declare const PaginatedConsentFlowDataValidator: z.ZodObject<z.objectUtil.extendShape<{
|
4551
4559
|
cursor: z.ZodOptional<z.ZodString>;
|
4552
4560
|
hasMore: z.ZodBoolean;
|
4553
4561
|
}, {
|
@@ -4568,14 +4576,13 @@ export declare const PaginatedConsentFlowDataValidator: z.ZodObject<z.extendShap
|
|
4568
4576
|
};
|
4569
4577
|
personal: Record<string, string>;
|
4570
4578
|
}, {
|
4571
|
-
personal?: Record<string, string> | undefined;
|
4572
4579
|
date: string;
|
4573
4580
|
credentials: {
|
4574
4581
|
categories?: Record<string, string[]> | undefined;
|
4575
4582
|
};
|
4583
|
+
personal?: Record<string, string> | undefined;
|
4576
4584
|
}>, "many">;
|
4577
4585
|
}>, "strip", z.ZodTypeAny, {
|
4578
|
-
cursor?: string | undefined;
|
4579
4586
|
hasMore: boolean;
|
4580
4587
|
records: {
|
4581
4588
|
date: string;
|
@@ -4584,16 +4591,17 @@ export declare const PaginatedConsentFlowDataValidator: z.ZodObject<z.extendShap
|
|
4584
4591
|
};
|
4585
4592
|
personal: Record<string, string>;
|
4586
4593
|
}[];
|
4587
|
-
}, {
|
4588
4594
|
cursor?: string | undefined;
|
4595
|
+
}, {
|
4589
4596
|
hasMore: boolean;
|
4590
4597
|
records: {
|
4591
|
-
personal?: Record<string, string> | undefined;
|
4592
4598
|
date: string;
|
4593
4599
|
credentials: {
|
4594
4600
|
categories?: Record<string, string[]> | undefined;
|
4595
4601
|
};
|
4602
|
+
personal?: Record<string, string> | undefined;
|
4596
4603
|
}[];
|
4604
|
+
cursor?: string | undefined;
|
4597
4605
|
}>;
|
4598
4606
|
export type PaginatedConsentFlowData = z.infer<typeof PaginatedConsentFlowDataValidator>;
|
4599
4607
|
export declare const ConsentFlowContractDataForDidValidator: z.ZodObject<{
|
@@ -4619,16 +4627,16 @@ export declare const ConsentFlowContractDataForDidValidator: z.ZodObject<{
|
|
4619
4627
|
personal: Record<string, string>;
|
4620
4628
|
contractUri: string;
|
4621
4629
|
}, {
|
4622
|
-
personal?: Record<string, string> | undefined;
|
4623
4630
|
date: string;
|
4624
4631
|
credentials: {
|
4625
4632
|
uri: string;
|
4626
4633
|
category: string;
|
4627
4634
|
}[];
|
4628
4635
|
contractUri: string;
|
4636
|
+
personal?: Record<string, string> | undefined;
|
4629
4637
|
}>;
|
4630
4638
|
export type ConsentFlowContractDataForDid = z.infer<typeof ConsentFlowContractDataForDidValidator>;
|
4631
|
-
export declare const PaginatedConsentFlowDataForDidValidator: z.ZodObject<z.extendShape<{
|
4639
|
+
export declare const PaginatedConsentFlowDataForDidValidator: z.ZodObject<z.objectUtil.extendShape<{
|
4632
4640
|
cursor: z.ZodOptional<z.ZodString>;
|
4633
4641
|
hasMore: z.ZodBoolean;
|
4634
4642
|
}, {
|
@@ -4655,16 +4663,15 @@ export declare const PaginatedConsentFlowDataForDidValidator: z.ZodObject<z.exte
|
|
4655
4663
|
personal: Record<string, string>;
|
4656
4664
|
contractUri: string;
|
4657
4665
|
}, {
|
4658
|
-
personal?: Record<string, string> | undefined;
|
4659
4666
|
date: string;
|
4660
4667
|
credentials: {
|
4661
4668
|
uri: string;
|
4662
4669
|
category: string;
|
4663
4670
|
}[];
|
4664
4671
|
contractUri: string;
|
4672
|
+
personal?: Record<string, string> | undefined;
|
4665
4673
|
}>, "many">;
|
4666
4674
|
}>, "strip", z.ZodTypeAny, {
|
4667
|
-
cursor?: string | undefined;
|
4668
4675
|
hasMore: boolean;
|
4669
4676
|
records: {
|
4670
4677
|
date: string;
|
@@ -4675,18 +4682,19 @@ export declare const PaginatedConsentFlowDataForDidValidator: z.ZodObject<z.exte
|
|
4675
4682
|
personal: Record<string, string>;
|
4676
4683
|
contractUri: string;
|
4677
4684
|
}[];
|
4678
|
-
}, {
|
4679
4685
|
cursor?: string | undefined;
|
4686
|
+
}, {
|
4680
4687
|
hasMore: boolean;
|
4681
4688
|
records: {
|
4682
|
-
personal?: Record<string, string> | undefined;
|
4683
4689
|
date: string;
|
4684
4690
|
credentials: {
|
4685
4691
|
uri: string;
|
4686
4692
|
category: string;
|
4687
4693
|
}[];
|
4688
4694
|
contractUri: string;
|
4695
|
+
personal?: Record<string, string> | undefined;
|
4689
4696
|
}[];
|
4697
|
+
cursor?: string | undefined;
|
4690
4698
|
}>;
|
4691
4699
|
export type PaginatedConsentFlowDataForDid = z.infer<typeof PaginatedConsentFlowDataForDidValidator>;
|
4692
4700
|
export declare const ConsentFlowTermValidator: z.ZodObject<{
|
@@ -4729,14 +4737,14 @@ export declare const ConsentFlowTermsValidator: z.ZodObject<{
|
|
4729
4737
|
shareUntil?: string | undefined;
|
4730
4738
|
}>>>;
|
4731
4739
|
}, "strip", z.ZodTypeAny, {
|
4732
|
-
sharing?: boolean | undefined;
|
4733
|
-
shareAll?: boolean | undefined;
|
4734
4740
|
categories: Record<string, {
|
4735
4741
|
sharing?: boolean | undefined;
|
4736
4742
|
shared?: string[] | undefined;
|
4737
4743
|
shareAll?: boolean | undefined;
|
4738
4744
|
shareUntil?: string | undefined;
|
4739
4745
|
}>;
|
4746
|
+
sharing?: boolean | undefined;
|
4747
|
+
shareAll?: boolean | undefined;
|
4740
4748
|
}, {
|
4741
4749
|
categories?: Record<string, {
|
4742
4750
|
sharing?: boolean | undefined;
|
@@ -4749,18 +4757,18 @@ export declare const ConsentFlowTermsValidator: z.ZodObject<{
|
|
4749
4757
|
}>>;
|
4750
4758
|
personal: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>;
|
4751
4759
|
}, "strip", z.ZodTypeAny, {
|
4752
|
-
anonymize?: boolean | undefined;
|
4753
4760
|
credentials: {
|
4754
|
-
sharing?: boolean | undefined;
|
4755
|
-
shareAll?: boolean | undefined;
|
4756
4761
|
categories: Record<string, {
|
4757
4762
|
sharing?: boolean | undefined;
|
4758
4763
|
shared?: string[] | undefined;
|
4759
4764
|
shareAll?: boolean | undefined;
|
4760
4765
|
shareUntil?: string | undefined;
|
4761
4766
|
}>;
|
4767
|
+
sharing?: boolean | undefined;
|
4768
|
+
shareAll?: boolean | undefined;
|
4762
4769
|
};
|
4763
4770
|
personal: Record<string, string>;
|
4771
|
+
anonymize?: boolean | undefined;
|
4764
4772
|
}, {
|
4765
4773
|
anonymize?: boolean | undefined;
|
4766
4774
|
credentials?: {
|
@@ -4797,20 +4805,19 @@ export declare const ConsentFlowTermsValidator: z.ZodObject<{
|
|
4797
4805
|
}>>;
|
4798
4806
|
deniedWriters: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
4799
4807
|
}, "strip", z.ZodTypeAny, {
|
4800
|
-
deniedWriters?: string[] | undefined;
|
4801
4808
|
read: {
|
4802
|
-
anonymize?: boolean | undefined;
|
4803
4809
|
credentials: {
|
4804
|
-
sharing?: boolean | undefined;
|
4805
|
-
shareAll?: boolean | undefined;
|
4806
4810
|
categories: Record<string, {
|
4807
4811
|
sharing?: boolean | undefined;
|
4808
4812
|
shared?: string[] | undefined;
|
4809
4813
|
shareAll?: boolean | undefined;
|
4810
4814
|
shareUntil?: string | undefined;
|
4811
4815
|
}>;
|
4816
|
+
sharing?: boolean | undefined;
|
4817
|
+
shareAll?: boolean | undefined;
|
4812
4818
|
};
|
4813
4819
|
personal: Record<string, string>;
|
4820
|
+
anonymize?: boolean | undefined;
|
4814
4821
|
};
|
4815
4822
|
write: {
|
4816
4823
|
credentials: {
|
@@ -4818,6 +4825,7 @@ export declare const ConsentFlowTermsValidator: z.ZodObject<{
|
|
4818
4825
|
};
|
4819
4826
|
personal: Record<string, boolean>;
|
4820
4827
|
};
|
4828
|
+
deniedWriters?: string[] | undefined;
|
4821
4829
|
}, {
|
4822
4830
|
read?: {
|
4823
4831
|
anonymize?: boolean | undefined;
|
@@ -4843,7 +4851,7 @@ export declare const ConsentFlowTermsValidator: z.ZodObject<{
|
|
4843
4851
|
}>;
|
4844
4852
|
export type ConsentFlowTerms = z.infer<typeof ConsentFlowTermsValidator>;
|
4845
4853
|
export type ConsentFlowTermsInput = z.input<typeof ConsentFlowTermsValidator>;
|
4846
|
-
export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendShape<{
|
4854
|
+
export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUtil.extendShape<{
|
4847
4855
|
cursor: z.ZodOptional<z.ZodString>;
|
4848
4856
|
hasMore: z.ZodBoolean;
|
4849
4857
|
}, {
|
@@ -4873,14 +4881,14 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
4873
4881
|
shareUntil?: string | undefined;
|
4874
4882
|
}>>>;
|
4875
4883
|
}, "strip", z.ZodTypeAny, {
|
4876
|
-
sharing?: boolean | undefined;
|
4877
|
-
shareAll?: boolean | undefined;
|
4878
4884
|
categories: Record<string, {
|
4879
4885
|
sharing?: boolean | undefined;
|
4880
4886
|
shared?: string[] | undefined;
|
4881
4887
|
shareAll?: boolean | undefined;
|
4882
4888
|
shareUntil?: string | undefined;
|
4883
4889
|
}>;
|
4890
|
+
sharing?: boolean | undefined;
|
4891
|
+
shareAll?: boolean | undefined;
|
4884
4892
|
}, {
|
4885
4893
|
categories?: Record<string, {
|
4886
4894
|
sharing?: boolean | undefined;
|
@@ -4893,18 +4901,18 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
4893
4901
|
}>>;
|
4894
4902
|
personal: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>;
|
4895
4903
|
}, "strip", z.ZodTypeAny, {
|
4896
|
-
anonymize?: boolean | undefined;
|
4897
4904
|
credentials: {
|
4898
|
-
sharing?: boolean | undefined;
|
4899
|
-
shareAll?: boolean | undefined;
|
4900
4905
|
categories: Record<string, {
|
4901
4906
|
sharing?: boolean | undefined;
|
4902
4907
|
shared?: string[] | undefined;
|
4903
4908
|
shareAll?: boolean | undefined;
|
4904
4909
|
shareUntil?: string | undefined;
|
4905
4910
|
}>;
|
4911
|
+
sharing?: boolean | undefined;
|
4912
|
+
shareAll?: boolean | undefined;
|
4906
4913
|
};
|
4907
4914
|
personal: Record<string, string>;
|
4915
|
+
anonymize?: boolean | undefined;
|
4908
4916
|
}, {
|
4909
4917
|
anonymize?: boolean | undefined;
|
4910
4918
|
credentials?: {
|
@@ -4941,20 +4949,19 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
4941
4949
|
}>>;
|
4942
4950
|
deniedWriters: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
4943
4951
|
}, "strip", z.ZodTypeAny, {
|
4944
|
-
deniedWriters?: string[] | undefined;
|
4945
4952
|
read: {
|
4946
|
-
anonymize?: boolean | undefined;
|
4947
4953
|
credentials: {
|
4948
|
-
sharing?: boolean | undefined;
|
4949
|
-
shareAll?: boolean | undefined;
|
4950
4954
|
categories: Record<string, {
|
4951
4955
|
sharing?: boolean | undefined;
|
4952
4956
|
shared?: string[] | undefined;
|
4953
4957
|
shareAll?: boolean | undefined;
|
4954
4958
|
shareUntil?: string | undefined;
|
4955
4959
|
}>;
|
4960
|
+
sharing?: boolean | undefined;
|
4961
|
+
shareAll?: boolean | undefined;
|
4956
4962
|
};
|
4957
4963
|
personal: Record<string, string>;
|
4964
|
+
anonymize?: boolean | undefined;
|
4958
4965
|
};
|
4959
4966
|
write: {
|
4960
4967
|
credentials: {
|
@@ -4962,6 +4969,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
4962
4969
|
};
|
4963
4970
|
personal: Record<string, boolean>;
|
4964
4971
|
};
|
4972
|
+
deniedWriters?: string[] | undefined;
|
4965
4973
|
}, {
|
4966
4974
|
read?: {
|
4967
4975
|
anonymize?: boolean | undefined;
|
@@ -5014,7 +5022,6 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
5014
5022
|
required: boolean;
|
5015
5023
|
}>>>;
|
5016
5024
|
}, "strip", z.ZodTypeAny, {
|
5017
|
-
anonymize?: boolean | undefined;
|
5018
5025
|
credentials: {
|
5019
5026
|
categories: Record<string, {
|
5020
5027
|
required: boolean;
|
@@ -5023,6 +5030,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
5023
5030
|
personal: Record<string, {
|
5024
5031
|
required: boolean;
|
5025
5032
|
}>;
|
5033
|
+
anonymize?: boolean | undefined;
|
5026
5034
|
}, {
|
5027
5035
|
anonymize?: boolean | undefined;
|
5028
5036
|
credentials?: {
|
@@ -5080,7 +5088,6 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
5080
5088
|
}>>;
|
5081
5089
|
}, "strip", z.ZodTypeAny, {
|
5082
5090
|
read: {
|
5083
|
-
anonymize?: boolean | undefined;
|
5084
5091
|
credentials: {
|
5085
5092
|
categories: Record<string, {
|
5086
5093
|
required: boolean;
|
@@ -5089,6 +5096,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
5089
5096
|
personal: Record<string, {
|
5090
5097
|
required: boolean;
|
5091
5098
|
}>;
|
5099
|
+
anonymize?: boolean | undefined;
|
5092
5100
|
};
|
5093
5101
|
write: {
|
5094
5102
|
credentials: {
|
@@ -5177,6 +5185,11 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
5177
5185
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
5178
5186
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
5179
5187
|
}, "strip", z.ZodTypeAny, {
|
5188
|
+
profileId: string;
|
5189
|
+
displayName: string;
|
5190
|
+
shortBio: string;
|
5191
|
+
bio: string;
|
5192
|
+
did: string;
|
5180
5193
|
type?: string | undefined;
|
5181
5194
|
image?: string | undefined;
|
5182
5195
|
email?: string | undefined;
|
@@ -5200,12 +5213,9 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
5200
5213
|
repeatIdBackgroundImage?: boolean | undefined;
|
5201
5214
|
} | undefined;
|
5202
5215
|
dob?: string | undefined;
|
5216
|
+
}, {
|
5203
5217
|
profileId: string;
|
5204
|
-
displayName: string;
|
5205
|
-
shortBio: string;
|
5206
|
-
bio: string;
|
5207
5218
|
did: string;
|
5208
|
-
}, {
|
5209
5219
|
type?: string | undefined;
|
5210
5220
|
image?: string | undefined;
|
5211
5221
|
email?: string | undefined;
|
@@ -5232,8 +5242,6 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
5232
5242
|
repeatIdBackgroundImage?: boolean | undefined;
|
5233
5243
|
} | undefined;
|
5234
5244
|
dob?: string | undefined;
|
5235
|
-
profileId: string;
|
5236
|
-
did: string;
|
5237
5245
|
}>;
|
5238
5246
|
name: z.ZodString;
|
5239
5247
|
subtitle: z.ZodOptional<z.ZodString>;
|
@@ -5302,42 +5310,15 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
5302
5310
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
5303
5311
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
5304
5312
|
}, "strip", z.ZodTypeAny, {
|
5305
|
-
type?: string | undefined;
|
5306
|
-
image?: string | undefined;
|
5307
|
-
email?: string | undefined;
|
5308
|
-
role?: string | undefined;
|
5309
|
-
isPrivate?: boolean | undefined;
|
5310
|
-
heroImage?: string | undefined;
|
5311
|
-
websiteLink?: string | undefined;
|
5312
|
-
isServiceProfile?: boolean | undefined;
|
5313
|
-
notificationsWebhook?: string | undefined;
|
5314
|
-
display?: {
|
5315
|
-
backgroundColor?: string | undefined;
|
5316
|
-
backgroundImage?: string | undefined;
|
5317
|
-
fadeBackgroundImage?: boolean | undefined;
|
5318
|
-
repeatBackgroundImage?: boolean | undefined;
|
5319
|
-
fontColor?: string | undefined;
|
5320
|
-
accentColor?: string | undefined;
|
5321
|
-
accentFontColor?: string | undefined;
|
5322
|
-
idBackgroundImage?: string | undefined;
|
5323
|
-
fadeIdBackgroundImage?: boolean | undefined;
|
5324
|
-
idBackgroundColor?: string | undefined;
|
5325
|
-
repeatIdBackgroundImage?: boolean | undefined;
|
5326
|
-
} | undefined;
|
5327
|
-
dob?: string | undefined;
|
5328
5313
|
profileId: string;
|
5329
5314
|
displayName: string;
|
5330
5315
|
shortBio: string;
|
5331
5316
|
bio: string;
|
5332
5317
|
did: string;
|
5333
|
-
}, {
|
5334
5318
|
type?: string | undefined;
|
5335
5319
|
image?: string | undefined;
|
5336
5320
|
email?: string | undefined;
|
5337
5321
|
role?: string | undefined;
|
5338
|
-
displayName?: string | undefined;
|
5339
|
-
shortBio?: string | undefined;
|
5340
|
-
bio?: string | undefined;
|
5341
5322
|
isPrivate?: boolean | undefined;
|
5342
5323
|
heroImage?: string | undefined;
|
5343
5324
|
websiteLink?: string | undefined;
|
@@ -5357,24 +5338,16 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
5357
5338
|
repeatIdBackgroundImage?: boolean | undefined;
|
5358
5339
|
} | undefined;
|
5359
5340
|
dob?: string | undefined;
|
5341
|
+
}, {
|
5360
5342
|
profileId: string;
|
5361
5343
|
did: string;
|
5362
|
-
}>, "many">>;
|
5363
|
-
}, "strip", z.ZodTypeAny, {
|
5364
|
-
description?: string | undefined;
|
5365
|
-
image?: string | undefined;
|
5366
|
-
subtitle?: string | undefined;
|
5367
|
-
reasonForAccessing?: string | undefined;
|
5368
|
-
needsGuardianConsent?: boolean | undefined;
|
5369
|
-
redirectUrl?: string | undefined;
|
5370
|
-
frontDoorBoostUri?: string | undefined;
|
5371
|
-
expiresAt?: string | undefined;
|
5372
|
-
autoBoosts?: string[] | undefined;
|
5373
|
-
writers?: {
|
5374
5344
|
type?: string | undefined;
|
5375
5345
|
image?: string | undefined;
|
5376
5346
|
email?: string | undefined;
|
5377
5347
|
role?: string | undefined;
|
5348
|
+
displayName?: string | undefined;
|
5349
|
+
shortBio?: string | undefined;
|
5350
|
+
bio?: string | undefined;
|
5378
5351
|
isPrivate?: boolean | undefined;
|
5379
5352
|
heroImage?: string | undefined;
|
5380
5353
|
websiteLink?: string | undefined;
|
@@ -5394,19 +5367,14 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
5394
5367
|
repeatIdBackgroundImage?: boolean | undefined;
|
5395
5368
|
} | undefined;
|
5396
5369
|
dob?: string | undefined;
|
5397
|
-
|
5398
|
-
|
5399
|
-
shortBio: string;
|
5400
|
-
bio: string;
|
5401
|
-
did: string;
|
5402
|
-
}[] | undefined;
|
5370
|
+
}>, "many">>;
|
5371
|
+
}, "strip", z.ZodTypeAny, {
|
5403
5372
|
name: string;
|
5404
5373
|
createdAt: string;
|
5405
5374
|
uri: string;
|
5406
5375
|
updatedAt: string;
|
5407
5376
|
contract: {
|
5408
5377
|
read: {
|
5409
|
-
anonymize?: boolean | undefined;
|
5410
5378
|
credentials: {
|
5411
5379
|
categories: Record<string, {
|
5412
5380
|
required: boolean;
|
@@ -5415,6 +5383,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
5415
5383
|
personal: Record<string, {
|
5416
5384
|
required: boolean;
|
5417
5385
|
}>;
|
5386
|
+
anonymize?: boolean | undefined;
|
5418
5387
|
};
|
5419
5388
|
write: {
|
5420
5389
|
credentials: {
|
@@ -5428,6 +5397,11 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
5428
5397
|
};
|
5429
5398
|
};
|
5430
5399
|
owner: {
|
5400
|
+
profileId: string;
|
5401
|
+
displayName: string;
|
5402
|
+
shortBio: string;
|
5403
|
+
bio: string;
|
5404
|
+
did: string;
|
5431
5405
|
type?: string | undefined;
|
5432
5406
|
image?: string | undefined;
|
5433
5407
|
email?: string | undefined;
|
@@ -5451,13 +5425,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
5451
5425
|
repeatIdBackgroundImage?: boolean | undefined;
|
5452
5426
|
} | undefined;
|
5453
5427
|
dob?: string | undefined;
|
5454
|
-
profileId: string;
|
5455
|
-
displayName: string;
|
5456
|
-
shortBio: string;
|
5457
|
-
bio: string;
|
5458
|
-
did: string;
|
5459
5428
|
};
|
5460
|
-
}, {
|
5461
5429
|
description?: string | undefined;
|
5462
5430
|
image?: string | undefined;
|
5463
5431
|
subtitle?: string | undefined;
|
@@ -5468,13 +5436,15 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
5468
5436
|
expiresAt?: string | undefined;
|
5469
5437
|
autoBoosts?: string[] | undefined;
|
5470
5438
|
writers?: {
|
5439
|
+
profileId: string;
|
5440
|
+
displayName: string;
|
5441
|
+
shortBio: string;
|
5442
|
+
bio: string;
|
5443
|
+
did: string;
|
5471
5444
|
type?: string | undefined;
|
5472
5445
|
image?: string | undefined;
|
5473
5446
|
email?: string | undefined;
|
5474
5447
|
role?: string | undefined;
|
5475
|
-
displayName?: string | undefined;
|
5476
|
-
shortBio?: string | undefined;
|
5477
|
-
bio?: string | undefined;
|
5478
5448
|
isPrivate?: boolean | undefined;
|
5479
5449
|
heroImage?: string | undefined;
|
5480
5450
|
websiteLink?: string | undefined;
|
@@ -5494,9 +5464,8 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
5494
5464
|
repeatIdBackgroundImage?: boolean | undefined;
|
5495
5465
|
} | undefined;
|
5496
5466
|
dob?: string | undefined;
|
5497
|
-
profileId: string;
|
5498
|
-
did: string;
|
5499
5467
|
}[] | undefined;
|
5468
|
+
}, {
|
5500
5469
|
name: string;
|
5501
5470
|
createdAt: string;
|
5502
5471
|
uri: string;
|
@@ -5525,7 +5494,9 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
5525
5494
|
} | undefined;
|
5526
5495
|
};
|
5527
5496
|
owner: {
|
5528
|
-
|
5497
|
+
profileId: string;
|
5498
|
+
did: string;
|
5499
|
+
type?: string | undefined;
|
5529
5500
|
image?: string | undefined;
|
5530
5501
|
email?: string | undefined;
|
5531
5502
|
role?: string | undefined;
|
@@ -5551,9 +5522,46 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
5551
5522
|
repeatIdBackgroundImage?: boolean | undefined;
|
5552
5523
|
} | undefined;
|
5553
5524
|
dob?: string | undefined;
|
5525
|
+
};
|
5526
|
+
description?: string | undefined;
|
5527
|
+
image?: string | undefined;
|
5528
|
+
subtitle?: string | undefined;
|
5529
|
+
reasonForAccessing?: string | undefined;
|
5530
|
+
needsGuardianConsent?: boolean | undefined;
|
5531
|
+
redirectUrl?: string | undefined;
|
5532
|
+
frontDoorBoostUri?: string | undefined;
|
5533
|
+
expiresAt?: string | undefined;
|
5534
|
+
autoBoosts?: string[] | undefined;
|
5535
|
+
writers?: {
|
5554
5536
|
profileId: string;
|
5555
5537
|
did: string;
|
5556
|
-
|
5538
|
+
type?: string | undefined;
|
5539
|
+
image?: string | undefined;
|
5540
|
+
email?: string | undefined;
|
5541
|
+
role?: string | undefined;
|
5542
|
+
displayName?: string | undefined;
|
5543
|
+
shortBio?: string | undefined;
|
5544
|
+
bio?: string | undefined;
|
5545
|
+
isPrivate?: boolean | undefined;
|
5546
|
+
heroImage?: string | undefined;
|
5547
|
+
websiteLink?: string | undefined;
|
5548
|
+
isServiceProfile?: boolean | undefined;
|
5549
|
+
notificationsWebhook?: string | undefined;
|
5550
|
+
display?: {
|
5551
|
+
backgroundColor?: string | undefined;
|
5552
|
+
backgroundImage?: string | undefined;
|
5553
|
+
fadeBackgroundImage?: boolean | undefined;
|
5554
|
+
repeatBackgroundImage?: boolean | undefined;
|
5555
|
+
fontColor?: string | undefined;
|
5556
|
+
accentColor?: string | undefined;
|
5557
|
+
accentFontColor?: string | undefined;
|
5558
|
+
idBackgroundImage?: string | undefined;
|
5559
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
5560
|
+
idBackgroundColor?: string | undefined;
|
5561
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
5562
|
+
} | undefined;
|
5563
|
+
dob?: string | undefined;
|
5564
|
+
}[] | undefined;
|
5557
5565
|
}>;
|
5558
5566
|
uri: z.ZodString;
|
5559
5567
|
consenter: z.ZodObject<{
|
@@ -5610,6 +5618,11 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
5610
5618
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
5611
5619
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
5612
5620
|
}, "strip", z.ZodTypeAny, {
|
5621
|
+
profileId: string;
|
5622
|
+
displayName: string;
|
5623
|
+
shortBio: string;
|
5624
|
+
bio: string;
|
5625
|
+
did: string;
|
5613
5626
|
type?: string | undefined;
|
5614
5627
|
image?: string | undefined;
|
5615
5628
|
email?: string | undefined;
|
@@ -5633,12 +5646,9 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
5633
5646
|
repeatIdBackgroundImage?: boolean | undefined;
|
5634
5647
|
} | undefined;
|
5635
5648
|
dob?: string | undefined;
|
5649
|
+
}, {
|
5636
5650
|
profileId: string;
|
5637
|
-
displayName: string;
|
5638
|
-
shortBio: string;
|
5639
|
-
bio: string;
|
5640
5651
|
did: string;
|
5641
|
-
}, {
|
5642
5652
|
type?: string | undefined;
|
5643
5653
|
image?: string | undefined;
|
5644
5654
|
email?: string | undefined;
|
@@ -5665,62 +5675,18 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
5665
5675
|
repeatIdBackgroundImage?: boolean | undefined;
|
5666
5676
|
} | undefined;
|
5667
5677
|
dob?: string | undefined;
|
5668
|
-
profileId: string;
|
5669
|
-
did: string;
|
5670
5678
|
}>;
|
5671
5679
|
status: z.ZodEnum<["live", "stale", "withdrawn"]>;
|
5672
5680
|
}, "strip", z.ZodTypeAny, {
|
5673
|
-
expiresAt?: string | undefined;
|
5674
|
-
oneTime?: boolean | undefined;
|
5675
5681
|
status: "live" | "stale" | "withdrawn";
|
5676
5682
|
uri: string;
|
5677
5683
|
contract: {
|
5678
|
-
description?: string | undefined;
|
5679
|
-
image?: string | undefined;
|
5680
|
-
subtitle?: string | undefined;
|
5681
|
-
reasonForAccessing?: string | undefined;
|
5682
|
-
needsGuardianConsent?: boolean | undefined;
|
5683
|
-
redirectUrl?: string | undefined;
|
5684
|
-
frontDoorBoostUri?: string | undefined;
|
5685
|
-
expiresAt?: string | undefined;
|
5686
|
-
autoBoosts?: string[] | undefined;
|
5687
|
-
writers?: {
|
5688
|
-
type?: string | undefined;
|
5689
|
-
image?: string | undefined;
|
5690
|
-
email?: string | undefined;
|
5691
|
-
role?: string | undefined;
|
5692
|
-
isPrivate?: boolean | undefined;
|
5693
|
-
heroImage?: string | undefined;
|
5694
|
-
websiteLink?: string | undefined;
|
5695
|
-
isServiceProfile?: boolean | undefined;
|
5696
|
-
notificationsWebhook?: string | undefined;
|
5697
|
-
display?: {
|
5698
|
-
backgroundColor?: string | undefined;
|
5699
|
-
backgroundImage?: string | undefined;
|
5700
|
-
fadeBackgroundImage?: boolean | undefined;
|
5701
|
-
repeatBackgroundImage?: boolean | undefined;
|
5702
|
-
fontColor?: string | undefined;
|
5703
|
-
accentColor?: string | undefined;
|
5704
|
-
accentFontColor?: string | undefined;
|
5705
|
-
idBackgroundImage?: string | undefined;
|
5706
|
-
fadeIdBackgroundImage?: boolean | undefined;
|
5707
|
-
idBackgroundColor?: string | undefined;
|
5708
|
-
repeatIdBackgroundImage?: boolean | undefined;
|
5709
|
-
} | undefined;
|
5710
|
-
dob?: string | undefined;
|
5711
|
-
profileId: string;
|
5712
|
-
displayName: string;
|
5713
|
-
shortBio: string;
|
5714
|
-
bio: string;
|
5715
|
-
did: string;
|
5716
|
-
}[] | undefined;
|
5717
5684
|
name: string;
|
5718
5685
|
createdAt: string;
|
5719
5686
|
uri: string;
|
5720
5687
|
updatedAt: string;
|
5721
5688
|
contract: {
|
5722
5689
|
read: {
|
5723
|
-
anonymize?: boolean | undefined;
|
5724
5690
|
credentials: {
|
5725
5691
|
categories: Record<string, {
|
5726
5692
|
required: boolean;
|
@@ -5729,6 +5695,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
5729
5695
|
personal: Record<string, {
|
5730
5696
|
required: boolean;
|
5731
5697
|
}>;
|
5698
|
+
anonymize?: boolean | undefined;
|
5732
5699
|
};
|
5733
5700
|
write: {
|
5734
5701
|
credentials: {
|
@@ -5742,6 +5709,11 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
5742
5709
|
};
|
5743
5710
|
};
|
5744
5711
|
owner: {
|
5712
|
+
profileId: string;
|
5713
|
+
displayName: string;
|
5714
|
+
shortBio: string;
|
5715
|
+
bio: string;
|
5716
|
+
did: string;
|
5745
5717
|
type?: string | undefined;
|
5746
5718
|
image?: string | undefined;
|
5747
5719
|
email?: string | undefined;
|
@@ -5765,28 +5737,61 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
5765
5737
|
repeatIdBackgroundImage?: boolean | undefined;
|
5766
5738
|
} | undefined;
|
5767
5739
|
dob?: string | undefined;
|
5740
|
+
};
|
5741
|
+
description?: string | undefined;
|
5742
|
+
image?: string | undefined;
|
5743
|
+
subtitle?: string | undefined;
|
5744
|
+
reasonForAccessing?: string | undefined;
|
5745
|
+
needsGuardianConsent?: boolean | undefined;
|
5746
|
+
redirectUrl?: string | undefined;
|
5747
|
+
frontDoorBoostUri?: string | undefined;
|
5748
|
+
expiresAt?: string | undefined;
|
5749
|
+
autoBoosts?: string[] | undefined;
|
5750
|
+
writers?: {
|
5768
5751
|
profileId: string;
|
5769
5752
|
displayName: string;
|
5770
5753
|
shortBio: string;
|
5771
5754
|
bio: string;
|
5772
5755
|
did: string;
|
5773
|
-
|
5756
|
+
type?: string | undefined;
|
5757
|
+
image?: string | undefined;
|
5758
|
+
email?: string | undefined;
|
5759
|
+
role?: string | undefined;
|
5760
|
+
isPrivate?: boolean | undefined;
|
5761
|
+
heroImage?: string | undefined;
|
5762
|
+
websiteLink?: string | undefined;
|
5763
|
+
isServiceProfile?: boolean | undefined;
|
5764
|
+
notificationsWebhook?: string | undefined;
|
5765
|
+
display?: {
|
5766
|
+
backgroundColor?: string | undefined;
|
5767
|
+
backgroundImage?: string | undefined;
|
5768
|
+
fadeBackgroundImage?: boolean | undefined;
|
5769
|
+
repeatBackgroundImage?: boolean | undefined;
|
5770
|
+
fontColor?: string | undefined;
|
5771
|
+
accentColor?: string | undefined;
|
5772
|
+
accentFontColor?: string | undefined;
|
5773
|
+
idBackgroundImage?: string | undefined;
|
5774
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
5775
|
+
idBackgroundColor?: string | undefined;
|
5776
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
5777
|
+
} | undefined;
|
5778
|
+
dob?: string | undefined;
|
5779
|
+
}[] | undefined;
|
5774
5780
|
};
|
5775
5781
|
terms: {
|
5776
|
-
deniedWriters?: string[] | undefined;
|
5777
5782
|
read: {
|
5778
|
-
anonymize?: boolean | undefined;
|
5779
5783
|
credentials: {
|
5780
|
-
sharing?: boolean | undefined;
|
5781
|
-
shareAll?: boolean | undefined;
|
5782
5784
|
categories: Record<string, {
|
5783
5785
|
sharing?: boolean | undefined;
|
5784
5786
|
shared?: string[] | undefined;
|
5785
5787
|
shareAll?: boolean | undefined;
|
5786
5788
|
shareUntil?: string | undefined;
|
5787
5789
|
}>;
|
5790
|
+
sharing?: boolean | undefined;
|
5791
|
+
shareAll?: boolean | undefined;
|
5788
5792
|
};
|
5789
5793
|
personal: Record<string, string>;
|
5794
|
+
anonymize?: boolean | undefined;
|
5790
5795
|
};
|
5791
5796
|
write: {
|
5792
5797
|
credentials: {
|
@@ -5794,8 +5799,14 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
5794
5799
|
};
|
5795
5800
|
personal: Record<string, boolean>;
|
5796
5801
|
};
|
5802
|
+
deniedWriters?: string[] | undefined;
|
5797
5803
|
};
|
5798
5804
|
consenter: {
|
5805
|
+
profileId: string;
|
5806
|
+
displayName: string;
|
5807
|
+
shortBio: string;
|
5808
|
+
bio: string;
|
5809
|
+
did: string;
|
5799
5810
|
type?: string | undefined;
|
5800
5811
|
image?: string | undefined;
|
5801
5812
|
email?: string | undefined;
|
@@ -5819,57 +5830,13 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
5819
5830
|
repeatIdBackgroundImage?: boolean | undefined;
|
5820
5831
|
} | undefined;
|
5821
5832
|
dob?: string | undefined;
|
5822
|
-
profileId: string;
|
5823
|
-
displayName: string;
|
5824
|
-
shortBio: string;
|
5825
|
-
bio: string;
|
5826
|
-
did: string;
|
5827
5833
|
};
|
5828
|
-
}, {
|
5829
5834
|
expiresAt?: string | undefined;
|
5830
5835
|
oneTime?: boolean | undefined;
|
5836
|
+
}, {
|
5831
5837
|
status: "live" | "stale" | "withdrawn";
|
5832
5838
|
uri: string;
|
5833
5839
|
contract: {
|
5834
|
-
description?: string | undefined;
|
5835
|
-
image?: string | undefined;
|
5836
|
-
subtitle?: string | undefined;
|
5837
|
-
reasonForAccessing?: string | undefined;
|
5838
|
-
needsGuardianConsent?: boolean | undefined;
|
5839
|
-
redirectUrl?: string | undefined;
|
5840
|
-
frontDoorBoostUri?: string | undefined;
|
5841
|
-
expiresAt?: string | undefined;
|
5842
|
-
autoBoosts?: string[] | undefined;
|
5843
|
-
writers?: {
|
5844
|
-
type?: string | undefined;
|
5845
|
-
image?: string | undefined;
|
5846
|
-
email?: string | undefined;
|
5847
|
-
role?: string | undefined;
|
5848
|
-
displayName?: string | undefined;
|
5849
|
-
shortBio?: string | undefined;
|
5850
|
-
bio?: string | undefined;
|
5851
|
-
isPrivate?: boolean | undefined;
|
5852
|
-
heroImage?: string | undefined;
|
5853
|
-
websiteLink?: string | undefined;
|
5854
|
-
isServiceProfile?: boolean | undefined;
|
5855
|
-
notificationsWebhook?: string | undefined;
|
5856
|
-
display?: {
|
5857
|
-
backgroundColor?: string | undefined;
|
5858
|
-
backgroundImage?: string | undefined;
|
5859
|
-
fadeBackgroundImage?: boolean | undefined;
|
5860
|
-
repeatBackgroundImage?: boolean | undefined;
|
5861
|
-
fontColor?: string | undefined;
|
5862
|
-
accentColor?: string | undefined;
|
5863
|
-
accentFontColor?: string | undefined;
|
5864
|
-
idBackgroundImage?: string | undefined;
|
5865
|
-
fadeIdBackgroundImage?: boolean | undefined;
|
5866
|
-
idBackgroundColor?: string | undefined;
|
5867
|
-
repeatIdBackgroundImage?: boolean | undefined;
|
5868
|
-
} | undefined;
|
5869
|
-
dob?: string | undefined;
|
5870
|
-
profileId: string;
|
5871
|
-
did: string;
|
5872
|
-
}[] | undefined;
|
5873
5840
|
name: string;
|
5874
5841
|
createdAt: string;
|
5875
5842
|
uri: string;
|
@@ -5898,6 +5865,8 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
5898
5865
|
} | undefined;
|
5899
5866
|
};
|
5900
5867
|
owner: {
|
5868
|
+
profileId: string;
|
5869
|
+
did: string;
|
5901
5870
|
type?: string | undefined;
|
5902
5871
|
image?: string | undefined;
|
5903
5872
|
email?: string | undefined;
|
@@ -5924,9 +5893,46 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
5924
5893
|
repeatIdBackgroundImage?: boolean | undefined;
|
5925
5894
|
} | undefined;
|
5926
5895
|
dob?: string | undefined;
|
5896
|
+
};
|
5897
|
+
description?: string | undefined;
|
5898
|
+
image?: string | undefined;
|
5899
|
+
subtitle?: string | undefined;
|
5900
|
+
reasonForAccessing?: string | undefined;
|
5901
|
+
needsGuardianConsent?: boolean | undefined;
|
5902
|
+
redirectUrl?: string | undefined;
|
5903
|
+
frontDoorBoostUri?: string | undefined;
|
5904
|
+
expiresAt?: string | undefined;
|
5905
|
+
autoBoosts?: string[] | undefined;
|
5906
|
+
writers?: {
|
5927
5907
|
profileId: string;
|
5928
5908
|
did: string;
|
5929
|
-
|
5909
|
+
type?: string | undefined;
|
5910
|
+
image?: string | undefined;
|
5911
|
+
email?: string | undefined;
|
5912
|
+
role?: string | undefined;
|
5913
|
+
displayName?: string | undefined;
|
5914
|
+
shortBio?: string | undefined;
|
5915
|
+
bio?: string | undefined;
|
5916
|
+
isPrivate?: boolean | undefined;
|
5917
|
+
heroImage?: string | undefined;
|
5918
|
+
websiteLink?: string | undefined;
|
5919
|
+
isServiceProfile?: boolean | undefined;
|
5920
|
+
notificationsWebhook?: string | undefined;
|
5921
|
+
display?: {
|
5922
|
+
backgroundColor?: string | undefined;
|
5923
|
+
backgroundImage?: string | undefined;
|
5924
|
+
fadeBackgroundImage?: boolean | undefined;
|
5925
|
+
repeatBackgroundImage?: boolean | undefined;
|
5926
|
+
fontColor?: string | undefined;
|
5927
|
+
accentColor?: string | undefined;
|
5928
|
+
accentFontColor?: string | undefined;
|
5929
|
+
idBackgroundImage?: string | undefined;
|
5930
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
5931
|
+
idBackgroundColor?: string | undefined;
|
5932
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
5933
|
+
} | undefined;
|
5934
|
+
dob?: string | undefined;
|
5935
|
+
}[] | undefined;
|
5930
5936
|
};
|
5931
5937
|
terms: {
|
5932
5938
|
read?: {
|
@@ -5952,6 +5958,8 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
5952
5958
|
deniedWriters?: string[] | undefined;
|
5953
5959
|
};
|
5954
5960
|
consenter: {
|
5961
|
+
profileId: string;
|
5962
|
+
did: string;
|
5955
5963
|
type?: string | undefined;
|
5956
5964
|
image?: string | undefined;
|
5957
5965
|
email?: string | undefined;
|
@@ -5978,65 +5986,22 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
5978
5986
|
repeatIdBackgroundImage?: boolean | undefined;
|
5979
5987
|
} | undefined;
|
5980
5988
|
dob?: string | undefined;
|
5981
|
-
|
5982
|
-
|
5983
|
-
|
5984
|
-
}>, "many">;
|
5985
|
-
}>, "strip", z.ZodTypeAny, {
|
5986
|
-
|
5987
|
-
|
5988
|
-
|
5989
|
-
|
5990
|
-
|
5991
|
-
status: "live" | "stale" | "withdrawn";
|
5992
|
-
uri: string;
|
5993
|
-
contract: {
|
5994
|
-
description?: string | undefined;
|
5995
|
-
image?: string | undefined;
|
5996
|
-
subtitle?: string | undefined;
|
5997
|
-
reasonForAccessing?: string | undefined;
|
5998
|
-
needsGuardianConsent?: boolean | undefined;
|
5999
|
-
redirectUrl?: string | undefined;
|
6000
|
-
frontDoorBoostUri?: string | undefined;
|
6001
|
-
expiresAt?: string | undefined;
|
6002
|
-
autoBoosts?: string[] | undefined;
|
6003
|
-
writers?: {
|
6004
|
-
type?: string | undefined;
|
6005
|
-
image?: string | undefined;
|
6006
|
-
email?: string | undefined;
|
6007
|
-
role?: string | undefined;
|
6008
|
-
isPrivate?: boolean | undefined;
|
6009
|
-
heroImage?: string | undefined;
|
6010
|
-
websiteLink?: string | undefined;
|
6011
|
-
isServiceProfile?: boolean | undefined;
|
6012
|
-
notificationsWebhook?: string | undefined;
|
6013
|
-
display?: {
|
6014
|
-
backgroundColor?: string | undefined;
|
6015
|
-
backgroundImage?: string | undefined;
|
6016
|
-
fadeBackgroundImage?: boolean | undefined;
|
6017
|
-
repeatBackgroundImage?: boolean | undefined;
|
6018
|
-
fontColor?: string | undefined;
|
6019
|
-
accentColor?: string | undefined;
|
6020
|
-
accentFontColor?: string | undefined;
|
6021
|
-
idBackgroundImage?: string | undefined;
|
6022
|
-
fadeIdBackgroundImage?: boolean | undefined;
|
6023
|
-
idBackgroundColor?: string | undefined;
|
6024
|
-
repeatIdBackgroundImage?: boolean | undefined;
|
6025
|
-
} | undefined;
|
6026
|
-
dob?: string | undefined;
|
6027
|
-
profileId: string;
|
6028
|
-
displayName: string;
|
6029
|
-
shortBio: string;
|
6030
|
-
bio: string;
|
6031
|
-
did: string;
|
6032
|
-
}[] | undefined;
|
5989
|
+
};
|
5990
|
+
expiresAt?: string | undefined;
|
5991
|
+
oneTime?: boolean | undefined;
|
5992
|
+
}>, "many">;
|
5993
|
+
}>, "strip", z.ZodTypeAny, {
|
5994
|
+
hasMore: boolean;
|
5995
|
+
records: {
|
5996
|
+
status: "live" | "stale" | "withdrawn";
|
5997
|
+
uri: string;
|
5998
|
+
contract: {
|
6033
5999
|
name: string;
|
6034
6000
|
createdAt: string;
|
6035
6001
|
uri: string;
|
6036
6002
|
updatedAt: string;
|
6037
6003
|
contract: {
|
6038
6004
|
read: {
|
6039
|
-
anonymize?: boolean | undefined;
|
6040
6005
|
credentials: {
|
6041
6006
|
categories: Record<string, {
|
6042
6007
|
required: boolean;
|
@@ -6045,6 +6010,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
6045
6010
|
personal: Record<string, {
|
6046
6011
|
required: boolean;
|
6047
6012
|
}>;
|
6013
|
+
anonymize?: boolean | undefined;
|
6048
6014
|
};
|
6049
6015
|
write: {
|
6050
6016
|
credentials: {
|
@@ -6058,6 +6024,11 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
6058
6024
|
};
|
6059
6025
|
};
|
6060
6026
|
owner: {
|
6027
|
+
profileId: string;
|
6028
|
+
displayName: string;
|
6029
|
+
shortBio: string;
|
6030
|
+
bio: string;
|
6031
|
+
did: string;
|
6061
6032
|
type?: string | undefined;
|
6062
6033
|
image?: string | undefined;
|
6063
6034
|
email?: string | undefined;
|
@@ -6081,28 +6052,61 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
6081
6052
|
repeatIdBackgroundImage?: boolean | undefined;
|
6082
6053
|
} | undefined;
|
6083
6054
|
dob?: string | undefined;
|
6055
|
+
};
|
6056
|
+
description?: string | undefined;
|
6057
|
+
image?: string | undefined;
|
6058
|
+
subtitle?: string | undefined;
|
6059
|
+
reasonForAccessing?: string | undefined;
|
6060
|
+
needsGuardianConsent?: boolean | undefined;
|
6061
|
+
redirectUrl?: string | undefined;
|
6062
|
+
frontDoorBoostUri?: string | undefined;
|
6063
|
+
expiresAt?: string | undefined;
|
6064
|
+
autoBoosts?: string[] | undefined;
|
6065
|
+
writers?: {
|
6084
6066
|
profileId: string;
|
6085
6067
|
displayName: string;
|
6086
6068
|
shortBio: string;
|
6087
6069
|
bio: string;
|
6088
6070
|
did: string;
|
6089
|
-
|
6071
|
+
type?: string | undefined;
|
6072
|
+
image?: string | undefined;
|
6073
|
+
email?: string | undefined;
|
6074
|
+
role?: string | undefined;
|
6075
|
+
isPrivate?: boolean | undefined;
|
6076
|
+
heroImage?: string | undefined;
|
6077
|
+
websiteLink?: string | undefined;
|
6078
|
+
isServiceProfile?: boolean | undefined;
|
6079
|
+
notificationsWebhook?: string | undefined;
|
6080
|
+
display?: {
|
6081
|
+
backgroundColor?: string | undefined;
|
6082
|
+
backgroundImage?: string | undefined;
|
6083
|
+
fadeBackgroundImage?: boolean | undefined;
|
6084
|
+
repeatBackgroundImage?: boolean | undefined;
|
6085
|
+
fontColor?: string | undefined;
|
6086
|
+
accentColor?: string | undefined;
|
6087
|
+
accentFontColor?: string | undefined;
|
6088
|
+
idBackgroundImage?: string | undefined;
|
6089
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
6090
|
+
idBackgroundColor?: string | undefined;
|
6091
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
6092
|
+
} | undefined;
|
6093
|
+
dob?: string | undefined;
|
6094
|
+
}[] | undefined;
|
6090
6095
|
};
|
6091
6096
|
terms: {
|
6092
|
-
deniedWriters?: string[] | undefined;
|
6093
6097
|
read: {
|
6094
|
-
anonymize?: boolean | undefined;
|
6095
6098
|
credentials: {
|
6096
|
-
sharing?: boolean | undefined;
|
6097
|
-
shareAll?: boolean | undefined;
|
6098
6099
|
categories: Record<string, {
|
6099
6100
|
sharing?: boolean | undefined;
|
6100
6101
|
shared?: string[] | undefined;
|
6101
6102
|
shareAll?: boolean | undefined;
|
6102
6103
|
shareUntil?: string | undefined;
|
6103
6104
|
}>;
|
6105
|
+
sharing?: boolean | undefined;
|
6106
|
+
shareAll?: boolean | undefined;
|
6104
6107
|
};
|
6105
6108
|
personal: Record<string, string>;
|
6109
|
+
anonymize?: boolean | undefined;
|
6106
6110
|
};
|
6107
6111
|
write: {
|
6108
6112
|
credentials: {
|
@@ -6110,8 +6114,14 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
6110
6114
|
};
|
6111
6115
|
personal: Record<string, boolean>;
|
6112
6116
|
};
|
6117
|
+
deniedWriters?: string[] | undefined;
|
6113
6118
|
};
|
6114
6119
|
consenter: {
|
6120
|
+
profileId: string;
|
6121
|
+
displayName: string;
|
6122
|
+
shortBio: string;
|
6123
|
+
bio: string;
|
6124
|
+
did: string;
|
6115
6125
|
type?: string | undefined;
|
6116
6126
|
image?: string | undefined;
|
6117
6127
|
email?: string | undefined;
|
@@ -6135,61 +6145,17 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
6135
6145
|
repeatIdBackgroundImage?: boolean | undefined;
|
6136
6146
|
} | undefined;
|
6137
6147
|
dob?: string | undefined;
|
6138
|
-
profileId: string;
|
6139
|
-
displayName: string;
|
6140
|
-
shortBio: string;
|
6141
|
-
bio: string;
|
6142
|
-
did: string;
|
6143
6148
|
};
|
6149
|
+
expiresAt?: string | undefined;
|
6150
|
+
oneTime?: boolean | undefined;
|
6144
6151
|
}[];
|
6145
|
-
}, {
|
6146
6152
|
cursor?: string | undefined;
|
6153
|
+
}, {
|
6147
6154
|
hasMore: boolean;
|
6148
6155
|
records: {
|
6149
|
-
expiresAt?: string | undefined;
|
6150
|
-
oneTime?: boolean | undefined;
|
6151
6156
|
status: "live" | "stale" | "withdrawn";
|
6152
6157
|
uri: string;
|
6153
6158
|
contract: {
|
6154
|
-
description?: string | undefined;
|
6155
|
-
image?: string | undefined;
|
6156
|
-
subtitle?: string | undefined;
|
6157
|
-
reasonForAccessing?: string | undefined;
|
6158
|
-
needsGuardianConsent?: boolean | undefined;
|
6159
|
-
redirectUrl?: string | undefined;
|
6160
|
-
frontDoorBoostUri?: string | undefined;
|
6161
|
-
expiresAt?: string | undefined;
|
6162
|
-
autoBoosts?: string[] | undefined;
|
6163
|
-
writers?: {
|
6164
|
-
type?: string | undefined;
|
6165
|
-
image?: string | undefined;
|
6166
|
-
email?: string | undefined;
|
6167
|
-
role?: string | undefined;
|
6168
|
-
displayName?: string | undefined;
|
6169
|
-
shortBio?: string | undefined;
|
6170
|
-
bio?: string | undefined;
|
6171
|
-
isPrivate?: boolean | undefined;
|
6172
|
-
heroImage?: string | undefined;
|
6173
|
-
websiteLink?: string | undefined;
|
6174
|
-
isServiceProfile?: boolean | undefined;
|
6175
|
-
notificationsWebhook?: string | undefined;
|
6176
|
-
display?: {
|
6177
|
-
backgroundColor?: string | undefined;
|
6178
|
-
backgroundImage?: string | undefined;
|
6179
|
-
fadeBackgroundImage?: boolean | undefined;
|
6180
|
-
repeatBackgroundImage?: boolean | undefined;
|
6181
|
-
fontColor?: string | undefined;
|
6182
|
-
accentColor?: string | undefined;
|
6183
|
-
accentFontColor?: string | undefined;
|
6184
|
-
idBackgroundImage?: string | undefined;
|
6185
|
-
fadeIdBackgroundImage?: boolean | undefined;
|
6186
|
-
idBackgroundColor?: string | undefined;
|
6187
|
-
repeatIdBackgroundImage?: boolean | undefined;
|
6188
|
-
} | undefined;
|
6189
|
-
dob?: string | undefined;
|
6190
|
-
profileId: string;
|
6191
|
-
did: string;
|
6192
|
-
}[] | undefined;
|
6193
6159
|
name: string;
|
6194
6160
|
createdAt: string;
|
6195
6161
|
uri: string;
|
@@ -6218,6 +6184,8 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
6218
6184
|
} | undefined;
|
6219
6185
|
};
|
6220
6186
|
owner: {
|
6187
|
+
profileId: string;
|
6188
|
+
did: string;
|
6221
6189
|
type?: string | undefined;
|
6222
6190
|
image?: string | undefined;
|
6223
6191
|
email?: string | undefined;
|
@@ -6244,9 +6212,46 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
6244
6212
|
repeatIdBackgroundImage?: boolean | undefined;
|
6245
6213
|
} | undefined;
|
6246
6214
|
dob?: string | undefined;
|
6215
|
+
};
|
6216
|
+
description?: string | undefined;
|
6217
|
+
image?: string | undefined;
|
6218
|
+
subtitle?: string | undefined;
|
6219
|
+
reasonForAccessing?: string | undefined;
|
6220
|
+
needsGuardianConsent?: boolean | undefined;
|
6221
|
+
redirectUrl?: string | undefined;
|
6222
|
+
frontDoorBoostUri?: string | undefined;
|
6223
|
+
expiresAt?: string | undefined;
|
6224
|
+
autoBoosts?: string[] | undefined;
|
6225
|
+
writers?: {
|
6247
6226
|
profileId: string;
|
6248
6227
|
did: string;
|
6249
|
-
|
6228
|
+
type?: string | undefined;
|
6229
|
+
image?: string | undefined;
|
6230
|
+
email?: string | undefined;
|
6231
|
+
role?: string | undefined;
|
6232
|
+
displayName?: string | undefined;
|
6233
|
+
shortBio?: string | undefined;
|
6234
|
+
bio?: string | undefined;
|
6235
|
+
isPrivate?: boolean | undefined;
|
6236
|
+
heroImage?: string | undefined;
|
6237
|
+
websiteLink?: string | undefined;
|
6238
|
+
isServiceProfile?: boolean | undefined;
|
6239
|
+
notificationsWebhook?: string | undefined;
|
6240
|
+
display?: {
|
6241
|
+
backgroundColor?: string | undefined;
|
6242
|
+
backgroundImage?: string | undefined;
|
6243
|
+
fadeBackgroundImage?: boolean | undefined;
|
6244
|
+
repeatBackgroundImage?: boolean | undefined;
|
6245
|
+
fontColor?: string | undefined;
|
6246
|
+
accentColor?: string | undefined;
|
6247
|
+
accentFontColor?: string | undefined;
|
6248
|
+
idBackgroundImage?: string | undefined;
|
6249
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
6250
|
+
idBackgroundColor?: string | undefined;
|
6251
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
6252
|
+
} | undefined;
|
6253
|
+
dob?: string | undefined;
|
6254
|
+
}[] | undefined;
|
6250
6255
|
};
|
6251
6256
|
terms: {
|
6252
6257
|
read?: {
|
@@ -6272,6 +6277,8 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
6272
6277
|
deniedWriters?: string[] | undefined;
|
6273
6278
|
};
|
6274
6279
|
consenter: {
|
6280
|
+
profileId: string;
|
6281
|
+
did: string;
|
6275
6282
|
type?: string | undefined;
|
6276
6283
|
image?: string | undefined;
|
6277
6284
|
email?: string | undefined;
|
@@ -6298,10 +6305,11 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
6298
6305
|
repeatIdBackgroundImage?: boolean | undefined;
|
6299
6306
|
} | undefined;
|
6300
6307
|
dob?: string | undefined;
|
6301
|
-
profileId: string;
|
6302
|
-
did: string;
|
6303
6308
|
};
|
6309
|
+
expiresAt?: string | undefined;
|
6310
|
+
oneTime?: boolean | undefined;
|
6304
6311
|
}[];
|
6312
|
+
cursor?: string | undefined;
|
6305
6313
|
}>;
|
6306
6314
|
export type PaginatedConsentFlowTerms = z.infer<typeof PaginatedConsentFlowTermsValidator>;
|
6307
6315
|
export declare const ConsentFlowContractQueryValidator: z.ZodObject<{
|
@@ -6929,14 +6937,14 @@ export declare const ConsentFlowTransactionValidator: z.ZodObject<{
|
|
6929
6937
|
shareUntil?: string | undefined;
|
6930
6938
|
}>>>;
|
6931
6939
|
}, "strip", z.ZodTypeAny, {
|
6932
|
-
sharing?: boolean | undefined;
|
6933
|
-
shareAll?: boolean | undefined;
|
6934
6940
|
categories: Record<string, {
|
6935
6941
|
sharing?: boolean | undefined;
|
6936
6942
|
shared?: string[] | undefined;
|
6937
6943
|
shareAll?: boolean | undefined;
|
6938
6944
|
shareUntil?: string | undefined;
|
6939
6945
|
}>;
|
6946
|
+
sharing?: boolean | undefined;
|
6947
|
+
shareAll?: boolean | undefined;
|
6940
6948
|
}, {
|
6941
6949
|
categories?: Record<string, {
|
6942
6950
|
sharing?: boolean | undefined;
|
@@ -6949,18 +6957,18 @@ export declare const ConsentFlowTransactionValidator: z.ZodObject<{
|
|
6949
6957
|
}>>;
|
6950
6958
|
personal: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>;
|
6951
6959
|
}, "strip", z.ZodTypeAny, {
|
6952
|
-
anonymize?: boolean | undefined;
|
6953
6960
|
credentials: {
|
6954
|
-
sharing?: boolean | undefined;
|
6955
|
-
shareAll?: boolean | undefined;
|
6956
6961
|
categories: Record<string, {
|
6957
6962
|
sharing?: boolean | undefined;
|
6958
6963
|
shared?: string[] | undefined;
|
6959
6964
|
shareAll?: boolean | undefined;
|
6960
6965
|
shareUntil?: string | undefined;
|
6961
6966
|
}>;
|
6967
|
+
sharing?: boolean | undefined;
|
6968
|
+
shareAll?: boolean | undefined;
|
6962
6969
|
};
|
6963
6970
|
personal: Record<string, string>;
|
6971
|
+
anonymize?: boolean | undefined;
|
6964
6972
|
}, {
|
6965
6973
|
anonymize?: boolean | undefined;
|
6966
6974
|
credentials?: {
|
@@ -6997,20 +7005,19 @@ export declare const ConsentFlowTransactionValidator: z.ZodObject<{
|
|
6997
7005
|
}>>;
|
6998
7006
|
deniedWriters: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
6999
7007
|
}, "strip", z.ZodTypeAny, {
|
7000
|
-
deniedWriters?: string[] | undefined;
|
7001
7008
|
read: {
|
7002
|
-
anonymize?: boolean | undefined;
|
7003
7009
|
credentials: {
|
7004
|
-
sharing?: boolean | undefined;
|
7005
|
-
shareAll?: boolean | undefined;
|
7006
7010
|
categories: Record<string, {
|
7007
7011
|
sharing?: boolean | undefined;
|
7008
7012
|
shared?: string[] | undefined;
|
7009
7013
|
shareAll?: boolean | undefined;
|
7010
7014
|
shareUntil?: string | undefined;
|
7011
7015
|
}>;
|
7016
|
+
sharing?: boolean | undefined;
|
7017
|
+
shareAll?: boolean | undefined;
|
7012
7018
|
};
|
7013
7019
|
personal: Record<string, string>;
|
7020
|
+
anonymize?: boolean | undefined;
|
7014
7021
|
};
|
7015
7022
|
write: {
|
7016
7023
|
credentials: {
|
@@ -7018,6 +7025,7 @@ export declare const ConsentFlowTransactionValidator: z.ZodObject<{
|
|
7018
7025
|
};
|
7019
7026
|
personal: Record<string, boolean>;
|
7020
7027
|
};
|
7028
|
+
deniedWriters?: string[] | undefined;
|
7021
7029
|
}, {
|
7022
7030
|
read?: {
|
7023
7031
|
anonymize?: boolean | undefined;
|
@@ -7046,23 +7054,25 @@ export declare const ConsentFlowTransactionValidator: z.ZodObject<{
|
|
7046
7054
|
date: z.ZodString;
|
7047
7055
|
uris: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
7048
7056
|
}, "strip", z.ZodTypeAny, {
|
7057
|
+
date: string;
|
7058
|
+
id: string;
|
7059
|
+
action: "write" | "consent" | "update" | "sync" | "withdraw";
|
7049
7060
|
expiresAt?: string | undefined;
|
7050
7061
|
oneTime?: boolean | undefined;
|
7051
7062
|
terms?: {
|
7052
|
-
deniedWriters?: string[] | undefined;
|
7053
7063
|
read: {
|
7054
|
-
anonymize?: boolean | undefined;
|
7055
7064
|
credentials: {
|
7056
|
-
sharing?: boolean | undefined;
|
7057
|
-
shareAll?: boolean | undefined;
|
7058
7065
|
categories: Record<string, {
|
7059
7066
|
sharing?: boolean | undefined;
|
7060
7067
|
shared?: string[] | undefined;
|
7061
7068
|
shareAll?: boolean | undefined;
|
7062
7069
|
shareUntil?: string | undefined;
|
7063
7070
|
}>;
|
7071
|
+
sharing?: boolean | undefined;
|
7072
|
+
shareAll?: boolean | undefined;
|
7064
7073
|
};
|
7065
7074
|
personal: Record<string, string>;
|
7075
|
+
anonymize?: boolean | undefined;
|
7066
7076
|
};
|
7067
7077
|
write: {
|
7068
7078
|
credentials: {
|
@@ -7070,12 +7080,13 @@ export declare const ConsentFlowTransactionValidator: z.ZodObject<{
|
|
7070
7080
|
};
|
7071
7081
|
personal: Record<string, boolean>;
|
7072
7082
|
};
|
7083
|
+
deniedWriters?: string[] | undefined;
|
7073
7084
|
} | undefined;
|
7074
7085
|
uris?: string[] | undefined;
|
7086
|
+
}, {
|
7075
7087
|
date: string;
|
7076
7088
|
id: string;
|
7077
7089
|
action: "write" | "consent" | "update" | "sync" | "withdraw";
|
7078
|
-
}, {
|
7079
7090
|
expiresAt?: string | undefined;
|
7080
7091
|
oneTime?: boolean | undefined;
|
7081
7092
|
terms?: {
|
@@ -7102,12 +7113,9 @@ export declare const ConsentFlowTransactionValidator: z.ZodObject<{
|
|
7102
7113
|
deniedWriters?: string[] | undefined;
|
7103
7114
|
} | undefined;
|
7104
7115
|
uris?: string[] | undefined;
|
7105
|
-
date: string;
|
7106
|
-
id: string;
|
7107
|
-
action: "write" | "consent" | "update" | "sync" | "withdraw";
|
7108
7116
|
}>;
|
7109
7117
|
export type ConsentFlowTransaction = z.infer<typeof ConsentFlowTransactionValidator>;
|
7110
|
-
export declare const PaginatedConsentFlowTransactionsValidator: z.ZodObject<z.extendShape<{
|
7118
|
+
export declare const PaginatedConsentFlowTransactionsValidator: z.ZodObject<z.objectUtil.extendShape<{
|
7111
7119
|
cursor: z.ZodOptional<z.ZodString>;
|
7112
7120
|
hasMore: z.ZodBoolean;
|
7113
7121
|
}, {
|
@@ -7137,14 +7145,14 @@ export declare const PaginatedConsentFlowTransactionsValidator: z.ZodObject<z.ex
|
|
7137
7145
|
shareUntil?: string | undefined;
|
7138
7146
|
}>>>;
|
7139
7147
|
}, "strip", z.ZodTypeAny, {
|
7140
|
-
sharing?: boolean | undefined;
|
7141
|
-
shareAll?: boolean | undefined;
|
7142
7148
|
categories: Record<string, {
|
7143
7149
|
sharing?: boolean | undefined;
|
7144
7150
|
shared?: string[] | undefined;
|
7145
7151
|
shareAll?: boolean | undefined;
|
7146
7152
|
shareUntil?: string | undefined;
|
7147
7153
|
}>;
|
7154
|
+
sharing?: boolean | undefined;
|
7155
|
+
shareAll?: boolean | undefined;
|
7148
7156
|
}, {
|
7149
7157
|
categories?: Record<string, {
|
7150
7158
|
sharing?: boolean | undefined;
|
@@ -7157,18 +7165,18 @@ export declare const PaginatedConsentFlowTransactionsValidator: z.ZodObject<z.ex
|
|
7157
7165
|
}>>;
|
7158
7166
|
personal: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>;
|
7159
7167
|
}, "strip", z.ZodTypeAny, {
|
7160
|
-
anonymize?: boolean | undefined;
|
7161
7168
|
credentials: {
|
7162
|
-
sharing?: boolean | undefined;
|
7163
|
-
shareAll?: boolean | undefined;
|
7164
7169
|
categories: Record<string, {
|
7165
7170
|
sharing?: boolean | undefined;
|
7166
7171
|
shared?: string[] | undefined;
|
7167
7172
|
shareAll?: boolean | undefined;
|
7168
7173
|
shareUntil?: string | undefined;
|
7169
7174
|
}>;
|
7175
|
+
sharing?: boolean | undefined;
|
7176
|
+
shareAll?: boolean | undefined;
|
7170
7177
|
};
|
7171
7178
|
personal: Record<string, string>;
|
7179
|
+
anonymize?: boolean | undefined;
|
7172
7180
|
}, {
|
7173
7181
|
anonymize?: boolean | undefined;
|
7174
7182
|
credentials?: {
|
@@ -7205,20 +7213,19 @@ export declare const PaginatedConsentFlowTransactionsValidator: z.ZodObject<z.ex
|
|
7205
7213
|
}>>;
|
7206
7214
|
deniedWriters: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
7207
7215
|
}, "strip", z.ZodTypeAny, {
|
7208
|
-
deniedWriters?: string[] | undefined;
|
7209
7216
|
read: {
|
7210
|
-
anonymize?: boolean | undefined;
|
7211
7217
|
credentials: {
|
7212
|
-
sharing?: boolean | undefined;
|
7213
|
-
shareAll?: boolean | undefined;
|
7214
7218
|
categories: Record<string, {
|
7215
7219
|
sharing?: boolean | undefined;
|
7216
7220
|
shared?: string[] | undefined;
|
7217
7221
|
shareAll?: boolean | undefined;
|
7218
7222
|
shareUntil?: string | undefined;
|
7219
7223
|
}>;
|
7224
|
+
sharing?: boolean | undefined;
|
7225
|
+
shareAll?: boolean | undefined;
|
7220
7226
|
};
|
7221
7227
|
personal: Record<string, string>;
|
7228
|
+
anonymize?: boolean | undefined;
|
7222
7229
|
};
|
7223
7230
|
write: {
|
7224
7231
|
credentials: {
|
@@ -7226,6 +7233,7 @@ export declare const PaginatedConsentFlowTransactionsValidator: z.ZodObject<z.ex
|
|
7226
7233
|
};
|
7227
7234
|
personal: Record<string, boolean>;
|
7228
7235
|
};
|
7236
|
+
deniedWriters?: string[] | undefined;
|
7229
7237
|
}, {
|
7230
7238
|
read?: {
|
7231
7239
|
anonymize?: boolean | undefined;
|
@@ -7254,23 +7262,25 @@ export declare const PaginatedConsentFlowTransactionsValidator: z.ZodObject<z.ex
|
|
7254
7262
|
date: z.ZodString;
|
7255
7263
|
uris: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
7256
7264
|
}, "strip", z.ZodTypeAny, {
|
7265
|
+
date: string;
|
7266
|
+
id: string;
|
7267
|
+
action: "write" | "consent" | "update" | "sync" | "withdraw";
|
7257
7268
|
expiresAt?: string | undefined;
|
7258
7269
|
oneTime?: boolean | undefined;
|
7259
7270
|
terms?: {
|
7260
|
-
deniedWriters?: string[] | undefined;
|
7261
7271
|
read: {
|
7262
|
-
anonymize?: boolean | undefined;
|
7263
7272
|
credentials: {
|
7264
|
-
sharing?: boolean | undefined;
|
7265
|
-
shareAll?: boolean | undefined;
|
7266
7273
|
categories: Record<string, {
|
7267
7274
|
sharing?: boolean | undefined;
|
7268
7275
|
shared?: string[] | undefined;
|
7269
7276
|
shareAll?: boolean | undefined;
|
7270
7277
|
shareUntil?: string | undefined;
|
7271
7278
|
}>;
|
7279
|
+
sharing?: boolean | undefined;
|
7280
|
+
shareAll?: boolean | undefined;
|
7272
7281
|
};
|
7273
7282
|
personal: Record<string, string>;
|
7283
|
+
anonymize?: boolean | undefined;
|
7274
7284
|
};
|
7275
7285
|
write: {
|
7276
7286
|
credentials: {
|
@@ -7278,12 +7288,13 @@ export declare const PaginatedConsentFlowTransactionsValidator: z.ZodObject<z.ex
|
|
7278
7288
|
};
|
7279
7289
|
personal: Record<string, boolean>;
|
7280
7290
|
};
|
7291
|
+
deniedWriters?: string[] | undefined;
|
7281
7292
|
} | undefined;
|
7282
7293
|
uris?: string[] | undefined;
|
7294
|
+
}, {
|
7283
7295
|
date: string;
|
7284
7296
|
id: string;
|
7285
7297
|
action: "write" | "consent" | "update" | "sync" | "withdraw";
|
7286
|
-
}, {
|
7287
7298
|
expiresAt?: string | undefined;
|
7288
7299
|
oneTime?: boolean | undefined;
|
7289
7300
|
terms?: {
|
@@ -7310,31 +7321,29 @@ export declare const PaginatedConsentFlowTransactionsValidator: z.ZodObject<z.ex
|
|
7310
7321
|
deniedWriters?: string[] | undefined;
|
7311
7322
|
} | undefined;
|
7312
7323
|
uris?: string[] | undefined;
|
7313
|
-
date: string;
|
7314
|
-
id: string;
|
7315
|
-
action: "write" | "consent" | "update" | "sync" | "withdraw";
|
7316
7324
|
}>, "many">;
|
7317
7325
|
}>, "strip", z.ZodTypeAny, {
|
7318
|
-
cursor?: string | undefined;
|
7319
7326
|
hasMore: boolean;
|
7320
7327
|
records: {
|
7328
|
+
date: string;
|
7329
|
+
id: string;
|
7330
|
+
action: "write" | "consent" | "update" | "sync" | "withdraw";
|
7321
7331
|
expiresAt?: string | undefined;
|
7322
7332
|
oneTime?: boolean | undefined;
|
7323
7333
|
terms?: {
|
7324
|
-
deniedWriters?: string[] | undefined;
|
7325
7334
|
read: {
|
7326
|
-
anonymize?: boolean | undefined;
|
7327
7335
|
credentials: {
|
7328
|
-
sharing?: boolean | undefined;
|
7329
|
-
shareAll?: boolean | undefined;
|
7330
7336
|
categories: Record<string, {
|
7331
7337
|
sharing?: boolean | undefined;
|
7332
7338
|
shared?: string[] | undefined;
|
7333
7339
|
shareAll?: boolean | undefined;
|
7334
7340
|
shareUntil?: string | undefined;
|
7335
7341
|
}>;
|
7342
|
+
sharing?: boolean | undefined;
|
7343
|
+
shareAll?: boolean | undefined;
|
7336
7344
|
};
|
7337
7345
|
personal: Record<string, string>;
|
7346
|
+
anonymize?: boolean | undefined;
|
7338
7347
|
};
|
7339
7348
|
write: {
|
7340
7349
|
credentials: {
|
@@ -7342,16 +7351,17 @@ export declare const PaginatedConsentFlowTransactionsValidator: z.ZodObject<z.ex
|
|
7342
7351
|
};
|
7343
7352
|
personal: Record<string, boolean>;
|
7344
7353
|
};
|
7354
|
+
deniedWriters?: string[] | undefined;
|
7345
7355
|
} | undefined;
|
7346
7356
|
uris?: string[] | undefined;
|
7347
|
-
date: string;
|
7348
|
-
id: string;
|
7349
|
-
action: "write" | "consent" | "update" | "sync" | "withdraw";
|
7350
7357
|
}[];
|
7351
|
-
}, {
|
7352
7358
|
cursor?: string | undefined;
|
7359
|
+
}, {
|
7353
7360
|
hasMore: boolean;
|
7354
7361
|
records: {
|
7362
|
+
date: string;
|
7363
|
+
id: string;
|
7364
|
+
action: "write" | "consent" | "update" | "sync" | "withdraw";
|
7355
7365
|
expiresAt?: string | undefined;
|
7356
7366
|
oneTime?: boolean | undefined;
|
7357
7367
|
terms?: {
|
@@ -7377,11 +7387,9 @@ export declare const PaginatedConsentFlowTransactionsValidator: z.ZodObject<z.ex
|
|
7377
7387
|
} | undefined;
|
7378
7388
|
deniedWriters?: string[] | undefined;
|
7379
7389
|
} | undefined;
|
7380
|
-
uris?: string[] | undefined;
|
7381
|
-
date: string;
|
7382
|
-
id: string;
|
7383
|
-
action: "write" | "consent" | "update" | "sync" | "withdraw";
|
7390
|
+
uris?: string[] | undefined;
|
7384
7391
|
}[];
|
7392
|
+
cursor?: string | undefined;
|
7385
7393
|
}>;
|
7386
7394
|
export type PaginatedConsentFlowTransactions = z.infer<typeof PaginatedConsentFlowTransactionsValidator>;
|
7387
7395
|
export declare const ContractCredentialValidator: z.ZodObject<{
|
@@ -7392,22 +7400,22 @@ export declare const ContractCredentialValidator: z.ZodObject<{
|
|
7392
7400
|
category: z.ZodOptional<z.ZodString>;
|
7393
7401
|
date: z.ZodString;
|
7394
7402
|
}, "strip", z.ZodTypeAny, {
|
7395
|
-
category?: string | undefined;
|
7396
7403
|
date: string;
|
7397
7404
|
boostUri: string;
|
7398
7405
|
contractUri: string;
|
7399
7406
|
credentialUri: string;
|
7400
7407
|
termsUri: string;
|
7401
|
-
}, {
|
7402
7408
|
category?: string | undefined;
|
7409
|
+
}, {
|
7403
7410
|
date: string;
|
7404
7411
|
boostUri: string;
|
7405
7412
|
contractUri: string;
|
7406
7413
|
credentialUri: string;
|
7407
7414
|
termsUri: string;
|
7415
|
+
category?: string | undefined;
|
7408
7416
|
}>;
|
7409
7417
|
export type ContractCredential = z.infer<typeof ContractCredentialValidator>;
|
7410
|
-
export declare const PaginatedContractCredentialsValidator: z.ZodObject<z.extendShape<{
|
7418
|
+
export declare const PaginatedContractCredentialsValidator: z.ZodObject<z.objectUtil.extendShape<{
|
7411
7419
|
cursor: z.ZodOptional<z.ZodString>;
|
7412
7420
|
hasMore: z.ZodBoolean;
|
7413
7421
|
}, {
|
@@ -7419,42 +7427,42 @@ export declare const PaginatedContractCredentialsValidator: z.ZodObject<z.extend
|
|
7419
7427
|
category: z.ZodOptional<z.ZodString>;
|
7420
7428
|
date: z.ZodString;
|
7421
7429
|
}, "strip", z.ZodTypeAny, {
|
7422
|
-
category?: string | undefined;
|
7423
7430
|
date: string;
|
7424
7431
|
boostUri: string;
|
7425
7432
|
contractUri: string;
|
7426
7433
|
credentialUri: string;
|
7427
7434
|
termsUri: string;
|
7428
|
-
}, {
|
7429
7435
|
category?: string | undefined;
|
7436
|
+
}, {
|
7430
7437
|
date: string;
|
7431
7438
|
boostUri: string;
|
7432
7439
|
contractUri: string;
|
7433
7440
|
credentialUri: string;
|
7434
7441
|
termsUri: string;
|
7442
|
+
category?: string | undefined;
|
7435
7443
|
}>, "many">;
|
7436
7444
|
}>, "strip", z.ZodTypeAny, {
|
7437
|
-
cursor?: string | undefined;
|
7438
7445
|
hasMore: boolean;
|
7439
7446
|
records: {
|
7440
|
-
category?: string | undefined;
|
7441
7447
|
date: string;
|
7442
7448
|
boostUri: string;
|
7443
7449
|
contractUri: string;
|
7444
7450
|
credentialUri: string;
|
7445
7451
|
termsUri: string;
|
7452
|
+
category?: string | undefined;
|
7446
7453
|
}[];
|
7447
|
-
}, {
|
7448
7454
|
cursor?: string | undefined;
|
7455
|
+
}, {
|
7449
7456
|
hasMore: boolean;
|
7450
7457
|
records: {
|
7451
|
-
category?: string | undefined;
|
7452
7458
|
date: string;
|
7453
7459
|
boostUri: string;
|
7454
7460
|
contractUri: string;
|
7455
7461
|
credentialUri: string;
|
7456
7462
|
termsUri: string;
|
7463
|
+
category?: string | undefined;
|
7457
7464
|
}[];
|
7465
|
+
cursor?: string | undefined;
|
7458
7466
|
}>;
|
7459
7467
|
export type PaginatedContractCredentials = z.infer<typeof PaginatedContractCredentialsValidator>;
|
7460
7468
|
export declare const LCNNotificationTypeEnumValidator: z.ZodEnum<["CONNECTION_REQUEST", "CONNECTION_ACCEPTED", "CREDENTIAL_RECEIVED", "CREDENTIAL_ACCEPTED", "BOOST_RECEIVED", "BOOST_ACCEPTED", "PRESENTATION_REQUEST", "PRESENTATION_RECEIVED", "CONSENT_FLOW_TRANSACTION"]>;
|
@@ -7499,14 +7507,14 @@ export declare const LCNNotificationDataValidator: z.ZodObject<{
|
|
7499
7507
|
shareUntil?: string | undefined;
|
7500
7508
|
}>>>;
|
7501
7509
|
}, "strip", z.ZodTypeAny, {
|
7502
|
-
sharing?: boolean | undefined;
|
7503
|
-
shareAll?: boolean | undefined;
|
7504
7510
|
categories: Record<string, {
|
7505
7511
|
sharing?: boolean | undefined;
|
7506
7512
|
shared?: string[] | undefined;
|
7507
7513
|
shareAll?: boolean | undefined;
|
7508
7514
|
shareUntil?: string | undefined;
|
7509
7515
|
}>;
|
7516
|
+
sharing?: boolean | undefined;
|
7517
|
+
shareAll?: boolean | undefined;
|
7510
7518
|
}, {
|
7511
7519
|
categories?: Record<string, {
|
7512
7520
|
sharing?: boolean | undefined;
|
@@ -7519,18 +7527,18 @@ export declare const LCNNotificationDataValidator: z.ZodObject<{
|
|
7519
7527
|
}>>;
|
7520
7528
|
personal: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>;
|
7521
7529
|
}, "strip", z.ZodTypeAny, {
|
7522
|
-
anonymize?: boolean | undefined;
|
7523
7530
|
credentials: {
|
7524
|
-
sharing?: boolean | undefined;
|
7525
|
-
shareAll?: boolean | undefined;
|
7526
7531
|
categories: Record<string, {
|
7527
7532
|
sharing?: boolean | undefined;
|
7528
7533
|
shared?: string[] | undefined;
|
7529
7534
|
shareAll?: boolean | undefined;
|
7530
7535
|
shareUntil?: string | undefined;
|
7531
7536
|
}>;
|
7537
|
+
sharing?: boolean | undefined;
|
7538
|
+
shareAll?: boolean | undefined;
|
7532
7539
|
};
|
7533
7540
|
personal: Record<string, string>;
|
7541
|
+
anonymize?: boolean | undefined;
|
7534
7542
|
}, {
|
7535
7543
|
anonymize?: boolean | undefined;
|
7536
7544
|
credentials?: {
|
@@ -7567,20 +7575,19 @@ export declare const LCNNotificationDataValidator: z.ZodObject<{
|
|
7567
7575
|
}>>;
|
7568
7576
|
deniedWriters: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
7569
7577
|
}, "strip", z.ZodTypeAny, {
|
7570
|
-
deniedWriters?: string[] | undefined;
|
7571
7578
|
read: {
|
7572
|
-
anonymize?: boolean | undefined;
|
7573
7579
|
credentials: {
|
7574
|
-
sharing?: boolean | undefined;
|
7575
|
-
shareAll?: boolean | undefined;
|
7576
7580
|
categories: Record<string, {
|
7577
7581
|
sharing?: boolean | undefined;
|
7578
7582
|
shared?: string[] | undefined;
|
7579
7583
|
shareAll?: boolean | undefined;
|
7580
7584
|
shareUntil?: string | undefined;
|
7581
7585
|
}>;
|
7586
|
+
sharing?: boolean | undefined;
|
7587
|
+
shareAll?: boolean | undefined;
|
7582
7588
|
};
|
7583
7589
|
personal: Record<string, string>;
|
7590
|
+
anonymize?: boolean | undefined;
|
7584
7591
|
};
|
7585
7592
|
write: {
|
7586
7593
|
credentials: {
|
@@ -7588,6 +7595,7 @@ export declare const LCNNotificationDataValidator: z.ZodObject<{
|
|
7588
7595
|
};
|
7589
7596
|
personal: Record<string, boolean>;
|
7590
7597
|
};
|
7598
|
+
deniedWriters?: string[] | undefined;
|
7591
7599
|
}, {
|
7592
7600
|
read?: {
|
7593
7601
|
anonymize?: boolean | undefined;
|
@@ -7616,23 +7624,25 @@ export declare const LCNNotificationDataValidator: z.ZodObject<{
|
|
7616
7624
|
date: z.ZodString;
|
7617
7625
|
uris: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
7618
7626
|
}, "strip", z.ZodTypeAny, {
|
7627
|
+
date: string;
|
7628
|
+
id: string;
|
7629
|
+
action: "write" | "consent" | "update" | "sync" | "withdraw";
|
7619
7630
|
expiresAt?: string | undefined;
|
7620
7631
|
oneTime?: boolean | undefined;
|
7621
7632
|
terms?: {
|
7622
|
-
deniedWriters?: string[] | undefined;
|
7623
7633
|
read: {
|
7624
|
-
anonymize?: boolean | undefined;
|
7625
7634
|
credentials: {
|
7626
|
-
sharing?: boolean | undefined;
|
7627
|
-
shareAll?: boolean | undefined;
|
7628
7635
|
categories: Record<string, {
|
7629
7636
|
sharing?: boolean | undefined;
|
7630
7637
|
shared?: string[] | undefined;
|
7631
7638
|
shareAll?: boolean | undefined;
|
7632
7639
|
shareUntil?: string | undefined;
|
7633
7640
|
}>;
|
7641
|
+
sharing?: boolean | undefined;
|
7642
|
+
shareAll?: boolean | undefined;
|
7634
7643
|
};
|
7635
7644
|
personal: Record<string, string>;
|
7645
|
+
anonymize?: boolean | undefined;
|
7636
7646
|
};
|
7637
7647
|
write: {
|
7638
7648
|
credentials: {
|
@@ -7640,12 +7650,13 @@ export declare const LCNNotificationDataValidator: z.ZodObject<{
|
|
7640
7650
|
};
|
7641
7651
|
personal: Record<string, boolean>;
|
7642
7652
|
};
|
7653
|
+
deniedWriters?: string[] | undefined;
|
7643
7654
|
} | undefined;
|
7644
7655
|
uris?: string[] | undefined;
|
7656
|
+
}, {
|
7645
7657
|
date: string;
|
7646
7658
|
id: string;
|
7647
7659
|
action: "write" | "consent" | "update" | "sync" | "withdraw";
|
7648
|
-
}, {
|
7649
7660
|
expiresAt?: string | undefined;
|
7650
7661
|
oneTime?: boolean | undefined;
|
7651
7662
|
terms?: {
|
@@ -7672,31 +7683,30 @@ export declare const LCNNotificationDataValidator: z.ZodObject<{
|
|
7672
7683
|
deniedWriters?: string[] | undefined;
|
7673
7684
|
} | undefined;
|
7674
7685
|
uris?: string[] | undefined;
|
7675
|
-
date: string;
|
7676
|
-
id: string;
|
7677
|
-
action: "write" | "consent" | "update" | "sync" | "withdraw";
|
7678
7686
|
}>>;
|
7679
7687
|
}, "strip", z.ZodTypeAny, {
|
7680
7688
|
vcUris?: string[] | undefined;
|
7681
7689
|
vpUris?: string[] | undefined;
|
7682
7690
|
transaction?: {
|
7691
|
+
date: string;
|
7692
|
+
id: string;
|
7693
|
+
action: "write" | "consent" | "update" | "sync" | "withdraw";
|
7683
7694
|
expiresAt?: string | undefined;
|
7684
7695
|
oneTime?: boolean | undefined;
|
7685
7696
|
terms?: {
|
7686
|
-
deniedWriters?: string[] | undefined;
|
7687
7697
|
read: {
|
7688
|
-
anonymize?: boolean | undefined;
|
7689
7698
|
credentials: {
|
7690
|
-
sharing?: boolean | undefined;
|
7691
|
-
shareAll?: boolean | undefined;
|
7692
7699
|
categories: Record<string, {
|
7693
7700
|
sharing?: boolean | undefined;
|
7694
7701
|
shared?: string[] | undefined;
|
7695
7702
|
shareAll?: boolean | undefined;
|
7696
7703
|
shareUntil?: string | undefined;
|
7697
7704
|
}>;
|
7705
|
+
sharing?: boolean | undefined;
|
7706
|
+
shareAll?: boolean | undefined;
|
7698
7707
|
};
|
7699
7708
|
personal: Record<string, string>;
|
7709
|
+
anonymize?: boolean | undefined;
|
7700
7710
|
};
|
7701
7711
|
write: {
|
7702
7712
|
credentials: {
|
@@ -7704,16 +7714,17 @@ export declare const LCNNotificationDataValidator: z.ZodObject<{
|
|
7704
7714
|
};
|
7705
7715
|
personal: Record<string, boolean>;
|
7706
7716
|
};
|
7717
|
+
deniedWriters?: string[] | undefined;
|
7707
7718
|
} | undefined;
|
7708
7719
|
uris?: string[] | undefined;
|
7709
|
-
date: string;
|
7710
|
-
id: string;
|
7711
|
-
action: "write" | "consent" | "update" | "sync" | "withdraw";
|
7712
7720
|
} | undefined;
|
7713
7721
|
}, {
|
7714
7722
|
vcUris?: string[] | undefined;
|
7715
7723
|
vpUris?: string[] | undefined;
|
7716
7724
|
transaction?: {
|
7725
|
+
date: string;
|
7726
|
+
id: string;
|
7727
|
+
action: "write" | "consent" | "update" | "sync" | "withdraw";
|
7717
7728
|
expiresAt?: string | undefined;
|
7718
7729
|
oneTime?: boolean | undefined;
|
7719
7730
|
terms?: {
|
@@ -7740,9 +7751,6 @@ export declare const LCNNotificationDataValidator: z.ZodObject<{
|
|
7740
7751
|
deniedWriters?: string[] | undefined;
|
7741
7752
|
} | undefined;
|
7742
7753
|
uris?: string[] | undefined;
|
7743
|
-
date: string;
|
7744
|
-
id: string;
|
7745
|
-
action: "write" | "consent" | "update" | "sync" | "withdraw";
|
7746
7754
|
} | undefined;
|
7747
7755
|
}>;
|
7748
7756
|
export type LCNNotificationData = z.infer<typeof LCNNotificationDataValidator>;
|
@@ -8023,14 +8031,14 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
8023
8031
|
shareUntil?: string | undefined;
|
8024
8032
|
}>>>;
|
8025
8033
|
}, "strip", z.ZodTypeAny, {
|
8026
|
-
sharing?: boolean | undefined;
|
8027
|
-
shareAll?: boolean | undefined;
|
8028
8034
|
categories: Record<string, {
|
8029
8035
|
sharing?: boolean | undefined;
|
8030
8036
|
shared?: string[] | undefined;
|
8031
8037
|
shareAll?: boolean | undefined;
|
8032
8038
|
shareUntil?: string | undefined;
|
8033
8039
|
}>;
|
8040
|
+
sharing?: boolean | undefined;
|
8041
|
+
shareAll?: boolean | undefined;
|
8034
8042
|
}, {
|
8035
8043
|
categories?: Record<string, {
|
8036
8044
|
sharing?: boolean | undefined;
|
@@ -8043,18 +8051,18 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
8043
8051
|
}>>;
|
8044
8052
|
personal: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>;
|
8045
8053
|
}, "strip", z.ZodTypeAny, {
|
8046
|
-
anonymize?: boolean | undefined;
|
8047
8054
|
credentials: {
|
8048
|
-
sharing?: boolean | undefined;
|
8049
|
-
shareAll?: boolean | undefined;
|
8050
8055
|
categories: Record<string, {
|
8051
8056
|
sharing?: boolean | undefined;
|
8052
8057
|
shared?: string[] | undefined;
|
8053
8058
|
shareAll?: boolean | undefined;
|
8054
8059
|
shareUntil?: string | undefined;
|
8055
8060
|
}>;
|
8061
|
+
sharing?: boolean | undefined;
|
8062
|
+
shareAll?: boolean | undefined;
|
8056
8063
|
};
|
8057
8064
|
personal: Record<string, string>;
|
8065
|
+
anonymize?: boolean | undefined;
|
8058
8066
|
}, {
|
8059
8067
|
anonymize?: boolean | undefined;
|
8060
8068
|
credentials?: {
|
@@ -8091,20 +8099,19 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
8091
8099
|
}>>;
|
8092
8100
|
deniedWriters: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
8093
8101
|
}, "strip", z.ZodTypeAny, {
|
8094
|
-
deniedWriters?: string[] | undefined;
|
8095
8102
|
read: {
|
8096
|
-
anonymize?: boolean | undefined;
|
8097
8103
|
credentials: {
|
8098
|
-
sharing?: boolean | undefined;
|
8099
|
-
shareAll?: boolean | undefined;
|
8100
8104
|
categories: Record<string, {
|
8101
8105
|
sharing?: boolean | undefined;
|
8102
8106
|
shared?: string[] | undefined;
|
8103
8107
|
shareAll?: boolean | undefined;
|
8104
8108
|
shareUntil?: string | undefined;
|
8105
8109
|
}>;
|
8110
|
+
sharing?: boolean | undefined;
|
8111
|
+
shareAll?: boolean | undefined;
|
8106
8112
|
};
|
8107
8113
|
personal: Record<string, string>;
|
8114
|
+
anonymize?: boolean | undefined;
|
8108
8115
|
};
|
8109
8116
|
write: {
|
8110
8117
|
credentials: {
|
@@ -8112,6 +8119,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
8112
8119
|
};
|
8113
8120
|
personal: Record<string, boolean>;
|
8114
8121
|
};
|
8122
|
+
deniedWriters?: string[] | undefined;
|
8115
8123
|
}, {
|
8116
8124
|
read?: {
|
8117
8125
|
anonymize?: boolean | undefined;
|
@@ -8140,23 +8148,25 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
8140
8148
|
date: z.ZodString;
|
8141
8149
|
uris: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
8142
8150
|
}, "strip", z.ZodTypeAny, {
|
8151
|
+
date: string;
|
8152
|
+
id: string;
|
8153
|
+
action: "write" | "consent" | "update" | "sync" | "withdraw";
|
8143
8154
|
expiresAt?: string | undefined;
|
8144
8155
|
oneTime?: boolean | undefined;
|
8145
8156
|
terms?: {
|
8146
|
-
deniedWriters?: string[] | undefined;
|
8147
8157
|
read: {
|
8148
|
-
anonymize?: boolean | undefined;
|
8149
8158
|
credentials: {
|
8150
|
-
sharing?: boolean | undefined;
|
8151
|
-
shareAll?: boolean | undefined;
|
8152
8159
|
categories: Record<string, {
|
8153
8160
|
sharing?: boolean | undefined;
|
8154
8161
|
shared?: string[] | undefined;
|
8155
8162
|
shareAll?: boolean | undefined;
|
8156
8163
|
shareUntil?: string | undefined;
|
8157
8164
|
}>;
|
8165
|
+
sharing?: boolean | undefined;
|
8166
|
+
shareAll?: boolean | undefined;
|
8158
8167
|
};
|
8159
8168
|
personal: Record<string, string>;
|
8169
|
+
anonymize?: boolean | undefined;
|
8160
8170
|
};
|
8161
8171
|
write: {
|
8162
8172
|
credentials: {
|
@@ -8164,12 +8174,13 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
8164
8174
|
};
|
8165
8175
|
personal: Record<string, boolean>;
|
8166
8176
|
};
|
8177
|
+
deniedWriters?: string[] | undefined;
|
8167
8178
|
} | undefined;
|
8168
8179
|
uris?: string[] | undefined;
|
8180
|
+
}, {
|
8169
8181
|
date: string;
|
8170
8182
|
id: string;
|
8171
8183
|
action: "write" | "consent" | "update" | "sync" | "withdraw";
|
8172
|
-
}, {
|
8173
8184
|
expiresAt?: string | undefined;
|
8174
8185
|
oneTime?: boolean | undefined;
|
8175
8186
|
terms?: {
|
@@ -8196,31 +8207,30 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
8196
8207
|
deniedWriters?: string[] | undefined;
|
8197
8208
|
} | undefined;
|
8198
8209
|
uris?: string[] | undefined;
|
8199
|
-
date: string;
|
8200
|
-
id: string;
|
8201
|
-
action: "write" | "consent" | "update" | "sync" | "withdraw";
|
8202
8210
|
}>>;
|
8203
8211
|
}, "strip", z.ZodTypeAny, {
|
8204
8212
|
vcUris?: string[] | undefined;
|
8205
8213
|
vpUris?: string[] | undefined;
|
8206
8214
|
transaction?: {
|
8215
|
+
date: string;
|
8216
|
+
id: string;
|
8217
|
+
action: "write" | "consent" | "update" | "sync" | "withdraw";
|
8207
8218
|
expiresAt?: string | undefined;
|
8208
8219
|
oneTime?: boolean | undefined;
|
8209
8220
|
terms?: {
|
8210
|
-
deniedWriters?: string[] | undefined;
|
8211
8221
|
read: {
|
8212
|
-
anonymize?: boolean | undefined;
|
8213
8222
|
credentials: {
|
8214
|
-
sharing?: boolean | undefined;
|
8215
|
-
shareAll?: boolean | undefined;
|
8216
8223
|
categories: Record<string, {
|
8217
8224
|
sharing?: boolean | undefined;
|
8218
8225
|
shared?: string[] | undefined;
|
8219
8226
|
shareAll?: boolean | undefined;
|
8220
8227
|
shareUntil?: string | undefined;
|
8221
8228
|
}>;
|
8229
|
+
sharing?: boolean | undefined;
|
8230
|
+
shareAll?: boolean | undefined;
|
8222
8231
|
};
|
8223
8232
|
personal: Record<string, string>;
|
8233
|
+
anonymize?: boolean | undefined;
|
8224
8234
|
};
|
8225
8235
|
write: {
|
8226
8236
|
credentials: {
|
@@ -8228,16 +8238,17 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
8228
8238
|
};
|
8229
8239
|
personal: Record<string, boolean>;
|
8230
8240
|
};
|
8241
|
+
deniedWriters?: string[] | undefined;
|
8231
8242
|
} | undefined;
|
8232
8243
|
uris?: string[] | undefined;
|
8233
|
-
date: string;
|
8234
|
-
id: string;
|
8235
|
-
action: "write" | "consent" | "update" | "sync" | "withdraw";
|
8236
8244
|
} | undefined;
|
8237
8245
|
}, {
|
8238
8246
|
vcUris?: string[] | undefined;
|
8239
8247
|
vpUris?: string[] | undefined;
|
8240
8248
|
transaction?: {
|
8249
|
+
date: string;
|
8250
|
+
id: string;
|
8251
|
+
action: "write" | "consent" | "update" | "sync" | "withdraw";
|
8241
8252
|
expiresAt?: string | undefined;
|
8242
8253
|
oneTime?: boolean | undefined;
|
8243
8254
|
terms?: {
|
@@ -8264,53 +8275,10 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
8264
8275
|
deniedWriters?: string[] | undefined;
|
8265
8276
|
} | undefined;
|
8266
8277
|
uris?: string[] | undefined;
|
8267
|
-
date: string;
|
8268
|
-
id: string;
|
8269
|
-
action: "write" | "consent" | "update" | "sync" | "withdraw";
|
8270
8278
|
} | undefined;
|
8271
8279
|
}>>;
|
8272
8280
|
sent: z.ZodOptional<z.ZodString>;
|
8273
8281
|
}, "strip", z.ZodTypeAny, {
|
8274
|
-
message?: {
|
8275
|
-
title?: string | undefined;
|
8276
|
-
body?: string | undefined;
|
8277
|
-
} | undefined;
|
8278
|
-
data?: {
|
8279
|
-
vcUris?: string[] | undefined;
|
8280
|
-
vpUris?: string[] | undefined;
|
8281
|
-
transaction?: {
|
8282
|
-
expiresAt?: string | undefined;
|
8283
|
-
oneTime?: boolean | undefined;
|
8284
|
-
terms?: {
|
8285
|
-
deniedWriters?: string[] | undefined;
|
8286
|
-
read: {
|
8287
|
-
anonymize?: boolean | undefined;
|
8288
|
-
credentials: {
|
8289
|
-
sharing?: boolean | undefined;
|
8290
|
-
shareAll?: boolean | undefined;
|
8291
|
-
categories: Record<string, {
|
8292
|
-
sharing?: boolean | undefined;
|
8293
|
-
shared?: string[] | undefined;
|
8294
|
-
shareAll?: boolean | undefined;
|
8295
|
-
shareUntil?: string | undefined;
|
8296
|
-
}>;
|
8297
|
-
};
|
8298
|
-
personal: Record<string, string>;
|
8299
|
-
};
|
8300
|
-
write: {
|
8301
|
-
credentials: {
|
8302
|
-
categories: Record<string, boolean>;
|
8303
|
-
};
|
8304
|
-
personal: Record<string, boolean>;
|
8305
|
-
};
|
8306
|
-
} | undefined;
|
8307
|
-
uris?: string[] | undefined;
|
8308
|
-
date: string;
|
8309
|
-
id: string;
|
8310
|
-
action: "write" | "consent" | "update" | "sync" | "withdraw";
|
8311
|
-
} | undefined;
|
8312
|
-
} | undefined;
|
8313
|
-
sent?: string | undefined;
|
8314
8282
|
type: "CONNECTION_REQUEST" | "CONNECTION_ACCEPTED" | "CREDENTIAL_RECEIVED" | "CREDENTIAL_ACCEPTED" | "BOOST_RECEIVED" | "BOOST_ACCEPTED" | "PRESENTATION_REQUEST" | "PRESENTATION_RECEIVED" | "CONSENT_FLOW_TRANSACTION";
|
8315
8283
|
to: {
|
8316
8284
|
type?: string | undefined;
|
@@ -8376,47 +8344,47 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
8376
8344
|
} & {
|
8377
8345
|
did: string;
|
8378
8346
|
};
|
8379
|
-
}, {
|
8380
8347
|
message?: {
|
8381
8348
|
title?: string | undefined;
|
8382
8349
|
body?: string | undefined;
|
8383
8350
|
} | undefined;
|
8351
|
+
sent?: string | undefined;
|
8384
8352
|
data?: {
|
8385
8353
|
vcUris?: string[] | undefined;
|
8386
8354
|
vpUris?: string[] | undefined;
|
8387
8355
|
transaction?: {
|
8356
|
+
date: string;
|
8357
|
+
id: string;
|
8358
|
+
action: "write" | "consent" | "update" | "sync" | "withdraw";
|
8388
8359
|
expiresAt?: string | undefined;
|
8389
8360
|
oneTime?: boolean | undefined;
|
8390
8361
|
terms?: {
|
8391
|
-
read
|
8392
|
-
|
8393
|
-
|
8394
|
-
categories?: Record<string, {
|
8362
|
+
read: {
|
8363
|
+
credentials: {
|
8364
|
+
categories: Record<string, {
|
8395
8365
|
sharing?: boolean | undefined;
|
8396
8366
|
shared?: string[] | undefined;
|
8397
8367
|
shareAll?: boolean | undefined;
|
8398
8368
|
shareUntil?: string | undefined;
|
8399
|
-
}
|
8369
|
+
}>;
|
8400
8370
|
sharing?: boolean | undefined;
|
8401
8371
|
shareAll?: boolean | undefined;
|
8402
|
-
}
|
8403
|
-
personal
|
8404
|
-
|
8405
|
-
|
8406
|
-
|
8407
|
-
|
8408
|
-
|
8409
|
-
|
8410
|
-
|
8372
|
+
};
|
8373
|
+
personal: Record<string, string>;
|
8374
|
+
anonymize?: boolean | undefined;
|
8375
|
+
};
|
8376
|
+
write: {
|
8377
|
+
credentials: {
|
8378
|
+
categories: Record<string, boolean>;
|
8379
|
+
};
|
8380
|
+
personal: Record<string, boolean>;
|
8381
|
+
};
|
8411
8382
|
deniedWriters?: string[] | undefined;
|
8412
8383
|
} | undefined;
|
8413
8384
|
uris?: string[] | undefined;
|
8414
|
-
date: string;
|
8415
|
-
id: string;
|
8416
|
-
action: "write" | "consent" | "update" | "sync" | "withdraw";
|
8417
8385
|
} | undefined;
|
8418
8386
|
} | undefined;
|
8419
|
-
|
8387
|
+
}, {
|
8420
8388
|
type: "CONNECTION_REQUEST" | "CONNECTION_ACCEPTED" | "CREDENTIAL_RECEIVED" | "CREDENTIAL_ACCEPTED" | "BOOST_RECEIVED" | "BOOST_ACCEPTED" | "PRESENTATION_REQUEST" | "PRESENTATION_RECEIVED" | "CONSENT_FLOW_TRANSACTION";
|
8421
8389
|
to: {
|
8422
8390
|
type?: string | undefined;
|
@@ -8482,6 +8450,46 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
8482
8450
|
} & {
|
8483
8451
|
did: string;
|
8484
8452
|
};
|
8453
|
+
message?: {
|
8454
|
+
title?: string | undefined;
|
8455
|
+
body?: string | undefined;
|
8456
|
+
} | undefined;
|
8457
|
+
sent?: string | undefined;
|
8458
|
+
data?: {
|
8459
|
+
vcUris?: string[] | undefined;
|
8460
|
+
vpUris?: string[] | undefined;
|
8461
|
+
transaction?: {
|
8462
|
+
date: string;
|
8463
|
+
id: string;
|
8464
|
+
action: "write" | "consent" | "update" | "sync" | "withdraw";
|
8465
|
+
expiresAt?: string | undefined;
|
8466
|
+
oneTime?: boolean | undefined;
|
8467
|
+
terms?: {
|
8468
|
+
read?: {
|
8469
|
+
anonymize?: boolean | undefined;
|
8470
|
+
credentials?: {
|
8471
|
+
categories?: Record<string, {
|
8472
|
+
sharing?: boolean | undefined;
|
8473
|
+
shared?: string[] | undefined;
|
8474
|
+
shareAll?: boolean | undefined;
|
8475
|
+
shareUntil?: string | undefined;
|
8476
|
+
}> | undefined;
|
8477
|
+
sharing?: boolean | undefined;
|
8478
|
+
shareAll?: boolean | undefined;
|
8479
|
+
} | undefined;
|
8480
|
+
personal?: Record<string, string> | undefined;
|
8481
|
+
} | undefined;
|
8482
|
+
write?: {
|
8483
|
+
credentials?: {
|
8484
|
+
categories?: Record<string, boolean> | undefined;
|
8485
|
+
} | undefined;
|
8486
|
+
personal?: Record<string, boolean> | undefined;
|
8487
|
+
} | undefined;
|
8488
|
+
deniedWriters?: string[] | undefined;
|
8489
|
+
} | undefined;
|
8490
|
+
uris?: string[] | undefined;
|
8491
|
+
} | undefined;
|
8492
|
+
} | undefined;
|
8485
8493
|
}>;
|
8486
8494
|
export type LCNNotification = z.infer<typeof LCNNotificationValidator>;
|
8487
8495
|
export declare const AUTH_GRANT_AUDIENCE_DOMAIN_PREFIX = "auth-grant:";
|
@@ -8493,36 +8501,34 @@ export declare const AuthGrantValidator: z.ZodObject<{
|
|
8493
8501
|
status: z.ZodEnum<["revoked", "active"]>;
|
8494
8502
|
scope: z.ZodString;
|
8495
8503
|
createdAt: z.ZodString;
|
8496
|
-
expiresAt: z.ZodOptional<z.
|
8504
|
+
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
8497
8505
|
}, "strip", z.ZodTypeAny, {
|
8498
|
-
description?: string | undefined;
|
8499
|
-
expiresAt?: string | null | undefined;
|
8500
8506
|
status: "revoked" | "active";
|
8501
8507
|
id: string;
|
8502
8508
|
name: string;
|
8503
8509
|
challenge: string;
|
8504
8510
|
createdAt: string;
|
8505
8511
|
scope: string;
|
8506
|
-
}, {
|
8507
8512
|
description?: string | undefined;
|
8508
8513
|
expiresAt?: string | null | undefined;
|
8514
|
+
}, {
|
8509
8515
|
status: "revoked" | "active";
|
8510
8516
|
id: string;
|
8511
8517
|
name: string;
|
8512
8518
|
challenge: string;
|
8513
8519
|
createdAt: string;
|
8514
8520
|
scope: string;
|
8521
|
+
description?: string | undefined;
|
8522
|
+
expiresAt?: string | null | undefined;
|
8515
8523
|
}>;
|
8516
8524
|
export type AuthGrantType = z.infer<typeof AuthGrantValidator>;
|
8517
8525
|
export declare const FlatAuthGrantValidator: z.ZodObject<{
|
8518
8526
|
id: z.ZodString;
|
8519
|
-
}, "strip", z.ZodAny, {
|
8520
|
-
|
8521
|
-
|
8522
|
-
|
8523
|
-
|
8524
|
-
id: string;
|
8525
|
-
}>;
|
8527
|
+
}, "strip", z.ZodAny, z.objectOutputType<{
|
8528
|
+
id: z.ZodString;
|
8529
|
+
}, z.ZodAny, "strip">, z.objectInputType<{
|
8530
|
+
id: z.ZodString;
|
8531
|
+
}, z.ZodAny, "strip">>;
|
8526
8532
|
export type FlatAuthGrantType = z.infer<typeof FlatAuthGrantValidator>;
|
8527
8533
|
export declare const AuthGrantStatusValidator: z.ZodEnum<["active", "revoked"]>;
|
8528
8534
|
export type AuthGrantStatus = z.infer<typeof AuthGrantStatusValidator>;
|