@singi-labs/sifa-sdk 0.12.82 → 0.12.84
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-D0qELxvf.d.cts} +22 -0
- package/dist/{index-Uj1NC0QC.d.ts → index-D0qELxvf.d.ts} +22 -0
- package/dist/index.cjs +2 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +6 -6
- package/dist/index.d.ts +6 -6
- package/dist/index.js +2 -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-C5AnjGcV.d.ts} +4 -4
- package/dist/{network-map-DMfaQ1UI.d.cts → network-map-CkRrVFJD.d.cts} +4 -4
- package/dist/{org-Dg25S76d.d.ts → org-B2Y54EHg.d.ts} +4 -2
- package/dist/{org-gIoCYQNA.d.cts → org-Be8tayoD.d.cts} +4 -2
- package/dist/{profile-investment-C97ssnBV.d.cts → profile-investment-CmiQxk5C.d.cts} +1 -0
- package/dist/{profile-investment-C97ssnBV.d.ts → profile-investment-CmiQxk5C.d.ts} +1 -0
- package/dist/{profile-summary-CbzSrQoE.d.cts → profile-summary-CIkWTi6K.d.cts} +1 -1
- package/dist/{profile-summary-Yq3_odUX.d.ts → profile-summary-Fieyfzzf.d.ts} +1 -1
- package/dist/query/fetchers/index.cjs.map +1 -1
- package/dist/query/fetchers/index.d.cts +6 -6
- package/dist/query/fetchers/index.d.ts +6 -6
- package/dist/query/fetchers/index.js.map +1 -1
- package/dist/query/hooks/index.cjs.map +1 -1
- package/dist/query/hooks/index.d.cts +5 -5
- package/dist/query/hooks/index.d.ts +5 -5
- package/dist/query/hooks/index.js.map +1 -1
- package/dist/query/index.cjs.map +1 -1
- package/dist/query/index.d.cts +8 -8
- package/dist/query/index.d.ts +8 -8
- package/dist/query/index.js.map +1 -1
- package/dist/schemas/index.cjs +1 -0
- package/dist/schemas/index.cjs.map +1 -1
- package/dist/schemas/index.d.cts +1 -1
- package/dist/schemas/index.d.ts +1 -1
- package/dist/schemas/index.js +1 -0
- package/dist/schemas/index.js.map +1 -1
- package/dist/schemas/write/index.cjs +1 -0
- package/dist/schemas/write/index.cjs.map +1 -1
- package/dist/schemas/write/index.d.cts +1 -0
- package/dist/schemas/write/index.d.ts +1 -0
- package/dist/schemas/write/index.js +1 -0
- package/dist/schemas/write/index.js.map +1 -1
- package/dist/{types-B3KOVEYy.d.cts → types-BEei3kVS.d.cts} +1 -1
- package/dist/{types-Ct7WNyn9.d.ts → types-ClxJ0I98.d.ts} +1 -1
- package/dist/{use-org-notification-emails-Dh34pNU7.d.ts → use-org-notification-emails-1ZD4ycgg.d.ts} +3 -3
- package/dist/{use-org-notification-emails-CdPL2KHh.d.cts → use-org-notification-emails-BdglyA2S.d.cts} +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
|
|
@@ -715,6 +731,12 @@ interface Profile {
|
|
|
715
731
|
* `Person.familyName`. See `givenName` for fallback guidance.
|
|
716
732
|
*/
|
|
717
733
|
familyName?: string;
|
|
734
|
+
/**
|
|
735
|
+
* Free-form phonetic respelling of the user's name from
|
|
736
|
+
* `id.sifa.profile.self.namePronunciation` (e.g. `Foo-kuh`). Optional; a
|
|
737
|
+
* native field with no `app.bsky.actor.profile` equivalent. Text only.
|
|
738
|
+
*/
|
|
739
|
+
namePronunciation?: string;
|
|
718
740
|
avatar?: string;
|
|
719
741
|
pronouns?: string;
|
|
720
742
|
headline?: string;
|
|
@@ -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
|
|
@@ -715,6 +731,12 @@ interface Profile {
|
|
|
715
731
|
* `Person.familyName`. See `givenName` for fallback guidance.
|
|
716
732
|
*/
|
|
717
733
|
familyName?: string;
|
|
734
|
+
/**
|
|
735
|
+
* Free-form phonetic respelling of the user's name from
|
|
736
|
+
* `id.sifa.profile.self.namePronunciation` (e.g. `Foo-kuh`). Optional; a
|
|
737
|
+
* native field with no `app.bsky.actor.profile` equivalent. Text only.
|
|
738
|
+
*/
|
|
739
|
+
namePronunciation?: string;
|
|
718
740
|
avatar?: string;
|
|
719
741
|
pronouns?: string;
|
|
720
742
|
headline?: string;
|
package/dist/index.cjs
CHANGED
|
@@ -5474,6 +5474,7 @@ var ProfileSelfRecordSchema = zod.z.object({
|
|
|
5474
5474
|
industry: zod.z.string().refine(maxGraphemes(100)).max(1e3).optional(),
|
|
5475
5475
|
givenName: zod.z.string().refine(maxGraphemes(64)).max(640).optional(),
|
|
5476
5476
|
familyName: zod.z.string().refine(maxGraphemes(64)).max(640).optional(),
|
|
5477
|
+
namePronunciation: zod.z.string().refine(maxGraphemes(64)).max(640).optional(),
|
|
5477
5478
|
location: zod.z.unknown().optional(),
|
|
5478
5479
|
openTo: zod.z.array(zod.z.string()).max(10).optional(),
|
|
5479
5480
|
preferredWorkplace: zod.z.array(zod.z.string()).max(3).optional(),
|
|
@@ -5826,7 +5827,7 @@ function describeSifaRecord(collection, value) {
|
|
|
5826
5827
|
}
|
|
5827
5828
|
|
|
5828
5829
|
// src/index.ts
|
|
5829
|
-
var SIFA_SDK_VERSION = "0.12.
|
|
5830
|
+
var SIFA_SDK_VERSION = "0.12.84";
|
|
5830
5831
|
|
|
5831
5832
|
exports.ACTIVITY_TIERS = ACTIVITY_TIERS;
|
|
5832
5833
|
exports.ACTIVITY_VERBS = ACTIVITY_VERBS;
|