@learncard/types 5.5.8 → 5.6.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
@@ -1,4 +1,42 @@
1
1
  import { z } from 'zod';
2
+ export declare const LCNProfileDisplayValidator: z.ZodObject<{
3
+ backgroundColor: z.ZodOptional<z.ZodString>;
4
+ backgroundImage: z.ZodOptional<z.ZodString>;
5
+ fadeBackgroundImage: z.ZodOptional<z.ZodBoolean>;
6
+ repeatBackgroundImage: z.ZodOptional<z.ZodBoolean>;
7
+ fontColor: z.ZodOptional<z.ZodString>;
8
+ accentColor: z.ZodOptional<z.ZodString>;
9
+ accentFontColor: z.ZodOptional<z.ZodString>;
10
+ idBackgroundImage: z.ZodOptional<z.ZodString>;
11
+ fadeIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
12
+ idBackgroundColor: z.ZodOptional<z.ZodString>;
13
+ repeatIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
14
+ }, "strip", z.ZodTypeAny, {
15
+ backgroundColor?: string | undefined;
16
+ backgroundImage?: string | undefined;
17
+ fadeBackgroundImage?: boolean | undefined;
18
+ repeatBackgroundImage?: boolean | undefined;
19
+ fontColor?: string | undefined;
20
+ accentColor?: string | undefined;
21
+ accentFontColor?: string | undefined;
22
+ idBackgroundImage?: string | undefined;
23
+ fadeIdBackgroundImage?: boolean | undefined;
24
+ idBackgroundColor?: string | undefined;
25
+ repeatIdBackgroundImage?: boolean | undefined;
26
+ }, {
27
+ backgroundColor?: string | undefined;
28
+ backgroundImage?: string | undefined;
29
+ fadeBackgroundImage?: boolean | undefined;
30
+ repeatBackgroundImage?: boolean | undefined;
31
+ fontColor?: string | undefined;
32
+ accentColor?: string | undefined;
33
+ accentFontColor?: string | undefined;
34
+ idBackgroundImage?: string | undefined;
35
+ fadeIdBackgroundImage?: boolean | undefined;
36
+ idBackgroundColor?: string | undefined;
37
+ repeatIdBackgroundImage?: boolean | undefined;
38
+ }>;
39
+ export type LCNProfileDisplay = z.infer<typeof LCNProfileDisplayValidator>;
2
40
  export declare const LCNProfileValidator: z.ZodObject<{
3
41
  profileId: z.ZodString;
4
42
  displayName: z.ZodDefault<z.ZodString>;
@@ -12,6 +50,43 @@ export declare const LCNProfileValidator: z.ZodObject<{
12
50
  isServiceProfile: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
13
51
  type: z.ZodOptional<z.ZodString>;
14
52
  notificationsWebhook: z.ZodOptional<z.ZodString>;
53
+ display: z.ZodOptional<z.ZodObject<{
54
+ backgroundColor: z.ZodOptional<z.ZodString>;
55
+ backgroundImage: z.ZodOptional<z.ZodString>;
56
+ fadeBackgroundImage: z.ZodOptional<z.ZodBoolean>;
57
+ repeatBackgroundImage: z.ZodOptional<z.ZodBoolean>;
58
+ fontColor: z.ZodOptional<z.ZodString>;
59
+ accentColor: z.ZodOptional<z.ZodString>;
60
+ accentFontColor: z.ZodOptional<z.ZodString>;
61
+ idBackgroundImage: z.ZodOptional<z.ZodString>;
62
+ fadeIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
63
+ idBackgroundColor: z.ZodOptional<z.ZodString>;
64
+ repeatIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
65
+ }, "strip", z.ZodTypeAny, {
66
+ backgroundColor?: string | undefined;
67
+ backgroundImage?: string | undefined;
68
+ fadeBackgroundImage?: boolean | undefined;
69
+ repeatBackgroundImage?: boolean | undefined;
70
+ fontColor?: string | undefined;
71
+ accentColor?: string | undefined;
72
+ accentFontColor?: string | undefined;
73
+ idBackgroundImage?: string | undefined;
74
+ fadeIdBackgroundImage?: boolean | undefined;
75
+ idBackgroundColor?: string | undefined;
76
+ repeatIdBackgroundImage?: boolean | undefined;
77
+ }, {
78
+ backgroundColor?: string | undefined;
79
+ backgroundImage?: string | undefined;
80
+ fadeBackgroundImage?: boolean | undefined;
81
+ repeatBackgroundImage?: boolean | undefined;
82
+ fontColor?: string | undefined;
83
+ accentColor?: string | undefined;
84
+ accentFontColor?: string | undefined;
85
+ idBackgroundImage?: string | undefined;
86
+ fadeIdBackgroundImage?: boolean | undefined;
87
+ idBackgroundColor?: string | undefined;
88
+ repeatIdBackgroundImage?: boolean | undefined;
89
+ }>>;
15
90
  }, "strip", z.ZodTypeAny, {
16
91
  type?: string | undefined;
17
92
  image?: string | undefined;
@@ -20,6 +95,19 @@ export declare const LCNProfileValidator: z.ZodObject<{
20
95
  websiteLink?: string | undefined;
21
96
  isServiceProfile?: boolean | undefined;
22
97
  notificationsWebhook?: string | undefined;
98
+ display?: {
99
+ backgroundColor?: string | undefined;
100
+ backgroundImage?: string | undefined;
101
+ fadeBackgroundImage?: boolean | undefined;
102
+ repeatBackgroundImage?: boolean | undefined;
103
+ fontColor?: string | undefined;
104
+ accentColor?: string | undefined;
105
+ accentFontColor?: string | undefined;
106
+ idBackgroundImage?: string | undefined;
107
+ fadeIdBackgroundImage?: boolean | undefined;
108
+ idBackgroundColor?: string | undefined;
109
+ repeatIdBackgroundImage?: boolean | undefined;
110
+ } | undefined;
23
111
  profileId: string;
24
112
  displayName: string;
25
113
  shortBio: string;
@@ -36,6 +124,19 @@ export declare const LCNProfileValidator: z.ZodObject<{
36
124
  websiteLink?: string | undefined;
37
125
  isServiceProfile?: boolean | undefined;
38
126
  notificationsWebhook?: string | undefined;
127
+ display?: {
128
+ backgroundColor?: string | undefined;
129
+ backgroundImage?: string | undefined;
130
+ fadeBackgroundImage?: boolean | undefined;
131
+ repeatBackgroundImage?: boolean | undefined;
132
+ fontColor?: string | undefined;
133
+ accentColor?: string | undefined;
134
+ accentFontColor?: string | undefined;
135
+ idBackgroundImage?: string | undefined;
136
+ fadeIdBackgroundImage?: boolean | undefined;
137
+ idBackgroundColor?: string | undefined;
138
+ repeatIdBackgroundImage?: boolean | undefined;
139
+ } | undefined;
39
140
  profileId: string;
40
141
  did: string;
41
142
  }>;
@@ -226,6 +327,43 @@ export declare const PaginatedLCNProfilesValidator: z.ZodObject<z.extendShape<{
226
327
  isServiceProfile: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
227
328
  type: z.ZodOptional<z.ZodString>;
228
329
  notificationsWebhook: z.ZodOptional<z.ZodString>;
330
+ display: z.ZodOptional<z.ZodObject<{
331
+ backgroundColor: z.ZodOptional<z.ZodString>;
332
+ backgroundImage: z.ZodOptional<z.ZodString>;
333
+ fadeBackgroundImage: z.ZodOptional<z.ZodBoolean>;
334
+ repeatBackgroundImage: z.ZodOptional<z.ZodBoolean>;
335
+ fontColor: z.ZodOptional<z.ZodString>;
336
+ accentColor: z.ZodOptional<z.ZodString>;
337
+ accentFontColor: z.ZodOptional<z.ZodString>;
338
+ idBackgroundImage: z.ZodOptional<z.ZodString>;
339
+ fadeIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
340
+ idBackgroundColor: z.ZodOptional<z.ZodString>;
341
+ repeatIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
342
+ }, "strip", z.ZodTypeAny, {
343
+ backgroundColor?: string | undefined;
344
+ backgroundImage?: string | undefined;
345
+ fadeBackgroundImage?: boolean | undefined;
346
+ repeatBackgroundImage?: boolean | undefined;
347
+ fontColor?: string | undefined;
348
+ accentColor?: string | undefined;
349
+ accentFontColor?: string | undefined;
350
+ idBackgroundImage?: string | undefined;
351
+ fadeIdBackgroundImage?: boolean | undefined;
352
+ idBackgroundColor?: string | undefined;
353
+ repeatIdBackgroundImage?: boolean | undefined;
354
+ }, {
355
+ backgroundColor?: string | undefined;
356
+ backgroundImage?: string | undefined;
357
+ fadeBackgroundImage?: boolean | undefined;
358
+ repeatBackgroundImage?: boolean | undefined;
359
+ fontColor?: string | undefined;
360
+ accentColor?: string | undefined;
361
+ accentFontColor?: string | undefined;
362
+ idBackgroundImage?: string | undefined;
363
+ fadeIdBackgroundImage?: boolean | undefined;
364
+ idBackgroundColor?: string | undefined;
365
+ repeatIdBackgroundImage?: boolean | undefined;
366
+ }>>;
229
367
  }, "strip", z.ZodTypeAny, {
230
368
  type?: string | undefined;
231
369
  image?: string | undefined;
@@ -234,6 +372,19 @@ export declare const PaginatedLCNProfilesValidator: z.ZodObject<z.extendShape<{
234
372
  websiteLink?: string | undefined;
235
373
  isServiceProfile?: boolean | undefined;
236
374
  notificationsWebhook?: string | undefined;
375
+ display?: {
376
+ backgroundColor?: string | undefined;
377
+ backgroundImage?: string | undefined;
378
+ fadeBackgroundImage?: boolean | undefined;
379
+ repeatBackgroundImage?: boolean | undefined;
380
+ fontColor?: string | undefined;
381
+ accentColor?: string | undefined;
382
+ accentFontColor?: string | undefined;
383
+ idBackgroundImage?: string | undefined;
384
+ fadeIdBackgroundImage?: boolean | undefined;
385
+ idBackgroundColor?: string | undefined;
386
+ repeatIdBackgroundImage?: boolean | undefined;
387
+ } | undefined;
237
388
  profileId: string;
238
389
  displayName: string;
239
390
  shortBio: string;
@@ -250,6 +401,19 @@ export declare const PaginatedLCNProfilesValidator: z.ZodObject<z.extendShape<{
250
401
  websiteLink?: string | undefined;
251
402
  isServiceProfile?: boolean | undefined;
252
403
  notificationsWebhook?: string | undefined;
404
+ display?: {
405
+ backgroundColor?: string | undefined;
406
+ backgroundImage?: string | undefined;
407
+ fadeBackgroundImage?: boolean | undefined;
408
+ repeatBackgroundImage?: boolean | undefined;
409
+ fontColor?: string | undefined;
410
+ accentColor?: string | undefined;
411
+ accentFontColor?: string | undefined;
412
+ idBackgroundImage?: string | undefined;
413
+ fadeIdBackgroundImage?: boolean | undefined;
414
+ idBackgroundColor?: string | undefined;
415
+ repeatIdBackgroundImage?: boolean | undefined;
416
+ } | undefined;
253
417
  profileId: string;
254
418
  did: string;
255
419
  }>, "many">;
@@ -264,6 +428,19 @@ export declare const PaginatedLCNProfilesValidator: z.ZodObject<z.extendShape<{
264
428
  websiteLink?: string | undefined;
265
429
  isServiceProfile?: boolean | undefined;
266
430
  notificationsWebhook?: string | undefined;
431
+ display?: {
432
+ backgroundColor?: string | undefined;
433
+ backgroundImage?: string | undefined;
434
+ fadeBackgroundImage?: boolean | undefined;
435
+ repeatBackgroundImage?: boolean | undefined;
436
+ fontColor?: string | undefined;
437
+ accentColor?: string | undefined;
438
+ accentFontColor?: string | undefined;
439
+ idBackgroundImage?: string | undefined;
440
+ fadeIdBackgroundImage?: boolean | undefined;
441
+ idBackgroundColor?: string | undefined;
442
+ repeatIdBackgroundImage?: boolean | undefined;
443
+ } | undefined;
267
444
  profileId: string;
268
445
  displayName: string;
269
446
  shortBio: string;
@@ -284,6 +461,19 @@ export declare const PaginatedLCNProfilesValidator: z.ZodObject<z.extendShape<{
284
461
  websiteLink?: string | undefined;
285
462
  isServiceProfile?: boolean | undefined;
286
463
  notificationsWebhook?: string | undefined;
464
+ display?: {
465
+ backgroundColor?: string | undefined;
466
+ backgroundImage?: string | undefined;
467
+ fadeBackgroundImage?: boolean | undefined;
468
+ repeatBackgroundImage?: boolean | undefined;
469
+ fontColor?: string | undefined;
470
+ accentColor?: string | undefined;
471
+ accentFontColor?: string | undefined;
472
+ idBackgroundImage?: string | undefined;
473
+ fadeIdBackgroundImage?: boolean | undefined;
474
+ idBackgroundColor?: string | undefined;
475
+ repeatIdBackgroundImage?: boolean | undefined;
476
+ } | undefined;
287
477
  profileId: string;
288
478
  did: string;
289
479
  }[];
@@ -291,6 +481,528 @@ export declare const PaginatedLCNProfilesValidator: z.ZodObject<z.extendShape<{
291
481
  export type PaginatedLCNProfiles = z.infer<typeof PaginatedLCNProfilesValidator>;
292
482
  export declare const LCNProfileConnectionStatusEnum: z.ZodEnum<["CONNECTED", "PENDING_REQUEST_SENT", "PENDING_REQUEST_RECEIVED", "NOT_CONNECTED"]>;
293
483
  export type LCNProfileConnectionStatusEnum = z.infer<typeof LCNProfileConnectionStatusEnum>;
484
+ export declare const LCNProfileManagerValidator: z.ZodObject<{
485
+ id: z.ZodString;
486
+ created: z.ZodString;
487
+ displayName: z.ZodOptional<z.ZodDefault<z.ZodString>>;
488
+ shortBio: z.ZodOptional<z.ZodDefault<z.ZodString>>;
489
+ bio: z.ZodOptional<z.ZodDefault<z.ZodString>>;
490
+ email: z.ZodOptional<z.ZodString>;
491
+ image: z.ZodOptional<z.ZodString>;
492
+ heroImage: z.ZodOptional<z.ZodString>;
493
+ }, "strip", z.ZodTypeAny, {
494
+ image?: string | undefined;
495
+ email?: string | undefined;
496
+ displayName?: string | undefined;
497
+ shortBio?: string | undefined;
498
+ bio?: string | undefined;
499
+ heroImage?: string | undefined;
500
+ id: string;
501
+ created: string;
502
+ }, {
503
+ image?: string | undefined;
504
+ email?: string | undefined;
505
+ displayName?: string | undefined;
506
+ shortBio?: string | undefined;
507
+ bio?: string | undefined;
508
+ heroImage?: string | undefined;
509
+ id: string;
510
+ created: string;
511
+ }>;
512
+ export type LCNProfileManager = z.infer<typeof LCNProfileManagerValidator>;
513
+ export declare const PaginatedLCNProfileManagersValidator: z.ZodObject<z.extendShape<{
514
+ cursor: z.ZodOptional<z.ZodString>;
515
+ hasMore: z.ZodBoolean;
516
+ }, {
517
+ records: z.ZodArray<z.ZodObject<z.extendShape<{
518
+ id: z.ZodString;
519
+ created: z.ZodString;
520
+ displayName: z.ZodOptional<z.ZodDefault<z.ZodString>>;
521
+ shortBio: z.ZodOptional<z.ZodDefault<z.ZodString>>;
522
+ bio: z.ZodOptional<z.ZodDefault<z.ZodString>>;
523
+ email: z.ZodOptional<z.ZodString>;
524
+ image: z.ZodOptional<z.ZodString>;
525
+ heroImage: z.ZodOptional<z.ZodString>;
526
+ }, {
527
+ did: z.ZodString;
528
+ }>, "strip", z.ZodTypeAny, {
529
+ image?: string | undefined;
530
+ email?: string | undefined;
531
+ displayName?: string | undefined;
532
+ shortBio?: string | undefined;
533
+ bio?: string | undefined;
534
+ heroImage?: string | undefined;
535
+ id: string;
536
+ created: string;
537
+ did: string;
538
+ }, {
539
+ image?: string | undefined;
540
+ email?: string | undefined;
541
+ displayName?: string | undefined;
542
+ shortBio?: string | undefined;
543
+ bio?: string | undefined;
544
+ heroImage?: string | undefined;
545
+ id: string;
546
+ created: string;
547
+ did: string;
548
+ }>, "many">;
549
+ }>, "strip", z.ZodTypeAny, {
550
+ cursor?: string | undefined;
551
+ hasMore: boolean;
552
+ records: {
553
+ image?: string | undefined;
554
+ email?: string | undefined;
555
+ displayName?: string | undefined;
556
+ shortBio?: string | undefined;
557
+ bio?: string | undefined;
558
+ heroImage?: string | undefined;
559
+ id: string;
560
+ created: string;
561
+ did: string;
562
+ }[];
563
+ }, {
564
+ cursor?: string | undefined;
565
+ hasMore: boolean;
566
+ records: {
567
+ image?: string | undefined;
568
+ email?: string | undefined;
569
+ displayName?: string | undefined;
570
+ shortBio?: string | undefined;
571
+ bio?: string | undefined;
572
+ heroImage?: string | undefined;
573
+ id: string;
574
+ created: string;
575
+ did: string;
576
+ }[];
577
+ }>;
578
+ export type PaginatedLCNProfileManagers = z.infer<typeof PaginatedLCNProfileManagersValidator>;
579
+ export declare const LCNProfileManagerQueryValidator: z.ZodObject<{
580
+ id: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodObject<{
581
+ $in: z.ZodArray<z.ZodString, "many">;
582
+ }, "strip", z.ZodTypeAny, {
583
+ $in: string[];
584
+ }, {
585
+ $in: string[];
586
+ }>]>, z.ZodObject<{
587
+ $regex: z.ZodUnion<[z.ZodType<RegExp, z.ZodTypeDef, RegExp>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, RegExp, string>]>;
588
+ }, "strip", z.ZodTypeAny, {
589
+ $regex: RegExp;
590
+ }, {
591
+ $regex: string | RegExp;
592
+ }>]>>;
593
+ displayName: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodObject<{
594
+ $in: z.ZodArray<z.ZodString, "many">;
595
+ }, "strip", z.ZodTypeAny, {
596
+ $in: string[];
597
+ }, {
598
+ $in: string[];
599
+ }>]>, z.ZodObject<{
600
+ $regex: z.ZodUnion<[z.ZodType<RegExp, z.ZodTypeDef, RegExp>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, RegExp, string>]>;
601
+ }, "strip", z.ZodTypeAny, {
602
+ $regex: RegExp;
603
+ }, {
604
+ $regex: string | RegExp;
605
+ }>]>>;
606
+ shortBio: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodObject<{
607
+ $in: z.ZodArray<z.ZodString, "many">;
608
+ }, "strip", z.ZodTypeAny, {
609
+ $in: string[];
610
+ }, {
611
+ $in: string[];
612
+ }>]>, z.ZodObject<{
613
+ $regex: z.ZodUnion<[z.ZodType<RegExp, z.ZodTypeDef, RegExp>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, RegExp, string>]>;
614
+ }, "strip", z.ZodTypeAny, {
615
+ $regex: RegExp;
616
+ }, {
617
+ $regex: string | RegExp;
618
+ }>]>>;
619
+ bio: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodObject<{
620
+ $in: z.ZodArray<z.ZodString, "many">;
621
+ }, "strip", z.ZodTypeAny, {
622
+ $in: string[];
623
+ }, {
624
+ $in: string[];
625
+ }>]>, z.ZodObject<{
626
+ $regex: z.ZodUnion<[z.ZodType<RegExp, z.ZodTypeDef, RegExp>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, RegExp, string>]>;
627
+ }, "strip", z.ZodTypeAny, {
628
+ $regex: RegExp;
629
+ }, {
630
+ $regex: string | RegExp;
631
+ }>]>>;
632
+ email: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodObject<{
633
+ $in: z.ZodArray<z.ZodString, "many">;
634
+ }, "strip", z.ZodTypeAny, {
635
+ $in: string[];
636
+ }, {
637
+ $in: string[];
638
+ }>]>, z.ZodObject<{
639
+ $regex: z.ZodUnion<[z.ZodType<RegExp, z.ZodTypeDef, RegExp>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, RegExp, string>]>;
640
+ }, "strip", z.ZodTypeAny, {
641
+ $regex: RegExp;
642
+ }, {
643
+ $regex: string | RegExp;
644
+ }>]>>;
645
+ }, "strip", z.ZodTypeAny, {
646
+ id?: string | {
647
+ $in: string[];
648
+ } | {
649
+ $regex: RegExp;
650
+ } | undefined;
651
+ email?: string | {
652
+ $in: string[];
653
+ } | {
654
+ $regex: RegExp;
655
+ } | undefined;
656
+ displayName?: string | {
657
+ $in: string[];
658
+ } | {
659
+ $regex: RegExp;
660
+ } | undefined;
661
+ shortBio?: string | {
662
+ $in: string[];
663
+ } | {
664
+ $regex: RegExp;
665
+ } | undefined;
666
+ bio?: string | {
667
+ $in: string[];
668
+ } | {
669
+ $regex: RegExp;
670
+ } | undefined;
671
+ }, {
672
+ id?: string | {
673
+ $in: string[];
674
+ } | {
675
+ $regex: string | RegExp;
676
+ } | undefined;
677
+ email?: string | {
678
+ $in: string[];
679
+ } | {
680
+ $regex: string | RegExp;
681
+ } | undefined;
682
+ displayName?: string | {
683
+ $in: string[];
684
+ } | {
685
+ $regex: string | RegExp;
686
+ } | undefined;
687
+ shortBio?: string | {
688
+ $in: string[];
689
+ } | {
690
+ $regex: string | RegExp;
691
+ } | undefined;
692
+ bio?: string | {
693
+ $in: string[];
694
+ } | {
695
+ $regex: string | RegExp;
696
+ } | undefined;
697
+ }>;
698
+ export type LCNProfileManagerQuery = z.infer<typeof LCNProfileManagerQueryValidator>;
699
+ export declare const PaginatedLCNProfilesAndManagersValidator: z.ZodObject<z.extendShape<{
700
+ cursor: z.ZodOptional<z.ZodString>;
701
+ hasMore: z.ZodBoolean;
702
+ }, {
703
+ records: z.ZodArray<z.ZodObject<{
704
+ profile: z.ZodObject<{
705
+ profileId: z.ZodString;
706
+ displayName: z.ZodDefault<z.ZodString>;
707
+ shortBio: z.ZodDefault<z.ZodString>;
708
+ bio: z.ZodDefault<z.ZodString>;
709
+ did: z.ZodString;
710
+ email: z.ZodOptional<z.ZodString>;
711
+ image: z.ZodOptional<z.ZodString>;
712
+ heroImage: z.ZodOptional<z.ZodString>;
713
+ websiteLink: z.ZodOptional<z.ZodString>;
714
+ isServiceProfile: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
715
+ type: z.ZodOptional<z.ZodString>;
716
+ notificationsWebhook: z.ZodOptional<z.ZodString>;
717
+ display: z.ZodOptional<z.ZodObject<{
718
+ backgroundColor: z.ZodOptional<z.ZodString>;
719
+ backgroundImage: z.ZodOptional<z.ZodString>;
720
+ fadeBackgroundImage: z.ZodOptional<z.ZodBoolean>;
721
+ repeatBackgroundImage: z.ZodOptional<z.ZodBoolean>;
722
+ fontColor: z.ZodOptional<z.ZodString>;
723
+ accentColor: z.ZodOptional<z.ZodString>;
724
+ accentFontColor: z.ZodOptional<z.ZodString>;
725
+ idBackgroundImage: z.ZodOptional<z.ZodString>;
726
+ fadeIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
727
+ idBackgroundColor: z.ZodOptional<z.ZodString>;
728
+ repeatIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
729
+ }, "strip", z.ZodTypeAny, {
730
+ backgroundColor?: string | undefined;
731
+ backgroundImage?: string | undefined;
732
+ fadeBackgroundImage?: boolean | undefined;
733
+ repeatBackgroundImage?: boolean | undefined;
734
+ fontColor?: string | undefined;
735
+ accentColor?: string | undefined;
736
+ accentFontColor?: string | undefined;
737
+ idBackgroundImage?: string | undefined;
738
+ fadeIdBackgroundImage?: boolean | undefined;
739
+ idBackgroundColor?: string | undefined;
740
+ repeatIdBackgroundImage?: boolean | undefined;
741
+ }, {
742
+ backgroundColor?: string | undefined;
743
+ backgroundImage?: string | undefined;
744
+ fadeBackgroundImage?: boolean | undefined;
745
+ repeatBackgroundImage?: boolean | undefined;
746
+ fontColor?: string | undefined;
747
+ accentColor?: string | undefined;
748
+ accentFontColor?: string | undefined;
749
+ idBackgroundImage?: string | undefined;
750
+ fadeIdBackgroundImage?: boolean | undefined;
751
+ idBackgroundColor?: string | undefined;
752
+ repeatIdBackgroundImage?: boolean | undefined;
753
+ }>>;
754
+ }, "strip", z.ZodTypeAny, {
755
+ type?: string | undefined;
756
+ image?: string | undefined;
757
+ email?: string | undefined;
758
+ heroImage?: string | undefined;
759
+ websiteLink?: string | undefined;
760
+ isServiceProfile?: boolean | undefined;
761
+ notificationsWebhook?: string | undefined;
762
+ display?: {
763
+ backgroundColor?: string | undefined;
764
+ backgroundImage?: string | undefined;
765
+ fadeBackgroundImage?: boolean | undefined;
766
+ repeatBackgroundImage?: boolean | undefined;
767
+ fontColor?: string | undefined;
768
+ accentColor?: string | undefined;
769
+ accentFontColor?: string | undefined;
770
+ idBackgroundImage?: string | undefined;
771
+ fadeIdBackgroundImage?: boolean | undefined;
772
+ idBackgroundColor?: string | undefined;
773
+ repeatIdBackgroundImage?: boolean | undefined;
774
+ } | undefined;
775
+ profileId: string;
776
+ displayName: string;
777
+ shortBio: string;
778
+ bio: string;
779
+ did: string;
780
+ }, {
781
+ type?: string | undefined;
782
+ image?: string | undefined;
783
+ email?: string | undefined;
784
+ displayName?: string | undefined;
785
+ shortBio?: string | undefined;
786
+ bio?: string | undefined;
787
+ heroImage?: string | undefined;
788
+ websiteLink?: string | undefined;
789
+ isServiceProfile?: boolean | undefined;
790
+ notificationsWebhook?: string | undefined;
791
+ display?: {
792
+ backgroundColor?: string | undefined;
793
+ backgroundImage?: string | undefined;
794
+ fadeBackgroundImage?: boolean | undefined;
795
+ repeatBackgroundImage?: boolean | undefined;
796
+ fontColor?: string | undefined;
797
+ accentColor?: string | undefined;
798
+ accentFontColor?: string | undefined;
799
+ idBackgroundImage?: string | undefined;
800
+ fadeIdBackgroundImage?: boolean | undefined;
801
+ idBackgroundColor?: string | undefined;
802
+ repeatIdBackgroundImage?: boolean | undefined;
803
+ } | undefined;
804
+ profileId: string;
805
+ did: string;
806
+ }>;
807
+ manager: z.ZodOptional<z.ZodObject<z.extendShape<{
808
+ id: z.ZodString;
809
+ created: z.ZodString;
810
+ displayName: z.ZodOptional<z.ZodDefault<z.ZodString>>;
811
+ shortBio: z.ZodOptional<z.ZodDefault<z.ZodString>>;
812
+ bio: z.ZodOptional<z.ZodDefault<z.ZodString>>;
813
+ email: z.ZodOptional<z.ZodString>;
814
+ image: z.ZodOptional<z.ZodString>;
815
+ heroImage: z.ZodOptional<z.ZodString>;
816
+ }, {
817
+ did: z.ZodString;
818
+ }>, "strip", z.ZodTypeAny, {
819
+ image?: string | undefined;
820
+ email?: string | undefined;
821
+ displayName?: string | undefined;
822
+ shortBio?: string | undefined;
823
+ bio?: string | undefined;
824
+ heroImage?: string | undefined;
825
+ id: string;
826
+ created: string;
827
+ did: string;
828
+ }, {
829
+ image?: string | undefined;
830
+ email?: string | undefined;
831
+ displayName?: string | undefined;
832
+ shortBio?: string | undefined;
833
+ bio?: string | undefined;
834
+ heroImage?: string | undefined;
835
+ id: string;
836
+ created: string;
837
+ did: string;
838
+ }>>;
839
+ }, "strip", z.ZodTypeAny, {
840
+ manager?: {
841
+ image?: string | undefined;
842
+ email?: string | undefined;
843
+ displayName?: string | undefined;
844
+ shortBio?: string | undefined;
845
+ bio?: string | undefined;
846
+ heroImage?: string | undefined;
847
+ id: string;
848
+ created: string;
849
+ did: string;
850
+ } | undefined;
851
+ profile: {
852
+ type?: string | undefined;
853
+ image?: string | undefined;
854
+ email?: string | undefined;
855
+ heroImage?: string | undefined;
856
+ websiteLink?: string | undefined;
857
+ isServiceProfile?: boolean | undefined;
858
+ notificationsWebhook?: string | undefined;
859
+ display?: {
860
+ backgroundColor?: string | undefined;
861
+ backgroundImage?: string | undefined;
862
+ fadeBackgroundImage?: boolean | undefined;
863
+ repeatBackgroundImage?: boolean | undefined;
864
+ fontColor?: string | undefined;
865
+ accentColor?: string | undefined;
866
+ accentFontColor?: string | undefined;
867
+ idBackgroundImage?: string | undefined;
868
+ fadeIdBackgroundImage?: boolean | undefined;
869
+ idBackgroundColor?: string | undefined;
870
+ repeatIdBackgroundImage?: boolean | undefined;
871
+ } | undefined;
872
+ profileId: string;
873
+ displayName: string;
874
+ shortBio: string;
875
+ bio: string;
876
+ did: string;
877
+ };
878
+ }, {
879
+ manager?: {
880
+ image?: string | undefined;
881
+ email?: string | undefined;
882
+ displayName?: string | undefined;
883
+ shortBio?: string | undefined;
884
+ bio?: string | undefined;
885
+ heroImage?: string | undefined;
886
+ id: string;
887
+ created: string;
888
+ did: string;
889
+ } | undefined;
890
+ profile: {
891
+ type?: string | undefined;
892
+ image?: string | undefined;
893
+ email?: string | undefined;
894
+ displayName?: string | undefined;
895
+ shortBio?: string | undefined;
896
+ bio?: string | undefined;
897
+ heroImage?: string | undefined;
898
+ websiteLink?: string | undefined;
899
+ isServiceProfile?: boolean | undefined;
900
+ notificationsWebhook?: string | undefined;
901
+ display?: {
902
+ backgroundColor?: string | undefined;
903
+ backgroundImage?: string | undefined;
904
+ fadeBackgroundImage?: boolean | undefined;
905
+ repeatBackgroundImage?: boolean | undefined;
906
+ fontColor?: string | undefined;
907
+ accentColor?: string | undefined;
908
+ accentFontColor?: string | undefined;
909
+ idBackgroundImage?: string | undefined;
910
+ fadeIdBackgroundImage?: boolean | undefined;
911
+ idBackgroundColor?: string | undefined;
912
+ repeatIdBackgroundImage?: boolean | undefined;
913
+ } | undefined;
914
+ profileId: string;
915
+ did: string;
916
+ };
917
+ }>, "many">;
918
+ }>, "strip", z.ZodTypeAny, {
919
+ cursor?: string | undefined;
920
+ hasMore: boolean;
921
+ records: {
922
+ manager?: {
923
+ image?: string | undefined;
924
+ email?: string | undefined;
925
+ displayName?: string | undefined;
926
+ shortBio?: string | undefined;
927
+ bio?: string | undefined;
928
+ heroImage?: string | undefined;
929
+ id: string;
930
+ created: string;
931
+ did: string;
932
+ } | undefined;
933
+ profile: {
934
+ type?: string | undefined;
935
+ image?: string | undefined;
936
+ email?: string | undefined;
937
+ heroImage?: string | undefined;
938
+ websiteLink?: string | undefined;
939
+ isServiceProfile?: boolean | undefined;
940
+ notificationsWebhook?: string | undefined;
941
+ display?: {
942
+ backgroundColor?: string | undefined;
943
+ backgroundImage?: string | undefined;
944
+ fadeBackgroundImage?: boolean | undefined;
945
+ repeatBackgroundImage?: boolean | undefined;
946
+ fontColor?: string | undefined;
947
+ accentColor?: string | undefined;
948
+ accentFontColor?: string | undefined;
949
+ idBackgroundImage?: string | undefined;
950
+ fadeIdBackgroundImage?: boolean | undefined;
951
+ idBackgroundColor?: string | undefined;
952
+ repeatIdBackgroundImage?: boolean | undefined;
953
+ } | undefined;
954
+ profileId: string;
955
+ displayName: string;
956
+ shortBio: string;
957
+ bio: string;
958
+ did: string;
959
+ };
960
+ }[];
961
+ }, {
962
+ cursor?: string | undefined;
963
+ hasMore: boolean;
964
+ records: {
965
+ manager?: {
966
+ image?: string | undefined;
967
+ email?: string | undefined;
968
+ displayName?: string | undefined;
969
+ shortBio?: string | undefined;
970
+ bio?: string | undefined;
971
+ heroImage?: string | undefined;
972
+ id: string;
973
+ created: string;
974
+ did: string;
975
+ } | undefined;
976
+ profile: {
977
+ type?: string | undefined;
978
+ image?: string | undefined;
979
+ email?: string | undefined;
980
+ displayName?: string | undefined;
981
+ shortBio?: string | undefined;
982
+ bio?: string | undefined;
983
+ heroImage?: string | undefined;
984
+ websiteLink?: string | undefined;
985
+ isServiceProfile?: boolean | undefined;
986
+ notificationsWebhook?: string | undefined;
987
+ display?: {
988
+ backgroundColor?: string | undefined;
989
+ backgroundImage?: string | undefined;
990
+ fadeBackgroundImage?: boolean | undefined;
991
+ repeatBackgroundImage?: boolean | undefined;
992
+ fontColor?: string | undefined;
993
+ accentColor?: string | undefined;
994
+ accentFontColor?: string | undefined;
995
+ idBackgroundImage?: string | undefined;
996
+ fadeIdBackgroundImage?: boolean | undefined;
997
+ idBackgroundColor?: string | undefined;
998
+ repeatIdBackgroundImage?: boolean | undefined;
999
+ } | undefined;
1000
+ profileId: string;
1001
+ did: string;
1002
+ };
1003
+ }[];
1004
+ }>;
1005
+ export type PaginatedLCNProfilesAndManagers = z.infer<typeof PaginatedLCNProfilesAndManagersValidator>;
294
1006
  export declare const SentCredentialInfoValidator: z.ZodObject<{
295
1007
  uri: z.ZodString;
296
1008
  to: z.ZodString;
@@ -322,8 +1034,10 @@ export declare const BoostPermissionsValidator: z.ZodObject<{
322
1034
  canEditChildren: z.ZodString;
323
1035
  canRevokeChildren: z.ZodString;
324
1036
  canManageChildrenPermissions: z.ZodString;
1037
+ canManageChildrenProfiles: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
325
1038
  canViewAnalytics: z.ZodBoolean;
326
1039
  }, "strip", z.ZodTypeAny, {
1040
+ canManageChildrenProfiles?: boolean | undefined;
327
1041
  role: string;
328
1042
  canEdit: boolean;
329
1043
  canIssue: boolean;
@@ -336,6 +1050,7 @@ export declare const BoostPermissionsValidator: z.ZodObject<{
336
1050
  canManageChildrenPermissions: string;
337
1051
  canViewAnalytics: boolean;
338
1052
  }, {
1053
+ canManageChildrenProfiles?: boolean | undefined;
339
1054
  role: string;
340
1055
  canEdit: boolean;
341
1056
  canIssue: boolean;
@@ -370,8 +1085,10 @@ export declare const BoostValidator: z.ZodObject<{
370
1085
  canEditChildren: z.ZodString;
371
1086
  canRevokeChildren: z.ZodString;
372
1087
  canManageChildrenPermissions: z.ZodString;
1088
+ canManageChildrenProfiles: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
373
1089
  canViewAnalytics: z.ZodBoolean;
374
1090
  }, "strip", z.ZodTypeAny, {
1091
+ canManageChildrenProfiles?: boolean | undefined;
375
1092
  role: string;
376
1093
  canEdit: boolean;
377
1094
  canIssue: boolean;
@@ -384,6 +1101,7 @@ export declare const BoostValidator: z.ZodObject<{
384
1101
  canManageChildrenPermissions: string;
385
1102
  canViewAnalytics: boolean;
386
1103
  }, {
1104
+ canManageChildrenProfiles?: boolean | undefined;
387
1105
  role: string;
388
1106
  canEdit: boolean;
389
1107
  canIssue: boolean;
@@ -404,6 +1122,7 @@ export declare const BoostValidator: z.ZodObject<{
404
1122
  autoConnectRecipients?: boolean | undefined;
405
1123
  meta?: Record<string, any> | undefined;
406
1124
  claimPermissions?: {
1125
+ canManageChildrenProfiles?: boolean | undefined;
407
1126
  role: string;
408
1127
  canEdit: boolean;
409
1128
  canIssue: boolean;
@@ -425,6 +1144,7 @@ export declare const BoostValidator: z.ZodObject<{
425
1144
  autoConnectRecipients?: boolean | undefined;
426
1145
  meta?: Record<string, any> | undefined;
427
1146
  claimPermissions?: {
1147
+ canManageChildrenProfiles?: boolean | undefined;
428
1148
  role: string;
429
1149
  canEdit: boolean;
430
1150
  canIssue: boolean;
@@ -599,8 +1319,10 @@ export declare const PaginatedBoostsValidator: z.ZodObject<z.extendShape<{
599
1319
  canEditChildren: z.ZodString;
600
1320
  canRevokeChildren: z.ZodString;
601
1321
  canManageChildrenPermissions: z.ZodString;
1322
+ canManageChildrenProfiles: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
602
1323
  canViewAnalytics: z.ZodBoolean;
603
1324
  }, "strip", z.ZodTypeAny, {
1325
+ canManageChildrenProfiles?: boolean | undefined;
604
1326
  role: string;
605
1327
  canEdit: boolean;
606
1328
  canIssue: boolean;
@@ -613,6 +1335,7 @@ export declare const PaginatedBoostsValidator: z.ZodObject<z.extendShape<{
613
1335
  canManageChildrenPermissions: string;
614
1336
  canViewAnalytics: boolean;
615
1337
  }, {
1338
+ canManageChildrenProfiles?: boolean | undefined;
616
1339
  role: string;
617
1340
  canEdit: boolean;
618
1341
  canIssue: boolean;
@@ -633,6 +1356,7 @@ export declare const PaginatedBoostsValidator: z.ZodObject<z.extendShape<{
633
1356
  autoConnectRecipients?: boolean | undefined;
634
1357
  meta?: Record<string, any> | undefined;
635
1358
  claimPermissions?: {
1359
+ canManageChildrenProfiles?: boolean | undefined;
636
1360
  role: string;
637
1361
  canEdit: boolean;
638
1362
  canIssue: boolean;
@@ -654,6 +1378,7 @@ export declare const PaginatedBoostsValidator: z.ZodObject<z.extendShape<{
654
1378
  autoConnectRecipients?: boolean | undefined;
655
1379
  meta?: Record<string, any> | undefined;
656
1380
  claimPermissions?: {
1381
+ canManageChildrenProfiles?: boolean | undefined;
657
1382
  role: string;
658
1383
  canEdit: boolean;
659
1384
  canIssue: boolean;
@@ -679,6 +1404,7 @@ export declare const PaginatedBoostsValidator: z.ZodObject<z.extendShape<{
679
1404
  autoConnectRecipients?: boolean | undefined;
680
1405
  meta?: Record<string, any> | undefined;
681
1406
  claimPermissions?: {
1407
+ canManageChildrenProfiles?: boolean | undefined;
682
1408
  role: string;
683
1409
  canEdit: boolean;
684
1410
  canIssue: boolean;
@@ -704,6 +1430,7 @@ export declare const PaginatedBoostsValidator: z.ZodObject<z.extendShape<{
704
1430
  autoConnectRecipients?: boolean | undefined;
705
1431
  meta?: Record<string, any> | undefined;
706
1432
  claimPermissions?: {
1433
+ canManageChildrenProfiles?: boolean | undefined;
707
1434
  role: string;
708
1435
  canEdit: boolean;
709
1436
  canIssue: boolean;
@@ -734,6 +1461,43 @@ export declare const BoostRecipientValidator: z.ZodObject<{
734
1461
  isServiceProfile: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
735
1462
  type: z.ZodOptional<z.ZodString>;
736
1463
  notificationsWebhook: z.ZodOptional<z.ZodString>;
1464
+ display: z.ZodOptional<z.ZodObject<{
1465
+ backgroundColor: z.ZodOptional<z.ZodString>;
1466
+ backgroundImage: z.ZodOptional<z.ZodString>;
1467
+ fadeBackgroundImage: z.ZodOptional<z.ZodBoolean>;
1468
+ repeatBackgroundImage: z.ZodOptional<z.ZodBoolean>;
1469
+ fontColor: z.ZodOptional<z.ZodString>;
1470
+ accentColor: z.ZodOptional<z.ZodString>;
1471
+ accentFontColor: z.ZodOptional<z.ZodString>;
1472
+ idBackgroundImage: z.ZodOptional<z.ZodString>;
1473
+ fadeIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
1474
+ idBackgroundColor: z.ZodOptional<z.ZodString>;
1475
+ repeatIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
1476
+ }, "strip", z.ZodTypeAny, {
1477
+ backgroundColor?: string | undefined;
1478
+ backgroundImage?: string | undefined;
1479
+ fadeBackgroundImage?: boolean | undefined;
1480
+ repeatBackgroundImage?: boolean | undefined;
1481
+ fontColor?: string | undefined;
1482
+ accentColor?: string | undefined;
1483
+ accentFontColor?: string | undefined;
1484
+ idBackgroundImage?: string | undefined;
1485
+ fadeIdBackgroundImage?: boolean | undefined;
1486
+ idBackgroundColor?: string | undefined;
1487
+ repeatIdBackgroundImage?: boolean | undefined;
1488
+ }, {
1489
+ backgroundColor?: string | undefined;
1490
+ backgroundImage?: string | undefined;
1491
+ fadeBackgroundImage?: boolean | undefined;
1492
+ repeatBackgroundImage?: boolean | undefined;
1493
+ fontColor?: string | undefined;
1494
+ accentColor?: string | undefined;
1495
+ accentFontColor?: string | undefined;
1496
+ idBackgroundImage?: string | undefined;
1497
+ fadeIdBackgroundImage?: boolean | undefined;
1498
+ idBackgroundColor?: string | undefined;
1499
+ repeatIdBackgroundImage?: boolean | undefined;
1500
+ }>>;
737
1501
  }, "strip", z.ZodTypeAny, {
738
1502
  type?: string | undefined;
739
1503
  image?: string | undefined;
@@ -742,6 +1506,19 @@ export declare const BoostRecipientValidator: z.ZodObject<{
742
1506
  websiteLink?: string | undefined;
743
1507
  isServiceProfile?: boolean | undefined;
744
1508
  notificationsWebhook?: string | undefined;
1509
+ display?: {
1510
+ backgroundColor?: string | undefined;
1511
+ backgroundImage?: string | undefined;
1512
+ fadeBackgroundImage?: boolean | undefined;
1513
+ repeatBackgroundImage?: boolean | undefined;
1514
+ fontColor?: string | undefined;
1515
+ accentColor?: string | undefined;
1516
+ accentFontColor?: string | undefined;
1517
+ idBackgroundImage?: string | undefined;
1518
+ fadeIdBackgroundImage?: boolean | undefined;
1519
+ idBackgroundColor?: string | undefined;
1520
+ repeatIdBackgroundImage?: boolean | undefined;
1521
+ } | undefined;
745
1522
  profileId: string;
746
1523
  displayName: string;
747
1524
  shortBio: string;
@@ -758,13 +1535,28 @@ export declare const BoostRecipientValidator: z.ZodObject<{
758
1535
  websiteLink?: string | undefined;
759
1536
  isServiceProfile?: boolean | undefined;
760
1537
  notificationsWebhook?: string | undefined;
1538
+ display?: {
1539
+ backgroundColor?: string | undefined;
1540
+ backgroundImage?: string | undefined;
1541
+ fadeBackgroundImage?: boolean | undefined;
1542
+ repeatBackgroundImage?: boolean | undefined;
1543
+ fontColor?: string | undefined;
1544
+ accentColor?: string | undefined;
1545
+ accentFontColor?: string | undefined;
1546
+ idBackgroundImage?: string | undefined;
1547
+ fadeIdBackgroundImage?: boolean | undefined;
1548
+ idBackgroundColor?: string | undefined;
1549
+ repeatIdBackgroundImage?: boolean | undefined;
1550
+ } | undefined;
761
1551
  profileId: string;
762
1552
  did: string;
763
1553
  }>;
764
1554
  from: z.ZodString;
765
1555
  received: z.ZodOptional<z.ZodString>;
1556
+ uri: z.ZodOptional<z.ZodString>;
766
1557
  }, "strip", z.ZodTypeAny, {
767
1558
  received?: string | undefined;
1559
+ uri?: string | undefined;
768
1560
  to: {
769
1561
  type?: string | undefined;
770
1562
  image?: string | undefined;
@@ -773,6 +1565,19 @@ export declare const BoostRecipientValidator: z.ZodObject<{
773
1565
  websiteLink?: string | undefined;
774
1566
  isServiceProfile?: boolean | undefined;
775
1567
  notificationsWebhook?: string | undefined;
1568
+ display?: {
1569
+ backgroundColor?: string | undefined;
1570
+ backgroundImage?: string | undefined;
1571
+ fadeBackgroundImage?: boolean | undefined;
1572
+ repeatBackgroundImage?: boolean | undefined;
1573
+ fontColor?: string | undefined;
1574
+ accentColor?: string | undefined;
1575
+ accentFontColor?: string | undefined;
1576
+ idBackgroundImage?: string | undefined;
1577
+ fadeIdBackgroundImage?: boolean | undefined;
1578
+ idBackgroundColor?: string | undefined;
1579
+ repeatIdBackgroundImage?: boolean | undefined;
1580
+ } | undefined;
776
1581
  profileId: string;
777
1582
  displayName: string;
778
1583
  shortBio: string;
@@ -782,6 +1587,7 @@ export declare const BoostRecipientValidator: z.ZodObject<{
782
1587
  from: string;
783
1588
  }, {
784
1589
  received?: string | undefined;
1590
+ uri?: string | undefined;
785
1591
  to: {
786
1592
  type?: string | undefined;
787
1593
  image?: string | undefined;
@@ -793,6 +1599,19 @@ export declare const BoostRecipientValidator: z.ZodObject<{
793
1599
  websiteLink?: string | undefined;
794
1600
  isServiceProfile?: boolean | undefined;
795
1601
  notificationsWebhook?: string | undefined;
1602
+ display?: {
1603
+ backgroundColor?: string | undefined;
1604
+ backgroundImage?: string | undefined;
1605
+ fadeBackgroundImage?: boolean | undefined;
1606
+ repeatBackgroundImage?: boolean | undefined;
1607
+ fontColor?: string | undefined;
1608
+ accentColor?: string | undefined;
1609
+ accentFontColor?: string | undefined;
1610
+ idBackgroundImage?: string | undefined;
1611
+ fadeIdBackgroundImage?: boolean | undefined;
1612
+ idBackgroundColor?: string | undefined;
1613
+ repeatIdBackgroundImage?: boolean | undefined;
1614
+ } | undefined;
796
1615
  profileId: string;
797
1616
  did: string;
798
1617
  };
@@ -817,6 +1636,43 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.extendShap
817
1636
  isServiceProfile: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
818
1637
  type: z.ZodOptional<z.ZodString>;
819
1638
  notificationsWebhook: z.ZodOptional<z.ZodString>;
1639
+ display: z.ZodOptional<z.ZodObject<{
1640
+ backgroundColor: z.ZodOptional<z.ZodString>;
1641
+ backgroundImage: z.ZodOptional<z.ZodString>;
1642
+ fadeBackgroundImage: z.ZodOptional<z.ZodBoolean>;
1643
+ repeatBackgroundImage: z.ZodOptional<z.ZodBoolean>;
1644
+ fontColor: z.ZodOptional<z.ZodString>;
1645
+ accentColor: z.ZodOptional<z.ZodString>;
1646
+ accentFontColor: z.ZodOptional<z.ZodString>;
1647
+ idBackgroundImage: z.ZodOptional<z.ZodString>;
1648
+ fadeIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
1649
+ idBackgroundColor: z.ZodOptional<z.ZodString>;
1650
+ repeatIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
1651
+ }, "strip", z.ZodTypeAny, {
1652
+ backgroundColor?: string | undefined;
1653
+ backgroundImage?: string | undefined;
1654
+ fadeBackgroundImage?: boolean | undefined;
1655
+ repeatBackgroundImage?: boolean | undefined;
1656
+ fontColor?: string | undefined;
1657
+ accentColor?: string | undefined;
1658
+ accentFontColor?: string | undefined;
1659
+ idBackgroundImage?: string | undefined;
1660
+ fadeIdBackgroundImage?: boolean | undefined;
1661
+ idBackgroundColor?: string | undefined;
1662
+ repeatIdBackgroundImage?: boolean | undefined;
1663
+ }, {
1664
+ backgroundColor?: string | undefined;
1665
+ backgroundImage?: string | undefined;
1666
+ fadeBackgroundImage?: boolean | undefined;
1667
+ repeatBackgroundImage?: boolean | undefined;
1668
+ fontColor?: string | undefined;
1669
+ accentColor?: string | undefined;
1670
+ accentFontColor?: string | undefined;
1671
+ idBackgroundImage?: string | undefined;
1672
+ fadeIdBackgroundImage?: boolean | undefined;
1673
+ idBackgroundColor?: string | undefined;
1674
+ repeatIdBackgroundImage?: boolean | undefined;
1675
+ }>>;
820
1676
  }, "strip", z.ZodTypeAny, {
821
1677
  type?: string | undefined;
822
1678
  image?: string | undefined;
@@ -825,6 +1681,19 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.extendShap
825
1681
  websiteLink?: string | undefined;
826
1682
  isServiceProfile?: boolean | undefined;
827
1683
  notificationsWebhook?: string | undefined;
1684
+ display?: {
1685
+ backgroundColor?: string | undefined;
1686
+ backgroundImage?: string | undefined;
1687
+ fadeBackgroundImage?: boolean | undefined;
1688
+ repeatBackgroundImage?: boolean | undefined;
1689
+ fontColor?: string | undefined;
1690
+ accentColor?: string | undefined;
1691
+ accentFontColor?: string | undefined;
1692
+ idBackgroundImage?: string | undefined;
1693
+ fadeIdBackgroundImage?: boolean | undefined;
1694
+ idBackgroundColor?: string | undefined;
1695
+ repeatIdBackgroundImage?: boolean | undefined;
1696
+ } | undefined;
828
1697
  profileId: string;
829
1698
  displayName: string;
830
1699
  shortBio: string;
@@ -841,13 +1710,28 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.extendShap
841
1710
  websiteLink?: string | undefined;
842
1711
  isServiceProfile?: boolean | undefined;
843
1712
  notificationsWebhook?: string | undefined;
1713
+ display?: {
1714
+ backgroundColor?: string | undefined;
1715
+ backgroundImage?: string | undefined;
1716
+ fadeBackgroundImage?: boolean | undefined;
1717
+ repeatBackgroundImage?: boolean | undefined;
1718
+ fontColor?: string | undefined;
1719
+ accentColor?: string | undefined;
1720
+ accentFontColor?: string | undefined;
1721
+ idBackgroundImage?: string | undefined;
1722
+ fadeIdBackgroundImage?: boolean | undefined;
1723
+ idBackgroundColor?: string | undefined;
1724
+ repeatIdBackgroundImage?: boolean | undefined;
1725
+ } | undefined;
844
1726
  profileId: string;
845
1727
  did: string;
846
1728
  }>;
847
1729
  from: z.ZodString;
848
1730
  received: z.ZodOptional<z.ZodString>;
1731
+ uri: z.ZodOptional<z.ZodString>;
849
1732
  }, "strip", z.ZodTypeAny, {
850
1733
  received?: string | undefined;
1734
+ uri?: string | undefined;
851
1735
  to: {
852
1736
  type?: string | undefined;
853
1737
  image?: string | undefined;
@@ -856,6 +1740,19 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.extendShap
856
1740
  websiteLink?: string | undefined;
857
1741
  isServiceProfile?: boolean | undefined;
858
1742
  notificationsWebhook?: string | undefined;
1743
+ display?: {
1744
+ backgroundColor?: string | undefined;
1745
+ backgroundImage?: string | undefined;
1746
+ fadeBackgroundImage?: boolean | undefined;
1747
+ repeatBackgroundImage?: boolean | undefined;
1748
+ fontColor?: string | undefined;
1749
+ accentColor?: string | undefined;
1750
+ accentFontColor?: string | undefined;
1751
+ idBackgroundImage?: string | undefined;
1752
+ fadeIdBackgroundImage?: boolean | undefined;
1753
+ idBackgroundColor?: string | undefined;
1754
+ repeatIdBackgroundImage?: boolean | undefined;
1755
+ } | undefined;
859
1756
  profileId: string;
860
1757
  displayName: string;
861
1758
  shortBio: string;
@@ -865,6 +1762,7 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.extendShap
865
1762
  from: string;
866
1763
  }, {
867
1764
  received?: string | undefined;
1765
+ uri?: string | undefined;
868
1766
  to: {
869
1767
  type?: string | undefined;
870
1768
  image?: string | undefined;
@@ -876,6 +1774,19 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.extendShap
876
1774
  websiteLink?: string | undefined;
877
1775
  isServiceProfile?: boolean | undefined;
878
1776
  notificationsWebhook?: string | undefined;
1777
+ display?: {
1778
+ backgroundColor?: string | undefined;
1779
+ backgroundImage?: string | undefined;
1780
+ fadeBackgroundImage?: boolean | undefined;
1781
+ repeatBackgroundImage?: boolean | undefined;
1782
+ fontColor?: string | undefined;
1783
+ accentColor?: string | undefined;
1784
+ accentFontColor?: string | undefined;
1785
+ idBackgroundImage?: string | undefined;
1786
+ fadeIdBackgroundImage?: boolean | undefined;
1787
+ idBackgroundColor?: string | undefined;
1788
+ repeatIdBackgroundImage?: boolean | undefined;
1789
+ } | undefined;
879
1790
  profileId: string;
880
1791
  did: string;
881
1792
  };
@@ -886,6 +1797,7 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.extendShap
886
1797
  hasMore: boolean;
887
1798
  records: {
888
1799
  received?: string | undefined;
1800
+ uri?: string | undefined;
889
1801
  to: {
890
1802
  type?: string | undefined;
891
1803
  image?: string | undefined;
@@ -894,6 +1806,19 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.extendShap
894
1806
  websiteLink?: string | undefined;
895
1807
  isServiceProfile?: boolean | undefined;
896
1808
  notificationsWebhook?: string | undefined;
1809
+ display?: {
1810
+ backgroundColor?: string | undefined;
1811
+ backgroundImage?: string | undefined;
1812
+ fadeBackgroundImage?: boolean | undefined;
1813
+ repeatBackgroundImage?: boolean | undefined;
1814
+ fontColor?: string | undefined;
1815
+ accentColor?: string | undefined;
1816
+ accentFontColor?: string | undefined;
1817
+ idBackgroundImage?: string | undefined;
1818
+ fadeIdBackgroundImage?: boolean | undefined;
1819
+ idBackgroundColor?: string | undefined;
1820
+ repeatIdBackgroundImage?: boolean | undefined;
1821
+ } | undefined;
897
1822
  profileId: string;
898
1823
  displayName: string;
899
1824
  shortBio: string;
@@ -907,6 +1832,7 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.extendShap
907
1832
  hasMore: boolean;
908
1833
  records: {
909
1834
  received?: string | undefined;
1835
+ uri?: string | undefined;
910
1836
  to: {
911
1837
  type?: string | undefined;
912
1838
  image?: string | undefined;
@@ -918,6 +1844,19 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.extendShap
918
1844
  websiteLink?: string | undefined;
919
1845
  isServiceProfile?: boolean | undefined;
920
1846
  notificationsWebhook?: string | undefined;
1847
+ display?: {
1848
+ backgroundColor?: string | undefined;
1849
+ backgroundImage?: string | undefined;
1850
+ fadeBackgroundImage?: boolean | undefined;
1851
+ repeatBackgroundImage?: boolean | undefined;
1852
+ fontColor?: string | undefined;
1853
+ accentColor?: string | undefined;
1854
+ accentFontColor?: string | undefined;
1855
+ idBackgroundImage?: string | undefined;
1856
+ fadeIdBackgroundImage?: boolean | undefined;
1857
+ idBackgroundColor?: string | undefined;
1858
+ repeatIdBackgroundImage?: boolean | undefined;
1859
+ } | undefined;
921
1860
  profileId: string;
922
1861
  did: string;
923
1862
  };
@@ -1286,6 +2225,43 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
1286
2225
  isServiceProfile: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1287
2226
  type: z.ZodOptional<z.ZodString>;
1288
2227
  notificationsWebhook: z.ZodOptional<z.ZodString>;
2228
+ display: z.ZodOptional<z.ZodObject<{
2229
+ backgroundColor: z.ZodOptional<z.ZodString>;
2230
+ backgroundImage: z.ZodOptional<z.ZodString>;
2231
+ fadeBackgroundImage: z.ZodOptional<z.ZodBoolean>;
2232
+ repeatBackgroundImage: z.ZodOptional<z.ZodBoolean>;
2233
+ fontColor: z.ZodOptional<z.ZodString>;
2234
+ accentColor: z.ZodOptional<z.ZodString>;
2235
+ accentFontColor: z.ZodOptional<z.ZodString>;
2236
+ idBackgroundImage: z.ZodOptional<z.ZodString>;
2237
+ fadeIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
2238
+ idBackgroundColor: z.ZodOptional<z.ZodString>;
2239
+ repeatIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
2240
+ }, "strip", z.ZodTypeAny, {
2241
+ backgroundColor?: string | undefined;
2242
+ backgroundImage?: string | undefined;
2243
+ fadeBackgroundImage?: boolean | undefined;
2244
+ repeatBackgroundImage?: boolean | undefined;
2245
+ fontColor?: string | undefined;
2246
+ accentColor?: string | undefined;
2247
+ accentFontColor?: string | undefined;
2248
+ idBackgroundImage?: string | undefined;
2249
+ fadeIdBackgroundImage?: boolean | undefined;
2250
+ idBackgroundColor?: string | undefined;
2251
+ repeatIdBackgroundImage?: boolean | undefined;
2252
+ }, {
2253
+ backgroundColor?: string | undefined;
2254
+ backgroundImage?: string | undefined;
2255
+ fadeBackgroundImage?: boolean | undefined;
2256
+ repeatBackgroundImage?: boolean | undefined;
2257
+ fontColor?: string | undefined;
2258
+ accentColor?: string | undefined;
2259
+ accentFontColor?: string | undefined;
2260
+ idBackgroundImage?: string | undefined;
2261
+ fadeIdBackgroundImage?: boolean | undefined;
2262
+ idBackgroundColor?: string | undefined;
2263
+ repeatIdBackgroundImage?: boolean | undefined;
2264
+ }>>;
1289
2265
  }, "strip", z.ZodTypeAny, {
1290
2266
  type?: string | undefined;
1291
2267
  image?: string | undefined;
@@ -1294,6 +2270,19 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
1294
2270
  websiteLink?: string | undefined;
1295
2271
  isServiceProfile?: boolean | undefined;
1296
2272
  notificationsWebhook?: string | undefined;
2273
+ display?: {
2274
+ backgroundColor?: string | undefined;
2275
+ backgroundImage?: string | undefined;
2276
+ fadeBackgroundImage?: boolean | undefined;
2277
+ repeatBackgroundImage?: boolean | undefined;
2278
+ fontColor?: string | undefined;
2279
+ accentColor?: string | undefined;
2280
+ accentFontColor?: string | undefined;
2281
+ idBackgroundImage?: string | undefined;
2282
+ fadeIdBackgroundImage?: boolean | undefined;
2283
+ idBackgroundColor?: string | undefined;
2284
+ repeatIdBackgroundImage?: boolean | undefined;
2285
+ } | undefined;
1297
2286
  profileId: string;
1298
2287
  displayName: string;
1299
2288
  shortBio: string;
@@ -1310,6 +2299,19 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
1310
2299
  websiteLink?: string | undefined;
1311
2300
  isServiceProfile?: boolean | undefined;
1312
2301
  notificationsWebhook?: string | undefined;
2302
+ display?: {
2303
+ backgroundColor?: string | undefined;
2304
+ backgroundImage?: string | undefined;
2305
+ fadeBackgroundImage?: boolean | undefined;
2306
+ repeatBackgroundImage?: boolean | undefined;
2307
+ fontColor?: string | undefined;
2308
+ accentColor?: string | undefined;
2309
+ accentFontColor?: string | undefined;
2310
+ idBackgroundImage?: string | undefined;
2311
+ fadeIdBackgroundImage?: boolean | undefined;
2312
+ idBackgroundColor?: string | undefined;
2313
+ repeatIdBackgroundImage?: boolean | undefined;
2314
+ } | undefined;
1313
2315
  profileId: string;
1314
2316
  did: string;
1315
2317
  }>;
@@ -1362,6 +2364,19 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
1362
2364
  websiteLink?: string | undefined;
1363
2365
  isServiceProfile?: boolean | undefined;
1364
2366
  notificationsWebhook?: string | undefined;
2367
+ display?: {
2368
+ backgroundColor?: string | undefined;
2369
+ backgroundImage?: string | undefined;
2370
+ fadeBackgroundImage?: boolean | undefined;
2371
+ repeatBackgroundImage?: boolean | undefined;
2372
+ fontColor?: string | undefined;
2373
+ accentColor?: string | undefined;
2374
+ accentFontColor?: string | undefined;
2375
+ idBackgroundImage?: string | undefined;
2376
+ fadeIdBackgroundImage?: boolean | undefined;
2377
+ idBackgroundColor?: string | undefined;
2378
+ repeatIdBackgroundImage?: boolean | undefined;
2379
+ } | undefined;
1365
2380
  profileId: string;
1366
2381
  displayName: string;
1367
2382
  shortBio: string;
@@ -1412,6 +2427,19 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
1412
2427
  websiteLink?: string | undefined;
1413
2428
  isServiceProfile?: boolean | undefined;
1414
2429
  notificationsWebhook?: string | undefined;
2430
+ display?: {
2431
+ backgroundColor?: string | undefined;
2432
+ backgroundImage?: string | undefined;
2433
+ fadeBackgroundImage?: boolean | undefined;
2434
+ repeatBackgroundImage?: boolean | undefined;
2435
+ fontColor?: string | undefined;
2436
+ accentColor?: string | undefined;
2437
+ accentFontColor?: string | undefined;
2438
+ idBackgroundImage?: string | undefined;
2439
+ fadeIdBackgroundImage?: boolean | undefined;
2440
+ idBackgroundColor?: string | undefined;
2441
+ repeatIdBackgroundImage?: boolean | undefined;
2442
+ } | undefined;
1415
2443
  profileId: string;
1416
2444
  did: string;
1417
2445
  };
@@ -1574,6 +2602,43 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
1574
2602
  isServiceProfile: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1575
2603
  type: z.ZodOptional<z.ZodString>;
1576
2604
  notificationsWebhook: z.ZodOptional<z.ZodString>;
2605
+ display: z.ZodOptional<z.ZodObject<{
2606
+ backgroundColor: z.ZodOptional<z.ZodString>;
2607
+ backgroundImage: z.ZodOptional<z.ZodString>;
2608
+ fadeBackgroundImage: z.ZodOptional<z.ZodBoolean>;
2609
+ repeatBackgroundImage: z.ZodOptional<z.ZodBoolean>;
2610
+ fontColor: z.ZodOptional<z.ZodString>;
2611
+ accentColor: z.ZodOptional<z.ZodString>;
2612
+ accentFontColor: z.ZodOptional<z.ZodString>;
2613
+ idBackgroundImage: z.ZodOptional<z.ZodString>;
2614
+ fadeIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
2615
+ idBackgroundColor: z.ZodOptional<z.ZodString>;
2616
+ repeatIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
2617
+ }, "strip", z.ZodTypeAny, {
2618
+ backgroundColor?: string | undefined;
2619
+ backgroundImage?: string | undefined;
2620
+ fadeBackgroundImage?: boolean | undefined;
2621
+ repeatBackgroundImage?: boolean | undefined;
2622
+ fontColor?: string | undefined;
2623
+ accentColor?: string | undefined;
2624
+ accentFontColor?: string | undefined;
2625
+ idBackgroundImage?: string | undefined;
2626
+ fadeIdBackgroundImage?: boolean | undefined;
2627
+ idBackgroundColor?: string | undefined;
2628
+ repeatIdBackgroundImage?: boolean | undefined;
2629
+ }, {
2630
+ backgroundColor?: string | undefined;
2631
+ backgroundImage?: string | undefined;
2632
+ fadeBackgroundImage?: boolean | undefined;
2633
+ repeatBackgroundImage?: boolean | undefined;
2634
+ fontColor?: string | undefined;
2635
+ accentColor?: string | undefined;
2636
+ accentFontColor?: string | undefined;
2637
+ idBackgroundImage?: string | undefined;
2638
+ fadeIdBackgroundImage?: boolean | undefined;
2639
+ idBackgroundColor?: string | undefined;
2640
+ repeatIdBackgroundImage?: boolean | undefined;
2641
+ }>>;
1577
2642
  }, "strip", z.ZodTypeAny, {
1578
2643
  type?: string | undefined;
1579
2644
  image?: string | undefined;
@@ -1582,6 +2647,19 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
1582
2647
  websiteLink?: string | undefined;
1583
2648
  isServiceProfile?: boolean | undefined;
1584
2649
  notificationsWebhook?: string | undefined;
2650
+ display?: {
2651
+ backgroundColor?: string | undefined;
2652
+ backgroundImage?: string | undefined;
2653
+ fadeBackgroundImage?: boolean | undefined;
2654
+ repeatBackgroundImage?: boolean | undefined;
2655
+ fontColor?: string | undefined;
2656
+ accentColor?: string | undefined;
2657
+ accentFontColor?: string | undefined;
2658
+ idBackgroundImage?: string | undefined;
2659
+ fadeIdBackgroundImage?: boolean | undefined;
2660
+ idBackgroundColor?: string | undefined;
2661
+ repeatIdBackgroundImage?: boolean | undefined;
2662
+ } | undefined;
1585
2663
  profileId: string;
1586
2664
  displayName: string;
1587
2665
  shortBio: string;
@@ -1598,6 +2676,19 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
1598
2676
  websiteLink?: string | undefined;
1599
2677
  isServiceProfile?: boolean | undefined;
1600
2678
  notificationsWebhook?: string | undefined;
2679
+ display?: {
2680
+ backgroundColor?: string | undefined;
2681
+ backgroundImage?: string | undefined;
2682
+ fadeBackgroundImage?: boolean | undefined;
2683
+ repeatBackgroundImage?: boolean | undefined;
2684
+ fontColor?: string | undefined;
2685
+ accentColor?: string | undefined;
2686
+ accentFontColor?: string | undefined;
2687
+ idBackgroundImage?: string | undefined;
2688
+ fadeIdBackgroundImage?: boolean | undefined;
2689
+ idBackgroundColor?: string | undefined;
2690
+ repeatIdBackgroundImage?: boolean | undefined;
2691
+ } | undefined;
1601
2692
  profileId: string;
1602
2693
  did: string;
1603
2694
  }>;
@@ -2267,6 +3358,43 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
2267
3358
  isServiceProfile: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2268
3359
  type: z.ZodOptional<z.ZodString>;
2269
3360
  notificationsWebhook: z.ZodOptional<z.ZodString>;
3361
+ display: z.ZodOptional<z.ZodObject<{
3362
+ backgroundColor: z.ZodOptional<z.ZodString>;
3363
+ backgroundImage: z.ZodOptional<z.ZodString>;
3364
+ fadeBackgroundImage: z.ZodOptional<z.ZodBoolean>;
3365
+ repeatBackgroundImage: z.ZodOptional<z.ZodBoolean>;
3366
+ fontColor: z.ZodOptional<z.ZodString>;
3367
+ accentColor: z.ZodOptional<z.ZodString>;
3368
+ accentFontColor: z.ZodOptional<z.ZodString>;
3369
+ idBackgroundImage: z.ZodOptional<z.ZodString>;
3370
+ fadeIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
3371
+ idBackgroundColor: z.ZodOptional<z.ZodString>;
3372
+ repeatIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
3373
+ }, "strip", z.ZodTypeAny, {
3374
+ backgroundColor?: string | undefined;
3375
+ backgroundImage?: string | undefined;
3376
+ fadeBackgroundImage?: boolean | undefined;
3377
+ repeatBackgroundImage?: boolean | undefined;
3378
+ fontColor?: string | undefined;
3379
+ accentColor?: string | undefined;
3380
+ accentFontColor?: string | undefined;
3381
+ idBackgroundImage?: string | undefined;
3382
+ fadeIdBackgroundImage?: boolean | undefined;
3383
+ idBackgroundColor?: string | undefined;
3384
+ repeatIdBackgroundImage?: boolean | undefined;
3385
+ }, {
3386
+ backgroundColor?: string | undefined;
3387
+ backgroundImage?: string | undefined;
3388
+ fadeBackgroundImage?: boolean | undefined;
3389
+ repeatBackgroundImage?: boolean | undefined;
3390
+ fontColor?: string | undefined;
3391
+ accentColor?: string | undefined;
3392
+ accentFontColor?: string | undefined;
3393
+ idBackgroundImage?: string | undefined;
3394
+ fadeIdBackgroundImage?: boolean | undefined;
3395
+ idBackgroundColor?: string | undefined;
3396
+ repeatIdBackgroundImage?: boolean | undefined;
3397
+ }>>;
2270
3398
  }, "strip", z.ZodTypeAny, {
2271
3399
  type?: string | undefined;
2272
3400
  image?: string | undefined;
@@ -2275,6 +3403,19 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
2275
3403
  websiteLink?: string | undefined;
2276
3404
  isServiceProfile?: boolean | undefined;
2277
3405
  notificationsWebhook?: string | undefined;
3406
+ display?: {
3407
+ backgroundColor?: string | undefined;
3408
+ backgroundImage?: string | undefined;
3409
+ fadeBackgroundImage?: boolean | undefined;
3410
+ repeatBackgroundImage?: boolean | undefined;
3411
+ fontColor?: string | undefined;
3412
+ accentColor?: string | undefined;
3413
+ accentFontColor?: string | undefined;
3414
+ idBackgroundImage?: string | undefined;
3415
+ fadeIdBackgroundImage?: boolean | undefined;
3416
+ idBackgroundColor?: string | undefined;
3417
+ repeatIdBackgroundImage?: boolean | undefined;
3418
+ } | undefined;
2278
3419
  profileId: string;
2279
3420
  displayName: string;
2280
3421
  shortBio: string;
@@ -2291,6 +3432,19 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
2291
3432
  websiteLink?: string | undefined;
2292
3433
  isServiceProfile?: boolean | undefined;
2293
3434
  notificationsWebhook?: string | undefined;
3435
+ display?: {
3436
+ backgroundColor?: string | undefined;
3437
+ backgroundImage?: string | undefined;
3438
+ fadeBackgroundImage?: boolean | undefined;
3439
+ repeatBackgroundImage?: boolean | undefined;
3440
+ fontColor?: string | undefined;
3441
+ accentColor?: string | undefined;
3442
+ accentFontColor?: string | undefined;
3443
+ idBackgroundImage?: string | undefined;
3444
+ fadeIdBackgroundImage?: boolean | undefined;
3445
+ idBackgroundColor?: string | undefined;
3446
+ repeatIdBackgroundImage?: boolean | undefined;
3447
+ } | undefined;
2294
3448
  profileId: string;
2295
3449
  did: string;
2296
3450
  }>;
@@ -2343,6 +3497,19 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
2343
3497
  websiteLink?: string | undefined;
2344
3498
  isServiceProfile?: boolean | undefined;
2345
3499
  notificationsWebhook?: string | undefined;
3500
+ display?: {
3501
+ backgroundColor?: string | undefined;
3502
+ backgroundImage?: string | undefined;
3503
+ fadeBackgroundImage?: boolean | undefined;
3504
+ repeatBackgroundImage?: boolean | undefined;
3505
+ fontColor?: string | undefined;
3506
+ accentColor?: string | undefined;
3507
+ accentFontColor?: string | undefined;
3508
+ idBackgroundImage?: string | undefined;
3509
+ fadeIdBackgroundImage?: boolean | undefined;
3510
+ idBackgroundColor?: string | undefined;
3511
+ repeatIdBackgroundImage?: boolean | undefined;
3512
+ } | undefined;
2346
3513
  profileId: string;
2347
3514
  displayName: string;
2348
3515
  shortBio: string;
@@ -2393,6 +3560,19 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
2393
3560
  websiteLink?: string | undefined;
2394
3561
  isServiceProfile?: boolean | undefined;
2395
3562
  notificationsWebhook?: string | undefined;
3563
+ display?: {
3564
+ backgroundColor?: string | undefined;
3565
+ backgroundImage?: string | undefined;
3566
+ fadeBackgroundImage?: boolean | undefined;
3567
+ repeatBackgroundImage?: boolean | undefined;
3568
+ fontColor?: string | undefined;
3569
+ accentColor?: string | undefined;
3570
+ accentFontColor?: string | undefined;
3571
+ idBackgroundImage?: string | undefined;
3572
+ fadeIdBackgroundImage?: boolean | undefined;
3573
+ idBackgroundColor?: string | undefined;
3574
+ repeatIdBackgroundImage?: boolean | undefined;
3575
+ } | undefined;
2396
3576
  profileId: string;
2397
3577
  did: string;
2398
3578
  };
@@ -2412,6 +3592,43 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
2412
3592
  isServiceProfile: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2413
3593
  type: z.ZodOptional<z.ZodString>;
2414
3594
  notificationsWebhook: z.ZodOptional<z.ZodString>;
3595
+ display: z.ZodOptional<z.ZodObject<{
3596
+ backgroundColor: z.ZodOptional<z.ZodString>;
3597
+ backgroundImage: z.ZodOptional<z.ZodString>;
3598
+ fadeBackgroundImage: z.ZodOptional<z.ZodBoolean>;
3599
+ repeatBackgroundImage: z.ZodOptional<z.ZodBoolean>;
3600
+ fontColor: z.ZodOptional<z.ZodString>;
3601
+ accentColor: z.ZodOptional<z.ZodString>;
3602
+ accentFontColor: z.ZodOptional<z.ZodString>;
3603
+ idBackgroundImage: z.ZodOptional<z.ZodString>;
3604
+ fadeIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
3605
+ idBackgroundColor: z.ZodOptional<z.ZodString>;
3606
+ repeatIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
3607
+ }, "strip", z.ZodTypeAny, {
3608
+ backgroundColor?: string | undefined;
3609
+ backgroundImage?: string | undefined;
3610
+ fadeBackgroundImage?: boolean | undefined;
3611
+ repeatBackgroundImage?: boolean | undefined;
3612
+ fontColor?: string | undefined;
3613
+ accentColor?: string | undefined;
3614
+ accentFontColor?: string | undefined;
3615
+ idBackgroundImage?: string | undefined;
3616
+ fadeIdBackgroundImage?: boolean | undefined;
3617
+ idBackgroundColor?: string | undefined;
3618
+ repeatIdBackgroundImage?: boolean | undefined;
3619
+ }, {
3620
+ backgroundColor?: string | undefined;
3621
+ backgroundImage?: string | undefined;
3622
+ fadeBackgroundImage?: boolean | undefined;
3623
+ repeatBackgroundImage?: boolean | undefined;
3624
+ fontColor?: string | undefined;
3625
+ accentColor?: string | undefined;
3626
+ accentFontColor?: string | undefined;
3627
+ idBackgroundImage?: string | undefined;
3628
+ fadeIdBackgroundImage?: boolean | undefined;
3629
+ idBackgroundColor?: string | undefined;
3630
+ repeatIdBackgroundImage?: boolean | undefined;
3631
+ }>>;
2415
3632
  }, "strip", z.ZodTypeAny, {
2416
3633
  type?: string | undefined;
2417
3634
  image?: string | undefined;
@@ -2420,6 +3637,19 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
2420
3637
  websiteLink?: string | undefined;
2421
3638
  isServiceProfile?: boolean | undefined;
2422
3639
  notificationsWebhook?: string | undefined;
3640
+ display?: {
3641
+ backgroundColor?: string | undefined;
3642
+ backgroundImage?: string | undefined;
3643
+ fadeBackgroundImage?: boolean | undefined;
3644
+ repeatBackgroundImage?: boolean | undefined;
3645
+ fontColor?: string | undefined;
3646
+ accentColor?: string | undefined;
3647
+ accentFontColor?: string | undefined;
3648
+ idBackgroundImage?: string | undefined;
3649
+ fadeIdBackgroundImage?: boolean | undefined;
3650
+ idBackgroundColor?: string | undefined;
3651
+ repeatIdBackgroundImage?: boolean | undefined;
3652
+ } | undefined;
2423
3653
  profileId: string;
2424
3654
  displayName: string;
2425
3655
  shortBio: string;
@@ -2436,6 +3666,19 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
2436
3666
  websiteLink?: string | undefined;
2437
3667
  isServiceProfile?: boolean | undefined;
2438
3668
  notificationsWebhook?: string | undefined;
3669
+ display?: {
3670
+ backgroundColor?: string | undefined;
3671
+ backgroundImage?: string | undefined;
3672
+ fadeBackgroundImage?: boolean | undefined;
3673
+ repeatBackgroundImage?: boolean | undefined;
3674
+ fontColor?: string | undefined;
3675
+ accentColor?: string | undefined;
3676
+ accentFontColor?: string | undefined;
3677
+ idBackgroundImage?: string | undefined;
3678
+ fadeIdBackgroundImage?: boolean | undefined;
3679
+ idBackgroundColor?: string | undefined;
3680
+ repeatIdBackgroundImage?: boolean | undefined;
3681
+ } | undefined;
2439
3682
  profileId: string;
2440
3683
  did: string;
2441
3684
  }>;
@@ -2485,6 +3728,19 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
2485
3728
  websiteLink?: string | undefined;
2486
3729
  isServiceProfile?: boolean | undefined;
2487
3730
  notificationsWebhook?: string | undefined;
3731
+ display?: {
3732
+ backgroundColor?: string | undefined;
3733
+ backgroundImage?: string | undefined;
3734
+ fadeBackgroundImage?: boolean | undefined;
3735
+ repeatBackgroundImage?: boolean | undefined;
3736
+ fontColor?: string | undefined;
3737
+ accentColor?: string | undefined;
3738
+ accentFontColor?: string | undefined;
3739
+ idBackgroundImage?: string | undefined;
3740
+ fadeIdBackgroundImage?: boolean | undefined;
3741
+ idBackgroundColor?: string | undefined;
3742
+ repeatIdBackgroundImage?: boolean | undefined;
3743
+ } | undefined;
2488
3744
  profileId: string;
2489
3745
  displayName: string;
2490
3746
  shortBio: string;
@@ -2523,6 +3779,19 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
2523
3779
  websiteLink?: string | undefined;
2524
3780
  isServiceProfile?: boolean | undefined;
2525
3781
  notificationsWebhook?: string | undefined;
3782
+ display?: {
3783
+ backgroundColor?: string | undefined;
3784
+ backgroundImage?: string | undefined;
3785
+ fadeBackgroundImage?: boolean | undefined;
3786
+ repeatBackgroundImage?: boolean | undefined;
3787
+ fontColor?: string | undefined;
3788
+ accentColor?: string | undefined;
3789
+ accentFontColor?: string | undefined;
3790
+ idBackgroundImage?: string | undefined;
3791
+ fadeIdBackgroundImage?: boolean | undefined;
3792
+ idBackgroundColor?: string | undefined;
3793
+ repeatIdBackgroundImage?: boolean | undefined;
3794
+ } | undefined;
2526
3795
  profileId: string;
2527
3796
  displayName: string;
2528
3797
  shortBio: string;
@@ -2577,6 +3846,19 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
2577
3846
  websiteLink?: string | undefined;
2578
3847
  isServiceProfile?: boolean | undefined;
2579
3848
  notificationsWebhook?: string | undefined;
3849
+ display?: {
3850
+ backgroundColor?: string | undefined;
3851
+ backgroundImage?: string | undefined;
3852
+ fadeBackgroundImage?: boolean | undefined;
3853
+ repeatBackgroundImage?: boolean | undefined;
3854
+ fontColor?: string | undefined;
3855
+ accentColor?: string | undefined;
3856
+ accentFontColor?: string | undefined;
3857
+ idBackgroundImage?: string | undefined;
3858
+ fadeIdBackgroundImage?: boolean | undefined;
3859
+ idBackgroundColor?: string | undefined;
3860
+ repeatIdBackgroundImage?: boolean | undefined;
3861
+ } | undefined;
2580
3862
  profileId: string;
2581
3863
  did: string;
2582
3864
  };
@@ -2615,6 +3897,19 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
2615
3897
  websiteLink?: string | undefined;
2616
3898
  isServiceProfile?: boolean | undefined;
2617
3899
  notificationsWebhook?: string | undefined;
3900
+ display?: {
3901
+ backgroundColor?: string | undefined;
3902
+ backgroundImage?: string | undefined;
3903
+ fadeBackgroundImage?: boolean | undefined;
3904
+ repeatBackgroundImage?: boolean | undefined;
3905
+ fontColor?: string | undefined;
3906
+ accentColor?: string | undefined;
3907
+ accentFontColor?: string | undefined;
3908
+ idBackgroundImage?: string | undefined;
3909
+ fadeIdBackgroundImage?: boolean | undefined;
3910
+ idBackgroundColor?: string | undefined;
3911
+ repeatIdBackgroundImage?: boolean | undefined;
3912
+ } | undefined;
2618
3913
  profileId: string;
2619
3914
  did: string;
2620
3915
  };
@@ -2667,6 +3962,19 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
2667
3962
  websiteLink?: string | undefined;
2668
3963
  isServiceProfile?: boolean | undefined;
2669
3964
  notificationsWebhook?: string | undefined;
3965
+ display?: {
3966
+ backgroundColor?: string | undefined;
3967
+ backgroundImage?: string | undefined;
3968
+ fadeBackgroundImage?: boolean | undefined;
3969
+ repeatBackgroundImage?: boolean | undefined;
3970
+ fontColor?: string | undefined;
3971
+ accentColor?: string | undefined;
3972
+ accentFontColor?: string | undefined;
3973
+ idBackgroundImage?: string | undefined;
3974
+ fadeIdBackgroundImage?: boolean | undefined;
3975
+ idBackgroundColor?: string | undefined;
3976
+ repeatIdBackgroundImage?: boolean | undefined;
3977
+ } | undefined;
2670
3978
  profileId: string;
2671
3979
  displayName: string;
2672
3980
  shortBio: string;
@@ -2705,6 +4013,19 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
2705
4013
  websiteLink?: string | undefined;
2706
4014
  isServiceProfile?: boolean | undefined;
2707
4015
  notificationsWebhook?: string | undefined;
4016
+ display?: {
4017
+ backgroundColor?: string | undefined;
4018
+ backgroundImage?: string | undefined;
4019
+ fadeBackgroundImage?: boolean | undefined;
4020
+ repeatBackgroundImage?: boolean | undefined;
4021
+ fontColor?: string | undefined;
4022
+ accentColor?: string | undefined;
4023
+ accentFontColor?: string | undefined;
4024
+ idBackgroundImage?: string | undefined;
4025
+ fadeIdBackgroundImage?: boolean | undefined;
4026
+ idBackgroundColor?: string | undefined;
4027
+ repeatIdBackgroundImage?: boolean | undefined;
4028
+ } | undefined;
2708
4029
  profileId: string;
2709
4030
  displayName: string;
2710
4031
  shortBio: string;
@@ -2763,6 +4084,19 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
2763
4084
  websiteLink?: string | undefined;
2764
4085
  isServiceProfile?: boolean | undefined;
2765
4086
  notificationsWebhook?: string | undefined;
4087
+ display?: {
4088
+ backgroundColor?: string | undefined;
4089
+ backgroundImage?: string | undefined;
4090
+ fadeBackgroundImage?: boolean | undefined;
4091
+ repeatBackgroundImage?: boolean | undefined;
4092
+ fontColor?: string | undefined;
4093
+ accentColor?: string | undefined;
4094
+ accentFontColor?: string | undefined;
4095
+ idBackgroundImage?: string | undefined;
4096
+ fadeIdBackgroundImage?: boolean | undefined;
4097
+ idBackgroundColor?: string | undefined;
4098
+ repeatIdBackgroundImage?: boolean | undefined;
4099
+ } | undefined;
2766
4100
  profileId: string;
2767
4101
  did: string;
2768
4102
  };
@@ -2801,6 +4135,19 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
2801
4135
  websiteLink?: string | undefined;
2802
4136
  isServiceProfile?: boolean | undefined;
2803
4137
  notificationsWebhook?: string | undefined;
4138
+ display?: {
4139
+ backgroundColor?: string | undefined;
4140
+ backgroundImage?: string | undefined;
4141
+ fadeBackgroundImage?: boolean | undefined;
4142
+ repeatBackgroundImage?: boolean | undefined;
4143
+ fontColor?: string | undefined;
4144
+ accentColor?: string | undefined;
4145
+ accentFontColor?: string | undefined;
4146
+ idBackgroundImage?: string | undefined;
4147
+ fadeIdBackgroundImage?: boolean | undefined;
4148
+ idBackgroundColor?: string | undefined;
4149
+ repeatIdBackgroundImage?: boolean | undefined;
4150
+ } | undefined;
2804
4151
  profileId: string;
2805
4152
  did: string;
2806
4153
  };
@@ -4114,6 +5461,43 @@ export declare const LCNNotificationValidator: z.ZodObject<{
4114
5461
  isServiceProfile: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodBoolean>>>;
4115
5462
  type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4116
5463
  notificationsWebhook: z.ZodOptional<z.ZodOptional<z.ZodString>>;
5464
+ display: z.ZodOptional<z.ZodOptional<z.ZodObject<{
5465
+ backgroundColor: z.ZodOptional<z.ZodString>;
5466
+ backgroundImage: z.ZodOptional<z.ZodString>;
5467
+ fadeBackgroundImage: z.ZodOptional<z.ZodBoolean>;
5468
+ repeatBackgroundImage: z.ZodOptional<z.ZodBoolean>;
5469
+ fontColor: z.ZodOptional<z.ZodString>;
5470
+ accentColor: z.ZodOptional<z.ZodString>;
5471
+ accentFontColor: z.ZodOptional<z.ZodString>;
5472
+ idBackgroundImage: z.ZodOptional<z.ZodString>;
5473
+ fadeIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
5474
+ idBackgroundColor: z.ZodOptional<z.ZodString>;
5475
+ repeatIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
5476
+ }, "strip", z.ZodTypeAny, {
5477
+ backgroundColor?: string | undefined;
5478
+ backgroundImage?: string | undefined;
5479
+ fadeBackgroundImage?: boolean | undefined;
5480
+ repeatBackgroundImage?: boolean | undefined;
5481
+ fontColor?: string | undefined;
5482
+ accentColor?: string | undefined;
5483
+ accentFontColor?: string | undefined;
5484
+ idBackgroundImage?: string | undefined;
5485
+ fadeIdBackgroundImage?: boolean | undefined;
5486
+ idBackgroundColor?: string | undefined;
5487
+ repeatIdBackgroundImage?: boolean | undefined;
5488
+ }, {
5489
+ backgroundColor?: string | undefined;
5490
+ backgroundImage?: string | undefined;
5491
+ fadeBackgroundImage?: boolean | undefined;
5492
+ repeatBackgroundImage?: boolean | undefined;
5493
+ fontColor?: string | undefined;
5494
+ accentColor?: string | undefined;
5495
+ accentFontColor?: string | undefined;
5496
+ idBackgroundImage?: string | undefined;
5497
+ fadeIdBackgroundImage?: boolean | undefined;
5498
+ idBackgroundColor?: string | undefined;
5499
+ repeatIdBackgroundImage?: boolean | undefined;
5500
+ }>>>;
4117
5501
  }, "strip", z.ZodTypeAny, {
4118
5502
  type?: string | undefined;
4119
5503
  image?: string | undefined;
@@ -4127,6 +5511,19 @@ export declare const LCNNotificationValidator: z.ZodObject<{
4127
5511
  websiteLink?: string | undefined;
4128
5512
  isServiceProfile?: boolean | undefined;
4129
5513
  notificationsWebhook?: string | undefined;
5514
+ display?: {
5515
+ backgroundColor?: string | undefined;
5516
+ backgroundImage?: string | undefined;
5517
+ fadeBackgroundImage?: boolean | undefined;
5518
+ repeatBackgroundImage?: boolean | undefined;
5519
+ fontColor?: string | undefined;
5520
+ accentColor?: string | undefined;
5521
+ accentFontColor?: string | undefined;
5522
+ idBackgroundImage?: string | undefined;
5523
+ fadeIdBackgroundImage?: boolean | undefined;
5524
+ idBackgroundColor?: string | undefined;
5525
+ repeatIdBackgroundImage?: boolean | undefined;
5526
+ } | undefined;
4130
5527
  }, {
4131
5528
  type?: string | undefined;
4132
5529
  image?: string | undefined;
@@ -4140,6 +5537,19 @@ export declare const LCNNotificationValidator: z.ZodObject<{
4140
5537
  websiteLink?: string | undefined;
4141
5538
  isServiceProfile?: boolean | undefined;
4142
5539
  notificationsWebhook?: string | undefined;
5540
+ display?: {
5541
+ backgroundColor?: string | undefined;
5542
+ backgroundImage?: string | undefined;
5543
+ fadeBackgroundImage?: boolean | undefined;
5544
+ repeatBackgroundImage?: boolean | undefined;
5545
+ fontColor?: string | undefined;
5546
+ accentColor?: string | undefined;
5547
+ accentFontColor?: string | undefined;
5548
+ idBackgroundImage?: string | undefined;
5549
+ fadeIdBackgroundImage?: boolean | undefined;
5550
+ idBackgroundColor?: string | undefined;
5551
+ repeatIdBackgroundImage?: boolean | undefined;
5552
+ } | undefined;
4143
5553
  }>, z.ZodObject<{
4144
5554
  did: z.ZodString;
4145
5555
  }, "strip", z.ZodTypeAny, {
@@ -4160,6 +5570,43 @@ export declare const LCNNotificationValidator: z.ZodObject<{
4160
5570
  isServiceProfile: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodBoolean>>>;
4161
5571
  type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4162
5572
  notificationsWebhook: z.ZodOptional<z.ZodOptional<z.ZodString>>;
5573
+ display: z.ZodOptional<z.ZodOptional<z.ZodObject<{
5574
+ backgroundColor: z.ZodOptional<z.ZodString>;
5575
+ backgroundImage: z.ZodOptional<z.ZodString>;
5576
+ fadeBackgroundImage: z.ZodOptional<z.ZodBoolean>;
5577
+ repeatBackgroundImage: z.ZodOptional<z.ZodBoolean>;
5578
+ fontColor: z.ZodOptional<z.ZodString>;
5579
+ accentColor: z.ZodOptional<z.ZodString>;
5580
+ accentFontColor: z.ZodOptional<z.ZodString>;
5581
+ idBackgroundImage: z.ZodOptional<z.ZodString>;
5582
+ fadeIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
5583
+ idBackgroundColor: z.ZodOptional<z.ZodString>;
5584
+ repeatIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
5585
+ }, "strip", z.ZodTypeAny, {
5586
+ backgroundColor?: string | undefined;
5587
+ backgroundImage?: string | undefined;
5588
+ fadeBackgroundImage?: boolean | undefined;
5589
+ repeatBackgroundImage?: boolean | undefined;
5590
+ fontColor?: string | undefined;
5591
+ accentColor?: string | undefined;
5592
+ accentFontColor?: string | undefined;
5593
+ idBackgroundImage?: string | undefined;
5594
+ fadeIdBackgroundImage?: boolean | undefined;
5595
+ idBackgroundColor?: string | undefined;
5596
+ repeatIdBackgroundImage?: boolean | undefined;
5597
+ }, {
5598
+ backgroundColor?: string | undefined;
5599
+ backgroundImage?: string | undefined;
5600
+ fadeBackgroundImage?: boolean | undefined;
5601
+ repeatBackgroundImage?: boolean | undefined;
5602
+ fontColor?: string | undefined;
5603
+ accentColor?: string | undefined;
5604
+ accentFontColor?: string | undefined;
5605
+ idBackgroundImage?: string | undefined;
5606
+ fadeIdBackgroundImage?: boolean | undefined;
5607
+ idBackgroundColor?: string | undefined;
5608
+ repeatIdBackgroundImage?: boolean | undefined;
5609
+ }>>>;
4163
5610
  }, "strip", z.ZodTypeAny, {
4164
5611
  type?: string | undefined;
4165
5612
  image?: string | undefined;
@@ -4173,6 +5620,19 @@ export declare const LCNNotificationValidator: z.ZodObject<{
4173
5620
  websiteLink?: string | undefined;
4174
5621
  isServiceProfile?: boolean | undefined;
4175
5622
  notificationsWebhook?: string | undefined;
5623
+ display?: {
5624
+ backgroundColor?: string | undefined;
5625
+ backgroundImage?: string | undefined;
5626
+ fadeBackgroundImage?: boolean | undefined;
5627
+ repeatBackgroundImage?: boolean | undefined;
5628
+ fontColor?: string | undefined;
5629
+ accentColor?: string | undefined;
5630
+ accentFontColor?: string | undefined;
5631
+ idBackgroundImage?: string | undefined;
5632
+ fadeIdBackgroundImage?: boolean | undefined;
5633
+ idBackgroundColor?: string | undefined;
5634
+ repeatIdBackgroundImage?: boolean | undefined;
5635
+ } | undefined;
4176
5636
  }, {
4177
5637
  type?: string | undefined;
4178
5638
  image?: string | undefined;
@@ -4186,6 +5646,19 @@ export declare const LCNNotificationValidator: z.ZodObject<{
4186
5646
  websiteLink?: string | undefined;
4187
5647
  isServiceProfile?: boolean | undefined;
4188
5648
  notificationsWebhook?: string | undefined;
5649
+ display?: {
5650
+ backgroundColor?: string | undefined;
5651
+ backgroundImage?: string | undefined;
5652
+ fadeBackgroundImage?: boolean | undefined;
5653
+ repeatBackgroundImage?: boolean | undefined;
5654
+ fontColor?: string | undefined;
5655
+ accentColor?: string | undefined;
5656
+ accentFontColor?: string | undefined;
5657
+ idBackgroundImage?: string | undefined;
5658
+ fadeIdBackgroundImage?: boolean | undefined;
5659
+ idBackgroundColor?: string | undefined;
5660
+ repeatIdBackgroundImage?: boolean | undefined;
5661
+ } | undefined;
4189
5662
  }>, z.ZodObject<{
4190
5663
  did: z.ZodString;
4191
5664
  }, "strip", z.ZodTypeAny, {
@@ -4520,6 +5993,19 @@ export declare const LCNNotificationValidator: z.ZodObject<{
4520
5993
  websiteLink?: string | undefined;
4521
5994
  isServiceProfile?: boolean | undefined;
4522
5995
  notificationsWebhook?: string | undefined;
5996
+ display?: {
5997
+ backgroundColor?: string | undefined;
5998
+ backgroundImage?: string | undefined;
5999
+ fadeBackgroundImage?: boolean | undefined;
6000
+ repeatBackgroundImage?: boolean | undefined;
6001
+ fontColor?: string | undefined;
6002
+ accentColor?: string | undefined;
6003
+ accentFontColor?: string | undefined;
6004
+ idBackgroundImage?: string | undefined;
6005
+ fadeIdBackgroundImage?: boolean | undefined;
6006
+ idBackgroundColor?: string | undefined;
6007
+ repeatIdBackgroundImage?: boolean | undefined;
6008
+ } | undefined;
4523
6009
  } & {
4524
6010
  did: string;
4525
6011
  };
@@ -4536,6 +6022,19 @@ export declare const LCNNotificationValidator: z.ZodObject<{
4536
6022
  websiteLink?: string | undefined;
4537
6023
  isServiceProfile?: boolean | undefined;
4538
6024
  notificationsWebhook?: string | undefined;
6025
+ display?: {
6026
+ backgroundColor?: string | undefined;
6027
+ backgroundImage?: string | undefined;
6028
+ fadeBackgroundImage?: boolean | undefined;
6029
+ repeatBackgroundImage?: boolean | undefined;
6030
+ fontColor?: string | undefined;
6031
+ accentColor?: string | undefined;
6032
+ accentFontColor?: string | undefined;
6033
+ idBackgroundImage?: string | undefined;
6034
+ fadeIdBackgroundImage?: boolean | undefined;
6035
+ idBackgroundColor?: string | undefined;
6036
+ repeatIdBackgroundImage?: boolean | undefined;
6037
+ } | undefined;
4539
6038
  } & {
4540
6039
  did: string;
4541
6040
  };
@@ -4592,6 +6091,19 @@ export declare const LCNNotificationValidator: z.ZodObject<{
4592
6091
  websiteLink?: string | undefined;
4593
6092
  isServiceProfile?: boolean | undefined;
4594
6093
  notificationsWebhook?: string | undefined;
6094
+ display?: {
6095
+ backgroundColor?: string | undefined;
6096
+ backgroundImage?: string | undefined;
6097
+ fadeBackgroundImage?: boolean | undefined;
6098
+ repeatBackgroundImage?: boolean | undefined;
6099
+ fontColor?: string | undefined;
6100
+ accentColor?: string | undefined;
6101
+ accentFontColor?: string | undefined;
6102
+ idBackgroundImage?: string | undefined;
6103
+ fadeIdBackgroundImage?: boolean | undefined;
6104
+ idBackgroundColor?: string | undefined;
6105
+ repeatIdBackgroundImage?: boolean | undefined;
6106
+ } | undefined;
4595
6107
  } & {
4596
6108
  did: string;
4597
6109
  };
@@ -4608,6 +6120,19 @@ export declare const LCNNotificationValidator: z.ZodObject<{
4608
6120
  websiteLink?: string | undefined;
4609
6121
  isServiceProfile?: boolean | undefined;
4610
6122
  notificationsWebhook?: string | undefined;
6123
+ display?: {
6124
+ backgroundColor?: string | undefined;
6125
+ backgroundImage?: string | undefined;
6126
+ fadeBackgroundImage?: boolean | undefined;
6127
+ repeatBackgroundImage?: boolean | undefined;
6128
+ fontColor?: string | undefined;
6129
+ accentColor?: string | undefined;
6130
+ accentFontColor?: string | undefined;
6131
+ idBackgroundImage?: string | undefined;
6132
+ fadeIdBackgroundImage?: boolean | undefined;
6133
+ idBackgroundColor?: string | undefined;
6134
+ repeatIdBackgroundImage?: boolean | undefined;
6135
+ } | undefined;
4611
6136
  } & {
4612
6137
  did: string;
4613
6138
  };