@singi-labs/sifa-sdk 0.12.4 → 0.12.5

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.
Files changed (33) hide show
  1. package/dist/{adult-content-n2uy3rT3.d.cts → adult-content-BOY_T6j3.d.cts} +265 -1
  2. package/dist/{adult-content-n2uy3rT3.d.ts → adult-content-BOY_T6j3.d.ts} +265 -1
  3. package/dist/{index-HTTNUcN4.d.cts → index-BJV2XHOP.d.cts} +16 -3
  4. package/dist/{index-BLv2bK_K.d.ts → index-C1SIpwOj.d.ts} +16 -3
  5. package/dist/{index-tkWmoZAu.d.ts → index-m5MELVUQ.d.ts} +12 -3
  6. package/dist/{index-COjgkXRe.d.cts → index-xcu81B4E.d.cts} +12 -3
  7. package/dist/index.cjs +1 -1
  8. package/dist/index.cjs.map +1 -1
  9. package/dist/index.d.cts +2 -2
  10. package/dist/index.d.ts +2 -2
  11. package/dist/index.js +1 -1
  12. package/dist/index.js.map +1 -1
  13. package/dist/{org-lIB6pSYc.d.cts → org-92bvwL8H.d.cts} +2 -1
  14. package/dist/{org-BZcAnLab.d.ts → org-Bxz__jbx.d.ts} +2 -1
  15. package/dist/query/fetchers/index.cjs +15 -0
  16. package/dist/query/fetchers/index.cjs.map +1 -1
  17. package/dist/query/fetchers/index.d.cts +3 -3
  18. package/dist/query/fetchers/index.d.ts +3 -3
  19. package/dist/query/fetchers/index.js +15 -1
  20. package/dist/query/fetchers/index.js.map +1 -1
  21. package/dist/query/hooks/index.cjs +26 -0
  22. package/dist/query/hooks/index.cjs.map +1 -1
  23. package/dist/query/hooks/index.d.cts +3 -3
  24. package/dist/query/hooks/index.d.ts +3 -3
  25. package/dist/query/hooks/index.js +26 -1
  26. package/dist/query/hooks/index.js.map +1 -1
  27. package/dist/query/index.cjs +25 -0
  28. package/dist/query/index.cjs.map +1 -1
  29. package/dist/query/index.d.cts +5 -5
  30. package/dist/query/index.d.ts +5 -5
  31. package/dist/query/index.js +24 -1
  32. package/dist/query/index.js.map +1 -1
  33. package/package.json +1 -1
@@ -574,6 +574,270 @@ interface Profile {
574
574
  externalAccounts?: ExternalAccount[];
575
575
  }
576
576
 
