@singi-labs/sifa-sdk 0.12.72 → 0.12.74
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 +24 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +6 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +24 -2
- package/dist/index.js.map +1 -1
- package/dist/query/hooks/index.cjs +201 -102
- package/dist/query/hooks/index.cjs.map +1 -1
- package/dist/query/hooks/index.js +201 -102
- package/dist/query/hooks/index.js.map +1 -1
- package/dist/query/index.cjs +209 -106
- package/dist/query/index.cjs.map +1 -1
- package/dist/query/index.js +209 -106
- package/dist/query/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -346,6 +346,9 @@ declare const APP_CATEGORIES: {
|
|
|
346
346
|
readonly Social: {
|
|
347
347
|
readonly phosphorIcon: "UsersThree";
|
|
348
348
|
};
|
|
349
|
+
readonly Translations: {
|
|
350
|
+
readonly phosphorIcon: "Translate";
|
|
351
|
+
};
|
|
349
352
|
readonly Verification: {
|
|
350
353
|
readonly phosphorIcon: "Key";
|
|
351
354
|
};
|
|
@@ -428,6 +431,9 @@ declare const APP_CATEGORY_MAP: {
|
|
|
428
431
|
readonly guestbook: "Social";
|
|
429
432
|
readonly atmobb: "Social";
|
|
430
433
|
readonly chive: "Research";
|
|
434
|
+
readonly zeens: "Photos";
|
|
435
|
+
readonly locale: "Translations";
|
|
436
|
+
readonly pckt: "Posts";
|
|
431
437
|
readonly linkat: "Links";
|
|
432
438
|
readonly kipclip: "Links";
|
|
433
439
|
readonly statusphere: "Social";
|
package/dist/index.d.ts
CHANGED
|
@@ -346,6 +346,9 @@ declare const APP_CATEGORIES: {
|
|
|
346
346
|
readonly Social: {
|
|
347
347
|
readonly phosphorIcon: "UsersThree";
|
|
348
348
|
};
|
|
349
|
+
readonly Translations: {
|
|
350
|
+
readonly phosphorIcon: "Translate";
|
|
351
|
+
};
|
|
349
352
|
readonly Verification: {
|
|
350
353
|
readonly phosphorIcon: "Key";
|
|
351
354
|
};
|
|
@@ -428,6 +431,9 @@ declare const APP_CATEGORY_MAP: {
|
|
|
428
431
|
readonly guestbook: "Social";
|
|
429
432
|
readonly atmobb: "Social";
|
|
430
433
|
readonly chive: "Research";
|
|
434
|
+
readonly zeens: "Photos";
|
|
435
|
+
readonly locale: "Translations";
|
|
436
|
+
readonly pckt: "Posts";
|
|
431
437
|
readonly linkat: "Links";
|
|
432
438
|
readonly kipclip: "Links";
|
|
433
439
|
readonly statusphere: "Social";
|
package/dist/index.js
CHANGED
|
@@ -991,6 +991,7 @@ var APP_CATEGORIES = {
|
|
|
991
991
|
Reviews: { phosphorIcon: "Star" },
|
|
992
992
|
Slides: { phosphorIcon: "Presentation" },
|
|
993
993
|
Social: { phosphorIcon: "UsersThree" },
|
|
994
|
+
Translations: { phosphorIcon: "Translate" },
|
|
994
995
|
Verification: { phosphorIcon: "Key" },
|
|
995
996
|
Video: { phosphorIcon: "VideoCamera" }
|
|
996
997
|
};
|
|
@@ -1104,6 +1105,14 @@ var APP_CATEGORY_MAP = {
|
|
|
1104
1105
|
// Onboard from aaronstevenwhite.io profile audit.
|
|
1105
1106
|
chive: "Research",
|
|
1106
1107
|
// pub.chive.eprint.submission — preprints on chive.pub
|
|
1108
|
+
// Onboard from helene-cook.eu profile audit.
|
|
1109
|
+
zeens: "Photos",
|
|
1110
|
+
// app.photosky.collection — curated photo collections on zeens.app
|
|
1111
|
+
// Onboard from scanash.com profile audit.
|
|
1112
|
+
locale: "Translations",
|
|
1113
|
+
// at.locale.{project,translation} — localization projects and authored translation strings on locale.at
|
|
1114
|
+
pckt: "Posts",
|
|
1115
|
+
// blog.pckt.mini.post — microblog posts with no site.standard.document twin
|
|
1107
1116
|
// Web-only (rendered in pills/cards via sifa-web atproto-apps.ts;
|
|
1108
1117
|
// no backend scan collection yet)
|
|
1109
1118
|
linkat: "Links",
|
|
@@ -1149,6 +1158,11 @@ var activity_tiers_default = {
|
|
|
1149
1158
|
tier: "creation",
|
|
1150
1159
|
app: "atmobb"
|
|
1151
1160
|
},
|
|
1161
|
+
"app.photosky.collection": {
|
|
1162
|
+
tier: "creation",
|
|
1163
|
+
app: "zeens",
|
|
1164
|
+
notes: "A curated photo collection on Zeens (still the app.photosky namespace)."
|
|
1165
|
+
},
|
|
1152
1166
|
"app.beaconbits.beacon": {
|
|
1153
1167
|
tier: "creation",
|
|
1154
1168
|
app: "beaconbits"
|
|
@@ -3187,6 +3201,12 @@ var APP_URL_PATTERNS = Object.freeze({
|
|
|
3187
3201
|
// outbound link points at the author's Aether OS space (mirrors aetheros).
|
|
3188
3202
|
profileUrlPattern: "https://aetheros.computer/{handle}"
|
|
3189
3203
|
},
|
|
3204
|
+
zeens: {
|
|
3205
|
+
// Zeens (zeens.app) still uses its former app.photosky.* namespace. The
|
|
3206
|
+
// app redirects /collection/{handle}/{rkey} to the canonical path below.
|
|
3207
|
+
urlPattern: "https://zeens.app/profile/{handle}/collections/{rkey}",
|
|
3208
|
+
profileUrlPattern: "https://zeens.app/profile/{handle}"
|
|
3209
|
+
},
|
|
3190
3210
|
chive: {
|
|
3191
3211
|
// Chive's eprint route is a catch-all that decodes a single URI-encoded
|
|
3192
3212
|
// at-uri segment: /eprints/<encodeURIComponent(at://did/nsid/rkey)>.
|
|
@@ -3267,7 +3287,9 @@ var COLLECTION_TO_APP = [
|
|
|
3267
3287
|
// Onboard from trezy.codes profile audit.
|
|
3268
3288
|
["app.atmobb.", "atmobb"],
|
|
3269
3289
|
// Onboard from aaronstevenwhite.io profile audit.
|
|
3270
|
-
["pub.chive.", "chive"]
|
|
3290
|
+
["pub.chive.", "chive"],
|
|
3291
|
+
// Onboard from helene-cook.eu profile audit. Zeens kept its old NSID.
|
|
3292
|
+
["app.photosky.", "zeens"]
|
|
3271
3293
|
];
|
|
3272
3294
|
|
|
3273
3295
|
// src/cards/resolve-card-url.ts
|
|
@@ -5777,7 +5799,7 @@ function describeSifaRecord(collection, value) {
|
|
|
5777
5799
|
}
|
|
5778
5800
|
|
|
5779
5801
|
// src/index.ts
|
|
5780
|
-
var SIFA_SDK_VERSION = "0.12.
|
|
5802
|
+
var SIFA_SDK_VERSION = "0.12.74";
|
|
5781
5803
|
|
|
5782
5804
|
export { ACTIVITY_TIERS, ACTIVITY_VERBS, ACTIVITY_VISIBILITY_RULES, ADULT_CONTENT_LABELS, ALL_SECTIONS, APP_CATEGORIES, APP_CATEGORY_IDS, APP_CATEGORY_MAP, APP_URL_PATTERNS, ARTIFACT_LINK_KIND_LABELS, ARTIFACT_LINK_KIND_OPTIONS, ArtifactLinkSchema, AtmosphereFeedItemSchema, BlobRefSchema, CALENDAR_EVENT_MODE_LABELS, CALENDAR_EVENT_STATUS_LABELS, CATEGORY_LABELS, CATEGORY_ORDER, COLLECTION_TO_APP, COMPANY_OPTIONAL_EMPLOYMENT_TYPES, COMPANY_PAGE_MIN_FIRMOGRAPHIC_FIELDS, COMPLETENESS_MAX_SCORE, CONTINENTS, COUNTRIES, DIMENSIONS_MAX_SCORE, EMPLOYMENT_TYPE_GROUPS, EMPLOYMENT_TYPE_LABELS, ENTITY_REF_ANCHORS, EndorsementConfirmationRecordSchema, EndorsementRecordSchema, EntityImportSearchResponseSchema, EntityMintDomainResponseSchema, EntityResolveDomainRequestSchema, EntityResolveDomainResponseSchema, EntitySearchResponseSchema, EntitySearchResultSchema, EntitySelectRequestSchema, EntitySelectResponseSchema, FEATURE_FLAGS, FeatureAllowlistEntrySchema, FeedActorSchema, FollowFeedItemSchema, FollowFeedPageSchema, FollowProfilePageSchema, FollowProfileSchema, GraphFollowRecordSchema, INDUSTRY_OPTIONS, INVESTMENT_ROLE_LABELS, INVESTMENT_ROLE_OPTIONS, INVESTMENT_STAGE_LABELS, INVESTMENT_STAGE_OPTIONS, INVESTMENT_STATUS_LABELS, INVESTMENT_STATUS_OPTIONS, INVOLVEMENT_HEADING_ORDER, INVOLVEMENT_KIND_HEADINGS, INVOLVEMENT_KIND_LABELS, INVOLVEMENT_KIND_OPTIONS, InvestmentAmountSchema, MIN_SKILLS, ON_BEHALF_OF_EMPLOYMENT_TYPES, OPEN_TO_OPTIONS, OPEN_TO_TOKENS, OPEN_TO_TOKEN_TO_VALUE, OPEN_TO_VALUE_TO_TOKEN, OrgEmploymentAttestationRecordSchema, OrgProfileRecordSchema, PLATFORM_LABELS, PLATFORM_OPTIONS, PRESENTATION_LINK_TYPE_LABELS, PRESENTATION_LINK_TYPE_OPTIONS, PRESENTATION_ROLE_LABELS, PRESENTATION_ROLE_OPTIONS, PROFILE_INVESTMENT_NSID, PROFILE_INVOLVEMENT_NSID, PROJECT_ROLES, PUBLISHERS, PresentationDurationSchema, PresentationLinkSchema, ProfileCertificationRecordSchema, ProfileCourseRecordSchema, ProfileEducationRecordSchema, ProfileExternalAccountRecordSchema, ProfileHonorRecordSchema, ProfileInvestmentRecordSchema, ProfileInvolvementRecordSchema, ProfileLanguageRecordSchema, ProfilePositionRecordSchema, ProfilePresentationDeliveryRecordSchema, ProfilePresentationRecordSchema, ProfileProjectRecordSchema, ProfilePublicationRecordSchema, ProfileSelfRecordSchema, ProfileSkillRecordSchema, ProfileVolunteeringRecordSchema, PublicationAuthorSchema, ROADMAP_ISSUES_REPO, ROADMAP_ITEM_META, SECTION_GROUPS, SECTION_LABELS, SIFA_REPO_GROUPS, SIFA_SDK_VERSION, SKILL_CATEGORIES, STANDARD_PUBLISHER_ID, STREAM_VERBS, SifaFeedItemSchema, VERIFICATION_PROVIDERS, WORKPLACE_TYPE_LABELS, WORKPLACE_TYPE_OPTIONS, atUriSchema, buildMetaDescription, buildTalkSlug, categoryForApp, certDateExtractor, cidSchema, classifyEntityRef, completenessPercent, completenessScore, contrastRatio, countFilledDimensions, countryCodeToFlag, dateRangeExtractor, datetimeSchema, decodeFeedCursor, dedupeSkills, describeSifaRecord, detectPdsProvider, didSchema, dimensionsFromInputs, durationFromMinutes, encodeFeedCursor, entityDisambiguationLabel, entityResultKey, externalRecordRefSchema, filterHidden, findIndustry, formatCompanyName, formatDateRange, formatDistanceToNow, formatLocation, formatPresentationDuration, formatRelativeTime, formatTimelineDate, getActivityTaxonomyVersion, getActivityTier, getActivityVerbsVersion, getAppCategoryIcon, getAppIdForCollection, getArtifactLinkKindLabel, getCalendarEventModeLabel, getCalendarEventStatusLabel, getContinent, getDisplayLabel, getEmploymentTypeLabel, getFaviconUrl, getFilledDimensionsMap, getHandleStem, getIndustryLabelKey, getInvestmentRoleLabel, getInvestmentStageLabel, getInvestmentStatusLabel, getInvolvementKindHeading, getInvolvementKindLabel, getLexiconEntry, getOpenToLabelKey, getPdsDisplayName, getPlatformLabel, getPresentationLinkTypeLabel, getPresentationRoleLabel, getPublisherByHost, getPublisherById, getPublisherFromSiteUrl, getTierMeta, getVerificationProvider, getVisibleSectionIds, getWorkplaceTypeLabel, groupInvolvementByHeading, groupSkillsByCategory, groupSkillsBySubCategory, groupSkillsForDisplay, hasAdultContent, hasPersonalProfileContent, hoistPrimary, isAppCategory, isCompanyPageIndexable, isCompanyRequired, isKnownAppId, isKnownPlatform, isKnownVerificationProvider, isLinked, isOnBehalfOfApplicable, isPseudoEmployer, isRegistrableDomainHandle, isSectionPopulated, isValidRgbColor, isVisibleActivityItem, languageTagSchema, lexiconDateExtractor, limitCombiningMarks, locationSegments, looksLikeDomain, makeGraphFollowRecordSchema, maxGraphemes, meetsContrastAA, normalizeCompanyKey, normalizeLegalForm, normalizeOpenTo, normalizePlatformId, normalizePresentationMode, normalizePresentationRole, normalizeWorkplaceTypes, openToTokenToValue, openToValueToToken, parseIntendedAudiences, parseLocationString, parsePresentationDuration, parseTalkRkey, partialDateSchema, pdsProviderFromApi, pickPrimaryPosition, presentationCsvRowToRecord, presentationDeliveryCsvRowToRecord, primaryVerification, profileToDimensionInputs, qualifiesAsOrg, relativeLuminance, rendersCompanyProfile, rendersPersonalProfile, repoGroupForCollection, resolveAccountFacetMode, resolveCardHealth, resolveCardUrl, resolveEmbed, resolveVerifierProvider, rgbToString, roadmapIssueUrl, sanitizeDisplayText, sanitizeHandleInput, searchResultDisambiguation, selfLabelsSchema, singleDateExtractor, skillRefSchema, slugifyTitle, sortByActiveDateRange, sortByDateDesc, sortCertifications, sortEducation, sortHonors, sortLanguages, sortLanguagesByProficiency, sortPositions, sortProjects, sortPublications, streamAddressSchema, streamAuthorSchema, streamCardBodySchema, streamCardSubjectSchema, streamCardVMSchema, streamExternalLinkSchema, streamGeoSchema, streamMediaSchema, streamRichSegmentSchema, streamSourceSchema, streamThemeSchema, streamVerbSchema, stripHtmlToText, strongRefSchema, summarizePresentationDeliveries, summarizeProfileView, toStreamCardVM, toStreamCardVMs, truncateGraphemes, uriSchema, verbForCollection, visibleItems, youtubeThumbnailUrl, youtubeVideoId };
|
|
5783
5805
|
//# sourceMappingURL=index.js.map
|