@learncard/types 5.6.13 → 5.7.0

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/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
- id: string;
881
- created: string;
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,10 @@ 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
2274
  }, "strip", z.ZodTypeAny, {
2275
+ uri: string;
2275
2276
  type?: string | undefined;
2276
2277
  status?: "DRAFT" | "LIVE" | undefined;
2277
2278
  name?: string | undefined;
@@ -2279,7 +2280,6 @@ export declare const BoostValidator: z.ZodObject<{
2279
2280
  autoConnectRecipients?: boolean | undefined;
2280
2281
  meta?: Record<string, any> | undefined;
2281
2282
  claimPermissions?: {
2282
- canManageChildrenProfiles?: boolean | undefined;
2283
2283
  role: string;
2284
2284
  canEdit: boolean;
2285
2285
  canIssue: boolean;
@@ -2291,9 +2291,10 @@ export declare const BoostValidator: z.ZodObject<{
2291
2291
  canRevokeChildren: string;
2292
2292
  canManageChildrenPermissions: string;
2293
2293
  canViewAnalytics: boolean;
2294
+ canManageChildrenProfiles?: boolean | undefined;
2294
2295
  } | undefined;
2295
- uri: string;
2296
2296
  }, {
2297
+ uri: string;
2297
2298
  type?: string | undefined;
2298
2299
  status?: "DRAFT" | "LIVE" | undefined;
2299
2300
  name?: string | undefined;
@@ -2301,7 +2302,6 @@ export declare const BoostValidator: z.ZodObject<{
2301
2302
  autoConnectRecipients?: boolean | undefined;
2302
2303
  meta?: Record<string, any> | undefined;
2303
2304
  claimPermissions?: {
2304
- canManageChildrenProfiles?: boolean | undefined;
2305
2305
  role: string;
2306
2306
  canEdit: boolean;
2307
2307
  canIssue: boolean;
@@ -2313,8 +2313,8 @@ export declare const BoostValidator: z.ZodObject<{
2313
2313
  canRevokeChildren: string;
2314
2314
  canManageChildrenPermissions: string;
2315
2315
  canViewAnalytics: boolean;
2316
+ canManageChildrenProfiles?: boolean | undefined;
2316
2317
  } | undefined;
2317
- uri: string;
2318
2318
  }>;
2319
2319
  export type Boost = z.infer<typeof BoostValidator>;
2320
2320
  export declare const BoostQueryValidator: z.ZodObject<{
@@ -2453,7 +2453,7 @@ export declare const BoostQueryValidator: z.ZodObject<{
2453
2453
  }> | undefined;
2454
2454
  }>;
2455
2455
  export type BoostQuery = z.infer<typeof BoostQueryValidator>;
2456
- export declare const PaginatedBoostsValidator: z.ZodObject<z.extendShape<{
2456
+ export declare const PaginatedBoostsValidator: z.ZodObject<z.objectUtil.extendShape<{
2457
2457
  cursor: z.ZodOptional<z.ZodString>;
2458
2458
  hasMore: z.ZodBoolean;
2459
2459
  }, {
@@ -2479,7 +2479,6 @@ export declare const PaginatedBoostsValidator: z.ZodObject<z.extendShape<{
2479
2479
  canManageChildrenProfiles: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2480
2480
  canViewAnalytics: z.ZodBoolean;
2481
2481
  }, "strip", z.ZodTypeAny, {
2482
- canManageChildrenProfiles?: boolean | undefined;
2483
2482
  role: string;
2484
2483
  canEdit: boolean;
2485
2484
  canIssue: boolean;
@@ -2491,8 +2490,8 @@ export declare const PaginatedBoostsValidator: z.ZodObject<z.extendShape<{
2491
2490
  canRevokeChildren: string;
2492
2491
  canManageChildrenPermissions: string;
2493
2492
  canViewAnalytics: boolean;
2494
- }, {
2495
2493
  canManageChildrenProfiles?: boolean | undefined;
2494
+ }, {
2496
2495
  role: string;
2497
2496
  canEdit: boolean;
2498
2497
  canIssue: boolean;
@@ -2504,8 +2503,10 @@ export declare const PaginatedBoostsValidator: z.ZodObject<z.extendShape<{
2504
2503
  canRevokeChildren: string;
2505
2504
  canManageChildrenPermissions: string;
2506
2505
  canViewAnalytics: boolean;
2506
+ canManageChildrenProfiles?: boolean | undefined;
2507
2507
  }>>;
2508
2508
  }, "strip", z.ZodTypeAny, {
2509
+ uri: string;
2509
2510
  type?: string | undefined;
2510
2511
  status?: "DRAFT" | "LIVE" | undefined;
2511
2512
  name?: string | undefined;
@@ -2513,7 +2514,6 @@ export declare const PaginatedBoostsValidator: z.ZodObject<z.extendShape<{
2513
2514
  autoConnectRecipients?: boolean | undefined;
2514
2515
  meta?: Record<string, any> | undefined;
2515
2516
  claimPermissions?: {
2516
- canManageChildrenProfiles?: boolean | undefined;
2517
2517
  role: string;
2518
2518
  canEdit: boolean;
2519
2519
  canIssue: boolean;
@@ -2525,9 +2525,10 @@ export declare const PaginatedBoostsValidator: z.ZodObject<z.extendShape<{
2525
2525
  canRevokeChildren: string;
2526
2526
  canManageChildrenPermissions: string;
2527
2527
  canViewAnalytics: boolean;
2528
+ canManageChildrenProfiles?: boolean | undefined;
2528
2529
  } | undefined;
2529
- uri: string;
2530
2530
  }, {
2531
+ uri: string;
2531
2532
  type?: string | undefined;
2532
2533
  status?: "DRAFT" | "LIVE" | undefined;
2533
2534
  name?: string | undefined;
@@ -2535,7 +2536,6 @@ export declare const PaginatedBoostsValidator: z.ZodObject<z.extendShape<{
2535
2536
  autoConnectRecipients?: boolean | undefined;
2536
2537
  meta?: Record<string, any> | undefined;
2537
2538
  claimPermissions?: {
2538
- canManageChildrenProfiles?: boolean | undefined;
2539
2539
  role: string;
2540
2540
  canEdit: boolean;
2541
2541
  canIssue: boolean;
@@ -2547,13 +2547,13 @@ export declare const PaginatedBoostsValidator: z.ZodObject<z.extendShape<{
2547
2547
  canRevokeChildren: string;
2548
2548
  canManageChildrenPermissions: string;
2549
2549
  canViewAnalytics: boolean;
2550
+ canManageChildrenProfiles?: boolean | undefined;
2550
2551
  } | undefined;
2551
- uri: string;
2552
2552
  }>, "many">;
2553
2553
  }>, "strip", z.ZodTypeAny, {
2554
- cursor?: string | undefined;
2555
2554
  hasMore: boolean;
2556
2555
  records: {
2556
+ uri: string;
2557
2557
  type?: string | undefined;
2558
2558
  status?: "DRAFT" | "LIVE" | undefined;
2559
2559
  name?: string | undefined;
@@ -2561,7 +2561,6 @@ export declare const PaginatedBoostsValidator: z.ZodObject<z.extendShape<{
2561
2561
  autoConnectRecipients?: boolean | undefined;
2562
2562
  meta?: Record<string, any> | undefined;
2563
2563
  claimPermissions?: {
2564
- canManageChildrenProfiles?: boolean | undefined;
2565
2564
  role: string;
2566
2565
  canEdit: boolean;
2567
2566
  canIssue: boolean;
@@ -2573,13 +2572,14 @@ export declare const PaginatedBoostsValidator: z.ZodObject<z.extendShape<{
2573
2572
  canRevokeChildren: string;
2574
2573
  canManageChildrenPermissions: string;
2575
2574
  canViewAnalytics: boolean;
2575
+ canManageChildrenProfiles?: boolean | undefined;
2576
2576
  } | undefined;
2577
- uri: string;
2578
2577
  }[];
2579
- }, {
2580
2578
  cursor?: string | undefined;
2579
+ }, {
2581
2580
  hasMore: boolean;
2582
2581
  records: {
2582
+ uri: string;
2583
2583
  type?: string | undefined;
2584
2584
  status?: "DRAFT" | "LIVE" | undefined;
2585
2585
  name?: string | undefined;
@@ -2587,7 +2587,6 @@ export declare const PaginatedBoostsValidator: z.ZodObject<z.extendShape<{
2587
2587
  autoConnectRecipients?: boolean | undefined;
2588
2588
  meta?: Record<string, any> | undefined;
2589
2589
  claimPermissions?: {
2590
- canManageChildrenProfiles?: boolean | undefined;
2591
2590
  role: string;
2592
2591
  canEdit: boolean;
2593
2592
  canIssue: boolean;
@@ -2599,9 +2598,10 @@ export declare const PaginatedBoostsValidator: z.ZodObject<z.extendShape<{
2599
2598
  canRevokeChildren: string;
2600
2599
  canManageChildrenPermissions: string;
2601
2600
  canViewAnalytics: boolean;
2601
+ canManageChildrenProfiles?: boolean | undefined;
2602
2602
  } | undefined;
2603
- uri: string;
2604
2603
  }[];
2604
+ cursor?: string | undefined;
2605
2605
  }>;
2606
2606
  export type PaginatedBoostsType = z.infer<typeof PaginatedBoostsValidator>;
2607
2607
  export declare const BoostRecipientValidator: z.ZodObject<{
@@ -2659,6 +2659,11 @@ export declare const BoostRecipientValidator: z.ZodObject<{
2659
2659
  role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
2660
2660
  dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
2661
2661
  }, "strip", z.ZodTypeAny, {
2662
+ profileId: string;
2663
+ displayName: string;
2664
+ shortBio: string;
2665
+ bio: string;
2666
+ did: string;
2662
2667
  type?: string | undefined;
2663
2668
  image?: string | undefined;
2664
2669
  email?: string | undefined;
@@ -2682,12 +2687,9 @@ export declare const BoostRecipientValidator: z.ZodObject<{
2682
2687
  repeatIdBackgroundImage?: boolean | undefined;
2683
2688
  } | undefined;
2684
2689
  dob?: string | undefined;
2690
+ }, {
2685
2691
  profileId: string;
2686
- displayName: string;
2687
- shortBio: string;
2688
- bio: string;
2689
2692
  did: string;
2690
- }, {
2691
2693
  type?: string | undefined;
2692
2694
  image?: string | undefined;
2693
2695
  email?: string | undefined;
@@ -2714,16 +2716,17 @@ export declare const BoostRecipientValidator: z.ZodObject<{
2714
2716
  repeatIdBackgroundImage?: boolean | undefined;
2715
2717
  } | undefined;
2716
2718
  dob?: string | undefined;
2717
- profileId: string;
2718
- did: string;
2719
2719
  }>;
2720
2720
  from: z.ZodString;
2721
2721
  received: z.ZodOptional<z.ZodString>;
2722
2722
  uri: z.ZodOptional<z.ZodString>;
2723
2723
  }, "strip", z.ZodTypeAny, {
2724
- received?: string | undefined;
2725
- uri?: string | undefined;
2726
2724
  to: {
2725
+ profileId: string;
2726
+ displayName: string;
2727
+ shortBio: string;
2728
+ bio: string;
2729
+ did: string;
2727
2730
  type?: string | undefined;
2728
2731
  image?: string | undefined;
2729
2732
  email?: string | undefined;
@@ -2747,17 +2750,14 @@ export declare const BoostRecipientValidator: z.ZodObject<{
2747
2750
  repeatIdBackgroundImage?: boolean | undefined;
2748
2751
  } | undefined;
2749
2752
  dob?: string | undefined;
2750
- profileId: string;
2751
- displayName: string;
2752
- shortBio: string;
2753
- bio: string;
2754
- did: string;
2755
2753
  };
2756
2754
  from: string;
2757
- }, {
2758
2755
  received?: string | undefined;
2759
2756
  uri?: string | undefined;
2757
+ }, {
2760
2758
  to: {
2759
+ profileId: string;
2760
+ did: string;
2761
2761
  type?: string | undefined;
2762
2762
  image?: string | undefined;
2763
2763
  email?: string | undefined;
@@ -2784,13 +2784,13 @@ export declare const BoostRecipientValidator: z.ZodObject<{
2784
2784
  repeatIdBackgroundImage?: boolean | undefined;
2785
2785
  } | undefined;
2786
2786
  dob?: string | undefined;
2787
- profileId: string;
2788
- did: string;
2789
2787
  };
2790
2788
  from: string;
2789
+ received?: string | undefined;
2790
+ uri?: string | undefined;
2791
2791
  }>;
2792
2792
  export type BoostRecipientInfo = z.infer<typeof BoostRecipientValidator>;
2793
- export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.extendShape<{
2793
+ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.objectUtil.extendShape<{
2794
2794
  cursor: z.ZodOptional<z.ZodString>;
2795
2795
  hasMore: z.ZodBoolean;
2796
2796
  }, {
@@ -2849,6 +2849,11 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.extendShap
2849
2849
  role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
2850
2850
  dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
2851
2851
  }, "strip", z.ZodTypeAny, {
2852
+ profileId: string;
2853
+ displayName: string;
2854
+ shortBio: string;
2855
+ bio: string;
2856
+ did: string;
2852
2857
  type?: string | undefined;
2853
2858
  image?: string | undefined;
2854
2859
  email?: string | undefined;
@@ -2872,12 +2877,9 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.extendShap
2872
2877
  repeatIdBackgroundImage?: boolean | undefined;
2873
2878
  } | undefined;
2874
2879
  dob?: string | undefined;
2880
+ }, {
2875
2881
  profileId: string;
2876
- displayName: string;
2877
- shortBio: string;
2878
- bio: string;
2879
2882
  did: string;
2880
- }, {
2881
2883
  type?: string | undefined;
2882
2884
  image?: string | undefined;
2883
2885
  email?: string | undefined;
@@ -2904,16 +2906,17 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.extendShap
2904
2906
  repeatIdBackgroundImage?: boolean | undefined;
2905
2907
  } | undefined;
2906
2908
  dob?: string | undefined;
2907
- profileId: string;
2908
- did: string;
2909
2909
  }>;
2910
2910
  from: z.ZodString;
2911
2911
  received: z.ZodOptional<z.ZodString>;
2912
2912
  uri: z.ZodOptional<z.ZodString>;
2913
2913
  }, "strip", z.ZodTypeAny, {
2914
- received?: string | undefined;
2915
- uri?: string | undefined;
2916
2914
  to: {
2915
+ profileId: string;
2916
+ displayName: string;
2917
+ shortBio: string;
2918
+ bio: string;
2919
+ did: string;
2917
2920
  type?: string | undefined;
2918
2921
  image?: string | undefined;
2919
2922
  email?: string | undefined;
@@ -2937,17 +2940,14 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.extendShap
2937
2940
  repeatIdBackgroundImage?: boolean | undefined;
2938
2941
  } | undefined;
2939
2942
  dob?: string | undefined;
2940
- profileId: string;
2941
- displayName: string;
2942
- shortBio: string;
2943
- bio: string;
2944
- did: string;
2945
2943
  };
2946
2944
  from: string;
2947
- }, {
2948
2945
  received?: string | undefined;
2949
2946
  uri?: string | undefined;
2947
+ }, {
2950
2948
  to: {
2949
+ profileId: string;
2950
+ did: string;
2951
2951
  type?: string | undefined;
2952
2952
  image?: string | undefined;
2953
2953
  email?: string | undefined;
@@ -2974,18 +2974,20 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.extendShap
2974
2974
  repeatIdBackgroundImage?: boolean | undefined;
2975
2975
  } | undefined;
2976
2976
  dob?: string | undefined;
2977
- profileId: string;
2978
- did: string;
2979
2977
  };
2980
2978
  from: string;
2979
+ received?: string | undefined;
2980
+ uri?: string | undefined;
2981
2981
  }>, "many">;
2982
2982
  }>, "strip", z.ZodTypeAny, {
2983
- cursor?: string | undefined;
2984
2983
  hasMore: boolean;
2985
2984
  records: {
2986
- received?: string | undefined;
2987
- uri?: string | undefined;
2988
2985
  to: {
2986
+ profileId: string;
2987
+ displayName: string;
2988
+ shortBio: string;
2989
+ bio: string;
2990
+ did: string;
2989
2991
  type?: string | undefined;
2990
2992
  image?: string | undefined;
2991
2993
  email?: string | undefined;
@@ -3009,21 +3011,18 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.extendShap
3009
3011
  repeatIdBackgroundImage?: boolean | undefined;
3010
3012
  } | undefined;
3011
3013
  dob?: string | undefined;
3012
- profileId: string;
3013
- displayName: string;
3014
- shortBio: string;
3015
- bio: string;
3016
- did: string;
3017
3014
  };
3018
3015
  from: string;
3016
+ received?: string | undefined;
3017
+ uri?: string | undefined;
3019
3018
  }[];
3020
- }, {
3021
3019
  cursor?: string | undefined;
3020
+ }, {
3022
3021
  hasMore: boolean;
3023
3022
  records: {
3024
- received?: string | undefined;
3025
- uri?: string | undefined;
3026
3023
  to: {
3024
+ profileId: string;
3025
+ did: string;
3027
3026
  type?: string | undefined;
3028
3027
  image?: string | undefined;
3029
3028
  email?: string | undefined;
@@ -3050,11 +3049,12 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.extendShap
3050
3049
  repeatIdBackgroundImage?: boolean | undefined;
3051
3050
  } | undefined;
3052
3051
  dob?: string | undefined;
3053
- profileId: string;
3054
- did: string;
3055
3052
  };
3056
3053
  from: string;
3054
+ received?: string | undefined;
3055
+ uri?: string | undefined;
3057
3056
  }[];
3057
+ cursor?: string | undefined;
3058
3058
  }>;
3059
3059
  export type PaginatedBoostRecipientsType = z.infer<typeof PaginatedBoostRecipientsValidator>;
3060
3060
  export declare const LCNBoostClaimLinkSigningAuthorityValidator: z.ZodObject<{
@@ -3062,13 +3062,13 @@ export declare const LCNBoostClaimLinkSigningAuthorityValidator: z.ZodObject<{
3062
3062
  name: z.ZodString;
3063
3063
  did: z.ZodOptional<z.ZodString>;
3064
3064
  }, "strip", z.ZodTypeAny, {
3065
- did?: string | undefined;
3066
3065
  name: string;
3067
3066
  endpoint: string;
3068
- }, {
3069
3067
  did?: string | undefined;
3068
+ }, {
3070
3069
  name: string;
3071
3070
  endpoint: string;
3071
+ did?: string | undefined;
3072
3072
  }>;
3073
3073
  export type LCNBoostClaimLinkSigningAuthorityType = z.infer<typeof LCNBoostClaimLinkSigningAuthorityValidator>;
3074
3074
  export declare const LCNBoostClaimLinkOptionsValidator: z.ZodObject<{
@@ -3182,7 +3182,6 @@ export declare const ConsentFlowContractValidator: z.ZodObject<{
3182
3182
  required: boolean;
3183
3183
  }>>>;
3184
3184
  }, "strip", z.ZodTypeAny, {
3185
- anonymize?: boolean | undefined;
3186
3185
  credentials: {
3187
3186
  categories: Record<string, {
3188
3187
  required: boolean;
@@ -3191,6 +3190,7 @@ export declare const ConsentFlowContractValidator: z.ZodObject<{
3191
3190
  personal: Record<string, {
3192
3191
  required: boolean;
3193
3192
  }>;
3193
+ anonymize?: boolean | undefined;
3194
3194
  }, {
3195
3195
  anonymize?: boolean | undefined;
3196
3196
  credentials?: {
@@ -3248,7 +3248,6 @@ export declare const ConsentFlowContractValidator: z.ZodObject<{
3248
3248
  }>>;
3249
3249
  }, "strip", z.ZodTypeAny, {
3250
3250
  read: {
3251
- anonymize?: boolean | undefined;
3252
3251
  credentials: {
3253
3252
  categories: Record<string, {
3254
3253
  required: boolean;
@@ -3257,6 +3256,7 @@ export declare const ConsentFlowContractValidator: z.ZodObject<{
3257
3256
  personal: Record<string, {
3258
3257
  required: boolean;
3259
3258
  }>;
3259
+ anonymize?: boolean | undefined;
3260
3260
  };
3261
3261
  write: {
3262
3262
  credentials: {
@@ -3322,7 +3322,6 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
3322
3322
  required: boolean;
3323
3323
  }>>>;
3324
3324
  }, "strip", z.ZodTypeAny, {
3325
- anonymize?: boolean | undefined;
3326
3325
  credentials: {
3327
3326
  categories: Record<string, {
3328
3327
  required: boolean;
@@ -3331,6 +3330,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
3331
3330
  personal: Record<string, {
3332
3331
  required: boolean;
3333
3332
  }>;
3333
+ anonymize?: boolean | undefined;
3334
3334
  }, {
3335
3335
  anonymize?: boolean | undefined;
3336
3336
  credentials?: {
@@ -3388,7 +3388,6 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
3388
3388
  }>>;
3389
3389
  }, "strip", z.ZodTypeAny, {
3390
3390
  read: {
3391
- anonymize?: boolean | undefined;
3392
3391
  credentials: {
3393
3392
  categories: Record<string, {
3394
3393
  required: boolean;
@@ -3397,6 +3396,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
3397
3396
  personal: Record<string, {
3398
3397
  required: boolean;
3399
3398
  }>;
3399
+ anonymize?: boolean | undefined;
3400
3400
  };
3401
3401
  write: {
3402
3402
  credentials: {
@@ -3485,6 +3485,11 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
3485
3485
  role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
3486
3486
  dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
3487
3487
  }, "strip", z.ZodTypeAny, {
3488
+ profileId: string;
3489
+ displayName: string;
3490
+ shortBio: string;
3491
+ bio: string;
3492
+ did: string;
3488
3493
  type?: string | undefined;
3489
3494
  image?: string | undefined;
3490
3495
  email?: string | undefined;
@@ -3508,12 +3513,9 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
3508
3513
  repeatIdBackgroundImage?: boolean | undefined;
3509
3514
  } | undefined;
3510
3515
  dob?: string | undefined;
3516
+ }, {
3511
3517
  profileId: string;
3512
- displayName: string;
3513
- shortBio: string;
3514
- bio: string;
3515
3518
  did: string;
3516
- }, {
3517
3519
  type?: string | undefined;
3518
3520
  image?: string | undefined;
3519
3521
  email?: string | undefined;
@@ -3540,8 +3542,6 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
3540
3542
  repeatIdBackgroundImage?: boolean | undefined;
3541
3543
  } | undefined;
3542
3544
  dob?: string | undefined;
3543
- profileId: string;
3544
- did: string;
3545
3545
  }>;
3546
3546
  name: z.ZodString;
3547
3547
  subtitle: z.ZodOptional<z.ZodString>;
@@ -3610,42 +3610,15 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
3610
3610
  role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
3611
3611
  dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
3612
3612
  }, "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
3613
  profileId: string;
3637
3614
  displayName: string;
3638
3615
  shortBio: string;
3639
3616
  bio: string;
3640
3617
  did: string;
3641
- }, {
3642
3618
  type?: string | undefined;
3643
3619
  image?: string | undefined;
3644
3620
  email?: string | undefined;
3645
3621
  role?: string | undefined;
3646
- displayName?: string | undefined;
3647
- shortBio?: string | undefined;
3648
- bio?: string | undefined;
3649
3622
  isPrivate?: boolean | undefined;
3650
3623
  heroImage?: string | undefined;
3651
3624
  websiteLink?: string | undefined;
@@ -3665,24 +3638,16 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
3665
3638
  repeatIdBackgroundImage?: boolean | undefined;
3666
3639
  } | undefined;
3667
3640
  dob?: string | undefined;
3641
+ }, {
3668
3642
  profileId: string;
3669
3643
  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
3644
  type?: string | undefined;
3683
3645
  image?: string | undefined;
3684
3646
  email?: string | undefined;
3685
3647
  role?: string | undefined;
3648
+ displayName?: string | undefined;
3649
+ shortBio?: string | undefined;
3650
+ bio?: string | undefined;
3686
3651
  isPrivate?: boolean | undefined;
3687
3652
  heroImage?: string | undefined;
3688
3653
  websiteLink?: string | undefined;
@@ -3702,19 +3667,14 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
3702
3667
  repeatIdBackgroundImage?: boolean | undefined;
3703
3668
  } | undefined;
3704
3669
  dob?: string | undefined;
3705
- profileId: string;
3706
- displayName: string;
3707
- shortBio: string;
3708
- bio: string;
3709
- did: string;
3710
- }[] | undefined;
3670
+ }>, "many">>;
3671
+ }, "strip", z.ZodTypeAny, {
3711
3672
  name: string;
3712
3673
  createdAt: string;
3713
3674
  uri: string;
3714
3675
  updatedAt: string;
3715
3676
  contract: {
3716
3677
  read: {
3717
- anonymize?: boolean | undefined;
3718
3678
  credentials: {
3719
3679
  categories: Record<string, {
3720
3680
  required: boolean;
@@ -3723,6 +3683,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
3723
3683
  personal: Record<string, {
3724
3684
  required: boolean;
3725
3685
  }>;
3686
+ anonymize?: boolean | undefined;
3726
3687
  };
3727
3688
  write: {
3728
3689
  credentials: {
@@ -3736,6 +3697,11 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
3736
3697
  };
3737
3698
  };
3738
3699
  owner: {
3700
+ profileId: string;
3701
+ displayName: string;
3702
+ shortBio: string;
3703
+ bio: string;
3704
+ did: string;
3739
3705
  type?: string | undefined;
3740
3706
  image?: string | undefined;
3741
3707
  email?: string | undefined;
@@ -3759,13 +3725,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
3759
3725
  repeatIdBackgroundImage?: boolean | undefined;
3760
3726
  } | undefined;
3761
3727
  dob?: string | undefined;
3762
- profileId: string;
3763
- displayName: string;
3764
- shortBio: string;
3765
- bio: string;
3766
- did: string;
3767
3728
  };
3768
- }, {
3769
3729
  description?: string | undefined;
3770
3730
  image?: string | undefined;
3771
3731
  subtitle?: string | undefined;
@@ -3776,13 +3736,15 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
3776
3736
  expiresAt?: string | undefined;
3777
3737
  autoBoosts?: string[] | undefined;
3778
3738
  writers?: {
3739
+ profileId: string;
3740
+ displayName: string;
3741
+ shortBio: string;
3742
+ bio: string;
3743
+ did: string;
3779
3744
  type?: string | undefined;
3780
3745
  image?: string | undefined;
3781
3746
  email?: string | undefined;
3782
3747
  role?: string | undefined;
3783
- displayName?: string | undefined;
3784
- shortBio?: string | undefined;
3785
- bio?: string | undefined;
3786
3748
  isPrivate?: boolean | undefined;
3787
3749
  heroImage?: string | undefined;
3788
3750
  websiteLink?: string | undefined;
@@ -3802,9 +3764,8 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
3802
3764
  repeatIdBackgroundImage?: boolean | undefined;
3803
3765
  } | undefined;
3804
3766
  dob?: string | undefined;
3805
- profileId: string;
3806
- did: string;
3807
3767
  }[] | undefined;
3768
+ }, {
3808
3769
  name: string;
3809
3770
  createdAt: string;
3810
3771
  uri: string;
@@ -3833,6 +3794,8 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
3833
3794
  } | undefined;
3834
3795
  };
3835
3796
  owner: {
3797
+ profileId: string;
3798
+ did: string;
3836
3799
  type?: string | undefined;
3837
3800
  image?: string | undefined;
3838
3801
  email?: string | undefined;
@@ -3859,13 +3822,50 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
3859
3822
  repeatIdBackgroundImage?: boolean | undefined;
3860
3823
  } | undefined;
3861
3824
  dob?: string | undefined;
3825
+ };
3826
+ description?: string | undefined;
3827
+ image?: string | undefined;
3828
+ subtitle?: string | undefined;
3829
+ reasonForAccessing?: string | undefined;
3830
+ needsGuardianConsent?: boolean | undefined;
3831
+ redirectUrl?: string | undefined;
3832
+ frontDoorBoostUri?: string | undefined;
3833
+ expiresAt?: string | undefined;
3834
+ autoBoosts?: string[] | undefined;
3835
+ writers?: {
3862
3836
  profileId: string;
3863
3837
  did: string;
3864
- };
3838
+ type?: string | undefined;
3839
+ image?: string | undefined;
3840
+ email?: string | undefined;
3841
+ role?: string | undefined;
3842
+ displayName?: string | undefined;
3843
+ shortBio?: string | undefined;
3844
+ bio?: string | undefined;
3845
+ isPrivate?: boolean | undefined;
3846
+ heroImage?: string | undefined;
3847
+ websiteLink?: string | undefined;
3848
+ isServiceProfile?: boolean | undefined;
3849
+ notificationsWebhook?: string | undefined;
3850
+ display?: {
3851
+ backgroundColor?: string | undefined;
3852
+ backgroundImage?: string | undefined;
3853
+ fadeBackgroundImage?: boolean | undefined;
3854
+ repeatBackgroundImage?: boolean | undefined;
3855
+ fontColor?: string | undefined;
3856
+ accentColor?: string | undefined;
3857
+ accentFontColor?: string | undefined;
3858
+ idBackgroundImage?: string | undefined;
3859
+ fadeIdBackgroundImage?: boolean | undefined;
3860
+ idBackgroundColor?: string | undefined;
3861
+ repeatIdBackgroundImage?: boolean | undefined;
3862
+ } | undefined;
3863
+ dob?: string | undefined;
3864
+ }[] | undefined;
3865
3865
  }>;
3866
3866
  export type ConsentFlowContractDetails = z.infer<typeof ConsentFlowContractDetailsValidator>;
3867
3867
  export type ConsentFlowContractDetailsInput = z.input<typeof ConsentFlowContractDetailsValidator>;
3868
- export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.extendShape<{
3868
+ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objectUtil.extendShape<{
3869
3869
  cursor: z.ZodOptional<z.ZodString>;
3870
3870
  hasMore: z.ZodBoolean;
3871
3871
  }, {
@@ -3898,7 +3898,6 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
3898
3898
  required: boolean;
3899
3899
  }>>>;
3900
3900
  }, "strip", z.ZodTypeAny, {
3901
- anonymize?: boolean | undefined;
3902
3901
  credentials: {
3903
3902
  categories: Record<string, {
3904
3903
  required: boolean;
@@ -3907,6 +3906,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
3907
3906
  personal: Record<string, {
3908
3907
  required: boolean;
3909
3908
  }>;
3909
+ anonymize?: boolean | undefined;
3910
3910
  }, {
3911
3911
  anonymize?: boolean | undefined;
3912
3912
  credentials?: {
@@ -3964,7 +3964,6 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
3964
3964
  }>>;
3965
3965
  }, "strip", z.ZodTypeAny, {
3966
3966
  read: {
3967
- anonymize?: boolean | undefined;
3968
3967
  credentials: {
3969
3968
  categories: Record<string, {
3970
3969
  required: boolean;
@@ -3973,6 +3972,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
3973
3972
  personal: Record<string, {
3974
3973
  required: boolean;
3975
3974
  }>;
3975
+ anonymize?: boolean | undefined;
3976
3976
  };
3977
3977
  write: {
3978
3978
  credentials: {
@@ -4061,6 +4061,11 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
4061
4061
  role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
4062
4062
  dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
4063
4063
  }, "strip", z.ZodTypeAny, {
4064
+ profileId: string;
4065
+ displayName: string;
4066
+ shortBio: string;
4067
+ bio: string;
4068
+ did: string;
4064
4069
  type?: string | undefined;
4065
4070
  image?: string | undefined;
4066
4071
  email?: string | undefined;
@@ -4084,12 +4089,9 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
4084
4089
  repeatIdBackgroundImage?: boolean | undefined;
4085
4090
  } | undefined;
4086
4091
  dob?: string | undefined;
4092
+ }, {
4087
4093
  profileId: string;
4088
- displayName: string;
4089
- shortBio: string;
4090
- bio: string;
4091
4094
  did: string;
4092
- }, {
4093
4095
  type?: string | undefined;
4094
4096
  image?: string | undefined;
4095
4097
  email?: string | undefined;
@@ -4116,8 +4118,6 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
4116
4118
  repeatIdBackgroundImage?: boolean | undefined;
4117
4119
  } | undefined;
4118
4120
  dob?: string | undefined;
4119
- profileId: string;
4120
- did: string;
4121
4121
  }>;
4122
4122
  name: z.ZodString;
4123
4123
  subtitle: z.ZodOptional<z.ZodString>;
@@ -4186,6 +4186,11 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
4186
4186
  role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
4187
4187
  dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
4188
4188
  }, "strip", z.ZodTypeAny, {
4189
+ profileId: string;
4190
+ displayName: string;
4191
+ shortBio: string;
4192
+ bio: string;
4193
+ did: string;
4189
4194
  type?: string | undefined;
4190
4195
  image?: string | undefined;
4191
4196
  email?: string | undefined;
@@ -4209,12 +4214,9 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
4209
4214
  repeatIdBackgroundImage?: boolean | undefined;
4210
4215
  } | undefined;
4211
4216
  dob?: string | undefined;
4217
+ }, {
4212
4218
  profileId: string;
4213
- displayName: string;
4214
- shortBio: string;
4215
- bio: string;
4216
4219
  did: string;
4217
- }, {
4218
4220
  type?: string | undefined;
4219
4221
  image?: string | undefined;
4220
4222
  email?: string | undefined;
@@ -4241,56 +4243,14 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
4241
4243
  repeatIdBackgroundImage?: boolean | undefined;
4242
4244
  } | undefined;
4243
4245
  dob?: string | undefined;
4244
- profileId: string;
4245
- did: string;
4246
4246
  }>, "many">>;
4247
4247
  }, "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
4248
  name: string;
4288
4249
  createdAt: string;
4289
4250
  uri: string;
4290
4251
  updatedAt: string;
4291
4252
  contract: {
4292
4253
  read: {
4293
- anonymize?: boolean | undefined;
4294
4254
  credentials: {
4295
4255
  categories: Record<string, {
4296
4256
  required: boolean;
@@ -4299,6 +4259,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
4299
4259
  personal: Record<string, {
4300
4260
  required: boolean;
4301
4261
  }>;
4262
+ anonymize?: boolean | undefined;
4302
4263
  };
4303
4264
  write: {
4304
4265
  credentials: {
@@ -4311,7 +4272,6 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
4311
4272
  }>;
4312
4273
  };
4313
4274
  };
4314
- }, {
4315
4275
  description?: string | undefined;
4316
4276
  image?: string | undefined;
4317
4277
  subtitle?: string | undefined;
@@ -4322,13 +4282,15 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
4322
4282
  expiresAt?: string | undefined;
4323
4283
  autoBoosts?: string[] | undefined;
4324
4284
  writers?: {
4285
+ profileId: string;
4286
+ displayName: string;
4287
+ shortBio: string;
4288
+ bio: string;
4289
+ did: string;
4325
4290
  type?: string | undefined;
4326
4291
  image?: string | undefined;
4327
4292
  email?: string | undefined;
4328
4293
  role?: string | undefined;
4329
- displayName?: string | undefined;
4330
- shortBio?: string | undefined;
4331
- bio?: string | undefined;
4332
4294
  isPrivate?: boolean | undefined;
4333
4295
  heroImage?: string | undefined;
4334
4296
  websiteLink?: string | undefined;
@@ -4348,9 +4310,8 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
4348
4310
  repeatIdBackgroundImage?: boolean | undefined;
4349
4311
  } | undefined;
4350
4312
  dob?: string | undefined;
4351
- profileId: string;
4352
- did: string;
4353
4313
  }[] | undefined;
4314
+ }, {
4354
4315
  name: string;
4355
4316
  createdAt: string;
4356
4317
  uri: string;
@@ -4378,11 +4339,6 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
4378
4339
  }> | undefined;
4379
4340
  } | undefined;
4380
4341
  };
4381
- }>, "many">;
4382
- }>, "strip", z.ZodTypeAny, {
4383
- cursor?: string | undefined;
4384
- hasMore: boolean;
4385
- records: {
4386
4342
  description?: string | undefined;
4387
4343
  image?: string | undefined;
4388
4344
  subtitle?: string | undefined;
@@ -4393,10 +4349,15 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
4393
4349
  expiresAt?: string | undefined;
4394
4350
  autoBoosts?: string[] | undefined;
4395
4351
  writers?: {
4352
+ profileId: string;
4353
+ did: string;
4396
4354
  type?: string | undefined;
4397
4355
  image?: string | undefined;
4398
4356
  email?: string | undefined;
4399
4357
  role?: string | undefined;
4358
+ displayName?: string | undefined;
4359
+ shortBio?: string | undefined;
4360
+ bio?: string | undefined;
4400
4361
  isPrivate?: boolean | undefined;
4401
4362
  heroImage?: string | undefined;
4402
4363
  websiteLink?: string | undefined;
@@ -4416,19 +4377,17 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
4416
4377
  repeatIdBackgroundImage?: boolean | undefined;
4417
4378
  } | undefined;
4418
4379
  dob?: string | undefined;
4419
- profileId: string;
4420
- displayName: string;
4421
- shortBio: string;
4422
- bio: string;
4423
- did: string;
4424
4380
  }[] | undefined;
4381
+ }>, "many">;
4382
+ }>, "strip", z.ZodTypeAny, {
4383
+ hasMore: boolean;
4384
+ records: {
4425
4385
  name: string;
4426
4386
  createdAt: string;
4427
4387
  uri: string;
4428
4388
  updatedAt: string;
4429
4389
  contract: {
4430
4390
  read: {
4431
- anonymize?: boolean | undefined;
4432
4391
  credentials: {
4433
4392
  categories: Record<string, {
4434
4393
  required: boolean;
@@ -4437,6 +4396,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
4437
4396
  personal: Record<string, {
4438
4397
  required: boolean;
4439
4398
  }>;
4399
+ anonymize?: boolean | undefined;
4440
4400
  };
4441
4401
  write: {
4442
4402
  credentials: {
@@ -4449,11 +4409,6 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
4449
4409
  }>;
4450
4410
  };
4451
4411
  };
4452
- }[];
4453
- }, {
4454
- cursor?: string | undefined;
4455
- hasMore: boolean;
4456
- records: {
4457
4412
  description?: string | undefined;
4458
4413
  image?: string | undefined;
4459
4414
  subtitle?: string | undefined;
@@ -4464,13 +4419,15 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
4464
4419
  expiresAt?: string | undefined;
4465
4420
  autoBoosts?: string[] | undefined;
4466
4421
  writers?: {
4422
+ profileId: string;
4423
+ displayName: string;
4424
+ shortBio: string;
4425
+ bio: string;
4426
+ did: string;
4467
4427
  type?: string | undefined;
4468
4428
  image?: string | undefined;
4469
4429
  email?: string | undefined;
4470
4430
  role?: string | undefined;
4471
- displayName?: string | undefined;
4472
- shortBio?: string | undefined;
4473
- bio?: string | undefined;
4474
4431
  isPrivate?: boolean | undefined;
4475
4432
  heroImage?: string | undefined;
4476
4433
  websiteLink?: string | undefined;
@@ -4490,9 +4447,12 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
4490
4447
  repeatIdBackgroundImage?: boolean | undefined;
4491
4448
  } | undefined;
4492
4449
  dob?: string | undefined;
4493
- profileId: string;
4494
- did: string;
4495
4450
  }[] | undefined;
4451
+ }[];
4452
+ cursor?: string | undefined;
4453
+ }, {
4454
+ hasMore: boolean;
4455
+ records: {
4496
4456
  name: string;
4497
4457
  createdAt: string;
4498
4458
  uri: string;
@@ -4520,7 +4480,47 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
4520
4480
  }> | undefined;
4521
4481
  } | undefined;
4522
4482
  };
4483
+ description?: string | undefined;
4484
+ image?: string | undefined;
4485
+ subtitle?: string | undefined;
4486
+ reasonForAccessing?: string | undefined;
4487
+ needsGuardianConsent?: boolean | undefined;
4488
+ redirectUrl?: string | undefined;
4489
+ frontDoorBoostUri?: string | undefined;
4490
+ expiresAt?: string | undefined;
4491
+ autoBoosts?: string[] | undefined;
4492
+ writers?: {
4493
+ profileId: string;
4494
+ did: string;
4495
+ type?: string | undefined;
4496
+ image?: string | undefined;
4497
+ email?: string | undefined;
4498
+ role?: string | undefined;
4499
+ displayName?: string | undefined;
4500
+ shortBio?: string | undefined;
4501
+ bio?: string | undefined;
4502
+ isPrivate?: boolean | undefined;
4503
+ heroImage?: string | undefined;
4504
+ websiteLink?: string | undefined;
4505
+ isServiceProfile?: boolean | undefined;
4506
+ notificationsWebhook?: string | undefined;
4507
+ display?: {
4508
+ backgroundColor?: string | undefined;
4509
+ backgroundImage?: string | undefined;
4510
+ fadeBackgroundImage?: boolean | undefined;
4511
+ repeatBackgroundImage?: boolean | undefined;
4512
+ fontColor?: string | undefined;
4513
+ accentColor?: string | undefined;
4514
+ accentFontColor?: string | undefined;
4515
+ idBackgroundImage?: string | undefined;
4516
+ fadeIdBackgroundImage?: boolean | undefined;
4517
+ idBackgroundColor?: string | undefined;
4518
+ repeatIdBackgroundImage?: boolean | undefined;
4519
+ } | undefined;
4520
+ dob?: string | undefined;
4521
+ }[] | undefined;
4523
4522
  }[];
4523
+ cursor?: string | undefined;
4524
4524
  }>;
4525
4525
  export type PaginatedConsentFlowContracts = z.infer<typeof PaginatedConsentFlowContractsValidator>;
4526
4526
  export declare const ConsentFlowContractDataValidator: z.ZodObject<{
@@ -4540,14 +4540,14 @@ export declare const ConsentFlowContractDataValidator: z.ZodObject<{
4540
4540
  };
4541
4541
  personal: Record<string, string>;
4542
4542
  }, {
4543
- personal?: Record<string, string> | undefined;
4544
4543
  date: string;
4545
4544
  credentials: {
4546
4545
  categories?: Record<string, string[]> | undefined;
4547
4546
  };
4547
+ personal?: Record<string, string> | undefined;
4548
4548
  }>;
4549
4549
  export type ConsentFlowContractData = z.infer<typeof ConsentFlowContractDataValidator>;
4550
- export declare const PaginatedConsentFlowDataValidator: z.ZodObject<z.extendShape<{
4550
+ export declare const PaginatedConsentFlowDataValidator: z.ZodObject<z.objectUtil.extendShape<{
4551
4551
  cursor: z.ZodOptional<z.ZodString>;
4552
4552
  hasMore: z.ZodBoolean;
4553
4553
  }, {
@@ -4568,14 +4568,13 @@ export declare const PaginatedConsentFlowDataValidator: z.ZodObject<z.extendShap
4568
4568
  };
4569
4569
  personal: Record<string, string>;
4570
4570
  }, {
4571
- personal?: Record<string, string> | undefined;
4572
4571
  date: string;
4573
4572
  credentials: {
4574
4573
  categories?: Record<string, string[]> | undefined;
4575
4574
  };
4575
+ personal?: Record<string, string> | undefined;
4576
4576
  }>, "many">;
4577
4577
  }>, "strip", z.ZodTypeAny, {
4578
- cursor?: string | undefined;
4579
4578
  hasMore: boolean;
4580
4579
  records: {
4581
4580
  date: string;
@@ -4584,16 +4583,17 @@ export declare const PaginatedConsentFlowDataValidator: z.ZodObject<z.extendShap
4584
4583
  };
4585
4584
  personal: Record<string, string>;
4586
4585
  }[];
4587
- }, {
4588
4586
  cursor?: string | undefined;
4587
+ }, {
4589
4588
  hasMore: boolean;
4590
4589
  records: {
4591
- personal?: Record<string, string> | undefined;
4592
4590
  date: string;
4593
4591
  credentials: {
4594
4592
  categories?: Record<string, string[]> | undefined;
4595
4593
  };
4594
+ personal?: Record<string, string> | undefined;
4596
4595
  }[];
4596
+ cursor?: string | undefined;
4597
4597
  }>;
4598
4598
  export type PaginatedConsentFlowData = z.infer<typeof PaginatedConsentFlowDataValidator>;
4599
4599
  export declare const ConsentFlowContractDataForDidValidator: z.ZodObject<{
@@ -4619,16 +4619,16 @@ export declare const ConsentFlowContractDataForDidValidator: z.ZodObject<{
4619
4619
  personal: Record<string, string>;
4620
4620
  contractUri: string;
4621
4621
  }, {
4622
- personal?: Record<string, string> | undefined;
4623
4622
  date: string;
4624
4623
  credentials: {
4625
4624
  uri: string;
4626
4625
  category: string;
4627
4626
  }[];
4628
4627
  contractUri: string;
4628
+ personal?: Record<string, string> | undefined;
4629
4629
  }>;
4630
4630
  export type ConsentFlowContractDataForDid = z.infer<typeof ConsentFlowContractDataForDidValidator>;
4631
- export declare const PaginatedConsentFlowDataForDidValidator: z.ZodObject<z.extendShape<{
4631
+ export declare const PaginatedConsentFlowDataForDidValidator: z.ZodObject<z.objectUtil.extendShape<{
4632
4632
  cursor: z.ZodOptional<z.ZodString>;
4633
4633
  hasMore: z.ZodBoolean;
4634
4634
  }, {
@@ -4655,16 +4655,15 @@ export declare const PaginatedConsentFlowDataForDidValidator: z.ZodObject<z.exte
4655
4655
  personal: Record<string, string>;
4656
4656
  contractUri: string;
4657
4657
  }, {
4658
- personal?: Record<string, string> | undefined;
4659
4658
  date: string;
4660
4659
  credentials: {
4661
4660
  uri: string;
4662
4661
  category: string;
4663
4662
  }[];
4664
4663
  contractUri: string;
4664
+ personal?: Record<string, string> | undefined;
4665
4665
  }>, "many">;
4666
4666
  }>, "strip", z.ZodTypeAny, {
4667
- cursor?: string | undefined;
4668
4667
  hasMore: boolean;
4669
4668
  records: {
4670
4669
  date: string;
@@ -4675,18 +4674,19 @@ export declare const PaginatedConsentFlowDataForDidValidator: z.ZodObject<z.exte
4675
4674
  personal: Record<string, string>;
4676
4675
  contractUri: string;
4677
4676
  }[];
4678
- }, {
4679
4677
  cursor?: string | undefined;
4678
+ }, {
4680
4679
  hasMore: boolean;
4681
4680
  records: {
4682
- personal?: Record<string, string> | undefined;
4683
4681
  date: string;
4684
4682
  credentials: {
4685
4683
  uri: string;
4686
4684
  category: string;
4687
4685
  }[];
4688
4686
  contractUri: string;
4687
+ personal?: Record<string, string> | undefined;
4689
4688
  }[];
4689
+ cursor?: string | undefined;
4690
4690
  }>;
4691
4691
  export type PaginatedConsentFlowDataForDid = z.infer<typeof PaginatedConsentFlowDataForDidValidator>;
4692
4692
  export declare const ConsentFlowTermValidator: z.ZodObject<{
@@ -4729,14 +4729,14 @@ export declare const ConsentFlowTermsValidator: z.ZodObject<{
4729
4729
  shareUntil?: string | undefined;
4730
4730
  }>>>;
4731
4731
  }, "strip", z.ZodTypeAny, {
4732
- sharing?: boolean | undefined;
4733
- shareAll?: boolean | undefined;
4734
4732
  categories: Record<string, {
4735
4733
  sharing?: boolean | undefined;
4736
4734
  shared?: string[] | undefined;
4737
4735
  shareAll?: boolean | undefined;
4738
4736
  shareUntil?: string | undefined;
4739
4737
  }>;
4738
+ sharing?: boolean | undefined;
4739
+ shareAll?: boolean | undefined;
4740
4740
  }, {
4741
4741
  categories?: Record<string, {
4742
4742
  sharing?: boolean | undefined;
@@ -4749,18 +4749,18 @@ export declare const ConsentFlowTermsValidator: z.ZodObject<{
4749
4749
  }>>;
4750
4750
  personal: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>;
4751
4751
  }, "strip", z.ZodTypeAny, {
4752
- anonymize?: boolean | undefined;
4753
4752
  credentials: {
4754
- sharing?: boolean | undefined;
4755
- shareAll?: boolean | undefined;
4756
4753
  categories: Record<string, {
4757
4754
  sharing?: boolean | undefined;
4758
4755
  shared?: string[] | undefined;
4759
4756
  shareAll?: boolean | undefined;
4760
4757
  shareUntil?: string | undefined;
4761
4758
  }>;
4759
+ sharing?: boolean | undefined;
4760
+ shareAll?: boolean | undefined;
4762
4761
  };
4763
4762
  personal: Record<string, string>;
4763
+ anonymize?: boolean | undefined;
4764
4764
  }, {
4765
4765
  anonymize?: boolean | undefined;
4766
4766
  credentials?: {
@@ -4797,20 +4797,19 @@ export declare const ConsentFlowTermsValidator: z.ZodObject<{
4797
4797
  }>>;
4798
4798
  deniedWriters: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4799
4799
  }, "strip", z.ZodTypeAny, {
4800
- deniedWriters?: string[] | undefined;
4801
4800
  read: {
4802
- anonymize?: boolean | undefined;
4803
4801
  credentials: {
4804
- sharing?: boolean | undefined;
4805
- shareAll?: boolean | undefined;
4806
4802
  categories: Record<string, {
4807
4803
  sharing?: boolean | undefined;
4808
4804
  shared?: string[] | undefined;
4809
4805
  shareAll?: boolean | undefined;
4810
4806
  shareUntil?: string | undefined;
4811
4807
  }>;
4808
+ sharing?: boolean | undefined;
4809
+ shareAll?: boolean | undefined;
4812
4810
  };
4813
4811
  personal: Record<string, string>;
4812
+ anonymize?: boolean | undefined;
4814
4813
  };
4815
4814
  write: {
4816
4815
  credentials: {
@@ -4818,6 +4817,7 @@ export declare const ConsentFlowTermsValidator: z.ZodObject<{
4818
4817
  };
4819
4818
  personal: Record<string, boolean>;
4820
4819
  };
4820
+ deniedWriters?: string[] | undefined;
4821
4821
  }, {
4822
4822
  read?: {
4823
4823
  anonymize?: boolean | undefined;
@@ -4843,7 +4843,7 @@ export declare const ConsentFlowTermsValidator: z.ZodObject<{
4843
4843
  }>;
4844
4844
  export type ConsentFlowTerms = z.infer<typeof ConsentFlowTermsValidator>;
4845
4845
  export type ConsentFlowTermsInput = z.input<typeof ConsentFlowTermsValidator>;
4846
- export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendShape<{
4846
+ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUtil.extendShape<{
4847
4847
  cursor: z.ZodOptional<z.ZodString>;
4848
4848
  hasMore: z.ZodBoolean;
4849
4849
  }, {
@@ -4873,14 +4873,14 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
4873
4873
  shareUntil?: string | undefined;
4874
4874
  }>>>;
4875
4875
  }, "strip", z.ZodTypeAny, {
4876
- sharing?: boolean | undefined;
4877
- shareAll?: boolean | undefined;
4878
4876
  categories: Record<string, {
4879
4877
  sharing?: boolean | undefined;
4880
4878
  shared?: string[] | undefined;
4881
4879
  shareAll?: boolean | undefined;
4882
4880
  shareUntil?: string | undefined;
4883
4881
  }>;
4882
+ sharing?: boolean | undefined;
4883
+ shareAll?: boolean | undefined;
4884
4884
  }, {
4885
4885
  categories?: Record<string, {
4886
4886
  sharing?: boolean | undefined;
@@ -4893,18 +4893,18 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
4893
4893
  }>>;
4894
4894
  personal: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>;
4895
4895
  }, "strip", z.ZodTypeAny, {
4896
- anonymize?: boolean | undefined;
4897
4896
  credentials: {
4898
- sharing?: boolean | undefined;
4899
- shareAll?: boolean | undefined;
4900
4897
  categories: Record<string, {
4901
4898
  sharing?: boolean | undefined;
4902
4899
  shared?: string[] | undefined;
4903
4900
  shareAll?: boolean | undefined;
4904
4901
  shareUntil?: string | undefined;
4905
4902
  }>;
4903
+ sharing?: boolean | undefined;
4904
+ shareAll?: boolean | undefined;
4906
4905
  };
4907
4906
  personal: Record<string, string>;
4907
+ anonymize?: boolean | undefined;
4908
4908
  }, {
4909
4909
  anonymize?: boolean | undefined;
4910
4910
  credentials?: {
@@ -4941,20 +4941,19 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
4941
4941
  }>>;
4942
4942
  deniedWriters: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4943
4943
  }, "strip", z.ZodTypeAny, {
4944
- deniedWriters?: string[] | undefined;
4945
4944
  read: {
4946
- anonymize?: boolean | undefined;
4947
4945
  credentials: {
4948
- sharing?: boolean | undefined;
4949
- shareAll?: boolean | undefined;
4950
4946
  categories: Record<string, {
4951
4947
  sharing?: boolean | undefined;
4952
4948
  shared?: string[] | undefined;
4953
4949
  shareAll?: boolean | undefined;
4954
4950
  shareUntil?: string | undefined;
4955
4951
  }>;
4952
+ sharing?: boolean | undefined;
4953
+ shareAll?: boolean | undefined;
4956
4954
  };
4957
4955
  personal: Record<string, string>;
4956
+ anonymize?: boolean | undefined;
4958
4957
  };
4959
4958
  write: {
4960
4959
  credentials: {
@@ -4962,6 +4961,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
4962
4961
  };
4963
4962
  personal: Record<string, boolean>;
4964
4963
  };
4964
+ deniedWriters?: string[] | undefined;
4965
4965
  }, {
4966
4966
  read?: {
4967
4967
  anonymize?: boolean | undefined;
@@ -5014,7 +5014,6 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
5014
5014
  required: boolean;
5015
5015
  }>>>;
5016
5016
  }, "strip", z.ZodTypeAny, {
5017
- anonymize?: boolean | undefined;
5018
5017
  credentials: {
5019
5018
  categories: Record<string, {
5020
5019
  required: boolean;
@@ -5023,6 +5022,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
5023
5022
  personal: Record<string, {
5024
5023
  required: boolean;
5025
5024
  }>;
5025
+ anonymize?: boolean | undefined;
5026
5026
  }, {
5027
5027
  anonymize?: boolean | undefined;
5028
5028
  credentials?: {
@@ -5080,7 +5080,6 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
5080
5080
  }>>;
5081
5081
  }, "strip", z.ZodTypeAny, {
5082
5082
  read: {
5083
- anonymize?: boolean | undefined;
5084
5083
  credentials: {
5085
5084
  categories: Record<string, {
5086
5085
  required: boolean;
@@ -5089,6 +5088,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
5089
5088
  personal: Record<string, {
5090
5089
  required: boolean;
5091
5090
  }>;
5091
+ anonymize?: boolean | undefined;
5092
5092
  };
5093
5093
  write: {
5094
5094
  credentials: {
@@ -5177,6 +5177,11 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
5177
5177
  role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
5178
5178
  dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
5179
5179
  }, "strip", z.ZodTypeAny, {
5180
+ profileId: string;
5181
+ displayName: string;
5182
+ shortBio: string;
5183
+ bio: string;
5184
+ did: string;
5180
5185
  type?: string | undefined;
5181
5186
  image?: string | undefined;
5182
5187
  email?: string | undefined;
@@ -5200,12 +5205,9 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
5200
5205
  repeatIdBackgroundImage?: boolean | undefined;
5201
5206
  } | undefined;
5202
5207
  dob?: string | undefined;
5208
+ }, {
5203
5209
  profileId: string;
5204
- displayName: string;
5205
- shortBio: string;
5206
- bio: string;
5207
5210
  did: string;
5208
- }, {
5209
5211
  type?: string | undefined;
5210
5212
  image?: string | undefined;
5211
5213
  email?: string | undefined;
@@ -5232,8 +5234,6 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
5232
5234
  repeatIdBackgroundImage?: boolean | undefined;
5233
5235
  } | undefined;
5234
5236
  dob?: string | undefined;
5235
- profileId: string;
5236
- did: string;
5237
5237
  }>;
5238
5238
  name: z.ZodString;
5239
5239
  subtitle: z.ZodOptional<z.ZodString>;
@@ -5302,42 +5302,15 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
5302
5302
  role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
5303
5303
  dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
5304
5304
  }, "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
5305
  profileId: string;
5329
5306
  displayName: string;
5330
5307
  shortBio: string;
5331
5308
  bio: string;
5332
5309
  did: string;
5333
- }, {
5334
5310
  type?: string | undefined;
5335
5311
  image?: string | undefined;
5336
5312
  email?: string | undefined;
5337
5313
  role?: string | undefined;
5338
- displayName?: string | undefined;
5339
- shortBio?: string | undefined;
5340
- bio?: string | undefined;
5341
5314
  isPrivate?: boolean | undefined;
5342
5315
  heroImage?: string | undefined;
5343
5316
  websiteLink?: string | undefined;
@@ -5357,24 +5330,16 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
5357
5330
  repeatIdBackgroundImage?: boolean | undefined;
5358
5331
  } | undefined;
5359
5332
  dob?: string | undefined;
5333
+ }, {
5360
5334
  profileId: string;
5361
5335
  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
5336
  type?: string | undefined;
5375
5337
  image?: string | undefined;
5376
5338
  email?: string | undefined;
5377
5339
  role?: string | undefined;
5340
+ displayName?: string | undefined;
5341
+ shortBio?: string | undefined;
5342
+ bio?: string | undefined;
5378
5343
  isPrivate?: boolean | undefined;
5379
5344
  heroImage?: string | undefined;
5380
5345
  websiteLink?: string | undefined;
@@ -5394,19 +5359,14 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
5394
5359
  repeatIdBackgroundImage?: boolean | undefined;
5395
5360
  } | undefined;
5396
5361
  dob?: string | undefined;
5397
- profileId: string;
5398
- displayName: string;
5399
- shortBio: string;
5400
- bio: string;
5401
- did: string;
5402
- }[] | undefined;
5362
+ }>, "many">>;
5363
+ }, "strip", z.ZodTypeAny, {
5403
5364
  name: string;
5404
5365
  createdAt: string;
5405
5366
  uri: string;
5406
5367
  updatedAt: string;
5407
5368
  contract: {
5408
5369
  read: {
5409
- anonymize?: boolean | undefined;
5410
5370
  credentials: {
5411
5371
  categories: Record<string, {
5412
5372
  required: boolean;
@@ -5415,6 +5375,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
5415
5375
  personal: Record<string, {
5416
5376
  required: boolean;
5417
5377
  }>;
5378
+ anonymize?: boolean | undefined;
5418
5379
  };
5419
5380
  write: {
5420
5381
  credentials: {
@@ -5428,6 +5389,11 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
5428
5389
  };
5429
5390
  };
5430
5391
  owner: {
5392
+ profileId: string;
5393
+ displayName: string;
5394
+ shortBio: string;
5395
+ bio: string;
5396
+ did: string;
5431
5397
  type?: string | undefined;
5432
5398
  image?: string | undefined;
5433
5399
  email?: string | undefined;
@@ -5451,13 +5417,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
5451
5417
  repeatIdBackgroundImage?: boolean | undefined;
5452
5418
  } | undefined;
5453
5419
  dob?: string | undefined;
5454
- profileId: string;
5455
- displayName: string;
5456
- shortBio: string;
5457
- bio: string;
5458
- did: string;
5459
5420
  };
5460
- }, {
5461
5421
  description?: string | undefined;
5462
5422
  image?: string | undefined;
5463
5423
  subtitle?: string | undefined;
@@ -5468,13 +5428,15 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
5468
5428
  expiresAt?: string | undefined;
5469
5429
  autoBoosts?: string[] | undefined;
5470
5430
  writers?: {
5431
+ profileId: string;
5432
+ displayName: string;
5433
+ shortBio: string;
5434
+ bio: string;
5435
+ did: string;
5471
5436
  type?: string | undefined;
5472
5437
  image?: string | undefined;
5473
5438
  email?: string | undefined;
5474
5439
  role?: string | undefined;
5475
- displayName?: string | undefined;
5476
- shortBio?: string | undefined;
5477
- bio?: string | undefined;
5478
5440
  isPrivate?: boolean | undefined;
5479
5441
  heroImage?: string | undefined;
5480
5442
  websiteLink?: string | undefined;
@@ -5494,9 +5456,8 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
5494
5456
  repeatIdBackgroundImage?: boolean | undefined;
5495
5457
  } | undefined;
5496
5458
  dob?: string | undefined;
5497
- profileId: string;
5498
- did: string;
5499
5459
  }[] | undefined;
5460
+ }, {
5500
5461
  name: string;
5501
5462
  createdAt: string;
5502
5463
  uri: string;
@@ -5525,7 +5486,9 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
5525
5486
  } | undefined;
5526
5487
  };
5527
5488
  owner: {
5528
- type?: string | undefined;
5489
+ profileId: string;
5490
+ did: string;
5491
+ type?: string | undefined;
5529
5492
  image?: string | undefined;
5530
5493
  email?: string | undefined;
5531
5494
  role?: string | undefined;
@@ -5551,9 +5514,46 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
5551
5514
  repeatIdBackgroundImage?: boolean | undefined;
5552
5515
  } | undefined;
5553
5516
  dob?: string | undefined;
5517
+ };
5518
+ description?: string | undefined;
5519
+ image?: string | undefined;
5520
+ subtitle?: string | undefined;
5521
+ reasonForAccessing?: string | undefined;
5522
+ needsGuardianConsent?: boolean | undefined;
5523
+ redirectUrl?: string | undefined;
5524
+ frontDoorBoostUri?: string | undefined;
5525
+ expiresAt?: string | undefined;
5526
+ autoBoosts?: string[] | undefined;
5527
+ writers?: {
5554
5528
  profileId: string;
5555
5529
  did: string;
5556
- };
5530
+ type?: string | undefined;
5531
+ image?: string | undefined;
5532
+ email?: string | undefined;
5533
+ role?: string | undefined;
5534
+ displayName?: string | undefined;
5535
+ shortBio?: string | undefined;
5536
+ bio?: string | undefined;
5537
+ isPrivate?: boolean | undefined;
5538
+ heroImage?: string | undefined;
5539
+ websiteLink?: string | undefined;
5540
+ isServiceProfile?: boolean | undefined;
5541
+ notificationsWebhook?: string | undefined;
5542
+ display?: {
5543
+ backgroundColor?: string | undefined;
5544
+ backgroundImage?: string | undefined;
5545
+ fadeBackgroundImage?: boolean | undefined;
5546
+ repeatBackgroundImage?: boolean | undefined;
5547
+ fontColor?: string | undefined;
5548
+ accentColor?: string | undefined;
5549
+ accentFontColor?: string | undefined;
5550
+ idBackgroundImage?: string | undefined;
5551
+ fadeIdBackgroundImage?: boolean | undefined;
5552
+ idBackgroundColor?: string | undefined;
5553
+ repeatIdBackgroundImage?: boolean | undefined;
5554
+ } | undefined;
5555
+ dob?: string | undefined;
5556
+ }[] | undefined;
5557
5557
  }>;
5558
5558
  uri: z.ZodString;
5559
5559
  consenter: z.ZodObject<{
@@ -5610,6 +5610,11 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
5610
5610
  role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
5611
5611
  dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
5612
5612
  }, "strip", z.ZodTypeAny, {
5613
+ profileId: string;
5614
+ displayName: string;
5615
+ shortBio: string;
5616
+ bio: string;
5617
+ did: string;
5613
5618
  type?: string | undefined;
5614
5619
  image?: string | undefined;
5615
5620
  email?: string | undefined;
@@ -5633,12 +5638,9 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
5633
5638
  repeatIdBackgroundImage?: boolean | undefined;
5634
5639
  } | undefined;
5635
5640
  dob?: string | undefined;
5641
+ }, {
5636
5642
  profileId: string;
5637
- displayName: string;
5638
- shortBio: string;
5639
- bio: string;
5640
5643
  did: string;
5641
- }, {
5642
5644
  type?: string | undefined;
5643
5645
  image?: string | undefined;
5644
5646
  email?: string | undefined;
@@ -5665,62 +5667,18 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
5665
5667
  repeatIdBackgroundImage?: boolean | undefined;
5666
5668
  } | undefined;
5667
5669
  dob?: string | undefined;
5668
- profileId: string;
5669
- did: string;
5670
5670
  }>;
5671
5671
  status: z.ZodEnum<["live", "stale", "withdrawn"]>;
5672
5672
  }, "strip", z.ZodTypeAny, {
5673
- expiresAt?: string | undefined;
5674
- oneTime?: boolean | undefined;
5675
5673
  status: "live" | "stale" | "withdrawn";
5676
5674
  uri: string;
5677
5675
  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
5676
  name: string;
5718
5677
  createdAt: string;
5719
5678
  uri: string;
5720
5679
  updatedAt: string;
5721
5680
  contract: {
5722
5681
  read: {
5723
- anonymize?: boolean | undefined;
5724
5682
  credentials: {
5725
5683
  categories: Record<string, {
5726
5684
  required: boolean;
@@ -5729,6 +5687,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
5729
5687
  personal: Record<string, {
5730
5688
  required: boolean;
5731
5689
  }>;
5690
+ anonymize?: boolean | undefined;
5732
5691
  };
5733
5692
  write: {
5734
5693
  credentials: {
@@ -5742,6 +5701,11 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
5742
5701
  };
5743
5702
  };
5744
5703
  owner: {
5704
+ profileId: string;
5705
+ displayName: string;
5706
+ shortBio: string;
5707
+ bio: string;
5708
+ did: string;
5745
5709
  type?: string | undefined;
5746
5710
  image?: string | undefined;
5747
5711
  email?: string | undefined;
@@ -5765,28 +5729,61 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
5765
5729
  repeatIdBackgroundImage?: boolean | undefined;
5766
5730
  } | undefined;
5767
5731
  dob?: string | undefined;
5732
+ };
5733
+ description?: string | undefined;
5734
+ image?: string | undefined;
5735
+ subtitle?: string | undefined;
5736
+ reasonForAccessing?: string | undefined;
5737
+ needsGuardianConsent?: boolean | undefined;
5738
+ redirectUrl?: string | undefined;
5739
+ frontDoorBoostUri?: string | undefined;
5740
+ expiresAt?: string | undefined;
5741
+ autoBoosts?: string[] | undefined;
5742
+ writers?: {
5768
5743
  profileId: string;
5769
5744
  displayName: string;
5770
5745
  shortBio: string;
5771
5746
  bio: string;
5772
5747
  did: string;
5773
- };
5748
+ type?: string | undefined;
5749
+ image?: string | undefined;
5750
+ email?: string | undefined;
5751
+ role?: string | undefined;
5752
+ isPrivate?: boolean | undefined;
5753
+ heroImage?: string | undefined;
5754
+ websiteLink?: string | undefined;
5755
+ isServiceProfile?: boolean | undefined;
5756
+ notificationsWebhook?: string | undefined;
5757
+ display?: {
5758
+ backgroundColor?: string | undefined;
5759
+ backgroundImage?: string | undefined;
5760
+ fadeBackgroundImage?: boolean | undefined;
5761
+ repeatBackgroundImage?: boolean | undefined;
5762
+ fontColor?: string | undefined;
5763
+ accentColor?: string | undefined;
5764
+ accentFontColor?: string | undefined;
5765
+ idBackgroundImage?: string | undefined;
5766
+ fadeIdBackgroundImage?: boolean | undefined;
5767
+ idBackgroundColor?: string | undefined;
5768
+ repeatIdBackgroundImage?: boolean | undefined;
5769
+ } | undefined;
5770
+ dob?: string | undefined;
5771
+ }[] | undefined;
5774
5772
  };
5775
5773
  terms: {
5776
- deniedWriters?: string[] | undefined;
5777
5774
  read: {
5778
- anonymize?: boolean | undefined;
5779
5775
  credentials: {
5780
- sharing?: boolean | undefined;
5781
- shareAll?: boolean | undefined;
5782
5776
  categories: Record<string, {
5783
5777
  sharing?: boolean | undefined;
5784
5778
  shared?: string[] | undefined;
5785
5779
  shareAll?: boolean | undefined;
5786
5780
  shareUntil?: string | undefined;
5787
5781
  }>;
5782
+ sharing?: boolean | undefined;
5783
+ shareAll?: boolean | undefined;
5788
5784
  };
5789
5785
  personal: Record<string, string>;
5786
+ anonymize?: boolean | undefined;
5790
5787
  };
5791
5788
  write: {
5792
5789
  credentials: {
@@ -5794,8 +5791,14 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
5794
5791
  };
5795
5792
  personal: Record<string, boolean>;
5796
5793
  };
5794
+ deniedWriters?: string[] | undefined;
5797
5795
  };
5798
5796
  consenter: {
5797
+ profileId: string;
5798
+ displayName: string;
5799
+ shortBio: string;
5800
+ bio: string;
5801
+ did: string;
5799
5802
  type?: string | undefined;
5800
5803
  image?: string | undefined;
5801
5804
  email?: string | undefined;
@@ -5819,57 +5822,13 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
5819
5822
  repeatIdBackgroundImage?: boolean | undefined;
5820
5823
  } | undefined;
5821
5824
  dob?: string | undefined;
5822
- profileId: string;
5823
- displayName: string;
5824
- shortBio: string;
5825
- bio: string;
5826
- did: string;
5827
5825
  };