577
+ /**
578
+ * Types for the `id.sifa.getProfileView` XRPC query: the aggregated public
579
+ * professional profile view served by a Sifa AppView. This is a curated public
580
+ * projection, viewer-specific and internal fields are not included and hidden
581
+ * items are omitted. Mirrors the `id.sifa.getProfileView` lexicon in
582
+ * @singi-labs/sifa-lexicons.
583
+ */
584
+
585
+ interface IndustryDomain {
586
+ industry: string;
587
+ domain?: string;
588
+ }
589
+ interface ProfileLocationView {
590
+ rkey: string;
591
+ type?: string;
592
+ label?: string;
593
+ isPrimary?: boolean;
594
+ locationCountry?: string;
595
+ locationRegion?: string;
596
+ locationLocality?: string;
597
+ countryCode?: string;
598
+ location?: string;
599
+ }
600
+ interface PositionView {
601
+ rkey: string;
602
+ title: string;
603
+ company?: string;
604
+ companyDid?: string;
605
+ entityRef?: string;
606
+ entityName?: string;
607
+ description?: string;
608
+ employmentType?: string;
609
+ workplaceType?: string;
610
+ locationCountry?: string;
611
+ locationRegion?: string;
612
+ locationLocality?: string;
613
+ countryCode?: string;
614
+ location?: string;
615
+ startedAt?: string;
616
+ endedAt?: string;
617
+ primary?: boolean;
618
+ skillRkeys?: string[];
619
+ }
620
+ interface EducationView {
621
+ rkey: string;
622
+ institution?: string;
623
+ institutionDid?: string;
624
+ entityRef?: string;
625
+ degree?: string;
626
+ fieldOfStudy?: string;
627
+ activities?: string;
628
+ description?: string;
629
+ startedAt?: string;
630
+ endedAt?: string;
631
+ }
632
+ interface SkillView {
633
+ rkey: string;
634
+ name: string;
635
+ category?: string;
636
+ positionRkeys?: string[];
637
+ }
638
+ interface CertificationView {
639
+ rkey: string;
640
+ name: string;
641
+ issuingOrg?: string;
642
+ entityRef?: string;
643
+ issueDate?: string;
644
+ expiryDate?: string;
645
+ credentialUrl?: string;
646
+ }
647
+ interface ProjectView {
648
+ rkey: string;
649
+ name: string;
650
+ description?: string;
651
+ url?: string;
652
+ startDate?: string;
653
+ endDate?: string;
654
+ }
655
+ interface VolunteeringView {
656
+ rkey: string;
657
+ organization: string;
658
+ entityRef?: string;
659
+ role?: string;
660
+ cause?: string;
661
+ description?: string;
662
+ startDate?: string;
663
+ endDate?: string;
664
+ }
665
+ interface InvolvementLinkView {
666
+ url: string;
667
+ kind?: string;
668
+ label?: string;
669
+ verified?: boolean;
670
+ verifiedPlatform?: string;
671
+ }
672
+ interface InvolvementView {
673
+ rkey: string;
674
+ kind?: string;
675
+ upstream?: string;
676
+ upstreamDid?: string;
677
+ upstreamUrl?: string;
678
+ role?: string;
679
+ description?: string;
680
+ startedAt?: string;
681
+ endedAt?: string;
682
+ links: InvolvementLinkView[];
683
+ legacy: boolean;
684
+ }
685
+ interface ContributorView {
686
+ name: string;
687
+ orcidId?: string;
688
+ did?: string;
689
+ handle?: string;
690
+ }
691
+ interface PublicationView {
692
+ rkey: string;
693
+ title: string;
694
+ subtitle?: string;
695
+ publisher?: string;
696
+ date?: string;
697
+ url?: string;
698
+ description?: string;
699
+ doi?: string;
700
+ type?: string;
701
+ typeLabel?: string;
702
+ contributors?: ContributorView[];
703
+ verified: boolean;
704
+ verifiedVia?: string;
705
+ orcidCorroborated?: boolean;
706
+ publicationUri?: string;
707
+ publicationUrl?: string;
708
+ publicationName?: string;
709
+ image?: string;
710
+ }
711
+ interface CourseView {
712
+ rkey: string;
713
+ name: string;
714
+ number?: string;
715
+ institution?: string;
716
+ entityRef?: string;
717
+ credentialRkey?: string;
718
+ }
719
+ interface DurationView {
720
+ minMinutes: number;
721
+ maxMinutes?: number;
722
+ }
723
+ interface CoSpeakerView {
724
+ did?: string;
725
+ handle?: string;
726
+ displayName?: string;
727
+ avatar?: string;
728
+ name?: string;
729
+ }
730
+ interface PresentationDeliveryView {
731
+ rkey: string;
732
+ presentationRkey?: string;
733
+ title?: string;
734
+ role?: string;
735
+ eventName?: string;
736
+ date?: string;
737
+ location?: string;
738
+ mode?: string;
739
+ status?: string;
740
+ links?: PresentationLinkView[];
741
+ eventUri?: string;
742
+ coSpeakers?: CoSpeakerView[];
743
+ }
744
+ interface PresentationView {
745
+ rkey: string;
746
+ title: string;
747
+ description?: string;
748
+ duration?: DurationView;
749
+ intendedAudiences?: string[];
750
+ links?: PresentationLinkView[];
751
+ writeupUri?: string;
752
+ deliveries: PresentationDeliveryView[];
753
+ }
754
+ interface HonorView {
755
+ rkey: string;
756
+ title: string;
757
+ issuer?: string;
758
+ entityRef?: string;
759
+ description?: string;
760
+ date?: string;
761
+ }
762
+ interface LanguageView {
763
+ rkey: string;
764
+ language: string;
765
+ proficiency?: string;
766
+ }
767
+ interface ExternalAccountView {
768
+ rkey: string;
769
+ platform?: string;
770
+ url: string;
771
+ label?: string;
772
+ feedUrl?: string;
773
+ verifiable?: boolean;
774
+ verified?: boolean;
775
+ verifiedVia?: string;
776
+ primary?: boolean;
777
+ }
778
+ interface ActiveAppView {
779
+ id: string;
780
+ name: string;
781
+ category?: string;
782
+ recentCount?: number;
783
+ latestRecordAt?: string;
784
+ }
785
+ interface AtfundLinkView {
786
+ url: string;
787
+ label?: string;
788
+ }
789
+ /** Aggregated public professional profile view (`id.sifa.getProfileView#profileView`). */
790
+ interface ProfileView {
791
+ did: string;
792
+ handle: string;
793
+ displayName?: string;
794
+ givenName?: string;
795
+ familyName?: string;
796
+ avatar?: string;
797
+ pronouns?: string;
798
+ headline?: string;
799
+ about?: string;
800
+ industries?: IndustryDomain[];
801
+ locationCountry?: string;
802
+ locationRegion?: string;
803
+ locationLocality?: string;
804
+ countryCode?: string;
805
+ location?: string;
806
+ locations?: ProfileLocationView[];
807
+ website?: string;
808
+ openTo?: string[];
809
+ preferredWorkplace?: string;
810
+ availableFromUtc?: string;
811
+ availableToUtc?: string;
812
+ langs?: string[];
813
+ createdAt?: string;
814
+ positions?: PositionView[];
815
+ education?: EducationView[];
816
+ skills?: SkillView[];
817
+ certifications?: CertificationView[];
818
+ projects?: ProjectView[];
819
+ volunteering?: VolunteeringView[];
820
+ involvement?: InvolvementView[];
821
+ publications?: PublicationView[];
822
+ courses?: CourseView[];
823
+ presentations?: PresentationView[];
824
+ presentationDeliveries?: PresentationDeliveryView[];
825
+ honors?: HonorView[];
826
+ languages?: LanguageView[];
827
+ externalAccounts?: ExternalAccountView[];
828
+ atfundContribute?: AtfundLinkView;
829
+ followersCount?: number;
830
+ followingCount?: number;
831
+ connectionsCount?: number;
832
+ metInPersonCount?: number;
833
+ atprotoFollowersCount?: number;
834
+ blueskyVerified?: boolean;
835
+ blueskyVerifiedAt?: string;
836
+ activeApps?: ActiveAppView[];
837
+ pdsProvider?: string;
838
+ claimed?: boolean;
839
+ }
840
+
577
841
  /**
578
842
  * Adult-content gating for Bluesky activity items.
579
843
  *
@@ -613,4 +877,4 @@ declare function hasAdultContent(item: {
613
877
  labels?: ActivityLabel[];
614
878
  }): boolean;
615
879
 
616
- export { type AdultContentLabel as A, type ProfileVolunteering as B, type CoSpeaker as C, type PublicationContributor as D, type ExternalAccount as E, type FeedItem as F, type SkillRef as G, hasAdultContent as H, type LocationValue as L, type OrgFloorVerdict as O, type ProfileSkill as P, type SkillSuggestion as S, type TrustStat as T, type VerifiedAccount as V, type ActivityLabel as a, type ProfilePresentationDelivery as b, type PdsProviderInfo as c, type Profile as d, type ProfilePosition as e, type ProfileCertification as f, type ProfileEducation as g, type ProfileHonor as h, type ProfileLanguage as i, type ProfileProject as j, type ProfilePublication as k, type ProfileInvolvement as l, ADULT_CONTENT_LABELS as m, type ActiveApp as n, type Endorsement as o, type EndorsementData as p, type ExternalAccountKeytraceClaim as q, type LanguageProficiency as r, type OrgProfileView as s, type PresentationLinkView as t, type ProfileCourse as u, type ProfileIndustry as v, type ProfileInvolvementLink as w, type ProfileLocation as x, type ProfileOverrideSource as y, type ProfilePresentation as z };
880
+ export { type ProfileVolunteering as $, type AdultContentLabel as A, type InvolvementView as B, type CoSpeaker as C, type DurationView as D, type ExternalAccount as E, type FeedItem as F, type LanguageProficiency as G, type HonorView as H, type IndustryDomain as I, type LanguageView as J, type OrgProfileView as K, type LocationValue as L, type PositionView as M, type PresentationDeliveryView as N, type OrgFloorVerdict as O, type ProfileSkill as P, type PresentationLinkView as Q, type PresentationView as R, type SkillSuggestion as S, type ProfileCourse as T, type ProfileIndustry as U, type ProfileInvolvementLink as V, type ProfileLocation as W, type ProfileLocationView as X, type ProfileOverrideSource as Y, type ProfilePresentation as Z, type ProfileView as _, type ActivityLabel as a, type ProjectView as a0, type PublicationContributor as a1, type PublicationView as a2, type SkillRef as a3, type SkillView as a4, type TrustStat as a5, type VerifiedAccount as a6, type VolunteeringView as a7, hasAdultContent as a8, type ProfilePresentationDelivery as b, type PdsProviderInfo as c, type Profile as d, type ProfilePosition as e, type ProfileCertification as f, type ProfileEducation as g, type ProfileHonor as h, type ProfileLanguage as i, type ProfileProject as j, type ProfilePublication as k, type ProfileInvolvement as l, ADULT_CONTENT_LABELS as m, type ActiveApp as n, type ActiveAppView as o, type AtfundLinkView as p, type CertificationView as q, type CoSpeakerView as r, type ContributorView as s, type CourseView as t, type EducationView as u, type Endorsement as v, type EndorsementData as w, type ExternalAccountKeytraceClaim as x, type ExternalAccountView as y, type InvolvementLinkView as z };
@@ -574,6 +574,270 @@ interface Profile {
574
574
  externalAccounts?: ExternalAccount[];
575
575
  }
576
576
 
577
+ /**
578
+ * Types for the `id.sifa.getProfileView` XRPC query: the aggregated public
579
+ * professional profile view served by a Sifa AppView. This is a curated public
580
+ * projection, viewer-specific and internal fields are not included and hidden
581
+ * items are omitted. Mirrors the `id.sifa.getProfileView` lexicon in
582
+ * @singi-labs/sifa-lexicons.
583
+ */
584
+
585
+ interface IndustryDomain {
586
+ industry: string;
587
+ domain?: string;
588
+ }
589
+ interface ProfileLocationView {
590
+ rkey: string;
591
+ type?: string;
592
+ label?: string;
593
+ isPrimary?: boolean;
594
+ locationCountry?: string;
595
+ locationRegion?: string;
596
+ locationLocality?: string;
597
+ countryCode?: string;
598
+ location?: string;
599
+ }
600
+ interface PositionView {
601
+ rkey: string;
602
+ title: string;
603
+ company?: string;
604
+ companyDid?: string;
605
+ entityRef?: string;
606
+ entityName?: string;
607
+ description?: string;
608
+ employmentType?: string;
609
+ workplaceType?: string;
610
+ locationCountry?: string;
611
+ locationRegion?: string;
612
+ locationLocality?: string;
613
+ countryCode?: string;
614
+ location?: string;
615
+ startedAt?: string;
616
+ endedAt?: string;
617
+ primary?: boolean;
618
+ skillRkeys?: string[];
619
+ }
620
+ interface EducationView {
621
+ rkey: string;
622
+ institution?: string;
623
+ institutionDid?: string;
624
+ entityRef?: string;
625
+ degree?: string;
626
+ fieldOfStudy?: string;
627
+ activities?: string;
628
+ description?: string;
629
+ startedAt?: string;
630
+ endedAt?: string;
631
+ }
632
+ interface SkillView {
633
+ rkey: string;
634
+ name: string;
635
+ category?: string;
636
+ positionRkeys?: string[];
637
+ }
638
+ interface CertificationView {
639
+ rkey: string;
640
+ name: string;
641
+ issuingOrg?: string;
642
+ entityRef?: string;
643
+ issueDate?: string;
644
+ expiryDate?: string;
645
+ credentialUrl?: string;
646
+ }
647
+ interface ProjectView {
648
+ rkey: string;
649
+ name: string;
650
+ description?: string;
651
+ url?: string;
652
+ startDate?: string;
653
+ endDate?: string;
654
+ }
655
+ interface VolunteeringView {
656
+ rkey: string;
657
+ organization: string;
658
+ entityRef?: string;
659
+ role?: string;
660
+ cause?: string;
661
+ description?: string;
662
+ startDate?: string;
663
+ endDate?: string;
664
+ }
665
+ interface InvolvementLinkView {
666
+ url: string;
667
+ kind?: string;
668
+ label?: string;
669
+ verified?: boolean;
670
+ verifiedPlatform?: string;
671
+ }
672
+ interface InvolvementView {
673
+ rkey: string;
674
+ kind?: string;
675
+ upstream?: string;
676
+ upstreamDid?: string;
677
+ upstreamUrl?: string;
678
+ role?: string;
679
+ description?: string;
680
+ startedAt?: string;
681
+ endedAt?: string;
682
+ links: InvolvementLinkView[];
683
+ legacy: boolean;
684
+ }
685
+ interface ContributorView {
686
+ name: string;
687
+ orcidId?: string;
688
+ did?: string;
689
+ handle?: string;
690
+ }
691
+ interface PublicationView {
692
+ rkey: string;
693
+ title: string;
694
+ subtitle?: string;
695
+ publisher?: string;
696
+ date?: string;
697
+ url?: string;
698
+ description?: string;
699
+ doi?: string;
700
+ type?: string;
701
+ typeLabel?: string;
702
+ contributors?: ContributorView[];
703
+ verified: boolean;
704
+ verifiedVia?: string;
705
+ orcidCorroborated?: boolean;
706
+ publicationUri?: string;
707
+ publicationUrl?: string;
708
+ publicationName?: string;
709
+ image?: string;
710
+ }
711
+ interface CourseView {
712
+ rkey: string;
713
+ name: string;
714
+ number?: string;
715
+ institution?: string;
716
+ entityRef?: string;
717
+ credentialRkey?: string;
718
+ }
719
+ interface DurationView {
720
+ minMinutes: number;
721
+ maxMinutes?: number;
722
+ }
723
+ interface CoSpeakerView {
724
+ did?: string;
725
+ handle?: string;
726
+ displayName?: string;
727
+ avatar?: string;
728
+ name?: string;
729
+ }
730
+ interface PresentationDeliveryView {
731
+ rkey: string;
732
+ presentationRkey?: string;
733
+ title?: string;
734
+ role?: string;
735
+ eventName?: string;
736
+ date?: string;
737
+ location?: string;
738
+ mode?: string;
739
+ status?: string;
740
+ links?: PresentationLinkView[];
741
+ eventUri?: string;
742
+ coSpeakers?: CoSpeakerView[];
743
+ }
744
+ interface PresentationView {
745
+ rkey: string;
746
+ title: string;
747
+ description?: string;
748
+ duration?: DurationView;
749
+ intendedAudiences?: string[];
750
+ links?: PresentationLinkView[];
751
+ writeupUri?: string;
752
+ deliveries: PresentationDeliveryView[];
753
+ }
754
+ interface HonorView {
755
+ rkey: string;
756
+ title: string;
757
+ issuer?: string;
758
+ entityRef?: string;
759
+ description?: string;
760
+ date?: string;
761
+ }
762
+ interface LanguageView {
763
+ rkey: string;
764
+ language: string;
765
+ proficiency?: string;
766
+ }
767
+ interface ExternalAccountView {
768
+ rkey: string;
769
+ platform?: string;
770
+ url: string;
771
+ label?: string;
772
+ feedUrl?: string;
773
+ verifiable?: boolean;
774
+ verified?: boolean;
775
+ verifiedVia?: string;
776
+ primary?: boolean;
777
+ }
778
+ interface ActiveAppView {
779
+ id: string;
780
+ name: string;
781
+ category?: string;
782
+ recentCount?: number;
783
+ latestRecordAt?: string;
784
+ }
785
+ interface AtfundLinkView {
786
+ url: string;
787
+ label?: string;
788
+ }
789
+ /** Aggregated public professional profile view (`id.sifa.getProfileView#profileView`). */
790
+ interface ProfileView {
791
+ did: string;
792
+ handle: string;
793
+ displayName?: string;
794
+ givenName?: string;
795
+ familyName?: string;
796
+ avatar?: string;
797
+ pronouns?: string;
798
+ headline?: string;
799
+ about?: string;
800
+ industries?: IndustryDomain[];
801
+ locationCountry?: string;
802
+ locationRegion?: string;
803
+ locationLocality?: string;
804
+ countryCode?: string;
805
+ location?: string;
806
+ locations?: ProfileLocationView[];
807
+ website?: string;
808
+ openTo?: string[];
809
+ preferredWorkplace?: string;
810
+ availableFromUtc?: string;
811
+ availableToUtc?: string;
812
+ langs?: string[];
813
+ createdAt?: string;
814
+ positions?: PositionView[];
815
+ education?: EducationView[];
816
+ skills?: SkillView[];
817
+ certifications?: CertificationView[];
818
+ projects?: ProjectView[];
819
+ volunteering?: VolunteeringView[];
820
+ involvement?: InvolvementView[];
821
+ publications?: PublicationView[];
822
+ courses?: CourseView[];
823
+ presentations?: PresentationView[];
824
+ presentationDeliveries?: PresentationDeliveryView[];
825
+ honors?: HonorView[];
826
+ languages?: LanguageView[];
827
+ externalAccounts?: ExternalAccountView[];
828
+ atfundContribute?: AtfundLinkView;
829
+ followersCount?: number;
830
+ followingCount?: number;
831
+ connectionsCount?: number;
832
+ metInPersonCount?: number;
833
+ atprotoFollowersCount?: number;
834
+ blueskyVerified?: boolean;
835
+ blueskyVerifiedAt?: string;
836
+ activeApps?: ActiveAppView[];
837
+ pdsProvider?: string;
838
+ claimed?: boolean;
839
+ }
840
+
577
841
  /**
578
842
  * Adult-content gating for Bluesky activity items.
579
843
  *
@@ -613,4 +877,4 @@ declare function hasAdultContent(item: {
613
877
  labels?: ActivityLabel[];
614
878
  }): boolean;
615
879
 
616
- export { type AdultContentLabel as A, type ProfileVolunteering as B, type CoSpeaker as C, type PublicationContributor as D, type ExternalAccount as E, type FeedItem as F, type SkillRef as G, hasAdultContent as H, type LocationValue as L, type OrgFloorVerdict as O, type ProfileSkill as P, type SkillSuggestion as S, type TrustStat as T, type VerifiedAccount as V, type ActivityLabel as a, type ProfilePresentationDelivery as b, type PdsProviderInfo as c, type Profile as d, type ProfilePosition as e, type ProfileCertification as f, type ProfileEducation as g, type ProfileHonor as h, type ProfileLanguage as i, type ProfileProject as j, type ProfilePublication as k, type ProfileInvolvement as l, ADULT_CONTENT_LABELS as m, type ActiveApp as n, type Endorsement as o, type EndorsementData as p, type ExternalAccountKeytraceClaim as q, type LanguageProficiency as r, type OrgProfileView as s, type PresentationLinkView as t, type ProfileCourse as u, type ProfileIndustry as v, type ProfileInvolvementLink as w, type ProfileLocation as x, type ProfileOverrideSource as y, type ProfilePresentation as z };
880
+ export { type ProfileVolunteering as $, type AdultContentLabel as A, type InvolvementView as B, type CoSpeaker as C, type DurationView as D, type ExternalAccount as E, type FeedItem as F, type LanguageProficiency as G, type HonorView as H, type IndustryDomain as I, type LanguageView as J, type OrgProfileView as K, type LocationValue as L, type PositionView as M, type PresentationDeliveryView as N, type OrgFloorVerdict as O, type ProfileSkill as P, type PresentationLinkView as Q, type PresentationView as R, type SkillSuggestion as S, type ProfileCourse as T, type ProfileIndustry as U, type ProfileInvolvementLink as V, type ProfileLocation as W, type ProfileLocationView as X, type ProfileOverrideSource as Y, type ProfilePresentation as Z, type ProfileView as _, type ActivityLabel as a, type ProjectView as a0, type PublicationContributor as a1, type PublicationView as a2, type SkillRef as a3, type SkillView as a4, type TrustStat as a5, type VerifiedAccount as a6, type VolunteeringView as a7, hasAdultContent as a8, type ProfilePresentationDelivery as b, type PdsProviderInfo as c, type Profile as d, type ProfilePosition as e, type ProfileCertification as f, type ProfileEducation as g, type ProfileHonor as h, type ProfileLanguage as i, type ProfileProject as j, type ProfilePublication as k, type ProfileInvolvement as l, ADULT_CONTENT_LABELS as m, type ActiveApp as n, type ActiveAppView as o, type AtfundLinkView as p, type CertificationView as q, type CoSpeakerView as r, type ContributorView as s, type CourseView as t, type EducationView as u, type Endorsement as v, type EndorsementData as w, type ExternalAccountKeytraceClaim as x, type ExternalAccountView as y, type InvolvementLinkView as z };
@@ -1,5 +1,5 @@
1
- import { S as SifaApiConfig, A as ApiFetchOptions, j as CreateResult, W as WriteResult } from './org-lIB6pSYc.cjs';
2
- import { d as Profile, e as ProfilePosition, G as SkillRef } from './adult-content-n2uy3rT3.cjs';
1
+ import { S as SifaApiConfig, A as ApiFetchOptions, j as CreateResult, W as WriteResult } from './org-92bvwL8H.cjs';
2
+ import { d as Profile, _ as ProfileView, e as ProfilePosition, a3 as SkillRef } from './adult-content-BOY_T6j3.cjs';
3
3
  import { m as EntitySearchResponse, E as EntitySearchResult, g as EntityMintDomainResponse, k as EntityResolveDomainResponse, p as EntitySelectRequest, r as EntitySelectResponse } from './feed-D2ZV8Eaj.cjs';
4
4
 
5
5
  /**
@@ -18,6 +18,19 @@ declare function fetchProfile(config: SifaApiConfig, handleOrDid: string, option
18
18
  */
