···11{
22 "lexicon": 1,
33- "id": "app.bsky.unspecced.getPostThreadHiddenV2",
33+ "id": "app.bsky.unspecced.getPostThreadOtherV2",
44 "defs": {
55 "main": {
66 "type": "query",
77- "description": "(NOTE: this endpoint is under development and WILL change without notice. Don't use it until it is moved out of `unspecced` or your application WILL break) Get the hidden posts in a thread. It is based in an anchor post at any depth of the tree, and returns hidden replies (recursive replies, with branching to their replies) below the anchor. It does not include ancestors nor the anchor. This should be called after exhausting `app.bsky.unspecced.getPostThreadV2`. Does not require auth, but additional metadata and filtering will be applied for authed requests.",
77+ "description": "(NOTE: this endpoint is under development and WILL change without notice. Don't use it until it is moved out of `unspecced` or your application WILL break) Get additional posts under a thread e.g. replies hidden by threadgate. Based on an anchor post at any depth of the tree, returns top-level replies below that anchor. It does not include ancestors nor the anchor itself. This should be called after exhausting `app.bsky.unspecced.getPostThreadV2`. Does not require auth, but additional metadata and filtering will be applied for authed requests.",
88 "parameters": {
99 "type": "params",
1010 "required": ["anchor"],
···2929 "properties": {
3030 "thread": {
3131 "type": "array",
3232- "description": "A flat list of hidden thread items. The depth of each item is indicated by the depth property inside the item.",
3232+ "description": "A flat list of other thread items. The depth of each item is indicated by the depth property inside the item.",
3333 "items": {
3434 "type": "ref",
3535- "ref": "#threadHiddenItem"
3535+ "ref": "#threadItem"
3636 }
3737 }
3838 }
3939 }
4040 }
4141 },
4242- "threadHiddenItem": {
4242+ "threadItem": {
4343 "type": "object",
4444 "required": ["uri", "depth", "value"],
4545 "properties": {
···5050 "encoding": "application/json",
5151 "schema": {
5252 "type": "object",
5353- "required": ["thread", "hasHiddenReplies"],
5353+ "required": ["thread", "hasOtherReplies"],
5454 "properties": {
5555 "thread": {
5656 "type": "array",
···6464 "type": "ref",
6565 "ref": "app.bsky.feed.defs#threadgateView"
6666 },
6767- "hasHiddenReplies": {
6767+ "hasOtherReplies": {
6868 "type": "boolean",
6969- "description": "Whether this thread has hidden replies. If true, a call can be made to the `getPostThreadHiddenV2` endpoint to retrieve them."
6969+ "description": "Whether this thread has additional replies. If true, a call can be made to the `getPostThreadOtherV2` endpoint to retrieve them."
7070 }
7171 }
7272 }
···7272export * as AppBskyLabelerGetServices from './types/app/bsky/labeler/getServices.js';
7373export * as AppBskyLabelerService from './types/app/bsky/labeler/service.js';
7474export * as AppBskyNotificationDefs from './types/app/bsky/notification/defs.js';
7575+export * as AppBskyNotificationGetPreferences from './types/app/bsky/notification/getPreferences.js';
7576export * as AppBskyNotificationGetUnreadCount from './types/app/bsky/notification/getUnreadCount.js';
7677export * as AppBskyNotificationListNotifications from './types/app/bsky/notification/listNotifications.js';
7778export * as AppBskyNotificationPutPreferences from './types/app/bsky/notification/putPreferences.js';
7979+export * as AppBskyNotificationPutPreferencesV2 from './types/app/bsky/notification/putPreferencesV2.js';
7880export * as AppBskyNotificationRegisterPush from './types/app/bsky/notification/registerPush.js';
7981export * as AppBskyNotificationUpdateSeen from './types/app/bsky/notification/updateSeen.js';
8082export * as AppBskyRichtextFacet from './types/app/bsky/richtext/facet.js';
8183export * as AppBskyUnspeccedDefs from './types/app/bsky/unspecced/defs.js';
8284export * as AppBskyUnspeccedGetConfig from './types/app/bsky/unspecced/getConfig.js';
8385export * as AppBskyUnspeccedGetPopularFeedGenerators from './types/app/bsky/unspecced/getPopularFeedGenerators.js';
8484-export * as AppBskyUnspeccedGetPostThreadHiddenV2 from './types/app/bsky/unspecced/getPostThreadHiddenV2.js';
8686+export * as AppBskyUnspeccedGetPostThreadOtherV2 from './types/app/bsky/unspecced/getPostThreadOtherV2.js';
8587export * as AppBskyUnspeccedGetPostThreadV2 from './types/app/bsky/unspecced/getPostThreadV2.js';
8688export * as AppBskyUnspeccedGetSuggestedFeeds from './types/app/bsky/unspecced/getSuggestedFeeds.js';
8789export * as AppBskyUnspeccedGetSuggestedFeedsSkeleton from './types/app/bsky/unspecced/getSuggestedFeedsSkeleton.js';