a collection of lightweight TypeScript packages for AT Protocol, the protocol powering Bluesky
atproto bluesky typescript npm
101
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore(bluesky): pull latest Bluesky lexicons

Mary c64e83b7 e1fb7738

+30 -7
+5
.changeset/neat-walls-peel.md
··· 1 + --- 2 + '@atcute/bluesky': patch 3 + --- 4 + 5 + pull latest Bluesky lexicons
+1 -1
packages/definitions/bluesky/lexicons/README.md
··· 3 3 this directory contains lexicon documents pulled from the following sources: 4 4 5 5 - https://github.com/bluesky-social/atproto.git 6 - - commit: 95e377504a440a25de8d1a8e07357e890a061861 6 + - commit: 2335075a206ace4ecbd695fabac27a5f26e7a5e8
+4
packages/definitions/bluesky/lexicons/app/bsky/graph/getSuggestedFollowsByActor.json
··· 35 35 }, 36 36 "recId": { 37 37 "type": "integer", 38 + "description": "DEPRECATED: use recIdStr instead." 39 + }, 40 + "recIdStr": { 41 + "type": "string", 38 42 "description": "Snowflake for this recommendation, use when submitting recommendation events." 39 43 } 40 44 }
+1 -1
packages/definitions/bluesky/lexicons/app/bsky/unspecced/getSuggestedOnboardingUsersSkeleton.json packages/definitions/bluesky/lexicons/app/bsky/unspecced/getOnboardingSuggestedUsersSkeleton.json
··· 1 1 { 2 2 "lexicon": 1, 3 - "id": "app.bsky.unspecced.getSuggestedOnboardingUsersSkeleton", 3 + "id": "app.bsky.unspecced.getOnboardingSuggestedUsersSkeleton", 4 4 "defs": { 5 5 "main": { 6 6 "type": "query",
+4
packages/definitions/bluesky/lexicons/app/bsky/unspecced/getSuggestionsSkeleton.json
··· 52 52 }, 53 53 "recId": { 54 54 "type": "integer", 55 + "description": "DEPRECATED: use recIdStr instead." 56 + }, 57 + "recIdStr": { 58 + "type": "string", 55 59 "description": "Snowflake for this recommendation, use when submitting recommendation events." 56 60 } 57 61 }
+1 -1
packages/definitions/bluesky/lib/lexicons/index.ts
··· 113 113 export * as AppBskyUnspeccedGetConfig from './types/app/bsky/unspecced/getConfig.ts'; 114 114 export * as AppBskyUnspeccedGetOnboardingSuggestedStarterPacks from './types/app/bsky/unspecced/getOnboardingSuggestedStarterPacks.ts'; 115 115 export * as AppBskyUnspeccedGetOnboardingSuggestedStarterPacksSkeleton from './types/app/bsky/unspecced/getOnboardingSuggestedStarterPacksSkeleton.ts'; 116 + export * as AppBskyUnspeccedGetOnboardingSuggestedUsersSkeleton from './types/app/bsky/unspecced/getOnboardingSuggestedUsersSkeleton.ts'; 116 117 export * as AppBskyUnspeccedGetPopularFeedGenerators from './types/app/bsky/unspecced/getPopularFeedGenerators.ts'; 117 118 export * as AppBskyUnspeccedGetPostThreadOtherV2 from './types/app/bsky/unspecced/getPostThreadOtherV2.ts'; 118 119 export * as AppBskyUnspeccedGetPostThreadV2 from './types/app/bsky/unspecced/getPostThreadV2.ts'; 119 120 export * as AppBskyUnspeccedGetSuggestedFeeds from './types/app/bsky/unspecced/getSuggestedFeeds.ts'; 120 121 export * as AppBskyUnspeccedGetSuggestedFeedsSkeleton from './types/app/bsky/unspecced/getSuggestedFeedsSkeleton.ts'; 121 122 export * as AppBskyUnspeccedGetSuggestedOnboardingUsers from './types/app/bsky/unspecced/getSuggestedOnboardingUsers.ts'; 122 - export * as AppBskyUnspeccedGetSuggestedOnboardingUsersSkeleton from './types/app/bsky/unspecced/getSuggestedOnboardingUsersSkeleton.ts'; 123 123 export * as AppBskyUnspeccedGetSuggestedStarterPacks from './types/app/bsky/unspecced/getSuggestedStarterPacks.ts'; 124 124 export * as AppBskyUnspeccedGetSuggestedStarterPacksSkeleton from './types/app/bsky/unspecced/getSuggestedStarterPacksSkeleton.ts'; 125 125 export * as AppBskyUnspeccedGetSuggestedUsers from './types/app/bsky/unspecced/getSuggestedUsers.ts';
+6 -1
packages/definitions/bluesky/lib/lexicons/types/app/bsky/graph/getSuggestedFollowsByActor.ts
··· 17 17 */ 18 18 isFallback: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.boolean(), false), 19 19 /** 20 + * DEPRECATED: use recIdStr instead. 21 + * @deprecated 22 + */ 23 + recId: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.integer()), 24 + /** 20 25 * Snowflake for this recommendation, use when submitting recommendation events. 21 26 */ 22 - recId: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.integer()), 27 + recIdStr: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.string()), 23 28 get suggestions() { 24 29 return /*#__PURE__*/ v.array(AppBskyActorDefs.profileViewSchema); 25 30 },
+2 -2
packages/definitions/bluesky/lib/lexicons/types/app/bsky/unspecced/getSuggestedOnboardingUsersSkeleton.ts packages/definitions/bluesky/lib/lexicons/types/app/bsky/unspecced/getOnboardingSuggestedUsersSkeleton.ts
··· 2 2 import type {} from '@atcute/lexicons/ambient'; 3 3 import * as v from '@atcute/lexicons/validations'; 4 4 5 - const _mainSchema = /*#__PURE__*/ v.query('app.bsky.unspecced.getSuggestedOnboardingUsersSkeleton', { 5 + const _mainSchema = /*#__PURE__*/ v.query('app.bsky.unspecced.getOnboardingSuggestedUsersSkeleton', { 6 6 params: /*#__PURE__*/ v.object({ 7 7 /** 8 8 * Category of users to get suggestions for. ··· 45 45 46 46 declare module '@atcute/lexicons/ambient' { 47 47 interface XRPCQueries { 48 - 'app.bsky.unspecced.getSuggestedOnboardingUsersSkeleton': mainSchema; 48 + 'app.bsky.unspecced.getOnboardingSuggestedUsersSkeleton': mainSchema; 49 49 } 50 50 }
+6 -1
packages/definitions/bluesky/lib/lexicons/types/app/bsky/unspecced/getSuggestionsSkeleton.ts
··· 33 33 }, 34 34 cursor: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.string()), 35 35 /** 36 + * DEPRECATED: use recIdStr instead. 37 + * @deprecated 38 + */ 39 + recId: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.integer()), 40 + /** 36 41 * Snowflake for this recommendation, use when submitting recommendation events. 37 42 */ 38 - recId: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.integer()), 43 + recIdStr: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.string()), 39 44 /** 40 45 * DID of the account these suggestions are relative to. If this is returned undefined, suggestions are based on the viewer. 41 46 */