19
19
  declare function fetchAtFundLink(config: SifaApiConfig, did: string, options?: ApiFetchOptions): Promise<string | null>;
20
20
 
21
+ /**
22
+ * Read the aggregated public profile view via the `id.sifa.getProfileView`
23
+ * XRPC query. This is the AppView-only join (positions, education, skills,
24
+ * endorsements, and more) exposed as a standard lexicon method, distinct from
25
+ * the internal `/api/profile/*` REST surface.
26
+ *
27
+ * Returns `null` when the AppView has no profile for the actor
28
+ * (`ProfileNotFound`). Throws {@link ApiError} on other non-2xx responses.
29
+ *
30
+ * Server-callable (Next.js RSC) and client-callable (Expo, browser).
31
+ */
32
+ declare function fetchGetProfileView(config: SifaApiConfig, actor: string, options?: ApiFetchOptions): Promise<ProfileView | null>;
33
+
21
34
  /**
22
35
  * Create a new `id.sifa.profile.position` record on the authenticated
23
36
  * user's PDS. The AppView signs and writes via the user's OAuth session.
@@ -258,4 +271,4 @@ declare function checkNetworkMapJobStatus(config: SifaApiConfig, jobId: string,
258
271
  */
259
272
  declare function fetchNetworkMap(config: SifaApiConfig, options?: ApiFetchOptions): Promise<NetworkMapResponse | null>;