5828
- }, {
5829
5826
  expiresAt?: string | undefined;
5830
5827
  oneTime?: boolean | undefined;
5828
+ }, {
5831
5829
  status: "live" | "stale" | "withdrawn";
5832
5830
  uri: string;
5833
5831
  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
5832
  name: string;
5874
5833
  createdAt: string;
5875
5834
  uri: string;
@@ -5898,6 +5857,8 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
5898
5857
  } | undefined;
5899
5858
  };
5900
5859
  owner: {
5860
+ profileId: string;
5861
+ did: string;
5901
5862
  type?: string | undefined;
5902
5863
  image?: string | undefined;
5903
5864
  email?: string | undefined;
@@ -5924,9 +5885,46 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
5924
5885
  repeatIdBackgroundImage?: boolean | undefined;
5925
5886
  } | undefined;
5926
5887
  dob?: string | undefined;
5888
+ };
5889
+ description?: string | undefined;
5890
+ image?: string | undefined;
5891
+ subtitle?: string | undefined;
5892
+ reasonForAccessing?: string | undefined;
5893
+ needsGuardianConsent?: boolean | undefined;
5894
+ redirectUrl?: string | undefined;
5895
+ frontDoorBoostUri?: string | undefined;
5896
+ expiresAt?: string | undefined;
5897
+ autoBoosts?: string[] | undefined;
5898
+ writers?: {
5927
5899
  profileId: string;
5928
5900
  did: string;
5929
- };
5901
+ type?: string | undefined;
5902
+ image?: string | undefined;
5903
+ email?: string | undefined;
5904
+ role?: string | undefined;
5905
+ displayName?: string | undefined;
5906
+ shortBio?: string | undefined;
5907
+ bio?: string | undefined;
5908
+ isPrivate?: boolean | undefined;
5909
+ heroImage?: string | undefined;
5910
+ websiteLink?: string | undefined;
5911
+ isServiceProfile?: boolean | undefined;
5912
+ notificationsWebhook?: string | undefined;
5913
+ display?: {
5914
+ backgroundColor?: string | undefined;
5915
+ backgroundImage?: string | undefined;
5916
+ fadeBackgroundImage?: boolean | undefined;
5917
+ repeatBackgroundImage?: boolean | undefined;
5918
+ fontColor?: string | undefined;
5919
+ accentColor?: string | undefined;
5920
+ accentFontColor?: string | undefined;
5921
+ idBackgroundImage?: string | undefined;
5922
+ fadeIdBackgroundImage?: boolean | undefined;
5923
+ idBackgroundColor?: string | undefined;
5924
+ repeatIdBackgroundImage?: boolean | undefined;
5925
+ } | undefined;
5926
+ dob?: string | undefined;
5927
+ }[] | undefined;
5930
5928
  };
