@singi-labs/sifa-sdk 0.12.83 → 0.12.85
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-B0hFFPZ-.d.cts → index-jNyd5QP7.d.cts} +12 -0
- package/dist/{index-B0hFFPZ-.d.ts → index-jNyd5QP7.d.ts} +12 -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-D4fSIGnS.d.ts → network-map-GfIVEYpr.d.ts} +4 -4
- package/dist/{network-map-DSs6hrPJ.d.cts → network-map-y6U7m-hX.d.cts} +4 -4
- package/dist/{org-CSEOW8H6.d.cts → org-ClDqS3CM.d.cts} +20 -3
- package/dist/{org-C6MV4vE6.d.ts → org-GlACA06R.d.ts} +20 -3
- 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-BG-cvwtJ.d.ts → profile-summary-8fapqzHv.d.ts} +1 -1
- package/dist/{profile-summary-CA40DYqQ.d.cts → profile-summary-DY78IoL9.d.cts} +1 -1
- package/dist/query/fetchers/index.cjs +30 -0
- 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 +29 -1
- package/dist/query/fetchers/index.js.map +1 -1
- package/dist/query/hooks/index.cjs +62 -0
- 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 +61 -1
- package/dist/query/hooks/index.js.map +1 -1
- package/dist/query/index.cjs +64 -0
- 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 +61 -1
- 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-Dbvf5D_Q.d.ts → types-8JaS6abh.d.ts} +1 -1
- package/dist/{types-CIWnMcKx.d.cts → types-8wAWvS-T.d.cts} +1 -1
- package/dist/{use-org-notification-emails-C1kpS75h.d.cts → use-org-notification-emails-B-oGiDHo.d.cts} +11 -4
- package/dist/{use-org-notification-emails-lL0SKnbt.d.ts → use-org-notification-emails-DGzW9MH6.d.ts} +11 -4
- package/package.json +1 -1
|
@@ -731,6 +731,18 @@ interface Profile {
|
|
|
731
731
|
* `Person.familyName`. See `givenName` for fallback guidance.
|
|
732
732
|
*/
|
|
733
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;
|
|
740
|
+
/**
|
|
741
|
+
* Resolved URL of the name-pronunciation audio clip from
|
|
742
|
+
* `id.sifa.profile.self.namePronunciationAudio`, served from the user's PDS
|
|
743
|
+
* (`com.atproto.sync.getBlob`). Optional; absent when no clip is set.
|
|
744
|
+
*/
|
|
745
|
+
namePronunciationAudioUrl?: string;
|
|
734
746
|
avatar?: string;
|
|
735
747
|
pronouns?: string;
|
|
736
748
|
headline?: string;
|
|
@@ -731,6 +731,18 @@ interface Profile {
|
|
|
731
731
|
* `Person.familyName`. See `givenName` for fallback guidance.
|
|
732
732
|
*/
|
|
733
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;
|
|
740
|
+
/**
|
|
741
|
+
* Resolved URL of the name-pronunciation audio clip from
|
|
742
|
+
* `id.sifa.profile.self.namePronunciationAudio`, served from the user's PDS
|
|
743
|
+
* (`com.atproto.sync.getBlob`). Optional; absent when no clip is set.
|
|
744
|
+
*/
|
|
745
|
+
namePronunciationAudioUrl?: string;
|
|
734
746
|
avatar?: string;
|
|
735
747
|
pronouns?: string;
|
|
736
748
|
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.85";
|
|
5830
5831
|
|
|
5831
5832
|
exports.ACTIVITY_TIERS = ACTIVITY_TIERS;
|
|
5832
5833
|
exports.ACTIVITY_VERBS = ACTIVITY_VERBS;
|