260
273
 
261
- export { resolveEntityDomain as A, revealMarqueDomain as B, selectEntity as C, setPositionPrimary as D, unhideKeytraceClaim as E, type FetchNetworkStreamCountOptions as F, unlinkSkillFromPosition as G, unrevealMarqueDomain as H, unsetPositionPrimary as I, updateEducation as J, updatePosition as K, updateRecord as L, updateSkill as M, type NetworkMapEdge as N, type NetworkMapGenerationJob as a, type NetworkMapGraphData as b, type NetworkMapNode as c, type NetworkMapPendingJob as d, type NetworkMapResponse as e, checkNetworkMapJobStatus as f, createEducation as g, createPosition as h, createRecord as i, createSkill as j, deleteEducation as k, deletePosition as l, deleteRecord as m, deleteSkill as n, fetchAtFundLink as o, fetchEndorsementCount as p, fetchEntitySearch as q, fetchNetworkMap as r, fetchNetworkStreamCount as s, fetchProfile as t, hideKeytraceClaim as u, importSearchEntities as v, initiateNetworkMapGeneration as w, isNetworkMapResponse as x, linkSkillToPosition as y, mintEntityDomain as z };
274
+ export { mintEntityDomain as A, resolveEntityDomain as B, revealMarqueDomain as C, selectEntity as D, setPositionPrimary as E, type FetchNetworkStreamCountOptions as F, unhideKeytraceClaim as G, unlinkSkillFromPosition as H, unrevealMarqueDomain as I, unsetPositionPrimary as J, updateEducation as K, updatePosition as L, updateRecord as M, type NetworkMapEdge as N, updateSkill as O, type NetworkMapGenerationJob as a, type NetworkMapGraphData as b, type NetworkMapNode as c, type NetworkMapPendingJob as d, type NetworkMapResponse as e, checkNetworkMapJobStatus as f, createEducation as g, createPosition as h, createRecord as i, createSkill as j, deleteEducation as k, deletePosition as l, deleteRecord as m, deleteSkill as n, fetchAtFundLink as o, fetchEndorsementCount as p, fetchEntitySearch as q, fetchGetProfileView as r, fetchNetworkMap as s, fetchNetworkStreamCount as t, fetchProfile as u, hideKeytraceClaim as v, importSearchEntities as w, initiateNetworkMapGeneration as x, isNetworkMapResponse as y, linkSkillToPosition as z };
@@ -1,5 +1,5 @@
1
- import { S as SifaApiConfig, A as ApiFetchOptions, j as CreateResult, W as WriteResult } from './org-BZcAnLab.js';
2
- import { d as Profile, e as ProfilePosition, G as SkillRef } from './adult-content-n2uy3rT3.js';
1
+ import { S as SifaApiConfig, A as ApiFetchOptions, j as CreateResult, W as WriteResult } from './org-Bxz__jbx.js';
2
+ import { d as Profile, _ as ProfileView, e as ProfilePosition, a3 as SkillRef } from './adult-content-BOY_T6j3.js';
3
3
  import { m as EntitySearchResponse, E as EntitySearchResult, g as EntityMintDomainResponse, k as EntityResolveDomainResponse, p as EntitySelectRequest, r as EntitySelectResponse } from './feed-D2ZV8Eaj.js';
