@singi-labs/sifa-sdk 0.9.18 → 0.9.20
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 +114 -3
- 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 +103 -4
- 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 +14 -4
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
|
@@ -1452,6 +1452,15 @@ var APP_URL_PATTERNS = Object.freeze({
|
|
|
1452
1452
|
// Per-record URLs don't exist on passports.social — its SvelteKit routes
|
|
1453
1453
|
// stop at /profile/{handle}/{passport_slug}. Profile-level fallback only.
|
|
1454
1454
|
profileUrlPattern: "https://passports.social/profile/{handle}"
|
|
1455
|
+
},
|
|
1456
|
+
leaflet: {
|
|
1457
|
+
// Per-document URLs are short and rkey-only: https://leaflet.pub/{rkey}.
|
|
1458
|
+
// Each publication has its own base_path subdomain (e.g. zzstoatzz.leaflet.pub)
|
|
1459
|
+
// but the canonical short URL renders the same document. There is no
|
|
1460
|
+
// per-user profile route on leaflet.pub, so the profile fallback points
|
|
1461
|
+
// at the marketing site.
|
|
1462
|
+
urlPattern: "https://leaflet.pub/{rkey}",
|
|
1463
|
+
profileUrlPattern: "https://leaflet.pub"
|
|
1455
1464
|
}
|
|
1456
1465
|
});
|
|
1457
1466
|
var COLLECTION_TO_APP = [
|
|
@@ -1487,7 +1496,8 @@ var COLLECTION_TO_APP = [
|
|
|
1487
1496
|
["buzz.bookhive.", "bookhive"],
|
|
1488
1497
|
["social.colibri.", "colibri"],
|
|
1489
1498
|
["social.passports.", "passports"],
|
|
1490
|
-
["fyi.asq.", "asq"]
|
|
1499
|
+
["fyi.asq.", "asq"],
|
|
1500
|
+
["pub.leaflet.", "leaflet"]
|
|
1491
1501
|
];
|
|
1492
1502
|
|
|
1493
1503
|
// src/cards/resolve-card-url.ts
|
|
@@ -1742,8 +1752,97 @@ var EndorsementRecordSchema = z.object({
|
|
|
1742
1752
|
});
|
|
1743
1753
|
var GraphFollowRecordSchema = z.object({
|
|
1744
1754
|
subject: didSchema,
|
|
1745
|
-
createdAt: datetimeSchema
|
|
1755
|
+
createdAt: datetimeSchema,
|
|
1756
|
+
note: z.string().refine(maxGraphemes(200), "note must be at most 200 graphemes").optional()
|
|
1757
|
+
});
|
|
1758
|
+
function makeGraphFollowRecordSchema(followerDid) {
|
|
1759
|
+
return GraphFollowRecordSchema.refine((record) => record.subject !== followerDid, {
|
|
1760
|
+
message: "Self-follow is not allowed",
|
|
1761
|
+
path: ["subject"]
|
|
1762
|
+
});
|
|
1763
|
+
}
|
|
1764
|
+
var FollowProfileSchema = z.object({
|
|
1765
|
+
did: didSchema,
|
|
1766
|
+
handle: z.string(),
|
|
1767
|
+
displayName: z.string().optional(),
|
|
1768
|
+
headline: z.string().optional(),
|
|
1769
|
+
avatarUrl: z.string().optional(),
|
|
1770
|
+
source: z.string(),
|
|
1771
|
+
claimed: z.boolean(),
|
|
1772
|
+
followedAt: datetimeSchema,
|
|
1773
|
+
blueskyVerified: z.boolean().optional(),
|
|
1774
|
+
blueskyVerifiedAt: datetimeSchema.nullable().optional()
|
|
1775
|
+
});
|
|
1776
|
+
var FollowProfilePageSchema = z.object({
|
|
1777
|
+
items: z.array(FollowProfileSchema),
|
|
1778
|
+
cursor: z.string().nullable()
|
|
1779
|
+
});
|
|
1780
|
+
var FeatureAllowlistEntrySchema = z.object({
|
|
1781
|
+
did: didSchema,
|
|
1782
|
+
addedAt: datetimeSchema,
|
|
1783
|
+
note: z.string().nullable().optional()
|
|
1784
|
+
});
|
|
1785
|
+
var FEATURE_FLAGS = ["FEED_V5_ENABLED"];
|
|
1786
|
+
var FeedActorSchema = z.object({
|
|
1787
|
+
did: didSchema,
|
|
1788
|
+
handle: z.string(),
|
|
1789
|
+
displayName: z.string().optional(),
|
|
1790
|
+
avatarUrl: z.string().optional()
|
|
1791
|
+
});
|
|
1792
|
+
var FeedItemBaseSchema = z.object({
|
|
1793
|
+
id: z.string(),
|
|
1794
|
+
actor: FeedActorSchema,
|
|
1795
|
+
indexedAt: datetimeSchema,
|
|
1796
|
+
eventType: z.string()
|
|
1746
1797
|
});
|
|
1798
|
+
var SifaFeedItemSchema = FeedItemBaseSchema.extend({
|
|
1799
|
+
source: z.literal("sifa"),
|
|
1800
|
+
appId: z.literal("sifa").optional(),
|
|
1801
|
+
payload: z.record(z.string(), z.unknown())
|
|
1802
|
+
});
|
|
1803
|
+
var AtmosphereFeedItemSchema = FeedItemBaseSchema.extend({
|
|
1804
|
+
source: z.literal("atmosphere"),
|
|
1805
|
+
appId: z.string(),
|
|
1806
|
+
uri: atUriSchema.optional(),
|
|
1807
|
+
cid: cidSchema.optional(),
|
|
1808
|
+
payload: z.record(z.string(), z.unknown())
|
|
1809
|
+
});
|
|
1810
|
+
var FollowFeedItemSchema = z.discriminatedUnion("source", [
|
|
1811
|
+
SifaFeedItemSchema,
|
|
1812
|
+
AtmosphereFeedItemSchema
|
|
1813
|
+
]);
|
|
1814
|
+
var FollowFeedPageSchema = z.object({
|
|
1815
|
+
items: z.array(FollowFeedItemSchema),
|
|
1816
|
+
cursor: z.string().nullable()
|
|
1817
|
+
});
|
|
1818
|
+
var FeedCursorSchema = z.object({
|
|
1819
|
+
indexedAt: datetimeSchema,
|
|
1820
|
+
source: z.union([z.literal("sifa"), z.literal("atmosphere")]),
|
|
1821
|
+
id: z.string().min(1)
|
|
1822
|
+
});
|
|
1823
|
+
function toBase64Url(input) {
|
|
1824
|
+
const g = globalThis;
|
|
1825
|
+
const b64 = typeof g.btoa === "function" ? g.btoa(unescape(encodeURIComponent(input))) : g.Buffer.from(input, "utf-8").toString("base64");
|
|
1826
|
+
let end = b64.length;
|
|
1827
|
+
while (end > 0 && b64.charCodeAt(end - 1) === 61) end--;
|
|
1828
|
+
return b64.slice(0, end).replace(/\+/g, "-").replace(/\//g, "_");
|
|
1829
|
+
}
|
|
1830
|
+
function fromBase64Url(input) {
|
|
1831
|
+
const padded = input.replace(/-/g, "+").replace(/_/g, "/") + "===".slice((input.length + 3) % 4);
|
|
1832
|
+
const g = globalThis;
|
|
1833
|
+
if (typeof g.atob === "function") {
|
|
1834
|
+
return decodeURIComponent(escape(g.atob(padded)));
|
|
1835
|
+
}
|
|
1836
|
+
return g.Buffer.from(padded, "base64").toString("utf-8");
|
|
1837
|
+
}
|
|
1838
|
+
function encodeFeedCursor(cursor) {
|
|
1839
|
+
return toBase64Url(JSON.stringify(cursor));
|
|
1840
|
+
}
|
|
1841
|
+
function decodeFeedCursor(encoded) {
|
|
1842
|
+
const json = fromBase64Url(encoded);
|
|
1843
|
+
const parsed2 = JSON.parse(json);
|
|
1844
|
+
return FeedCursorSchema.parse(parsed2);
|
|
1845
|
+
}
|
|
1747
1846
|
var ProfileCertificationRecordSchema = z.object({
|
|
1748
1847
|
name: z.string().min(1).refine(maxGraphemes(100)).max(1e3),
|
|
1749
1848
|
authority: z.string().refine(maxGraphemes(100)).max(1e3).optional(),
|
|
@@ -1865,8 +1964,8 @@ var ProfileVolunteeringRecordSchema = z.object({
|
|
|
1865
1964
|
});
|
|
1866
1965
|
|
|
1867
1966
|
// src/index.ts
|
|
1868
|
-
var SIFA_SDK_VERSION = "0.9.
|
|
1967
|
+
var SIFA_SDK_VERSION = "0.9.20";
|
|
1869
1968
|
|
|
1870
|
-
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 };
|
|
1969
|
+
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 };
|
|
1871
1970
|
//# sourceMappingURL=index.js.map
|
|
1872
1971
|
//# sourceMappingURL=index.js.map
|