@singi-labs/sifa-sdk 0.12.32 → 0.12.34

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 (39) hide show
  1. package/dist/{feed-D2ZV8Eaj.d.cts → feed-C8aHEPw4.d.cts} +5 -0
  2. package/dist/{feed-D2ZV8Eaj.d.ts → feed-C8aHEPw4.d.ts} +5 -0
  3. package/dist/{index-CQx2Yk7v.d.ts → index-Bf_BI0TG.d.ts} +3 -13
  4. package/dist/{index-D4DUzpXJ.d.ts → index-CBx6UJvX.d.ts} +15 -3
  5. package/dist/{index-DX-0n-2z.d.cts → index-CEoJMzkP.d.cts} +3 -13
  6. package/dist/{index-XXLVtfGw.d.cts → index-DMN5tQBL.d.cts} +15 -3
  7. package/dist/index.cjs +9 -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 +9 -1
  12. package/dist/index.js.map +1 -1
  13. package/dist/{org-5dARVOZ9.d.ts → org-C8LR9MpF.d.ts} +29 -2
  14. package/dist/{org-DOQL077g.d.cts → org-OFRiuRqU.d.cts} +29 -2
  15. package/dist/query/fetchers/index.cjs +8 -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 +8 -0
  20. package/dist/query/fetchers/index.js.map +1 -1
  21. package/dist/query/hooks/index.cjs +33 -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 +33 -1
  26. package/dist/query/hooks/index.js.map +1 -1
  27. package/dist/query/index.cjs +34 -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 +33 -1
  32. package/dist/query/index.js.map +1 -1
  33. package/dist/schemas/index.cjs +8 -0
  34. package/dist/schemas/index.cjs.map +1 -1
  35. package/dist/schemas/index.d.cts +1 -1
  36. package/dist/schemas/index.d.ts +1 -1
  37. package/dist/schemas/index.js +8 -0
  38. package/dist/schemas/index.js.map +1 -1
  39. package/package.json +1 -1
@@ -1,5 +1,5 @@
1
1
  import { E as ExternalAccount, S as SkillSuggestion, a as ActivityLabel } from './adult-content-BHIB4rxu.js';
2
- import { F as FollowFeedPage, a as FollowProfileItem, b as FeatureAllowlistEntry, c as FeatureFlag } from './feed-D2ZV8Eaj.js';
2
+ import { F as FollowFeedPage, a as FollowProfileItem, b as FeatureAllowlistEntry, c as FeatureFlag } from './feed-C8aHEPw4.js';
3
3
  import { z } from 'zod';
4
4
  import { f as OrgNotificationEmailRequestInput, b as OrgDomainChallengeRequestInput, O as OrgClaimRequestInput, h as OrgProfileUpdateRequestInput, d as OrgDomainVerifyRequestInput } from './org-settings-CmaSX5ZI.js';
5
5
 
