···11+---
22+'@atcute/bluesky': minor
33+---
44+55+add `AnyListView`, `AnyProfileView` and `AnyStarterPackView` for convenience
+3
packages/definitions/bluesky/lib/index.ts
···11export * from './lexicons/index.js';
2233export * from './utilities/embeds.js';
44+export * from './utilities/list.js';
55+export * from './utilities/profile.js';
66+export * from './utilities/starterpack.js';
···11+import type { AppBskyGraphDefs } from '../lexicons/index.js';
22+33+/**
44+ * a union type of all possible list views.
55+ */
66+export type AnyListView = AppBskyGraphDefs.ListViewBasic | AppBskyGraphDefs.ListView;
···11+import type { AppBskyActorDefs, ChatBskyActorDefs } from '../lexicons/index.js';
22+33+/**
44+ * a union type of all possible profile views.
55+ */
66+export type AnyProfileView =
77+ | AppBskyActorDefs.ProfileViewBasic
88+ | AppBskyActorDefs.ProfileView
99+ | AppBskyActorDefs.ProfileViewDetailed
1010+ | ChatBskyActorDefs.ProfileViewBasic;
···11+import type { AppBskyGraphDefs } from '../lexicons/index.js';
22+33+/**
44+ * a union type of all possible starterpack views.
55+ */
66+export type AnyStarterPackView = AppBskyGraphDefs.StarterPackViewBasic | AppBskyGraphDefs.StarterPackView;