5931
5929
  terms: {
5932
5930
  read?: {
@@ -5952,6 +5950,8 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
5952
5950
  deniedWriters?: string[] | undefined;
5953
5951
  };
5954
5952
  consenter: {
5953
+ profileId: string;
5954
+ did: string;
5955
5955
  type?: string | undefined;
5956
5956
  image?: string | undefined;
5957
5957
  email?: string | undefined;
@@ -5978,65 +5978,22 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
5978
5978
  repeatIdBackgroundImage?: boolean | undefined;
5979
5979
  } | undefined;
5980
5980
  dob?: string | undefined;
5981
- profileId: string;
5982
- did: string;
5983
- };
5984
- }>, "many">;
5985
- }>, "strip", z.ZodTypeAny, {
5986
- cursor?: string | undefined;
5987
- hasMore: boolean;
5988
- records: {
5989
- expiresAt?: string | undefined;
5990
- oneTime?: boolean | undefined;
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;
5981
+ };
5982
+ expiresAt?: string | undefined;
5983
+ oneTime?: boolean | undefined;
5984
+ }>, "many">;
5985
+ }>, "strip", z.ZodTypeAny, {
5986
+ hasMore: boolean;
5987
+ records: {
5988
+ status: "live" | "stale" | "withdrawn";
5989
+ uri: string;
5990
+ contract: {
6033
5991
  name: string;
6034
5992
  createdAt: string;
6035
5993
  uri: string;
6036
5994
  updatedAt: string;
6037
5995
  contract: {
6038
5996
  read: {
6039
- anonymize?: boolean | undefined;
6040
5997
  credentials: {
6041
5998
  categories: Record<string, {
6042
5999
  required: boolean;
@@ -6045,6 +6002,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
6045
6002
  personal: Record<string, {
6046
6003
  required: boolean;
6047
6004
  }>;
6005
+ anonymize?: boolean | undefined;
6048
6006
  };
6049
6007
  write: {
6050
6008
  credentials: {
@@ -6058,6 +6016,11 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
6058
6016
  };
6059
6017
  };
6060
6018
  owner: {
6019
+ profileId: string;
6020
+ displayName: string;
6021
+ shortBio: string;
6022
+ bio: string;
6023
+ did: string;
6061
6024
  type?: string | undefined;
6062
6025
  image?: string | undefined;
6063
6026
  email?: string | undefined;
@@ -6081,28 +6044,61 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
6081
6044
  repeatIdBackgroundImage?: boolean | undefined;
6082
6045
  } | undefined;
6083
6046
  dob?: string | undefined;
6047
+ };
6048
+ description?: string | undefined;
6049
+ image?: string | undefined;
6050
+ subtitle?: string | undefined;
6051
+ reasonForAccessing?: string | undefined;
6052
+ needsGuardianConsent?: boolean | undefined;
6053
+ redirectUrl?: string | undefined;
6054
+ frontDoorBoostUri?: string | undefined;
6055
+ expiresAt?: string | undefined;
6056
+ autoBoosts?: string[] | undefined;
6057
+ writers?: {
6084
6058
  profileId: string;
6085
6059
  displayName: string;
6086
6060
  shortBio: string;
6087
6061
  bio: string;
6088
6062
  did: string;
6089
- };
6063
+ type?: string | undefined;
6064
+ image?: string | undefined;
6065
+ email?: string | undefined;
6066
+ role?: string | undefined;
6067
+ isPrivate?: boolean | undefined;
6068
+ heroImage?: string | undefined;
6069
+ websiteLink?: string | undefined;
6070
+ isServiceProfile?: boolean | undefined;
6071
+ notificationsWebhook?: string | undefined;
6072
+ display?: {
6073
+ backgroundColor?: string | undefined;
6074
+ backgroundImage?: string | undefined;
6075
+ fadeBackgroundImage?: boolean | undefined;
6076
+ repeatBackgroundImage?: boolean | undefined;
6077
+ fontColor?: string | undefined;
6078
+ accentColor?: string | undefined;
6079
+ accentFontColor?: string | undefined;
6080
+ idBackgroundImage?: string | undefined;
6081
+ fadeIdBackgroundImage?: boolean | undefined;
6082
+ idBackgroundColor?: string | undefined;
6083
+ repeatIdBackgroundImage?: boolean | undefined;
6084
+ } | undefined;
6085
+ dob?: string | undefined;
6086
+ }[] | undefined;
6090
6087
  };
6091
6088
  terms: {
6092
- deniedWriters?: string[] | undefined;
6093
6089
  read: {
6094
- anonymize?: boolean | undefined;
6095
6090
  credentials: {
6096
- sharing?: boolean | undefined;
6097
- shareAll?: boolean | undefined;
6098
6091
  categories: Record<string, {
6099
6092
  sharing?: boolean | undefined;
6100
6093
  shared?: string[] | undefined;
6101
6094
  shareAll?: boolean | undefined;
6102
6095
  shareUntil?: string | undefined;
6103
6096
  }>;
6097
+ sharing?: boolean | undefined;
6098
+ shareAll?: boolean | undefined;
6104
6099
  };
6105
6100
  personal: Record<string, string>;
6101
+ anonymize?: boolean | undefined;
6106
6102
  };
6107
6103
  write: {
6108
6104
  credentials: {
@@ -6110,8 +6106,14 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
6110
6106
  };
6111
6107
  personal: Record<string, boolean>;
6112
6108
  };
6109
+ deniedWriters?: string[] | undefined;
6113
6110
  };
6114
6111
  consenter: {
6112
+ profileId: string;
6113
+ displayName: string;
6114
+ shortBio: string;
6115
+ bio: string;
6116
+ did: string;
6115
6117
  type?: string | undefined;
6116
6118
  image?: string | undefined;
6117
6119
  email?: string | undefined;
@@ -6135,61 +6137,17 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
6135
6137
  repeatIdBackgroundImage?: boolean | undefined;
6136
6138
  } | undefined;
6137
6139
  dob?: string | undefined;
6138
- profileId: string;
6139
- displayName: string;
6140
- shortBio: string;
6141
- bio: string;
6142
- did: string;
6143
6140
  };
6141
+ expiresAt?: string | undefined;
6142
+ oneTime?: boolean | undefined;
6144
6143
  }[];
6145
- }, {
6146
6144
  cursor?: string | undefined;
6145
+ }, {
6147
6146
  hasMore: boolean;
6148
6147
  records: {
6149
- expiresAt?: string | undefined;
6150
- oneTime?: boolean | undefined;
6151
6148
  status: "live" | "stale" | "withdrawn";
6152
6149
  uri: string;
6153
6150
  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
6151
  name: string;
6194
6152
  createdAt: string;
6195
6153
  uri: string;
@@ -6218,6 +6176,8 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
6218
6176
  } | undefined;
6219
6177
  };