@@ -190,6 +190,33 @@ declare function uploadAvatar(config: SifaApiConfig, file: Blob, options?: ApiFe
190
190
  /** Delete the authenticated user's avatar override (revert to PDS avatar). */
191
191
  declare function deleteAvatarOverride(config: SifaApiConfig, options?: ApiFetchOptions): Promise<WriteResult>;
192
192
 
193
+ /**
194
+ * Create a new `id.sifa.profile.skill` record on the authenticated
195
+ * user's PDS.
196
+ */
197
+ declare function createSkill(config: SifaApiConfig, data: Record<string, unknown>, options?: ApiFetchOptions): Promise<CreateResult>;
198
+ /** Update an existing skill record by `rkey`. */
199
+ declare function updateSkill(config: SifaApiConfig, rkey: string, data: Record<string, unknown>, options?: ApiFetchOptions): Promise<WriteResult>;
200
+ /** Outcome of a bulk sub-category assign. */
201
+ interface SubCategoryBulkResult {
202
+ /** Records written. */
203
+ updated: number;
204
+ /** Records that already carried the label, so no write was needed. */
205
+ unchanged: number;
206
+ /** Requested rkeys with no matching record on the PDS. */
207
+ skipped: string[];
208
+ }
209
+ /**
210
+ * Set (or clear) the sub-category on many skills in one request.
211
+ *
212
+ * A single call replaces one PUT per skill, which tripped the AppView's
213
+ * per-IP rate limit on any sizeable profile (#324). An empty `subCategory`
214
+ * clears the field.
215
+ */
216
+ declare function updateSkillSubCategories(config: SifaApiConfig, rkeys: string[], subCategory: string, options?: ApiFetchOptions): Promise<WriteResult & SubCategoryBulkResult>;
217
+ /** Delete a skill record by `rkey`. */
218
+ declare function deleteSkill(config: SifaApiConfig, rkey: string, options?: ApiFetchOptions): Promise<WriteResult>;
219
+
193
220
  /**
194
221
  * Address payload accepted by `/api/profile/location` endpoints.
195
222
  *
@@ -1355,4 +1382,4 @@ declare function addOrgNotificationEmail(config: SifaApiConfig, body: OrgNotific
1355
1382
  */
1356
1383
  declare function removeOrgNotificationEmail(config: SifaApiConfig, body: OrgNotificationEmailRequestInput, options?: Omit<ApiFetchOptions, 'method' | 'body'>): Promise<WriteResult & Partial<OrgNotificationEmailRemoveResult>>;
1357
1384
 
1358
- export { type OrgNotificationEmailRemoveResult as $, type ApiFetchOptions as A, type BulkHideProfileItemInput as B, type CastRoadmapVoteResult as C, type DeleteAccountResult as D, type EndorsementInput as E, type FeatureAllowlistResponse as F, type FollowProfilePageResponse as G, type FollowUserResult as H, type FollowingResponse as I, type GithubPullRequest as J, HIDDEN_ITEM_SOURCES as K, HIDDEN_ITEM_TYPES as L, type HeatmapDay as M, type HeatmapResponse as N, type HiddenApp as O, type HiddenItemSource as P, type HiddenItemType as Q, type HideProfileItemInput as R, type SifaApiConfig as S, type ListFeatureAllowlistOptions as T, type MyGithubPullRequestsResponse as U, type OrgClaimBinding as V, type WriteResult as W, type OrgClaimResult as X, type OrgDomainChallengeResult as Y, type OrgDomainVerifyResult as Z, type OrgNotificationEmailAddResult as _, type AccountCheckResult as a, fetchFollowing as a$, type OrgProfileEcho as a0, type OrgProfileUpdateResult as a1, type PdsWipeOutcome as a2, type ProfileIndustryInput as a3, type ProfileLocationAddress as a4, type ProfileLocationInput as a5, type ProfileSearchResult as a6, type ProfileSelfLocation as a7, QUOTED_POSTS_BATCH_MAX as a8, type QuotedPostAuthor as a9, type WipePreview as aA, addFeatureAllowlist as aB, addOrgNotificationEmail as aC, apiFetch as aD, apiFetchOrNull as aE, apiWrite as aF, apiWriteCreate as aG, bulkHideProfileItems as aH, bulkHideStandardPublications as aI, bulkUnhideProfileItems as aJ, bulkUnhideStandardPublications as aK, castRoadmapVote as aL, checkAppAccount as aM, createEndorsement as aN, createExternalAccount as aO, createProfileLocation as aP, createReaction as aQ, deleteAccount as aR, deleteAvatarOverride as aS, deleteExternalAccount as aT, deleteProfileLocation as aU, deleteReaction as aV, fetchActivityFeed as aW, fetchActivityTeaser as aX, fetchAppsRegistry as aY, fetchExternalAccounts as aZ, fetchFeaturedProfile as a_, type QuotedPostImage as aa, type QuotedPostResult as ab, type QuotedPostView as ac, type ReactionError as ad, type ReactionResult as ae, type ReactionStatus as af, type RefreshOrcidPublicationsResult as ag, type RefreshPdsResult as ah, type ResetProfileResult as ai, type ResolveQuotedPostsOptions as aj, type RoadmapVoteError as ak, type RoadmapVoteResult as al, type RoadmapVoter as am, type RoadmapVotesResponse as an, type SearchFilters as ao, type SearchResponse as ap, type SifaQueryKey as aq, type SimilarProfile as ar, type SkillSearchResult as as, type StatsResponse as at, type SuggestionProfile as au, type SuggestionsResponse as av, type UpdateProfileOverrideInput as aw, type UpdateProfileSelfInput as ax, type UploadAvatarResult as ay, type VerifyExternalAccountResult as az, type ActivityFeedResponse as b, fetchHeatmapData as b0, fetchHiddenApps as b1, fetchMyGithubPullRequests as b2, fetchMyRoadmapVotes as b3, fetchReactionStatus as b4, fetchRoadmapVotes as b5, fetchSearchFilters as b6, fetchSearchProfiles as b7, fetchSimilarProfiles as b8, fetchSkillSuggestions as b9, unfollowUser as bA, unhideOrcidPublication as bB, unhideProfileItem as bC, unhideSifaPublication as bD, unhideStandardPublication as bE, unsetExternalAccountPrimary as bF, updateExternalAccount as bG, updateOrgProfile as bH, updateProfileLocation as bI, updateProfileOverride as bJ, updateProfileSelf as bK, uploadAvatar as bL, verifyExternalAccount as bM, verifyOrgDomain as bN, fetchStats as ba, fetchSuggestionCount as bb, fetchSuggestions as bc, fetchWipePreview as bd, followUser as be, getBlueskySuggestions as bf, getFollowers as bg, getFollowing as bh, getFollowingFeed as bi, getMutuals as bj, hideOrcidPublication as bk, hideProfileItem as bl, hideSifaPublication as bm, hideStandardPublication as bn, listFeatureAllowlist as bo, refreshOrcidPublications as bp, refreshPds as bq, removeFeatureAllowlist as br, removeOrgNotificationEmail as bs, requestOrgDomainChallenge as bt, resetProfile as bu, resolveQuotedPosts as bv, retractRoadmapVote as bw, searchSkills as bx, setExternalAccountPrimary as by, submitOrgClaim as bz, type ActivityItem as c, type ActivityItemLinkHealth as d, type ActivityTeaserResponse as e, ApiError as f, type AppRegistryEntry as g, type CheckAppAccountOptions as h, type CreateExternalAccountResult as i, type CreateResult as j, type ExternalAccountInput as k, type FeaturedProfile as l, type FetchActivityFeedOptions as m, type FetchActivityTeaserOptions as n, type FetchFollowListOptions as o, type FetchFollowProfilePageOptions as p, type FetchFollowingFeedOptions as q, type FetchHiddenAppsOptions as r, sifaQueryKeys as s, type FetchMyGithubPullRequestsOptions as t, type FetchMyRoadmapVotesOptions as u, type FetchReactionStatusOptions as v, type FetchSuggestionsOptions as w, type FilterOptions as x, type FollowListPage as y, type FollowProfile as z };
1385
+ export { type OrgNotificationEmailRemoveResult as $, type ApiFetchOptions as A, type BulkHideProfileItemInput as B, type CastRoadmapVoteResult as C, type DeleteAccountResult as D, type EndorsementInput as E, type FeatureAllowlistResponse as F, type FollowProfilePageResponse as G, type FollowUserResult as H, type FollowingResponse as I, type GithubPullRequest as J, HIDDEN_ITEM_SOURCES as K, HIDDEN_ITEM_TYPES as L, type HeatmapDay as M, type HeatmapResponse as N, type HiddenApp as O, type HiddenItemSource as P, type HiddenItemType as Q, type HideProfileItemInput as R, type SifaApiConfig as S, type ListFeatureAllowlistOptions as T, type MyGithubPullRequestsResponse as U, type OrgClaimBinding as V, type WriteResult as W, type OrgClaimResult as X, type OrgDomainChallengeResult as Y, type OrgDomainVerifyResult as Z, type OrgNotificationEmailAddResult as _, type AccountCheckResult as a, fetchAppsRegistry as a$, type OrgProfileEcho as a0, type OrgProfileUpdateResult as a1, type PdsWipeOutcome as a2, type ProfileIndustryInput as a3, type ProfileLocationAddress as a4, type ProfileLocationInput as a5, type ProfileSearchResult as a6, type ProfileSelfLocation as a7, QUOTED_POSTS_BATCH_MAX as a8, type QuotedPostAuthor as a9, type VerifyExternalAccountResult as aA, type WipePreview as aB, addFeatureAllowlist as aC, addOrgNotificationEmail as aD, apiFetch as aE, apiFetchOrNull as aF, apiWrite as aG, apiWriteCreate as aH, bulkHideProfileItems as aI, bulkHideStandardPublications as aJ, bulkUnhideProfileItems as aK, bulkUnhideStandardPublications as aL, castRoadmapVote as aM, checkAppAccount as aN, createEndorsement as aO, createExternalAccount as aP, createProfileLocation as aQ, createReaction as aR, createSkill as aS, deleteAccount as aT, deleteAvatarOverride as aU, deleteExternalAccount as aV, deleteProfileLocation as aW, deleteReaction as aX, deleteSkill as aY, fetchActivityFeed as aZ, fetchActivityTeaser as a_, type QuotedPostImage as aa, type QuotedPostResult as ab, type QuotedPostView as ac, type ReactionError as ad, type ReactionResult as ae, type ReactionStatus as af, type RefreshOrcidPublicationsResult as ag, type RefreshPdsResult as ah, type ResetProfileResult as ai, type ResolveQuotedPostsOptions as aj, type RoadmapVoteError as ak, type RoadmapVoteResult as al, type RoadmapVoter as am, type RoadmapVotesResponse as an, type SearchFilters as ao, type SearchResponse as ap, type SifaQueryKey as aq, type SimilarProfile as ar, type SkillSearchResult as as, type StatsResponse as at, type SubCategoryBulkResult as au, type SuggestionProfile as av, type SuggestionsResponse as aw, type UpdateProfileOverrideInput as ax, type UpdateProfileSelfInput as ay, type UploadAvatarResult as az, type ActivityFeedResponse as b, fetchExternalAccounts as b0, fetchFeaturedProfile as b1, fetchFollowing as b2, fetchHeatmapData as b3, fetchHiddenApps as b4, fetchMyGithubPullRequests as b5, fetchMyRoadmapVotes as b6, fetchReactionStatus as b7, fetchRoadmapVotes as b8, fetchSearchFilters as b9, searchSkills as bA, setExternalAccountPrimary as bB, submitOrgClaim as bC, unfollowUser as bD, unhideOrcidPublication as bE, unhideProfileItem as bF, unhideSifaPublication as bG, unhideStandardPublication as bH, unsetExternalAccountPrimary as bI, updateExternalAccount as bJ, updateOrgProfile as bK, updateProfileLocation as bL, updateProfileOverride as bM, updateProfileSelf as bN, updateSkill as bO, updateSkillSubCategories as bP, uploadAvatar as bQ, verifyExternalAccount as bR, verifyOrgDomain as bS, fetchSearchProfiles as ba, fetchSimilarProfiles as bb, fetchSkillSuggestions as bc, fetchStats as bd, fetchSuggestionCount as be, fetchSuggestions as bf, fetchWipePreview as bg, followUser as bh, getBlueskySuggestions as bi, getFollowers as bj, getFollowing as bk, getFollowingFeed as bl, getMutuals as bm, hideOrcidPublication as bn, hideProfileItem as bo, hideSifaPublication as bp, hideStandardPublication as bq, listFeatureAllowlist as br, refreshOrcidPublications as bs, refreshPds as bt, removeFeatureAllowlist as bu, removeOrgNotificationEmail as bv, requestOrgDomainChallenge as bw, resetProfile as bx, resolveQuotedPosts as by, retractRoadmapVote as bz, type ActivityItem as c, type ActivityItemLinkHealth as d, type ActivityTeaserResponse as e, ApiError as f, type AppRegistryEntry as g, type CheckAppAccountOptions as h, type CreateExternalAccountResult as i, type CreateResult as j, type ExternalAccountInput as k, type FeaturedProfile as l, type FetchActivityFeedOptions as m, type FetchActivityTeaserOptions as n, type FetchFollowListOptions as o, type FetchFollowProfilePageOptions as p, type FetchFollowingFeedOptions as q, type FetchHiddenAppsOptions as r, sifaQueryKeys as s, type FetchMyGithubPullRequestsOptions as t, type FetchMyRoadmapVotesOptions as u, type FetchReactionStatusOptions as v, type FetchSuggestionsOptions as w, type FilterOptions as x, type FollowListPage as y, type FollowProfile as z };
@@ -1,5 +1,5 @@
1
1
  import { E as ExternalAccount, S as SkillSuggestion, a as ActivityLabel } from './adult-content-BHIB4rxu.cjs';
2
- import { F as FollowFeedPage, a as FollowProfileItem, b as FeatureAllowlistEntry, c as FeatureFlag } from './feed-D2ZV8Eaj.cjs';
2
+ import { F as FollowFeedPage, a as FollowProfileItem, b as FeatureAllowlistEntry, c as FeatureFlag } from './feed-C8aHEPw4.cjs';
3
3
  import { z } from 'zod';
4
4
  import { f as OrgNotificationEmailRequestInput, b as OrgDomainChallengeRequestInput, O as OrgClaimRequestInput, h as OrgProfileUpdateRequestInput, d as OrgDomainVerifyRequestInput } from './org-settings-CmaSX5ZI.cjs';
5
5
 
@@ -190,6 +190,33 @@ declare function uploadAvatar(config: SifaApiConfig, file: Blob, options?: ApiFe
190
190
  /** Delete the authenticated user's avatar override (revert to PDS avatar). */
191
191
  declare function deleteAvatarOverride(config: SifaApiConfig, options?: ApiFetchOptions): Promise<WriteResult>;
192
192
 
193
+ /**
194
+ * Create a new `id.sifa.profile.skill` record on the authenticated
195
+ * user's PDS.
196
+ */
197
+ declare function createSkill(config: SifaApiConfig, data: Record<string, unknown>, options?: ApiFetchOptions): Promise<CreateResult>;
198
+ /** Update an existing skill record by `rkey`. */
199
+ declare function updateSkill(config: SifaApiConfig, rkey: string, data: Record<string, unknown>, options?: ApiFetchOptions): Promise<WriteResult>;
200
+ /** Outcome of a bulk sub-category assign. */
201
+ interface SubCategoryBulkResult {
202
+ /** Records written. */
203
+ updated: number;
204
+ /** Records that already carried the label, so no write was needed. */
205
+ unchanged: number;
206
+ /** Requested rkeys with no matching record on the PDS. */
207
+ skipped: string[];
208
+ }
209
+ /**
210
+ * Set (or clear) the sub-category on many skills in one request.
211
+ *
212
+ * A single call replaces one PUT per skill, which tripped the AppView's
213
+ * per-IP rate limit on any sizeable profile (#324). An empty `subCategory`
214
+ * clears the field.
215
+ */
216
+ declare function updateSkillSubCategories(config: SifaApiConfig, rkeys: string[], subCategory: string, options?: ApiFetchOptions): Promise<WriteResult & SubCategoryBulkResult>;
217
+ /** Delete a skill record by `rkey`. */
218
+ declare function deleteSkill(config: SifaApiConfig, rkey: string, options?: ApiFetchOptions): Promise<WriteResult>;
219
+
193
220
  /**
194
221
  * Address payload accepted by `/api/profile/location` endpoints.
195
222
  *
@@ -1355,4 +1382,4 @@ declare function addOrgNotificationEmail(config: SifaApiConfig, body: OrgNotific
1355
1382
  */
1356
1383
  declare function removeOrgNotificationEmail(config: SifaApiConfig, body: OrgNotificationEmailRequestInput, options?: Omit<ApiFetchOptions, 'method' | 'body'>): Promise<WriteResult & Partial<OrgNotificationEmailRemoveResult>>;
1357
1384
 
1358
- export { type OrgNotificationEmailRemoveResult as $, type ApiFetchOptions as A, type BulkHideProfileItemInput as B, type CastRoadmapVoteResult as C, type DeleteAccountResult as D, type EndorsementInput as E, type FeatureAllowlistResponse as F, type FollowProfilePageResponse as G, type FollowUserResult as H, type FollowingResponse as I, type GithubPullRequest as J, HIDDEN_ITEM_SOURCES as K, HIDDEN_ITEM_TYPES as L, type HeatmapDay as M, type HeatmapResponse as N, type HiddenApp as O, type HiddenItemSource as P, type HiddenItemType as Q, type HideProfileItemInput as R, type SifaApiConfig as S, type ListFeatureAllowlistOptions as T, type MyGithubPullRequestsResponse as U, type OrgClaimBinding as V, type WriteResult as W, type OrgClaimResult as X, type OrgDomainChallengeResult as Y, type OrgDomainVerifyResult as Z, type OrgNotificationEmailAddResult as _, type AccountCheckResult as a, fetchFollowing as a$, type OrgProfileEcho as a0, type OrgProfileUpdateResult as a1, type PdsWipeOutcome as a2, type ProfileIndustryInput as a3, type ProfileLocationAddress as a4, type ProfileLocationInput as a5, type ProfileSearchResult as a6, type ProfileSelfLocation as a7, QUOTED_POSTS_BATCH_MAX as a8, type QuotedPostAuthor as a9, type WipePreview as aA, addFeatureAllowlist as aB, addOrgNotificationEmail as aC, apiFetch as aD, apiFetchOrNull as aE, apiWrite as aF, apiWriteCreate as aG, bulkHideProfileItems as aH, bulkHideStandardPublications as aI, bulkUnhideProfileItems as aJ, bulkUnhideStandardPublications as aK, castRoadmapVote as aL, checkAppAccount as aM, createEndorsement as aN, createExternalAccount as aO, createProfileLocation as aP, createReaction as aQ, deleteAccount as aR, deleteAvatarOverride as aS, deleteExternalAccount as aT, deleteProfileLocation as aU, deleteReaction as aV, fetchActivityFeed as aW, fetchActivityTeaser as aX, fetchAppsRegistry as aY, fetchExternalAccounts as aZ, fetchFeaturedProfile as a_, type QuotedPostImage as aa, type QuotedPostResult as ab, type QuotedPostView as ac, type ReactionError as ad, type ReactionResult as ae, type ReactionStatus as af, type RefreshOrcidPublicationsResult as ag, type RefreshPdsResult as ah, type ResetProfileResult as ai, type ResolveQuotedPostsOptions as aj, type RoadmapVoteError as ak, type RoadmapVoteResult as al, type RoadmapVoter as am, type RoadmapVotesResponse as an, type SearchFilters as ao, type SearchResponse as ap, type SifaQueryKey as aq, type SimilarProfile as ar, type SkillSearchResult as as, type StatsResponse as at, type SuggestionProfile as au, type SuggestionsResponse as av, type UpdateProfileOverrideInput as aw, type UpdateProfileSelfInput as ax, type UploadAvatarResult as ay, type VerifyExternalAccountResult as az, type ActivityFeedResponse as b, fetchHeatmapData as b0, fetchHiddenApps as b1, fetchMyGithubPullRequests as b2, fetchMyRoadmapVotes as b3, fetchReactionStatus as b4, fetchRoadmapVotes as b5, fetchSearchFilters as b6, fetchSearchProfiles as b7, fetchSimilarProfiles as b8, fetchSkillSuggestions as b9, unfollowUser as bA, unhideOrcidPublication as bB, unhideProfileItem as bC, unhideSifaPublication as bD, unhideStandardPublication as bE, unsetExternalAccountPrimary as bF, updateExternalAccount as bG, updateOrgProfile as bH, updateProfileLocation as bI, updateProfileOverride as bJ, updateProfileSelf as bK, uploadAvatar as bL, verifyExternalAccount as bM, verifyOrgDomain as bN, fetchStats as ba, fetchSuggestionCount as bb, fetchSuggestions as bc, fetchWipePreview as bd, followUser as be, getBlueskySuggestions as bf, getFollowers as bg, getFollowing as bh, getFollowingFeed as bi, getMutuals as bj, hideOrcidPublication as bk, hideProfileItem as bl, hideSifaPublication as bm, hideStandardPublication as bn, listFeatureAllowlist as bo, refreshOrcidPublications as bp, refreshPds as bq, removeFeatureAllowlist as br, removeOrgNotificationEmail as bs, requestOrgDomainChallenge as bt, resetProfile as bu, resolveQuotedPosts as bv, retractRoadmapVote as bw, searchSkills as bx, setExternalAccountPrimary as by, submitOrgClaim as bz, type ActivityItem as c, type ActivityItemLinkHealth as d, type ActivityTeaserResponse as e, ApiError as f, type AppRegistryEntry as g, type CheckAppAccountOptions as h, type CreateExternalAccountResult as i, type CreateResult as j, type ExternalAccountInput as k, type FeaturedProfile as l, type FetchActivityFeedOptions as m, type FetchActivityTeaserOptions as n, type FetchFollowListOptions as o, type FetchFollowProfilePageOptions as p, type FetchFollowingFeedOptions as q, type FetchHiddenAppsOptions as r, sifaQueryKeys as s, type FetchMyGithubPullRequestsOptions as t, type FetchMyRoadmapVotesOptions as u, type FetchReactionStatusOptions as v, type FetchSuggestionsOptions as w, type FilterOptions as x, type FollowListPage as y, type FollowProfile as z };
1385
+ export { type OrgNotificationEmailRemoveResult as $, type ApiFetchOptions as A, type BulkHideProfileItemInput as B, type CastRoadmapVoteResult as C, type DeleteAccountResult as D, type EndorsementInput as E, type FeatureAllowlistResponse as F, type FollowProfilePageResponse as G, type FollowUserResult as H, type FollowingResponse as I, type GithubPullRequest as J, HIDDEN_ITEM_SOURCES as K, HIDDEN_ITEM_TYPES as L, type HeatmapDay as M, type HeatmapResponse as N, type HiddenApp as O, type HiddenItemSource as P, type HiddenItemType as Q, type HideProfileItemInput as R, type SifaApiConfig as S, type ListFeatureAllowlistOptions as T, type MyGithubPullRequestsResponse as U, type OrgClaimBinding as V, type WriteResult as W, type OrgClaimResult as X, type OrgDomainChallengeResult as Y, type OrgDomainVerifyResult as Z, type OrgNotificationEmailAddResult as _, type AccountCheckResult as a, fetchAppsRegistry as a$, type OrgProfileEcho as a0, type OrgProfileUpdateResult as a1, type PdsWipeOutcome as a2, type ProfileIndustryInput as a3, type ProfileLocationAddress as a4, type ProfileLocationInput as a5, type ProfileSearchResult as a6, type ProfileSelfLocation as a7, QUOTED_POSTS_BATCH_MAX as a8, type QuotedPostAuthor as a9, type VerifyExternalAccountResult as aA, type WipePreview as aB, addFeatureAllowlist as aC, addOrgNotificationEmail as aD, apiFetch as aE, apiFetchOrNull as aF, apiWrite as aG, apiWriteCreate as aH, bulkHideProfileItems as aI, bulkHideStandardPublications as aJ, bulkUnhideProfileItems as aK, bulkUnhideStandardPublications as aL, castRoadmapVote as aM, checkAppAccount as aN, createEndorsement as aO, createExternalAccount as aP, createProfileLocation as aQ, createReaction as aR, createSkill as aS, deleteAccount as aT, deleteAvatarOverride as aU, deleteExternalAccount as aV, deleteProfileLocation as aW, deleteReaction as aX, deleteSkill as aY, fetchActivityFeed as aZ, fetchActivityTeaser as a_, type QuotedPostImage as aa, type QuotedPostResult as ab, type QuotedPostView as ac, type ReactionError as ad, type ReactionResult as ae, type ReactionStatus as af, type RefreshOrcidPublicationsResult as ag, type RefreshPdsResult as ah, type ResetProfileResult as ai, type ResolveQuotedPostsOptions as aj, type RoadmapVoteError as ak, type RoadmapVoteResult as al, type RoadmapVoter as am, type RoadmapVotesResponse as an, type SearchFilters as ao, type SearchResponse as ap, type SifaQueryKey as aq, type SimilarProfile as ar, type SkillSearchResult as as, type StatsResponse as at, type SubCategoryBulkResult as au, type SuggestionProfile as av, type SuggestionsResponse as aw, type UpdateProfileOverrideInput as ax, type UpdateProfileSelfInput as ay, type UploadAvatarResult as az, type ActivityFeedResponse as b, fetchExternalAccounts as b0, fetchFeaturedProfile as b1, fetchFollowing as b2, fetchHeatmapData as b3, fetchHiddenApps as b4, fetchMyGithubPullRequests as b5, fetchMyRoadmapVotes as b6, fetchReactionStatus as b7, fetchRoadmapVotes as b8, fetchSearchFilters as b9, searchSkills as bA, setExternalAccountPrimary as bB, submitOrgClaim as bC, unfollowUser as bD, unhideOrcidPublication as bE, unhideProfileItem as bF, unhideSifaPublication as bG, unhideStandardPublication as bH, unsetExternalAccountPrimary as bI, updateExternalAccount as bJ, updateOrgProfile as bK, updateProfileLocation as bL, updateProfileOverride as bM, updateProfileSelf as bN, updateSkill as bO, updateSkillSubCategories as bP, uploadAvatar as bQ, verifyExternalAccount as bR, verifyOrgDomain as bS, fetchSearchProfiles as ba, fetchSimilarProfiles as bb, fetchSkillSuggestions as bc, fetchStats as bd, fetchSuggestionCount as be, fetchSuggestions as bf, fetchWipePreview as bg, followUser as bh, getBlueskySuggestions as bi, getFollowers as bj, getFollowing as bk, getFollowingFeed as bl, getMutuals as bm, hideOrcidPublication as bn, hideProfileItem as bo, hideSifaPublication as bp, hideStandardPublication as bq, listFeatureAllowlist as br, refreshOrcidPublications as bs, refreshPds as bt, removeFeatureAllowlist as bu, removeOrgNotificationEmail as bv, requestOrgDomainChallenge as bw, resetProfile as bx, resolveQuotedPosts as by, retractRoadmapVote as bz, type ActivityItem as c, type ActivityItemLinkHealth as d, type ActivityTeaserResponse as e, ApiError as f, type AppRegistryEntry as g, type CheckAppAccountOptions as h, type CreateExternalAccountResult as i, type CreateResult as j, type ExternalAccountInput as k, type FeaturedProfile as l, type FetchActivityFeedOptions as m, type FetchActivityTeaserOptions as n, type FetchFollowListOptions as o, type FetchFollowProfilePageOptions as p, type FetchFollowingFeedOptions as q, type FetchHiddenAppsOptions as r, sifaQueryKeys as s, type FetchMyGithubPullRequestsOptions as t, type FetchMyRoadmapVotesOptions as u, type FetchReactionStatusOptions as v, type FetchSuggestionsOptions as w, type FilterOptions as x, type FollowListPage as y, type FollowProfile as z };
@@ -1202,6 +1202,14 @@ var EntitySelectResponseSchema = zod.z.object({
1202
1202
  kind: zod.z.string(),
1203
1203
  canonicalName: zod.z.string(),
1204
1204
  domain: zod.z.string().nullable(),
1205
+ /**
1206
+ * The entity's website, gated to sources trustworthy enough to prefill into a
1207
+ * record the user signs. Narrower than `domain`, which is a display value and
1208
+ * may come from a crawl. Null when the entity has no such source.
1209
+ */
1210
+ website: httpUrlNullable.default(null),
1211
+ /** Which tier `website` came from. Crawled is never an accepted source. */
1212
+ websiteTier: zod.z.enum(["org", "curated"]).nullable().default(null),
1205
1213
  entityRef: httpUrlNullable
1206
1214
  });
1207
1215
  var EntityImportSearchResponseSchema = zod.z.object({