@learncard/types 5.5.9 → 5.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/lcn.d.ts +552 -0
- package/dist/lcn.d.ts.map +1 -1
- package/dist/types.cjs.development.js +32 -0
- package/dist/types.cjs.development.js.map +2 -2
- package/dist/types.cjs.production.min.js +1 -1
- package/dist/types.cjs.production.min.js.map +3 -3
- package/dist/types.esm.js +32 -0
- package/dist/types.esm.js.map +2 -2
- package/package.json +1 -1
package/dist/lcn.d.ts
CHANGED
@@ -481,6 +481,528 @@ export declare const PaginatedLCNProfilesValidator: z.ZodObject<z.extendShape<{
|
|
481
481
|
export type PaginatedLCNProfiles = z.infer<typeof PaginatedLCNProfilesValidator>;
|
482
482
|
export declare const LCNProfileConnectionStatusEnum: z.ZodEnum<["CONNECTED", "PENDING_REQUEST_SENT", "PENDING_REQUEST_RECEIVED", "NOT_CONNECTED"]>;
|
483
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>;
|
484
1006
|
export declare const SentCredentialInfoValidator: z.ZodObject<{
|
485
1007
|
uri: z.ZodString;
|
486
1008
|
to: z.ZodString;
|
@@ -512,8 +1034,10 @@ export declare const BoostPermissionsValidator: z.ZodObject<{
|
|
512
1034
|
canEditChildren: z.ZodString;
|
513
1035
|
canRevokeChildren: z.ZodString;
|
514
1036
|
canManageChildrenPermissions: z.ZodString;
|
1037
|
+
canManageChildrenProfiles: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
515
1038
|
canViewAnalytics: z.ZodBoolean;
|
516
1039
|
}, "strip", z.ZodTypeAny, {
|
1040
|
+
canManageChildrenProfiles?: boolean | undefined;
|
517
1041
|
role: string;
|
518
1042
|
canEdit: boolean;
|
519
1043
|
canIssue: boolean;
|
@@ -526,6 +1050,7 @@ export declare const BoostPermissionsValidator: z.ZodObject<{
|
|
526
1050
|
canManageChildrenPermissions: string;
|
527
1051
|
canViewAnalytics: boolean;
|
528
1052
|
}, {
|
1053
|
+
canManageChildrenProfiles?: boolean | undefined;
|
529
1054
|
role: string;
|
530
1055
|
canEdit: boolean;
|
531
1056
|
canIssue: boolean;
|
@@ -560,8 +1085,10 @@ export declare const BoostValidator: z.ZodObject<{
|
|
560
1085
|
canEditChildren: z.ZodString;
|
561
1086
|
canRevokeChildren: z.ZodString;
|
562
1087
|
canManageChildrenPermissions: z.ZodString;
|
1088
|
+
canManageChildrenProfiles: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
563
1089
|
canViewAnalytics: z.ZodBoolean;
|
564
1090
|
}, "strip", z.ZodTypeAny, {
|
1091
|
+
canManageChildrenProfiles?: boolean | undefined;
|
565
1092
|
role: string;
|
566
1093
|
canEdit: boolean;
|
567
1094
|
canIssue: boolean;
|
@@ -574,6 +1101,7 @@ export declare const BoostValidator: z.ZodObject<{
|
|
574
1101
|
canManageChildrenPermissions: string;
|
575
1102
|
canViewAnalytics: boolean;
|
576
1103
|
}, {
|
1104
|
+
canManageChildrenProfiles?: boolean | undefined;
|
577
1105
|
role: string;
|
578
1106
|
canEdit: boolean;
|
579
1107
|
canIssue: boolean;
|
@@ -594,6 +1122,7 @@ export declare const BoostValidator: z.ZodObject<{
|
|
594
1122
|
autoConnectRecipients?: boolean | undefined;
|
595
1123
|
meta?: Record<string, any> | undefined;
|
596
1124
|
claimPermissions?: {
|
1125
|
+
canManageChildrenProfiles?: boolean | undefined;
|
597
1126
|
role: string;
|
598
1127
|
canEdit: boolean;
|
599
1128
|
canIssue: boolean;
|
@@ -615,6 +1144,7 @@ export declare const BoostValidator: z.ZodObject<{
|
|
615
1144
|
autoConnectRecipients?: boolean | undefined;
|
616
1145
|
meta?: Record<string, any> | undefined;
|
617
1146
|
claimPermissions?: {
|
1147
|
+
canManageChildrenProfiles?: boolean | undefined;
|
618
1148
|
role: string;
|
619
1149
|
canEdit: boolean;
|
620
1150
|
canIssue: boolean;
|
@@ -789,8 +1319,10 @@ export declare const PaginatedBoostsValidator: z.ZodObject<z.extendShape<{
|
|
789
1319
|
canEditChildren: z.ZodString;
|
790
1320
|
canRevokeChildren: z.ZodString;
|
791
1321
|
canManageChildrenPermissions: z.ZodString;
|
1322
|
+
canManageChildrenProfiles: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
792
1323
|
canViewAnalytics: z.ZodBoolean;
|
793
1324
|
}, "strip", z.ZodTypeAny, {
|
1325
|
+
canManageChildrenProfiles?: boolean | undefined;
|
794
1326
|
role: string;
|
795
1327
|
canEdit: boolean;
|
796
1328
|
canIssue: boolean;
|
@@ -803,6 +1335,7 @@ export declare const PaginatedBoostsValidator: z.ZodObject<z.extendShape<{
|
|
803
1335
|
canManageChildrenPermissions: string;
|
804
1336
|
canViewAnalytics: boolean;
|
805
1337
|
}, {
|
1338
|
+
canManageChildrenProfiles?: boolean | undefined;
|
806
1339
|
role: string;
|
807
1340
|
canEdit: boolean;
|
808
1341
|
canIssue: boolean;
|
@@ -823,6 +1356,7 @@ export declare const PaginatedBoostsValidator: z.ZodObject<z.extendShape<{
|
|
823
1356
|
autoConnectRecipients?: boolean | undefined;
|
824
1357
|
meta?: Record<string, any> | undefined;
|
825
1358
|
claimPermissions?: {
|
1359
|
+
canManageChildrenProfiles?: boolean | undefined;
|
826
1360
|
role: string;
|
827
1361
|
canEdit: boolean;
|
828
1362
|
canIssue: boolean;
|
@@ -844,6 +1378,7 @@ export declare const PaginatedBoostsValidator: z.ZodObject<z.extendShape<{
|
|
844
1378
|
autoConnectRecipients?: boolean | undefined;
|
845
1379
|
meta?: Record<string, any> | undefined;
|
846
1380
|
claimPermissions?: {
|
1381
|
+
canManageChildrenProfiles?: boolean | undefined;
|
847
1382
|
role: string;
|
848
1383
|
canEdit: boolean;
|
849
1384
|
canIssue: boolean;
|
@@ -869,6 +1404,7 @@ export declare const PaginatedBoostsValidator: z.ZodObject<z.extendShape<{
|
|
869
1404
|
autoConnectRecipients?: boolean | undefined;
|
870
1405
|
meta?: Record<string, any> | undefined;
|
871
1406
|
claimPermissions?: {
|
1407
|
+
canManageChildrenProfiles?: boolean | undefined;
|
872
1408
|
role: string;
|
873
1409
|
canEdit: boolean;
|
874
1410
|
canIssue: boolean;
|
@@ -894,6 +1430,7 @@ export declare const PaginatedBoostsValidator: z.ZodObject<z.extendShape<{
|
|
894
1430
|
autoConnectRecipients?: boolean | undefined;
|
895
1431
|
meta?: Record<string, any> | undefined;
|
896
1432
|
claimPermissions?: {
|
1433
|
+
canManageChildrenProfiles?: boolean | undefined;
|
897
1434
|
role: string;
|
898
1435
|
canEdit: boolean;
|
899
1436
|
canIssue: boolean;
|
@@ -1784,6 +2321,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
1784
2321
|
reasonForAccessing: z.ZodOptional<z.ZodString>;
|
1785
2322
|
image: z.ZodOptional<z.ZodString>;
|
1786
2323
|
uri: z.ZodString;
|
2324
|
+
needsGuardianConsent: z.ZodOptional<z.ZodBoolean>;
|
1787
2325
|
createdAt: z.ZodString;
|
1788
2326
|
updatedAt: z.ZodString;
|
1789
2327
|
expiresAt: z.ZodOptional<z.ZodString>;
|
@@ -1792,6 +2330,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
1792
2330
|
image?: string | undefined;
|
1793
2331
|
subtitle?: string | undefined;
|
1794
2332
|
reasonForAccessing?: string | undefined;
|
2333
|
+
needsGuardianConsent?: boolean | undefined;
|
1795
2334
|
expiresAt?: string | undefined;
|
1796
2335
|
name: string;
|
1797
2336
|
createdAt: string;
|
@@ -1852,6 +2391,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
1852
2391
|
image?: string | undefined;
|
1853
2392
|
subtitle?: string | undefined;
|
1854
2393
|
reasonForAccessing?: string | undefined;
|
2394
|
+
needsGuardianConsent?: boolean | undefined;
|
1855
2395
|
expiresAt?: string | undefined;
|
1856
2396
|
name: string;
|
1857
2397
|
createdAt: string;
|
@@ -2161,6 +2701,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
2161
2701
|
reasonForAccessing: z.ZodOptional<z.ZodString>;
|
2162
2702
|
image: z.ZodOptional<z.ZodString>;
|
2163
2703
|
uri: z.ZodString;
|
2704
|
+
needsGuardianConsent: z.ZodOptional<z.ZodBoolean>;
|
2164
2705
|
createdAt: z.ZodString;
|
2165
2706
|
updatedAt: z.ZodString;
|
2166
2707
|
expiresAt: z.ZodOptional<z.ZodString>;
|
@@ -2169,6 +2710,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
2169
2710
|
image?: string | undefined;
|
2170
2711
|
subtitle?: string | undefined;
|
2171
2712
|
reasonForAccessing?: string | undefined;
|
2713
|
+
needsGuardianConsent?: boolean | undefined;
|
2172
2714
|
expiresAt?: string | undefined;
|
2173
2715
|
name: string;
|
2174
2716
|
createdAt: string;
|
@@ -2202,6 +2744,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
2202
2744
|
image?: string | undefined;
|
2203
2745
|
subtitle?: string | undefined;
|
2204
2746
|
reasonForAccessing?: string | undefined;
|
2747
|
+
needsGuardianConsent?: boolean | undefined;
|
2205
2748
|
expiresAt?: string | undefined;
|
2206
2749
|
name: string;
|
2207
2750
|
createdAt: string;
|
@@ -2239,6 +2782,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
2239
2782
|
image?: string | undefined;
|
2240
2783
|
subtitle?: string | undefined;
|
2241
2784
|
reasonForAccessing?: string | undefined;
|
2785
|
+
needsGuardianConsent?: boolean | undefined;
|
2242
2786
|
expiresAt?: string | undefined;
|
2243
2787
|
name: string;
|
2244
2788
|
createdAt: string;
|
@@ -2276,6 +2820,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
2276
2820
|
image?: string | undefined;
|
2277
2821
|
subtitle?: string | undefined;
|
2278
2822
|
reasonForAccessing?: string | undefined;
|
2823
|
+
needsGuardianConsent?: boolean | undefined;
|
2279
2824
|
expiresAt?: string | undefined;
|
2280
2825
|
name: string;
|
2281
2826
|
createdAt: string;
|
@@ -2917,6 +3462,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
2917
3462
|
reasonForAccessing: z.ZodOptional<z.ZodString>;
|
2918
3463
|
image: z.ZodOptional<z.ZodString>;
|
2919
3464
|
uri: z.ZodString;
|
3465
|
+
needsGuardianConsent: z.ZodOptional<z.ZodBoolean>;
|
2920
3466
|
createdAt: z.ZodString;
|
2921
3467
|
updatedAt: z.ZodString;
|
2922
3468
|
expiresAt: z.ZodOptional<z.ZodString>;
|
@@ -2925,6 +3471,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
2925
3471
|
image?: string | undefined;
|
2926
3472
|
subtitle?: string | undefined;
|
2927
3473
|
reasonForAccessing?: string | undefined;
|
3474
|
+
needsGuardianConsent?: boolean | undefined;
|
2928
3475
|
expiresAt?: string | undefined;
|
2929
3476
|
name: string;
|
2930
3477
|
createdAt: string;
|
@@ -2985,6 +3532,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
2985
3532
|
image?: string | undefined;
|
2986
3533
|
subtitle?: string | undefined;
|
2987
3534
|
reasonForAccessing?: string | undefined;
|
3535
|
+
needsGuardianConsent?: boolean | undefined;
|
2988
3536
|
expiresAt?: string | undefined;
|
2989
3537
|
name: string;
|
2990
3538
|
createdAt: string;
|
@@ -3156,6 +3704,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
3156
3704
|
image?: string | undefined;
|
3157
3705
|
subtitle?: string | undefined;
|
3158
3706
|
reasonForAccessing?: string | undefined;
|
3707
|
+
needsGuardianConsent?: boolean | undefined;
|
3159
3708
|
expiresAt?: string | undefined;
|
3160
3709
|
name: string;
|
3161
3710
|
createdAt: string;
|
@@ -3271,6 +3820,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
3271
3820
|
image?: string | undefined;
|
3272
3821
|
subtitle?: string | undefined;
|
3273
3822
|
reasonForAccessing?: string | undefined;
|
3823
|
+
needsGuardianConsent?: boolean | undefined;
|
3274
3824
|
expiresAt?: string | undefined;
|
3275
3825
|
name: string;
|
3276
3826
|
createdAt: string;
|
@@ -3390,6 +3940,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
3390
3940
|
image?: string | undefined;
|
3391
3941
|
subtitle?: string | undefined;
|
3392
3942
|
reasonForAccessing?: string | undefined;
|
3943
|
+
needsGuardianConsent?: boolean | undefined;
|
3393
3944
|
expiresAt?: string | undefined;
|
3394
3945
|
name: string;
|
3395
3946
|
createdAt: string;
|
@@ -3509,6 +4060,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
3509
4060
|
image?: string | undefined;
|
3510
4061
|
subtitle?: string | undefined;
|
3511
4062
|
reasonForAccessing?: string | undefined;
|
4063
|
+
needsGuardianConsent?: boolean | undefined;
|
3512
4064
|
expiresAt?: string | undefined;
|
3513
4065
|
name: string;
|
3514
4066
|
createdAt: string;
|