6220
6178
  owner: {
6179
+ profileId: string;
6180
+ did: string;
6221
6181
  type?: string | undefined;
6222
6182
  image?: string | undefined;
6223
6183
  email?: string | undefined;
@@ -6244,9 +6204,46 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
6244
6204
  repeatIdBackgroundImage?: boolean | undefined;
6245
6205
  } | undefined;
6246
6206
  dob?: string | undefined;
6207
+ };
6208
+ description?: string | undefined;
6209
+ image?: string | undefined;
6210
+ subtitle?: string | undefined;
6211
+ reasonForAccessing?: string | undefined;
6212
+ needsGuardianConsent?: boolean | undefined;
6213
+ redirectUrl?: string | undefined;
6214
+ frontDoorBoostUri?: string | undefined;
6215
+ expiresAt?: string | undefined;
6216
+ autoBoosts?: string[] | undefined;
6217
+ writers?: {
6247
6218
  profileId: string;
6248
6219
  did: string;
6249
- };
6220
+ type?: string | undefined;
6221
+ image?: string | undefined;
6222
+ email?: string | undefined;
6223
+ role?: string | undefined;
6224
+ displayName?: string | undefined;
6225
+ shortBio?: string | undefined;
6226
+ bio?: string | undefined;
6227
+ isPrivate?: boolean | undefined;
6228
+ heroImage?: string | undefined;
6229
+ websiteLink?: string | undefined;
6230
+ isServiceProfile?: boolean | undefined;
6231
+ notificationsWebhook?: string | undefined;
6232
+ display?: {
6233
+ backgroundColor?: string | undefined;
6234
+ backgroundImage?: string | undefined;
6235
+ fadeBackgroundImage?: boolean | undefined;
6236
+ repeatBackgroundImage?: boolean | undefined;
6237
+ fontColor?: string | undefined;
6238
+ accentColor?: string | undefined;
6239
+ accentFontColor?: string | undefined;
6240
+ idBackgroundImage?: string | undefined;
6241
+ fadeIdBackgroundImage?: boolean | undefined;
6242
+ idBackgroundColor?: string | undefined;
6243
+ repeatIdBackgroundImage?: boolean | undefined;
6244
+ } | undefined;
6245
+ dob?: string | undefined;
6246
+ }[] | undefined;
6250
6247
  };