4
4
 
5
5
  /**
@@ -18,6 +18,19 @@ declare function fetchProfile(config: SifaApiConfig, handleOrDid: string, option
18
18
  */
19
19
  declare function fetchAtFundLink(config: SifaApiConfig, did: string, options?: ApiFetchOptions): Promise<string | null>;
20
20
 
21
+ /**
22
+ * Read the aggregated public profile view via the `id.sifa.getProfileView`
23
+ * XRPC query. This is the AppView-only join (positions, education, skills,
24
+ * endorsements, and more) exposed as a standard lexicon method, distinct from
25
+ * the internal `/api/profile/*` REST surface.
26
+ *
27
+ * Returns `null` when the AppView has no profile for the actor
28
+ * (`ProfileNotFound`). Throws {@link ApiError} on other non-2xx responses.
29
+ *
30
+ * Server-callable (Next.js RSC) and client-callable (Expo, browser).
31
+ */
32
+ declare function fetchGetProfileView(config: SifaApiConfig, actor: string, options?: ApiFetchOptions): Promise<ProfileView | null>;
33
+
21
34
  /**
22
35
  * Create a new `id.sifa.profile.position` record on the authenticated
23
36
  * user's PDS. The AppView signs and writes via the user's OAuth session.
@@ -258,4 +271,4 @@ declare function checkNetworkMapJobStatus(config: SifaApiConfig, jobId: string,
258
271
  */
