@singi-labs/sifa-sdk 0.12.81 → 0.12.83
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-Uj1NC0QC.d.cts → index-B0hFFPZ-.d.cts} +16 -0
- package/dist/{index-Uj1NC0QC.d.ts → index-B0hFFPZ-.d.ts} +16 -0
- package/dist/index.cjs +5 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +5 -4
- package/dist/index.d.ts +5 -4
- package/dist/index.js +5 -1
- package/dist/index.js.map +1 -1
- package/dist/jsonld/index.d.cts +1 -1
- package/dist/jsonld/index.d.ts +1 -1
- package/dist/{network-map-FK6emkhf.d.ts → network-map-D4fSIGnS.d.ts} +4 -4
- package/dist/{network-map-DMfaQ1UI.d.cts → network-map-DSs6hrPJ.d.cts} +4 -4
- package/dist/{org-Dg25S76d.d.ts → org-C6MV4vE6.d.ts} +2 -2
- package/dist/{org-gIoCYQNA.d.cts → org-CSEOW8H6.d.cts} +2 -2
- package/dist/{profile-summary-Yq3_odUX.d.ts → profile-summary-BG-cvwtJ.d.ts} +1 -1
- package/dist/{profile-summary-CbzSrQoE.d.cts → profile-summary-CA40DYqQ.d.cts} +1 -1
- package/dist/query/fetchers/index.d.cts +6 -6
- package/dist/query/fetchers/index.d.ts +6 -6
- package/dist/query/hooks/index.d.cts +5 -5
- package/dist/query/hooks/index.d.ts +5 -5
- package/dist/query/index.d.cts +8 -8
- package/dist/query/index.d.ts +8 -8
- package/dist/{types-B3KOVEYy.d.cts → types-CIWnMcKx.d.cts} +1 -1
- package/dist/{types-Ct7WNyn9.d.ts → types-Dbvf5D_Q.d.ts} +1 -1
- package/dist/{use-org-notification-emails-CdPL2KHh.d.cts → use-org-notification-emails-C1kpS75h.d.cts} +3 -3
- package/dist/{use-org-notification-emails-Dh34pNU7.d.ts → use-org-notification-emails-lL0SKnbt.d.ts} +3 -3
- package/package.json +1 -1
|
@@ -659,6 +659,22 @@ interface OrgFloorVerdict {
|
|
|
659
659
|
isOrg: boolean;
|
|
660
660
|
orgProfile?: OrgProfileView;
|
|
661
661
|
recognized: boolean;
|
|
662
|
+
/**
|
|
663
|
+
* Whether the account's handle is a custom registrable apex domain, i.e.
|
|
664
|
+
* eligible to CLAIM an org page (#306). Mirrors the `isBindableHandleDomain`
|
|
665
|
+
* floor the api enforces at write time, surfaced so the `/claim` wizard can
|
|
666
|
+
* gate on eligibility BEFORE the authority consent rather than failing the
|
|
667
|
+
* final PDS write. Independent of `isOrg`/`recognized` -- purely the handle's
|
|
668
|
+
* shape, so a `*.bsky.social` account reads false and a not-yet-claimed
|
|
669
|
+
* custom domain reads true.
|
|
670
|
+
*
|
|
671
|
+
* Optional here (a tolerant reader): the api always emits it, but a profile
|
|
672
|
+
* payload cached before this field shipped may omit it. Gate on the explicit
|
|
673
|
+
* `customDomain === false` for the up-front block; treat absent as unknown and
|
|
674
|
+
* let the api 403 stay the authoritative backstop -- never enforce on this
|
|
675
|
+
* field alone.
|
|
676
|
+
*/
|
|
677
|
+
customDomain?: boolean;
|
|
662
678
|
/**
|
|
663
679
|
* Whether the account also keeps a visible personal profile, from
|
|
664
680
|
* `id.sifa.org.profile.personalProfileVisible`. True only for a claimed org
|
|
@@ -659,6 +659,22 @@ interface OrgFloorVerdict {
|
|
|
659
659
|
isOrg: boolean;
|
|
660
660
|
orgProfile?: OrgProfileView;
|
|
661
661
|
recognized: boolean;
|
|
662
|
+
/**
|
|
663
|
+
* Whether the account's handle is a custom registrable apex domain, i.e.
|
|
664
|
+
* eligible to CLAIM an org page (#306). Mirrors the `isBindableHandleDomain`
|
|
665
|
+
* floor the api enforces at write time, surfaced so the `/claim` wizard can
|
|
666
|
+
* gate on eligibility BEFORE the authority consent rather than failing the
|
|
667
|
+
* final PDS write. Independent of `isOrg`/`recognized` -- purely the handle's
|
|
668
|
+
* shape, so a `*.bsky.social` account reads false and a not-yet-claimed
|
|
669
|
+
* custom domain reads true.
|
|
670
|
+
*
|
|
671
|
+
* Optional here (a tolerant reader): the api always emits it, but a profile
|
|
672
|
+
* payload cached before this field shipped may omit it. Gate on the explicit
|
|
673
|
+
* `customDomain === false` for the up-front block; treat absent as unknown and
|
|
674
|
+
* let the api 403 stay the authoritative backstop -- never enforce on this
|
|
675
|
+
* field alone.
|
|
676
|
+
*/
|
|
677
|
+
customDomain?: boolean;
|
|
662
678
|
/**
|
|
663
679
|
* Whether the account also keeps a visible personal profile, from
|
|
664
680
|
* `id.sifa.org.profile.personalProfileVisible`. True only for a claimed org
|
package/dist/index.cjs
CHANGED
|
@@ -1021,6 +1021,10 @@ var APP_CATEGORY_MAP = {
|
|
|
1021
1021
|
// github, there is no PDS collection behind it -- its own scanner owns the
|
|
1022
1022
|
// app-stats row.
|
|
1023
1023
|
fediverse: "Posts",
|
|
1024
|
+
// Items ingested from a verified RSS or Atom feed: blogs, newsletters,
|
|
1025
|
+
// podcast and channel feeds. Categorized as Articles rather than Posts
|
|
1026
|
+
// because the common case is a long-form blog entry with a title.
|
|
1027
|
+
rss: "Articles",
|
|
1024
1028
|
smokesignal: "Events",
|
|
1025
1029
|
flashes: "Photos",
|
|
1026
1030
|
grain: "Photos",
|
|
@@ -5822,7 +5826,7 @@ function describeSifaRecord(collection, value) {
|
|
|
5822
5826
|
}
|
|
5823
5827
|
|
|
5824
5828
|
// src/index.ts
|
|
5825
|
-
var SIFA_SDK_VERSION = "0.12.
|
|
5829
|
+
var SIFA_SDK_VERSION = "0.12.83";
|
|
5826
5830
|
|
|
5827
5831
|
exports.ACTIVITY_TIERS = ACTIVITY_TIERS;
|
|
5828
5832
|
exports.ACTIVITY_VERBS = ACTIVITY_VERBS;
|