6251
6248
  terms: {
6252
6249
  read?: {
@@ -6272,6 +6269,8 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
6272
6269
  deniedWriters?: string[] | undefined;
6273
6270
  };
6274
6271
  consenter: {
6272
+ profileId: string;
6273
+ did: string;
6275
6274
  type?: string | undefined;
6276
6275
  image?: string | undefined;
6277
6276
  email?: string | undefined;
@@ -6298,10 +6297,11 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
6298
6297
  repeatIdBackgroundImage?: boolean | undefined;
6299
6298
  } | undefined;
6300
6299
  dob?: string | undefined;
6301
- profileId: string;
6302
- did: string;
6303
6300
  };
6301
+ expiresAt?: string | undefined;
6302
+ oneTime?: boolean | undefined;
6304
6303
  }[];
6304
+ cursor?: string | undefined;
6305
6305
  }>;
6306
6306
  export type PaginatedConsentFlowTerms = z.infer<typeof PaginatedConsentFlowTermsValidator>;
6307
6307
  export declare const ConsentFlowContractQueryValidator: z.ZodObject<{
@@ -6929,14 +6929,14 @@ export declare const ConsentFlowTransactionValidator: z.ZodObject<{
6929
6929
  shareUntil?: string | undefined;
6930
6930
  }>>>;
6931
6931
  }, "strip", z.ZodTypeAny, {
6932
- sharing?: boolean | undefined;
6933
- shareAll?: boolean | undefined;
6934
6932
  categories: Record<string, {
6935
6933
  sharing?: boolean | undefined;
6936
6934
  shared?: string[] | undefined;
6937
6935
  shareAll?: boolean | undefined;
6938
6936
  shareUntil?: string | undefined;
6939
6937
  }>;
6938
+ sharing?: boolean | undefined;
6939
+ shareAll?: boolean | undefined;
6940
6940
  }, {
6941
6941
  categories?: Record<string, {
6942
6942
  sharing?: boolean | undefined;
@@ -6949,18 +6949,18 @@ export declare const ConsentFlowTransactionValidator: z.ZodObject<{
6949
6949
  }>>;
6950
6950
  personal: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>;
6951
6951
  }, "strip", z.ZodTypeAny, {
6952
- anonymize?: boolean | undefined;
6953
6952
  credentials: {
6954
- sharing?: boolean | undefined;
6955
- shareAll?: boolean | undefined;
6956
6953
  categories: Record<string, {
6957
6954
  sharing?: boolean | undefined;
6958
6955
  shared?: string[] | undefined;
6959
6956
  shareAll?: boolean | undefined;
6960
6957
  shareUntil?: string | undefined;
6961
6958
  }>;
6959
+ sharing?: boolean | undefined;
6960
+ shareAll?: boolean | undefined;
6962
6961
  };
6963
6962
  personal: Record<string, string>;
6963
+ anonymize?: boolean | undefined;
6964
6964
  }, {
6965
6965
  anonymize?: boolean | undefined;
6966
6966
  credentials?: {
@@ -6997,20 +6997,19 @@ export declare const ConsentFlowTransactionValidator: z.ZodObject<{
6997
6997
  }>>;
6998
6998
  deniedWriters: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
6999
6999
  }, "strip", z.ZodTypeAny, {
7000
- deniedWriters?: string[] | undefined;
7001
7000
  read: {
7002
- anonymize?: boolean | undefined;
7003
7001
  credentials: {
7004
- sharing?: boolean | undefined;
7005
- shareAll?: boolean | undefined;
7006
7002
  categories: Record<string, {
7007
7003
  sharing?: boolean | undefined;
7008
7004
  shared?: string[] | undefined;
7009
7005
  shareAll?: boolean | undefined;
7010
7006
  shareUntil?: string | undefined;
7011
7007
  }>;
7008
+ sharing?: boolean | undefined;
7009
+ shareAll?: boolean | undefined;
7012
7010
  };
7013
7011
  personal: Record<string, string>;
7012
+ anonymize?: boolean | undefined;
7014
7013
  };
7015
7014
  write: {
7016
7015
  credentials: {
@@ -7018,6 +7017,7 @@ export declare const ConsentFlowTransactionValidator: z.ZodObject<{
7018
7017
  };
7019
7018
  personal: Record<string, boolean>;
7020
7019
  };
7020
+ deniedWriters?: string[] | undefined;
7021
7021
  }, {
7022
7022
  read?: {
7023
7023
  anonymize?: boolean | undefined;
@@ -7046,23 +7046,25 @@ export declare const ConsentFlowTransactionValidator: z.ZodObject<{
7046
7046
  date: z.ZodString;
7047
7047
  uris: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
7048
7048
  }, "strip", z.ZodTypeAny, {
7049
+ date: string;
7050
+ id: string;
7051
+ action: "write" | "consent" | "update" | "sync" | "withdraw";
7049
7052
  expiresAt?: string | undefined;
7050
7053
  oneTime?: boolean | undefined;
7051
7054
  terms?: {
7052
- deniedWriters?: string[] | undefined;
7053
7055
  read: {
7054
- anonymize?: boolean | undefined;
7055
7056
  credentials: {
7056
- sharing?: boolean | undefined;
7057
- shareAll?: boolean | undefined;
7058
7057
  categories: Record<string, {
7059
7058
  sharing?: boolean | undefined;
7060
7059
  shared?: string[] | undefined;
7061
7060
  shareAll?: boolean | undefined;
7062
7061
  shareUntil?: string | undefined;
7063
7062
  }>;
7063
+ sharing?: boolean | undefined;
7064
+ shareAll?: boolean | undefined;
7064
7065
  };
7065
7066
  personal: Record<string, string>;
7067
+ anonymize?: boolean | undefined;
7066
7068
  };
7067
7069
  write: {
7068
7070
  credentials: {
@@ -7070,12 +7072,13 @@ export declare const ConsentFlowTransactionValidator: z.ZodObject<{
7070
7072
  };
7071
7073
  personal: Record<string, boolean>;
7072
7074
  };
7075
+ deniedWriters?: string[] | undefined;
7073
7076
  } | undefined;
7074
7077
  uris?: string[] | undefined;
7078
+ }, {
7075
7079
  date: string;
7076
7080
  id: string;
7077
7081
  action: "write" | "consent" | "update" | "sync" | "withdraw";
7078
- }, {
7079
7082
  expiresAt?: string | undefined;
7080
7083
  oneTime?: boolean | undefined;
7081
7084
  terms?: {
@@ -7102,12 +7105,9 @@ export declare const ConsentFlowTransactionValidator: z.ZodObject<{
7102
7105
  deniedWriters?: string[] | undefined;
7103
7106
  } | undefined;
7104
7107
  uris?: string[] | undefined;
7105
- date: string;
7106
- id: string;
7107
- action: "write" | "consent" | "update" | "sync" | "withdraw";
7108
7108
  }>;
7109
7109
  export type ConsentFlowTransaction = z.infer<typeof ConsentFlowTransactionValidator>;
7110
- export declare const PaginatedConsentFlowTransactionsValidator: z.ZodObject<z.extendShape<{
7110
+ export declare const PaginatedConsentFlowTransactionsValidator: z.ZodObject<z.objectUtil.extendShape<{
7111
7111
  cursor: z.ZodOptional<z.ZodString>;
7112
7112
  hasMore: z.ZodBoolean;
7113
7113
  }, {
@@ -7137,14 +7137,14 @@ export declare const PaginatedConsentFlowTransactionsValidator: z.ZodObject<z.ex
7137
7137
  shareUntil?: string | undefined;
7138
7138
  }>>>;
7139
7139
  }, "strip", z.ZodTypeAny, {
7140
- sharing?: boolean | undefined;
7141
- shareAll?: boolean | undefined;
7142
7140
  categories: Record<string, {
7143
7141
  sharing?: boolean | undefined;
7144
7142
  shared?: string[] | undefined;
7145
7143
  shareAll?: boolean | undefined;
7146
7144
  shareUntil?: string | undefined;
7147
7145
  }>;
7146
+ sharing?: boolean | undefined;
7147
+ shareAll?: boolean | undefined;
7148
7148
  }, {
7149
7149
  categories?: Record<string, {
7150
7150
  sharing?: boolean | undefined;
@@ -7157,18 +7157,18 @@ export declare const PaginatedConsentFlowTransactionsValidator: z.ZodObject<z.ex
7157
7157
  }>>;
7158
7158
  personal: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>;
7159
7159
  }, "strip", z.ZodTypeAny, {
7160
- anonymize?: boolean | undefined;
7161
7160
  credentials: {
7162
- sharing?: boolean | undefined;
7163
- shareAll?: boolean | undefined;
7164
7161
  categories: Record<string, {
7165
7162
  sharing?: boolean | undefined;
7166
7163
  shared?: string[] | undefined;
7167
7164
  shareAll?: boolean | undefined;
7168
7165
  shareUntil?: string | undefined;
7169
7166
  }>;
7167
+ sharing?: boolean | undefined;
7168
+ shareAll?: boolean | undefined;
7170
7169
  };
7171
7170
  personal: Record<string, string>;
7171
+ anonymize?: boolean | undefined;
7172
7172
  }, {
7173
7173
  anonymize?: boolean | undefined;
7174
7174
  credentials?: {
@@ -7205,20 +7205,19 @@ export declare const PaginatedConsentFlowTransactionsValidator: z.ZodObject<z.ex
7205
7205
  }>>;
7206
7206
  deniedWriters: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
7207
7207
  }, "strip", z.ZodTypeAny, {
7208
- deniedWriters?: string[] | undefined;
7209
7208
  read: {
7210
- anonymize?: boolean | undefined;
7211
7209
  credentials: {
7212
- sharing?: boolean | undefined;
7213
- shareAll?: boolean | undefined;
7214
7210
  categories: Record<string, {
7215
7211
  sharing?: boolean | undefined;
7216
7212
  shared?: string[] | undefined;
7217
7213
  shareAll?: boolean | undefined;
7218
7214
  shareUntil?: string | undefined;
7219
7215
  }>;
7216
+ sharing?: boolean | undefined;
7217
+ shareAll?: boolean | undefined;
7220
7218
  };
7221
7219
  personal: Record<string, string>;
7220
+ anonymize?: boolean | undefined;
7222
7221
  };
7223
7222
  write: {
7224
7223
  credentials: {
@@ -7226,6 +7225,7 @@ export declare const PaginatedConsentFlowTransactionsValidator: z.ZodObject<z.ex
7226
7225
  };
7227
7226
  personal: Record<string, boolean>;
7228
7227
  };
7228
+ deniedWriters?: string[] | undefined;
7229
7229
  }, {
7230
7230
  read?: {
7231
7231
  anonymize?: boolean | undefined;
@@ -7254,23 +7254,25 @@ export declare const PaginatedConsentFlowTransactionsValidator: z.ZodObject<z.ex
7254
7254
  date: z.ZodString;
7255
7255
  uris: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
7256
7256
  }, "strip", z.ZodTypeAny, {
7257
+ date: string;
7258
+ id: string;
7259
+ action: "write" | "consent" | "update" | "sync" | "withdraw";
7257
7260
  expiresAt?: string | undefined;
7258
7261
  oneTime?: boolean | undefined;
7259
7262
  terms?: {
7260
- deniedWriters?: string[] | undefined;
7261
7263
  read: {
7262
- anonymize?: boolean | undefined;
7263
7264
  credentials: {
7264
- sharing?: boolean | undefined;
7265
- shareAll?: boolean | undefined;
7266
7265
  categories: Record<string, {
7267
7266
  sharing?: boolean | undefined;
7268
7267
  shared?: string[] | undefined;
7269
7268
  shareAll?: boolean | undefined;
7270
7269
  shareUntil?: string | undefined;
7271
7270
  }>;
7271
+ sharing?: boolean | undefined;
7272
+ shareAll?: boolean | undefined;
7272
7273
  };
7273
7274
  personal: Record<string, string>;
7275
+ anonymize?: boolean | undefined;
7274
7276
  };
7275
7277
  write: {
7276
7278
  credentials: {
@@ -7278,12 +7280,13 @@ export declare const PaginatedConsentFlowTransactionsValidator: z.ZodObject<z.ex
7278
7280
  };
7279
7281
  personal: Record<string, boolean>;
7280
7282
  };
7283
+ deniedWriters?: string[] | undefined;
7281
7284
  } | undefined;
7282
7285
  uris?: string[] | undefined;
7286
+ }, {
7283
7287
  date: string;
7284
7288
  id: string;
7285
7289
  action: "write" | "consent" | "update" | "sync" | "withdraw";
7286
- }, {
7287
7290
  expiresAt?: string | undefined;
7288
7291
  oneTime?: boolean | undefined;
7289
7292
  terms?: {
@@ -7310,31 +7313,29 @@ export declare const PaginatedConsentFlowTransactionsValidator: z.ZodObject<z.ex
7310
7313
  deniedWriters?: string[] | undefined;
7311
7314
  } | undefined;
7312
7315
  uris?: string[] | undefined;
7313
- date: string;
7314
- id: string;
7315
- action: "write" | "consent" | "update" | "sync" | "withdraw";
7316
7316
  }>, "many">;
7317
7317
  }>, "strip", z.ZodTypeAny, {
7318
- cursor?: string | undefined;
7319
7318
  hasMore: boolean;
7320
7319
  records: {
7320
+ date: string;
7321
+ id: string;
7322
+ action: "write" | "consent" | "update" | "sync" | "withdraw";
7321
7323
  expiresAt?: string | undefined;
7322
7324
  oneTime?: boolean | undefined;
7323
7325
  terms?: {
7324
- deniedWriters?: string[] | undefined;
7325
7326
  read: {
7326
- anonymize?: boolean | undefined;
7327
7327
  credentials: {
7328
- sharing?: boolean | undefined;
7329
- shareAll?: boolean | undefined;
7330
7328
  categories: Record<string, {
7331
7329
  sharing?: boolean | undefined;
7332
7330
  shared?: string[] | undefined;
7333
7331
  shareAll?: boolean | undefined;
7334
7332
  shareUntil?: string | undefined;
7335
7333
  }>;
7334
+ sharing?: boolean | undefined;
7335
+ shareAll?: boolean | undefined;
7336
7336
  };
7337
7337
  personal: Record<string, string>;
7338
+ anonymize?: boolean | undefined;
7338
7339
  };
7339
7340
  write: {
7340
7341
  credentials: {
@@ -7342,16 +7343,17 @@ export declare const PaginatedConsentFlowTransactionsValidator: z.ZodObject<z.ex
7342
7343
  };
7343
7344
  personal: Record<string, boolean>;
7344
7345
  };
7346
+ deniedWriters?: string[] | undefined;
7345
7347
  } | undefined;
7346
7348
  uris?: string[] | undefined;
7347
- date: string;
7348
- id: string;
7349
- action: "write" | "consent" | "update" | "sync" | "withdraw";
7350
7349
  }[];
7351
- }, {
7352
7350
  cursor?: string | undefined;
7351
+ }, {
7353
7352
  hasMore: boolean;
7354
7353
  records: {
7354
+ date: string;
7355
+ id: string;
7356
+ action: "write" | "consent" | "update" | "sync" | "withdraw";
7355
7357
  expiresAt?: string | undefined;
7356
7358
  oneTime?: boolean | undefined;
7357
7359
  terms?: {
@@ -7377,11 +7379,9 @@ export declare const PaginatedConsentFlowTransactionsValidator: z.ZodObject<z.ex
7377
7379
  } | undefined;
7378
7380
  deniedWriters?: string[] | undefined;
7379
7381
  } | undefined;
7380
- uris?: string[] | undefined;
7381
- date: string;
7382
- id: string;
7383
- action: "write" | "consent" | "update" | "sync" | "withdraw";
7382
+ uris?: string[] | undefined;
7384
7383
  }[];
7384
+ cursor?: string | undefined;
7385
7385
  }>;
7386
7386
  export type PaginatedConsentFlowTransactions = z.infer<typeof PaginatedConsentFlowTransactionsValidator>;
7387
7387
  export declare const ContractCredentialValidator: z.ZodObject<{
@@ -7392,22 +7392,22 @@ export declare const ContractCredentialValidator: z.ZodObject<{
7392
7392
  category: z.ZodOptional<z.ZodString>;
7393
7393
  date: z.ZodString;
7394
7394
  }, "strip", z.ZodTypeAny, {
7395
- category?: string | undefined;
7396
7395
  date: string;
7397
7396
  boostUri: string;
7398
7397
  contractUri: string;
7399
7398
  credentialUri: string;
7400
7399
  termsUri: string;
7401
- }, {
7402
7400
  category?: string | undefined;
7401
+ }, {
7403
7402
  date: string;
7404
7403
  boostUri: string;
7405
7404
  contractUri: string;
7406
7405
  credentialUri: string;
7407
7406
  termsUri: string;
7407
+ category?: string | undefined;
7408
7408
  }>;
7409
7409
  export type ContractCredential = z.infer<typeof ContractCredentialValidator>;
7410
- export declare const PaginatedContractCredentialsValidator: z.ZodObject<z.extendShape<{
7410
+ export declare const PaginatedContractCredentialsValidator: z.ZodObject<z.objectUtil.extendShape<{
7411
7411
  cursor: z.ZodOptional<z.ZodString>;
7412
7412
  hasMore: z.ZodBoolean;
7413
7413
  }, {
@@ -7419,42 +7419,42 @@ export declare const PaginatedContractCredentialsValidator: z.ZodObject<z.extend
7419
7419
  category: z.ZodOptional<z.ZodString>;
7420
7420
  date: z.ZodString;
7421
7421
  }, "strip", z.ZodTypeAny, {
7422
- category?: string | undefined;
7423
7422
  date: string;
7424
7423
  boostUri: string;
7425
7424
  contractUri: string;
7426
7425
  credentialUri: string;
7427
7426
  termsUri: string;
7428
- }, {
7429
7427
  category?: string | undefined;
7428
+ }, {
7430
7429
  date: string;
7431
7430
  boostUri: string;
7432
7431
  contractUri: string;
7433
7432
  credentialUri: string;
7434
7433
  termsUri: string;
7434
+ category?: string | undefined;
7435
7435
  }>, "many">;
7436
7436
  }>, "strip", z.ZodTypeAny, {
7437
- cursor?: string | undefined;
7438
7437
  hasMore: boolean;
7439
7438
  records: {
7440
- category?: string | undefined;
7441
7439
  date: string;
7442
7440
  boostUri: string;
7443
7441
  contractUri: string;
7444
7442
  credentialUri: string;
7445
7443
  termsUri: string;
7444
+ category?: string | undefined;
7446
7445
  }[];
7447
- }, {
7448
7446
  cursor?: string | undefined;
7447
+ }, {
7449
7448
  hasMore: boolean;
7450
7449
  records: {
7451
- category?: string | undefined;
7452
7450
  date: string;
7453
7451
  boostUri: string;
7454
7452
  contractUri: string;
7455
7453
  credentialUri: string;
7456
7454
  termsUri: string;
7455
+ category?: string | undefined;
7457
7456
  }[];
7457
+ cursor?: string | undefined;
7458
7458
  }>;
7459
7459
  export type PaginatedContractCredentials = z.infer<typeof PaginatedContractCredentialsValidator>;
7460
7460
  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 +7499,14 @@ export declare const LCNNotificationDataValidator: z.ZodObject<{
7499
7499
  shareUntil?: string | undefined;
7500
7500
  }>>>;
7501
7501
  }, "strip", z.ZodTypeAny, {
7502
- sharing?: boolean | undefined;
7503
- shareAll?: boolean | undefined;
7504
7502
  categories: Record<string, {
7505
7503
  sharing?: boolean | undefined;
7506
7504
  shared?: string[] | undefined;
7507
7505
  shareAll?: boolean | undefined;
7508
7506
  shareUntil?: string | undefined;
7509
7507
  }>;
7508
+ sharing?: boolean | undefined;
7509
+ shareAll?: boolean | undefined;
7510
7510
  }, {
7511
7511
  categories?: Record<string, {
7512
7512
  sharing?: boolean | undefined;
@@ -7519,18 +7519,18 @@ export declare const LCNNotificationDataValidator: z.ZodObject<{
7519
7519
  }>>;
7520
7520
  personal: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>;
7521
7521
  }, "strip", z.ZodTypeAny, {
7522
- anonymize?: boolean | undefined;
7523
7522
  credentials: {
7524
- sharing?: boolean | undefined;
7525
- shareAll?: boolean | undefined;
7526
7523
  categories: Record<string, {
7527
7524
  sharing?: boolean | undefined;
7528
7525
  shared?: string[] | undefined;
7529
7526
  shareAll?: boolean | undefined;
7530
7527
  shareUntil?: string | undefined;
7531
7528
  }>;
7529
+ sharing?: boolean | undefined;
7530
+ shareAll?: boolean | undefined;
7532
7531
  };
7533
7532
  personal: Record<string, string>;
7533
+ anonymize?: boolean | undefined;
7534
7534
  }, {
7535
7535
  anonymize?: boolean | undefined;
7536
7536
  credentials?: {
@@ -7567,20 +7567,19 @@ export declare const LCNNotificationDataValidator: z.ZodObject<{
7567
7567
  }>>;
7568
7568
  deniedWriters: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
7569
7569
  }, "strip", z.ZodTypeAny, {
7570
- deniedWriters?: string[] | undefined;
7571
7570
  read: {
7572
- anonymize?: boolean | undefined;
7573
7571
  credentials: {
7574
- sharing?: boolean | undefined;
7575
- shareAll?: boolean | undefined;
7576
7572
  categories: Record<string, {
7577
7573
  sharing?: boolean | undefined;
7578
7574
  shared?: string[] | undefined;
7579
7575
  shareAll?: boolean | undefined;
7580
7576
  shareUntil?: string | undefined;
7581
7577
  }>;
7578
+ sharing?: boolean | undefined;
7579
+ shareAll?: boolean | undefined;
7582
7580
  };
7583
7581
  personal: Record<string, string>;
7582
+ anonymize?: boolean | undefined;
7584
7583
  };
7585
7584
  write: {
7586
7585
  credentials: {
@@ -7588,6 +7587,7 @@ export declare const LCNNotificationDataValidator: z.ZodObject<{
7588
7587
  };
7589
7588
  personal: Record<string, boolean>;
7590
7589
  };
7590
+ deniedWriters?: string[] | undefined;
7591
7591
  }, {
7592
7592
  read?: {
7593
7593
  anonymize?: boolean | undefined;
@@ -7616,23 +7616,25 @@ export declare const LCNNotificationDataValidator: z.ZodObject<{
7616
7616
  date: z.ZodString;
7617
7617
  uris: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
7618
7618
  }, "strip", z.ZodTypeAny, {
7619
+ date: string;
7620
+ id: string;
7621
+ action: "write" | "consent" | "update" | "sync" | "withdraw";
7619
7622
  expiresAt?: string | undefined;
7620
7623
  oneTime?: boolean | undefined;
7621
7624
  terms?: {
7622
- deniedWriters?: string[] | undefined;
7623
7625
  read: {
7624
- anonymize?: boolean | undefined;
7625
7626
  credentials: {
7626
- sharing?: boolean | undefined;
7627
- shareAll?: boolean | undefined;
7628
7627
  categories: Record<string, {
7629
7628
  sharing?: boolean | undefined;
7630
7629
  shared?: string[] | undefined;
7631
7630
  shareAll?: boolean | undefined;
7632
7631
  shareUntil?: string | undefined;
7633
7632
  }>;
7633
+ sharing?: boolean | undefined;
7634
+ shareAll?: boolean | undefined;
7634
7635
  };
7635
7636
  personal: Record<string, string>;
7637
+ anonymize?: boolean | undefined;
7636
7638
  };
7637
7639
  write: {
7638
7640
  credentials: {
@@ -7640,12 +7642,13 @@ export declare const LCNNotificationDataValidator: z.ZodObject<{
7640
7642
  };
7641
7643
  personal: Record<string, boolean>;
7642
7644
  };
7645
+ deniedWriters?: string[] | undefined;
7643
7646
  } | undefined;
7644
7647
  uris?: string[] | undefined;
7648
+ }, {
7645
7649
  date: string;
7646
7650
  id: string;
7647
7651
  action: "write" | "consent" | "update" | "sync" | "withdraw";
7648
- }, {
7649
7652
  expiresAt?: string | undefined;
7650
7653
  oneTime?: boolean | undefined;
7651
7654
  terms?: {
@@ -7672,31 +7675,30 @@ export declare const LCNNotificationDataValidator: z.ZodObject<{
7672
7675
  deniedWriters?: string[] | undefined;
7673
7676
  } | undefined;
7674
7677
  uris?: string[] | undefined;
7675
- date: string;
7676
- id: string;
7677
- action: "write" | "consent" | "update" | "sync" | "withdraw";
7678
7678
  }>>;
7679
7679
  }, "strip", z.ZodTypeAny, {
7680
7680
  vcUris?: string[] | undefined;
7681
7681
  vpUris?: string[] | undefined;
7682
7682
  transaction?: {
7683
+ date: string;
7684
+ id: string;
7685
+ action: "write" | "consent" | "update" | "sync" | "withdraw";
7683
7686
  expiresAt?: string | undefined;
7684
7687
  oneTime?: boolean | undefined;
7685
7688
  terms?: {
7686
- deniedWriters?: string[] | undefined;
7687
7689
  read: {
7688
- anonymize?: boolean | undefined;
7689
7690
  credentials: {
7690
- sharing?: boolean | undefined;
7691
- shareAll?: boolean | undefined;
7692
7691
  categories: Record<string, {
7693
7692
  sharing?: boolean | undefined;
7694
7693
  shared?: string[] | undefined;
7695
7694
  shareAll?: boolean | undefined;
7696
7695
  shareUntil?: string | undefined;
7697
7696
  }>;
7697
+ sharing?: boolean | undefined;
7698
+ shareAll?: boolean | undefined;
7698
7699
  };
7699
7700
  personal: Record<string, string>;
7701
+ anonymize?: boolean | undefined;
7700
7702
  };
7701
7703
  write: {
7702
7704
  credentials: {
@@ -7704,16 +7706,17 @@ export declare const LCNNotificationDataValidator: z.ZodObject<{
7704
7706
  };
7705
7707
  personal: Record<string, boolean>;
7706
7708
  };
7709
+ deniedWriters?: string[] | undefined;
7707
7710
  } | undefined;
7708
7711
  uris?: string[] | undefined;
7709
- date: string;
7710
- id: string;
7711
- action: "write" | "consent" | "update" | "sync" | "withdraw";
7712
7712
  } | undefined;
7713
7713
  }, {
7714
7714
  vcUris?: string[] | undefined;
7715
7715
  vpUris?: string[] | undefined;
7716
7716
  transaction?: {
7717
+ date: string;
7718
+ id: string;
7719
+ action: "write" | "consent" | "update" | "sync" | "withdraw";
7717
7720
  expiresAt?: string | undefined;
7718
7721
  oneTime?: boolean | undefined;
7719
7722
  terms?: {
@@ -7740,9 +7743,6 @@ export declare const LCNNotificationDataValidator: z.ZodObject<{
7740
7743
  deniedWriters?: string[] | undefined;
7741
7744
  } | undefined;
7742
7745
  uris?: string[] | undefined;
7743
- date: string;
7744
- id: string;
7745
- action: "write" | "consent" | "update" | "sync" | "withdraw";
7746
7746
  } | undefined;
7747
7747
  }>;
7748
7748
  export type LCNNotificationData = z.infer<typeof LCNNotificationDataValidator>;
@@ -8023,14 +8023,14 @@ export declare const LCNNotificationValidator: z.ZodObject<{
8023
8023
  shareUntil?: string | undefined;
8024
8024
  }>>>;
8025
8025
  }, "strip", z.ZodTypeAny, {
8026
- sharing?: boolean | undefined;
8027
- shareAll?: boolean | undefined;
8028
8026
  categories: Record<string, {
8029
8027
  sharing?: boolean | undefined;
8030
8028
  shared?: string[] | undefined;
8031
8029
  shareAll?: boolean | undefined;
8032
8030
  shareUntil?: string | undefined;
8033
8031
  }>;
8032
+ sharing?: boolean | undefined;
8033
+ shareAll?: boolean | undefined;
8034
8034
  }, {
8035
8035
  categories?: Record<string, {
8036
8036
  sharing?: boolean | undefined;
@@ -8043,18 +8043,18 @@ export declare const LCNNotificationValidator: z.ZodObject<{
8043
8043
  }>>;
8044
8044
  personal: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>;
8045
8045
  }, "strip", z.ZodTypeAny, {
8046
- anonymize?: boolean | undefined;
8047
8046
  credentials: {
8048
- sharing?: boolean | undefined;
8049
- shareAll?: boolean | undefined;
8050
8047
  categories: Record<string, {
8051
8048
  sharing?: boolean | undefined;
8052
8049
  shared?: string[] | undefined;
8053
8050
  shareAll?: boolean | undefined;
8054
8051
  shareUntil?: string | undefined;
8055
8052
  }>;
8053
+ sharing?: boolean | undefined;
8054
+ shareAll?: boolean | undefined;
8056
8055
  };
8057
8056
  personal: Record<string, string>;
8057
+ anonymize?: boolean | undefined;
8058
8058
  }, {
8059
8059
  anonymize?: boolean | undefined;
8060
8060
  credentials?: {
@@ -8091,20 +8091,19 @@ export declare const LCNNotificationValidator: z.ZodObject<{
8091
8091
  }>>;
8092
8092
  deniedWriters: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
8093
8093
  }, "strip", z.ZodTypeAny, {
8094
- deniedWriters?: string[] | undefined;
8095
8094
  read: {
8096
- anonymize?: boolean | undefined;
8097
8095
  credentials: {
8098
- sharing?: boolean | undefined;
8099
- shareAll?: boolean | undefined;
8100
8096
  categories: Record<string, {
8101
8097
  sharing?: boolean | undefined;
8102
8098
  shared?: string[] | undefined;
8103
8099
  shareAll?: boolean | undefined;
8104
8100
  shareUntil?: string | undefined;
8105
8101
  }>;
8102
+ sharing?: boolean | undefined;
8103
+ shareAll?: boolean | undefined;
8106
8104
  };
8107
8105
  personal: Record<string, string>;
8106
+ anonymize?: boolean | undefined;
8108
8107
  };
8109
8108
  write: {
8110
8109
  credentials: {
@@ -8112,6 +8111,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
8112
8111
  };
8113
8112
  personal: Record<string, boolean>;
8114
8113
  };
8114
+ deniedWriters?: string[] | undefined;
8115
8115
  }, {
8116
8116
  read?: {
8117
8117
  anonymize?: boolean | undefined;
@@ -8140,23 +8140,25 @@ export declare const LCNNotificationValidator: z.ZodObject<{
8140
8140
  date: z.ZodString;
8141
8141
  uris: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
8142
8142
  }, "strip", z.ZodTypeAny, {
8143
+ date: string;
8144
+ id: string;
8145
+ action: "write" | "consent" | "update" | "sync" | "withdraw";
8143
8146
  expiresAt?: string | undefined;
8144
8147
  oneTime?: boolean | undefined;
8145
8148
  terms?: {
8146
- deniedWriters?: string[] | undefined;
8147
8149
  read: {
8148
- anonymize?: boolean | undefined;
8149
8150
  credentials: {
8150
- sharing?: boolean | undefined;
8151
- shareAll?: boolean | undefined;
8152
8151
  categories: Record<string, {
8153
8152
  sharing?: boolean | undefined;
8154
8153
  shared?: string[] | undefined;
8155
8154
  shareAll?: boolean | undefined;
8156
8155
  shareUntil?: string | undefined;
8157
8156
  }>;
8157
+ sharing?: boolean | undefined;
8158
+ shareAll?: boolean | undefined;
8158
8159
  };
8159
8160
  personal: Record<string, string>;
8161
+ anonymize?: boolean | undefined;
8160
8162
  };
8161
8163
  write: {
8162
8164
  credentials: {
@@ -8164,12 +8166,13 @@ export declare const LCNNotificationValidator: z.ZodObject<{
8164
8166
  };
8165
8167
  personal: Record<string, boolean>;
8166
8168
  };
8169
+ deniedWriters?: string[] | undefined;
8167
8170
  } | undefined;
8168
8171
  uris?: string[] | undefined;
8172
+ }, {
8169
8173
  date: string;
8170
8174
  id: string;
8171
8175
  action: "write" | "consent" | "update" | "sync" | "withdraw";
8172
- }, {
8173
8176
  expiresAt?: string | undefined;
8174
8177
  oneTime?: boolean | undefined;
8175
8178
  terms?: {
@@ -8196,31 +8199,30 @@ export declare const LCNNotificationValidator: z.ZodObject<{
8196
8199
  deniedWriters?: string[] | undefined;
8197
8200
  } | undefined;
8198
8201
  uris?: string[] | undefined;
8199
- date: string;
8200
- id: string;
8201
- action: "write" | "consent" | "update" | "sync" | "withdraw";
8202
8202
  }>>;
8203
8203
  }, "strip", z.ZodTypeAny, {
8204
8204
  vcUris?: string[] | undefined;
8205
8205
  vpUris?: string[] | undefined;
8206
8206
  transaction?: {
8207
+ date: string;
8208
+ id: string;
8209
+ action: "write" | "consent" | "update" | "sync" | "withdraw";
8207
8210
  expiresAt?: string | undefined;
8208
8211
  oneTime?: boolean | undefined;
8209
8212
  terms?: {
8210
- deniedWriters?: string[] | undefined;
8211
8213
  read: {
8212
- anonymize?: boolean | undefined;
8213
8214
  credentials: {
8214
- sharing?: boolean | undefined;
8215
- shareAll?: boolean | undefined;
8216
8215
  categories: Record<string, {
8217
8216
  sharing?: boolean | undefined;
8218
8217
  shared?: string[] | undefined;
8219
8218
  shareAll?: boolean | undefined;
8220
8219
  shareUntil?: string | undefined;
8221
8220
  }>;
8221
+ sharing?: boolean | undefined;
8222
+ shareAll?: boolean | undefined;
8222
8223
  };
8223
8224
  personal: Record<string, string>;
8225
+ anonymize?: boolean | undefined;
8224
8226
  };
8225
8227
  write: {
8226
8228
  credentials: {
@@ -8228,16 +8230,17 @@ export declare const LCNNotificationValidator: z.ZodObject<{
8228
8230
  };
8229
8231
  personal: Record<string, boolean>;
8230
8232
  };
8233
+ deniedWriters?: string[] | undefined;
8231
8234
  } | undefined;
8232
8235
  uris?: string[] | undefined;
8233
- date: string;
8234
- id: string;
8235
- action: "write" | "consent" | "update" | "sync" | "withdraw";
8236
8236
  } | undefined;
8237
8237
  }, {
8238
8238
  vcUris?: string[] | undefined;
8239
8239
  vpUris?: string[] | undefined;
8240
8240
  transaction?: {
8241
+ date: string;
8242
+ id: string;
8243
+ action: "write" | "consent" | "update" | "sync" | "withdraw";
8241
8244
  expiresAt?: string | undefined;
8242
8245
  oneTime?: boolean | undefined;
8243
8246
  terms?: {
@@ -8264,53 +8267,10 @@ export declare const LCNNotificationValidator: z.ZodObject<{
8264
8267
  deniedWriters?: string[] | undefined;
8265
8268
  } | undefined;
8266
8269
  uris?: string[] | undefined;
8267
- date: string;
8268
- id: string;
8269
- action: "write" | "consent" | "update" | "sync" | "withdraw";
8270
8270
  } | undefined;
8271
8271
  }>>;
8272
8272
  sent: z.ZodOptional<z.ZodString>;
8273
8273
  }, "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
8274
  type: "CONNECTION_REQUEST" | "CONNECTION_ACCEPTED" | "CREDENTIAL_RECEIVED" | "CREDENTIAL_ACCEPTED" | "BOOST_RECEIVED" | "BOOST_ACCEPTED" | "PRESENTATION_REQUEST" | "PRESENTATION_RECEIVED" | "CONSENT_FLOW_TRANSACTION";
8315
8275
  to: {
8316
8276
  type?: string | undefined;
@@ -8376,47 +8336,47 @@ export declare const LCNNotificationValidator: z.ZodObject<{
8376
8336
  } & {
8377
8337
  did: string;
8378
8338
  };
8379
- }, {
8380
8339
  message?: {
8381
8340
  title?: string | undefined;
8382
8341
  body?: string | undefined;
8383
8342
  } | undefined;
8343
+ sent?: string | undefined;
8384
8344
  data?: {
8385
8345
  vcUris?: string[] | undefined;
8386
8346
  vpUris?: string[] | undefined;
8387
8347
  transaction?: {
8348
+ date: string;
8349
+ id: string;
8350
+ action: "write" | "consent" | "update" | "sync" | "withdraw";
8388
8351
  expiresAt?: string | undefined;
8389
8352
  oneTime?: boolean | undefined;
8390
8353
  terms?: {
8391
- read?: {
8392
- anonymize?: boolean | undefined;
8393
- credentials?: {
8394
- categories?: Record<string, {
8354
+ read: {
8355
+ credentials: {
8356
+ categories: Record<string, {
8395
8357
  sharing?: boolean | undefined;
8396
8358
  shared?: string[] | undefined;
8397
8359
  shareAll?: boolean | undefined;
8398
8360
  shareUntil?: string | undefined;
8399
- }> | undefined;
8361
+ }>;
8400
8362
  sharing?: boolean | undefined;
8401
8363
  shareAll?: boolean | undefined;
8402
- } | undefined;
8403
- personal?: Record<string, string> | undefined;
8404
- } | undefined;
8405
- write?: {
8406
- credentials?: {
8407
- categories?: Record<string, boolean> | undefined;
8408
- } | undefined;
8409
- personal?: Record<string, boolean> | undefined;
8410
- } | undefined;
8364
+ };
8365
+ personal: Record<string, string>;
8366
+ anonymize?: boolean | undefined;
8367
+ };
8368
+ write: {
8369
+ credentials: {
8370
+ categories: Record<string, boolean>;
8371
+ };
8372
+ personal: Record<string, boolean>;
8373
+ };
8411
8374
  deniedWriters?: string[] | undefined;
8412
8375
  } | undefined;
8413
8376
  uris?: string[] | undefined;
8414
- date: string;
8415
- id: string;
8416
- action: "write" | "consent" | "update" | "sync" | "withdraw";
8417
8377
  } | undefined;
8418
8378
  } | undefined;
8419
- sent?: string | undefined;
8379
+ }, {
8420
8380
  type: "CONNECTION_REQUEST" | "CONNECTION_ACCEPTED" | "CREDENTIAL_RECEIVED" | "CREDENTIAL_ACCEPTED" | "BOOST_RECEIVED" | "BOOST_ACCEPTED" | "PRESENTATION_REQUEST" | "PRESENTATION_RECEIVED" | "CONSENT_FLOW_TRANSACTION";
8421
8381
  to: {
8422
8382
  type?: string | undefined;
@@ -8482,6 +8442,46 @@ export declare const LCNNotificationValidator: z.ZodObject<{
8482
8442
  } & {
8483
8443
  did: string;
8484
8444
  };
8445
+ message?: {
8446
+ title?: string | undefined;
8447
+ body?: string | undefined;
8448
+ } | undefined;
8449
+ sent?: string | undefined;
8450
+ data?: {
8451
+ vcUris?: string[] | undefined;
8452
+ vpUris?: string[] | undefined;
8453
+ transaction?: {
8454
+ date: string;
8455
+ id: string;
8456
+ action: "write" | "consent" | "update" | "sync" | "withdraw";
8457
+ expiresAt?: string | undefined;
8458
+ oneTime?: boolean | undefined;
8459
+ terms?: {
8460
+ read?: {
8461
+ anonymize?: boolean | undefined;
8462
+ credentials?: {
8463
+ categories?: Record<string, {
8464
+ sharing?: boolean | undefined;
8465
+ shared?: string[] | undefined;
8466
+ shareAll?: boolean | undefined;
8467
+ shareUntil?: string | undefined;
8468
+ }> | undefined;
8469
+ sharing?: boolean | undefined;
8470
+ shareAll?: boolean | undefined;
8471
+ } | undefined;
8472
+ personal?: Record<string, string> | undefined;
8473
+ } | undefined;
8474
+ write?: {
8475
+ credentials?: {
8476
+ categories?: Record<string, boolean> | undefined;
8477
+ } | undefined;
8478
+ personal?: Record<string, boolean> | undefined;
8479
+ } | undefined;
8480
+ deniedWriters?: string[] | undefined;
8481
+ } | undefined;
8482
+ uris?: string[] | undefined;
8483
+ } | undefined;
8484
+ } | undefined;
8485
8485
  }>;
8486
8486
  export type LCNNotification = z.infer<typeof LCNNotificationValidator>;
8487
8487
  export declare const AUTH_GRANT_AUDIENCE_DOMAIN_PREFIX = "auth-grant:";
@@ -8493,36 +8493,34 @@ export declare const AuthGrantValidator: z.ZodObject<{
8493
8493
  status: z.ZodEnum<["revoked", "active"]>;
8494
8494
  scope: z.ZodString;
8495
8495
  createdAt: z.ZodString;
8496
- expiresAt: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
8496
+ expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
8497
8497
  }, "strip", z.ZodTypeAny, {
8498
- description?: string | undefined;
8499
- expiresAt?: string | null | undefined;
8500
8498
  status: "revoked" | "active";
8501
8499
  id: string;
8502
8500
  name: string;
8503
8501
  challenge: string;
8504
8502
  createdAt: string;
8505
8503
  scope: string;
8506
- }, {
8507
8504
  description?: string | undefined;
8508
8505
  expiresAt?: string | null | undefined;
8506
+ }, {
8509
8507
  status: "revoked" | "active";
8510
8508
  id: string;
8511
8509
  name: string;
8512
8510
  challenge: string;
8513
8511
  createdAt: string;
8514
8512
  scope: string;
8513
+ description?: string | undefined;
8514
+ expiresAt?: string | null | undefined;
8515
8515
  }>;
8516
8516
  export type AuthGrantType = z.infer<typeof AuthGrantValidator>;
8517
8517
  export declare const FlatAuthGrantValidator: z.ZodObject<{
8518
8518
  id: z.ZodString;
8519
- }, "strip", z.ZodAny, {
8520
- [x: string]: any;
8521
- id: string;
8522
- }, {
8523
- [x: string]: any;
8524
- id: string;
8525
- }>;
8519
+ }, "strip", z.ZodAny, z.objectOutputType<{
8520
+ id: z.ZodString;
8521
+ }, z.ZodAny, "strip">, z.objectInputType<{
8522
+ id: z.ZodString;
8523
+ }, z.ZodAny, "strip">>;
8526
8524
  export type FlatAuthGrantType = z.infer<typeof FlatAuthGrantValidator>;
8527
8525
  export declare const AuthGrantStatusValidator: z.ZodEnum<["active", "revoked"]>;
8528
8526
  export type AuthGrantStatus = z.infer<typeof AuthGrantStatusValidator>;