@singi-labs/sifa-sdk 0.12.30 → 0.12.31

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/index.cjs CHANGED
@@ -4723,8 +4723,104 @@ var ProfileVolunteeringRecordSchema = zod.z.object({
4723
4723
  createdAt: datetimeSchema
4724
4724
  });
4725
4725
 
4726
+ // src/roadmap/index.ts
4727
+ var ROADMAP_ISSUES_REPO = "singi-labs/sifa-workspace";
4728
+ var ROADMAP_ITEM_META = {
4729
+ endorsementsAttestations: {
4730
+ description: "Let colleagues vouch for your skills and experience, recorded as attestations you carry with you.",
4731
+ issues: [3, 166]
4732
+ },
4733
+ notifications: {
4734
+ description: "Get told when someone endorses you, links a company, or acts on your profile.",
4735
+ issues: [158]
4736
+ },
4737
+ verifiedConnections: {
4738
+ description: "Confirm real working relationships, not just follows.",
4739
+ issues: []
4740
+ },
4741
+ profileAnalytics: {
4742
+ description: "See who views your profile and how people find you.",
4743
+ issues: []
4744
+ },
4745
+ jobProfiles: {
4746
+ description: "Structured work history that stays with your identity across the network.",
4747
+ issues: [102]
4748
+ },
4749
+ eventRsvp: {
4750
+ description: "Show the talks and events you're attending or speaking at.",
4751
+ issues: [214]
4752
+ },
4753
+ companyPages: {
4754
+ description: "Claimable organization pages that link the people who work there.",
4755
+ issues: [73]
4756
+ },
4757
+ advancedSearch: {
4758
+ description: "Search across categories, with filters and forgiving name matching.",
4759
+ issues: [5]
4760
+ },
4761
+ multiAccountLinking: {
4762
+ description: "Tie several atproto accounts to one professional identity.",
4763
+ issues: [8]
4764
+ },
4765
+ mobileApps: {
4766
+ description: "Native iOS and Android apps.",
4767
+ issues: [114]
4768
+ },
4769
+ atmosphereStream: {
4770
+ description: "One feed that gathers your activity from across the atproto network.",
4771
+ issues: [7, 12]
4772
+ },
4773
+ localizationMultiLanguage: {
4774
+ description: "The interface in your own language.",
4775
+ issues: [218]
4776
+ },
4777
+ rssFediverseIngestion: {
4778
+ description: "Pull in posts from RSS feeds and the Fediverse.",
4779
+ issues: [111]
4780
+ },
4781
+ githubFeedIngestion: {
4782
+ description: "Bring your GitHub activity into your track record.",
4783
+ issues: [95]
4784
+ },
4785
+ compensationInformation: {
4786
+ description: "Add optional pay and compensation context to your roles.",
4787
+ issues: [81]
4788
+ },
4789
+ embedCustomization: {
4790
+ description: "Choose which fields show in your embeddable profile card.",
4791
+ issues: [117]
4792
+ },
4793
+ academicLexicon: {
4794
+ description: "Schema and features built for researchers and academics.",
4795
+ issues: [119, 148]
4796
+ },
4797
+ journalismLexicon: {
4798
+ description: "Schema and features built for journalists.",
4799
+ issues: [121]
4800
+ },
4801
+ skillEvidenceGithub: {
4802
+ description: "Back up skill claims with the languages in your GitHub repositories.",
4803
+ issues: [107]
4804
+ },
4805
+ latexCvExport: {
4806
+ description: "Export your profile as a LaTeX CV.",
4807
+ issues: [113]
4808
+ },
4809
+ jsonResumeImportExport: {
4810
+ description: "Move your profile in and out using the JSON Resume standard.",
4811
+ issues: [151]
4812
+ },
4813
+ linkedClaimsResearch: {
4814
+ description: "Exploring the LinkedClaims spec for portable, verifiable endorsements.",
4815
+ issues: [155]
4816
+ }
4817
+ };
4818
+ function roadmapIssueUrl(issue) {
4819
+ return `https://github.com/${ROADMAP_ISSUES_REPO}/issues/${issue}`;
4820
+ }
4821
+
4726
4822
  // src/index.ts
4727
- var SIFA_SDK_VERSION = "0.12.30";
4823
+ var SIFA_SDK_VERSION = "0.12.31";
4728
4824
 
4729
4825
  exports.ACTIVITY_TIERS = ACTIVITY_TIERS;
4730
4826
  exports.ACTIVITY_VERBS = ACTIVITY_VERBS;
@@ -4810,6 +4906,8 @@ exports.ProfileSelfRecordSchema = ProfileSelfRecordSchema;
4810
4906
  exports.ProfileSkillRecordSchema = ProfileSkillRecordSchema;
4811
4907
  exports.ProfileVolunteeringRecordSchema = ProfileVolunteeringRecordSchema;
4812
4908
  exports.PublicationAuthorSchema = PublicationAuthorSchema;
4909
+ exports.ROADMAP_ISSUES_REPO = ROADMAP_ISSUES_REPO;
4910
+ exports.ROADMAP_ITEM_META = ROADMAP_ITEM_META;
4813
4911
  exports.SECTION_GROUPS = SECTION_GROUPS;
4814
4912
  exports.SECTION_LABELS = SECTION_LABELS;
4815
4913
  exports.SIFA_SDK_VERSION = SIFA_SDK_VERSION;
@@ -4933,6 +5031,7 @@ exports.resolveCardUrl = resolveCardUrl;
4933
5031
  exports.resolveEmbed = resolveEmbed;
4934
5032
  exports.resolveVerifierProvider = resolveVerifierProvider;
4935
5033
  exports.rgbToString = rgbToString;
5034
+ exports.roadmapIssueUrl = roadmapIssueUrl;
4936
5035
  exports.sanitizeDisplayText = sanitizeDisplayText;
4937
5036
  exports.sanitizeHandleInput = sanitizeHandleInput;
4938
5037
  exports.searchResultDisambiguation = searchResultDisambiguation;