@singi-labs/sifa-sdk 0.9.19 → 0.9.21
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/feed-DHTy7fUN.d.cts +254 -0
- package/dist/feed-DHTy7fUN.d.ts +254 -0
- package/dist/{index-DCpMh2Ny.d.cts → index-DYUYJxOs.d.cts} +1 -1
- package/dist/{index-DCpMh2Ny.d.ts → index-DYUYJxOs.d.ts} +1 -1
- package/dist/index.cjs +132 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -3
- package/dist/index.d.ts +4 -3
- package/dist/index.js +121 -5
- package/dist/index.js.map +1 -1
- package/dist/keys-D-vNPzXx.d.ts +1085 -0
- package/dist/keys-DRD79nDE.d.cts +1085 -0
- package/dist/query/fetchers/index.cjs +155 -1
- package/dist/query/fetchers/index.cjs.map +1 -1
- package/dist/query/fetchers/index.d.cts +6 -933
- package/dist/query/fetchers/index.d.ts +6 -933
- package/dist/query/fetchers/index.js +146 -2
- package/dist/query/fetchers/index.js.map +1 -1
- package/dist/query/hooks/index.cjs +2268 -0
- package/dist/query/hooks/index.cjs.map +1 -0
- package/dist/query/hooks/index.d.cts +479 -0
- package/dist/query/hooks/index.d.ts +479 -0
- package/dist/query/hooks/index.js +2178 -0
- package/dist/query/hooks/index.js.map +1 -0
- package/dist/query/index.cjs +340 -1
- package/dist/query/index.cjs.map +1 -1
- package/dist/query/index.d.cts +9 -352
- package/dist/query/index.d.ts +9 -352
- package/dist/query/index.js +322 -3
- package/dist/query/index.js.map +1 -1
- package/dist/schemas/index.cjs +102 -1
- package/dist/schemas/index.cjs.map +1 -1
- package/dist/schemas/index.d.cts +28 -2
- package/dist/schemas/index.d.ts +28 -2
- package/dist/schemas/index.js +91 -2
- package/dist/schemas/index.js.map +1 -1
- package/package.json +11 -1
package/dist/index.d.cts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { P as ProfileSkill, L as LocationValue, a as PdsProviderInfo, b as Profile } from './index-
|
|
2
|
-
export { A as ActiveApp,
|
|
3
|
-
export { EndorsementConfirmationRecord, EndorsementConfirmationRecordSchema, EndorsementRecord, EndorsementRecordSchema, GraphFollowRecord, GraphFollowRecordSchema, ProfileCertificationRecord, ProfileCertificationRecordSchema, ProfileCourseRecord, ProfileCourseRecordSchema, ProfileEducationRecord, ProfileEducationRecordSchema, ProfileExternalAccountRecord, ProfileExternalAccountRecordSchema, ProfileHonorRecord, ProfileHonorRecordSchema, ProfileLanguageRecord, ProfileLanguageRecordSchema, ProfilePositionRecord, ProfilePositionRecordSchema, ProfileProjectRecord, ProfileProjectRecordSchema, ProfilePublicationRecord, ProfilePublicationRecordSchema, ProfileSelfRecord, ProfileSelfRecordSchema, ProfileSkillRecord, ProfileSkillRecordSchema, ProfileVolunteeringRecord, ProfileVolunteeringRecordSchema, PublicationAuthor, PublicationAuthorSchema, atUriSchema, cidSchema, datetimeSchema, didSchema, languageTagSchema, maxGraphemes, selfLabelsSchema, strongRefSchema, uriSchema } from './schemas/index.cjs';
|
|
1
|
+
import { P as ProfileSkill, L as LocationValue, a as PdsProviderInfo, b as Profile } from './index-DYUYJxOs.cjs';
|
|
2
|
+
export { A as ActiveApp, c as Endorsement, d as EndorsementData, E as ExternalAccount, e as ExternalAccountKeytraceClaim, F as FeedItem, f as LanguageProficiency, g as ProfileCertification, h as ProfileCourse, i as ProfileEducation, j as ProfileHonor, k as ProfileIndustry, l as ProfileLanguage, m as ProfileLocation, n as ProfileOverrideSource, o as ProfilePosition, p as ProfileProject, q as ProfilePublication, r as ProfileVolunteering, s as PublicationContributor, t as SkillRef, S as SkillSuggestion, T as TrustStat, V as VerifiedAccount } from './index-DYUYJxOs.cjs';
|
|
3
|
+
export { EndorsementConfirmationRecord, EndorsementConfirmationRecordSchema, EndorsementRecord, EndorsementRecordSchema, GraphFollowRecord, GraphFollowRecordSchema, ProfileCertificationRecord, ProfileCertificationRecordSchema, ProfileCourseRecord, ProfileCourseRecordSchema, ProfileEducationRecord, ProfileEducationRecordSchema, ProfileExternalAccountRecord, ProfileExternalAccountRecordSchema, ProfileHonorRecord, ProfileHonorRecordSchema, ProfileLanguageRecord, ProfileLanguageRecordSchema, ProfilePositionRecord, ProfilePositionRecordSchema, ProfileProjectRecord, ProfileProjectRecordSchema, ProfilePublicationRecord, ProfilePublicationRecordSchema, ProfileSelfRecord, ProfileSelfRecordSchema, ProfileSkillRecord, ProfileSkillRecordSchema, ProfileVolunteeringRecord, ProfileVolunteeringRecordSchema, PublicationAuthor, PublicationAuthorSchema, atUriSchema, cidSchema, datetimeSchema, didSchema, languageTagSchema, makeGraphFollowRecordSchema, maxGraphemes, selfLabelsSchema, strongRefSchema, uriSchema } from './schemas/index.cjs';
|
|
4
|
+
export { A as AtmosphereFeedItem, d as AtmosphereFeedItemSchema, e as FEATURE_FLAGS, b as FeatureAllowlistEntry, f as FeatureAllowlistEntrySchema, c as FeatureFlag, g as FeedActor, h as FeedActorSchema, i as FeedCursor, j as FollowFeedItem, k as FollowFeedItemSchema, F as FollowFeedPage, l as FollowFeedPageSchema, a as FollowProfileItem, m as FollowProfilePage, n as FollowProfilePageSchema, o as FollowProfileSchema, S as SifaFeedItem, p as SifaFeedItemSchema, q as decodeFeedCursor, r as encodeFeedCursor } from './feed-DHTy7fUN.cjs';
|
|
4
5
|
import 'zod';
|
|
5
6
|
|
|
6
7
|
type ContinentCode = 'AF' | 'AN' | 'AS' | 'EU' | 'NA' | 'OC' | 'SA';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { P as ProfileSkill, L as LocationValue, a as PdsProviderInfo, b as Profile } from './index-
|
|
2
|
-
export { A as ActiveApp,
|
|
3
|
-
export { EndorsementConfirmationRecord, EndorsementConfirmationRecordSchema, EndorsementRecord, EndorsementRecordSchema, GraphFollowRecord, GraphFollowRecordSchema, ProfileCertificationRecord, ProfileCertificationRecordSchema, ProfileCourseRecord, ProfileCourseRecordSchema, ProfileEducationRecord, ProfileEducationRecordSchema, ProfileExternalAccountRecord, ProfileExternalAccountRecordSchema, ProfileHonorRecord, ProfileHonorRecordSchema, ProfileLanguageRecord, ProfileLanguageRecordSchema, ProfilePositionRecord, ProfilePositionRecordSchema, ProfileProjectRecord, ProfileProjectRecordSchema, ProfilePublicationRecord, ProfilePublicationRecordSchema, ProfileSelfRecord, ProfileSelfRecordSchema, ProfileSkillRecord, ProfileSkillRecordSchema, ProfileVolunteeringRecord, ProfileVolunteeringRecordSchema, PublicationAuthor, PublicationAuthorSchema, atUriSchema, cidSchema, datetimeSchema, didSchema, languageTagSchema, maxGraphemes, selfLabelsSchema, strongRefSchema, uriSchema } from './schemas/index.js';
|
|
1
|
+
import { P as ProfileSkill, L as LocationValue, a as PdsProviderInfo, b as Profile } from './index-DYUYJxOs.js';
|
|
2
|
+
export { A as ActiveApp, c as Endorsement, d as EndorsementData, E as ExternalAccount, e as ExternalAccountKeytraceClaim, F as FeedItem, f as LanguageProficiency, g as ProfileCertification, h as ProfileCourse, i as ProfileEducation, j as ProfileHonor, k as ProfileIndustry, l as ProfileLanguage, m as ProfileLocation, n as ProfileOverrideSource, o as ProfilePosition, p as ProfileProject, q as ProfilePublication, r as ProfileVolunteering, s as PublicationContributor, t as SkillRef, S as SkillSuggestion, T as TrustStat, V as VerifiedAccount } from './index-DYUYJxOs.js';
|
|
3
|
+
export { EndorsementConfirmationRecord, EndorsementConfirmationRecordSchema, EndorsementRecord, EndorsementRecordSchema, GraphFollowRecord, GraphFollowRecordSchema, ProfileCertificationRecord, ProfileCertificationRecordSchema, ProfileCourseRecord, ProfileCourseRecordSchema, ProfileEducationRecord, ProfileEducationRecordSchema, ProfileExternalAccountRecord, ProfileExternalAccountRecordSchema, ProfileHonorRecord, ProfileHonorRecordSchema, ProfileLanguageRecord, ProfileLanguageRecordSchema, ProfilePositionRecord, ProfilePositionRecordSchema, ProfileProjectRecord, ProfileProjectRecordSchema, ProfilePublicationRecord, ProfilePublicationRecordSchema, ProfileSelfRecord, ProfileSelfRecordSchema, ProfileSkillRecord, ProfileSkillRecordSchema, ProfileVolunteeringRecord, ProfileVolunteeringRecordSchema, PublicationAuthor, PublicationAuthorSchema, atUriSchema, cidSchema, datetimeSchema, didSchema, languageTagSchema, makeGraphFollowRecordSchema, maxGraphemes, selfLabelsSchema, strongRefSchema, uriSchema } from './schemas/index.js';
|
|
4
|
+
export { A as AtmosphereFeedItem, d as AtmosphereFeedItemSchema, e as FEATURE_FLAGS, b as FeatureAllowlistEntry, f as FeatureAllowlistEntrySchema, c as FeatureFlag, g as FeedActor, h as FeedActorSchema, i as FeedCursor, j as FollowFeedItem, k as FollowFeedItemSchema, F as FollowFeedPage, l as FollowFeedPageSchema, a as FollowProfileItem, m as FollowProfilePage, n as FollowProfilePageSchema, o as FollowProfileSchema, S as SifaFeedItem, p as SifaFeedItemSchema, q as decodeFeedCursor, r as encodeFeedCursor } from './feed-DHTy7fUN.js';
|
|
4
5
|
import 'zod';
|
|
5
6
|
|
|
6
7
|
type ContinentCode = 'AF' | 'AN' | 'AS' | 'EU' | 'NA' | 'OC' | 'SA';
|
package/dist/index.js
CHANGED
|
@@ -1434,7 +1434,7 @@ var APP_URL_PATTERNS = Object.freeze({
|
|
|
1434
1434
|
profileUrlPattern: "https://grain.social/profile/{did}"
|
|
1435
1435
|
},
|
|
1436
1436
|
youandme: { profileUrlPattern: "https://youandme.at" },
|
|
1437
|
-
anisota:
|
|
1437
|
+
// anisota: upgraded with per-record URL pattern below.
|
|
1438
1438
|
margin: { profileUrlPattern: "https://margin.at" },
|
|
1439
1439
|
beaconbits: { profileUrlPattern: "https://beaconbits.app" },
|
|
1440
1440
|
bookhive: { profileUrlPattern: "https://bookhive.buzz/profile/{handle}" },
|
|
@@ -1461,6 +1461,29 @@ var APP_URL_PATTERNS = Object.freeze({
|
|
|
1461
1461
|
// at the marketing site.
|
|
1462
1462
|
urlPattern: "https://leaflet.pub/{rkey}",
|
|
1463
1463
|
profileUrlPattern: "https://leaflet.pub"
|
|
1464
|
+
},
|
|
1465
|
+
spark: {
|
|
1466
|
+
// Verified live: GET /post/{did}/{rkey} returns 200.
|
|
1467
|
+
urlPattern: "https://sprk.so/post/{did}/{rkey}",
|
|
1468
|
+
profileUrlPattern: "https://sprk.so/profile/{handle}"
|
|
1469
|
+
},
|
|
1470
|
+
anisota: {
|
|
1471
|
+
urlPattern: "https://anisota.net/post/{did}/{rkey}",
|
|
1472
|
+
profileUrlPattern: "https://anisota.net/profile/{handle}"
|
|
1473
|
+
},
|
|
1474
|
+
nooki: {
|
|
1475
|
+
// Per-post URLs use slug-based routing (e.g. /post/{slug}), not rkey —
|
|
1476
|
+
// can't be constructed from a record. Profile fallback only.
|
|
1477
|
+
profileUrlPattern: "https://nooki.me/user/{handle}"
|
|
1478
|
+
},
|
|
1479
|
+
atstore: {
|
|
1480
|
+
// SPA — per-record URLs require JS routing. Profile fallback only.
|
|
1481
|
+
profileUrlPattern: "https://atstore.fyi/@{handle}"
|
|
1482
|
+
},
|
|
1483
|
+
plyr: {
|
|
1484
|
+
// SPA — per-record URLs require JS routing. plyr.fm doesn't expose a
|
|
1485
|
+
// public per-handle profile page server-side either; falls back to root.
|
|
1486
|
+
profileUrlPattern: "https://plyr.fm"
|
|
1464
1487
|
}
|
|
1465
1488
|
});
|
|
1466
1489
|
var COLLECTION_TO_APP = [
|
|
@@ -1497,7 +1520,11 @@ var COLLECTION_TO_APP = [
|
|
|
1497
1520
|
["social.colibri.", "colibri"],
|
|
1498
1521
|
["social.passports.", "passports"],
|
|
1499
1522
|
["fyi.asq.", "asq"],
|
|
1500
|
-
["pub.leaflet.", "leaflet"]
|
|
1523
|
+
["pub.leaflet.", "leaflet"],
|
|
1524
|
+
["so.sprk.", "spark"],
|
|
1525
|
+
["community.nooki.", "nooki"],
|
|
1526
|
+
["fyi.atstore.", "atstore"],
|
|
1527
|
+
["fm.plyr.", "plyr"]
|
|
1501
1528
|
];
|
|
1502
1529
|
|
|
1503
1530
|
// src/cards/resolve-card-url.ts
|
|
@@ -1752,8 +1779,97 @@ var EndorsementRecordSchema = z.object({
|
|
|
1752
1779
|
});
|
|
1753
1780
|
var GraphFollowRecordSchema = z.object({
|
|
1754
1781
|
subject: didSchema,
|
|
1755
|
-
createdAt: datetimeSchema
|
|
1782
|
+
createdAt: datetimeSchema,
|
|
1783
|
+
note: z.string().refine(maxGraphemes(200), "note must be at most 200 graphemes").optional()
|
|
1784
|
+
});
|
|
1785
|
+
function makeGraphFollowRecordSchema(followerDid) {
|
|
1786
|
+
return GraphFollowRecordSchema.refine((record) => record.subject !== followerDid, {
|
|
1787
|
+
message: "Self-follow is not allowed",
|
|
1788
|
+
path: ["subject"]
|
|
1789
|
+
});
|
|
1790
|
+
}
|
|
1791
|
+
var FollowProfileSchema = z.object({
|
|
1792
|
+
did: didSchema,
|
|
1793
|
+
handle: z.string(),
|
|
1794
|
+
displayName: z.string().optional(),
|
|
1795
|
+
headline: z.string().optional(),
|
|
1796
|
+
avatarUrl: z.string().optional(),
|
|
1797
|
+
source: z.string(),
|
|
1798
|
+
claimed: z.boolean(),
|
|
1799
|
+
followedAt: datetimeSchema,
|
|
1800
|
+
blueskyVerified: z.boolean().optional(),
|
|
1801
|
+
blueskyVerifiedAt: datetimeSchema.nullable().optional()
|
|
1802
|
+
});
|
|
1803
|
+
var FollowProfilePageSchema = z.object({
|
|
1804
|
+
items: z.array(FollowProfileSchema),
|
|
1805
|
+
cursor: z.string().nullable()
|
|
1806
|
+
});
|
|
1807
|
+
var FeatureAllowlistEntrySchema = z.object({
|
|
1808
|
+
did: didSchema,
|
|
1809
|
+
addedAt: datetimeSchema,
|
|
1810
|
+
note: z.string().nullable().optional()
|
|
1756
1811
|
});
|
|
1812
|
+
var FEATURE_FLAGS = ["FEED_V5_ENABLED"];
|
|
1813
|
+
var FeedActorSchema = z.object({
|
|
1814
|
+
did: didSchema,
|
|
1815
|
+
handle: z.string(),
|
|
1816
|
+
displayName: z.string().optional(),
|
|
1817
|
+
avatarUrl: z.string().optional()
|
|
1818
|
+
});
|
|
1819
|
+
var FeedItemBaseSchema = z.object({
|
|
1820
|
+
id: z.string(),
|
|
1821
|
+
actor: FeedActorSchema,
|
|
1822
|
+
indexedAt: datetimeSchema,
|
|
1823
|
+
eventType: z.string()
|
|
1824
|
+
});
|
|
1825
|
+
var SifaFeedItemSchema = FeedItemBaseSchema.extend({
|
|
1826
|
+
source: z.literal("sifa"),
|
|
1827
|
+
appId: z.literal("sifa").optional(),
|
|
1828
|
+
payload: z.record(z.string(), z.unknown())
|
|
1829
|
+
});
|
|
1830
|
+
var AtmosphereFeedItemSchema = FeedItemBaseSchema.extend({
|
|
1831
|
+
source: z.literal("atmosphere"),
|
|
1832
|
+
appId: z.string(),
|
|
1833
|
+
uri: atUriSchema.optional(),
|
|
1834
|
+
cid: cidSchema.optional(),
|
|
1835
|
+
payload: z.record(z.string(), z.unknown())
|
|
1836
|
+
});
|
|
1837
|
+
var FollowFeedItemSchema = z.discriminatedUnion("source", [
|
|
1838
|
+
SifaFeedItemSchema,
|
|
1839
|
+
AtmosphereFeedItemSchema
|
|
1840
|
+
]);
|
|
1841
|
+
var FollowFeedPageSchema = z.object({
|
|
1842
|
+
items: z.array(FollowFeedItemSchema),
|
|
1843
|
+
cursor: z.string().nullable()
|
|
1844
|
+
});
|
|
1845
|
+
var FeedCursorSchema = z.object({
|
|
1846
|
+
indexedAt: datetimeSchema,
|
|
1847
|
+
source: z.union([z.literal("sifa"), z.literal("atmosphere")]),
|
|
1848
|
+
id: z.string().min(1)
|
|
1849
|
+
});
|
|
1850
|
+
function toBase64Url(input) {
|
|
1851
|
+
const g = globalThis;
|
|
1852
|
+
const b64 = typeof g.btoa === "function" ? g.btoa(unescape(encodeURIComponent(input))) : g.Buffer.from(input, "utf-8").toString("base64");
|
|
1853
|
+
let end = b64.length;
|
|
1854
|
+
while (end > 0 && b64.charCodeAt(end - 1) === 61) end--;
|
|
1855
|
+
return b64.slice(0, end).replace(/\+/g, "-").replace(/\//g, "_");
|
|
1856
|
+
}
|
|
1857
|
+
function fromBase64Url(input) {
|
|
1858
|
+
const padded = input.replace(/-/g, "+").replace(/_/g, "/") + "===".slice((input.length + 3) % 4);
|
|
1859
|
+
const g = globalThis;
|
|
1860
|
+
if (typeof g.atob === "function") {
|
|
1861
|
+
return decodeURIComponent(escape(g.atob(padded)));
|
|
1862
|
+
}
|
|
1863
|
+
return g.Buffer.from(padded, "base64").toString("utf-8");
|
|
1864
|
+
}
|
|
1865
|
+
function encodeFeedCursor(cursor) {
|
|
1866
|
+
return toBase64Url(JSON.stringify(cursor));
|
|
1867
|
+
}
|
|
1868
|
+
function decodeFeedCursor(encoded) {
|
|
1869
|
+
const json = fromBase64Url(encoded);
|
|
1870
|
+
const parsed2 = JSON.parse(json);
|
|
1871
|
+
return FeedCursorSchema.parse(parsed2);
|
|
1872
|
+
}
|
|
1757
1873
|
var ProfileCertificationRecordSchema = z.object({
|
|
1758
1874
|
name: z.string().min(1).refine(maxGraphemes(100)).max(1e3),
|
|
1759
1875
|
authority: z.string().refine(maxGraphemes(100)).max(1e3).optional(),
|
|
@@ -1875,8 +1991,8 @@ var ProfileVolunteeringRecordSchema = z.object({
|
|
|
1875
1991
|
});
|
|
1876
1992
|
|
|
1877
1993
|
// src/index.ts
|
|
1878
|
-
var SIFA_SDK_VERSION = "0.9.
|
|
1994
|
+
var SIFA_SDK_VERSION = "0.9.21";
|
|
1879
1995
|
|
|
1880
|
-
export { ACTIVITY_TIERS, ACTIVITY_VISIBILITY_RULES, APP_URL_PATTERNS, CATEGORY_LABELS, CATEGORY_ORDER, COLLECTION_TO_APP, COMPLETENESS_MAX_SCORE, CONTINENTS, COUNTRIES, DIMENSIONS_MAX_SCORE, EMPLOYMENT_TYPE_GROUPS, EMPLOYMENT_TYPE_LABELS, EndorsementConfirmationRecordSchema, EndorsementRecordSchema, GraphFollowRecordSchema, INDUSTRY_OPTIONS, MIN_SKILLS, OPEN_TO_OPTIONS, PLATFORM_LABELS, PLATFORM_OPTIONS, ProfileCertificationRecordSchema, ProfileCourseRecordSchema, ProfileEducationRecordSchema, ProfileExternalAccountRecordSchema, ProfileHonorRecordSchema, ProfileLanguageRecordSchema, ProfilePositionRecordSchema, ProfileProjectRecordSchema, ProfilePublicationRecordSchema, ProfileSelfRecordSchema, ProfileSkillRecordSchema, ProfileVolunteeringRecordSchema, PublicationAuthorSchema, SIFA_SDK_VERSION, SKILL_CATEGORIES, WORKPLACE_TYPE_LABELS, WORKPLACE_TYPE_OPTIONS, atUriSchema, certDateExtractor, cidSchema, completenessPercent, completenessScore, contrastRatio, countFilledDimensions, countryCodeToFlag, dateRangeExtractor, datetimeSchema, dedupeSkills, detectPdsProvider, didSchema, dimensionsFromInputs, findIndustry, formatDistanceToNow, formatLocation, formatRelativeTime, getActivityTaxonomyVersion, getActivityTier, getAppIdForCollection, getContinent, getDisplayLabel, getEmploymentTypeLabel, getFaviconUrl, getFilledDimensionsMap, getHandleStem, getIndustryLabelKey, getLexiconEntry, getOpenToLabelKey, getPdsDisplayName, getPlatformLabel, getTierMeta, getWorkplaceTypeLabel, groupSkillsByCategory, isKnownPlatform, isValidRgbColor, isVisibleActivityItem, languageTagSchema, lexiconDateExtractor, limitCombiningMarks, maxGraphemes, meetsContrastAA, parseLocationString, pdsProviderFromApi, pickPrimaryPosition, profileToDimensionInputs, relativeLuminance, resolveCardUrl, rgbToString, sanitizeDisplayText, sanitizeHandleInput, selfLabelsSchema, singleDateExtractor, sortByDateDesc, strongRefSchema, truncateGraphemes, uriSchema };
|
|
1996
|
+
export { ACTIVITY_TIERS, ACTIVITY_VISIBILITY_RULES, APP_URL_PATTERNS, AtmosphereFeedItemSchema, CATEGORY_LABELS, CATEGORY_ORDER, COLLECTION_TO_APP, COMPLETENESS_MAX_SCORE, CONTINENTS, COUNTRIES, DIMENSIONS_MAX_SCORE, EMPLOYMENT_TYPE_GROUPS, EMPLOYMENT_TYPE_LABELS, EndorsementConfirmationRecordSchema, EndorsementRecordSchema, FEATURE_FLAGS, FeatureAllowlistEntrySchema, FeedActorSchema, FollowFeedItemSchema, FollowFeedPageSchema, FollowProfilePageSchema, FollowProfileSchema, GraphFollowRecordSchema, INDUSTRY_OPTIONS, MIN_SKILLS, OPEN_TO_OPTIONS, PLATFORM_LABELS, PLATFORM_OPTIONS, ProfileCertificationRecordSchema, ProfileCourseRecordSchema, ProfileEducationRecordSchema, ProfileExternalAccountRecordSchema, ProfileHonorRecordSchema, ProfileLanguageRecordSchema, ProfilePositionRecordSchema, ProfileProjectRecordSchema, ProfilePublicationRecordSchema, ProfileSelfRecordSchema, ProfileSkillRecordSchema, ProfileVolunteeringRecordSchema, PublicationAuthorSchema, SIFA_SDK_VERSION, SKILL_CATEGORIES, SifaFeedItemSchema, WORKPLACE_TYPE_LABELS, WORKPLACE_TYPE_OPTIONS, atUriSchema, certDateExtractor, cidSchema, completenessPercent, completenessScore, contrastRatio, countFilledDimensions, countryCodeToFlag, dateRangeExtractor, datetimeSchema, decodeFeedCursor, dedupeSkills, detectPdsProvider, didSchema, dimensionsFromInputs, encodeFeedCursor, findIndustry, formatDistanceToNow, formatLocation, formatRelativeTime, getActivityTaxonomyVersion, getActivityTier, getAppIdForCollection, getContinent, getDisplayLabel, getEmploymentTypeLabel, getFaviconUrl, getFilledDimensionsMap, getHandleStem, getIndustryLabelKey, getLexiconEntry, getOpenToLabelKey, getPdsDisplayName, getPlatformLabel, getTierMeta, getWorkplaceTypeLabel, groupSkillsByCategory, isKnownPlatform, isValidRgbColor, isVisibleActivityItem, languageTagSchema, lexiconDateExtractor, limitCombiningMarks, makeGraphFollowRecordSchema, maxGraphemes, meetsContrastAA, parseLocationString, pdsProviderFromApi, pickPrimaryPosition, profileToDimensionInputs, relativeLuminance, resolveCardUrl, rgbToString, sanitizeDisplayText, sanitizeHandleInput, selfLabelsSchema, singleDateExtractor, sortByDateDesc, strongRefSchema, truncateGraphemes, uriSchema };
|
|
1881
1997
|
//# sourceMappingURL=index.js.map
|
|
1882
1998
|
//# sourceMappingURL=index.js.map
|