@singi-labs/sifa-sdk 0.10.3 → 0.10.5
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-DYUYJxOs.d.cts → adult-content-BjbP46ad.d.cts} +40 -1
- package/dist/{index-DYUYJxOs.d.ts → adult-content-BjbP46ad.d.ts} +40 -1
- package/dist/index.cjs +28 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +27 -4
- package/dist/index.js.map +1 -1
- package/dist/{keys-D-vNPzXx.d.ts → keys-Ba4_wCnj.d.ts} +8 -1
- package/dist/{keys-DRD79nDE.d.cts → keys-DPeDdYki.d.cts} +8 -1
- package/dist/query/fetchers/index.cjs.map +1 -1
- package/dist/query/fetchers/index.d.cts +3 -3
- package/dist/query/fetchers/index.d.ts +3 -3
- 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 +3 -3
- package/dist/query/hooks/index.d.ts +3 -3
- package/dist/query/hooks/index.js.map +1 -1
- package/dist/query/index.cjs.map +1 -1
- package/dist/query/index.d.cts +2 -2
- package/dist/query/index.d.ts +2 -2
- package/dist/query/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { E as ExternalAccount, S as SkillSuggestion } from './
|
|
1
|
+
import { E as ExternalAccount, S as SkillSuggestion, A as ActivityLabel } from './adult-content-BjbP46ad.js';
|
|
2
2
|
import { F as FollowFeedPage, a as FollowProfileItem, b as FeatureAllowlistEntry, c as FeatureFlag } from './feed-DHTy7fUN.js';
|
|
3
3
|
|
|
4
4
|
/**
|
|
@@ -822,6 +822,13 @@ interface ActivityItem {
|
|
|
822
822
|
* See {@link ActivityItemLinkHealth}.
|
|
823
823
|
*/
|
|
824
824
|
linkHealth?: ActivityItemLinkHealth;
|
|
825
|
+
/**
|
|
826
|
+
* Content labels from `app.bsky.feed.defs#postView.labels`. Set by
|
|
827
|
+
* sifa-api for Bluesky posts; undefined for other sources and legacy
|
|
828
|
+
* responses. Pass items to {@link hasAdultContent} to decide whether to
|
|
829
|
+
* gate media. See {@link ActivityLabel}.
|
|
830
|
+
*/
|
|
831
|
+
labels?: ActivityLabel[];
|
|
825
832
|
}
|
|
826
833
|
interface ActivityTeaserResponse {
|
|
827
834
|
items: ActivityItem[];
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { E as ExternalAccount, S as SkillSuggestion } from './
|
|
1
|
+
import { E as ExternalAccount, S as SkillSuggestion, A as ActivityLabel } from './adult-content-BjbP46ad.cjs';
|
|
2
2
|
import { F as FollowFeedPage, a as FollowProfileItem, b as FeatureAllowlistEntry, c as FeatureFlag } from './feed-DHTy7fUN.cjs';
|
|
3
3
|
|
|
4
4
|
/**
|
|
@@ -822,6 +822,13 @@ interface ActivityItem {
|
|
|
822
822
|
* See {@link ActivityItemLinkHealth}.
|
|
823
823
|
*/
|
|
824
824
|
linkHealth?: ActivityItemLinkHealth;
|
|
825
|
+
/**
|
|
826
|
+
* Content labels from `app.bsky.feed.defs#postView.labels`. Set by
|
|
827
|
+
* sifa-api for Bluesky posts; undefined for other sources and legacy
|
|
828
|
+
* responses. Pass items to {@link hasAdultContent} to decide whether to
|
|
829
|
+
* gate media. See {@link ActivityLabel}.
|
|
830
|
+
*/
|
|
831
|
+
labels?: ActivityLabel[];
|
|
825
832
|
}
|
|
826
833
|
interface ActivityTeaserResponse {
|
|
827
834
|
items: ActivityItem[];
|