259
272
  declare function fetchNetworkMap(config: SifaApiConfig, options?: ApiFetchOptions): Promise<NetworkMapResponse | null>;
260
273
 
261
- export { resolveEntityDomain as A, revealMarqueDomain as B, selectEntity as C, setPositionPrimary as D, unhideKeytraceClaim as E, type FetchNetworkStreamCountOptions as F, unlinkSkillFromPosition as G, unrevealMarqueDomain as H, unsetPositionPrimary as I, updateEducation as J, updatePosition as K, updateRecord as L, updateSkill as M, type NetworkMapEdge as N, type NetworkMapGenerationJob as a, type NetworkMapGraphData as b, type NetworkMapNode as c, type NetworkMapPendingJob as d, type NetworkMapResponse as e, checkNetworkMapJobStatus as f, createEducation as g, createPosition as h, createRecord as i, createSkill as j, deleteEducation as k, deletePosition as l, deleteRecord as m, deleteSkill as n, fetchAtFundLink as o, fetchEndorsementCount as p, fetchEntitySearch as q, fetchNetworkMap as r, fetchNetworkStreamCount as s, fetchProfile as t, hideKeytraceClaim as u, importSearchEntities as v, initiateNetworkMapGeneration as w, isNetworkMapResponse as x, linkSkillToPosition as y, mintEntityDomain as z };
274
+ export { mintEntityDomain as A, resolveEntityDomain as B, revealMarqueDomain as C, selectEntity as D, setPositionPrimary as E, type FetchNetworkStreamCountOptions as F, unhideKeytraceClaim as G, unlinkSkillFromPosition as H, unrevealMarqueDomain as I, unsetPositionPrimary as J, updateEducation as K, updatePosition as L, updateRecord as M, type NetworkMapEdge as N, updateSkill as O, type NetworkMapGenerationJob as a, type NetworkMapGraphData as b, type NetworkMapNode as c, type NetworkMapPendingJob as d, type NetworkMapResponse as e, checkNetworkMapJobStatus as f, createEducation as g, createPosition as h, createRecord as i, createSkill as j, deleteEducation as k, deletePosition as l, deleteRecord as m, deleteSkill as n, fetchAtFundLink as o, fetchEndorsementCount as p, fetchEntitySearch as q, fetchGetProfileView as r, fetchNetworkMap as s, fetchNetworkStreamCount as t, fetchProfile as u, hideKeytraceClaim as v, importSearchEntities as w, initiateNetworkMapGeneration as x, isNetworkMapResponse as y, linkSkillToPosition as z };
@@ -1,9 +1,9 @@
1
1
  import * as react from 'react';
2
2
  import { ReactNode } from 'react';
3
- import { S as SifaApiConfig, s as sifaQueryKeys, W as WriteResult, ad as RefreshPdsResult, ar as UpdateProfileOverrideInput, as as UpdateProfileSelfInput, at as UploadAvatarResult, j as CreateResult, a1 as ProfileLocationInput, k as ExternalAccountInput, i as CreateExternalAccountResult, au as VerifyExternalAccountResult, E as EndorsementInput, ac as RefreshOrcidPublicationsResult, B as BulkHideProfileItemInput, P as HideProfileItemInput, ao as StatsResponse, g as AppRegistryEntry, M as HiddenApp, w as FilterOptions, aj as SearchFilters, ak as SearchResponse, an as SkillSearchResult, l as FeaturedProfile, am as SimilarProfile, v as FetchSuggestionsOptions, aq as SuggestionsResponse, G as FollowUserResult, o as FetchFollowListOptions, x as FollowListPage, H as FollowingResponse, q as FetchFollowingFeedOptions, p as FetchFollowProfilePageOptions, z as FollowProfilePageResponse, F as FeatureAllowlistResponse, m as FetchActivityFeedOptions, b as ActivityFeedResponse, e as ActivityTeaserResponse, L as HeatmapResponse, a as AccountCheckResult, ab as ReactionStatus, aa as ReactionResult, a9 as ReactionError, ai as RoadmapVotesResponse, C as CastRoadmapVoteResult, D as DeleteAccountResult, T as OrgClaimResult, _ as OrgProfileUpdateResult, U as OrgDomainChallengeResult, V as OrgDomainVerifyResult, X as OrgNotificationEmailAddResult, Y as OrgNotificationEmailRemoveResult } from './org-BZcAnLab.js';
3
+ import { S as SifaApiConfig, s as sifaQueryKeys, W as WriteResult, ad as RefreshPdsResult, ar as UpdateProfileOverrideInput, as as UpdateProfileSelfInput, at as UploadAvatarResult, j as CreateResult, a1 as ProfileLocationInput, k as ExternalAccountInput, i as CreateExternalAccountResult, au as VerifyExternalAccountResult, E as EndorsementInput, ac as RefreshOrcidPublicationsResult, B as BulkHideProfileItemInput, P as HideProfileItemInput, ao as StatsResponse, g as AppRegistryEntry, M as HiddenApp, w as FilterOptions, aj as SearchFilters, ak as SearchResponse, an as SkillSearchResult, l as FeaturedProfile, am as SimilarProfile, v as FetchSuggestionsOptions, aq as SuggestionsResponse, G as FollowUserResult, o as FetchFollowListOptions, x as FollowListPage, H as FollowingResponse, q as FetchFollowingFeedOptions, p as FetchFollowProfilePageOptions, z as FollowProfilePageResponse, F as FeatureAllowlistResponse, m as FetchActivityFeedOptions, b as ActivityFeedResponse, e as ActivityTeaserResponse, L as HeatmapResponse, a as AccountCheckResult, ab as ReactionStatus, aa as ReactionResult, a9 as ReactionError, ai as RoadmapVotesResponse, C as CastRoadmapVoteResult, D as DeleteAccountResult, T as OrgClaimResult, _ as OrgProfileUpdateResult, U as OrgDomainChallengeResult, V as OrgDomainVerifyResult, X as OrgNotificationEmailAddResult, Y as OrgNotificationEmailRemoveResult } from './org-Bxz__jbx.js';
4
4
  import * as _tanstack_react_query from '@tanstack/react-query';
5
5
  import { UseQueryOptions, UseMutationOptions, UseInfiniteQueryOptions, InfiniteData } from '@tanstack/react-query';
6
- import { d as Profile, e as ProfilePosition, G as SkillRef, E as ExternalAccount, S as SkillSuggestion, O as OrgFloorVerdict } from './adult-content-n2uy3rT3.js';
6
+ import { d as Profile, _ as ProfileView, e as ProfilePosition, a3 as SkillRef, E as ExternalAccount, S as SkillSuggestion, O as OrgFloorVerdict } from './adult-content-BOY_T6j3.js';
7
7
  import { m as EntitySearchResponse, E as EntitySearchResult, g as EntityMintDomainResponse, k as EntityResolveDomainResponse, r as EntitySelectResponse, p as EntitySelectRequest, F as FollowFeedPage, c as FeatureFlag } from './feed-D2ZV8Eaj.js';
8
8
  import { O as OrgClaimRequestInput, h as OrgProfileUpdateRequestInput, b as OrgDomainChallengeRequestInput, d as OrgDomainVerifyRequestInput, f as OrgNotificationEmailRequestInput } from './org-settings-CmaSX5ZI.js';
9
9
 
@@ -45,6 +45,15 @@ declare function useProfile(handleOrDid: string | undefined | null, options?: Om
45
45
  */
46
46
  declare function useAtFundLink(did: string | undefined | null, options?: Omit<UseQueryOptions<string | null, Error, string | null, ReturnType<typeof sifaQueryKeys.profile.atFundLink>>, 'queryKey' | 'queryFn'>): _tanstack_react_query.UseQueryResult<string | null, Error>;
47
47
 
48
+ /**
49
+ * React hook that reads the aggregated public profile view via the
50
+ * `id.sifa.getProfileView` XRPC query. Returns `null` data when the profile
51
+ * does not exist.
52
+ *
53
+ * Pass `{ enabled: false }` (or an empty `actor`) to defer the fetch.
54
+ */
55
+ declare function useGetProfileView(actor: string | undefined | null, options?: Omit<UseQueryOptions<ProfileView | null, Error, ProfileView | null, ReturnType<typeof sifaQueryKeys.profile.view>>, 'queryKey' | 'queryFn'>): _tanstack_react_query.UseQueryResult<NoInfer<ProfileView | null>, Error>;
56
+
48
57
  /**
49
58
  * React hook for updating the authenticated user's profile self record.
50
59
  * On success, invalidates the owner's profile cache.
@@ -691,4 +700,4 @@ declare function useRemoveOrgNotificationEmail(options?: Omit<UseMutationOptions
691
700
  email: string;
692
701
  }, unknown>;
693
702
 
694
- export { useFeatureAllowlist as $, type AddFeatureAllowlistVariables as A, useCreateExternalAccount as B, type CreateReactionVariables as C, type DeleteReactionVariables as D, useCreatePosition as E, type FollowVariables as F, useCreateProfileLocation as G, useCreateReaction as H, useCreateRecord as I, useCreateSkill as J, useDebouncedValue as K, useDeleteAccount as L, useDeleteAvatarOverride as M, useDeleteEducation as N, useDeleteExternalAccount as O, type PositionSkillLinkVariables as P, useDeletePosition as Q, type RemoveFeatureAllowlistVariables as R, SifaProvider as S, useDeleteProfileLocation as T, type UnfollowVariables as U, useDeleteReaction as V, useDeleteRecord as W, useDeleteSkill as X, useEndorsementCount as Y, useEntitySearch as Z, useExternalAccounts as _, type CreateRecordVariables as a, useUpdateSkill as a$, useFeaturedProfile as a0, useFollow as a1, useFollowers as a2, useFollowing as a3, useFollowingFeed as a4, useFollowingList as a5, useHeatmapData as a6, useHiddenApps as a7, useHideKeytraceClaim as a8, useHideOrcidPublication as a9, useSelectEntity as aA, useSetExternalAccountPrimary as aB, useSetPositionPrimary as aC, useSifaConfig as aD, useSimilarProfiles as aE, useSkillSuggestions as aF, useStats as aG, useSuggestionCount as aH, useSuggestions as aI, useUnfollow as aJ, useUnhideKeytraceClaim as aK, useUnhideOrcidPublication as aL, useUnhideProfileItem as aM, useUnhideSifaPublication as aN, useUnhideStandardPublication as aO, useUnlinkSkillFromPosition as aP, useUnrevealMarqueDomain as aQ, useUnsetExternalAccountPrimary as aR, useUnsetPositionPrimary as aS, useUpdateEducation as aT, useUpdateExternalAccount as aU, useUpdateOrgProfile as aV, useUpdatePosition as aW, useUpdateProfileLocation as aX, useUpdateProfileOverride as aY, useUpdateProfileSelf as aZ, useUpdateRecord as a_, useHideProfileItem as aa, useHideSifaPublication as ab, useHideStandardPublication as ac, useImportSearchEntities as ad, useLinkSkillToPosition as ae, useMintEntityDomain as af, useMutuals as ag, useMyRoadmapVotes as ah, useNetworkStreamCount as ai, useOrgClaim as aj, useOrgDomainChallenge as ak, useOrgDomainVerify as al, useOrgProfile as am, useProfile as an, useReactionStatus as ao, useRefreshOrcidPublications as ap, useRefreshPds as aq, useRemoveFeatureAllowlist as ar, useRemoveOrgNotificationEmail as as, useResetProfile as at, useResolveEntityDomain as au, useRetractRoadmapVote as av, useRevealMarqueDomain as aw, useRoadmapVotes as ax, useSearchFilters as ay, useSearchProfiles as az, type DeleteRecordVariables as b, useUploadAvatar as b0, useVerifyExternalAccount as b1, type SifaProviderProps as c, type UpdateEducationVariables as d, type UpdateExternalAccountVariables as e, type UpdatePositionVariables as f, type UpdateProfileLocationVariables as g, type UpdateRecordVariables as h, type UpdateSkillVariables as i, type UseEntitySearchOptions as j, useActivityTeaser as k, useAddFeatureAllowlist as l, useAddOrgNotificationEmail as m, useAppAccountCheck as n, useAppsRegistry as o, useAtFundLink as p, useBlueskySuggestions as q, useBulkHideProfileItems as r, useBulkHideStandardPublications as s, useBulkUnhideProfileItems as t, useActivityFeed as u, useBulkUnhideStandardPublications as v, useCanonicalSkillSearch as w, useCastRoadmapVote as x, useCreateEducation as y, useCreateEndorsement as z };
703
+ export { useFeatureAllowlist as $, type AddFeatureAllowlistVariables as A, useCreateExternalAccount as B, type CreateReactionVariables as C, type DeleteReactionVariables as D, useCreatePosition as E, type FollowVariables as F, useCreateProfileLocation as G, useCreateReaction as H, useCreateRecord as I, useCreateSkill as J, useDebouncedValue as K, useDeleteAccount as L, useDeleteAvatarOverride as M, useDeleteEducation as N, useDeleteExternalAccount as O, type PositionSkillLinkVariables as P, useDeletePosition as Q, type RemoveFeatureAllowlistVariables as R, SifaProvider as S, useDeleteProfileLocation as T, type UnfollowVariables as U, useDeleteReaction as V, useDeleteRecord as W, useDeleteSkill as X, useEndorsementCount as Y, useEntitySearch as Z, useExternalAccounts as _, type CreateRecordVariables as a, useUpdateRecord as a$, useFeaturedProfile as a0, useFollow as a1, useFollowers as a2, useFollowing as a3, useFollowingFeed as a4, useFollowingList as a5, useGetProfileView as a6, useHeatmapData as a7, useHiddenApps as a8, useHideKeytraceClaim as a9, useSearchProfiles as aA, useSelectEntity as aB, useSetExternalAccountPrimary as aC, useSetPositionPrimary as aD, useSifaConfig as aE, useSimilarProfiles as aF, useSkillSuggestions as aG, useStats as aH, useSuggestionCount as aI, useSuggestions as aJ, useUnfollow as aK, useUnhideKeytraceClaim as aL, useUnhideOrcidPublication as aM, useUnhideProfileItem as aN, useUnhideSifaPublication as aO, useUnhideStandardPublication as aP, useUnlinkSkillFromPosition as aQ, useUnrevealMarqueDomain as aR, useUnsetExternalAccountPrimary as aS, useUnsetPositionPrimary as aT, useUpdateEducation as aU, useUpdateExternalAccount as aV, useUpdateOrgProfile as aW, useUpdatePosition as aX, useUpdateProfileLocation as aY, useUpdateProfileOverride as aZ, useUpdateProfileSelf as a_, useHideOrcidPublication as aa, useHideProfileItem as ab, useHideSifaPublication as ac, useHideStandardPublication as ad, useImportSearchEntities as ae, useLinkSkillToPosition as af, useMintEntityDomain as ag, useMutuals as ah, useMyRoadmapVotes as ai, useNetworkStreamCount as aj, useOrgClaim as ak, useOrgDomainChallenge as al, useOrgDomainVerify as am, useOrgProfile as an, useProfile as ao, useReactionStatus as ap, useRefreshOrcidPublications as aq, useRefreshPds as ar, useRemoveFeatureAllowlist as as, useRemoveOrgNotificationEmail as at, useResetProfile as au, useResolveEntityDomain as av, useRetractRoadmapVote as aw, useRevealMarqueDomain as ax, useRoadmapVotes as ay, useSearchFilters as az, type DeleteRecordVariables as b, useUpdateSkill as b0, useUploadAvatar as b1, useVerifyExternalAccount as b2, type SifaProviderProps as c, type UpdateEducationVariables as d, type UpdateExternalAccountVariables as e, type UpdatePositionVariables as f, type UpdateProfileLocationVariables as g, type UpdateRecordVariables as h, type UpdateSkillVariables as i, type UseEntitySearchOptions as j, useActivityTeaser as k, useAddFeatureAllowlist as l, useAddOrgNotificationEmail as m, useAppAccountCheck as n, useAppsRegistry as o, useAtFundLink as p, useBlueskySuggestions as q, useBulkHideProfileItems as r, useBulkHideStandardPublications as s, useBulkUnhideProfileItems as t, useActivityFeed as u, useBulkUnhideStandardPublications as v, useCanonicalSkillSearch as w, useCastRoadmapVote as x, useCreateEducation as y, useCreateEndorsement as z };