From 3619ef436fac141a7a255b7384ff14c92ce70737 Mon Sep 17 00:00:00 2001 From: Anbraten Date: Fri, 29 Nov 2024 15:54:55 +0100 Subject: [PATCH 01/21] feat(docs): use typedoc for api page --- .gitignore | 3 +- docs/.vitepress/config.mts | 9 +- docs/api.md | 28 -- docs/api/actor/classes/Actor.md | 419 ++++++++++++++++++ docs/api/actor/classes/BaseActor.md | 268 ++++++++++++ docs/api/actor/classes/User.md | 453 ++++++++++++++++++++ docs/api/actor/index.md | 15 + docs/api/feed/classes/Feed.md | 119 +++++ docs/api/feed/index.md | 13 + docs/api/index.md | 19 + docs/api/index/classes/TSky.md | 131 ++++++ docs/api/index/index.md | 13 + docs/api/list/classes/BskyList.md | 83 ++++ docs/api/list/index.md | 13 + docs/api/paginate/classes/Paginator.md | 73 ++++ docs/api/paginate/index.md | 13 + docs/api/post/classes/Post.md | 191 +++++++++ docs/api/post/index.md | 13 + docs/api/preference/classes/Preferences.md | 75 ++++ docs/api/preference/index.md | 13 + docs/api/starterPack/classes/StarterPack.md | 117 +++++ docs/api/starterPack/index.md | 13 + docs/api/typedoc-sidebar.json | 1 + docs/api/video/classes/Video.md | 101 +++++ docs/api/video/index.md | 13 + docs/package.json | 7 +- docs/typedoc.json | 23 + packages/core/package.json | 18 + packages/core/tsconfig.json | 24 ++ pnpm-lock.yaml | 126 ++++++ 30 files changed, 2370 insertions(+), 37 deletions(-) delete mode 100644 docs/api.md create mode 100644 docs/api/actor/classes/Actor.md create mode 100644 docs/api/actor/classes/BaseActor.md create mode 100644 docs/api/actor/classes/User.md create mode 100644 docs/api/actor/index.md create mode 100644 docs/api/feed/classes/Feed.md create mode 100644 docs/api/feed/index.md create mode 100644 docs/api/index.md create mode 100644 docs/api/index/classes/TSky.md create mode 100644 docs/api/index/index.md create mode 100644 docs/api/list/classes/BskyList.md create mode 100644 docs/api/list/index.md create mode 100644 docs/api/paginate/classes/Paginator.md create mode 100644 docs/api/paginate/index.md create mode 100644 docs/api/post/classes/Post.md create mode 100644 docs/api/post/index.md create mode 100644 docs/api/preference/classes/Preferences.md create mode 100644 docs/api/preference/index.md create mode 100644 docs/api/starterPack/classes/StarterPack.md create mode 100644 docs/api/starterPack/index.md create mode 100644 docs/api/typedoc-sidebar.json create mode 100644 docs/api/video/classes/Video.md create mode 100644 docs/api/video/index.md create mode 100644 docs/typedoc.json create mode 100644 packages/core/tsconfig.json diff --git a/.gitignore b/.gitignore index b512c09..d26c746 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -node_modules \ No newline at end of file +node_modules +dist/ \ No newline at end of file diff --git a/docs/.vitepress/config.mts b/docs/.vitepress/config.mts index 3e5a6f8..3d8ce0d 100644 --- a/docs/.vitepress/config.mts +++ b/docs/.vitepress/config.mts @@ -1,4 +1,5 @@ import { defineConfig } from 'vitepress' +import typedocSidebar from '../api/typedoc-sidebar.json'; // https://vitepress.dev/reference/site-config export default defineConfig({ @@ -13,13 +14,7 @@ export default defineConfig({ sidebar: [ { text: 'Getting Started', link: '/getting-started' }, - { text: 'API Reference', link: '/api', - items: [ - { text: 'new Tsky', link: '/api#tsky' }, - { text: 'tsky.profile', link: '/api#profile' }, - { text: 'tsky.typeahead', link: '/api#typeahead' } - ], - }, + { text: 'API', items: typedocSidebar }, { text: 'Examples', link: '/examples', diff --git a/docs/api.md b/docs/api.md deleted file mode 100644 index b4fb290..0000000 --- a/docs/api.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -outline: deep ---- - -# API Reference - -## Tsky - -### `new Tsky(app: AppBskyNS): Tsky` - -Create a new Tsky instance. - -```ts -import { Tsky } from 'tsky' - -const app = new AppBskyNS(); // TODO -const tsky = new Tsky(app); -``` - -### `tsky.profile(did: string): Promise` - -Get a profile by DID. - -```ts -const profile = await tsky.profile('did:plc:giohuovwawlijq7jkuysq5dd'); - -console.log(profile.handle); -``` diff --git a/docs/api/actor/classes/Actor.md b/docs/api/actor/classes/Actor.md new file mode 100644 index 0000000..3238581 --- /dev/null +++ b/docs/api/actor/classes/Actor.md @@ -0,0 +1,419 @@ +[**actor**](../index.md) + +*** + +[tsky](../../index.md) / [actor](../index.md) / Actor + +# Class: Actor + +## Extends + +- [`BaseActor`](BaseActor.md) + +## Constructors + +### new Actor() + +> **new Actor**(`instance`, `actor`): [`Actor`](Actor.md) + +#### Parameters + +##### instance + +`AppBskyNS` + +##### actor + +`string` + +#### Returns + +[`Actor`](Actor.md) + +#### Inherited from + +[`BaseActor`](BaseActor.md).[`constructor`](BaseActor.md#constructors) + +#### Defined in + +[actor.ts:24](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L24) + +## Properties + +### actor + +> `readonly` **actor**: `string` + +#### Inherited from + +[`BaseActor`](BaseActor.md).[`actor`](BaseActor.md#actor) + +#### Defined in + +[actor.ts:24](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L24) + +*** + +### instance + +> `readonly` **instance**: `AppBskyNS` + +#### Inherited from + +[`BaseActor`](BaseActor.md).[`instance`](BaseActor.md#instance) + +#### Defined in + +[actor.ts:24](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L24) + +## Methods + +### feed() + +> **feed**(`params`, `options`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +Get a list of feeds (feed generator records) created by the actor (in the actor's repo). + +#### Parameters + +##### params + +`QueryParams` + +##### options? + +`CallOptions` + +#### Returns + +[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +#### Inherited from + +[`BaseActor`](BaseActor.md).[`feed`](BaseActor.md#feed) + +#### Defined in + +[actor.ts:135](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L135) + +*** + +### feeds() + +> **feeds**(`limit`?, `options`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +Get a view of an actor's 'author feed' (post and reposts by the author). Does not require auth. + +#### Parameters + +##### limit? + +`number` + +##### options? + +`CallOptions` + +#### Returns + +[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +#### Inherited from + +[`BaseActor`](BaseActor.md).[`feeds`](BaseActor.md#feeds) + +#### Defined in + +[actor.ts:107](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L107) + +*** + +### followers() + +> **followers**(`limit`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +Enumerates accounts which follow a specified account (actor). + +#### Parameters + +##### limit? + +`number` + +#### Returns + +[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +#### Inherited from + +[`BaseActor`](BaseActor.md).[`followers`](BaseActor.md#followers) + +#### Defined in + +[actor.ts:44](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L44) + +*** + +### follows() + +> **follows**(`limit`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +Enumerates accounts which a specified account (actor) follows. + +#### Parameters + +##### limit? + +`number` + +#### Returns + +[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +#### Inherited from + +[`BaseActor`](BaseActor.md).[`follows`](BaseActor.md#follows) + +#### Defined in + +[actor.ts:59](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L59) + +*** + +### likes() + +> **likes**(`limit`?, `options`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +Get a list of posts liked by an actor. Requires auth, actor must be the requesting account. + +#### Parameters + +##### limit? + +`number` + +##### options? + +`CallOptions` + +#### Returns + +[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +#### Inherited from + +[`BaseActor`](BaseActor.md).[`likes`](BaseActor.md#likes) + +#### Defined in + +[actor.ts:121](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L121) + +*** + +### lists() + +> **lists**(`limit`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +Enumerates the lists created by a specified account (actor). + +#### Parameters + +##### limit? + +`number` + +#### Returns + +[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +#### Inherited from + +[`BaseActor`](BaseActor.md).[`lists`](BaseActor.md#lists) + +#### Defined in + +[actor.ts:74](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L74) + +*** + +### mute() + +> **mute**(`options`?): `Promise`\<`Response`\> + +Creates a mute relationship for the specified account. Mutes are private in Bluesky. Requires auth. + +#### Parameters + +##### options? + +`CallOptions` + +#### Returns + +`Promise`\<`Response`\> + +#### Defined in + +[actor.ts:176](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L176) + +*** + +### relationships() + +> **relationships**(`others`?, `options`?): `Promise`\<`OutputSchema`\> + +Enumerates public relationships between one account, and a list of other accounts. Does not require auth. + +#### Parameters + +##### others? + +`string`[] + +##### options? + +`CallOptions` + +#### Returns + +`Promise`\<`OutputSchema`\> + +#### Inherited from + +[`BaseActor`](BaseActor.md).[`relationships`](BaseActor.md#relationships) + +#### Defined in + +[actor.ts:89](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L89) + +*** + +### starterPacks() + +> **starterPacks**(`limit`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +Get a list of starter packs created by the actor. + +#### Parameters + +##### limit? + +`number` + +#### Returns + +[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +#### Inherited from + +[`BaseActor`](BaseActor.md).[`starterPacks`](BaseActor.md#starterpacks) + +#### Defined in + +[actor.ts:29](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L29) + +*** + +### thread() + +> **thread**(`thread`): `Thread` + +#### Parameters + +##### thread + +`string` + +#### Returns + +`Thread` + +#### Inherited from + +[`BaseActor`](BaseActor.md).[`thread`](BaseActor.md#thread) + +#### Defined in + +[actor.ts:149](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L149) + +*** + +### unmute() + +> **unmute**(`options`?): `Promise`\<`Response`\> + +Unmutes the specified account. Requires auth. + +#### Parameters + +##### options? + +`CallOptions` + +#### Returns + +`Promise`\<`Response`\> + +#### Defined in + +[actor.ts:183](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L183) + +*** + +### muteMany() + +> `static` **muteMany**(`instance`, `actors`, `options`?): `Promise`\<`Response`\> + +Creates a mute relationship for the specified list of accounts. Mutes are private in Bluesky. Requires auth. + +#### Parameters + +##### instance + +`AppBskyNS` + +##### actors + +`string`[] + +##### options? + +`CallOptions` + +#### Returns + +`Promise`\<`Response`\> + +#### Defined in + +[actor.ts:190](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L190) + +*** + +### unmuteMany() + +> `static` **unmuteMany**(`instance`, `actors`, `options`?): `Promise`\<`Response`\> + +Unmutes the specified list of accounts. Requires auth. + +#### Parameters + +##### instance + +`AppBskyNS` + +##### actors + +`string`[] + +##### options? + +`CallOptions` + +#### Returns + +`Promise`\<`Response`\> + +#### Defined in + +[actor.ts:202](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L202) diff --git a/docs/api/actor/classes/BaseActor.md b/docs/api/actor/classes/BaseActor.md new file mode 100644 index 0000000..2532b9a --- /dev/null +++ b/docs/api/actor/classes/BaseActor.md @@ -0,0 +1,268 @@ +[**actor**](../index.md) + +*** + +[tsky](../../index.md) / [actor](../index.md) / BaseActor + +# Class: BaseActor + +## Extended by + +- [`Actor`](Actor.md) +- [`User`](User.md) + +## Constructors + +### new BaseActor() + +> **new BaseActor**(`instance`, `actor`): [`BaseActor`](BaseActor.md) + +#### Parameters + +##### instance + +`AppBskyNS` + +##### actor + +`string` + +#### Returns + +[`BaseActor`](BaseActor.md) + +#### Defined in + +[actor.ts:24](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L24) + +## Properties + +### actor + +> `readonly` **actor**: `string` + +#### Defined in + +[actor.ts:24](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L24) + +*** + +### instance + +> `readonly` **instance**: `AppBskyNS` + +#### Defined in + +[actor.ts:24](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L24) + +## Methods + +### feed() + +> **feed**(`params`, `options`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +Get a list of feeds (feed generator records) created by the actor (in the actor's repo). + +#### Parameters + +##### params + +`QueryParams` + +##### options? + +`CallOptions` + +#### Returns + +[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +#### Defined in + +[actor.ts:135](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L135) + +*** + +### feeds() + +> **feeds**(`limit`?, `options`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +Get a view of an actor's 'author feed' (post and reposts by the author). Does not require auth. + +#### Parameters + +##### limit? + +`number` + +##### options? + +`CallOptions` + +#### Returns + +[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +#### Defined in + +[actor.ts:107](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L107) + +*** + +### followers() + +> **followers**(`limit`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +Enumerates accounts which follow a specified account (actor). + +#### Parameters + +##### limit? + +`number` + +#### Returns + +[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +#### Defined in + +[actor.ts:44](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L44) + +*** + +### follows() + +> **follows**(`limit`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +Enumerates accounts which a specified account (actor) follows. + +#### Parameters + +##### limit? + +`number` + +#### Returns + +[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +#### Defined in + +[actor.ts:59](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L59) + +*** + +### likes() + +> **likes**(`limit`?, `options`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +Get a list of posts liked by an actor. Requires auth, actor must be the requesting account. + +#### Parameters + +##### limit? + +`number` + +##### options? + +`CallOptions` + +#### Returns + +[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +#### Defined in + +[actor.ts:121](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L121) + +*** + +### lists() + +> **lists**(`limit`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +Enumerates the lists created by a specified account (actor). + +#### Parameters + +##### limit? + +`number` + +#### Returns + +[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +#### Defined in + +[actor.ts:74](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L74) + +*** + +### relationships() + +> **relationships**(`others`?, `options`?): `Promise`\<`OutputSchema`\> + +Enumerates public relationships between one account, and a list of other accounts. Does not require auth. + +#### Parameters + +##### others? + +`string`[] + +##### options? + +`CallOptions` + +#### Returns + +`Promise`\<`OutputSchema`\> + +#### Defined in + +[actor.ts:89](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L89) + +*** + +### starterPacks() + +> **starterPacks**(`limit`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +Get a list of starter packs created by the actor. + +#### Parameters + +##### limit? + +`number` + +#### Returns + +[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +#### Defined in + +[actor.ts:29](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L29) + +*** + +### thread() + +> **thread**(`thread`): `Thread` + +#### Parameters + +##### thread + +`string` + +#### Returns + +`Thread` + +#### Defined in + +[actor.ts:149](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L149) diff --git a/docs/api/actor/classes/User.md b/docs/api/actor/classes/User.md new file mode 100644 index 0000000..c316b63 --- /dev/null +++ b/docs/api/actor/classes/User.md @@ -0,0 +1,453 @@ +[**actor**](../index.md) + +*** + +[tsky](../../index.md) / [actor](../index.md) / User + +# Class: User + +## Extends + +- [`BaseActor`](BaseActor.md) + +## Constructors + +### new User() + +> **new User**(`instance`, `actor`): [`User`](User.md) + +#### Parameters + +##### instance + +`AppBskyNS` + +##### actor + +`string` + +#### Returns + +[`User`](User.md) + +#### Inherited from + +[`BaseActor`](BaseActor.md).[`constructor`](BaseActor.md#constructors) + +#### Defined in + +[actor.ts:24](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L24) + +## Properties + +### actor + +> `readonly` **actor**: `string` + +#### Inherited from + +[`BaseActor`](BaseActor.md).[`actor`](BaseActor.md#actor) + +#### Defined in + +[actor.ts:24](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L24) + +*** + +### instance + +> `readonly` **instance**: `AppBskyNS` + +#### Inherited from + +[`BaseActor`](BaseActor.md).[`instance`](BaseActor.md#instance) + +#### Defined in + +[actor.ts:24](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L24) + +## Methods + +### blockedLists() + +> **blockedLists**(`limit`?, `options`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +Get mod lists that the requesting account (actor) is blocking. Requires auth. + +#### Parameters + +##### limit? + +`number` + +##### options? + +`CallOptions` + +#### Returns + +[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +#### Defined in + +[actor.ts:236](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L236) + +*** + +### feed() + +> **feed**(`params`, `options`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +Get a list of feeds (feed generator records) created by the actor (in the actor's repo). + +#### Parameters + +##### params + +`QueryParams` + +##### options? + +`CallOptions` + +#### Returns + +[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +#### Inherited from + +[`BaseActor`](BaseActor.md).[`feed`](BaseActor.md#feed) + +#### Defined in + +[actor.ts:135](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L135) + +*** + +### feeds() + +> **feeds**(`limit`?, `options`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +Get a view of an actor's 'author feed' (post and reposts by the author). Does not require auth. + +#### Parameters + +##### limit? + +`number` + +##### options? + +`CallOptions` + +#### Returns + +[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +#### Inherited from + +[`BaseActor`](BaseActor.md).[`feeds`](BaseActor.md#feeds) + +#### Defined in + +[actor.ts:107](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L107) + +*** + +### followers() + +> **followers**(`limit`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +Enumerates accounts which follow a specified account (actor). + +#### Parameters + +##### limit? + +`number` + +#### Returns + +[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +#### Inherited from + +[`BaseActor`](BaseActor.md).[`followers`](BaseActor.md#followers) + +#### Defined in + +[actor.ts:44](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L44) + +*** + +### follows() + +> **follows**(`limit`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +Enumerates accounts which a specified account (actor) follows. + +#### Parameters + +##### limit? + +`number` + +#### Returns + +[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +#### Inherited from + +[`BaseActor`](BaseActor.md).[`follows`](BaseActor.md#follows) + +#### Defined in + +[actor.ts:59](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L59) + +*** + +### knowFollowers() + +> **knowFollowers**(`params`, `options`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +Enumerates accounts which follow a specified account (actor) and are followed by the viewer. + +#### Parameters + +##### params + +###### params.actor + +`string` + +###### params.limit + +`number` + +##### options? + +`CallOptions` + +#### Returns + +[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +#### Defined in + +[actor.ts:216](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L216) + +*** + +### likes() + +> **likes**(`limit`?, `options`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +Get a list of posts liked by an actor. Requires auth, actor must be the requesting account. + +#### Parameters + +##### limit? + +`number` + +##### options? + +`CallOptions` + +#### Returns + +[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +#### Inherited from + +[`BaseActor`](BaseActor.md).[`likes`](BaseActor.md#likes) + +#### Defined in + +[actor.ts:121](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L121) + +*** + +### lists() + +> **lists**(`limit`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +Enumerates the lists created by a specified account (actor). + +#### Parameters + +##### limit? + +`number` + +#### Returns + +[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +#### Inherited from + +[`BaseActor`](BaseActor.md).[`lists`](BaseActor.md#lists) + +#### Defined in + +[actor.ts:74](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L74) + +*** + +### mutedLists() + +> **mutedLists**(`limit`?, `options`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +Enumerates mod lists that the requesting account (actor) currently has muted. Requires auth. + +#### Parameters + +##### limit? + +`number` + +##### options? + +`CallOptions` + +#### Returns + +[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +#### Defined in + +[actor.ts:256](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L256) + +*** + +### mutedProfiles() + +> **mutedProfiles**(`limit`?, `options`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +Enumerates accounts that the requesting account (actor) currently has muted. Requires auth. + +#### Parameters + +##### limit? + +`number` + +##### options? + +`CallOptions` + +#### Returns + +[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +#### Defined in + +[actor.ts:273](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L273) + +*** + +### preferences() + +> **preferences**(): [`Preferences`](../../preference/classes/Preferences.md) + +#### Returns + +[`Preferences`](../../preference/classes/Preferences.md) + +#### Defined in + +[actor.ts:291](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L291) + +*** + +### relationships() + +> **relationships**(`others`?, `options`?): `Promise`\<`OutputSchema`\> + +Enumerates public relationships between one account, and a list of other accounts. Does not require auth. + +#### Parameters + +##### others? + +`string`[] + +##### options? + +`CallOptions` + +#### Returns + +`Promise`\<`OutputSchema`\> + +#### Inherited from + +[`BaseActor`](BaseActor.md).[`relationships`](BaseActor.md#relationships) + +#### Defined in + +[actor.ts:89](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L89) + +*** + +### starterPacks() + +> **starterPacks**(`limit`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +Get a list of starter packs created by the actor. + +#### Parameters + +##### limit? + +`number` + +#### Returns + +[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +#### Inherited from + +[`BaseActor`](BaseActor.md).[`starterPacks`](BaseActor.md#starterpacks) + +#### Defined in + +[actor.ts:29](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L29) + +*** + +### suggestions() + +> **suggestions**(): `Suggestions` + +#### Returns + +`Suggestions` + +#### Defined in + +[actor.ts:287](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L287) + +*** + +### thread() + +> **thread**(`thread`): `Thread` + +#### Parameters + +##### thread + +`string` + +#### Returns + +`Thread` + +#### Inherited from + +[`BaseActor`](BaseActor.md).[`thread`](BaseActor.md#thread) + +#### Defined in + +[actor.ts:149](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L149) diff --git a/docs/api/actor/index.md b/docs/api/actor/index.md new file mode 100644 index 0000000..82e14b1 --- /dev/null +++ b/docs/api/actor/index.md @@ -0,0 +1,15 @@ +**actor** + +*** + +[tsky](../index.md) / actor + +# actor + +## Index + +### Classes + +- [Actor](classes/Actor.md) +- [BaseActor](classes/BaseActor.md) +- [User](classes/User.md) diff --git a/docs/api/feed/classes/Feed.md b/docs/api/feed/classes/Feed.md new file mode 100644 index 0000000..8651ba9 --- /dev/null +++ b/docs/api/feed/classes/Feed.md @@ -0,0 +1,119 @@ +[**feed**](../index.md) + +*** + +[tsky](../../index.md) / [feed](../index.md) / Feed + +# Class: Feed + +## Constructors + +### new Feed() + +> **new Feed**(`instance`): [`Feed`](Feed.md) + +#### Parameters + +##### instance + +`AppBskyNS` + +#### Returns + +[`Feed`](Feed.md) + +#### Defined in + +[feed.ts:14](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/feed.ts#L14) + +## Methods + +### generator() + +> **generator**(): `FeedGenerator` + +#### Returns + +`FeedGenerator` + +#### Defined in + +[feed.ts:62](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/feed.ts#L62) + +*** + +### getFeed() + +> **getFeed**(`params`, `options`?): `Promise`\<[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\>\> + +Get a hydrated feed from an actor's selected feed generator. Implemented by App View. + +#### Parameters + +##### params + +`QueryParams` + +##### options? + +`CallOptions` + +#### Returns + +`Promise`\<[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\>\> + +#### Defined in + +[feed.ts:19](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/feed.ts#L19) + +*** + +### sendInteractions() + +> **sendInteractions**(`data`?, `options`?): `Promise`\<`OutputSchema`\> + +Send information about interactions with feed items back to the feed generator that served them. + +#### Parameters + +##### data? + +`InputSchema` + +##### options? + +`CallOptions` + +#### Returns + +`Promise`\<`OutputSchema`\> + +#### Defined in + +[feed.ts:53](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/feed.ts#L53) + +*** + +### timeline() + +> **timeline**(`params`, `options`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +Get a view of the requesting account's home timeline. This is expected to be some form of reverse-chronological feed. + +#### Parameters + +##### params + +`QueryParams` + +##### options? + +`CallOptions` + +#### Returns + +[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +#### Defined in + +[feed.ts:36](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/feed.ts#L36) diff --git a/docs/api/feed/index.md b/docs/api/feed/index.md new file mode 100644 index 0000000..9b6c3b8 --- /dev/null +++ b/docs/api/feed/index.md @@ -0,0 +1,13 @@ +**feed** + +*** + +[tsky](../index.md) / feed + +# feed + +## Index + +### Classes + +- [Feed](classes/Feed.md) diff --git a/docs/api/index.md b/docs/api/index.md new file mode 100644 index 0000000..9f8a4ef --- /dev/null +++ b/docs/api/index.md @@ -0,0 +1,19 @@ +**tsky v0.1.0** + +*** + +# TSky + +A BlueSky API Wrapper + +## Modules + +- [actor](actor/index.md) +- [feed](feed/index.md) +- [index](index/index.md) +- [list](list/index.md) +- [paginate](paginate/index.md) +- [post](post/index.md) +- [preference](preference/index.md) +- [starterPack](starterPack/index.md) +- [video](video/index.md) diff --git a/docs/api/index/classes/TSky.md b/docs/api/index/classes/TSky.md new file mode 100644 index 0000000..26bc361 --- /dev/null +++ b/docs/api/index/classes/TSky.md @@ -0,0 +1,131 @@ +[**index**](../index.md) + +*** + +[tsky](../../index.md) / [index](../index.md) / TSky + +# Class: TSky + +## Constructors + +### new TSky() + +> **new TSky**(`instance`): [`TSky`](TSky.md) + +#### Parameters + +##### instance + +`AppBskyNS` + +#### Returns + +[`TSky`](TSky.md) + +#### Defined in + +[index.ts:12](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/index.ts#L12) + +## Methods + +### profile() + +#### Call Signature + +> **profile**(`identifier`, `options`?): `Promise`\<`ProfileViewDetailed`\> + +Get detailed profile view of an actor. Does not require auth, but contains relevant metadata with auth. + +##### Parameters + +###### identifier + +`string` + +###### options? + +`CallOptions` + +##### Returns + +`Promise`\<`ProfileViewDetailed`\> + +##### Defined in + +[index.ts:17](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/index.ts#L17) + +#### Call Signature + +> **profile**(`identifiers`, `options`?): `Promise`\<`ProfileViewDetailed`[]\> + +Get detailed profile views of multiple actors. + +##### Parameters + +###### identifiers + +`string`[] + +###### options? + +`CallOptions` + +##### Returns + +`Promise`\<`ProfileViewDetailed`[]\> + +##### Defined in + +[index.ts:24](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/index.ts#L24) + +*** + +### search() + +> **search**(`params`, `options`?): `Promise`\<[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\>\> + +Find actors (profiles) matching search criteria. Does not require auth. + +#### Parameters + +##### params + +`QueryParams` = `{}` + +##### options? + +`CallOptions` + +#### Returns + +`Promise`\<[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\>\> + +#### Defined in + +[index.ts:70](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/index.ts#L70) + +*** + +### typeahead() + +> **typeahead**(`params`, `options`?): `Promise`\<`ProfileViewBasic`[]\> + +Find actor suggestions for a prefix search term. Expected use is for auto-completion during text field entry. Does not require auth. + +#### Parameters + +##### params + +`QueryParams` + +##### options? + +`CallOptions` + +#### Returns + +`Promise`\<`ProfileViewBasic`[]\> + +#### Defined in + +[index.ts:55](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/index.ts#L55) diff --git a/docs/api/index/index.md b/docs/api/index/index.md new file mode 100644 index 0000000..da203dc --- /dev/null +++ b/docs/api/index/index.md @@ -0,0 +1,13 @@ +**index** + +*** + +[tsky](../index.md) / index + +# index + +## Index + +### Classes + +- [TSky](classes/TSky.md) diff --git a/docs/api/list/classes/BskyList.md b/docs/api/list/classes/BskyList.md new file mode 100644 index 0000000..ad2e806 --- /dev/null +++ b/docs/api/list/classes/BskyList.md @@ -0,0 +1,83 @@ +[**list**](../index.md) + +*** + +[tsky](../../index.md) / [list](../index.md) / BskyList + +# Class: BskyList + +## Constructors + +### new BskyList() + +> **new BskyList**(`instance`, `uri`): [`BskyList`](BskyList.md) + +#### Parameters + +##### instance + +`AppBskyNS` + +##### uri + +`string` + +#### Returns + +[`BskyList`](BskyList.md) + +#### Defined in + +[list.ts:9](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/list.ts#L9) + +## Methods + +### about() + +> **about**(`limit`?, `options`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +Gets a 'view' (with additional context) of a specified list. + +#### Parameters + +##### limit? + +`number` + +##### options? + +`CallOptions` + +#### Returns + +[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +#### Defined in + +[list.ts:14](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/list.ts#L14) + +*** + +### feed() + +> **feed**(`limit`?, `options`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +Get a feed of recent posts from a list (posts and reposts from any actors on the list). Does not require auth. + +#### Parameters + +##### limit? + +`number` + +##### options? + +`CallOptions` + +#### Returns + +[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +#### Defined in + +[list.ts:32](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/list.ts#L32) diff --git a/docs/api/list/index.md b/docs/api/list/index.md new file mode 100644 index 0000000..20cc891 --- /dev/null +++ b/docs/api/list/index.md @@ -0,0 +1,13 @@ +**list** + +*** + +[tsky](../index.md) / list + +# list + +## Index + +### Classes + +- [BskyList](classes/BskyList.md) diff --git a/docs/api/paginate/classes/Paginator.md b/docs/api/paginate/classes/Paginator.md new file mode 100644 index 0000000..e1f115e --- /dev/null +++ b/docs/api/paginate/classes/Paginator.md @@ -0,0 +1,73 @@ +[**paginate**](../index.md) + +*** + +[tsky](../../index.md) / [paginate](../index.md) / Paginator + +# Class: Paginator\ + +## Type Parameters + +• **T** *extends* `CursorResponse` + +## Constructors + +### new Paginator() + +> **new Paginator**\<`T`\>(`onNext`, `defaultValues`?): [`Paginator`](Paginator.md)\<`T`\> + +#### Parameters + +##### onNext + +(`cursor`?) => `Promise`\<`T`\> + +##### defaultValues? + +`T`[] + +#### Returns + +[`Paginator`](Paginator.md)\<`T`\> + +#### Defined in + +[paginate.ts:9](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/paginate.ts#L9) + +## Properties + +### values + +> `readonly` **values**: `T`[] = `[]` + +#### Defined in + +[paginate.ts:7](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/paginate.ts#L7) + +## Methods + +### clone() + +> **clone**(): [`Paginator`](Paginator.md)\<`T`\> + +#### Returns + +[`Paginator`](Paginator.md)\<`T`\> + +#### Defined in + +[paginate.ts:21](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/paginate.ts#L21) + +*** + +### next() + +> **next**(): `Promise`\<`null` \| `T`\> + +#### Returns + +`Promise`\<`null` \| `T`\> + +#### Defined in + +[paginate.ts:25](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/paginate.ts#L25) diff --git a/docs/api/paginate/index.md b/docs/api/paginate/index.md new file mode 100644 index 0000000..158adf9 --- /dev/null +++ b/docs/api/paginate/index.md @@ -0,0 +1,13 @@ +**paginate** + +*** + +[tsky](../index.md) / paginate + +# paginate + +## Index + +### Classes + +- [Paginator](classes/Paginator.md) diff --git a/docs/api/post/classes/Post.md b/docs/api/post/classes/Post.md new file mode 100644 index 0000000..2091168 --- /dev/null +++ b/docs/api/post/classes/Post.md @@ -0,0 +1,191 @@ +[**post**](../index.md) + +*** + +[tsky](../../index.md) / [post](../index.md) / Post + +# Class: Post + +## Constructors + +### new Post() + +> **new Post**(`instance`): [`Post`](Post.md) + +#### Parameters + +##### instance + +`AppBskyNS` + +#### Returns + +[`Post`](Post.md) + +#### Defined in + +[post.ts:13](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/post.ts#L13) + +## Methods + +### likes() + +> **likes**(`params`, `options`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +Get like records which reference a subject (by AT-URI and CID). + +#### Parameters + +##### params + +`QueryParams` + +##### options? + +`CallOptions` + +#### Returns + +[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +#### Defined in + +[post.ts:30](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/post.ts#L30) + +*** + +### quotes() + +> **quotes**(`params`, `options`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +Get a list of quotes for a given post. + +#### Parameters + +##### params + +`QueryParams` + +##### options? + +`CallOptions` + +#### Returns + +[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +#### Defined in + +[post.ts:47](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/post.ts#L47) + +*** + +### repostedBy() + +> **repostedBy**(`params`, `options`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +Get a list of reposts for a given post. + +#### Parameters + +##### params + +`QueryParams` + +##### options? + +`CallOptions` + +#### Returns + +[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +#### Defined in + +[post.ts:64](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/post.ts#L64) + +*** + +### threads() + +> **threads**(`params`, `options`?): `Promise`\<`OutputSchema`\> + +Get posts in a thread. Does not require auth, but additional metadata and filtering will be applied for authed requests. + +#### Parameters + +##### params + +`QueryParams` + +##### options? + +`CallOptions` + +#### Returns + +`Promise`\<`OutputSchema`\> + +#### Defined in + +[post.ts:18](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/post.ts#L18) + +*** + +### getMany() + +> `static` **getMany**(`instance`, `posts`, `options`?): `Promise`\<`PostView`[]\> + +Gets post views for a specified list of posts (by AT-URI). This is sometimes referred to as 'hydrating' a 'feed skeleton'. + +#### Parameters + +##### instance + +`AppBskyNS` + +##### posts + +`string`[] + +##### options? + +`CallOptions` + +#### Returns + +`Promise`\<`PostView`[]\> + +#### Defined in + +[post.ts:99](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/post.ts#L99) + +*** + +### search() + +> `static` **search**(`instance`, `params`, `options`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +Find posts matching search criteria, returning views of those posts. + +#### Parameters + +##### instance + +`AppBskyNS` + +##### params + +`QueryParams` + +##### options? + +`CallOptions` + +#### Returns + +[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +#### Defined in + +[post.ts:81](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/post.ts#L81) diff --git a/docs/api/post/index.md b/docs/api/post/index.md new file mode 100644 index 0000000..d1b04be --- /dev/null +++ b/docs/api/post/index.md @@ -0,0 +1,13 @@ +**post** + +*** + +[tsky](../index.md) / post + +# post + +## Index + +### Classes + +- [Post](classes/Post.md) diff --git a/docs/api/preference/classes/Preferences.md b/docs/api/preference/classes/Preferences.md new file mode 100644 index 0000000..09afd5b --- /dev/null +++ b/docs/api/preference/classes/Preferences.md @@ -0,0 +1,75 @@ +[**preference**](../index.md) + +*** + +[tsky](../../index.md) / [preference](../index.md) / Preferences + +# Class: Preferences + +## Constructors + +### new Preferences() + +> **new Preferences**(`instance`): [`Preferences`](Preferences.md) + +#### Parameters + +##### instance + +`AppBskyNS` + +#### Returns + +[`Preferences`](Preferences.md) + +#### Defined in + +[preference.ts:8](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/preference.ts#L8) + +## Methods + +### get() + +> **get**(`options`?): `Promise`\<`Preferences`\> + +Get private preferences attached to the current account. Expected use is synchronization between multiple devices, and import/export during account migration. Requires auth. + +#### Parameters + +##### options? + +`CallOptions` + +#### Returns + +`Promise`\<`Preferences`\> + +#### Defined in + +[preference.ts:13](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/preference.ts#L13) + +*** + +### set() + +> **set**(`preferences`, `options`?): `Promise`\<`void`\> + +Set the private preferences attached to the account. + +#### Parameters + +##### preferences + +`Preferences` + +##### options? + +`CallOptions` + +#### Returns + +`Promise`\<`void`\> + +#### Defined in + +[preference.ts:22](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/preference.ts#L22) diff --git a/docs/api/preference/index.md b/docs/api/preference/index.md new file mode 100644 index 0000000..971650e --- /dev/null +++ b/docs/api/preference/index.md @@ -0,0 +1,13 @@ +**preference** + +*** + +[tsky](../index.md) / preference + +# preference + +## Index + +### Classes + +- [Preferences](classes/Preferences.md) diff --git a/docs/api/starterPack/classes/StarterPack.md b/docs/api/starterPack/classes/StarterPack.md new file mode 100644 index 0000000..e755fe0 --- /dev/null +++ b/docs/api/starterPack/classes/StarterPack.md @@ -0,0 +1,117 @@ +[**starterPack**](../index.md) + +*** + +[tsky](../../index.md) / [starterPack](../index.md) / StarterPack + +# Class: StarterPack + +## Constructors + +### new StarterPack() + +> **new StarterPack**(`instance`, `uri`): [`StarterPack`](StarterPack.md) + +#### Parameters + +##### instance + +`AppBskyNS` + +##### uri + +`string` + +#### Returns + +[`StarterPack`](StarterPack.md) + +#### Defined in + +[starterPack.ts:10](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/starterPack.ts#L10) + +## Methods + +### about() + +> **about**(`options`?): `Promise`\<`OutputSchema`\> + +Gets a view of a starter pack. + +#### Parameters + +##### options? + +`CallOptions` + +#### Returns + +`Promise`\<`OutputSchema`\> + +#### Defined in + +[starterPack.ts:15](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/starterPack.ts#L15) + +*** + +### getMany() + +> `static` **getMany**(`instance`, `starterpacks`, `options`?): `Promise`\<`OutputSchema`\> + +Get views for a list of starter packs. + +#### Parameters + +##### instance + +`AppBskyNS` + +##### starterpacks + +`string`[] + +##### options? + +`CallOptions` + +#### Returns + +`Promise`\<`OutputSchema`\> + +#### Defined in + +[starterPack.ts:52](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/starterPack.ts#L52) + +*** + +### search() + +> `static` **search**(`instance`, `query`, `limit`?, `options`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +Search for starter packs. + +#### Parameters + +##### instance + +`AppBskyNS` + +##### query + +`string` + +##### limit? + +`number` + +##### options? + +`CallOptions` + +#### Returns + +[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> + +#### Defined in + +[starterPack.ts:29](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/starterPack.ts#L29) diff --git a/docs/api/starterPack/index.md b/docs/api/starterPack/index.md new file mode 100644 index 0000000..87f03a9 --- /dev/null +++ b/docs/api/starterPack/index.md @@ -0,0 +1,13 @@ +**starterPack** + +*** + +[tsky](../index.md) / starterPack + +# starterPack + +## Index + +### Classes + +- [StarterPack](classes/StarterPack.md) diff --git a/docs/api/typedoc-sidebar.json b/docs/api/typedoc-sidebar.json new file mode 100644 index 0000000..620a00d --- /dev/null +++ b/docs/api/typedoc-sidebar.json @@ -0,0 +1 @@ +[{"text":"actor","link":"/api/actor/","collapsed":true,"items":[{"text":"Classes","collapsed":true,"items":[{"text":"Actor","link":"/api/actor/classes/Actor.md"},{"text":"BaseActor","link":"/api/actor/classes/BaseActor.md"},{"text":"User","link":"/api/actor/classes/User.md"}]}]},{"text":"feed","link":"/api/feed/","collapsed":true,"items":[{"text":"Classes","collapsed":true,"items":[{"text":"Feed","link":"/api/feed/classes/Feed.md"}]}]},{"text":"index","link":"/api/index/","collapsed":true,"items":[{"text":"Classes","collapsed":true,"items":[{"text":"TSky","link":"/api/index/classes/TSky.md"}]}]},{"text":"list","link":"/api/list/","collapsed":true,"items":[{"text":"Classes","collapsed":true,"items":[{"text":"BskyList","link":"/api/list/classes/BskyList.md"}]}]},{"text":"paginate","link":"/api/paginate/","collapsed":true,"items":[{"text":"Classes","collapsed":true,"items":[{"text":"Paginator","link":"/api/paginate/classes/Paginator.md"}]}]},{"text":"post","link":"/api/post/","collapsed":true,"items":[{"text":"Classes","collapsed":true,"items":[{"text":"Post","link":"/api/post/classes/Post.md"}]}]},{"text":"preference","link":"/api/preference/","collapsed":true,"items":[{"text":"Classes","collapsed":true,"items":[{"text":"Preferences","link":"/api/preference/classes/Preferences.md"}]}]},{"text":"starterPack","link":"/api/starterPack/","collapsed":true,"items":[{"text":"Classes","collapsed":true,"items":[{"text":"StarterPack","link":"/api/starterPack/classes/StarterPack.md"}]}]},{"text":"video","link":"/api/video/","collapsed":true,"items":[{"text":"Classes","collapsed":true,"items":[{"text":"Video","link":"/api/video/classes/Video.md"}]}]}] \ No newline at end of file diff --git a/docs/api/video/classes/Video.md b/docs/api/video/classes/Video.md new file mode 100644 index 0000000..82e7f3d --- /dev/null +++ b/docs/api/video/classes/Video.md @@ -0,0 +1,101 @@ +[**video**](../index.md) + +*** + +[tsky](../../index.md) / [video](../index.md) / Video + +# Class: Video + +## Constructors + +### new Video() + +> **new Video**(`instance`): [`Video`](Video.md) + +#### Parameters + +##### instance + +`AppBskyNS` + +#### Returns + +[`Video`](Video.md) + +#### Defined in + +[video.ts:11](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/video.ts#L11) + +## Methods + +### limit() + +> **limit**(`options`?): `Promise`\<`OutputSchema`\> + +Get video upload limits for the authenticated user. + +#### Parameters + +##### options? + +`CallOptions` + +#### Returns + +`Promise`\<`OutputSchema`\> + +#### Defined in + +[video.ts:16](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/video.ts#L16) + +*** + +### status() + +> **status**(`jobId`, `options`?): `Promise`\<`JobStatus`\> + +Get status details for a video processing job. + +#### Parameters + +##### jobId + +`string` + +##### options? + +`CallOptions` + +#### Returns + +`Promise`\<`JobStatus`\> + +#### Defined in + +[video.ts:25](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/video.ts#L25) + +*** + +### upload() + +> **upload**(`data`, `options`?): `Promise`\<`JobStatus`\> + +Upload a video to be processed then stored on the PDS. + +#### Parameters + +##### data + +`InputSchema` + +##### options? + +`CallOptions` + +#### Returns + +`Promise`\<`JobStatus`\> + +#### Defined in + +[video.ts:34](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/video.ts#L34) diff --git a/docs/api/video/index.md b/docs/api/video/index.md new file mode 100644 index 0000000..56aeedd --- /dev/null +++ b/docs/api/video/index.md @@ -0,0 +1,13 @@ +**video** + +*** + +[tsky](../index.md) / video + +# video + +## Index + +### Classes + +- [Video](classes/Video.md) diff --git a/docs/package.json b/docs/package.json index e75d681..1705680 100644 --- a/docs/package.json +++ b/docs/package.json @@ -4,12 +4,17 @@ "private": true, "main": "index.js", "scripts": { + "predev": "typedoc", "dev": "vitepress dev", - "build": "vitepress build", + "prebuild": "typedoc", + "build": "vitepress build", "preview": "vitepress preview", "test": "echo \"Error: no test specified\" && exit 1" }, "devDependencies": { + "typedoc": "^0.27.1", + "typedoc-plugin-markdown": "^4.3.0", + "typedoc-vitepress-theme": "^1.1.0", "vitepress": "^1.5.0" } } \ No newline at end of file diff --git a/docs/typedoc.json b/docs/typedoc.json new file mode 100644 index 0000000..9a23922 --- /dev/null +++ b/docs/typedoc.json @@ -0,0 +1,23 @@ +{ + "$schema": "https://typedoc-plugin-markdown.org/schema.json", + "entryPoints": ["../packages/core"], + "plugin": ["typedoc-plugin-markdown", "typedoc-vitepress-theme"], + "name": "Packages Example", + "entryPointStrategy": "packages", + "packageOptions": { + "includeVersion": true, + "entryPoints": ["src/*.ts"], + }, + "basePath": "../packages/core/src", + "readme": "none", + "entryFileName": "index.md", + "mergeReadme": true, + "outputs": [ + { + "name": "markdown", + "path": "./api" + } + ], + "hidePageHeader": false, + "logLevel": "Verbose" +} \ No newline at end of file diff --git a/packages/core/package.json b/packages/core/package.json index d8db88a..58a2782 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -2,6 +2,24 @@ "name": "tsky", "version": "0.1.0", "license": "MIT", + "type": "module", + "files": [ + "dist" + ], + "types": "dist/index.d.ts", + "module": "dist/index.js", + "exports": { + ".": { + "default": { + "types": "./dist/index.d.ts", + "import": "./dist/index.js" + } + } + }, + "scripts": { + "build": "tsc", + "test:typecheck": "tsc --noEmit" + }, "devDependencies": { "@atproto/api": "^0.13.18", "tsx": "^4.19.2", diff --git a/packages/core/tsconfig.json b/packages/core/tsconfig.json new file mode 100644 index 0000000..f255894 --- /dev/null +++ b/packages/core/tsconfig.json @@ -0,0 +1,24 @@ +{ + "compilerOptions": { + "outDir": "dist/", + "esModuleInterop": true, + "skipLibCheck": true, + "target": "ESNext", + "allowJs": true, + "resolveJsonModule": true, + "moduleDetection": "force", + "isolatedModules": true, + "verbatimModuleSyntax": true, + "strict": true, + "noImplicitOverride": true, + "noUnusedLocals": true, + "noUnusedParameters": true, + "useDefineForClassFields": false, + "noFallthroughCasesInSwitch": true, + "module": "ESNext", + "moduleResolution": "Node", + "sourceMap": true, + "declaration": true, + }, + "include": ["src"], +} \ No newline at end of file diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 9459825..480daa8 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -10,6 +10,15 @@ importers: docs: devDependencies: + typedoc: + specifier: ^0.27.1 + version: 0.27.1(typescript@5.7.2) + typedoc-plugin-markdown: + specifier: ^4.3.0 + version: 4.3.0(typedoc@0.27.1(typescript@5.7.2)) + typedoc-vitepress-theme: + specifier: ^1.1.0 + version: 1.1.0(typedoc-plugin-markdown@4.3.0(typedoc@0.27.1(typescript@5.7.2))) vitepress: specifier: ^1.5.0 version: 1.5.0(@algolia/client-search@5.15.0)(postcss@8.4.49)(search-insights@2.17.3)(typescript@5.7.2) @@ -437,6 +446,9 @@ packages: cpu: [x64] os: [win32] + '@gerrit0/mini-shiki@1.24.0': + resolution: {integrity: sha512-eopM3SyeUZQZSBu1VCV8/d1LtJXDd0aMpLjyWpGkjD6ux3sNwoLNeuEb5xmiWVfQvFeMUXa1WTjh06lqm3KETA==} + '@iconify-json/simple-icons@1.2.13': resolution: {integrity: sha512-rRQjMoIt/kPfaD+fnBC9YZQpso3hkn8xPeadl+YWhscJ5SVUCdB9oTeR9VIpt+/5Yi8vEkh2UOWFPq4lz3ee2A==} @@ -680,12 +692,21 @@ packages: resolution: {integrity: sha512-Yf3Swz1s63hjvBVZ/9f2P1Uu48GjmjCN+Esxb6MAONMGtZB1fRX8/S1AhUTtsuTlcGovbYLxpHgc7wEzstDZBw==} engines: {node: '>= 14.0.0'} + argparse@2.0.1: + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + await-lock@2.2.2: resolution: {integrity: sha512-aDczADvlvTGajTDjcjpJMqRkOF6Qdz3YbPZm/PyW6tKPkx2hlYBzxMhEywM/tU72HrVZjgl5VCdRuMlA7pZ8Gw==} + balanced-match@1.0.2: + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + birpc@0.2.19: resolution: {integrity: sha512-5WeXXAvTmitV1RqJFppT5QtUiz2p1mRSYU000Jkft5ZUCLJIk4uQriYNO50HknxKwM6jd8utNc66K1qGIwwWBQ==} + brace-expansion@2.0.1: + resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} + ccount@2.0.1: resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} @@ -765,15 +786,28 @@ packages: iso-datestring-validator@2.2.2: resolution: {integrity: sha512-yLEMkBbLZTlVQqOnQ4FiMujR6T4DEcCb1xizmvXS+OxuhwcbtynoosRzdMA69zZCShCNAbi+gJ71FxZBBXx1SA==} + linkify-it@5.0.0: + resolution: {integrity: sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==} + + lunr@2.3.9: + resolution: {integrity: sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow==} + magic-string@0.30.14: resolution: {integrity: sha512-5c99P1WKTed11ZC0HMJOj6CDIue6F8ySu+bJL+85q1zBEIY8IklrJ1eiKC2NDRh3Ct3FcvmJPyQHb9erXMTJNw==} mark.js@8.11.1: resolution: {integrity: sha512-1I+1qpDt4idfgLQG+BNWmrqku+7/2bi5nLf4YwF8y8zXvmfiTBY3PV3ZibfrjBueCByROpuBjLLFCajqkgYoLQ==} + markdown-it@14.1.0: + resolution: {integrity: sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==} + hasBin: true + mdast-util-to-hast@13.2.0: resolution: {integrity: sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==} + mdurl@2.0.0: + resolution: {integrity: sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==} + micromark-util-character@2.1.1: resolution: {integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==} @@ -789,6 +823,10 @@ packages: micromark-util-types@2.0.1: resolution: {integrity: sha512-534m2WhVTddrcKVepwmVEVnUAmtrx9bfIjNoQHRqfnvdaHQiFytEhJoTgpWJvDEXCO5gLTQh3wYC1PgOJA4NSQ==} + minimatch@9.0.5: + resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} + engines: {node: '>=16 || 14 >=14.17'} + minisearch@7.1.1: resolution: {integrity: sha512-b3YZEYCEH4EdCAtYP7OlDyx7FdPwNzuNwLQ34SfJpM9dlbBZzeXndGavTrC+VCiRWomL21SWfMc6SCKO/U2ZNw==} @@ -822,6 +860,10 @@ packages: property-information@6.5.0: resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==} + punycode.js@2.3.1: + resolution: {integrity: sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==} + engines: {node: '>=6'} + regex-recursion@4.3.0: resolution: {integrity: sha512-5LcLnizwjcQ2ALfOj95MjcatxyqF5RPySx9yT+PaXu3Gox2vyAtLDjHB8NTJLtMGkvyau6nI3CfpwFCjPUIs/A==} @@ -881,11 +923,32 @@ packages: engines: {node: '>=18.0.0'} hasBin: true + typedoc-plugin-markdown@4.3.0: + resolution: {integrity: sha512-yAR7+JGSwHWNzQhS8AFlGX6GmbWnK7/Q2Y8hHy5pkL/WB9ooJqhsI6B1abldhM3lOQCWqCdkzu9yFMPuvl2HUw==} + engines: {node: '>= 18'} + peerDependencies: + typedoc: 0.27.x + + typedoc-vitepress-theme@1.1.0: + resolution: {integrity: sha512-EpNpJHiXmh2AUcjSdZtK1MO9Bc2uW3iZg+EL+K7xSOS7+ruwPukaYRMpxR0FM+SkisjAA4VWNA3qdT6AKLx12A==} + peerDependencies: + typedoc-plugin-markdown: '>=4.3.0' + + typedoc@0.27.1: + resolution: {integrity: sha512-cbFtNFpkCtHAHRvMnCDdtM2+xhO2uiJAcw4ooLmVMuaY9yLJswKvi6wOwPZgTnKKnm/HKpO/Ub6DVk4KRf/vRg==} + engines: {node: '>= 18'} + hasBin: true + peerDependencies: + typescript: 5.0.x || 5.1.x || 5.2.x || 5.3.x || 5.4.x || 5.5.x || 5.6.x || 5.7.x + typescript@5.7.2: resolution: {integrity: sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==} engines: {node: '>=14.17'} hasBin: true + uc.micro@2.1.0: + resolution: {integrity: sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==} + uint8arrays@3.0.0: resolution: {integrity: sha512-HRCx0q6O9Bfbp+HHSfQQKD7wU70+lydKVt4EghkdOvlK/NlrF90z+eXV34mUd48rNvVJXwkrMSPpCATkct8fJA==} @@ -972,6 +1035,11 @@ packages: typescript: optional: true + yaml@2.6.1: + resolution: {integrity: sha512-7r0XPzioN/Q9kXBro/XPnA6kznR73DHq+GXh5ON7ZozRO6aMjbmiBuKste2wslTFkC5d1dw0GooOCepZXJ2SAg==} + engines: {node: '>= 14'} + hasBin: true + zod@3.23.8: resolution: {integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==} @@ -1296,6 +1364,12 @@ snapshots: '@esbuild/win32-x64@0.23.1': optional: true + '@gerrit0/mini-shiki@1.24.0': + dependencies: + '@shikijs/engine-oniguruma': 1.24.0 + '@shikijs/types': 1.24.0 + '@shikijs/vscode-textmate': 9.3.0 + '@iconify-json/simple-icons@1.2.13': dependencies: '@iconify/types': 2.0.0 @@ -1537,10 +1611,18 @@ snapshots: '@algolia/requester-fetch': 5.15.0 '@algolia/requester-node-http': 5.15.0 + argparse@2.0.1: {} + await-lock@2.2.2: {} + balanced-match@1.0.2: {} + birpc@0.2.19: {} + brace-expansion@2.0.1: + dependencies: + balanced-match: 1.0.2 + ccount@2.0.1: {} character-entities-html4@2.1.0: {} @@ -1659,12 +1741,27 @@ snapshots: iso-datestring-validator@2.2.2: {} + linkify-it@5.0.0: + dependencies: + uc.micro: 2.1.0 + + lunr@2.3.9: {} + magic-string@0.30.14: dependencies: '@jridgewell/sourcemap-codec': 1.5.0 mark.js@8.11.1: {} + markdown-it@14.1.0: + dependencies: + argparse: 2.0.1 + entities: 4.5.0 + linkify-it: 5.0.0 + mdurl: 2.0.0 + punycode.js: 2.3.1 + uc.micro: 2.1.0 + mdast-util-to-hast@13.2.0: dependencies: '@types/hast': 3.0.4 @@ -1677,6 +1774,8 @@ snapshots: unist-util-visit: 5.0.0 vfile: 6.0.3 + mdurl@2.0.0: {} + micromark-util-character@2.1.1: dependencies: micromark-util-symbol: 2.0.1 @@ -1694,6 +1793,10 @@ snapshots: micromark-util-types@2.0.1: {} + minimatch@9.0.5: + dependencies: + brace-expansion: 2.0.1 + minisearch@7.1.1: {} mitt@3.0.1: {} @@ -1722,6 +1825,8 @@ snapshots: property-information@6.5.0: {} + punycode.js@2.3.1: {} + regex-recursion@4.3.0: dependencies: regex-utilities: 2.3.0 @@ -1799,8 +1904,27 @@ snapshots: optionalDependencies: fsevents: 2.3.3 + typedoc-plugin-markdown@4.3.0(typedoc@0.27.1(typescript@5.7.2)): + dependencies: + typedoc: 0.27.1(typescript@5.7.2) + + typedoc-vitepress-theme@1.1.0(typedoc-plugin-markdown@4.3.0(typedoc@0.27.1(typescript@5.7.2))): + dependencies: + typedoc-plugin-markdown: 4.3.0(typedoc@0.27.1(typescript@5.7.2)) + + typedoc@0.27.1(typescript@5.7.2): + dependencies: + '@gerrit0/mini-shiki': 1.24.0 + lunr: 2.3.9 + markdown-it: 14.1.0 + minimatch: 9.0.5 + typescript: 5.7.2 + yaml: 2.6.1 + typescript@5.7.2: {} + uc.micro@2.1.0: {} + uint8arrays@3.0.0: dependencies: multiformats: 9.9.0 @@ -1910,6 +2034,8 @@ snapshots: optionalDependencies: typescript: 5.7.2 + yaml@2.6.1: {} + zod@3.23.8: {} zwitch@2.0.4: {} From e0618407237223207affc55ab0825ae3451c3522 Mon Sep 17 00:00:00 2001 From: Anbraten Date: Fri, 29 Nov 2024 18:28:14 +0100 Subject: [PATCH 02/21] correctly set dist folder --- docs/netlify.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/netlify.toml b/docs/netlify.toml index 86f118c..f279112 100644 --- a/docs/netlify.toml +++ b/docs/netlify.toml @@ -2,6 +2,7 @@ publish = "dist" command = "pnpm build" base = "/docs/" +publish = "/docs/.vitepress/dist/" # Allow previewing docs [[redirects]] From a5370df6192d679fcbec429e409a79d61db0f356 Mon Sep 17 00:00:00 2001 From: Anbraten Date: Fri, 29 Nov 2024 18:31:03 +0100 Subject: [PATCH 03/21] fix config --- docs/netlify.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/netlify.toml b/docs/netlify.toml index f279112..24c13bf 100644 --- a/docs/netlify.toml +++ b/docs/netlify.toml @@ -1,8 +1,7 @@ [build] -publish = "dist" +publish = ".vitepress/dist" command = "pnpm build" base = "/docs/" -publish = "/docs/.vitepress/dist/" # Allow previewing docs [[redirects]] From daeaec8ed52bb6f6eb80741270604a7796bb6518 Mon Sep 17 00:00:00 2001 From: taskylizard <75871323+taskylizard@users.noreply.github.com> Date: Sun, 1 Dec 2024 07:48:02 +0000 Subject: [PATCH 04/21] docs: update typedoc config --- docs/api/actor/classes/Actor.md | 104 ++++++++++++------ docs/api/actor/classes/BaseActor.md | 74 ++++++++----- docs/api/actor/classes/User.md | 110 +++++++++++++------- docs/api/actor/index.md | 8 +- docs/api/feed/classes/Feed.md | 32 ++++-- docs/api/feed/index.md | 4 +- docs/api/index.md | 20 ++-- docs/api/index/classes/TSky.md | 32 ++++-- docs/api/index/index.md | 4 +- docs/api/list/classes/BskyList.md | 20 ++-- docs/api/list/index.md | 4 +- docs/api/paginate/classes/Paginator.md | 26 +++-- docs/api/paginate/index.md | 4 +- docs/api/post/classes/Post.md | 50 ++++++--- docs/api/post/index.md | 4 +- docs/api/preference/classes/Preferences.md | 20 ++-- docs/api/preference/index.md | 4 +- docs/api/starterPack/classes/StarterPack.md | 33 ++++-- docs/api/starterPack/index.md | 4 +- docs/api/video/classes/Video.md | 26 +++-- docs/api/video/index.md | 4 +- docs/typedoc.json | 21 +++- 22 files changed, 411 insertions(+), 197 deletions(-) diff --git a/docs/api/actor/classes/Actor.md b/docs/api/actor/classes/Actor.md index 3238581..151d3d8 100644 --- a/docs/api/actor/classes/Actor.md +++ b/docs/api/actor/classes/Actor.md @@ -4,7 +4,7 @@ [tsky](../../index.md) / [actor](../index.md) / Actor -# Class: Actor +# Actor ## Extends @@ -14,7 +14,9 @@ ### new Actor() -> **new Actor**(`instance`, `actor`): [`Actor`](Actor.md) +```ts +new Actor(instance, actor): Actor +``` #### Parameters @@ -36,13 +38,15 @@ #### Defined in -[actor.ts:24](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L24) +[actor.ts:24](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L24) ## Properties ### actor -> `readonly` **actor**: `string` +```ts +readonly actor: string; +``` #### Inherited from @@ -50,13 +54,15 @@ #### Defined in -[actor.ts:24](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L24) +[actor.ts:24](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L24) *** ### instance -> `readonly` **instance**: `AppBskyNS` +```ts +readonly instance: AppBskyNS; +``` #### Inherited from @@ -64,13 +70,15 @@ #### Defined in -[actor.ts:24](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L24) +[actor.ts:24](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L24) ## Methods ### feed() -> **feed**(`params`, `options`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> +```ts +feed(params, options?): Paginator +``` Get a list of feeds (feed generator records) created by the actor (in the actor's repo). @@ -94,13 +102,15 @@ Get a list of feeds (feed generator records) created by the actor (in the actor' #### Defined in -[actor.ts:135](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L135) +[actor.ts:135](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L135) *** ### feeds() -> **feeds**(`limit`?, `options`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> +```ts +feeds(limit?, options?): Paginator +``` Get a view of an actor's 'author feed' (post and reposts by the author). Does not require auth. @@ -124,13 +134,15 @@ Get a view of an actor's 'author feed' (post and reposts by the author). Does no #### Defined in -[actor.ts:107](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L107) +[actor.ts:107](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L107) *** ### followers() -> **followers**(`limit`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> +```ts +followers(limit?): Paginator +``` Enumerates accounts which follow a specified account (actor). @@ -150,13 +162,15 @@ Enumerates accounts which follow a specified account (actor). #### Defined in -[actor.ts:44](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L44) +[actor.ts:44](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L44) *** ### follows() -> **follows**(`limit`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> +```ts +follows(limit?): Paginator +``` Enumerates accounts which a specified account (actor) follows. @@ -176,13 +190,15 @@ Enumerates accounts which a specified account (actor) follows. #### Defined in -[actor.ts:59](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L59) +[actor.ts:59](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L59) *** ### likes() -> **likes**(`limit`?, `options`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> +```ts +likes(limit?, options?): Paginator +``` Get a list of posts liked by an actor. Requires auth, actor must be the requesting account. @@ -206,13 +222,15 @@ Get a list of posts liked by an actor. Requires auth, actor must be the requesti #### Defined in -[actor.ts:121](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L121) +[actor.ts:121](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L121) *** ### lists() -> **lists**(`limit`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> +```ts +lists(limit?): Paginator +``` Enumerates the lists created by a specified account (actor). @@ -232,13 +250,15 @@ Enumerates the lists created by a specified account (actor). #### Defined in -[actor.ts:74](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L74) +[actor.ts:74](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L74) *** ### mute() -> **mute**(`options`?): `Promise`\<`Response`\> +```ts +mute(options?): Promise +``` Creates a mute relationship for the specified account. Mutes are private in Bluesky. Requires auth. @@ -254,13 +274,15 @@ Creates a mute relationship for the specified account. Mutes are private in Blue #### Defined in -[actor.ts:176](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L176) +[actor.ts:176](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L176) *** ### relationships() -> **relationships**(`others`?, `options`?): `Promise`\<`OutputSchema`\> +```ts +relationships(others?, options?): Promise +``` Enumerates public relationships between one account, and a list of other accounts. Does not require auth. @@ -284,13 +306,15 @@ Enumerates public relationships between one account, and a list of other account #### Defined in -[actor.ts:89](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L89) +[actor.ts:89](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L89) *** ### starterPacks() -> **starterPacks**(`limit`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> +```ts +starterPacks(limit?): Paginator +``` Get a list of starter packs created by the actor. @@ -310,13 +334,15 @@ Get a list of starter packs created by the actor. #### Defined in -[actor.ts:29](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L29) +[actor.ts:29](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L29) *** ### thread() -> **thread**(`thread`): `Thread` +```ts +thread(thread): Thread +``` #### Parameters @@ -334,13 +360,15 @@ Get a list of starter packs created by the actor. #### Defined in -[actor.ts:149](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L149) +[actor.ts:149](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L149) *** ### unmute() -> **unmute**(`options`?): `Promise`\<`Response`\> +```ts +unmute(options?): Promise +``` Unmutes the specified account. Requires auth. @@ -356,13 +384,18 @@ Unmutes the specified account. Requires auth. #### Defined in -[actor.ts:183](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L183) +[actor.ts:183](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L183) *** ### muteMany() -> `static` **muteMany**(`instance`, `actors`, `options`?): `Promise`\<`Response`\> +```ts +static muteMany( + instance, + actors, +options?): Promise +``` Creates a mute relationship for the specified list of accounts. Mutes are private in Bluesky. Requires auth. @@ -386,13 +419,18 @@ Creates a mute relationship for the specified list of accounts. Mutes are privat #### Defined in -[actor.ts:190](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L190) +[actor.ts:190](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L190) *** ### unmuteMany() -> `static` **unmuteMany**(`instance`, `actors`, `options`?): `Promise`\<`Response`\> +```ts +static unmuteMany( + instance, + actors, +options?): Promise +``` Unmutes the specified list of accounts. Requires auth. @@ -416,4 +454,4 @@ Unmutes the specified list of accounts. Requires auth. #### Defined in -[actor.ts:202](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L202) +[actor.ts:202](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L202) diff --git a/docs/api/actor/classes/BaseActor.md b/docs/api/actor/classes/BaseActor.md index 2532b9a..f5b63e1 100644 --- a/docs/api/actor/classes/BaseActor.md +++ b/docs/api/actor/classes/BaseActor.md @@ -4,7 +4,7 @@ [tsky](../../index.md) / [actor](../index.md) / BaseActor -# Class: BaseActor +# BaseActor ## Extended by @@ -15,7 +15,9 @@ ### new BaseActor() -> **new BaseActor**(`instance`, `actor`): [`BaseActor`](BaseActor.md) +```ts +new BaseActor(instance, actor): BaseActor +``` #### Parameters @@ -33,33 +35,39 @@ #### Defined in -[actor.ts:24](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L24) +[actor.ts:24](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L24) ## Properties ### actor -> `readonly` **actor**: `string` +```ts +readonly actor: string; +``` #### Defined in -[actor.ts:24](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L24) +[actor.ts:24](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L24) *** ### instance -> `readonly` **instance**: `AppBskyNS` +```ts +readonly instance: AppBskyNS; +``` #### Defined in -[actor.ts:24](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L24) +[actor.ts:24](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L24) ## Methods ### feed() -> **feed**(`params`, `options`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> +```ts +feed(params, options?): Paginator +``` Get a list of feeds (feed generator records) created by the actor (in the actor's repo). @@ -79,13 +87,15 @@ Get a list of feeds (feed generator records) created by the actor (in the actor' #### Defined in -[actor.ts:135](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L135) +[actor.ts:135](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L135) *** ### feeds() -> **feeds**(`limit`?, `options`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> +```ts +feeds(limit?, options?): Paginator +``` Get a view of an actor's 'author feed' (post and reposts by the author). Does not require auth. @@ -105,13 +115,15 @@ Get a view of an actor's 'author feed' (post and reposts by the author). Does no #### Defined in -[actor.ts:107](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L107) +[actor.ts:107](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L107) *** ### followers() -> **followers**(`limit`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> +```ts +followers(limit?): Paginator +``` Enumerates accounts which follow a specified account (actor). @@ -127,13 +139,15 @@ Enumerates accounts which follow a specified account (actor). #### Defined in -[actor.ts:44](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L44) +[actor.ts:44](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L44) *** ### follows() -> **follows**(`limit`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> +```ts +follows(limit?): Paginator +``` Enumerates accounts which a specified account (actor) follows. @@ -149,13 +163,15 @@ Enumerates accounts which a specified account (actor) follows. #### Defined in -[actor.ts:59](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L59) +[actor.ts:59](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L59) *** ### likes() -> **likes**(`limit`?, `options`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> +```ts +likes(limit?, options?): Paginator +``` Get a list of posts liked by an actor. Requires auth, actor must be the requesting account. @@ -175,13 +191,15 @@ Get a list of posts liked by an actor. Requires auth, actor must be the requesti #### Defined in -[actor.ts:121](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L121) +[actor.ts:121](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L121) *** ### lists() -> **lists**(`limit`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> +```ts +lists(limit?): Paginator +``` Enumerates the lists created by a specified account (actor). @@ -197,13 +215,15 @@ Enumerates the lists created by a specified account (actor). #### Defined in -[actor.ts:74](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L74) +[actor.ts:74](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L74) *** ### relationships() -> **relationships**(`others`?, `options`?): `Promise`\<`OutputSchema`\> +```ts +relationships(others?, options?): Promise +``` Enumerates public relationships between one account, and a list of other accounts. Does not require auth. @@ -223,13 +243,15 @@ Enumerates public relationships between one account, and a list of other account #### Defined in -[actor.ts:89](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L89) +[actor.ts:89](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L89) *** ### starterPacks() -> **starterPacks**(`limit`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> +```ts +starterPacks(limit?): Paginator +``` Get a list of starter packs created by the actor. @@ -245,13 +267,15 @@ Get a list of starter packs created by the actor. #### Defined in -[actor.ts:29](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L29) +[actor.ts:29](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L29) *** ### thread() -> **thread**(`thread`): `Thread` +```ts +thread(thread): Thread +``` #### Parameters @@ -265,4 +289,4 @@ Get a list of starter packs created by the actor. #### Defined in -[actor.ts:149](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L149) +[actor.ts:149](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L149) diff --git a/docs/api/actor/classes/User.md b/docs/api/actor/classes/User.md index c316b63..f893f2d 100644 --- a/docs/api/actor/classes/User.md +++ b/docs/api/actor/classes/User.md @@ -4,7 +4,7 @@ [tsky](../../index.md) / [actor](../index.md) / User -# Class: User +# User ## Extends @@ -14,7 +14,9 @@ ### new User() -> **new User**(`instance`, `actor`): [`User`](User.md) +```ts +new User(instance, actor): User +``` #### Parameters @@ -36,13 +38,15 @@ #### Defined in -[actor.ts:24](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L24) +[actor.ts:24](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L24) ## Properties ### actor -> `readonly` **actor**: `string` +```ts +readonly actor: string; +``` #### Inherited from @@ -50,13 +54,15 @@ #### Defined in -[actor.ts:24](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L24) +[actor.ts:24](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L24) *** ### instance -> `readonly` **instance**: `AppBskyNS` +```ts +readonly instance: AppBskyNS; +``` #### Inherited from @@ -64,13 +70,15 @@ #### Defined in -[actor.ts:24](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L24) +[actor.ts:24](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L24) ## Methods ### blockedLists() -> **blockedLists**(`limit`?, `options`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> +```ts +blockedLists(limit?, options?): Paginator +``` Get mod lists that the requesting account (actor) is blocking. Requires auth. @@ -90,13 +98,15 @@ Get mod lists that the requesting account (actor) is blocking. Requires auth. #### Defined in -[actor.ts:236](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L236) +[actor.ts:236](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L236) *** ### feed() -> **feed**(`params`, `options`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> +```ts +feed(params, options?): Paginator +``` Get a list of feeds (feed generator records) created by the actor (in the actor's repo). @@ -120,13 +130,15 @@ Get a list of feeds (feed generator records) created by the actor (in the actor' #### Defined in -[actor.ts:135](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L135) +[actor.ts:135](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L135) *** ### feeds() -> **feeds**(`limit`?, `options`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> +```ts +feeds(limit?, options?): Paginator +``` Get a view of an actor's 'author feed' (post and reposts by the author). Does not require auth. @@ -150,13 +162,15 @@ Get a view of an actor's 'author feed' (post and reposts by the author). Does no #### Defined in -[actor.ts:107](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L107) +[actor.ts:107](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L107) *** ### followers() -> **followers**(`limit`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> +```ts +followers(limit?): Paginator +``` Enumerates accounts which follow a specified account (actor). @@ -176,13 +190,15 @@ Enumerates accounts which follow a specified account (actor). #### Defined in -[actor.ts:44](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L44) +[actor.ts:44](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L44) *** ### follows() -> **follows**(`limit`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> +```ts +follows(limit?): Paginator +``` Enumerates accounts which a specified account (actor) follows. @@ -202,13 +218,15 @@ Enumerates accounts which a specified account (actor) follows. #### Defined in -[actor.ts:59](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L59) +[actor.ts:59](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L59) *** ### knowFollowers() -> **knowFollowers**(`params`, `options`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> +```ts +knowFollowers(params, options?): Paginator +``` Enumerates accounts which follow a specified account (actor) and are followed by the viewer. @@ -234,13 +252,15 @@ Enumerates accounts which follow a specified account (actor) and are followed by #### Defined in -[actor.ts:216](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L216) +[actor.ts:216](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L216) *** ### likes() -> **likes**(`limit`?, `options`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> +```ts +likes(limit?, options?): Paginator +``` Get a list of posts liked by an actor. Requires auth, actor must be the requesting account. @@ -264,13 +284,15 @@ Get a list of posts liked by an actor. Requires auth, actor must be the requesti #### Defined in -[actor.ts:121](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L121) +[actor.ts:121](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L121) *** ### lists() -> **lists**(`limit`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> +```ts +lists(limit?): Paginator +``` Enumerates the lists created by a specified account (actor). @@ -290,13 +312,15 @@ Enumerates the lists created by a specified account (actor). #### Defined in -[actor.ts:74](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L74) +[actor.ts:74](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L74) *** ### mutedLists() -> **mutedLists**(`limit`?, `options`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> +```ts +mutedLists(limit?, options?): Paginator +``` Enumerates mod lists that the requesting account (actor) currently has muted. Requires auth. @@ -316,13 +340,15 @@ Enumerates mod lists that the requesting account (actor) currently has muted. Re #### Defined in -[actor.ts:256](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L256) +[actor.ts:256](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L256) *** ### mutedProfiles() -> **mutedProfiles**(`limit`?, `options`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> +```ts +mutedProfiles(limit?, options?): Paginator +``` Enumerates accounts that the requesting account (actor) currently has muted. Requires auth. @@ -342,13 +368,15 @@ Enumerates accounts that the requesting account (actor) currently has muted. Req #### Defined in -[actor.ts:273](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L273) +[actor.ts:273](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L273) *** ### preferences() -> **preferences**(): [`Preferences`](../../preference/classes/Preferences.md) +```ts +preferences(): Preferences +``` #### Returns @@ -356,13 +384,15 @@ Enumerates accounts that the requesting account (actor) currently has muted. Req #### Defined in -[actor.ts:291](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L291) +[actor.ts:291](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L291) *** ### relationships() -> **relationships**(`others`?, `options`?): `Promise`\<`OutputSchema`\> +```ts +relationships(others?, options?): Promise +``` Enumerates public relationships between one account, and a list of other accounts. Does not require auth. @@ -386,13 +416,15 @@ Enumerates public relationships between one account, and a list of other account #### Defined in -[actor.ts:89](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L89) +[actor.ts:89](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L89) *** ### starterPacks() -> **starterPacks**(`limit`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> +```ts +starterPacks(limit?): Paginator +``` Get a list of starter packs created by the actor. @@ -412,13 +444,15 @@ Get a list of starter packs created by the actor. #### Defined in -[actor.ts:29](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L29) +[actor.ts:29](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L29) *** ### suggestions() -> **suggestions**(): `Suggestions` +```ts +suggestions(): Suggestions +``` #### Returns @@ -426,13 +460,15 @@ Get a list of starter packs created by the actor. #### Defined in -[actor.ts:287](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L287) +[actor.ts:287](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L287) *** ### thread() -> **thread**(`thread`): `Thread` +```ts +thread(thread): Thread +``` #### Parameters @@ -450,4 +486,4 @@ Get a list of starter packs created by the actor. #### Defined in -[actor.ts:149](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/actor.ts#L149) +[actor.ts:149](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L149) diff --git a/docs/api/actor/index.md b/docs/api/actor/index.md index 82e14b1..7a08092 100644 --- a/docs/api/actor/index.md +++ b/docs/api/actor/index.md @@ -10,6 +10,8 @@ ### Classes -- [Actor](classes/Actor.md) -- [BaseActor](classes/BaseActor.md) -- [User](classes/User.md) +| Class | Description | +| ------ | ------ | +| [Actor](classes/Actor.md) | - | +| [BaseActor](classes/BaseActor.md) | - | +| [User](classes/User.md) | - | diff --git a/docs/api/feed/classes/Feed.md b/docs/api/feed/classes/Feed.md index 8651ba9..b7a2bed 100644 --- a/docs/api/feed/classes/Feed.md +++ b/docs/api/feed/classes/Feed.md @@ -4,13 +4,15 @@ [tsky](../../index.md) / [feed](../index.md) / Feed -# Class: Feed +# Feed ## Constructors ### new Feed() -> **new Feed**(`instance`): [`Feed`](Feed.md) +```ts +new Feed(instance): Feed +``` #### Parameters @@ -24,13 +26,15 @@ #### Defined in -[feed.ts:14](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/feed.ts#L14) +[feed.ts:14](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/feed.ts#L14) ## Methods ### generator() -> **generator**(): `FeedGenerator` +```ts +generator(): FeedGenerator +``` #### Returns @@ -38,13 +42,15 @@ #### Defined in -[feed.ts:62](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/feed.ts#L62) +[feed.ts:62](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/feed.ts#L62) *** ### getFeed() -> **getFeed**(`params`, `options`?): `Promise`\<[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\>\> +```ts +getFeed(params, options?): Promise> +``` Get a hydrated feed from an actor's selected feed generator. Implemented by App View. @@ -64,13 +70,15 @@ Get a hydrated feed from an actor's selected feed generator. Implemented by App #### Defined in -[feed.ts:19](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/feed.ts#L19) +[feed.ts:19](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/feed.ts#L19) *** ### sendInteractions() -> **sendInteractions**(`data`?, `options`?): `Promise`\<`OutputSchema`\> +```ts +sendInteractions(data?, options?): Promise +``` Send information about interactions with feed items back to the feed generator that served them. @@ -90,13 +98,15 @@ Send information about interactions with feed items back to the feed generator t #### Defined in -[feed.ts:53](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/feed.ts#L53) +[feed.ts:53](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/feed.ts#L53) *** ### timeline() -> **timeline**(`params`, `options`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> +```ts +timeline(params, options?): Paginator +``` Get a view of the requesting account's home timeline. This is expected to be some form of reverse-chronological feed. @@ -116,4 +126,4 @@ Get a view of the requesting account's home timeline. This is expected to be som #### Defined in -[feed.ts:36](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/feed.ts#L36) +[feed.ts:36](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/feed.ts#L36) diff --git a/docs/api/feed/index.md b/docs/api/feed/index.md index 9b6c3b8..0e72321 100644 --- a/docs/api/feed/index.md +++ b/docs/api/feed/index.md @@ -10,4 +10,6 @@ ### Classes -- [Feed](classes/Feed.md) +| Class | Description | +| ------ | ------ | +| [Feed](classes/Feed.md) | - | diff --git a/docs/api/index.md b/docs/api/index.md index 9f8a4ef..66fdb3a 100644 --- a/docs/api/index.md +++ b/docs/api/index.md @@ -8,12 +8,14 @@ A BlueSky API Wrapper ## Modules -- [actor](actor/index.md) -- [feed](feed/index.md) -- [index](index/index.md) -- [list](list/index.md) -- [paginate](paginate/index.md) -- [post](post/index.md) -- [preference](preference/index.md) -- [starterPack](starterPack/index.md) -- [video](video/index.md) +| Module | Description | +| ------ | ------ | +| [actor](actor/index.md) | - | +| [feed](feed/index.md) | - | +| [index](index/index.md) | - | +| [list](list/index.md) | - | +| [paginate](paginate/index.md) | - | +| [post](post/index.md) | - | +| [preference](preference/index.md) | - | +| [starterPack](starterPack/index.md) | - | +| [video](video/index.md) | - | diff --git a/docs/api/index/classes/TSky.md b/docs/api/index/classes/TSky.md index 26bc361..ba12718 100644 --- a/docs/api/index/classes/TSky.md +++ b/docs/api/index/classes/TSky.md @@ -4,13 +4,15 @@ [tsky](../../index.md) / [index](../index.md) / TSky -# Class: TSky +# TSky ## Constructors ### new TSky() -> **new TSky**(`instance`): [`TSky`](TSky.md) +```ts +new TSky(instance): TSky +``` #### Parameters @@ -24,7 +26,7 @@ #### Defined in -[index.ts:12](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/index.ts#L12) +[index.ts:12](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/index.ts#L12) ## Methods @@ -32,7 +34,9 @@ #### Call Signature -> **profile**(`identifier`, `options`?): `Promise`\<`ProfileViewDetailed`\> +```ts +profile(identifier, options?): Promise +``` Get detailed profile view of an actor. Does not require auth, but contains relevant metadata with auth. @@ -52,11 +56,13 @@ Get detailed profile view of an actor. Does not require auth, but contains relev ##### Defined in -[index.ts:17](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/index.ts#L17) +[index.ts:17](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/index.ts#L17) #### Call Signature -> **profile**(`identifiers`, `options`?): `Promise`\<`ProfileViewDetailed`[]\> +```ts +profile(identifiers, options?): Promise +``` Get detailed profile views of multiple actors. @@ -76,13 +82,15 @@ Get detailed profile views of multiple actors. ##### Defined in -[index.ts:24](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/index.ts#L24) +[index.ts:24](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/index.ts#L24) *** ### search() -> **search**(`params`, `options`?): `Promise`\<[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\>\> +```ts +search(params, options?): Promise> +``` Find actors (profiles) matching search criteria. Does not require auth. @@ -102,13 +110,15 @@ Find actors (profiles) matching search criteria. Does not require auth. #### Defined in -[index.ts:70](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/index.ts#L70) +[index.ts:70](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/index.ts#L70) *** ### typeahead() -> **typeahead**(`params`, `options`?): `Promise`\<`ProfileViewBasic`[]\> +```ts +typeahead(params, options?): Promise +``` Find actor suggestions for a prefix search term. Expected use is for auto-completion during text field entry. Does not require auth. @@ -128,4 +138,4 @@ Find actor suggestions for a prefix search term. Expected use is for auto-comple #### Defined in -[index.ts:55](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/index.ts#L55) +[index.ts:55](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/index.ts#L55) diff --git a/docs/api/index/index.md b/docs/api/index/index.md index da203dc..7c7bd1e 100644 --- a/docs/api/index/index.md +++ b/docs/api/index/index.md @@ -10,4 +10,6 @@ ### Classes -- [TSky](classes/TSky.md) +| Class | Description | +| ------ | ------ | +| [TSky](classes/TSky.md) | - | diff --git a/docs/api/list/classes/BskyList.md b/docs/api/list/classes/BskyList.md index ad2e806..5390d93 100644 --- a/docs/api/list/classes/BskyList.md +++ b/docs/api/list/classes/BskyList.md @@ -4,13 +4,15 @@ [tsky](../../index.md) / [list](../index.md) / BskyList -# Class: BskyList +# BskyList ## Constructors ### new BskyList() -> **new BskyList**(`instance`, `uri`): [`BskyList`](BskyList.md) +```ts +new BskyList(instance, uri): BskyList +``` #### Parameters @@ -28,13 +30,15 @@ #### Defined in -[list.ts:9](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/list.ts#L9) +[list.ts:9](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/list.ts#L9) ## Methods ### about() -> **about**(`limit`?, `options`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> +```ts +about(limit?, options?): Paginator +``` Gets a 'view' (with additional context) of a specified list. @@ -54,13 +58,15 @@ Gets a 'view' (with additional context) of a specified list. #### Defined in -[list.ts:14](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/list.ts#L14) +[list.ts:14](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/list.ts#L14) *** ### feed() -> **feed**(`limit`?, `options`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> +```ts +feed(limit?, options?): Paginator +``` Get a feed of recent posts from a list (posts and reposts from any actors on the list). Does not require auth. @@ -80,4 +86,4 @@ Get a feed of recent posts from a list (posts and reposts from any actors on the #### Defined in -[list.ts:32](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/list.ts#L32) +[list.ts:32](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/list.ts#L32) diff --git a/docs/api/list/index.md b/docs/api/list/index.md index 20cc891..9a4dec4 100644 --- a/docs/api/list/index.md +++ b/docs/api/list/index.md @@ -10,4 +10,6 @@ ### Classes -- [BskyList](classes/BskyList.md) +| Class | Description | +| ------ | ------ | +| [BskyList](classes/BskyList.md) | - | diff --git a/docs/api/paginate/classes/Paginator.md b/docs/api/paginate/classes/Paginator.md index e1f115e..7fa87ae 100644 --- a/docs/api/paginate/classes/Paginator.md +++ b/docs/api/paginate/classes/Paginator.md @@ -4,7 +4,7 @@ [tsky](../../index.md) / [paginate](../index.md) / Paginator -# Class: Paginator\ +# Paginator\ ## Type Parameters @@ -14,7 +14,9 @@ ### new Paginator() -> **new Paginator**\<`T`\>(`onNext`, `defaultValues`?): [`Paginator`](Paginator.md)\<`T`\> +```ts +new Paginator(onNext, defaultValues?): Paginator +``` #### Parameters @@ -32,23 +34,27 @@ #### Defined in -[paginate.ts:9](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/paginate.ts#L9) +[paginate.ts:9](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/paginate.ts#L9) ## Properties ### values -> `readonly` **values**: `T`[] = `[]` +```ts +readonly values: T[] = []; +``` #### Defined in -[paginate.ts:7](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/paginate.ts#L7) +[paginate.ts:7](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/paginate.ts#L7) ## Methods ### clone() -> **clone**(): [`Paginator`](Paginator.md)\<`T`\> +```ts +clone(): Paginator +``` #### Returns @@ -56,13 +62,15 @@ #### Defined in -[paginate.ts:21](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/paginate.ts#L21) +[paginate.ts:21](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/paginate.ts#L21) *** ### next() -> **next**(): `Promise`\<`null` \| `T`\> +```ts +next(): Promise +``` #### Returns @@ -70,4 +78,4 @@ #### Defined in -[paginate.ts:25](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/paginate.ts#L25) +[paginate.ts:25](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/paginate.ts#L25) diff --git a/docs/api/paginate/index.md b/docs/api/paginate/index.md index 158adf9..19de704 100644 --- a/docs/api/paginate/index.md +++ b/docs/api/paginate/index.md @@ -10,4 +10,6 @@ ### Classes -- [Paginator](classes/Paginator.md) +| Class | Description | +| ------ | ------ | +| [Paginator](classes/Paginator.md) | - | diff --git a/docs/api/post/classes/Post.md b/docs/api/post/classes/Post.md index 2091168..4a5ec84 100644 --- a/docs/api/post/classes/Post.md +++ b/docs/api/post/classes/Post.md @@ -4,13 +4,15 @@ [tsky](../../index.md) / [post](../index.md) / Post -# Class: Post +# Post ## Constructors ### new Post() -> **new Post**(`instance`): [`Post`](Post.md) +```ts +new Post(instance): Post +``` #### Parameters @@ -24,13 +26,15 @@ #### Defined in -[post.ts:13](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/post.ts#L13) +[post.ts:13](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/post.ts#L13) ## Methods ### likes() -> **likes**(`params`, `options`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> +```ts +likes(params, options?): Paginator +``` Get like records which reference a subject (by AT-URI and CID). @@ -50,13 +54,15 @@ Get like records which reference a subject (by AT-URI and CID). #### Defined in -[post.ts:30](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/post.ts#L30) +[post.ts:30](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/post.ts#L30) *** ### quotes() -> **quotes**(`params`, `options`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> +```ts +quotes(params, options?): Paginator +``` Get a list of quotes for a given post. @@ -76,13 +82,15 @@ Get a list of quotes for a given post. #### Defined in -[post.ts:47](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/post.ts#L47) +[post.ts:47](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/post.ts#L47) *** ### repostedBy() -> **repostedBy**(`params`, `options`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> +```ts +repostedBy(params, options?): Paginator +``` Get a list of reposts for a given post. @@ -102,13 +110,15 @@ Get a list of reposts for a given post. #### Defined in -[post.ts:64](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/post.ts#L64) +[post.ts:64](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/post.ts#L64) *** ### threads() -> **threads**(`params`, `options`?): `Promise`\<`OutputSchema`\> +```ts +threads(params, options?): Promise +``` Get posts in a thread. Does not require auth, but additional metadata and filtering will be applied for authed requests. @@ -128,13 +138,18 @@ Get posts in a thread. Does not require auth, but additional metadata and filter #### Defined in -[post.ts:18](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/post.ts#L18) +[post.ts:18](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/post.ts#L18) *** ### getMany() -> `static` **getMany**(`instance`, `posts`, `options`?): `Promise`\<`PostView`[]\> +```ts +static getMany( + instance, + posts, +options?): Promise +``` Gets post views for a specified list of posts (by AT-URI). This is sometimes referred to as 'hydrating' a 'feed skeleton'. @@ -158,13 +173,18 @@ Gets post views for a specified list of posts (by AT-URI). This is sometimes ref #### Defined in -[post.ts:99](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/post.ts#L99) +[post.ts:99](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/post.ts#L99) *** ### search() -> `static` **search**(`instance`, `params`, `options`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> +```ts +static search( + instance, + params, +options?): Paginator +``` Find posts matching search criteria, returning views of those posts. @@ -188,4 +208,4 @@ Find posts matching search criteria, returning views of those posts. #### Defined in -[post.ts:81](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/post.ts#L81) +[post.ts:81](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/post.ts#L81) diff --git a/docs/api/post/index.md b/docs/api/post/index.md index d1b04be..682d101 100644 --- a/docs/api/post/index.md +++ b/docs/api/post/index.md @@ -10,4 +10,6 @@ ### Classes -- [Post](classes/Post.md) +| Class | Description | +| ------ | ------ | +| [Post](classes/Post.md) | - | diff --git a/docs/api/preference/classes/Preferences.md b/docs/api/preference/classes/Preferences.md index 09afd5b..cd7979f 100644 --- a/docs/api/preference/classes/Preferences.md +++ b/docs/api/preference/classes/Preferences.md @@ -4,13 +4,15 @@ [tsky](../../index.md) / [preference](../index.md) / Preferences -# Class: Preferences +# Preferences ## Constructors ### new Preferences() -> **new Preferences**(`instance`): [`Preferences`](Preferences.md) +```ts +new Preferences(instance): Preferences +``` #### Parameters @@ -24,13 +26,15 @@ #### Defined in -[preference.ts:8](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/preference.ts#L8) +[preference.ts:8](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/preference.ts#L8) ## Methods ### get() -> **get**(`options`?): `Promise`\<`Preferences`\> +```ts +get(options?): Promise +``` Get private preferences attached to the current account. Expected use is synchronization between multiple devices, and import/export during account migration. Requires auth. @@ -46,13 +50,15 @@ Get private preferences attached to the current account. Expected use is synchro #### Defined in -[preference.ts:13](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/preference.ts#L13) +[preference.ts:13](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/preference.ts#L13) *** ### set() -> **set**(`preferences`, `options`?): `Promise`\<`void`\> +```ts +set(preferences, options?): Promise +``` Set the private preferences attached to the account. @@ -72,4 +78,4 @@ Set the private preferences attached to the account. #### Defined in -[preference.ts:22](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/preference.ts#L22) +[preference.ts:22](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/preference.ts#L22) diff --git a/docs/api/preference/index.md b/docs/api/preference/index.md index 971650e..1a40934 100644 --- a/docs/api/preference/index.md +++ b/docs/api/preference/index.md @@ -10,4 +10,6 @@ ### Classes -- [Preferences](classes/Preferences.md) +| Class | Description | +| ------ | ------ | +| [Preferences](classes/Preferences.md) | - | diff --git a/docs/api/starterPack/classes/StarterPack.md b/docs/api/starterPack/classes/StarterPack.md index e755fe0..e27c8f8 100644 --- a/docs/api/starterPack/classes/StarterPack.md +++ b/docs/api/starterPack/classes/StarterPack.md @@ -4,13 +4,15 @@ [tsky](../../index.md) / [starterPack](../index.md) / StarterPack -# Class: StarterPack +# StarterPack ## Constructors ### new StarterPack() -> **new StarterPack**(`instance`, `uri`): [`StarterPack`](StarterPack.md) +```ts +new StarterPack(instance, uri): StarterPack +``` #### Parameters @@ -28,13 +30,15 @@ #### Defined in -[starterPack.ts:10](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/starterPack.ts#L10) +[starterPack.ts:10](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/starterPack.ts#L10) ## Methods ### about() -> **about**(`options`?): `Promise`\<`OutputSchema`\> +```ts +about(options?): Promise +``` Gets a view of a starter pack. @@ -50,13 +54,18 @@ Gets a view of a starter pack. #### Defined in -[starterPack.ts:15](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/starterPack.ts#L15) +[starterPack.ts:15](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/starterPack.ts#L15) *** ### getMany() -> `static` **getMany**(`instance`, `starterpacks`, `options`?): `Promise`\<`OutputSchema`\> +```ts +static getMany( + instance, + starterpacks, +options?): Promise +``` Get views for a list of starter packs. @@ -80,13 +89,19 @@ Get views for a list of starter packs. #### Defined in -[starterPack.ts:52](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/starterPack.ts#L52) +[starterPack.ts:52](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/starterPack.ts#L52) *** ### search() -> `static` **search**(`instance`, `query`, `limit`?, `options`?): [`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> +```ts +static search( + instance, + query, + limit?, +options?): Paginator +``` Search for starter packs. @@ -114,4 +129,4 @@ Search for starter packs. #### Defined in -[starterPack.ts:29](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/starterPack.ts#L29) +[starterPack.ts:29](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/starterPack.ts#L29) diff --git a/docs/api/starterPack/index.md b/docs/api/starterPack/index.md index 87f03a9..c401ef0 100644 --- a/docs/api/starterPack/index.md +++ b/docs/api/starterPack/index.md @@ -10,4 +10,6 @@ ### Classes -- [StarterPack](classes/StarterPack.md) +| Class | Description | +| ------ | ------ | +| [StarterPack](classes/StarterPack.md) | - | diff --git a/docs/api/video/classes/Video.md b/docs/api/video/classes/Video.md index 82e7f3d..d9d0fe5 100644 --- a/docs/api/video/classes/Video.md +++ b/docs/api/video/classes/Video.md @@ -4,13 +4,15 @@ [tsky](../../index.md) / [video](../index.md) / Video -# Class: Video +# Video ## Constructors ### new Video() -> **new Video**(`instance`): [`Video`](Video.md) +```ts +new Video(instance): Video +``` #### Parameters @@ -24,13 +26,15 @@ #### Defined in -[video.ts:11](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/video.ts#L11) +[video.ts:11](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/video.ts#L11) ## Methods ### limit() -> **limit**(`options`?): `Promise`\<`OutputSchema`\> +```ts +limit(options?): Promise +``` Get video upload limits for the authenticated user. @@ -46,13 +50,15 @@ Get video upload limits for the authenticated user. #### Defined in -[video.ts:16](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/video.ts#L16) +[video.ts:16](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/video.ts#L16) *** ### status() -> **status**(`jobId`, `options`?): `Promise`\<`JobStatus`\> +```ts +status(jobId, options?): Promise +``` Get status details for a video processing job. @@ -72,13 +78,15 @@ Get status details for a video processing job. #### Defined in -[video.ts:25](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/video.ts#L25) +[video.ts:25](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/video.ts#L25) *** ### upload() -> **upload**(`data`, `options`?): `Promise`\<`JobStatus`\> +```ts +upload(data, options?): Promise +``` Upload a video to be processed then stored on the PDS. @@ -98,4 +106,4 @@ Upload a video to be processed then stored on the PDS. #### Defined in -[video.ts:34](https://github.com/anbraten/tsky/blob/d41f31ef5ffd7e02d6eae90f23a8982db2e99629/packages/core/src/video.ts#L34) +[video.ts:34](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/video.ts#L34) diff --git a/docs/api/video/index.md b/docs/api/video/index.md index 56aeedd..22b8e29 100644 --- a/docs/api/video/index.md +++ b/docs/api/video/index.md @@ -10,4 +10,6 @@ ### Classes -- [Video](classes/Video.md) +| Class | Description | +| ------ | ------ | +| [Video](classes/Video.md) | - | diff --git a/docs/typedoc.json b/docs/typedoc.json index 9a23922..652f678 100644 --- a/docs/typedoc.json +++ b/docs/typedoc.json @@ -1,17 +1,30 @@ { "$schema": "https://typedoc-plugin-markdown.org/schema.json", - "entryPoints": ["../packages/core"], - "plugin": ["typedoc-plugin-markdown", "typedoc-vitepress-theme"], + "entryPoints": [ + "../packages/core" + ], + "plugin": [ + "typedoc-plugin-markdown", + "typedoc-vitepress-theme" + ], "name": "Packages Example", "entryPointStrategy": "packages", "packageOptions": { "includeVersion": true, - "entryPoints": ["src/*.ts"], + "entryPoints": [ + "src/*.ts" + ] }, "basePath": "../packages/core/src", "readme": "none", "entryFileName": "index.md", "mergeReadme": true, + "indexFormat": "table", + "useCodeBlocks": true, + "textContentMappings": { + "title.indexPage": "API Reference", + "title.memberPage": "{name}" + }, "outputs": [ { "name": "markdown", @@ -20,4 +33,4 @@ ], "hidePageHeader": false, "logLevel": "Verbose" -} \ No newline at end of file +} From 1a1ab67ab918a69c4f9d4ac7e850b2fe94e7de2c Mon Sep 17 00:00:00 2001 From: Anbraten Date: Sun, 1 Dec 2024 09:15:44 +0100 Subject: [PATCH 05/21] create api folder on build --- docs/api/.gitignore | 2 + docs/api/actor/classes/Actor.md | 457 ------------------ docs/api/actor/classes/BaseActor.md | 292 ------------ docs/api/actor/classes/User.md | 489 -------------------- docs/api/actor/index.md | 17 - docs/api/feed/classes/Feed.md | 129 ------ docs/api/feed/index.md | 15 - docs/api/index.md | 21 - docs/api/index/classes/TSky.md | 141 ------ docs/api/index/index.md | 15 - docs/api/list/classes/BskyList.md | 89 ---- docs/api/list/index.md | 15 - docs/api/paginate/classes/Paginator.md | 81 ---- docs/api/paginate/index.md | 15 - docs/api/post/classes/Post.md | 211 --------- docs/api/post/index.md | 15 - docs/api/preference/classes/Preferences.md | 81 ---- docs/api/preference/index.md | 15 - docs/api/starterPack/classes/StarterPack.md | 132 ------ docs/api/starterPack/index.md | 15 - docs/api/typedoc-sidebar.json | 1 - docs/api/video/classes/Video.md | 109 ----- docs/api/video/index.md | 15 - 23 files changed, 2 insertions(+), 2370 deletions(-) create mode 100644 docs/api/.gitignore delete mode 100644 docs/api/actor/classes/Actor.md delete mode 100644 docs/api/actor/classes/BaseActor.md delete mode 100644 docs/api/actor/classes/User.md delete mode 100644 docs/api/actor/index.md delete mode 100644 docs/api/feed/classes/Feed.md delete mode 100644 docs/api/feed/index.md delete mode 100644 docs/api/index.md delete mode 100644 docs/api/index/classes/TSky.md delete mode 100644 docs/api/index/index.md delete mode 100644 docs/api/list/classes/BskyList.md delete mode 100644 docs/api/list/index.md delete mode 100644 docs/api/paginate/classes/Paginator.md delete mode 100644 docs/api/paginate/index.md delete mode 100644 docs/api/post/classes/Post.md delete mode 100644 docs/api/post/index.md delete mode 100644 docs/api/preference/classes/Preferences.md delete mode 100644 docs/api/preference/index.md delete mode 100644 docs/api/starterPack/classes/StarterPack.md delete mode 100644 docs/api/starterPack/index.md delete mode 100644 docs/api/typedoc-sidebar.json delete mode 100644 docs/api/video/classes/Video.md delete mode 100644 docs/api/video/index.md diff --git a/docs/api/.gitignore b/docs/api/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/docs/api/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/docs/api/actor/classes/Actor.md b/docs/api/actor/classes/Actor.md deleted file mode 100644 index 151d3d8..0000000 --- a/docs/api/actor/classes/Actor.md +++ /dev/null @@ -1,457 +0,0 @@ -[**actor**](../index.md) - -*** - -[tsky](../../index.md) / [actor](../index.md) / Actor - -# Actor - -## Extends - -- [`BaseActor`](BaseActor.md) - -## Constructors - -### new Actor() - -```ts -new Actor(instance, actor): Actor -``` - -#### Parameters - -##### instance - -`AppBskyNS` - -##### actor - -`string` - -#### Returns - -[`Actor`](Actor.md) - -#### Inherited from - -[`BaseActor`](BaseActor.md).[`constructor`](BaseActor.md#constructors) - -#### Defined in - -[actor.ts:24](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L24) - -## Properties - -### actor - -```ts -readonly actor: string; -``` - -#### Inherited from - -[`BaseActor`](BaseActor.md).[`actor`](BaseActor.md#actor) - -#### Defined in - -[actor.ts:24](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L24) - -*** - -### instance - -```ts -readonly instance: AppBskyNS; -``` - -#### Inherited from - -[`BaseActor`](BaseActor.md).[`instance`](BaseActor.md#instance) - -#### Defined in - -[actor.ts:24](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L24) - -## Methods - -### feed() - -```ts -feed(params, options?): Paginator -``` - -Get a list of feeds (feed generator records) created by the actor (in the actor's repo). - -#### Parameters - -##### params - -`QueryParams` - -##### options? - -`CallOptions` - -#### Returns - -[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> - -#### Inherited from - -[`BaseActor`](BaseActor.md).[`feed`](BaseActor.md#feed) - -#### Defined in - -[actor.ts:135](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L135) - -*** - -### feeds() - -```ts -feeds(limit?, options?): Paginator -``` - -Get a view of an actor's 'author feed' (post and reposts by the author). Does not require auth. - -#### Parameters - -##### limit? - -`number` - -##### options? - -`CallOptions` - -#### Returns - -[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> - -#### Inherited from - -[`BaseActor`](BaseActor.md).[`feeds`](BaseActor.md#feeds) - -#### Defined in - -[actor.ts:107](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L107) - -*** - -### followers() - -```ts -followers(limit?): Paginator -``` - -Enumerates accounts which follow a specified account (actor). - -#### Parameters - -##### limit? - -`number` - -#### Returns - -[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> - -#### Inherited from - -[`BaseActor`](BaseActor.md).[`followers`](BaseActor.md#followers) - -#### Defined in - -[actor.ts:44](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L44) - -*** - -### follows() - -```ts -follows(limit?): Paginator -``` - -Enumerates accounts which a specified account (actor) follows. - -#### Parameters - -##### limit? - -`number` - -#### Returns - -[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> - -#### Inherited from - -[`BaseActor`](BaseActor.md).[`follows`](BaseActor.md#follows) - -#### Defined in - -[actor.ts:59](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L59) - -*** - -### likes() - -```ts -likes(limit?, options?): Paginator -``` - -Get a list of posts liked by an actor. Requires auth, actor must be the requesting account. - -#### Parameters - -##### limit? - -`number` - -##### options? - -`CallOptions` - -#### Returns - -[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> - -#### Inherited from - -[`BaseActor`](BaseActor.md).[`likes`](BaseActor.md#likes) - -#### Defined in - -[actor.ts:121](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L121) - -*** - -### lists() - -```ts -lists(limit?): Paginator -``` - -Enumerates the lists created by a specified account (actor). - -#### Parameters - -##### limit? - -`number` - -#### Returns - -[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> - -#### Inherited from - -[`BaseActor`](BaseActor.md).[`lists`](BaseActor.md#lists) - -#### Defined in - -[actor.ts:74](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L74) - -*** - -### mute() - -```ts -mute(options?): Promise -``` - -Creates a mute relationship for the specified account. Mutes are private in Bluesky. Requires auth. - -#### Parameters - -##### options? - -`CallOptions` - -#### Returns - -`Promise`\<`Response`\> - -#### Defined in - -[actor.ts:176](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L176) - -*** - -### relationships() - -```ts -relationships(others?, options?): Promise -``` - -Enumerates public relationships between one account, and a list of other accounts. Does not require auth. - -#### Parameters - -##### others? - -`string`[] - -##### options? - -`CallOptions` - -#### Returns - -`Promise`\<`OutputSchema`\> - -#### Inherited from - -[`BaseActor`](BaseActor.md).[`relationships`](BaseActor.md#relationships) - -#### Defined in - -[actor.ts:89](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L89) - -*** - -### starterPacks() - -```ts -starterPacks(limit?): Paginator -``` - -Get a list of starter packs created by the actor. - -#### Parameters - -##### limit? - -`number` - -#### Returns - -[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> - -#### Inherited from - -[`BaseActor`](BaseActor.md).[`starterPacks`](BaseActor.md#starterpacks) - -#### Defined in - -[actor.ts:29](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L29) - -*** - -### thread() - -```ts -thread(thread): Thread -``` - -#### Parameters - -##### thread - -`string` - -#### Returns - -`Thread` - -#### Inherited from - -[`BaseActor`](BaseActor.md).[`thread`](BaseActor.md#thread) - -#### Defined in - -[actor.ts:149](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L149) - -*** - -### unmute() - -```ts -unmute(options?): Promise -``` - -Unmutes the specified account. Requires auth. - -#### Parameters - -##### options? - -`CallOptions` - -#### Returns - -`Promise`\<`Response`\> - -#### Defined in - -[actor.ts:183](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L183) - -*** - -### muteMany() - -```ts -static muteMany( - instance, - actors, -options?): Promise -``` - -Creates a mute relationship for the specified list of accounts. Mutes are private in Bluesky. Requires auth. - -#### Parameters - -##### instance - -`AppBskyNS` - -##### actors - -`string`[] - -##### options? - -`CallOptions` - -#### Returns - -`Promise`\<`Response`\> - -#### Defined in - -[actor.ts:190](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L190) - -*** - -### unmuteMany() - -```ts -static unmuteMany( - instance, - actors, -options?): Promise -``` - -Unmutes the specified list of accounts. Requires auth. - -#### Parameters - -##### instance - -`AppBskyNS` - -##### actors - -`string`[] - -##### options? - -`CallOptions` - -#### Returns - -`Promise`\<`Response`\> - -#### Defined in - -[actor.ts:202](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L202) diff --git a/docs/api/actor/classes/BaseActor.md b/docs/api/actor/classes/BaseActor.md deleted file mode 100644 index f5b63e1..0000000 --- a/docs/api/actor/classes/BaseActor.md +++ /dev/null @@ -1,292 +0,0 @@ -[**actor**](../index.md) - -*** - -[tsky](../../index.md) / [actor](../index.md) / BaseActor - -# BaseActor - -## Extended by - -- [`Actor`](Actor.md) -- [`User`](User.md) - -## Constructors - -### new BaseActor() - -```ts -new BaseActor(instance, actor): BaseActor -``` - -#### Parameters - -##### instance - -`AppBskyNS` - -##### actor - -`string` - -#### Returns - -[`BaseActor`](BaseActor.md) - -#### Defined in - -[actor.ts:24](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L24) - -## Properties - -### actor - -```ts -readonly actor: string; -``` - -#### Defined in - -[actor.ts:24](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L24) - -*** - -### instance - -```ts -readonly instance: AppBskyNS; -``` - -#### Defined in - -[actor.ts:24](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L24) - -## Methods - -### feed() - -```ts -feed(params, options?): Paginator -``` - -Get a list of feeds (feed generator records) created by the actor (in the actor's repo). - -#### Parameters - -##### params - -`QueryParams` - -##### options? - -`CallOptions` - -#### Returns - -[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> - -#### Defined in - -[actor.ts:135](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L135) - -*** - -### feeds() - -```ts -feeds(limit?, options?): Paginator -``` - -Get a view of an actor's 'author feed' (post and reposts by the author). Does not require auth. - -#### Parameters - -##### limit? - -`number` - -##### options? - -`CallOptions` - -#### Returns - -[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> - -#### Defined in - -[actor.ts:107](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L107) - -*** - -### followers() - -```ts -followers(limit?): Paginator -``` - -Enumerates accounts which follow a specified account (actor). - -#### Parameters - -##### limit? - -`number` - -#### Returns - -[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> - -#### Defined in - -[actor.ts:44](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L44) - -*** - -### follows() - -```ts -follows(limit?): Paginator -``` - -Enumerates accounts which a specified account (actor) follows. - -#### Parameters - -##### limit? - -`number` - -#### Returns - -[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> - -#### Defined in - -[actor.ts:59](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L59) - -*** - -### likes() - -```ts -likes(limit?, options?): Paginator -``` - -Get a list of posts liked by an actor. Requires auth, actor must be the requesting account. - -#### Parameters - -##### limit? - -`number` - -##### options? - -`CallOptions` - -#### Returns - -[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> - -#### Defined in - -[actor.ts:121](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L121) - -*** - -### lists() - -```ts -lists(limit?): Paginator -``` - -Enumerates the lists created by a specified account (actor). - -#### Parameters - -##### limit? - -`number` - -#### Returns - -[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> - -#### Defined in - -[actor.ts:74](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L74) - -*** - -### relationships() - -```ts -relationships(others?, options?): Promise -``` - -Enumerates public relationships between one account, and a list of other accounts. Does not require auth. - -#### Parameters - -##### others? - -`string`[] - -##### options? - -`CallOptions` - -#### Returns - -`Promise`\<`OutputSchema`\> - -#### Defined in - -[actor.ts:89](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L89) - -*** - -### starterPacks() - -```ts -starterPacks(limit?): Paginator -``` - -Get a list of starter packs created by the actor. - -#### Parameters - -##### limit? - -`number` - -#### Returns - -[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> - -#### Defined in - -[actor.ts:29](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L29) - -*** - -### thread() - -```ts -thread(thread): Thread -``` - -#### Parameters - -##### thread - -`string` - -#### Returns - -`Thread` - -#### Defined in - -[actor.ts:149](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L149) diff --git a/docs/api/actor/classes/User.md b/docs/api/actor/classes/User.md deleted file mode 100644 index f893f2d..0000000 --- a/docs/api/actor/classes/User.md +++ /dev/null @@ -1,489 +0,0 @@ -[**actor**](../index.md) - -*** - -[tsky](../../index.md) / [actor](../index.md) / User - -# User - -## Extends - -- [`BaseActor`](BaseActor.md) - -## Constructors - -### new User() - -```ts -new User(instance, actor): User -``` - -#### Parameters - -##### instance - -`AppBskyNS` - -##### actor - -`string` - -#### Returns - -[`User`](User.md) - -#### Inherited from - -[`BaseActor`](BaseActor.md).[`constructor`](BaseActor.md#constructors) - -#### Defined in - -[actor.ts:24](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L24) - -## Properties - -### actor - -```ts -readonly actor: string; -``` - -#### Inherited from - -[`BaseActor`](BaseActor.md).[`actor`](BaseActor.md#actor) - -#### Defined in - -[actor.ts:24](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L24) - -*** - -### instance - -```ts -readonly instance: AppBskyNS; -``` - -#### Inherited from - -[`BaseActor`](BaseActor.md).[`instance`](BaseActor.md#instance) - -#### Defined in - -[actor.ts:24](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L24) - -## Methods - -### blockedLists() - -```ts -blockedLists(limit?, options?): Paginator -``` - -Get mod lists that the requesting account (actor) is blocking. Requires auth. - -#### Parameters - -##### limit? - -`number` - -##### options? - -`CallOptions` - -#### Returns - -[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> - -#### Defined in - -[actor.ts:236](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L236) - -*** - -### feed() - -```ts -feed(params, options?): Paginator -``` - -Get a list of feeds (feed generator records) created by the actor (in the actor's repo). - -#### Parameters - -##### params - -`QueryParams` - -##### options? - -`CallOptions` - -#### Returns - -[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> - -#### Inherited from - -[`BaseActor`](BaseActor.md).[`feed`](BaseActor.md#feed) - -#### Defined in - -[actor.ts:135](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L135) - -*** - -### feeds() - -```ts -feeds(limit?, options?): Paginator -``` - -Get a view of an actor's 'author feed' (post and reposts by the author). Does not require auth. - -#### Parameters - -##### limit? - -`number` - -##### options? - -`CallOptions` - -#### Returns - -[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> - -#### Inherited from - -[`BaseActor`](BaseActor.md).[`feeds`](BaseActor.md#feeds) - -#### Defined in - -[actor.ts:107](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L107) - -*** - -### followers() - -```ts -followers(limit?): Paginator -``` - -Enumerates accounts which follow a specified account (actor). - -#### Parameters - -##### limit? - -`number` - -#### Returns - -[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> - -#### Inherited from - -[`BaseActor`](BaseActor.md).[`followers`](BaseActor.md#followers) - -#### Defined in - -[actor.ts:44](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L44) - -*** - -### follows() - -```ts -follows(limit?): Paginator -``` - -Enumerates accounts which a specified account (actor) follows. - -#### Parameters - -##### limit? - -`number` - -#### Returns - -[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> - -#### Inherited from - -[`BaseActor`](BaseActor.md).[`follows`](BaseActor.md#follows) - -#### Defined in - -[actor.ts:59](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L59) - -*** - -### knowFollowers() - -```ts -knowFollowers(params, options?): Paginator -``` - -Enumerates accounts which follow a specified account (actor) and are followed by the viewer. - -#### Parameters - -##### params - -###### params.actor - -`string` - -###### params.limit - -`number` - -##### options? - -`CallOptions` - -#### Returns - -[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> - -#### Defined in - -[actor.ts:216](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L216) - -*** - -### likes() - -```ts -likes(limit?, options?): Paginator -``` - -Get a list of posts liked by an actor. Requires auth, actor must be the requesting account. - -#### Parameters - -##### limit? - -`number` - -##### options? - -`CallOptions` - -#### Returns - -[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> - -#### Inherited from - -[`BaseActor`](BaseActor.md).[`likes`](BaseActor.md#likes) - -#### Defined in - -[actor.ts:121](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L121) - -*** - -### lists() - -```ts -lists(limit?): Paginator -``` - -Enumerates the lists created by a specified account (actor). - -#### Parameters - -##### limit? - -`number` - -#### Returns - -[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> - -#### Inherited from - -[`BaseActor`](BaseActor.md).[`lists`](BaseActor.md#lists) - -#### Defined in - -[actor.ts:74](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L74) - -*** - -### mutedLists() - -```ts -mutedLists(limit?, options?): Paginator -``` - -Enumerates mod lists that the requesting account (actor) currently has muted. Requires auth. - -#### Parameters - -##### limit? - -`number` - -##### options? - -`CallOptions` - -#### Returns - -[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> - -#### Defined in - -[actor.ts:256](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L256) - -*** - -### mutedProfiles() - -```ts -mutedProfiles(limit?, options?): Paginator -``` - -Enumerates accounts that the requesting account (actor) currently has muted. Requires auth. - -#### Parameters - -##### limit? - -`number` - -##### options? - -`CallOptions` - -#### Returns - -[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> - -#### Defined in - -[actor.ts:273](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L273) - -*** - -### preferences() - -```ts -preferences(): Preferences -``` - -#### Returns - -[`Preferences`](../../preference/classes/Preferences.md) - -#### Defined in - -[actor.ts:291](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L291) - -*** - -### relationships() - -```ts -relationships(others?, options?): Promise -``` - -Enumerates public relationships between one account, and a list of other accounts. Does not require auth. - -#### Parameters - -##### others? - -`string`[] - -##### options? - -`CallOptions` - -#### Returns - -`Promise`\<`OutputSchema`\> - -#### Inherited from - -[`BaseActor`](BaseActor.md).[`relationships`](BaseActor.md#relationships) - -#### Defined in - -[actor.ts:89](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L89) - -*** - -### starterPacks() - -```ts -starterPacks(limit?): Paginator -``` - -Get a list of starter packs created by the actor. - -#### Parameters - -##### limit? - -`number` - -#### Returns - -[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> - -#### Inherited from - -[`BaseActor`](BaseActor.md).[`starterPacks`](BaseActor.md#starterpacks) - -#### Defined in - -[actor.ts:29](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L29) - -*** - -### suggestions() - -```ts -suggestions(): Suggestions -``` - -#### Returns - -`Suggestions` - -#### Defined in - -[actor.ts:287](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L287) - -*** - -### thread() - -```ts -thread(thread): Thread -``` - -#### Parameters - -##### thread - -`string` - -#### Returns - -`Thread` - -#### Inherited from - -[`BaseActor`](BaseActor.md).[`thread`](BaseActor.md#thread) - -#### Defined in - -[actor.ts:149](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/actor.ts#L149) diff --git a/docs/api/actor/index.md b/docs/api/actor/index.md deleted file mode 100644 index 7a08092..0000000 --- a/docs/api/actor/index.md +++ /dev/null @@ -1,17 +0,0 @@ -**actor** - -*** - -[tsky](../index.md) / actor - -# actor - -## Index - -### Classes - -| Class | Description | -| ------ | ------ | -| [Actor](classes/Actor.md) | - | -| [BaseActor](classes/BaseActor.md) | - | -| [User](classes/User.md) | - | diff --git a/docs/api/feed/classes/Feed.md b/docs/api/feed/classes/Feed.md deleted file mode 100644 index b7a2bed..0000000 --- a/docs/api/feed/classes/Feed.md +++ /dev/null @@ -1,129 +0,0 @@ -[**feed**](../index.md) - -*** - -[tsky](../../index.md) / [feed](../index.md) / Feed - -# Feed - -## Constructors - -### new Feed() - -```ts -new Feed(instance): Feed -``` - -#### Parameters - -##### instance - -`AppBskyNS` - -#### Returns - -[`Feed`](Feed.md) - -#### Defined in - -[feed.ts:14](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/feed.ts#L14) - -## Methods - -### generator() - -```ts -generator(): FeedGenerator -``` - -#### Returns - -`FeedGenerator` - -#### Defined in - -[feed.ts:62](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/feed.ts#L62) - -*** - -### getFeed() - -```ts -getFeed(params, options?): Promise> -``` - -Get a hydrated feed from an actor's selected feed generator. Implemented by App View. - -#### Parameters - -##### params - -`QueryParams` - -##### options? - -`CallOptions` - -#### Returns - -`Promise`\<[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\>\> - -#### Defined in - -[feed.ts:19](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/feed.ts#L19) - -*** - -### sendInteractions() - -```ts -sendInteractions(data?, options?): Promise -``` - -Send information about interactions with feed items back to the feed generator that served them. - -#### Parameters - -##### data? - -`InputSchema` - -##### options? - -`CallOptions` - -#### Returns - -`Promise`\<`OutputSchema`\> - -#### Defined in - -[feed.ts:53](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/feed.ts#L53) - -*** - -### timeline() - -```ts -timeline(params, options?): Paginator -``` - -Get a view of the requesting account's home timeline. This is expected to be some form of reverse-chronological feed. - -#### Parameters - -##### params - -`QueryParams` - -##### options? - -`CallOptions` - -#### Returns - -[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> - -#### Defined in - -[feed.ts:36](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/feed.ts#L36) diff --git a/docs/api/feed/index.md b/docs/api/feed/index.md deleted file mode 100644 index 0e72321..0000000 --- a/docs/api/feed/index.md +++ /dev/null @@ -1,15 +0,0 @@ -**feed** - -*** - -[tsky](../index.md) / feed - -# feed - -## Index - -### Classes - -| Class | Description | -| ------ | ------ | -| [Feed](classes/Feed.md) | - | diff --git a/docs/api/index.md b/docs/api/index.md deleted file mode 100644 index 66fdb3a..0000000 --- a/docs/api/index.md +++ /dev/null @@ -1,21 +0,0 @@ -**tsky v0.1.0** - -*** - -# TSky - -A BlueSky API Wrapper - -## Modules - -| Module | Description | -| ------ | ------ | -| [actor](actor/index.md) | - | -| [feed](feed/index.md) | - | -| [index](index/index.md) | - | -| [list](list/index.md) | - | -| [paginate](paginate/index.md) | - | -| [post](post/index.md) | - | -| [preference](preference/index.md) | - | -| [starterPack](starterPack/index.md) | - | -| [video](video/index.md) | - | diff --git a/docs/api/index/classes/TSky.md b/docs/api/index/classes/TSky.md deleted file mode 100644 index ba12718..0000000 --- a/docs/api/index/classes/TSky.md +++ /dev/null @@ -1,141 +0,0 @@ -[**index**](../index.md) - -*** - -[tsky](../../index.md) / [index](../index.md) / TSky - -# TSky - -## Constructors - -### new TSky() - -```ts -new TSky(instance): TSky -``` - -#### Parameters - -##### instance - -`AppBskyNS` - -#### Returns - -[`TSky`](TSky.md) - -#### Defined in - -[index.ts:12](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/index.ts#L12) - -## Methods - -### profile() - -#### Call Signature - -```ts -profile(identifier, options?): Promise -``` - -Get detailed profile view of an actor. Does not require auth, but contains relevant metadata with auth. - -##### Parameters - -###### identifier - -`string` - -###### options? - -`CallOptions` - -##### Returns - -`Promise`\<`ProfileViewDetailed`\> - -##### Defined in - -[index.ts:17](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/index.ts#L17) - -#### Call Signature - -```ts -profile(identifiers, options?): Promise -``` - -Get detailed profile views of multiple actors. - -##### Parameters - -###### identifiers - -`string`[] - -###### options? - -`CallOptions` - -##### Returns - -`Promise`\<`ProfileViewDetailed`[]\> - -##### Defined in - -[index.ts:24](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/index.ts#L24) - -*** - -### search() - -```ts -search(params, options?): Promise> -``` - -Find actors (profiles) matching search criteria. Does not require auth. - -#### Parameters - -##### params - -`QueryParams` = `{}` - -##### options? - -`CallOptions` - -#### Returns - -`Promise`\<[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\>\> - -#### Defined in - -[index.ts:70](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/index.ts#L70) - -*** - -### typeahead() - -```ts -typeahead(params, options?): Promise -``` - -Find actor suggestions for a prefix search term. Expected use is for auto-completion during text field entry. Does not require auth. - -#### Parameters - -##### params - -`QueryParams` - -##### options? - -`CallOptions` - -#### Returns - -`Promise`\<`ProfileViewBasic`[]\> - -#### Defined in - -[index.ts:55](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/index.ts#L55) diff --git a/docs/api/index/index.md b/docs/api/index/index.md deleted file mode 100644 index 7c7bd1e..0000000 --- a/docs/api/index/index.md +++ /dev/null @@ -1,15 +0,0 @@ -**index** - -*** - -[tsky](../index.md) / index - -# index - -## Index - -### Classes - -| Class | Description | -| ------ | ------ | -| [TSky](classes/TSky.md) | - | diff --git a/docs/api/list/classes/BskyList.md b/docs/api/list/classes/BskyList.md deleted file mode 100644 index 5390d93..0000000 --- a/docs/api/list/classes/BskyList.md +++ /dev/null @@ -1,89 +0,0 @@ -[**list**](../index.md) - -*** - -[tsky](../../index.md) / [list](../index.md) / BskyList - -# BskyList - -## Constructors - -### new BskyList() - -```ts -new BskyList(instance, uri): BskyList -``` - -#### Parameters - -##### instance - -`AppBskyNS` - -##### uri - -`string` - -#### Returns - -[`BskyList`](BskyList.md) - -#### Defined in - -[list.ts:9](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/list.ts#L9) - -## Methods - -### about() - -```ts -about(limit?, options?): Paginator -``` - -Gets a 'view' (with additional context) of a specified list. - -#### Parameters - -##### limit? - -`number` - -##### options? - -`CallOptions` - -#### Returns - -[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> - -#### Defined in - -[list.ts:14](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/list.ts#L14) - -*** - -### feed() - -```ts -feed(limit?, options?): Paginator -``` - -Get a feed of recent posts from a list (posts and reposts from any actors on the list). Does not require auth. - -#### Parameters - -##### limit? - -`number` - -##### options? - -`CallOptions` - -#### Returns - -[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> - -#### Defined in - -[list.ts:32](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/list.ts#L32) diff --git a/docs/api/list/index.md b/docs/api/list/index.md deleted file mode 100644 index 9a4dec4..0000000 --- a/docs/api/list/index.md +++ /dev/null @@ -1,15 +0,0 @@ -**list** - -*** - -[tsky](../index.md) / list - -# list - -## Index - -### Classes - -| Class | Description | -| ------ | ------ | -| [BskyList](classes/BskyList.md) | - | diff --git a/docs/api/paginate/classes/Paginator.md b/docs/api/paginate/classes/Paginator.md deleted file mode 100644 index 7fa87ae..0000000 --- a/docs/api/paginate/classes/Paginator.md +++ /dev/null @@ -1,81 +0,0 @@ -[**paginate**](../index.md) - -*** - -[tsky](../../index.md) / [paginate](../index.md) / Paginator - -# Paginator\ - -## Type Parameters - -• **T** *extends* `CursorResponse` - -## Constructors - -### new Paginator() - -```ts -new Paginator(onNext, defaultValues?): Paginator -``` - -#### Parameters - -##### onNext - -(`cursor`?) => `Promise`\<`T`\> - -##### defaultValues? - -`T`[] - -#### Returns - -[`Paginator`](Paginator.md)\<`T`\> - -#### Defined in - -[paginate.ts:9](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/paginate.ts#L9) - -## Properties - -### values - -```ts -readonly values: T[] = []; -``` - -#### Defined in - -[paginate.ts:7](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/paginate.ts#L7) - -## Methods - -### clone() - -```ts -clone(): Paginator -``` - -#### Returns - -[`Paginator`](Paginator.md)\<`T`\> - -#### Defined in - -[paginate.ts:21](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/paginate.ts#L21) - -*** - -### next() - -```ts -next(): Promise -``` - -#### Returns - -`Promise`\<`null` \| `T`\> - -#### Defined in - -[paginate.ts:25](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/paginate.ts#L25) diff --git a/docs/api/paginate/index.md b/docs/api/paginate/index.md deleted file mode 100644 index 19de704..0000000 --- a/docs/api/paginate/index.md +++ /dev/null @@ -1,15 +0,0 @@ -**paginate** - -*** - -[tsky](../index.md) / paginate - -# paginate - -## Index - -### Classes - -| Class | Description | -| ------ | ------ | -| [Paginator](classes/Paginator.md) | - | diff --git a/docs/api/post/classes/Post.md b/docs/api/post/classes/Post.md deleted file mode 100644 index 4a5ec84..0000000 --- a/docs/api/post/classes/Post.md +++ /dev/null @@ -1,211 +0,0 @@ -[**post**](../index.md) - -*** - -[tsky](../../index.md) / [post](../index.md) / Post - -# Post - -## Constructors - -### new Post() - -```ts -new Post(instance): Post -``` - -#### Parameters - -##### instance - -`AppBskyNS` - -#### Returns - -[`Post`](Post.md) - -#### Defined in - -[post.ts:13](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/post.ts#L13) - -## Methods - -### likes() - -```ts -likes(params, options?): Paginator -``` - -Get like records which reference a subject (by AT-URI and CID). - -#### Parameters - -##### params - -`QueryParams` - -##### options? - -`CallOptions` - -#### Returns - -[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> - -#### Defined in - -[post.ts:30](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/post.ts#L30) - -*** - -### quotes() - -```ts -quotes(params, options?): Paginator -``` - -Get a list of quotes for a given post. - -#### Parameters - -##### params - -`QueryParams` - -##### options? - -`CallOptions` - -#### Returns - -[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> - -#### Defined in - -[post.ts:47](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/post.ts#L47) - -*** - -### repostedBy() - -```ts -repostedBy(params, options?): Paginator -``` - -Get a list of reposts for a given post. - -#### Parameters - -##### params - -`QueryParams` - -##### options? - -`CallOptions` - -#### Returns - -[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> - -#### Defined in - -[post.ts:64](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/post.ts#L64) - -*** - -### threads() - -```ts -threads(params, options?): Promise -``` - -Get posts in a thread. Does not require auth, but additional metadata and filtering will be applied for authed requests. - -#### Parameters - -##### params - -`QueryParams` - -##### options? - -`CallOptions` - -#### Returns - -`Promise`\<`OutputSchema`\> - -#### Defined in - -[post.ts:18](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/post.ts#L18) - -*** - -### getMany() - -```ts -static getMany( - instance, - posts, -options?): Promise -``` - -Gets post views for a specified list of posts (by AT-URI). This is sometimes referred to as 'hydrating' a 'feed skeleton'. - -#### Parameters - -##### instance - -`AppBskyNS` - -##### posts - -`string`[] - -##### options? - -`CallOptions` - -#### Returns - -`Promise`\<`PostView`[]\> - -#### Defined in - -[post.ts:99](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/post.ts#L99) - -*** - -### search() - -```ts -static search( - instance, - params, -options?): Paginator -``` - -Find posts matching search criteria, returning views of those posts. - -#### Parameters - -##### instance - -`AppBskyNS` - -##### params - -`QueryParams` - -##### options? - -`CallOptions` - -#### Returns - -[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> - -#### Defined in - -[post.ts:81](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/post.ts#L81) diff --git a/docs/api/post/index.md b/docs/api/post/index.md deleted file mode 100644 index 682d101..0000000 --- a/docs/api/post/index.md +++ /dev/null @@ -1,15 +0,0 @@ -**post** - -*** - -[tsky](../index.md) / post - -# post - -## Index - -### Classes - -| Class | Description | -| ------ | ------ | -| [Post](classes/Post.md) | - | diff --git a/docs/api/preference/classes/Preferences.md b/docs/api/preference/classes/Preferences.md deleted file mode 100644 index cd7979f..0000000 --- a/docs/api/preference/classes/Preferences.md +++ /dev/null @@ -1,81 +0,0 @@ -[**preference**](../index.md) - -*** - -[tsky](../../index.md) / [preference](../index.md) / Preferences - -# Preferences - -## Constructors - -### new Preferences() - -```ts -new Preferences(instance): Preferences -``` - -#### Parameters - -##### instance - -`AppBskyNS` - -#### Returns - -[`Preferences`](Preferences.md) - -#### Defined in - -[preference.ts:8](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/preference.ts#L8) - -## Methods - -### get() - -```ts -get(options?): Promise -``` - -Get private preferences attached to the current account. Expected use is synchronization between multiple devices, and import/export during account migration. Requires auth. - -#### Parameters - -##### options? - -`CallOptions` - -#### Returns - -`Promise`\<`Preferences`\> - -#### Defined in - -[preference.ts:13](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/preference.ts#L13) - -*** - -### set() - -```ts -set(preferences, options?): Promise -``` - -Set the private preferences attached to the account. - -#### Parameters - -##### preferences - -`Preferences` - -##### options? - -`CallOptions` - -#### Returns - -`Promise`\<`void`\> - -#### Defined in - -[preference.ts:22](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/preference.ts#L22) diff --git a/docs/api/preference/index.md b/docs/api/preference/index.md deleted file mode 100644 index 1a40934..0000000 --- a/docs/api/preference/index.md +++ /dev/null @@ -1,15 +0,0 @@ -**preference** - -*** - -[tsky](../index.md) / preference - -# preference - -## Index - -### Classes - -| Class | Description | -| ------ | ------ | -| [Preferences](classes/Preferences.md) | - | diff --git a/docs/api/starterPack/classes/StarterPack.md b/docs/api/starterPack/classes/StarterPack.md deleted file mode 100644 index e27c8f8..0000000 --- a/docs/api/starterPack/classes/StarterPack.md +++ /dev/null @@ -1,132 +0,0 @@ -[**starterPack**](../index.md) - -*** - -[tsky](../../index.md) / [starterPack](../index.md) / StarterPack - -# StarterPack - -## Constructors - -### new StarterPack() - -```ts -new StarterPack(instance, uri): StarterPack -``` - -#### Parameters - -##### instance - -`AppBskyNS` - -##### uri - -`string` - -#### Returns - -[`StarterPack`](StarterPack.md) - -#### Defined in - -[starterPack.ts:10](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/starterPack.ts#L10) - -## Methods - -### about() - -```ts -about(options?): Promise -``` - -Gets a view of a starter pack. - -#### Parameters - -##### options? - -`CallOptions` - -#### Returns - -`Promise`\<`OutputSchema`\> - -#### Defined in - -[starterPack.ts:15](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/starterPack.ts#L15) - -*** - -### getMany() - -```ts -static getMany( - instance, - starterpacks, -options?): Promise -``` - -Get views for a list of starter packs. - -#### Parameters - -##### instance - -`AppBskyNS` - -##### starterpacks - -`string`[] - -##### options? - -`CallOptions` - -#### Returns - -`Promise`\<`OutputSchema`\> - -#### Defined in - -[starterPack.ts:52](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/starterPack.ts#L52) - -*** - -### search() - -```ts -static search( - instance, - query, - limit?, -options?): Paginator -``` - -Search for starter packs. - -#### Parameters - -##### instance - -`AppBskyNS` - -##### query - -`string` - -##### limit? - -`number` - -##### options? - -`CallOptions` - -#### Returns - -[`Paginator`](../../paginate/classes/Paginator.md)\<`OutputSchema`\> - -#### Defined in - -[starterPack.ts:29](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/starterPack.ts#L29) diff --git a/docs/api/starterPack/index.md b/docs/api/starterPack/index.md deleted file mode 100644 index c401ef0..0000000 --- a/docs/api/starterPack/index.md +++ /dev/null @@ -1,15 +0,0 @@ -**starterPack** - -*** - -[tsky](../index.md) / starterPack - -# starterPack - -## Index - -### Classes - -| Class | Description | -| ------ | ------ | -| [StarterPack](classes/StarterPack.md) | - | diff --git a/docs/api/typedoc-sidebar.json b/docs/api/typedoc-sidebar.json deleted file mode 100644 index 620a00d..0000000 --- a/docs/api/typedoc-sidebar.json +++ /dev/null @@ -1 +0,0 @@ -[{"text":"actor","link":"/api/actor/","collapsed":true,"items":[{"text":"Classes","collapsed":true,"items":[{"text":"Actor","link":"/api/actor/classes/Actor.md"},{"text":"BaseActor","link":"/api/actor/classes/BaseActor.md"},{"text":"User","link":"/api/actor/classes/User.md"}]}]},{"text":"feed","link":"/api/feed/","collapsed":true,"items":[{"text":"Classes","collapsed":true,"items":[{"text":"Feed","link":"/api/feed/classes/Feed.md"}]}]},{"text":"index","link":"/api/index/","collapsed":true,"items":[{"text":"Classes","collapsed":true,"items":[{"text":"TSky","link":"/api/index/classes/TSky.md"}]}]},{"text":"list","link":"/api/list/","collapsed":true,"items":[{"text":"Classes","collapsed":true,"items":[{"text":"BskyList","link":"/api/list/classes/BskyList.md"}]}]},{"text":"paginate","link":"/api/paginate/","collapsed":true,"items":[{"text":"Classes","collapsed":true,"items":[{"text":"Paginator","link":"/api/paginate/classes/Paginator.md"}]}]},{"text":"post","link":"/api/post/","collapsed":true,"items":[{"text":"Classes","collapsed":true,"items":[{"text":"Post","link":"/api/post/classes/Post.md"}]}]},{"text":"preference","link":"/api/preference/","collapsed":true,"items":[{"text":"Classes","collapsed":true,"items":[{"text":"Preferences","link":"/api/preference/classes/Preferences.md"}]}]},{"text":"starterPack","link":"/api/starterPack/","collapsed":true,"items":[{"text":"Classes","collapsed":true,"items":[{"text":"StarterPack","link":"/api/starterPack/classes/StarterPack.md"}]}]},{"text":"video","link":"/api/video/","collapsed":true,"items":[{"text":"Classes","collapsed":true,"items":[{"text":"Video","link":"/api/video/classes/Video.md"}]}]}] \ No newline at end of file diff --git a/docs/api/video/classes/Video.md b/docs/api/video/classes/Video.md deleted file mode 100644 index d9d0fe5..0000000 --- a/docs/api/video/classes/Video.md +++ /dev/null @@ -1,109 +0,0 @@ -[**video**](../index.md) - -*** - -[tsky](../../index.md) / [video](../index.md) / Video - -# Video - -## Constructors - -### new Video() - -```ts -new Video(instance): Video -``` - -#### Parameters - -##### instance - -`AppBskyNS` - -#### Returns - -[`Video`](Video.md) - -#### Defined in - -[video.ts:11](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/video.ts#L11) - -## Methods - -### limit() - -```ts -limit(options?): Promise -``` - -Get video upload limits for the authenticated user. - -#### Parameters - -##### options? - -`CallOptions` - -#### Returns - -`Promise`\<`OutputSchema`\> - -#### Defined in - -[video.ts:16](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/video.ts#L16) - -*** - -### status() - -```ts -status(jobId, options?): Promise -``` - -Get status details for a video processing job. - -#### Parameters - -##### jobId - -`string` - -##### options? - -`CallOptions` - -#### Returns - -`Promise`\<`JobStatus`\> - -#### Defined in - -[video.ts:25](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/video.ts#L25) - -*** - -### upload() - -```ts -upload(data, options?): Promise -``` - -Upload a video to be processed then stored on the PDS. - -#### Parameters - -##### data - -`InputSchema` - -##### options? - -`CallOptions` - -#### Returns - -`Promise`\<`JobStatus`\> - -#### Defined in - -[video.ts:34](https://github.com/taskylizard/tsky-fork-typedoc-pr/blob/a5370df6192d679fcbec429e409a79d61db0f356/packages/core/src/video.ts#L34) diff --git a/docs/api/video/index.md b/docs/api/video/index.md deleted file mode 100644 index 22b8e29..0000000 --- a/docs/api/video/index.md +++ /dev/null @@ -1,15 +0,0 @@ -**video** - -*** - -[tsky](../index.md) / video - -# video - -## Index - -### Classes - -| Class | Description | -| ------ | ------ | -| [Video](classes/Video.md) | - | From 259308fbb73c19cd315023224a14f80562f6e727 Mon Sep 17 00:00:00 2001 From: Anbraten Date: Sun, 1 Dec 2024 09:20:41 +0100 Subject: [PATCH 06/21] fix --- docs/.gitignore | 1 + docs/api/.gitignore | 2 -- docs/typedoc.json | 13 +++---------- 3 files changed, 4 insertions(+), 12 deletions(-) delete mode 100644 docs/api/.gitignore diff --git a/docs/.gitignore b/docs/.gitignore index be703ae..1354dac 100644 --- a/docs/.gitignore +++ b/docs/.gitignore @@ -1,2 +1,3 @@ .vitepress/cache/ .vitepress/dist/ +api/ diff --git a/docs/api/.gitignore b/docs/api/.gitignore deleted file mode 100644 index d6b7ef3..0000000 --- a/docs/api/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -* -!.gitignore diff --git a/docs/typedoc.json b/docs/typedoc.json index 652f678..4d22eba 100644 --- a/docs/typedoc.json +++ b/docs/typedoc.json @@ -1,19 +1,12 @@ { "$schema": "https://typedoc-plugin-markdown.org/schema.json", - "entryPoints": [ - "../packages/core" - ], - "plugin": [ - "typedoc-plugin-markdown", - "typedoc-vitepress-theme" - ], + "entryPoints": ["../packages/core"], + "plugin": ["typedoc-plugin-markdown", "typedoc-vitepress-theme"], "name": "Packages Example", "entryPointStrategy": "packages", "packageOptions": { "includeVersion": true, - "entryPoints": [ - "src/*.ts" - ] + "entryPoints": ["src/*.ts"] }, "basePath": "../packages/core/src", "readme": "none", From 8a284d7059c42c62f51680f198e6c9691e9df403 Mon Sep 17 00:00:00 2001 From: Anbraten Date: Sun, 1 Dec 2024 09:21:53 +0100 Subject: [PATCH 07/21] fix format --- docs/typedoc.json | 58 +++++++++++++++++++++++------------------------ 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/docs/typedoc.json b/docs/typedoc.json index 4d22eba..4440c7f 100644 --- a/docs/typedoc.json +++ b/docs/typedoc.json @@ -1,29 +1,29 @@ -{ - "$schema": "https://typedoc-plugin-markdown.org/schema.json", - "entryPoints": ["../packages/core"], - "plugin": ["typedoc-plugin-markdown", "typedoc-vitepress-theme"], - "name": "Packages Example", - "entryPointStrategy": "packages", - "packageOptions": { - "includeVersion": true, - "entryPoints": ["src/*.ts"] - }, - "basePath": "../packages/core/src", - "readme": "none", - "entryFileName": "index.md", - "mergeReadme": true, - "indexFormat": "table", - "useCodeBlocks": true, - "textContentMappings": { - "title.indexPage": "API Reference", - "title.memberPage": "{name}" - }, - "outputs": [ - { - "name": "markdown", - "path": "./api" - } - ], - "hidePageHeader": false, - "logLevel": "Verbose" -} +{ + "$schema": "https://typedoc-plugin-markdown.org/schema.json", + "entryPoints": ["../packages/core"], + "plugin": ["typedoc-plugin-markdown", "typedoc-vitepress-theme"], + "name": "Packages Example", + "entryPointStrategy": "packages", + "packageOptions": { + "includeVersion": true, + "entryPoints": ["src/*.ts"] + }, + "basePath": "../packages/core/src", + "readme": "none", + "entryFileName": "index.md", + "mergeReadme": true, + "indexFormat": "table", + "useCodeBlocks": true, + "textContentMappings": { + "title.indexPage": "API Reference", + "title.memberPage": "{name}" + }, + "outputs": [ + { + "name": "markdown", + "path": "./api" + } + ], + "hidePageHeader": false, + "logLevel": "Verbose" +} From 4c43616e2191d7e76f3e6d337b720cd6e2761fdc Mon Sep 17 00:00:00 2001 From: TAKAHASHI Shuuji Date: Sun, 19 Jan 2025 17:38:18 +0900 Subject: [PATCH 08/21] chore: update `pnpm-lock.yaml` --- pnpm-lock.yaml | 3873 ++++-------------------------------------------- 1 file changed, 268 insertions(+), 3605 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index e1af873..b9f7d96 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -8,33 +8,12 @@ importers: .: devDependencies: - '@antfu/eslint-config': - specifier: ^3.11.2 - version: 3.11.2(@typescript-eslint/utils@8.16.0(eslint@8.57.1)(typescript@5.7.2))(@vue/compiler-sfc@3.5.13)(eslint@8.57.1)(typescript@5.7.2)(vitest@2.1.6) '@biomejs/biome': specifier: ^1.9.4 version: 1.9.4 - '@eslint/js': - specifier: ^9.15.0 - version: 9.15.0 - eslint: - specifier: ^8.57.1 - version: 8.57.1 - eslint-plugin-import: - specifier: ^2.25.2 - version: 2.31.0(@typescript-eslint/parser@8.16.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1) - eslint-plugin-n: - specifier: '^15.0.0 || ^16.0.0 ' - version: 16.6.2(eslint@8.57.1) - eslint-plugin-promise: - specifier: ^6.0.0 - version: 6.6.0(eslint@8.57.1) nano-staged: specifier: ^0.8.0 version: 0.8.0 - typescript-eslint: - specifier: ^8.16.0 - version: 8.16.0(eslint@8.57.1)(typescript@5.7.2) docs: devDependencies: @@ -49,13 +28,16 @@ importers: version: 1.1.0(typedoc-plugin-markdown@4.3.0(typedoc@0.27.1(typescript@5.7.2))) vitepress: specifier: ^1.5.0 - version: 1.5.0(@algolia/client-search@5.15.0)(postcss@8.4.49)(search-insights@2.17.3)(typescript@5.7.2) + version: 1.5.0(@algolia/client-search@5.15.0)(@types/node@22.10.7)(postcss@8.4.49)(search-insights@2.17.3)(typescript@5.7.2) - packages/core: + packages/client: dependencies: - '@atproto/api': - specifier: ^0.13.18 - version: 0.13.18 + '@atcute/client': + specifier: ^2.0.6 + version: 2.0.7 + '@tsky/lexicons': + specifier: workspace:* + version: link:../lexicons devDependencies: globals: specifier: ^15.12.0 @@ -71,7 +53,50 @@ importers: version: 5.7.2 vitest: specifier: ^2.1.6 - version: 2.1.6 + version: 2.1.6(@types/node@22.10.7) + + packages/lex-cli: + dependencies: + clipanion: + specifier: 4.0.0-rc.4 + version: 4.0.0-rc.4(typanion@3.14.0) + picocolors: + specifier: ^1.1.1 + version: 1.1.1 + prettier: + specifier: ^3.3.3 + version: 3.4.2 + typanion: + specifier: ^3.14.0 + version: 3.14.0 + devDependencies: + '@types/node': + specifier: ^22.8.1 + version: 22.10.7 + typescript: + specifier: ^5.7.2 + version: 5.7.2 + + packages/lexicons: + devDependencies: + '@tsky/lex-cli': + specifier: workspace:* + version: link:../lex-cli + '@types/node': + specifier: ^22.10.1 + version: 22.10.7 + fast-glob: + specifier: ^3.3.2 + version: 3.3.2 + tar: + specifier: ^7.4.3 + version: 7.4.3 + tsx: + specifier: ^4.19.2 + version: 4.19.2 + typescript: + specifier: ^5.7.2 + version: 5.7.2 packages: @@ -147,76 +172,8 @@ packages: resolution: {integrity: sha512-b1jTpbFf9LnQHEJP5ddDJKE2sAlhYd7EVSOWgzo/27n/SfCoHfqD0VWntnWYD83PnOKvfe8auZ2+xCb0TXotrQ==} engines: {node: '>= 14.0.0'} - '@antfu/eslint-config@3.11.2': - resolution: {integrity: sha512-hoi2MnOdiKL8mIhpMtinwMrqVPq6QVbHPA+BuQD4pqE6yVLyYvjdLFiKApMsezAM+YofCsbhak2oY+JCiIyeNA==} - hasBin: true - peerDependencies: - '@eslint-react/eslint-plugin': ^1.5.8 - '@prettier/plugin-xml': ^3.4.1 - '@unocss/eslint-plugin': '>=0.50.0' - astro-eslint-parser: ^1.0.2 - eslint: ^9.10.0 - eslint-plugin-astro: ^1.2.0 - eslint-plugin-format: '>=0.1.0' - eslint-plugin-react-hooks: ^5.0.0 - eslint-plugin-react-refresh: ^0.4.4 - eslint-plugin-solid: ^0.14.3 - eslint-plugin-svelte: '>=2.35.1' - prettier-plugin-astro: ^0.14.0 - prettier-plugin-slidev: ^1.0.5 - svelte-eslint-parser: '>=0.37.0' - peerDependenciesMeta: - '@eslint-react/eslint-plugin': - optional: true - '@prettier/plugin-xml': - optional: true - '@unocss/eslint-plugin': - optional: true - astro-eslint-parser: - optional: true - eslint-plugin-astro: - optional: true - eslint-plugin-format: - optional: true - eslint-plugin-react-hooks: - optional: true - eslint-plugin-react-refresh: - optional: true - eslint-plugin-solid: - optional: true - eslint-plugin-svelte: - optional: true - prettier-plugin-astro: - optional: true - prettier-plugin-slidev: - optional: true - svelte-eslint-parser: - optional: true - - '@antfu/install-pkg@0.5.0': - resolution: {integrity: sha512-dKnk2xlAyC7rvTkpkHmu+Qy/2Zc3Vm/l8PtNyIOGDBtXPY3kThfU4ORNEp3V7SXw5XSOb+tOJaUYpfquPzL/Tg==} - - '@antfu/utils@0.7.10': - resolution: {integrity: sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww==} - - '@atproto/api@0.13.18': - resolution: {integrity: sha512-rrl5HhzGYWZ7fiC965TPBUOVItq9M4dxMb6qz8IvAVQliSkrJrKc7UD0QWL89QiiXaOBuX8w+4i5r4wrfBGddg==} - - '@atproto/common-web@0.3.1': - resolution: {integrity: sha512-N7wiTnus5vAr+lT//0y8m/FaHHLJ9LpGuEwkwDAeV3LCiPif4m/FS8x/QOYrx1PdZQwKso95RAPzCGWQBH5j6Q==} - - '@atproto/lexicon@0.4.3': - resolution: {integrity: sha512-lFVZXe1S1pJP0dcxvJuHP3r/a+EAIBwwU7jUK+r8iLhIja+ml6NmYv8KeFHmIJATh03spEQ9s02duDmFVdCoXg==} - - '@atproto/syntax@0.3.1': - resolution: {integrity: sha512-fzW0Mg1QUOVCWUD3RgEsDt6d1OZ6DdFmbKcDdbzUfh0t4rhtRAC05KbZYmxuMPWDAiJ4BbbQ5dkAc/mNypMXkw==} - - '@atproto/xrpc@0.6.4': - resolution: {integrity: sha512-9ZAJ8nsXTqC4XFyS0E1Wlg7bAvonhXQNQ3Ocs1L1LIwFLXvsw/4fNpIHXxvXvqTCVeyHLbImOnE9UiO1c/qIYA==} - - '@babel/code-frame@7.26.2': - resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==} - engines: {node: '>=6.9.0'} + '@atcute/client@2.0.7': + resolution: {integrity: sha512-bvNahrCGvhZw/EIx0HU/GOoKZEnUaAppbuZh7cu+VsOFA2tdFLnZJed9Hagh5Yz/eUX7QUh5NB4dRTRUdggSLQ==} '@babel/helper-string-parser@7.25.9': resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==} @@ -288,12 +245,6 @@ packages: cpu: [x64] os: [win32] - '@clack/core@0.3.5': - resolution: {integrity: sha512-5cfhQNH+1VQ2xLQlmzXMqUoiaH0lRBq9/CLW9lTyMbuKLC3+xEK01tHVvyut++mLOn5urSHmkm6I0Lg9MaJSTQ==} - - '@clack/prompts@0.8.2': - resolution: {integrity: sha512-6b9Ab2UiZwJYA9iMyboYyW9yJvAO9V753ZhS+DHKEjZRKAxPPOb7MXXu84lsPFG+vZt6FRFniZ8rXi+zCIw4yQ==} - '@docsearch/css@3.8.0': resolution: {integrity: sha512-pieeipSOW4sQ0+bE5UFC51AOZp9NGxg89wAlZ1BAQFaiRAGK1IKUaPQ0UGZeNctJXyqZ1UvBtOQh2HH+U5GtmA==} @@ -317,14 +268,6 @@ packages: search-insights: optional: true - '@es-joy/jsdoccomment@0.48.0': - resolution: {integrity: sha512-G6QUWIcC+KvSwXNsJyDTHvqUdNoAVJPPgkc3+Uk4WBKqZvoXhlvazOgm9aL0HwihJLQf0l+tOE2UFzXBqCqgDw==} - engines: {node: '>=16'} - - '@es-joy/jsdoccomment@0.49.0': - resolution: {integrity: sha512-xjZTSFgECpb9Ohuk5yMX5RhUEbfeQcuOp8IF60e+wyzWEF0M5xeSgqsfLtvPEX8BIyOX9saZqzuGPmZ8oWc+5Q==} - engines: {node: '>=16'} - '@esbuild/aix-ppc64@0.21.5': resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==} engines: {node: '>=12'} @@ -607,67 +550,9 @@ packages: cpu: [x64] os: [win32] - '@eslint-community/eslint-plugin-eslint-comments@4.4.1': - resolution: {integrity: sha512-lb/Z/MzbTf7CaVYM9WCFNQZ4L1yi3ev2fsFPF99h31ljhSEyUoyEsKsNWiU+qD1glbYTDJdqgyaLKtyTkkqtuQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 - - '@eslint-community/eslint-utils@4.4.1': - resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 - - '@eslint-community/regexpp@4.12.1': - resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==} - engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} - - '@eslint/compat@1.2.3': - resolution: {integrity: sha512-wlZhwlDFxkxIZ571aH0FoK4h4Vwx7P3HJx62Gp8hTc10bfpwT2x0nULuAHmQSJBOWPgPeVf+9YtnD4j50zVHmA==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - peerDependencies: - eslint: ^9.10.0 - peerDependenciesMeta: - eslint: - optional: true - - '@eslint/eslintrc@2.1.4': - resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - '@eslint/js@8.57.1': - resolution: {integrity: sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - '@eslint/js@9.15.0': - resolution: {integrity: sha512-tMTqrY+EzbXmKJR5ToI8lxu7jaN5EdmrBFJpQk5JmSlyLsx6o4t27r883K5xsLuCYCpfKBCGswMSWXsM+jB7lg==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - - '@eslint/markdown@6.2.1': - resolution: {integrity: sha512-cKVd110hG4ICHmWhIwZJfKmmJBvbiDWyrHODJknAtudKgZtlROGoLX9UEOA0o746zC0hCY4UV4vR+aOGW9S6JQ==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - - '@eslint/plugin-kit@0.2.3': - resolution: {integrity: sha512-2b/g5hRmpbb1o4GnTZax9N9m0FXzz9OV42ZzI4rDDMDuHUqigAiQCEWChBWCY4ztAGVRjoWT19v0yMmc5/L5kA==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@gerrit0/mini-shiki@1.24.0': resolution: {integrity: sha512-eopM3SyeUZQZSBu1VCV8/d1LtJXDd0aMpLjyWpGkjD6ux3sNwoLNeuEb5xmiWVfQvFeMUXa1WTjh06lqm3KETA==} - '@humanwhocodes/config-array@0.13.0': - resolution: {integrity: sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==} - engines: {node: '>=10.10.0'} - deprecated: Use @eslint/config-array instead - - '@humanwhocodes/module-importer@1.0.1': - resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} - engines: {node: '>=12.22'} - - '@humanwhocodes/object-schema@2.0.3': - resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==} - deprecated: Use @eslint/object-schema instead - '@iconify-json/simple-icons@1.2.13': resolution: {integrity: sha512-rRQjMoIt/kPfaD+fnBC9YZQpso3hkn8xPeadl+YWhscJ5SVUCdB9oTeR9VIpt+/5Yi8vEkh2UOWFPq4lz3ee2A==} @@ -678,6 +563,10 @@ packages: resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} engines: {node: '>=12'} + '@isaacs/fs-minipass@4.0.1': + resolution: {integrity: sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==} + engines: {node: '>=18.0.0'} + '@jridgewell/sourcemap-codec@1.5.0': resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} @@ -697,10 +586,6 @@ packages: resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} engines: {node: '>=14'} - '@pkgr/core@0.1.1': - resolution: {integrity: sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==} - engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} - '@rollup/plugin-alias@5.1.1': resolution: {integrity: sha512-PR9zDb+rOzkRb2VD+EuKB7UC41vU5DIwZ5qqCpk0KJudcWAyi8rvYOhS7+L5aZCspw1stTViLgN5v6FF1p5cgQ==} engines: {node: '>=14.0.0'} @@ -854,9 +739,6 @@ packages: cpu: [x64] os: [win32] - '@rtsao/scc@1.1.0': - resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==} - '@shikijs/core@1.24.0': resolution: {integrity: sha512-6pvdH0KoahMzr6689yh0QJ3rCgF4j1XsXRHNEeEN6M4xJTfQ6QPWrmHzIddotg+xPJUPEPzYzYCKzpYyhTI6Gw==} @@ -875,24 +757,12 @@ packages: '@shikijs/vscode-textmate@9.3.0': resolution: {integrity: sha512-jn7/7ky30idSkd/O5yDBfAnVt+JJpepofP/POZ1iMOxK59cOfqIgg/Dj0eFsjOTMw+4ycJN0uhZH/Eb0bs/EUA==} - '@stylistic/eslint-plugin@2.11.0': - resolution: {integrity: sha512-PNRHbydNG5EH8NK4c+izdJlxajIR6GxcUhzsYNRsn6Myep4dsZt0qFCz3rCPnkvgO5FYibDcMqgNHUT+zvjYZw==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - peerDependencies: - eslint: '>=8.40.0' - - '@types/debug@4.1.12': - resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} - '@types/estree@1.0.6': resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==} '@types/hast@3.0.4': resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==} - '@types/json5@0.0.29': - resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} - '@types/linkify-it@5.0.0': resolution: {integrity: sha512-sVDA58zAw4eWAffKOaQH5/5j3XeayukzDk+ewSsnv3p4yJEZHCCzMDiZM8e0OUrRvmpGZ85jf4yDHkHsgBNr9Q==} @@ -905,11 +775,8 @@ packages: '@types/mdurl@2.0.0': resolution: {integrity: sha512-RGdgjQUZba5p6QEFAVx2OGb8rQDL/cPRG7GiedRzMcJ1tYnUANBncjbSB1NRGwbvjcPeikRABz2nshyPk1bhWg==} - '@types/ms@0.7.34': - resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==} - - '@types/normalize-package-data@2.4.4': - resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} + '@types/node@22.10.7': + resolution: {integrity: sha512-V09KvXxFiutGp6B7XkpaDXlNadZxrzajcY50EuoLIpQ6WWYCSvf19lVIazzfIzQvhUN2HjX12spLojTnhuKlGg==} '@types/resolve@1.20.2': resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} @@ -920,68 +787,6 @@ packages: '@types/web-bluetooth@0.0.20': resolution: {integrity: sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==} - '@typescript-eslint/eslint-plugin@8.16.0': - resolution: {integrity: sha512-5YTHKV8MYlyMI6BaEG7crQ9BhSc8RxzshOReKwZwRWN0+XvvTOm+L/UYLCYxFpfwYuAAqhxiq4yae0CMFwbL7Q==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - peerDependencies: - '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0 - eslint: ^8.57.0 || ^9.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - - '@typescript-eslint/parser@8.16.0': - resolution: {integrity: sha512-D7DbgGFtsqIPIFMPJwCad9Gfi/hC0PWErRRHFnaCWoEDYi5tQUDiJCTmGUbBiLzjqAck4KcXt9Ayj0CNlIrF+w==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - peerDependencies: - eslint: ^8.57.0 || ^9.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - - '@typescript-eslint/scope-manager@8.16.0': - resolution: {integrity: sha512-mwsZWubQvBki2t5565uxF0EYvG+FwdFb8bMtDuGQLdCCnGPrDEDvm1gtfynuKlnpzeBRqdFCkMf9jg1fnAK8sg==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - - '@typescript-eslint/type-utils@8.16.0': - resolution: {integrity: sha512-IqZHGG+g1XCWX9NyqnI/0CX5LL8/18awQqmkZSl2ynn8F76j579dByc0jhfVSnSnhf7zv76mKBQv9HQFKvDCgg==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - peerDependencies: - eslint: ^8.57.0 || ^9.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - - '@typescript-eslint/types@8.16.0': - resolution: {integrity: sha512-NzrHj6thBAOSE4d9bsuRNMvk+BvaQvmY4dDglgkgGC0EW/tB3Kelnp3tAKH87GEwzoxgeQn9fNGRyFJM/xd+GQ==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - - '@typescript-eslint/typescript-estree@8.16.0': - resolution: {integrity: sha512-E2+9IzzXMc1iaBy9zmo+UYvluE3TW7bCGWSF41hVWUE01o8nzr1rvOQYSxelxr6StUvRcTMe633eY8mXASMaNw==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - - '@typescript-eslint/utils@8.16.0': - resolution: {integrity: sha512-C1zRy/mOL8Pj157GiX4kaw7iyRLKfJXBR3L82hk5kS/GyHcOFmy4YUq/zfZti72I9wnuQtA/+xzft4wCC8PJdA==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - peerDependencies: - eslint: ^8.57.0 || ^9.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - - '@typescript-eslint/visitor-keys@8.16.0': - resolution: {integrity: sha512-pq19gbaMOmFE3CbL0ZB8J8BFCo2ckfHBfaIsaOZgBIF4EoISJIdLX5xRhd0FGB0LlHReNRuzoJoMGpTjq8F2CQ==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@ungap/structured-clone@1.2.0': resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} @@ -992,19 +797,6 @@ packages: vite: ^5.0.0 || ^6.0.0 vue: ^3.2.25 - '@vitest/eslint-plugin@1.1.12': - resolution: {integrity: sha512-iv9K9fz9qRxBo9J/PGSMcLdOFIKqtFZ6THqSVG/jW8CJZFkIWLxPduCTXkbyG6FNKgL49fkv348nSgmfqCU6FA==} - peerDependencies: - '@typescript-eslint/utils': '>= 8.0' - eslint: '>= 8.57.0' - typescript: '>= 5.0.0' - vitest: '*' - peerDependenciesMeta: - typescript: - optional: true - vitest: - optional: true - '@vitest/expect@2.1.6': resolution: {integrity: sha512-9M1UR9CAmrhJOMoSwVnPh2rELPKhYo0m/CSgqw9PyStpxtkwhmdM6XYlXGKeYyERY1N6EIuzkQ7e3Lm1WKCoUg==} @@ -1122,19 +914,6 @@ packages: '@vueuse/shared@11.3.0': resolution: {integrity: sha512-P8gSSWQeucH5821ek2mn/ciCk+MS/zoRKqdQIM3bHq6p7GXDAJLmnRRKmF5F65sAVJIfzQlwR3aDzwCn10s8hA==} - acorn-jsx@5.3.2: - resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} - peerDependencies: - acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 - - acorn@8.14.0: - resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==} - engines: {node: '>=0.4.0'} - hasBin: true - - ajv@6.12.6: - resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} - algoliasearch@5.15.0: resolution: {integrity: sha512-Yf3Swz1s63hjvBVZ/9f2P1Uu48GjmjCN+Esxb6MAONMGtZB1fRX8/S1AhUTtsuTlcGovbYLxpHgc7wEzstDZBw==} engines: {node: '>= 14.0.0'} @@ -1155,60 +934,19 @@ packages: resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} engines: {node: '>=12'} - are-docs-informative@0.0.2: - resolution: {integrity: sha512-ixiS0nLNNG5jNQzgZJNoUpBKdo9yTYZMGJ+QgT2jmjR7G7+QHRCc4v6LQ3NgE7EBJq+o0ams3waJwkrlBom8Ig==} - engines: {node: '>=14'} - argparse@2.0.1: resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} - array-buffer-byte-length@1.0.1: - resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==} - engines: {node: '>= 0.4'} - - array-includes@3.1.8: - resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==} - engines: {node: '>= 0.4'} - - array.prototype.findlastindex@1.2.5: - resolution: {integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==} - engines: {node: '>= 0.4'} - - array.prototype.flat@1.3.2: - resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==} - engines: {node: '>= 0.4'} - - array.prototype.flatmap@1.3.2: - resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==} - engines: {node: '>= 0.4'} - - arraybuffer.prototype.slice@1.0.3: - resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==} - engines: {node: '>= 0.4'} - assertion-error@2.0.1: resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==} engines: {node: '>=12'} - available-typed-arrays@1.0.7: - resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} - engines: {node: '>= 0.4'} - - await-lock@2.2.2: - resolution: {integrity: sha512-aDczADvlvTGajTDjcjpJMqRkOF6Qdz3YbPZm/PyW6tKPkx2hlYBzxMhEywM/tU72HrVZjgl5VCdRuMlA7pZ8Gw==} - balanced-match@1.0.2: resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} birpc@0.2.19: resolution: {integrity: sha512-5WeXXAvTmitV1RqJFppT5QtUiz2p1mRSYU000Jkft5ZUCLJIk4uQriYNO50HknxKwM6jd8utNc66K1qGIwwWBQ==} - boolbase@1.0.0: - resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} - - brace-expansion@1.1.11: - resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} - brace-expansion@2.0.1: resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} @@ -1216,33 +954,10 @@ packages: resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} engines: {node: '>=8'} - browserslist@4.24.2: - resolution: {integrity: sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==} - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} - hasBin: true - - builtin-modules@3.3.0: - resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==} - engines: {node: '>=6'} - - builtins@5.1.0: - resolution: {integrity: sha512-SW9lzGTLvWTP1AY8xeAMZimqDrIaSdLQUcVr9DMef51niJ022Ri87SwRRKYm4A6iHfkPaiVUu/Duw2Wc4J7kKg==} - cac@6.7.14: resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} engines: {node: '>=8'} - call-bind@1.0.7: - resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==} - engines: {node: '>= 0.4'} - - callsites@3.1.0: - resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} - engines: {node: '>=6'} - - caniuse-lite@1.0.30001684: - resolution: {integrity: sha512-G1LRwLIQjBQoyq0ZJGqGIJUXzJ8irpbjHLpVRXDvBEScFJ9b17sgK6vlx0GAJFE21okD7zXl08rRRUfq6HdoEQ==} - ccount@2.0.1: resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} @@ -1250,34 +965,24 @@ packages: resolution: {integrity: sha512-aGtmf24DW6MLHHG5gCx4zaI3uBq3KRtxeVs0DjFH6Z0rDNbsvTxFASFvdj79pxjxZ8/5u3PIiN3IwEIQkiiuPw==} engines: {node: '>=12'} - chalk@4.1.2: - resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} - engines: {node: '>=10'} - character-entities-html4@2.1.0: resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==} character-entities-legacy@3.0.0: resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==} - character-entities@2.0.2: - resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==} - check-error@2.1.1: resolution: {integrity: sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==} engines: {node: '>= 16'} - ci-info@4.1.0: - resolution: {integrity: sha512-HutrvTNsF48wnxkzERIXOe5/mlcfFcbfCmwcg6CJnizbSue78AbDt+1cgl26zwn61WFxhcPykPfZrbqjGmBb4A==} - engines: {node: '>=8'} - - clean-regexp@1.0.0: - resolution: {integrity: sha512-GfisEZEJvzKrmGWkvfhgzcz/BllN1USeqD2V6tg14OAOgaCD2Z/PUEuxnAZ/nPvmaHRG7a8y77p1T/IRQ4D1Hw==} - engines: {node: '>=4'} + chownr@3.0.0: + resolution: {integrity: sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==} + engines: {node: '>=18'} - cliui@8.0.1: - resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} - engines: {node: '>=12'} + clipanion@4.0.0-rc.4: + resolution: {integrity: sha512-CXkMQxU6s9GklO/1f714dkKBMu1lopS1WFF0B8o4AxPykR1hpozxSiUZ5ZUeBjfPgCWqbcNOtZVFhB8Lkfp1+Q==} + peerDependencies: + typanion: '*' color-convert@2.0.1: resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} @@ -1289,58 +994,20 @@ packages: comma-separated-tokens@2.0.3: resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==} - comment-parser@1.4.1: - resolution: {integrity: sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg==} - engines: {node: '>= 12.0.0'} - commondir@1.0.1: resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} - concat-map@0.0.1: - resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} - - confbox@0.1.8: - resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==} - copy-anything@3.0.5: resolution: {integrity: sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w==} engines: {node: '>=12.13'} - core-js-compat@3.39.0: - resolution: {integrity: sha512-VgEUx3VwlExr5no0tXlBt+silBvhTryPwCXRI2Id1PN8WTKu7MreethvddqOubrYxkFdv/RnYrqlv1sFNAUelw==} - cross-spawn@7.0.6: resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} engines: {node: '>= 8'} - cssesc@3.0.0: - resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} - engines: {node: '>=4'} - hasBin: true - csstype@3.1.3: resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} - data-view-buffer@1.0.1: - resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==} - engines: {node: '>= 0.4'} - - data-view-byte-length@1.0.1: - resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==} - engines: {node: '>= 0.4'} - - data-view-byte-offset@1.0.0: - resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==} - engines: {node: '>= 0.4'} - - debug@3.2.7: - resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - debug@4.3.7: resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==} engines: {node: '>=6.0'} @@ -1350,28 +1017,14 @@ packages: supports-color: optional: true - decode-named-character-reference@1.0.2: - resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==} - deep-eql@5.0.2: resolution: {integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==} engines: {node: '>=6'} - deep-is@0.1.4: - resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} - deepmerge@4.3.1: resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} engines: {node: '>=0.10.0'} - define-data-property@1.1.4: - resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} - engines: {node: '>= 0.4'} - - define-properties@1.2.1: - resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} - engines: {node: '>= 0.4'} - dequal@2.0.3: resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} engines: {node: '>=6'} @@ -1379,20 +1032,9 @@ packages: devlop@1.1.0: resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} - doctrine@2.1.0: - resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} - engines: {node: '>=0.10.0'} - - doctrine@3.0.0: - resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} - engines: {node: '>=6.0.0'} - eastasianwidth@0.2.0: resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} - electron-to-chromium@1.5.67: - resolution: {integrity: sha512-nz88NNBsD7kQSAGGJyp8hS6xSPtWwqNogA0mjtc2nUYeEf3nURK9qpV18TuBdDmEDgVWotS8Wkzf+V52dSQ/LQ==} - emoji-regex-xs@1.0.0: resolution: {integrity: sha512-LRlerrMYoIDrT6jgpeZ2YYl/L8EulRTt5hQcYjy5AInh7HWXKimpqx68aknBFpGL2+/IcogTcaydJEgaTmOpDg==} @@ -1402,47 +1044,13 @@ packages: emoji-regex@9.2.2: resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} - enhanced-resolve@5.17.1: - resolution: {integrity: sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==} - engines: {node: '>=10.13.0'} - entities@4.5.0: resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} engines: {node: '>=0.12'} - error-ex@1.3.2: - resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} - - es-abstract@1.23.5: - resolution: {integrity: sha512-vlmniQ0WNPwXqA0BnmwV3Ng7HxiGlh6r5U6JcTMNx8OilcAGqVJBHJcPjqOMaczU9fRuRK5Px2BdVyPRnKMMVQ==} - engines: {node: '>= 0.4'} - - es-define-property@1.0.0: - resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==} - engines: {node: '>= 0.4'} - - es-errors@1.3.0: - resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} - engines: {node: '>= 0.4'} - es-module-lexer@1.5.4: resolution: {integrity: sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==} - es-object-atoms@1.0.0: - resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==} - engines: {node: '>= 0.4'} - - es-set-tostringtag@2.0.3: - resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==} - engines: {node: '>= 0.4'} - - es-shim-unscopables@1.0.2: - resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==} - - es-to-primitive@1.3.0: - resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==} - engines: {node: '>= 0.4'} - esbuild@0.21.5: resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==} engines: {node: '>=12'} @@ -1453,395 +1061,56 @@ packages: engines: {node: '>=18'} hasBin: true - escalade@3.2.0: - resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} - engines: {node: '>=6'} + estree-walker@2.0.2: + resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} - escape-string-regexp@1.0.5: - resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} - engines: {node: '>=0.8.0'} + estree-walker@3.0.3: + resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} - escape-string-regexp@4.0.0: - resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} - engines: {node: '>=10'} + expect-type@1.1.0: + resolution: {integrity: sha512-bFi65yM+xZgk+u/KRIpekdSYkTB5W1pEf0Lt8Q8Msh7b+eQ7LXVtIB1Bkm4fvclDEL1b2CZkMhv2mOeF8tMdkA==} + engines: {node: '>=12.0.0'} - escape-string-regexp@5.0.0: - resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} - engines: {node: '>=12'} + fast-glob@3.3.2: + resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} + engines: {node: '>=8.6.0'} - eslint-compat-utils@0.5.1: - resolution: {integrity: sha512-3z3vFexKIEnjHE3zCMRo6fn/e44U7T1khUjg+Hp0ZQMCigh28rALD0nPFBcGZuiLC5rLZa2ubQHDRln09JfU2Q==} - engines: {node: '>=12'} - peerDependencies: - eslint: '>=6.0.0' + fastq@1.17.1: + resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} - eslint-compat-utils@0.6.4: - resolution: {integrity: sha512-/u+GQt8NMfXO8w17QendT4gvO5acfxQsAKirAt0LVxDnr2N8YLCVbregaNc/Yhp7NM128DwCaRvr8PLDfeNkQw==} - engines: {node: '>=12'} - peerDependencies: - eslint: '>=6.0.0' + fill-range@7.1.1: + resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} + engines: {node: '>=8'} - eslint-config-flat-gitignore@0.3.0: - resolution: {integrity: sha512-0Ndxo4qGhcewjTzw52TK06Mc00aDtHNTdeeW2JfONgDcLkRO/n/BteMRzNVpLQYxdCC/dFEilfM9fjjpGIJ9Og==} - peerDependencies: - eslint: ^9.5.0 + focus-trap@7.6.2: + resolution: {integrity: sha512-9FhUxK1hVju2+AiQIDJ5Dd//9R2n2RAfJ0qfhF4IHGHgcoEUTMpbTeG/zbEuwaiYXfuAH6XE0/aCyxDdRM+W5w==} - eslint-flat-config-utils@0.4.0: - resolution: {integrity: sha512-kfd5kQZC+BMO0YwTol6zxjKX1zAsk8JfSAopbKjKqmENTJcew+yBejuvccAg37cvOrN0Mh+DVbeyznuNWEjt4A==} + foreground-child@3.3.0: + resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==} + engines: {node: '>=14'} - eslint-import-resolver-node@0.3.9: - resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} + fsevents@2.3.3: + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] - eslint-json-compat-utils@0.2.1: - resolution: {integrity: sha512-YzEodbDyW8DX8bImKhAcCeu/L31Dd/70Bidx2Qex9OFUtgzXLqtfWL4Hr5fM/aCCB8QUZLuJur0S9k6UfgFkfg==} - engines: {node: '>=12'} - peerDependencies: - '@eslint/json': '*' - eslint: '*' - jsonc-eslint-parser: ^2.4.0 - peerDependenciesMeta: - '@eslint/json': - optional: true + function-bind@1.1.2: + resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} - eslint-merge-processors@0.1.0: - resolution: {integrity: sha512-IvRXXtEajLeyssvW4wJcZ2etxkR9mUf4zpNwgI+m/Uac9RfXHskuJefkHUcawVzePnd6xp24enp5jfgdHzjRdQ==} - peerDependencies: - eslint: '*' + get-tsconfig@4.8.1: + resolution: {integrity: sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==} - eslint-module-utils@2.12.0: - resolution: {integrity: sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==} - engines: {node: '>=4'} - peerDependencies: - '@typescript-eslint/parser': '*' - eslint: '*' - eslint-import-resolver-node: '*' - eslint-import-resolver-typescript: '*' - eslint-import-resolver-webpack: '*' - peerDependenciesMeta: - '@typescript-eslint/parser': - optional: true - eslint: - optional: true - eslint-import-resolver-node: - optional: true - eslint-import-resolver-typescript: - optional: true - eslint-import-resolver-webpack: - optional: true + glob-parent@5.1.2: + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} + engines: {node: '>= 6'} - eslint-plugin-antfu@2.7.0: - resolution: {integrity: sha512-gZM3jq3ouqaoHmUNszb1Zo2Ux7RckSvkGksjLWz9ipBYGSv1EwwBETN6AdiUXn+RpVHXTbEMPAPlXJazcA6+iA==} - peerDependencies: - eslint: '*' + glob@10.4.5: + resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==} + hasBin: true - eslint-plugin-command@0.2.6: - resolution: {integrity: sha512-T0bHZ1oblW1xUHUVoBKZJR2osSNNGkfZuK4iqboNwuNS/M7tdp3pmURaJtTi/XDzitxaQ02lvOdFH0mUd5QLvQ==} - peerDependencies: - eslint: '*' - - eslint-plugin-es-x@7.8.0: - resolution: {integrity: sha512-7Ds8+wAAoV3T+LAKeu39Y5BzXCrGKrcISfgKEqTS4BDN8SFEDQd0S43jiQ8vIa3wUKD07qitZdfzlenSi8/0qQ==} - engines: {node: ^14.18.0 || >=16.0.0} - peerDependencies: - eslint: '>=8' - - eslint-plugin-import-x@4.4.3: - resolution: {integrity: sha512-QBprHvhLsfDhP++2T1NnjsOUt6bLDX3NMHaYwAB1FD3xmYTkdFH+HS1OamGhz28jLkRyIZa6UNAzTxbHnJwz5w==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - peerDependencies: - eslint: ^8.57.0 || ^9.0.0 - - eslint-plugin-import@2.31.0: - resolution: {integrity: sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==} - engines: {node: '>=4'} - peerDependencies: - '@typescript-eslint/parser': '*' - eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9 - peerDependenciesMeta: - '@typescript-eslint/parser': - optional: true - - eslint-plugin-jsdoc@50.6.0: - resolution: {integrity: sha512-tCNp4fR79Le3dYTPB0dKEv7yFyvGkUCa+Z3yuTrrNGGOxBlXo9Pn0PEgroOZikUQOGjxoGMVKNjrOHcYEdfszg==} - engines: {node: '>=18'} - peerDependencies: - eslint: ^7.0.0 || ^8.0.0 || ^9.0.0 - - eslint-plugin-jsonc@2.18.2: - resolution: {integrity: sha512-SDhJiSsWt3nItl/UuIv+ti4g3m4gpGkmnUJS9UWR3TrpyNsIcnJoBRD7Kof6cM4Rk3L0wrmY5Tm3z7ZPjR2uGg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: '>=6.0.0' - - eslint-plugin-n@16.6.2: - resolution: {integrity: sha512-6TyDmZ1HXoFQXnhCTUjVFULReoBPOAjpuiKELMkeP40yffI/1ZRO+d9ug/VC6fqISo2WkuIBk3cvuRPALaWlOQ==} - engines: {node: '>=16.0.0'} - peerDependencies: - eslint: '>=7.0.0' - - eslint-plugin-n@17.14.0: - resolution: {integrity: sha512-maxPLMEA0rPmRpoOlxEclKng4UpDe+N5BJS4t24I3UKnN109Qcivnfs37KMy84G0af3bxjog5lKctP5ObsvcTA==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - peerDependencies: - eslint: '>=8.23.0' - - eslint-plugin-no-only-tests@3.3.0: - resolution: {integrity: sha512-brcKcxGnISN2CcVhXJ/kEQlNa0MEfGRtwKtWA16SkqXHKitaKIMrfemJKLKX1YqDU5C/5JY3PvZXd5jEW04e0Q==} - engines: {node: '>=5.0.0'} - - eslint-plugin-perfectionist@4.1.2: - resolution: {integrity: sha512-YjXPWB/rKe/gPUsyuxw75wTUrzN5MuJnRV0PH9NoonFvgcdVIXk551mkBKPr59nRZCbu7S3dFHwfo4gA42DB2w==} - engines: {node: ^18.0.0 || >=20.0.0} - peerDependencies: - eslint: '>=8.0.0' - - eslint-plugin-promise@6.6.0: - resolution: {integrity: sha512-57Zzfw8G6+Gq7axm2Pdo3gW/Rx3h9Yywgn61uE/3elTCOePEHVrn2i5CdfBwA1BLK0Q0WqctICIUSqXZW/VprQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^7.0.0 || ^8.0.0 || ^9.0.0 - - eslint-plugin-regexp@2.7.0: - resolution: {integrity: sha512-U8oZI77SBtH8U3ulZ05iu0qEzIizyEDXd+BWHvyVxTOjGwcDcvy/kEpgFG4DYca2ByRLiVPFZ2GeH7j1pdvZTA==} - engines: {node: ^18 || >=20} - peerDependencies: - eslint: '>=8.44.0' - - eslint-plugin-toml@0.11.1: - resolution: {integrity: sha512-Y1WuMSzfZpeMIrmlP1nUh3kT8p96mThIq4NnHrYUhg10IKQgGfBZjAWnrg9fBqguiX4iFps/x/3Hb5TxBisfdw==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: '>=6.0.0' - - eslint-plugin-unicorn@56.0.1: - resolution: {integrity: sha512-FwVV0Uwf8XPfVnKSGpMg7NtlZh0G0gBarCaFcMUOoqPxXryxdYxTRRv4kH6B9TFCVIrjRXG+emcxIk2ayZilog==} - engines: {node: '>=18.18'} - peerDependencies: - eslint: '>=8.56.0' - - eslint-plugin-unused-imports@4.1.4: - resolution: {integrity: sha512-YptD6IzQjDardkl0POxnnRBhU1OEePMV0nd6siHaRBbd+lyh6NAhFEobiznKU7kTsSsDeSD62Pe7kAM1b7dAZQ==} - peerDependencies: - '@typescript-eslint/eslint-plugin': ^8.0.0-0 || ^7.0.0 || ^6.0.0 || ^5.0.0 - eslint: ^9.0.0 || ^8.0.0 - peerDependenciesMeta: - '@typescript-eslint/eslint-plugin': - optional: true - - eslint-plugin-vue@9.31.0: - resolution: {integrity: sha512-aYMUCgivhz1o4tLkRHj5oq9YgYPM4/EJc0M7TAKRLCUA5OYxRLAhYEVD2nLtTwLyixEFI+/QXSvKU9ESZFgqjQ==} - engines: {node: ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 - - eslint-plugin-yml@1.15.0: - resolution: {integrity: sha512-leC8APYVOsKyWUlvRwVhewytK5wS70BfMqIaUplFstRfzCoVp0YoEroV4cUEvQrBj93tQ3M9LcjO/ewr6D4kjA==} - engines: {node: ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: '>=6.0.0' - - eslint-processor-vue-blocks@0.1.2: - resolution: {integrity: sha512-PfpJ4uKHnqeL/fXUnzYkOax3aIenlwewXRX8jFinA1a2yCFnLgMuiH3xvCgvHHUlV2xJWQHbCTdiJWGwb3NqpQ==} - peerDependencies: - '@vue/compiler-sfc': ^3.3.0 - eslint: ^8.50.0 || ^9.0.0 - - eslint-scope@7.2.2: - resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - eslint-visitor-keys@3.4.3: - resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - eslint-visitor-keys@4.2.0: - resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - - eslint@8.57.1: - resolution: {integrity: sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options. - hasBin: true - - espree@10.3.0: - resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - - espree@9.6.1: - resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - esquery@1.6.0: - resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==} - engines: {node: '>=0.10'} - - esrecurse@4.3.0: - resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} - engines: {node: '>=4.0'} - - estraverse@5.3.0: - resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} - engines: {node: '>=4.0'} - - estree-walker@2.0.2: - resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} - - estree-walker@3.0.3: - resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} - - esutils@2.0.3: - resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} - engines: {node: '>=0.10.0'} - - expect-type@1.1.0: - resolution: {integrity: sha512-bFi65yM+xZgk+u/KRIpekdSYkTB5W1pEf0Lt8Q8Msh7b+eQ7LXVtIB1Bkm4fvclDEL1b2CZkMhv2mOeF8tMdkA==} - engines: {node: '>=12.0.0'} - - fast-deep-equal@3.1.3: - resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} - - fast-glob@3.3.2: - resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} - engines: {node: '>=8.6.0'} - - fast-json-stable-stringify@2.1.0: - resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} - - fast-levenshtein@2.0.6: - resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} - - fastq@1.17.1: - resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} - - file-entry-cache@6.0.1: - resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} - engines: {node: ^10.12.0 || >=12.0.0} - - fill-range@7.1.1: - resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} - engines: {node: '>=8'} - - find-up-simple@1.0.0: - resolution: {integrity: sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw==} - engines: {node: '>=18'} - - find-up@4.1.0: - resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} - engines: {node: '>=8'} - - find-up@5.0.0: - resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} - engines: {node: '>=10'} - - flat-cache@3.2.0: - resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} - engines: {node: ^10.12.0 || >=12.0.0} - - flatted@3.3.2: - resolution: {integrity: sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==} - - focus-trap@7.6.2: - resolution: {integrity: sha512-9FhUxK1hVju2+AiQIDJ5Dd//9R2n2RAfJ0qfhF4IHGHgcoEUTMpbTeG/zbEuwaiYXfuAH6XE0/aCyxDdRM+W5w==} - - for-each@0.3.3: - resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} - - foreground-child@3.3.0: - resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==} - engines: {node: '>=14'} - - fs.realpath@1.0.0: - resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} - - fsevents@2.3.3: - resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} - engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} - os: [darwin] - - function-bind@1.1.2: - resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} - - function.prototype.name@1.1.6: - resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} - engines: {node: '>= 0.4'} - - functions-have-names@1.2.3: - resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} - - get-caller-file@2.0.5: - resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} - engines: {node: 6.* || 8.* || >= 10.*} - - get-intrinsic@1.2.4: - resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==} - engines: {node: '>= 0.4'} - - get-symbol-description@1.0.2: - resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==} - engines: {node: '>= 0.4'} - - get-tsconfig@4.8.1: - resolution: {integrity: sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==} - - glob-parent@5.1.2: - resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} - engines: {node: '>= 6'} - - glob-parent@6.0.2: - resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} - engines: {node: '>=10.13.0'} - - glob@10.4.5: - resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==} - hasBin: true - - glob@7.2.3: - resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} - deprecated: Glob versions prior to v9 are no longer supported - - globals@13.24.0: - resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} - engines: {node: '>=8'} - - globals@15.12.0: - resolution: {integrity: sha512-1+gLErljJFhbOVyaetcwJiJ4+eLe45S2E7P5UiZ9xGfeq3ATQf5DOv9G7MH3gGbKQLkzmNh2DxfZwLdw+j6oTQ==} - engines: {node: '>=18'} - - globalthis@1.0.4: - resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} - engines: {node: '>= 0.4'} - - gopd@1.0.1: - resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} - - graceful-fs@4.2.11: - resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} - - graphemer@1.4.0: - resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} - - has-bigints@1.0.2: - resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} - - has-flag@4.0.0: - resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} - engines: {node: '>=8'} - - has-property-descriptors@1.0.2: - resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} - - has-proto@1.0.3: - resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==} - engines: {node: '>= 0.4'} - - has-symbols@1.0.3: - resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} - engines: {node: '>= 0.4'} - - has-tostringtag@1.0.2: - resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} - engines: {node: '>= 0.4'} + globals@15.12.0: + resolution: {integrity: sha512-1+gLErljJFhbOVyaetcwJiJ4+eLe45S2E7P5UiZ9xGfeq3ATQf5DOv9G7MH3gGbKQLkzmNh2DxfZwLdw+j6oTQ==} + engines: {node: '>=18'} hasown@2.0.2: resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} @@ -1856,248 +1125,48 @@ packages: hookable@5.5.3: resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==} - hosted-git-info@2.8.9: - resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} - html-void-elements@3.0.0: resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==} - ignore@5.3.2: - resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} - engines: {node: '>= 4'} - - import-fresh@3.3.0: - resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} - engines: {node: '>=6'} - - imurmurhash@0.1.4: - resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} - engines: {node: '>=0.8.19'} - - indent-string@4.0.0: - resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} - engines: {node: '>=8'} - - inflight@1.0.6: - resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} - deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. - - inherits@2.0.4: - resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} - - internal-slot@1.0.7: - resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==} - engines: {node: '>= 0.4'} - - is-array-buffer@3.0.4: - resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==} - engines: {node: '>= 0.4'} - - is-arrayish@0.2.1: - resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} - - is-async-function@2.0.0: - resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==} - engines: {node: '>= 0.4'} - - is-bigint@1.0.4: - resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} - - is-boolean-object@1.1.2: - resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} - engines: {node: '>= 0.4'} - - is-builtin-module@3.2.1: - resolution: {integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==} - engines: {node: '>=6'} - - is-callable@1.2.7: - resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} - engines: {node: '>= 0.4'} - is-core-module@2.15.1: resolution: {integrity: sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==} engines: {node: '>= 0.4'} - is-data-view@1.0.1: - resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==} - engines: {node: '>= 0.4'} - - is-date-object@1.0.5: - resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} - engines: {node: '>= 0.4'} - is-extglob@2.1.1: resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} engines: {node: '>=0.10.0'} - is-finalizationregistry@1.1.0: - resolution: {integrity: sha512-qfMdqbAQEwBw78ZyReKnlA8ezmPdb9BemzIIip/JkjaZUhitfXDkkr+3QTboW0JrSXT1QWyYShpvnNHGZ4c4yA==} - engines: {node: '>= 0.4'} - is-fullwidth-code-point@3.0.0: resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} engines: {node: '>=8'} - is-generator-function@1.0.10: - resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==} - engines: {node: '>= 0.4'} - is-glob@4.0.3: resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} engines: {node: '>=0.10.0'} - is-map@2.0.3: - resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} - engines: {node: '>= 0.4'} - is-module@1.0.0: resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==} - is-negative-zero@2.0.3: - resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==} - engines: {node: '>= 0.4'} - - is-number-object@1.0.7: - resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} - engines: {node: '>= 0.4'} - is-number@7.0.0: resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} engines: {node: '>=0.12.0'} - is-path-inside@3.0.3: - resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} - engines: {node: '>=8'} - is-reference@1.2.1: resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==} - is-regex@1.1.4: - resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} - engines: {node: '>= 0.4'} - - is-set@2.0.3: - resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==} - engines: {node: '>= 0.4'} - - is-shared-array-buffer@1.0.3: - resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==} - engines: {node: '>= 0.4'} - - is-string@1.0.7: - resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} - engines: {node: '>= 0.4'} - - is-symbol@1.0.4: - resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} - engines: {node: '>= 0.4'} - - is-typed-array@1.1.13: - resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==} - engines: {node: '>= 0.4'} - - is-weakmap@2.0.2: - resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==} - engines: {node: '>= 0.4'} - - is-weakref@1.0.2: - resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} - - is-weakset@2.0.3: - resolution: {integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==} - engines: {node: '>= 0.4'} - is-what@4.1.16: resolution: {integrity: sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A==} engines: {node: '>=12.13'} - isarray@2.0.5: - resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} - isexe@2.0.0: resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} - iso-datestring-validator@2.2.2: - resolution: {integrity: sha512-yLEMkBbLZTlVQqOnQ4FiMujR6T4DEcCb1xizmvXS+OxuhwcbtynoosRzdMA69zZCShCNAbi+gJ71FxZBBXx1SA==} - jackspeak@3.4.3: resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==} - js-tokens@4.0.0: - resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} - - js-yaml@4.1.0: - resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} - hasBin: true - - jsdoc-type-pratt-parser@4.1.0: - resolution: {integrity: sha512-Hicd6JK5Njt2QB6XYFS7ok9e37O8AYk3jTcppG4YVQnYjOemymvTcmc7OWsmq/Qqj5TdRFO5/x/tIPmBeRtGHg==} - engines: {node: '>=12.0.0'} - - jsesc@0.5.0: - resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} - hasBin: true - - jsesc@3.0.2: - resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==} - engines: {node: '>=6'} - hasBin: true - - json-buffer@3.0.1: - resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} - - json-parse-even-better-errors@2.3.1: - resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} - - json-schema-traverse@0.4.1: - resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} - - json-stable-stringify-without-jsonify@1.0.1: - resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} - - json5@1.0.2: - resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} - hasBin: true - - jsonc-eslint-parser@2.4.0: - resolution: {integrity: sha512-WYDyuc/uFcGp6YtM2H0uKmUwieOuzeE/5YocFJLnLfclZ4inf3mRn8ZVy1s7Hxji7Jxm6Ss8gqpexD/GlKoGgg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - keyv@4.5.4: - resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} - - levn@0.4.1: - resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} - engines: {node: '>= 0.8.0'} - - lines-and-columns@1.2.4: - resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} - linkify-it@5.0.0: resolution: {integrity: sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==} - local-pkg@0.5.1: - resolution: {integrity: sha512-9rrA30MRRP3gBD3HTGnC6cDFpaE1kVDWxWgqWJUN0RvDNAo+Nz/9GxB+nHOH0ifbVFy0hSA1V6vFDvnx54lTEQ==} - engines: {node: '>=14'} - - locate-path@5.0.0: - resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} - engines: {node: '>=8'} - - locate-path@6.0.0: - resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} - engines: {node: '>=10'} - - lodash.merge@4.6.2: - resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} - - lodash@4.17.21: - resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} - - longest-streak@3.1.0: - resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} - loupe@3.1.2: resolution: {integrity: sha512-23I4pFZHmAemUnz8WZXbYRSKYj801VDaNv9ETuMh7IrMc7VuVVSo+Z9iLE3ni30+U48iDWfi30d3twAXBYmnCg==} @@ -2117,45 +1186,9 @@ packages: resolution: {integrity: sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==} hasBin: true - markdown-table@3.0.4: - resolution: {integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==} - - mdast-util-find-and-replace@3.0.1: - resolution: {integrity: sha512-SG21kZHGC3XRTSUhtofZkBzZTJNM5ecCi0SK2IMKmSXR8vO3peL+kb1O0z7Zl83jKtutG4k5Wv/W7V3/YHvzPA==} - - mdast-util-from-markdown@2.0.2: - resolution: {integrity: sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==} - - mdast-util-gfm-autolink-literal@2.0.1: - resolution: {integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==} - - mdast-util-gfm-footnote@2.0.0: - resolution: {integrity: sha512-5jOT2boTSVkMnQ7LTrd6n/18kqwjmuYqo7JUPe+tRCY6O7dAuTFMtTPauYYrMPpox9hlN0uOx/FL8XvEfG9/mQ==} - - mdast-util-gfm-strikethrough@2.0.0: - resolution: {integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==} - - mdast-util-gfm-table@2.0.0: - resolution: {integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==} - - mdast-util-gfm-task-list-item@2.0.0: - resolution: {integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==} - - mdast-util-gfm@3.0.0: - resolution: {integrity: sha512-dgQEX5Amaq+DuUqf26jJqSK9qgixgd6rYDHAv4aTBuA92cTknZlKpPfa86Z/s8Dj8xsAQpFfBmPUHWJBWqS4Bw==} - - mdast-util-phrasing@4.1.0: - resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==} - mdast-util-to-hast@13.2.0: resolution: {integrity: sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==} - mdast-util-to-markdown@2.1.2: - resolution: {integrity: sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==} - - mdast-util-to-string@4.0.0: - resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==} - mdurl@2.0.0: resolution: {integrity: sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==} @@ -2163,108 +1196,29 @@ packages: resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} engines: {node: '>= 8'} - micromark-core-commonmark@2.0.2: - resolution: {integrity: sha512-FKjQKbxd1cibWMM1P9N+H8TwlgGgSkWZMmfuVucLCHaYqeSvJ0hFeHsIa65pA2nYbes0f8LDHPMrd9X7Ujxg9w==} - - micromark-extension-gfm-autolink-literal@2.1.0: - resolution: {integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==} + micromark-util-character@2.1.1: + resolution: {integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==} - micromark-extension-gfm-footnote@2.1.0: - resolution: {integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==} + micromark-util-encode@2.0.1: + resolution: {integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==} - micromark-extension-gfm-strikethrough@2.1.0: - resolution: {integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==} + micromark-util-sanitize-uri@2.0.1: + resolution: {integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==} - micromark-extension-gfm-table@2.1.0: - resolution: {integrity: sha512-Ub2ncQv+fwD70/l4ou27b4YzfNaCJOvyX4HxXU15m7mpYY+rjuWzsLIPZHJL253Z643RpbcP1oeIJlQ/SKW67g==} + micromark-util-symbol@2.0.1: + resolution: {integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==} - micromark-extension-gfm-tagfilter@2.0.0: - resolution: {integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==} + micromark-util-types@2.0.1: + resolution: {integrity: sha512-534m2WhVTddrcKVepwmVEVnUAmtrx9bfIjNoQHRqfnvdaHQiFytEhJoTgpWJvDEXCO5gLTQh3wYC1PgOJA4NSQ==} - micromark-extension-gfm-task-list-item@2.1.0: - resolution: {integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==} - - micromark-extension-gfm@3.0.0: - resolution: {integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==} - - micromark-factory-destination@2.0.1: - resolution: {integrity: sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==} - - micromark-factory-label@2.0.1: - resolution: {integrity: sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==} - - micromark-factory-space@2.0.1: - resolution: {integrity: sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==} - - micromark-factory-title@2.0.1: - resolution: {integrity: sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==} - - micromark-factory-whitespace@2.0.1: - resolution: {integrity: sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==} - - micromark-util-character@2.1.1: - resolution: {integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==} - - micromark-util-chunked@2.0.1: - resolution: {integrity: sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==} - - micromark-util-classify-character@2.0.1: - resolution: {integrity: sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==} - - micromark-util-combine-extensions@2.0.1: - resolution: {integrity: sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==} - - micromark-util-decode-numeric-character-reference@2.0.2: - resolution: {integrity: sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==} - - micromark-util-decode-string@2.0.1: - resolution: {integrity: sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==} - - micromark-util-encode@2.0.1: - resolution: {integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==} - - micromark-util-html-tag-name@2.0.1: - resolution: {integrity: sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==} - - micromark-util-normalize-identifier@2.0.1: - resolution: {integrity: sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==} - - micromark-util-resolve-all@2.0.1: - resolution: {integrity: sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==} - - micromark-util-sanitize-uri@2.0.1: - resolution: {integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==} - - micromark-util-subtokenize@2.0.3: - resolution: {integrity: sha512-VXJJuNxYWSoYL6AJ6OQECCFGhIU2GGHMw8tahogePBrjkG8aCCas3ibkp7RnVOSTClg2is05/R7maAhF1XyQMg==} - - micromark-util-symbol@2.0.1: - resolution: {integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==} - - micromark-util-types@2.0.1: - resolution: {integrity: sha512-534m2WhVTddrcKVepwmVEVnUAmtrx9bfIjNoQHRqfnvdaHQiFytEhJoTgpWJvDEXCO5gLTQh3wYC1PgOJA4NSQ==} - - micromark@4.0.1: - resolution: {integrity: sha512-eBPdkcoCNvYcxQOAKAlceo5SNdzZWfF+FcSupREAzdAh9rRmE239CEQAiTwIgblwnoM8zzj35sZ5ZwvSEOF6Kw==} - - micromatch@4.0.8: - resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} - engines: {node: '>=8.6'} - - min-indent@1.0.1: - resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} - engines: {node: '>=4'} - - minimatch@3.1.2: - resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + micromatch@4.0.8: + resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} + engines: {node: '>=8.6'} minimatch@9.0.5: resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} engines: {node: '>=16 || 14 >=14.17'} - minimist@1.2.8: - resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} - minipass@7.1.2: resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} engines: {node: '>=16 || 14 >=14.17'} @@ -2272,18 +1226,21 @@ packages: minisearch@7.1.1: resolution: {integrity: sha512-b3YZEYCEH4EdCAtYP7OlDyx7FdPwNzuNwLQ34SfJpM9dlbBZzeXndGavTrC+VCiRWomL21SWfMc6SCKO/U2ZNw==} + minizlib@3.0.1: + resolution: {integrity: sha512-umcy022ILvb5/3Djuu8LWeqUa8D68JaBzlttKeMWen48SjabqS3iY5w/vzeMzMUNhLDifyhbOwKDSznB1vvrwg==} + engines: {node: '>= 18'} + mitt@3.0.1: resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==} - mlly@1.7.3: - resolution: {integrity: sha512-xUsx5n/mN0uQf4V548PKQ+YShA4/IW0KI1dZhrNrPCLG+xizETbHTkOa1f8/xut9JRPp8kQuMnz0oqwkTiLo/A==} + mkdirp@3.0.1: + resolution: {integrity: sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==} + engines: {node: '>=10'} + hasBin: true ms@2.1.3: resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} - multiformats@9.9.0: - resolution: {integrity: sha512-HoMUjhH9T8DDBNT+6xzkrd9ga/XiBI4xLr58LJACwK6G3HTOPeMz4nB4KJs33L2BelrIJa7P0VuNaVF3hMYfjg==} - nano-staged@0.8.0: resolution: {integrity: sha512-QSEqPGTCJbkHU2yLvfY6huqYPjdBrOaTMKatO1F8nCSrkQGXeKwtCiCnsdxnuMhbg3DTVywKaeWLGCE5oJpq0g==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} @@ -2294,106 +1251,12 @@ packages: engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} hasBin: true - natural-compare@1.4.0: - resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} - - natural-orderby@5.0.0: - resolution: {integrity: sha512-kKHJhxwpR/Okycz4HhQKKlhWe4ASEfPgkSWNmKFHd7+ezuQlxkA5cM3+XkBPvm1gmHen3w53qsYAv+8GwRrBlg==} - engines: {node: '>=18'} - - node-releases@2.0.18: - resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==} - - normalize-package-data@2.5.0: - resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} - - nth-check@2.1.1: - resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} - - object-inspect@1.13.3: - resolution: {integrity: sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==} - engines: {node: '>= 0.4'} - - object-keys@1.1.1: - resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} - engines: {node: '>= 0.4'} - - object.assign@4.1.5: - resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} - engines: {node: '>= 0.4'} - - object.fromentries@2.0.8: - resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==} - engines: {node: '>= 0.4'} - - object.groupby@1.0.3: - resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==} - engines: {node: '>= 0.4'} - - object.values@1.2.0: - resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==} - engines: {node: '>= 0.4'} - - once@1.4.0: - resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} - oniguruma-to-es@0.7.0: resolution: {integrity: sha512-HRaRh09cE0gRS3+wi2zxekB+I5L8C/gN60S+vb11eADHUaB/q4u8wGGOX3GvwvitG8ixaeycZfeoyruKQzUgNg==} - optionator@0.9.4: - resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} - engines: {node: '>= 0.8.0'} - - p-limit@2.3.0: - resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} - engines: {node: '>=6'} - - p-limit@3.1.0: - resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} - engines: {node: '>=10'} - - p-locate@4.1.0: - resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} - engines: {node: '>=8'} - - p-locate@5.0.0: - resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} - engines: {node: '>=10'} - - p-try@2.2.0: - resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} - engines: {node: '>=6'} - package-json-from-dist@1.0.1: resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==} - package-manager-detector@0.2.5: - resolution: {integrity: sha512-3dS7y28uua+UDbRCLBqltMBrbI+A5U2mI9YuxHRxIWYmLj3DwntEBmERYzIAQ4DMeuCUOBSak7dBHHoXKpOTYQ==} - - parent-module@1.0.1: - resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} - engines: {node: '>=6'} - - parse-gitignore@2.0.0: - resolution: {integrity: sha512-RmVuCHWsfu0QPNW+mraxh/xjQVw/lhUCUru8Zni3Ctq3AoMhpDTq0OVdKS6iesd6Kqb7viCV3isAL43dciOSog==} - engines: {node: '>=14'} - - parse-imports@2.2.1: - resolution: {integrity: sha512-OL/zLggRp8mFhKL0rNORUTR4yBYujK/uU+xZL+/0Rgm2QE4nLO9v8PzEweSJEbMGKmDRjJE4R3IMJlL2di4JeQ==} - engines: {node: '>= 18'} - - parse-json@5.2.0: - resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} - engines: {node: '>=8'} - - path-exists@4.0.0: - resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} - engines: {node: '>=8'} - - path-is-absolute@1.0.1: - resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} - engines: {node: '>=0.10.0'} - path-key@3.1.1: resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} engines: {node: '>=8'} @@ -2426,9 +1289,6 @@ packages: resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==} engines: {node: '>=12'} - pkg-types@1.2.1: - resolution: {integrity: sha512-sQoqa8alT3nHjGuTjuKgOnvjo4cljkufdtLMnO2LBP/wRwuDlo1tkaEdMxCRhyGRPacv/ztlZgDPm2b7FAmEvw==} - pkgroll@2.5.1: resolution: {integrity: sha512-rehzSpQ1T/gh+tlVSxlUeqUPR9W1ZtJXDG00cuussNeCPdS9w1Wv0MWxwL116HbugsTZTrd+lVem+ipinT2JUg==} engines: {node: '>=18'} @@ -2439,18 +1299,6 @@ packages: typescript: optional: true - pluralize@8.0.0: - resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==} - engines: {node: '>=4'} - - possible-typed-array-names@1.0.0: - resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==} - engines: {node: '>= 0.4'} - - postcss-selector-parser@6.1.2: - resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==} - engines: {node: '>=4'} - postcss@8.4.49: resolution: {integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==} engines: {node: ^10 || ^12 || >=14} @@ -2458,9 +1306,10 @@ packages: preact@10.25.0: resolution: {integrity: sha512-6bYnzlLxXV3OSpUxLdaxBmE7PMOu0aR3pG6lryK/0jmvcDFPlcXGQAt5DpK3RITWiDrfYZRI0druyaK/S9kYLg==} - prelude-ls@1.2.1: - resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} - engines: {node: '>= 0.8.0'} + prettier@3.4.2: + resolution: {integrity: sha512-e9MewbtFo+Fevyuxn/4rrcDAaq0IYxPGLvObpQjiZBMAzB9IGmzlnG9RZy3FFas+eBMu2vA0CszMeduow5dIuQ==} + engines: {node: '>=14'} + hasBin: true property-information@6.5.0: resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==} @@ -2469,29 +1318,9 @@ packages: resolution: {integrity: sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==} engines: {node: '>=6'} - punycode@2.3.1: - resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} - engines: {node: '>=6'} - queue-microtask@1.2.3: resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} - read-pkg-up@7.0.1: - resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} - engines: {node: '>=8'} - - read-pkg@5.2.0: - resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} - engines: {node: '>=8'} - - refa@0.12.1: - resolution: {integrity: sha512-J8rn6v4DBb2nnFqkqwy6/NnTYMcgLA+sLr0iIO41qpv0n+ngb7ksag2tMRl0inb1bbO/esUwzW1vbJi7K0sI0g==} - engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} - - reflect.getprototypeof@1.0.7: - resolution: {integrity: sha512-bMvFGIUKlc/eSfXNX+aZ+EL95/EgZzuwA0OBPTbZZDEJw/0AkentjMuM1oiRfwHrshqk4RzdgiTg5CcDalXN5g==} - engines: {node: '>= 0.4'} - regex-recursion@4.3.0: resolution: {integrity: sha512-5LcLnizwjcQ2ALfOj95MjcatxyqF5RPySx9yT+PaXu3Gox2vyAtLDjHB8NTJLtMGkvyau6nI3CfpwFCjPUIs/A==} @@ -2501,30 +1330,6 @@ packages: regex@5.0.2: resolution: {integrity: sha512-/pczGbKIQgfTMRV0XjABvc5RzLqQmwqxLHdQao2RTXPk+pmTXB2P0IaUHYdYyk412YLwUIkaeMd5T+RzVgTqnQ==} - regexp-ast-analysis@0.7.1: - resolution: {integrity: sha512-sZuz1dYW/ZsfG17WSAG7eS85r5a0dDsvg+7BiiYR5o6lKCAtUrEwdmRmaGF6rwVj3LcmAeYkOWKEPlbPzN3Y3A==} - engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} - - regexp-tree@0.1.27: - resolution: {integrity: sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA==} - hasBin: true - - regexp.prototype.flags@1.5.3: - resolution: {integrity: sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==} - engines: {node: '>= 0.4'} - - regjsparser@0.10.0: - resolution: {integrity: sha512-qx+xQGZVsy55CH0a1hiVwHmqjLryfh7wQyF5HO07XJ9f7dQMY/gPQHhlyDkIzJKC+x2fUCpCcUODUUUFrm7SHA==} - hasBin: true - - require-directory@2.1.1: - resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} - engines: {node: '>=0.10.0'} - - resolve-from@4.0.0: - resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} - engines: {node: '>=4'} - resolve-pkg-maps@1.0.0: resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} @@ -2539,9 +1344,8 @@ packages: rfdc@1.4.1: resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==} - rimraf@3.0.2: - resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} - deprecated: Rimraf versions prior to v4 are no longer supported + rimraf@5.0.10: + resolution: {integrity: sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==} hasBin: true rollup@4.27.4: @@ -2552,42 +1356,9 @@ packages: run-parallel@1.2.0: resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} - safe-array-concat@1.1.2: - resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==} - engines: {node: '>=0.4'} - - safe-regex-test@1.0.3: - resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==} - engines: {node: '>= 0.4'} - - scslre@0.3.0: - resolution: {integrity: sha512-3A6sD0WYP7+QrjbfNA2FN3FsOaGGFoekCVgTyypy53gPxhbkCIjtO6YWgdrfM+n/8sI8JeXZOIxsHjMTNxQ4nQ==} - engines: {node: ^14.0.0 || >=16.0.0} - search-insights@2.17.3: resolution: {integrity: sha512-RQPdCYTa8A68uM2jwxoY842xDhvx3E5LFL1LxvxCNMev4o5mLuokczhzjAgGwUZBAmOKZknArSxLKmXtIi2AxQ==} - semver@5.7.2: - resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} - hasBin: true - - semver@6.3.1: - resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} - hasBin: true - - semver@7.6.3: - resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==} - engines: {node: '>=10'} - hasBin: true - - set-function-length@1.2.2: - resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} - engines: {node: '>= 0.4'} - - set-function-name@2.0.2: - resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} - engines: {node: '>= 0.4'} - shebang-command@2.0.0: resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} engines: {node: '>=8'} @@ -2599,10 +1370,6 @@ packages: shiki@1.24.0: resolution: {integrity: sha512-qIneep7QRwxRd5oiHb8jaRzH15V/S8F3saCXOdjwRLgozZJr5x2yeBhQtqkO3FSzQDwYEFAYuifg4oHjpDghrg==} - side-channel@1.0.6: - resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==} - engines: {node: '>= 0.4'} - siginfo@2.0.0: resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==} @@ -2610,12 +1377,6 @@ packages: resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} engines: {node: '>=14'} - sisteransi@1.0.5: - resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} - - slashes@3.0.12: - resolution: {integrity: sha512-Q9VME8WyGkc7pJf6QEkj3wE+2CnvZMI+XJhwdTPR8Z/kWQRXi7boAWLDibRPyHRTUTPx5FaU7MsyrjI3yLB4HA==} - source-map-js@1.2.1: resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} engines: {node: '>=0.10.0'} @@ -2623,28 +1384,10 @@ packages: space-separated-tokens@2.0.2: resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==} - spdx-correct@3.2.0: - resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} - - spdx-exceptions@2.5.0: - resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==} - - spdx-expression-parse@3.0.1: - resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} - - spdx-expression-parse@4.0.0: - resolution: {integrity: sha512-Clya5JIij/7C6bRR22+tnGXbc4VKlibKSVj2iHvVeX5iMW7s1SIQlqu699JkODJJIhh/pUu8L0/VLh8xflD+LQ==} - - spdx-license-ids@3.0.20: - resolution: {integrity: sha512-jg25NiDV/1fLtSgEgyvVyDunvaNHbuwF9lfNV17gSmPFAlYzdfNBlLtLzXTevwkPj7DhGbmN9VnmJIgLnhvaBw==} - speakingurl@14.0.1: resolution: {integrity: sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==} engines: {node: '>=0.10.0'} - stable-hash@0.0.4: - resolution: {integrity: sha512-LjdcbuBeLcdETCrPn9i8AYAZ1eCtu4ECAWtP7UleOiZ9LzVxRzzUZEoZ8zB24nhkQnDWyET0I+3sWokSDS3E7g==} - stackback@0.0.2: resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==} @@ -2659,17 +1402,6 @@ packages: resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} engines: {node: '>=12'} - string.prototype.trim@1.2.9: - resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==} - engines: {node: '>= 0.4'} - - string.prototype.trimend@1.0.8: - resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==} - - string.prototype.trimstart@1.0.8: - resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==} - engines: {node: '>= 0.4'} - stringify-entities@4.0.4: resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==} @@ -2681,47 +1413,20 @@ packages: resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} engines: {node: '>=12'} - strip-bom@3.0.0: - resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} - engines: {node: '>=4'} - - strip-indent@3.0.0: - resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} - engines: {node: '>=8'} - - strip-json-comments@3.1.1: - resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} - engines: {node: '>=8'} - superjson@2.2.1: resolution: {integrity: sha512-8iGv75BYOa0xRJHK5vRLEjE2H/i4lulTjzpUXic3Eg8akftYjkmQDa8JARQ42rlczXyFR3IeRoeFCc7RxHsYZA==} engines: {node: '>=16'} - supports-color@7.2.0: - resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} - engines: {node: '>=8'} - supports-preserve-symlinks-flag@1.0.0: resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} engines: {node: '>= 0.4'} - synckit@0.6.2: - resolution: {integrity: sha512-Vhf+bUa//YSTYKseDiiEuQmhGCoIF3CVBhunm3r/DQnYiGT4JssmnKQc44BIyOZRK2pKjXXAgbhfmbeoC9CJpA==} - engines: {node: '>=12.20'} - - synckit@0.9.2: - resolution: {integrity: sha512-vrozgXDQwYO72vHjUb/HnFbQx1exDjoKzqx23aXEg2a9VIg2TSFZ8FmeZpTjUCFMYw7mpX4BE2SFu8wI7asYsw==} - engines: {node: ^14.18.0 || >=16.0.0} - tabbable@6.2.0: resolution: {integrity: sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==} - tapable@2.2.1: - resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} - engines: {node: '>=6'} - - text-table@0.2.0: - resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} + tar@7.4.3: + resolution: {integrity: sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw==} + engines: {node: '>=18'} tinybench@2.9.0: resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==} @@ -2741,69 +1446,20 @@ packages: resolution: {integrity: sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==} engines: {node: '>=14.0.0'} - tlds@1.255.0: - resolution: {integrity: sha512-tcwMRIioTcF/FcxLev8MJWxCp+GUALRhFEqbDoZrnowmKSGqPrl5pqS+Sut2m8BgJ6S4FExCSSpGffZ0Tks6Aw==} - hasBin: true - to-regex-range@5.0.1: resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} engines: {node: '>=8.0'} - toml-eslint-parser@0.10.0: - resolution: {integrity: sha512-khrZo4buq4qVmsGzS5yQjKe/WsFvV8fGfOjDQN0q4iy9FjRfPWRgTFrU8u1R2iu/SfWLhY9WnCi4Jhdrcbtg+g==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - trim-lines@3.0.1: resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==} - ts-api-utils@1.4.3: - resolution: {integrity: sha512-i3eMG77UTMD0hZhgRS562pv83RC6ukSAC2GMNWc+9dieh/+jDM5u5YG+NHX6VNDRHQcHwmsTHctP9LhbC3WxVw==} - engines: {node: '>=16'} - peerDependencies: - typescript: '>=4.2.0' - - tsconfig-paths@3.15.0: - resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==} - - tslib@2.8.1: - resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} - tsx@4.19.2: resolution: {integrity: sha512-pOUl6Vo2LUq/bSa8S5q7b91cgNSjctn9ugq/+Mvow99qW6x/UZYwzxy/3NmqoT66eHYfCVvFvACC58UBPFf28g==} engines: {node: '>=18.0.0'} hasBin: true - type-check@0.4.0: - resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} - engines: {node: '>= 0.8.0'} - - type-fest@0.20.2: - resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} - engines: {node: '>=10'} - - type-fest@0.6.0: - resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} - engines: {node: '>=8'} - - type-fest@0.8.1: - resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} - engines: {node: '>=8'} - - typed-array-buffer@1.0.2: - resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==} - engines: {node: '>= 0.4'} - - typed-array-byte-length@1.0.1: - resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==} - engines: {node: '>= 0.4'} - - typed-array-byte-offset@1.0.3: - resolution: {integrity: sha512-GsvTyUHTriq6o/bHcTd0vM7OQ9JEdlvluu9YISaA7+KzDzPaIzEeDFNkTfhdE3MYcNhNi0vq/LlegYgIs5yPAw==} - engines: {node: '>= 0.4'} - - typed-array-length@1.0.7: - resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==} - engines: {node: '>= 0.4'} + typanion@3.14.0: + resolution: {integrity: sha512-ZW/lVMRabETuYCd9O9ZvMhAh8GslSqaUjxmK/JLPCh6l73CvLBiuXswj/+7LdnWOgYsQ130FqLzFz5aGT4I3Ug==} typedoc-plugin-markdown@4.3.0: resolution: {integrity: sha512-yAR7+JGSwHWNzQhS8AFlGX6GmbWnK7/Q2Y8hHy5pkL/WB9ooJqhsI6B1abldhM3lOQCWqCdkzu9yFMPuvl2HUw==} @@ -2823,16 +1479,6 @@ packages: peerDependencies: typescript: 5.0.x || 5.1.x || 5.2.x || 5.3.x || 5.4.x || 5.5.x || 5.6.x || 5.7.x - typescript-eslint@8.16.0: - resolution: {integrity: sha512-wDkVmlY6O2do4V+lZd0GtRfbtXbeD0q9WygwXXSJnC1xorE8eqyC2L1tJimqpSeFrOzRlYtWnUp/uzgHQOgfBQ==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - peerDependencies: - eslint: ^8.57.0 || ^9.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - typescript@5.7.2: resolution: {integrity: sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==} engines: {node: '>=14.17'} @@ -2841,14 +1487,8 @@ packages: uc.micro@2.1.0: resolution: {integrity: sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==} - ufo@1.5.4: - resolution: {integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==} - - uint8arrays@3.0.0: - resolution: {integrity: sha512-HRCx0q6O9Bfbp+HHSfQQKD7wU70+lydKVt4EghkdOvlK/NlrF90z+eXV34mUd48rNvVJXwkrMSPpCATkct8fJA==} - - unbox-primitive@1.0.2: - resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} + undici-types@6.20.0: + resolution: {integrity: sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==} unist-util-is@6.0.0: resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==} @@ -2865,21 +1505,6 @@ packages: unist-util-visit@5.0.0: resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==} - update-browserslist-db@1.1.1: - resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==} - hasBin: true - peerDependencies: - browserslist: '>= 4.21.0' - - uri-js@4.4.1: - resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} - - util-deprecate@1.0.2: - resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} - - validate-npm-package-license@3.0.4: - resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} - vfile-message@4.0.2: resolution: {integrity: sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==} @@ -2970,12 +1595,6 @@ packages: '@vue/composition-api': optional: true - vue-eslint-parser@9.4.3: - resolution: {integrity: sha512-2rYRLWlIpaiN8xbPiDyXZXRgLGOtWxERV7ND5fFAv5qo1D2N9Fu9MNajBNc6o13lZ+24DAWCkQCvj4klgmcITg==} - engines: {node: ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: '>=6.0.0' - vue@3.5.13: resolution: {integrity: sha512-wmeiSMxkZCSc+PM2w2VRsOYAZC8GdipNFRTsLSfodVqI9mbejKeXEGr8SckuLnrQPGe3oJN5c3K0vpoU9q/wCQ==} peerDependencies: @@ -2984,21 +1603,6 @@ packages: typescript: optional: true - which-boxed-primitive@1.0.2: - resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} - - which-builtin-type@1.2.0: - resolution: {integrity: sha512-I+qLGQ/vucCby4tf5HsLmGueEla4ZhwTBSqaooS+Y0BuxN4Cp+okmGuV+8mXZ84KDI9BA+oklo+RzKg0ONdSUA==} - engines: {node: '>= 0.4'} - - which-collection@1.0.2: - resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==} - engines: {node: '>= 0.4'} - - which-typed-array@1.1.16: - resolution: {integrity: sha512-g+N+GAWiRj66DngFwHvISJd+ITsyphZvD1vChfVg6cEdnzy53GzB3oy0fUNlvhz7H7+MiqhYr26qxQShCpKTTQ==} - engines: {node: '>= 0.4'} - which@2.0.2: resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} engines: {node: '>= 8'} @@ -3009,10 +1613,6 @@ packages: engines: {node: '>=8'} hasBin: true - word-wrap@1.2.5: - resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} - engines: {node: '>=0.10.0'} - wrap-ansi@7.0.0: resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} engines: {node: '>=10'} @@ -3021,41 +1621,15 @@ packages: resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} engines: {node: '>=12'} - wrappy@1.0.2: - resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} - - xml-name-validator@4.0.0: - resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} - engines: {node: '>=12'} - - y18n@5.0.8: - resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} - engines: {node: '>=10'} - - yaml-eslint-parser@1.2.3: - resolution: {integrity: sha512-4wZWvE398hCP7O8n3nXKu/vdq1HcH01ixYlCREaJL5NUMwQ0g3MaGFUBNSlmBtKmhbtVG/Cm6lyYmSVTEVil8A==} - engines: {node: ^14.17.0 || >=16.0.0} + yallist@5.0.0: + resolution: {integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==} + engines: {node: '>=18'} yaml@2.6.1: resolution: {integrity: sha512-7r0XPzioN/Q9kXBro/XPnA6kznR73DHq+GXh5ON7ZozRO6aMjbmiBuKste2wslTFkC5d1dw0GooOCepZXJ2SAg==} engines: {node: '>= 14'} hasBin: true - yargs-parser@21.1.1: - resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} - engines: {node: '>=12'} - - yargs@17.7.2: - resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} - engines: {node: '>=12'} - - yocto-queue@0.1.0: - resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} - engines: {node: '>=10'} - - zod@3.23.8: - resolution: {integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==} - zwitch@2.0.4: resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} @@ -3166,97 +1740,7 @@ snapshots: dependencies: '@algolia/client-common': 5.15.0 - '@antfu/eslint-config@3.11.2(@typescript-eslint/utils@8.16.0(eslint@8.57.1)(typescript@5.7.2))(@vue/compiler-sfc@3.5.13)(eslint@8.57.1)(typescript@5.7.2)(vitest@2.1.6)': - dependencies: - '@antfu/install-pkg': 0.5.0 - '@clack/prompts': 0.8.2 - '@eslint-community/eslint-plugin-eslint-comments': 4.4.1(eslint@8.57.1) - '@eslint/markdown': 6.2.1 - '@stylistic/eslint-plugin': 2.11.0(eslint@8.57.1)(typescript@5.7.2) - '@typescript-eslint/eslint-plugin': 8.16.0(@typescript-eslint/parser@8.16.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2) - '@typescript-eslint/parser': 8.16.0(eslint@8.57.1)(typescript@5.7.2) - '@vitest/eslint-plugin': 1.1.12(@typescript-eslint/utils@8.16.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2)(vitest@2.1.6) - eslint: 8.57.1 - eslint-config-flat-gitignore: 0.3.0(eslint@8.57.1) - eslint-flat-config-utils: 0.4.0 - eslint-merge-processors: 0.1.0(eslint@8.57.1) - eslint-plugin-antfu: 2.7.0(eslint@8.57.1) - eslint-plugin-command: 0.2.6(eslint@8.57.1) - eslint-plugin-import-x: 4.4.3(eslint@8.57.1)(typescript@5.7.2) - eslint-plugin-jsdoc: 50.6.0(eslint@8.57.1) - eslint-plugin-jsonc: 2.18.2(eslint@8.57.1) - eslint-plugin-n: 17.14.0(eslint@8.57.1) - eslint-plugin-no-only-tests: 3.3.0 - eslint-plugin-perfectionist: 4.1.2(eslint@8.57.1)(typescript@5.7.2) - eslint-plugin-regexp: 2.7.0(eslint@8.57.1) - eslint-plugin-toml: 0.11.1(eslint@8.57.1) - eslint-plugin-unicorn: 56.0.1(eslint@8.57.1) - eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.16.0(@typescript-eslint/parser@8.16.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1) - eslint-plugin-vue: 9.31.0(eslint@8.57.1) - eslint-plugin-yml: 1.15.0(eslint@8.57.1) - eslint-processor-vue-blocks: 0.1.2(@vue/compiler-sfc@3.5.13)(eslint@8.57.1) - globals: 15.12.0 - jsonc-eslint-parser: 2.4.0 - local-pkg: 0.5.1 - parse-gitignore: 2.0.0 - picocolors: 1.1.1 - toml-eslint-parser: 0.10.0 - vue-eslint-parser: 9.4.3(eslint@8.57.1) - yaml-eslint-parser: 1.2.3 - yargs: 17.7.2 - transitivePeerDependencies: - - '@eslint/json' - - '@typescript-eslint/utils' - - '@vue/compiler-sfc' - - supports-color - - typescript - - vitest - - '@antfu/install-pkg@0.5.0': - dependencies: - package-manager-detector: 0.2.5 - tinyexec: 0.3.1 - - '@antfu/utils@0.7.10': {} - - '@atproto/api@0.13.18': - dependencies: - '@atproto/common-web': 0.3.1 - '@atproto/lexicon': 0.4.3 - '@atproto/syntax': 0.3.1 - '@atproto/xrpc': 0.6.4 - await-lock: 2.2.2 - multiformats: 9.9.0 - tlds: 1.255.0 - zod: 3.23.8 - - '@atproto/common-web@0.3.1': - dependencies: - graphemer: 1.4.0 - multiformats: 9.9.0 - uint8arrays: 3.0.0 - zod: 3.23.8 - - '@atproto/lexicon@0.4.3': - dependencies: - '@atproto/common-web': 0.3.1 - '@atproto/syntax': 0.3.1 - iso-datestring-validator: 2.2.2 - multiformats: 9.9.0 - zod: 3.23.8 - - '@atproto/syntax@0.3.1': {} - - '@atproto/xrpc@0.6.4': - dependencies: - '@atproto/lexicon': 0.4.3 - zod: 3.23.8 - - '@babel/code-frame@7.26.2': - dependencies: - '@babel/helper-validator-identifier': 7.25.9 - js-tokens: 4.0.0 - picocolors: 1.1.1 + '@atcute/client@2.0.7': {} '@babel/helper-string-parser@7.25.9': {} @@ -3306,17 +1790,6 @@ snapshots: '@biomejs/cli-win32-x64@1.9.4': optional: true - '@clack/core@0.3.5': - dependencies: - picocolors: 1.1.1 - sisteransi: 1.0.5 - - '@clack/prompts@0.8.2': - dependencies: - '@clack/core': 0.3.5 - picocolors: 1.1.1 - sisteransi: 1.0.5 - '@docsearch/css@3.8.0': {} '@docsearch/js@3.8.0(@algolia/client-search@5.15.0)(search-insights@2.17.3)': @@ -3341,18 +1814,6 @@ snapshots: transitivePeerDependencies: - '@algolia/client-search' - '@es-joy/jsdoccomment@0.48.0': - dependencies: - comment-parser: 1.4.1 - esquery: 1.6.0 - jsdoc-type-pratt-parser: 4.1.0 - - '@es-joy/jsdoccomment@0.49.0': - dependencies: - comment-parser: 1.4.1 - esquery: 1.6.0 - jsdoc-type-pratt-parser: 4.1.0 - '@esbuild/aix-ppc64@0.21.5': optional: true @@ -3494,79 +1955,19 @@ snapshots: '@esbuild/win32-x64@0.23.1': optional: true - '@eslint-community/eslint-plugin-eslint-comments@4.4.1(eslint@8.57.1)': + '@gerrit0/mini-shiki@1.24.0': dependencies: - escape-string-regexp: 4.0.0 - eslint: 8.57.1 - ignore: 5.3.2 + '@shikijs/engine-oniguruma': 1.24.0 + '@shikijs/types': 1.24.0 + '@shikijs/vscode-textmate': 9.3.0 - '@eslint-community/eslint-utils@4.4.1(eslint@8.57.1)': + '@iconify-json/simple-icons@1.2.13': dependencies: - eslint: 8.57.1 - eslint-visitor-keys: 3.4.3 - - '@eslint-community/regexpp@4.12.1': {} + '@iconify/types': 2.0.0 - '@eslint/compat@1.2.3(eslint@8.57.1)': - optionalDependencies: - eslint: 8.57.1 + '@iconify/types@2.0.0': {} - '@eslint/eslintrc@2.1.4': - dependencies: - ajv: 6.12.6 - debug: 4.3.7 - espree: 9.6.1 - globals: 13.24.0 - ignore: 5.3.2 - import-fresh: 3.3.0 - js-yaml: 4.1.0 - minimatch: 3.1.2 - strip-json-comments: 3.1.1 - transitivePeerDependencies: - - supports-color - - '@eslint/js@8.57.1': {} - - '@eslint/js@9.15.0': {} - - '@eslint/markdown@6.2.1': - dependencies: - '@eslint/plugin-kit': 0.2.3 - mdast-util-from-markdown: 2.0.2 - mdast-util-gfm: 3.0.0 - micromark-extension-gfm: 3.0.0 - transitivePeerDependencies: - - supports-color - - '@eslint/plugin-kit@0.2.3': - dependencies: - levn: 0.4.1 - - '@gerrit0/mini-shiki@1.24.0': - dependencies: - '@shikijs/engine-oniguruma': 1.24.0 - '@shikijs/types': 1.24.0 - '@shikijs/vscode-textmate': 9.3.0 - - '@humanwhocodes/config-array@0.13.0': - dependencies: - '@humanwhocodes/object-schema': 2.0.3 - debug: 4.3.7 - minimatch: 3.1.2 - transitivePeerDependencies: - - supports-color - - '@humanwhocodes/module-importer@1.0.1': {} - - '@humanwhocodes/object-schema@2.0.3': {} - - '@iconify-json/simple-icons@1.2.13': - dependencies: - '@iconify/types': 2.0.0 - - '@iconify/types@2.0.0': {} - - '@isaacs/cliui@8.0.2': + '@isaacs/cliui@8.0.2': dependencies: string-width: 5.1.2 string-width-cjs: string-width@4.2.3 @@ -3575,6 +1976,10 @@ snapshots: wrap-ansi: 8.1.0 wrap-ansi-cjs: wrap-ansi@7.0.0 + '@isaacs/fs-minipass@4.0.1': + dependencies: + minipass: 7.1.2 + '@jridgewell/sourcemap-codec@1.5.0': {} '@nodelib/fs.scandir@2.1.5': @@ -3592,8 +1997,6 @@ snapshots: '@pkgjs/parseargs@0.11.0': optional: true - '@pkgr/core@0.1.1': {} - '@rollup/plugin-alias@5.1.1(rollup@4.27.4)': optionalDependencies: rollup: 4.27.4 @@ -3702,8 +2105,6 @@ snapshots: '@rollup/rollup-win32-x64-msvc@4.27.4': optional: true - '@rtsao/scc@1.1.0': {} - '@shikijs/core@1.24.0': dependencies: '@shikijs/engine-javascript': 1.24.0 @@ -3735,30 +2136,12 @@ snapshots: '@shikijs/vscode-textmate@9.3.0': {} - '@stylistic/eslint-plugin@2.11.0(eslint@8.57.1)(typescript@5.7.2)': - dependencies: - '@typescript-eslint/utils': 8.16.0(eslint@8.57.1)(typescript@5.7.2) - eslint: 8.57.1 - eslint-visitor-keys: 4.2.0 - espree: 10.3.0 - estraverse: 5.3.0 - picomatch: 4.0.2 - transitivePeerDependencies: - - supports-color - - typescript - - '@types/debug@4.1.12': - dependencies: - '@types/ms': 0.7.34 - '@types/estree@1.0.6': {} '@types/hast@3.0.4': dependencies: '@types/unist': 3.0.3 - '@types/json5@0.0.29': {} - '@types/linkify-it@5.0.0': {} '@types/markdown-it@14.1.2': @@ -3772,9 +2155,9 @@ snapshots: '@types/mdurl@2.0.0': {} - '@types/ms@0.7.34': {} - - '@types/normalize-package-data@2.4.4': {} + '@types/node@22.10.7': + dependencies: + undici-types: 6.20.0 '@types/resolve@1.20.2': {} @@ -3782,103 +2165,13 @@ snapshots: '@types/web-bluetooth@0.0.20': {} - '@typescript-eslint/eslint-plugin@8.16.0(@typescript-eslint/parser@8.16.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2)': - dependencies: - '@eslint-community/regexpp': 4.12.1 - '@typescript-eslint/parser': 8.16.0(eslint@8.57.1)(typescript@5.7.2) - '@typescript-eslint/scope-manager': 8.16.0 - '@typescript-eslint/type-utils': 8.16.0(eslint@8.57.1)(typescript@5.7.2) - '@typescript-eslint/utils': 8.16.0(eslint@8.57.1)(typescript@5.7.2) - '@typescript-eslint/visitor-keys': 8.16.0 - eslint: 8.57.1 - graphemer: 1.4.0 - ignore: 5.3.2 - natural-compare: 1.4.0 - ts-api-utils: 1.4.3(typescript@5.7.2) - optionalDependencies: - typescript: 5.7.2 - transitivePeerDependencies: - - supports-color - - '@typescript-eslint/parser@8.16.0(eslint@8.57.1)(typescript@5.7.2)': - dependencies: - '@typescript-eslint/scope-manager': 8.16.0 - '@typescript-eslint/types': 8.16.0 - '@typescript-eslint/typescript-estree': 8.16.0(typescript@5.7.2) - '@typescript-eslint/visitor-keys': 8.16.0 - debug: 4.3.7 - eslint: 8.57.1 - optionalDependencies: - typescript: 5.7.2 - transitivePeerDependencies: - - supports-color - - '@typescript-eslint/scope-manager@8.16.0': - dependencies: - '@typescript-eslint/types': 8.16.0 - '@typescript-eslint/visitor-keys': 8.16.0 - - '@typescript-eslint/type-utils@8.16.0(eslint@8.57.1)(typescript@5.7.2)': - dependencies: - '@typescript-eslint/typescript-estree': 8.16.0(typescript@5.7.2) - '@typescript-eslint/utils': 8.16.0(eslint@8.57.1)(typescript@5.7.2) - debug: 4.3.7 - eslint: 8.57.1 - ts-api-utils: 1.4.3(typescript@5.7.2) - optionalDependencies: - typescript: 5.7.2 - transitivePeerDependencies: - - supports-color - - '@typescript-eslint/types@8.16.0': {} - - '@typescript-eslint/typescript-estree@8.16.0(typescript@5.7.2)': - dependencies: - '@typescript-eslint/types': 8.16.0 - '@typescript-eslint/visitor-keys': 8.16.0 - debug: 4.3.7 - fast-glob: 3.3.2 - is-glob: 4.0.3 - minimatch: 9.0.5 - semver: 7.6.3 - ts-api-utils: 1.4.3(typescript@5.7.2) - optionalDependencies: - typescript: 5.7.2 - transitivePeerDependencies: - - supports-color - - '@typescript-eslint/utils@8.16.0(eslint@8.57.1)(typescript@5.7.2)': - dependencies: - '@eslint-community/eslint-utils': 4.4.1(eslint@8.57.1) - '@typescript-eslint/scope-manager': 8.16.0 - '@typescript-eslint/types': 8.16.0 - '@typescript-eslint/typescript-estree': 8.16.0(typescript@5.7.2) - eslint: 8.57.1 - optionalDependencies: - typescript: 5.7.2 - transitivePeerDependencies: - - supports-color - - '@typescript-eslint/visitor-keys@8.16.0': - dependencies: - '@typescript-eslint/types': 8.16.0 - eslint-visitor-keys: 4.2.0 - '@ungap/structured-clone@1.2.0': {} - '@vitejs/plugin-vue@5.2.1(vite@5.4.11)(vue@3.5.13(typescript@5.7.2))': + '@vitejs/plugin-vue@5.2.1(vite@5.4.11(@types/node@22.10.7))(vue@3.5.13(typescript@5.7.2))': dependencies: - vite: 5.4.11 + vite: 5.4.11(@types/node@22.10.7) vue: 3.5.13(typescript@5.7.2) - '@vitest/eslint-plugin@1.1.12(@typescript-eslint/utils@8.16.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2)(vitest@2.1.6)': - dependencies: - '@typescript-eslint/utils': 8.16.0(eslint@8.57.1)(typescript@5.7.2) - eslint: 8.57.1 - optionalDependencies: - typescript: 5.7.2 - vitest: 2.1.6 - '@vitest/expect@2.1.6': dependencies: '@vitest/spy': 2.1.6 @@ -3886,13 +2179,13 @@ snapshots: chai: 5.1.2 tinyrainbow: 1.2.0 - '@vitest/mocker@2.1.6(vite@5.4.11)': + '@vitest/mocker@2.1.6(vite@5.4.11(@types/node@22.10.7))': dependencies: '@vitest/spy': 2.1.6 estree-walker: 3.0.3 magic-string: 0.30.14 optionalDependencies: - vite: 5.4.11 + vite: 5.4.11(@types/node@22.10.7) '@vitest/pretty-format@2.1.6': dependencies: @@ -4021,19 +2314,6 @@ snapshots: - '@vue/composition-api' - vue - acorn-jsx@5.3.2(acorn@8.14.0): - dependencies: - acorn: 8.14.0 - - acorn@8.14.0: {} - - ajv@6.12.6: - dependencies: - fast-deep-equal: 3.1.3 - fast-json-stable-stringify: 2.1.0 - json-schema-traverse: 0.4.1 - uri-js: 4.4.1 - algoliasearch@5.15.0: dependencies: '@algolia/client-abtesting': 5.15.0 @@ -4060,77 +2340,14 @@ snapshots: ansi-styles@6.2.1: {} - are-docs-informative@0.0.2: {} - argparse@2.0.1: {} - array-buffer-byte-length@1.0.1: - dependencies: - call-bind: 1.0.7 - is-array-buffer: 3.0.4 - - array-includes@3.1.8: - dependencies: - call-bind: 1.0.7 - define-properties: 1.2.1 - es-abstract: 1.23.5 - es-object-atoms: 1.0.0 - get-intrinsic: 1.2.4 - is-string: 1.0.7 - - array.prototype.findlastindex@1.2.5: - dependencies: - call-bind: 1.0.7 - define-properties: 1.2.1 - es-abstract: 1.23.5 - es-errors: 1.3.0 - es-object-atoms: 1.0.0 - es-shim-unscopables: 1.0.2 - - array.prototype.flat@1.3.2: - dependencies: - call-bind: 1.0.7 - define-properties: 1.2.1 - es-abstract: 1.23.5 - es-shim-unscopables: 1.0.2 - - array.prototype.flatmap@1.3.2: - dependencies: - call-bind: 1.0.7 - define-properties: 1.2.1 - es-abstract: 1.23.5 - es-shim-unscopables: 1.0.2 - - arraybuffer.prototype.slice@1.0.3: - dependencies: - array-buffer-byte-length: 1.0.1 - call-bind: 1.0.7 - define-properties: 1.2.1 - es-abstract: 1.23.5 - es-errors: 1.3.0 - get-intrinsic: 1.2.4 - is-array-buffer: 3.0.4 - is-shared-array-buffer: 1.0.3 - assertion-error@2.0.1: {} - available-typed-arrays@1.0.7: - dependencies: - possible-typed-array-names: 1.0.0 - - await-lock@2.2.2: {} - balanced-match@1.0.2: {} birpc@0.2.19: {} - boolbase@1.0.0: {} - - brace-expansion@1.1.11: - dependencies: - balanced-match: 1.0.2 - concat-map: 0.0.1 - brace-expansion@2.0.1: dependencies: balanced-match: 1.0.2 @@ -4139,33 +2356,8 @@ snapshots: dependencies: fill-range: 7.1.1 - browserslist@4.24.2: - dependencies: - caniuse-lite: 1.0.30001684 - electron-to-chromium: 1.5.67 - node-releases: 2.0.18 - update-browserslist-db: 1.1.1(browserslist@4.24.2) - - builtin-modules@3.3.0: {} - - builtins@5.1.0: - dependencies: - semver: 7.6.3 - cac@6.7.14: {} - call-bind@1.0.7: - dependencies: - es-define-property: 1.0.0 - es-errors: 1.3.0 - function-bind: 1.1.2 - get-intrinsic: 1.2.4 - set-function-length: 1.2.2 - - callsites@3.1.0: {} - - caniuse-lite@1.0.30001684: {} - ccount@2.0.1: {} chai@5.1.2: @@ -4176,30 +2368,17 @@ snapshots: loupe: 3.1.2 pathval: 2.0.0 - chalk@4.1.2: - dependencies: - ansi-styles: 4.3.0 - supports-color: 7.2.0 - character-entities-html4@2.1.0: {} character-entities-legacy@3.0.0: {} - character-entities@2.0.2: {} - check-error@2.1.1: {} - ci-info@4.1.0: {} - - clean-regexp@1.0.0: - dependencies: - escape-string-regexp: 1.0.5 + chownr@3.0.0: {} - cliui@8.0.1: + clipanion@4.0.0-rc.4(typanion@3.14.0): dependencies: - string-width: 4.2.3 - strip-ansi: 6.0.1 - wrap-ansi: 7.0.0 + typanion: 3.14.0 color-convert@2.0.1: dependencies: @@ -4209,192 +2388,46 @@ snapshots: comma-separated-tokens@2.0.3: {} - comment-parser@1.4.1: {} - commondir@1.0.1: {} - concat-map@0.0.1: {} - - confbox@0.1.8: {} - copy-anything@3.0.5: dependencies: is-what: 4.1.16 - core-js-compat@3.39.0: - dependencies: - browserslist: 4.24.2 - cross-spawn@7.0.6: dependencies: path-key: 3.1.1 shebang-command: 2.0.0 which: 2.0.2 - cssesc@3.0.0: {} - csstype@3.1.3: {} - data-view-buffer@1.0.1: - dependencies: - call-bind: 1.0.7 - es-errors: 1.3.0 - is-data-view: 1.0.1 - - data-view-byte-length@1.0.1: - dependencies: - call-bind: 1.0.7 - es-errors: 1.3.0 - is-data-view: 1.0.1 - - data-view-byte-offset@1.0.0: - dependencies: - call-bind: 1.0.7 - es-errors: 1.3.0 - is-data-view: 1.0.1 - - debug@3.2.7: - dependencies: - ms: 2.1.3 - debug@4.3.7: dependencies: ms: 2.1.3 - decode-named-character-reference@1.0.2: - dependencies: - character-entities: 2.0.2 - deep-eql@5.0.2: {} - deep-is@0.1.4: {} - deepmerge@4.3.1: {} - define-data-property@1.1.4: - dependencies: - es-define-property: 1.0.0 - es-errors: 1.3.0 - gopd: 1.0.1 - - define-properties@1.2.1: - dependencies: - define-data-property: 1.1.4 - has-property-descriptors: 1.0.2 - object-keys: 1.1.1 - dequal@2.0.3: {} devlop@1.1.0: dependencies: dequal: 2.0.3 - doctrine@2.1.0: - dependencies: - esutils: 2.0.3 - - doctrine@3.0.0: - dependencies: - esutils: 2.0.3 - eastasianwidth@0.2.0: {} - electron-to-chromium@1.5.67: {} - emoji-regex-xs@1.0.0: {} emoji-regex@8.0.0: {} emoji-regex@9.2.2: {} - enhanced-resolve@5.17.1: - dependencies: - graceful-fs: 4.2.11 - tapable: 2.2.1 - entities@4.5.0: {} - error-ex@1.3.2: - dependencies: - is-arrayish: 0.2.1 - - es-abstract@1.23.5: - dependencies: - array-buffer-byte-length: 1.0.1 - arraybuffer.prototype.slice: 1.0.3 - available-typed-arrays: 1.0.7 - call-bind: 1.0.7 - data-view-buffer: 1.0.1 - data-view-byte-length: 1.0.1 - data-view-byte-offset: 1.0.0 - es-define-property: 1.0.0 - es-errors: 1.3.0 - es-object-atoms: 1.0.0 - es-set-tostringtag: 2.0.3 - es-to-primitive: 1.3.0 - function.prototype.name: 1.1.6 - get-intrinsic: 1.2.4 - get-symbol-description: 1.0.2 - globalthis: 1.0.4 - gopd: 1.0.1 - has-property-descriptors: 1.0.2 - has-proto: 1.0.3 - has-symbols: 1.0.3 - hasown: 2.0.2 - internal-slot: 1.0.7 - is-array-buffer: 3.0.4 - is-callable: 1.2.7 - is-data-view: 1.0.1 - is-negative-zero: 2.0.3 - is-regex: 1.1.4 - is-shared-array-buffer: 1.0.3 - is-string: 1.0.7 - is-typed-array: 1.1.13 - is-weakref: 1.0.2 - object-inspect: 1.13.3 - object-keys: 1.1.1 - object.assign: 4.1.5 - regexp.prototype.flags: 1.5.3 - safe-array-concat: 1.1.2 - safe-regex-test: 1.0.3 - string.prototype.trim: 1.2.9 - string.prototype.trimend: 1.0.8 - string.prototype.trimstart: 1.0.8 - typed-array-buffer: 1.0.2 - typed-array-byte-length: 1.0.1 - typed-array-byte-offset: 1.0.3 - typed-array-length: 1.0.7 - unbox-primitive: 1.0.2 - which-typed-array: 1.1.16 - - es-define-property@1.0.0: - dependencies: - get-intrinsic: 1.2.4 - - es-errors@1.3.0: {} - es-module-lexer@1.5.4: {} - es-object-atoms@1.0.0: - dependencies: - es-errors: 1.3.0 - - es-set-tostringtag@2.0.3: - dependencies: - get-intrinsic: 1.2.4 - has-tostringtag: 1.0.2 - hasown: 2.0.2 - - es-shim-unscopables@1.0.2: - dependencies: - hasown: 2.0.2 - - es-to-primitive@1.3.0: - dependencies: - is-callable: 1.2.7 - is-date-object: 1.0.5 - is-symbol: 1.0.4 - esbuild@0.21.5: optionalDependencies: '@esbuild/aix-ppc64': 0.21.5 @@ -4448,521 +2481,68 @@ snapshots: '@esbuild/win32-ia32': 0.23.1 '@esbuild/win32-x64': 0.23.1 - escalade@3.2.0: {} - - escape-string-regexp@1.0.5: {} - - escape-string-regexp@4.0.0: {} - - escape-string-regexp@5.0.0: {} - - eslint-compat-utils@0.5.1(eslint@8.57.1): - dependencies: - eslint: 8.57.1 - semver: 7.6.3 + estree-walker@2.0.2: {} - eslint-compat-utils@0.6.4(eslint@8.57.1): + estree-walker@3.0.3: dependencies: - eslint: 8.57.1 - semver: 7.6.3 + '@types/estree': 1.0.6 - eslint-config-flat-gitignore@0.3.0(eslint@8.57.1): - dependencies: - '@eslint/compat': 1.2.3(eslint@8.57.1) - eslint: 8.57.1 - find-up-simple: 1.0.0 + expect-type@1.1.0: {} - eslint-flat-config-utils@0.4.0: + fast-glob@3.3.2: dependencies: - pathe: 1.1.2 + '@nodelib/fs.stat': 2.0.5 + '@nodelib/fs.walk': 1.2.8 + glob-parent: 5.1.2 + merge2: 1.4.1 + micromatch: 4.0.8 - eslint-import-resolver-node@0.3.9: + fastq@1.17.1: dependencies: - debug: 3.2.7 - is-core-module: 2.15.1 - resolve: 1.22.8 - transitivePeerDependencies: - - supports-color + reusify: 1.0.4 - eslint-json-compat-utils@0.2.1(eslint@8.57.1)(jsonc-eslint-parser@2.4.0): + fill-range@7.1.1: dependencies: - eslint: 8.57.1 - esquery: 1.6.0 - jsonc-eslint-parser: 2.4.0 + to-regex-range: 5.0.1 - eslint-merge-processors@0.1.0(eslint@8.57.1): + focus-trap@7.6.2: dependencies: - eslint: 8.57.1 + tabbable: 6.2.0 - eslint-module-utils@2.12.0(@typescript-eslint/parser@8.16.0(eslint@8.57.1)(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint@8.57.1): + foreground-child@3.3.0: dependencies: - debug: 3.2.7 - optionalDependencies: - '@typescript-eslint/parser': 8.16.0(eslint@8.57.1)(typescript@5.7.2) - eslint: 8.57.1 - eslint-import-resolver-node: 0.3.9 - transitivePeerDependencies: - - supports-color + cross-spawn: 7.0.6 + signal-exit: 4.1.0 - eslint-plugin-antfu@2.7.0(eslint@8.57.1): - dependencies: - '@antfu/utils': 0.7.10 - eslint: 8.57.1 + fsevents@2.3.3: + optional: true - eslint-plugin-command@0.2.6(eslint@8.57.1): - dependencies: - '@es-joy/jsdoccomment': 0.48.0 - eslint: 8.57.1 + function-bind@1.1.2: {} - eslint-plugin-es-x@7.8.0(eslint@8.57.1): + get-tsconfig@4.8.1: dependencies: - '@eslint-community/eslint-utils': 4.4.1(eslint@8.57.1) - '@eslint-community/regexpp': 4.12.1 - eslint: 8.57.1 - eslint-compat-utils: 0.5.1(eslint@8.57.1) + resolve-pkg-maps: 1.0.0 - eslint-plugin-import-x@4.4.3(eslint@8.57.1)(typescript@5.7.2): + glob-parent@5.1.2: dependencies: - '@typescript-eslint/utils': 8.16.0(eslint@8.57.1)(typescript@5.7.2) - debug: 4.3.7 - doctrine: 3.0.0 - eslint: 8.57.1 - eslint-import-resolver-node: 0.3.9 - get-tsconfig: 4.8.1 - is-glob: 4.0.3 - minimatch: 9.0.5 - semver: 7.6.3 - stable-hash: 0.0.4 - tslib: 2.8.1 - transitivePeerDependencies: - - supports-color - - typescript - - eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.16.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1): - dependencies: - '@rtsao/scc': 1.1.0 - array-includes: 3.1.8 - array.prototype.findlastindex: 1.2.5 - array.prototype.flat: 1.3.2 - array.prototype.flatmap: 1.3.2 - debug: 3.2.7 - doctrine: 2.1.0 - eslint: 8.57.1 - eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.16.0(eslint@8.57.1)(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint@8.57.1) - hasown: 2.0.2 - is-core-module: 2.15.1 is-glob: 4.0.3 - minimatch: 3.1.2 - object.fromentries: 2.0.8 - object.groupby: 1.0.3 - object.values: 1.2.0 - semver: 6.3.1 - string.prototype.trimend: 1.0.8 - tsconfig-paths: 3.15.0 - optionalDependencies: - '@typescript-eslint/parser': 8.16.0(eslint@8.57.1)(typescript@5.7.2) - transitivePeerDependencies: - - eslint-import-resolver-typescript - - eslint-import-resolver-webpack - - supports-color - - eslint-plugin-jsdoc@50.6.0(eslint@8.57.1): - dependencies: - '@es-joy/jsdoccomment': 0.49.0 - are-docs-informative: 0.0.2 - comment-parser: 1.4.1 - debug: 4.3.7 - escape-string-regexp: 4.0.0 - eslint: 8.57.1 - espree: 10.3.0 - esquery: 1.6.0 - parse-imports: 2.2.1 - semver: 7.6.3 - spdx-expression-parse: 4.0.0 - synckit: 0.9.2 - transitivePeerDependencies: - - supports-color - - eslint-plugin-jsonc@2.18.2(eslint@8.57.1): - dependencies: - '@eslint-community/eslint-utils': 4.4.1(eslint@8.57.1) - eslint: 8.57.1 - eslint-compat-utils: 0.6.4(eslint@8.57.1) - eslint-json-compat-utils: 0.2.1(eslint@8.57.1)(jsonc-eslint-parser@2.4.0) - espree: 9.6.1 - graphemer: 1.4.0 - jsonc-eslint-parser: 2.4.0 - natural-compare: 1.4.0 - synckit: 0.6.2 - transitivePeerDependencies: - - '@eslint/json' - - eslint-plugin-n@16.6.2(eslint@8.57.1): - dependencies: - '@eslint-community/eslint-utils': 4.4.1(eslint@8.57.1) - builtins: 5.1.0 - eslint: 8.57.1 - eslint-plugin-es-x: 7.8.0(eslint@8.57.1) - get-tsconfig: 4.8.1 - globals: 13.24.0 - ignore: 5.3.2 - is-builtin-module: 3.2.1 - is-core-module: 2.15.1 - minimatch: 3.1.2 - resolve: 1.22.8 - semver: 7.6.3 - eslint-plugin-n@17.14.0(eslint@8.57.1): + glob@10.4.5: dependencies: - '@eslint-community/eslint-utils': 4.4.1(eslint@8.57.1) - enhanced-resolve: 5.17.1 - eslint: 8.57.1 - eslint-plugin-es-x: 7.8.0(eslint@8.57.1) - get-tsconfig: 4.8.1 - globals: 15.12.0 - ignore: 5.3.2 + foreground-child: 3.3.0 + jackspeak: 3.4.3 minimatch: 9.0.5 - semver: 7.6.3 + minipass: 7.1.2 + package-json-from-dist: 1.0.1 + path-scurry: 1.11.1 - eslint-plugin-no-only-tests@3.3.0: {} + globals@15.12.0: {} - eslint-plugin-perfectionist@4.1.2(eslint@8.57.1)(typescript@5.7.2): + hasown@2.0.2: dependencies: - '@typescript-eslint/types': 8.16.0 - '@typescript-eslint/utils': 8.16.0(eslint@8.57.1)(typescript@5.7.2) - eslint: 8.57.1 - natural-orderby: 5.0.0 - transitivePeerDependencies: - - supports-color - - typescript + function-bind: 1.1.2 - eslint-plugin-promise@6.6.0(eslint@8.57.1): - dependencies: - eslint: 8.57.1 - - eslint-plugin-regexp@2.7.0(eslint@8.57.1): - dependencies: - '@eslint-community/eslint-utils': 4.4.1(eslint@8.57.1) - '@eslint-community/regexpp': 4.12.1 - comment-parser: 1.4.1 - eslint: 8.57.1 - jsdoc-type-pratt-parser: 4.1.0 - refa: 0.12.1 - regexp-ast-analysis: 0.7.1 - scslre: 0.3.0 - - eslint-plugin-toml@0.11.1(eslint@8.57.1): - dependencies: - debug: 4.3.7 - eslint: 8.57.1 - eslint-compat-utils: 0.5.1(eslint@8.57.1) - lodash: 4.17.21 - toml-eslint-parser: 0.10.0 - transitivePeerDependencies: - - supports-color - - eslint-plugin-unicorn@56.0.1(eslint@8.57.1): - dependencies: - '@babel/helper-validator-identifier': 7.25.9 - '@eslint-community/eslint-utils': 4.4.1(eslint@8.57.1) - ci-info: 4.1.0 - clean-regexp: 1.0.0 - core-js-compat: 3.39.0 - eslint: 8.57.1 - esquery: 1.6.0 - globals: 15.12.0 - indent-string: 4.0.0 - is-builtin-module: 3.2.1 - jsesc: 3.0.2 - pluralize: 8.0.0 - read-pkg-up: 7.0.1 - regexp-tree: 0.1.27 - regjsparser: 0.10.0 - semver: 7.6.3 - strip-indent: 3.0.0 - - eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.16.0(@typescript-eslint/parser@8.16.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1): - dependencies: - eslint: 8.57.1 - optionalDependencies: - '@typescript-eslint/eslint-plugin': 8.16.0(@typescript-eslint/parser@8.16.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2) - - eslint-plugin-vue@9.31.0(eslint@8.57.1): - dependencies: - '@eslint-community/eslint-utils': 4.4.1(eslint@8.57.1) - eslint: 8.57.1 - globals: 13.24.0 - natural-compare: 1.4.0 - nth-check: 2.1.1 - postcss-selector-parser: 6.1.2 - semver: 7.6.3 - vue-eslint-parser: 9.4.3(eslint@8.57.1) - xml-name-validator: 4.0.0 - transitivePeerDependencies: - - supports-color - - eslint-plugin-yml@1.15.0(eslint@8.57.1): - dependencies: - debug: 4.3.7 - eslint: 8.57.1 - eslint-compat-utils: 0.5.1(eslint@8.57.1) - lodash: 4.17.21 - natural-compare: 1.4.0 - yaml-eslint-parser: 1.2.3 - transitivePeerDependencies: - - supports-color - - eslint-processor-vue-blocks@0.1.2(@vue/compiler-sfc@3.5.13)(eslint@8.57.1): - dependencies: - '@vue/compiler-sfc': 3.5.13 - eslint: 8.57.1 - - eslint-scope@7.2.2: - dependencies: - esrecurse: 4.3.0 - estraverse: 5.3.0 - - eslint-visitor-keys@3.4.3: {} - - eslint-visitor-keys@4.2.0: {} - - eslint@8.57.1: - dependencies: - '@eslint-community/eslint-utils': 4.4.1(eslint@8.57.1) - '@eslint-community/regexpp': 4.12.1 - '@eslint/eslintrc': 2.1.4 - '@eslint/js': 8.57.1 - '@humanwhocodes/config-array': 0.13.0 - '@humanwhocodes/module-importer': 1.0.1 - '@nodelib/fs.walk': 1.2.8 - '@ungap/structured-clone': 1.2.0 - ajv: 6.12.6 - chalk: 4.1.2 - cross-spawn: 7.0.6 - debug: 4.3.7 - doctrine: 3.0.0 - escape-string-regexp: 4.0.0 - eslint-scope: 7.2.2 - eslint-visitor-keys: 3.4.3 - espree: 9.6.1 - esquery: 1.6.0 - esutils: 2.0.3 - fast-deep-equal: 3.1.3 - file-entry-cache: 6.0.1 - find-up: 5.0.0 - glob-parent: 6.0.2 - globals: 13.24.0 - graphemer: 1.4.0 - ignore: 5.3.2 - imurmurhash: 0.1.4 - is-glob: 4.0.3 - is-path-inside: 3.0.3 - js-yaml: 4.1.0 - json-stable-stringify-without-jsonify: 1.0.1 - levn: 0.4.1 - lodash.merge: 4.6.2 - minimatch: 3.1.2 - natural-compare: 1.4.0 - optionator: 0.9.4 - strip-ansi: 6.0.1 - text-table: 0.2.0 - transitivePeerDependencies: - - supports-color - - espree@10.3.0: - dependencies: - acorn: 8.14.0 - acorn-jsx: 5.3.2(acorn@8.14.0) - eslint-visitor-keys: 4.2.0 - - espree@9.6.1: - dependencies: - acorn: 8.14.0 - acorn-jsx: 5.3.2(acorn@8.14.0) - eslint-visitor-keys: 3.4.3 - - esquery@1.6.0: - dependencies: - estraverse: 5.3.0 - - esrecurse@4.3.0: - dependencies: - estraverse: 5.3.0 - - estraverse@5.3.0: {} - - estree-walker@2.0.2: {} - - estree-walker@3.0.3: - dependencies: - '@types/estree': 1.0.6 - - esutils@2.0.3: {} - - expect-type@1.1.0: {} - - fast-deep-equal@3.1.3: {} - - fast-glob@3.3.2: - dependencies: - '@nodelib/fs.stat': 2.0.5 - '@nodelib/fs.walk': 1.2.8 - glob-parent: 5.1.2 - merge2: 1.4.1 - micromatch: 4.0.8 - - fast-json-stable-stringify@2.1.0: {} - - fast-levenshtein@2.0.6: {} - - fastq@1.17.1: - dependencies: - reusify: 1.0.4 - - file-entry-cache@6.0.1: - dependencies: - flat-cache: 3.2.0 - - fill-range@7.1.1: - dependencies: - to-regex-range: 5.0.1 - - find-up-simple@1.0.0: {} - - find-up@4.1.0: - dependencies: - locate-path: 5.0.0 - path-exists: 4.0.0 - - find-up@5.0.0: - dependencies: - locate-path: 6.0.0 - path-exists: 4.0.0 - - flat-cache@3.2.0: - dependencies: - flatted: 3.3.2 - keyv: 4.5.4 - rimraf: 3.0.2 - - flatted@3.3.2: {} - - focus-trap@7.6.2: - dependencies: - tabbable: 6.2.0 - - for-each@0.3.3: - dependencies: - is-callable: 1.2.7 - - foreground-child@3.3.0: - dependencies: - cross-spawn: 7.0.6 - signal-exit: 4.1.0 - - fs.realpath@1.0.0: {} - - fsevents@2.3.3: - optional: true - - function-bind@1.1.2: {} - - function.prototype.name@1.1.6: - dependencies: - call-bind: 1.0.7 - define-properties: 1.2.1 - es-abstract: 1.23.5 - functions-have-names: 1.2.3 - - functions-have-names@1.2.3: {} - - get-caller-file@2.0.5: {} - - get-intrinsic@1.2.4: - dependencies: - es-errors: 1.3.0 - function-bind: 1.1.2 - has-proto: 1.0.3 - has-symbols: 1.0.3 - hasown: 2.0.2 - - get-symbol-description@1.0.2: - dependencies: - call-bind: 1.0.7 - es-errors: 1.3.0 - get-intrinsic: 1.2.4 - - get-tsconfig@4.8.1: - dependencies: - resolve-pkg-maps: 1.0.0 - - glob-parent@5.1.2: - dependencies: - is-glob: 4.0.3 - - glob-parent@6.0.2: - dependencies: - is-glob: 4.0.3 - - glob@10.4.5: - dependencies: - foreground-child: 3.3.0 - jackspeak: 3.4.3 - minimatch: 9.0.5 - minipass: 7.1.2 - package-json-from-dist: 1.0.1 - path-scurry: 1.11.1 - - glob@7.2.3: - dependencies: - fs.realpath: 1.0.0 - inflight: 1.0.6 - inherits: 2.0.4 - minimatch: 3.1.2 - once: 1.4.0 - path-is-absolute: 1.0.1 - - globals@13.24.0: - dependencies: - type-fest: 0.20.2 - - globals@15.12.0: {} - - globalthis@1.0.4: - dependencies: - define-properties: 1.2.1 - gopd: 1.0.1 - - gopd@1.0.1: - dependencies: - get-intrinsic: 1.2.4 - - graceful-fs@4.2.11: {} - - graphemer@1.4.0: {} - - has-bigints@1.0.2: {} - - has-flag@4.0.0: {} - - has-property-descriptors@1.0.2: - dependencies: - es-define-property: 1.0.0 - - has-proto@1.0.3: {} - - has-symbols@1.0.3: {} - - has-tostringtag@1.0.2: - dependencies: - has-symbols: 1.0.3 - - hasown@2.0.2: - dependencies: - function-bind: 1.1.2 - - hast-util-to-html@9.0.3: + hast-util-to-html@9.0.3: dependencies: '@types/hast': 3.0.4 '@types/unist': 3.0.3 @@ -4982,701 +2562,134 @@ snapshots: hookable@5.5.3: {} - hosted-git-info@2.8.9: {} - html-void-elements@3.0.0: {} - ignore@5.3.2: {} - - import-fresh@3.3.0: - dependencies: - parent-module: 1.0.1 - resolve-from: 4.0.0 - - imurmurhash@0.1.4: {} - - indent-string@4.0.0: {} - - inflight@1.0.6: - dependencies: - once: 1.4.0 - wrappy: 1.0.2 - - inherits@2.0.4: {} - - internal-slot@1.0.7: - dependencies: - es-errors: 1.3.0 - hasown: 2.0.2 - side-channel: 1.0.6 - - is-array-buffer@3.0.4: - dependencies: - call-bind: 1.0.7 - get-intrinsic: 1.2.4 - - is-arrayish@0.2.1: {} - - is-async-function@2.0.0: - dependencies: - has-tostringtag: 1.0.2 - - is-bigint@1.0.4: - dependencies: - has-bigints: 1.0.2 - - is-boolean-object@1.1.2: - dependencies: - call-bind: 1.0.7 - has-tostringtag: 1.0.2 - - is-builtin-module@3.2.1: - dependencies: - builtin-modules: 3.3.0 - - is-callable@1.2.7: {} - is-core-module@2.15.1: dependencies: hasown: 2.0.2 - is-data-view@1.0.1: - dependencies: - is-typed-array: 1.1.13 - - is-date-object@1.0.5: - dependencies: - has-tostringtag: 1.0.2 - is-extglob@2.1.1: {} - is-finalizationregistry@1.1.0: - dependencies: - call-bind: 1.0.7 - is-fullwidth-code-point@3.0.0: {} - is-generator-function@1.0.10: - dependencies: - has-tostringtag: 1.0.2 - is-glob@4.0.3: dependencies: is-extglob: 2.1.1 - is-map@2.0.3: {} - is-module@1.0.0: {} - is-negative-zero@2.0.3: {} - - is-number-object@1.0.7: - dependencies: - has-tostringtag: 1.0.2 - is-number@7.0.0: {} - is-path-inside@3.0.3: {} - is-reference@1.2.1: dependencies: '@types/estree': 1.0.6 - is-regex@1.1.4: - dependencies: - call-bind: 1.0.7 - has-tostringtag: 1.0.2 - - is-set@2.0.3: {} - - is-shared-array-buffer@1.0.3: - dependencies: - call-bind: 1.0.7 - - is-string@1.0.7: - dependencies: - has-tostringtag: 1.0.2 - - is-symbol@1.0.4: - dependencies: - has-symbols: 1.0.3 - - is-typed-array@1.1.13: - dependencies: - which-typed-array: 1.1.16 - - is-weakmap@2.0.2: {} - - is-weakref@1.0.2: - dependencies: - call-bind: 1.0.7 - - is-weakset@2.0.3: - dependencies: - call-bind: 1.0.7 - get-intrinsic: 1.2.4 - is-what@4.1.16: {} - isarray@2.0.5: {} - isexe@2.0.0: {} - iso-datestring-validator@2.2.2: {} - - jackspeak@3.4.3: - dependencies: - '@isaacs/cliui': 8.0.2 - optionalDependencies: - '@pkgjs/parseargs': 0.11.0 - - js-tokens@4.0.0: {} - - js-yaml@4.1.0: - dependencies: - argparse: 2.0.1 - - jsdoc-type-pratt-parser@4.1.0: {} - - jsesc@0.5.0: {} - - jsesc@3.0.2: {} - - json-buffer@3.0.1: {} - - json-parse-even-better-errors@2.3.1: {} - - json-schema-traverse@0.4.1: {} - - json-stable-stringify-without-jsonify@1.0.1: {} - - json5@1.0.2: - dependencies: - minimist: 1.2.8 - - jsonc-eslint-parser@2.4.0: - dependencies: - acorn: 8.14.0 - eslint-visitor-keys: 3.4.3 - espree: 9.6.1 - semver: 7.6.3 - - keyv@4.5.4: - dependencies: - json-buffer: 3.0.1 - - levn@0.4.1: - dependencies: - prelude-ls: 1.2.1 - type-check: 0.4.0 - - lines-and-columns@1.2.4: {} - - linkify-it@5.0.0: - dependencies: - uc.micro: 2.1.0 - - local-pkg@0.5.1: - dependencies: - mlly: 1.7.3 - pkg-types: 1.2.1 - - locate-path@5.0.0: - dependencies: - p-locate: 4.1.0 - - locate-path@6.0.0: - dependencies: - p-locate: 5.0.0 - - lodash.merge@4.6.2: {} - - lodash@4.17.21: {} - - longest-streak@3.1.0: {} - - loupe@3.1.2: {} - - lru-cache@10.4.3: {} - - lunr@2.3.9: {} - - magic-string@0.30.14: - dependencies: - '@jridgewell/sourcemap-codec': 1.5.0 - - mark.js@8.11.1: {} - - markdown-it@14.1.0: - dependencies: - argparse: 2.0.1 - entities: 4.5.0 - linkify-it: 5.0.0 - mdurl: 2.0.0 - punycode.js: 2.3.1 - uc.micro: 2.1.0 - - markdown-table@3.0.4: {} - - mdast-util-find-and-replace@3.0.1: - dependencies: - '@types/mdast': 4.0.4 - escape-string-regexp: 5.0.0 - unist-util-is: 6.0.0 - unist-util-visit-parents: 6.0.1 - - mdast-util-from-markdown@2.0.2: - dependencies: - '@types/mdast': 4.0.4 - '@types/unist': 3.0.3 - decode-named-character-reference: 1.0.2 - devlop: 1.1.0 - mdast-util-to-string: 4.0.0 - micromark: 4.0.1 - micromark-util-decode-numeric-character-reference: 2.0.2 - micromark-util-decode-string: 2.0.1 - micromark-util-normalize-identifier: 2.0.1 - micromark-util-symbol: 2.0.1 - micromark-util-types: 2.0.1 - unist-util-stringify-position: 4.0.0 - transitivePeerDependencies: - - supports-color - - mdast-util-gfm-autolink-literal@2.0.1: - dependencies: - '@types/mdast': 4.0.4 - ccount: 2.0.1 - devlop: 1.1.0 - mdast-util-find-and-replace: 3.0.1 - micromark-util-character: 2.1.1 - - mdast-util-gfm-footnote@2.0.0: - dependencies: - '@types/mdast': 4.0.4 - devlop: 1.1.0 - mdast-util-from-markdown: 2.0.2 - mdast-util-to-markdown: 2.1.2 - micromark-util-normalize-identifier: 2.0.1 - transitivePeerDependencies: - - supports-color - - mdast-util-gfm-strikethrough@2.0.0: - dependencies: - '@types/mdast': 4.0.4 - mdast-util-from-markdown: 2.0.2 - mdast-util-to-markdown: 2.1.2 - transitivePeerDependencies: - - supports-color - - mdast-util-gfm-table@2.0.0: - dependencies: - '@types/mdast': 4.0.4 - devlop: 1.1.0 - markdown-table: 3.0.4 - mdast-util-from-markdown: 2.0.2 - mdast-util-to-markdown: 2.1.2 - transitivePeerDependencies: - - supports-color - - mdast-util-gfm-task-list-item@2.0.0: - dependencies: - '@types/mdast': 4.0.4 - devlop: 1.1.0 - mdast-util-from-markdown: 2.0.2 - mdast-util-to-markdown: 2.1.2 - transitivePeerDependencies: - - supports-color - - mdast-util-gfm@3.0.0: - dependencies: - mdast-util-from-markdown: 2.0.2 - mdast-util-gfm-autolink-literal: 2.0.1 - mdast-util-gfm-footnote: 2.0.0 - mdast-util-gfm-strikethrough: 2.0.0 - mdast-util-gfm-table: 2.0.0 - mdast-util-gfm-task-list-item: 2.0.0 - mdast-util-to-markdown: 2.1.2 - transitivePeerDependencies: - - supports-color - - mdast-util-phrasing@4.1.0: - dependencies: - '@types/mdast': 4.0.4 - unist-util-is: 6.0.0 - - mdast-util-to-hast@13.2.0: - dependencies: - '@types/hast': 3.0.4 - '@types/mdast': 4.0.4 - '@ungap/structured-clone': 1.2.0 - devlop: 1.1.0 - micromark-util-sanitize-uri: 2.0.1 - trim-lines: 3.0.1 - unist-util-position: 5.0.0 - unist-util-visit: 5.0.0 - vfile: 6.0.3 - - mdast-util-to-markdown@2.1.2: - dependencies: - '@types/mdast': 4.0.4 - '@types/unist': 3.0.3 - longest-streak: 3.1.0 - mdast-util-phrasing: 4.1.0 - mdast-util-to-string: 4.0.0 - micromark-util-classify-character: 2.0.1 - micromark-util-decode-string: 2.0.1 - unist-util-visit: 5.0.0 - zwitch: 2.0.4 - - mdast-util-to-string@4.0.0: - dependencies: - '@types/mdast': 4.0.4 - - mdurl@2.0.0: {} - - merge2@1.4.1: {} - - micromark-core-commonmark@2.0.2: - dependencies: - decode-named-character-reference: 1.0.2 - devlop: 1.1.0 - micromark-factory-destination: 2.0.1 - micromark-factory-label: 2.0.1 - micromark-factory-space: 2.0.1 - micromark-factory-title: 2.0.1 - micromark-factory-whitespace: 2.0.1 - micromark-util-character: 2.1.1 - micromark-util-chunked: 2.0.1 - micromark-util-classify-character: 2.0.1 - micromark-util-html-tag-name: 2.0.1 - micromark-util-normalize-identifier: 2.0.1 - micromark-util-resolve-all: 2.0.1 - micromark-util-subtokenize: 2.0.3 - micromark-util-symbol: 2.0.1 - micromark-util-types: 2.0.1 - - micromark-extension-gfm-autolink-literal@2.1.0: - dependencies: - micromark-util-character: 2.1.1 - micromark-util-sanitize-uri: 2.0.1 - micromark-util-symbol: 2.0.1 - micromark-util-types: 2.0.1 - - micromark-extension-gfm-footnote@2.1.0: - dependencies: - devlop: 1.1.0 - micromark-core-commonmark: 2.0.2 - micromark-factory-space: 2.0.1 - micromark-util-character: 2.1.1 - micromark-util-normalize-identifier: 2.0.1 - micromark-util-sanitize-uri: 2.0.1 - micromark-util-symbol: 2.0.1 - micromark-util-types: 2.0.1 - - micromark-extension-gfm-strikethrough@2.1.0: - dependencies: - devlop: 1.1.0 - micromark-util-chunked: 2.0.1 - micromark-util-classify-character: 2.0.1 - micromark-util-resolve-all: 2.0.1 - micromark-util-symbol: 2.0.1 - micromark-util-types: 2.0.1 - - micromark-extension-gfm-table@2.1.0: - dependencies: - devlop: 1.1.0 - micromark-factory-space: 2.0.1 - micromark-util-character: 2.1.1 - micromark-util-symbol: 2.0.1 - micromark-util-types: 2.0.1 - - micromark-extension-gfm-tagfilter@2.0.0: - dependencies: - micromark-util-types: 2.0.1 - - micromark-extension-gfm-task-list-item@2.1.0: - dependencies: - devlop: 1.1.0 - micromark-factory-space: 2.0.1 - micromark-util-character: 2.1.1 - micromark-util-symbol: 2.0.1 - micromark-util-types: 2.0.1 - - micromark-extension-gfm@3.0.0: - dependencies: - micromark-extension-gfm-autolink-literal: 2.1.0 - micromark-extension-gfm-footnote: 2.1.0 - micromark-extension-gfm-strikethrough: 2.1.0 - micromark-extension-gfm-table: 2.1.0 - micromark-extension-gfm-tagfilter: 2.0.0 - micromark-extension-gfm-task-list-item: 2.1.0 - micromark-util-combine-extensions: 2.0.1 - micromark-util-types: 2.0.1 - - micromark-factory-destination@2.0.1: - dependencies: - micromark-util-character: 2.1.1 - micromark-util-symbol: 2.0.1 - micromark-util-types: 2.0.1 - - micromark-factory-label@2.0.1: - dependencies: - devlop: 1.1.0 - micromark-util-character: 2.1.1 - micromark-util-symbol: 2.0.1 - micromark-util-types: 2.0.1 - - micromark-factory-space@2.0.1: - dependencies: - micromark-util-character: 2.1.1 - micromark-util-types: 2.0.1 - - micromark-factory-title@2.0.1: - dependencies: - micromark-factory-space: 2.0.1 - micromark-util-character: 2.1.1 - micromark-util-symbol: 2.0.1 - micromark-util-types: 2.0.1 - - micromark-factory-whitespace@2.0.1: + jackspeak@3.4.3: dependencies: - micromark-factory-space: 2.0.1 - micromark-util-character: 2.1.1 - micromark-util-symbol: 2.0.1 - micromark-util-types: 2.0.1 + '@isaacs/cliui': 8.0.2 + optionalDependencies: + '@pkgjs/parseargs': 0.11.0 - micromark-util-character@2.1.1: + linkify-it@5.0.0: dependencies: - micromark-util-symbol: 2.0.1 - micromark-util-types: 2.0.1 + uc.micro: 2.1.0 - micromark-util-chunked@2.0.1: - dependencies: - micromark-util-symbol: 2.0.1 + loupe@3.1.2: {} - micromark-util-classify-character@2.0.1: - dependencies: - micromark-util-character: 2.1.1 - micromark-util-symbol: 2.0.1 - micromark-util-types: 2.0.1 + lru-cache@10.4.3: {} - micromark-util-combine-extensions@2.0.1: + lunr@2.3.9: {} + + magic-string@0.30.14: dependencies: - micromark-util-chunked: 2.0.1 - micromark-util-types: 2.0.1 + '@jridgewell/sourcemap-codec': 1.5.0 + + mark.js@8.11.1: {} - micromark-util-decode-numeric-character-reference@2.0.2: + markdown-it@14.1.0: dependencies: - micromark-util-symbol: 2.0.1 + argparse: 2.0.1 + entities: 4.5.0 + linkify-it: 5.0.0 + mdurl: 2.0.0 + punycode.js: 2.3.1 + uc.micro: 2.1.0 - micromark-util-decode-string@2.0.1: + mdast-util-to-hast@13.2.0: dependencies: - decode-named-character-reference: 1.0.2 - micromark-util-character: 2.1.1 - micromark-util-decode-numeric-character-reference: 2.0.2 - micromark-util-symbol: 2.0.1 + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 + '@ungap/structured-clone': 1.2.0 + devlop: 1.1.0 + micromark-util-sanitize-uri: 2.0.1 + trim-lines: 3.0.1 + unist-util-position: 5.0.0 + unist-util-visit: 5.0.0 + vfile: 6.0.3 - micromark-util-encode@2.0.1: {} + mdurl@2.0.0: {} - micromark-util-html-tag-name@2.0.1: {} + merge2@1.4.1: {} - micromark-util-normalize-identifier@2.0.1: + micromark-util-character@2.1.1: dependencies: micromark-util-symbol: 2.0.1 - - micromark-util-resolve-all@2.0.1: - dependencies: micromark-util-types: 2.0.1 + micromark-util-encode@2.0.1: {} + micromark-util-sanitize-uri@2.0.1: dependencies: micromark-util-character: 2.1.1 micromark-util-encode: 2.0.1 micromark-util-symbol: 2.0.1 - micromark-util-subtokenize@2.0.3: - dependencies: - devlop: 1.1.0 - micromark-util-chunked: 2.0.1 - micromark-util-symbol: 2.0.1 - micromark-util-types: 2.0.1 - micromark-util-symbol@2.0.1: {} micromark-util-types@2.0.1: {} - micromark@4.0.1: - dependencies: - '@types/debug': 4.1.12 - debug: 4.3.7 - decode-named-character-reference: 1.0.2 - devlop: 1.1.0 - micromark-core-commonmark: 2.0.2 - micromark-factory-space: 2.0.1 - micromark-util-character: 2.1.1 - micromark-util-chunked: 2.0.1 - micromark-util-combine-extensions: 2.0.1 - micromark-util-decode-numeric-character-reference: 2.0.2 - micromark-util-encode: 2.0.1 - micromark-util-normalize-identifier: 2.0.1 - micromark-util-resolve-all: 2.0.1 - micromark-util-sanitize-uri: 2.0.1 - micromark-util-subtokenize: 2.0.3 - micromark-util-symbol: 2.0.1 - micromark-util-types: 2.0.1 - transitivePeerDependencies: - - supports-color - micromatch@4.0.8: dependencies: braces: 3.0.3 picomatch: 2.3.1 - min-indent@1.0.1: {} - - minimatch@3.1.2: - dependencies: - brace-expansion: 1.1.11 - minimatch@9.0.5: dependencies: brace-expansion: 2.0.1 - minimist@1.2.8: {} - minipass@7.1.2: {} minisearch@7.1.1: {} + minizlib@3.0.1: + dependencies: + minipass: 7.1.2 + rimraf: 5.0.10 + mitt@3.0.1: {} - mlly@1.7.3: - dependencies: - acorn: 8.14.0 - pathe: 1.1.2 - pkg-types: 1.2.1 - ufo: 1.5.4 + mkdirp@3.0.1: {} ms@2.1.3: {} - multiformats@9.9.0: {} - nano-staged@0.8.0: dependencies: picocolors: 1.1.1 nanoid@3.3.8: {} - natural-compare@1.4.0: {} - - natural-orderby@5.0.0: {} - - node-releases@2.0.18: {} - - normalize-package-data@2.5.0: - dependencies: - hosted-git-info: 2.8.9 - resolve: 1.22.8 - semver: 5.7.2 - validate-npm-package-license: 3.0.4 - - nth-check@2.1.1: - dependencies: - boolbase: 1.0.0 - - object-inspect@1.13.3: {} - - object-keys@1.1.1: {} - - object.assign@4.1.5: - dependencies: - call-bind: 1.0.7 - define-properties: 1.2.1 - has-symbols: 1.0.3 - object-keys: 1.1.1 - - object.fromentries@2.0.8: - dependencies: - call-bind: 1.0.7 - define-properties: 1.2.1 - es-abstract: 1.23.5 - es-object-atoms: 1.0.0 - - object.groupby@1.0.3: - dependencies: - call-bind: 1.0.7 - define-properties: 1.2.1 - es-abstract: 1.23.5 - - object.values@1.2.0: - dependencies: - call-bind: 1.0.7 - define-properties: 1.2.1 - es-object-atoms: 1.0.0 - - once@1.4.0: - dependencies: - wrappy: 1.0.2 - oniguruma-to-es@0.7.0: dependencies: emoji-regex-xs: 1.0.0 regex: 5.0.2 regex-recursion: 4.3.0 - optionator@0.9.4: - dependencies: - deep-is: 0.1.4 - fast-levenshtein: 2.0.6 - levn: 0.4.1 - prelude-ls: 1.2.1 - type-check: 0.4.0 - word-wrap: 1.2.5 - - p-limit@2.3.0: - dependencies: - p-try: 2.2.0 - - p-limit@3.1.0: - dependencies: - yocto-queue: 0.1.0 - - p-locate@4.1.0: - dependencies: - p-limit: 2.3.0 - - p-locate@5.0.0: - dependencies: - p-limit: 3.1.0 - - p-try@2.2.0: {} - package-json-from-dist@1.0.1: {} - package-manager-detector@0.2.5: {} - - parent-module@1.0.1: - dependencies: - callsites: 3.1.0 - - parse-gitignore@2.0.0: {} - - parse-imports@2.2.1: - dependencies: - es-module-lexer: 1.5.4 - slashes: 3.0.12 - - parse-json@5.2.0: - dependencies: - '@babel/code-frame': 7.26.2 - error-ex: 1.3.2 - json-parse-even-better-errors: 2.3.1 - lines-and-columns: 1.2.4 - - path-exists@4.0.0: {} - - path-is-absolute@1.0.1: {} - path-key@3.1.1: {} path-parse@1.0.7: {} @@ -5698,12 +2711,6 @@ snapshots: picomatch@4.0.2: {} - pkg-types@1.2.1: - dependencies: - confbox: 0.1.8 - mlly: 1.7.3 - pathe: 1.1.2 - pkgroll@2.5.1(typescript@5.7.2): dependencies: '@rollup/plugin-alias': 5.1.1(rollup@4.27.4) @@ -5719,15 +2726,6 @@ snapshots: optionalDependencies: typescript: 5.7.2 - pluralize@8.0.0: {} - - possible-typed-array-names@1.0.0: {} - - postcss-selector-parser@6.1.2: - dependencies: - cssesc: 3.0.0 - util-deprecate: 1.0.2 - postcss@8.4.49: dependencies: nanoid: 3.3.8 @@ -5736,43 +2734,14 @@ snapshots: preact@10.25.0: {} - prelude-ls@1.2.1: {} + prettier@3.4.2: {} property-information@6.5.0: {} punycode.js@2.3.1: {} - punycode@2.3.1: {} - queue-microtask@1.2.3: {} - read-pkg-up@7.0.1: - dependencies: - find-up: 4.1.0 - read-pkg: 5.2.0 - type-fest: 0.8.1 - - read-pkg@5.2.0: - dependencies: - '@types/normalize-package-data': 2.4.4 - normalize-package-data: 2.5.0 - parse-json: 5.2.0 - type-fest: 0.6.0 - - refa@0.12.1: - dependencies: - '@eslint-community/regexpp': 4.12.1 - - reflect.getprototypeof@1.0.7: - dependencies: - call-bind: 1.0.7 - define-properties: 1.2.1 - es-abstract: 1.23.5 - es-errors: 1.3.0 - get-intrinsic: 1.2.4 - gopd: 1.0.1 - which-builtin-type: 1.2.0 - regex-recursion@4.3.0: dependencies: regex-utilities: 2.3.0 @@ -5783,28 +2752,6 @@ snapshots: dependencies: regex-utilities: 2.3.0 - regexp-ast-analysis@0.7.1: - dependencies: - '@eslint-community/regexpp': 4.12.1 - refa: 0.12.1 - - regexp-tree@0.1.27: {} - - regexp.prototype.flags@1.5.3: - dependencies: - call-bind: 1.0.7 - define-properties: 1.2.1 - es-errors: 1.3.0 - set-function-name: 2.0.2 - - regjsparser@0.10.0: - dependencies: - jsesc: 0.5.0 - - require-directory@2.1.1: {} - - resolve-from@4.0.0: {} - resolve-pkg-maps@1.0.0: {} resolve@1.22.8: @@ -5817,9 +2764,9 @@ snapshots: rfdc@1.4.1: {} - rimraf@3.0.2: + rimraf@5.0.10: dependencies: - glob: 7.2.3 + glob: 10.4.5 rollup@4.27.4: dependencies: @@ -5849,49 +2796,8 @@ snapshots: dependencies: queue-microtask: 1.2.3 - safe-array-concat@1.1.2: - dependencies: - call-bind: 1.0.7 - get-intrinsic: 1.2.4 - has-symbols: 1.0.3 - isarray: 2.0.5 - - safe-regex-test@1.0.3: - dependencies: - call-bind: 1.0.7 - es-errors: 1.3.0 - is-regex: 1.1.4 - - scslre@0.3.0: - dependencies: - '@eslint-community/regexpp': 4.12.1 - refa: 0.12.1 - regexp-ast-analysis: 0.7.1 - search-insights@2.17.3: {} - semver@5.7.2: {} - - semver@6.3.1: {} - - semver@7.6.3: {} - - set-function-length@1.2.2: - dependencies: - define-data-property: 1.1.4 - es-errors: 1.3.0 - function-bind: 1.1.2 - get-intrinsic: 1.2.4 - gopd: 1.0.1 - has-property-descriptors: 1.0.2 - - set-function-name@2.0.2: - dependencies: - define-data-property: 1.1.4 - es-errors: 1.3.0 - functions-have-names: 1.2.3 - has-property-descriptors: 1.0.2 - shebang-command@2.0.0: dependencies: shebang-regex: 3.0.0 @@ -5907,48 +2813,16 @@ snapshots: '@shikijs/vscode-textmate': 9.3.0 '@types/hast': 3.0.4 - side-channel@1.0.6: - dependencies: - call-bind: 1.0.7 - es-errors: 1.3.0 - get-intrinsic: 1.2.4 - object-inspect: 1.13.3 - siginfo@2.0.0: {} signal-exit@4.1.0: {} - sisteransi@1.0.5: {} - - slashes@3.0.12: {} - source-map-js@1.2.1: {} space-separated-tokens@2.0.2: {} - spdx-correct@3.2.0: - dependencies: - spdx-expression-parse: 3.0.1 - spdx-license-ids: 3.0.20 - - spdx-exceptions@2.5.0: {} - - spdx-expression-parse@3.0.1: - dependencies: - spdx-exceptions: 2.5.0 - spdx-license-ids: 3.0.20 - - spdx-expression-parse@4.0.0: - dependencies: - spdx-exceptions: 2.5.0 - spdx-license-ids: 3.0.20 - - spdx-license-ids@3.0.20: {} - speakingurl@14.0.1: {} - stable-hash@0.0.4: {} - stackback@0.0.2: {} std-env@3.8.0: {} @@ -5965,25 +2839,6 @@ snapshots: emoji-regex: 9.2.2 strip-ansi: 7.1.0 - string.prototype.trim@1.2.9: - dependencies: - call-bind: 1.0.7 - define-properties: 1.2.1 - es-abstract: 1.23.5 - es-object-atoms: 1.0.0 - - string.prototype.trimend@1.0.8: - dependencies: - call-bind: 1.0.7 - define-properties: 1.2.1 - es-object-atoms: 1.0.0 - - string.prototype.trimstart@1.0.8: - dependencies: - call-bind: 1.0.7 - define-properties: 1.2.1 - es-object-atoms: 1.0.0 - stringify-entities@4.0.4: dependencies: character-entities-html4: 2.1.0 @@ -5997,38 +2852,22 @@ snapshots: dependencies: ansi-regex: 6.1.0 - strip-bom@3.0.0: {} - - strip-indent@3.0.0: - dependencies: - min-indent: 1.0.1 - - strip-json-comments@3.1.1: {} - superjson@2.2.1: dependencies: copy-anything: 3.0.5 - supports-color@7.2.0: - dependencies: - has-flag: 4.0.0 - supports-preserve-symlinks-flag@1.0.0: {} - synckit@0.6.2: - dependencies: - tslib: 2.8.1 - - synckit@0.9.2: - dependencies: - '@pkgr/core': 0.1.1 - tslib: 2.8.1 - tabbable@6.2.0: {} - tapable@2.2.1: {} - - text-table@0.2.0: {} + tar@7.4.3: + dependencies: + '@isaacs/fs-minipass': 4.0.1 + chownr: 3.0.0 + minipass: 7.1.2 + minizlib: 3.0.1 + mkdirp: 3.0.1 + yallist: 5.0.0 tinybench@2.9.0: {} @@ -6040,31 +2879,12 @@ snapshots: tinyspy@3.0.2: {} - tlds@1.255.0: {} - to-regex-range@5.0.1: dependencies: is-number: 7.0.0 - toml-eslint-parser@0.10.0: - dependencies: - eslint-visitor-keys: 3.4.3 - trim-lines@3.0.1: {} - ts-api-utils@1.4.3(typescript@5.7.2): - dependencies: - typescript: 5.7.2 - - tsconfig-paths@3.15.0: - dependencies: - '@types/json5': 0.0.29 - json5: 1.0.2 - minimist: 1.2.8 - strip-bom: 3.0.0 - - tslib@2.8.1: {} - tsx@4.19.2: dependencies: esbuild: 0.23.1 @@ -6072,48 +2892,7 @@ snapshots: optionalDependencies: fsevents: 2.3.3 - type-check@0.4.0: - dependencies: - prelude-ls: 1.2.1 - - type-fest@0.20.2: {} - - type-fest@0.6.0: {} - - type-fest@0.8.1: {} - - typed-array-buffer@1.0.2: - dependencies: - call-bind: 1.0.7 - es-errors: 1.3.0 - is-typed-array: 1.1.13 - - typed-array-byte-length@1.0.1: - dependencies: - call-bind: 1.0.7 - for-each: 0.3.3 - gopd: 1.0.1 - has-proto: 1.0.3 - is-typed-array: 1.1.13 - - typed-array-byte-offset@1.0.3: - dependencies: - available-typed-arrays: 1.0.7 - call-bind: 1.0.7 - for-each: 0.3.3 - gopd: 1.0.1 - has-proto: 1.0.3 - is-typed-array: 1.1.13 - reflect.getprototypeof: 1.0.7 - - typed-array-length@1.0.7: - dependencies: - call-bind: 1.0.7 - for-each: 0.3.3 - gopd: 1.0.1 - is-typed-array: 1.1.13 - possible-typed-array-names: 1.0.0 - reflect.getprototypeof: 1.0.7 + typanion@3.14.0: {} typedoc-plugin-markdown@4.3.0(typedoc@0.27.1(typescript@5.7.2)): dependencies: @@ -6132,33 +2911,11 @@ snapshots: typescript: 5.7.2 yaml: 2.6.1 - typescript-eslint@8.16.0(eslint@8.57.1)(typescript@5.7.2): - dependencies: - '@typescript-eslint/eslint-plugin': 8.16.0(@typescript-eslint/parser@8.16.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2) - '@typescript-eslint/parser': 8.16.0(eslint@8.57.1)(typescript@5.7.2) - '@typescript-eslint/utils': 8.16.0(eslint@8.57.1)(typescript@5.7.2) - eslint: 8.57.1 - optionalDependencies: - typescript: 5.7.2 - transitivePeerDependencies: - - supports-color - typescript@5.7.2: {} uc.micro@2.1.0: {} - ufo@1.5.4: {} - - uint8arrays@3.0.0: - dependencies: - multiformats: 9.9.0 - - unbox-primitive@1.0.2: - dependencies: - call-bind: 1.0.7 - has-bigints: 1.0.2 - has-symbols: 1.0.3 - which-boxed-primitive: 1.0.2 + undici-types@6.20.0: {} unist-util-is@6.0.0: dependencies: @@ -6183,23 +2940,6 @@ snapshots: unist-util-is: 6.0.0 unist-util-visit-parents: 6.0.1 - update-browserslist-db@1.1.1(browserslist@4.24.2): - dependencies: - browserslist: 4.24.2 - escalade: 3.2.0 - picocolors: 1.1.1 - - uri-js@4.4.1: - dependencies: - punycode: 2.3.1 - - util-deprecate@1.0.2: {} - - validate-npm-package-license@3.0.4: - dependencies: - spdx-correct: 3.2.0 - spdx-expression-parse: 3.0.1 - vfile-message@4.0.2: dependencies: '@types/unist': 3.0.3 @@ -6210,13 +2950,13 @@ snapshots: '@types/unist': 3.0.3 vfile-message: 4.0.2 - vite-node@2.1.6: + vite-node@2.1.6(@types/node@22.10.7): dependencies: cac: 6.7.14 debug: 4.3.7 es-module-lexer: 1.5.4 pathe: 1.1.2 - vite: 5.4.11 + vite: 5.4.11(@types/node@22.10.7) transitivePeerDependencies: - '@types/node' - less @@ -6228,15 +2968,16 @@ snapshots: - supports-color - terser - vite@5.4.11: + vite@5.4.11(@types/node@22.10.7): dependencies: esbuild: 0.21.5 postcss: 8.4.49 rollup: 4.27.4 optionalDependencies: + '@types/node': 22.10.7 fsevents: 2.3.3 - vitepress@1.5.0(@algolia/client-search@5.15.0)(postcss@8.4.49)(search-insights@2.17.3)(typescript@5.7.2): + vitepress@1.5.0(@algolia/client-search@5.15.0)(@types/node@22.10.7)(postcss@8.4.49)(search-insights@2.17.3)(typescript@5.7.2): dependencies: '@docsearch/css': 3.8.0 '@docsearch/js': 3.8.0(@algolia/client-search@5.15.0)(search-insights@2.17.3) @@ -6245,7 +2986,7 @@ snapshots: '@shikijs/transformers': 1.24.0 '@shikijs/types': 1.24.0 '@types/markdown-it': 14.1.2 - '@vitejs/plugin-vue': 5.2.1(vite@5.4.11)(vue@3.5.13(typescript@5.7.2)) + '@vitejs/plugin-vue': 5.2.1(vite@5.4.11(@types/node@22.10.7))(vue@3.5.13(typescript@5.7.2)) '@vue/devtools-api': 7.6.7 '@vue/shared': 3.5.13 '@vueuse/core': 11.3.0(vue@3.5.13(typescript@5.7.2)) @@ -6254,7 +2995,7 @@ snapshots: mark.js: 8.11.1 minisearch: 7.1.1 shiki: 1.24.0 - vite: 5.4.11 + vite: 5.4.11(@types/node@22.10.7) vue: 3.5.13(typescript@5.7.2) optionalDependencies: postcss: 8.4.49 @@ -6286,10 +3027,10 @@ snapshots: - typescript - universal-cookie - vitest@2.1.6: + vitest@2.1.6(@types/node@22.10.7): dependencies: '@vitest/expect': 2.1.6 - '@vitest/mocker': 2.1.6(vite@5.4.11) + '@vitest/mocker': 2.1.6(vite@5.4.11(@types/node@22.10.7)) '@vitest/pretty-format': 2.1.6 '@vitest/runner': 2.1.6 '@vitest/snapshot': 2.1.6 @@ -6305,9 +3046,11 @@ snapshots: tinyexec: 0.3.1 tinypool: 1.0.2 tinyrainbow: 1.2.0 - vite: 5.4.11 - vite-node: 2.1.6 + vite: 5.4.11(@types/node@22.10.7) + vite-node: 2.1.6(@types/node@22.10.7) why-is-node-running: 2.3.0 + optionalDependencies: + '@types/node': 22.10.7 transitivePeerDependencies: - less - lightningcss @@ -6323,19 +3066,6 @@ snapshots: dependencies: vue: 3.5.13(typescript@5.7.2) - vue-eslint-parser@9.4.3(eslint@8.57.1): - dependencies: - debug: 4.3.7 - eslint: 8.57.1 - eslint-scope: 7.2.2 - eslint-visitor-keys: 3.4.3 - espree: 9.6.1 - esquery: 1.6.0 - lodash: 4.17.21 - semver: 7.6.3 - transitivePeerDependencies: - - supports-color - vue@3.5.13(typescript@5.7.2): dependencies: '@vue/compiler-dom': 3.5.13 @@ -6346,45 +3076,6 @@ snapshots: optionalDependencies: typescript: 5.7.2 - which-boxed-primitive@1.0.2: - dependencies: - is-bigint: 1.0.4 - is-boolean-object: 1.1.2 - is-number-object: 1.0.7 - is-string: 1.0.7 - is-symbol: 1.0.4 - - which-builtin-type@1.2.0: - dependencies: - call-bind: 1.0.7 - function.prototype.name: 1.1.6 - has-tostringtag: 1.0.2 - is-async-function: 2.0.0 - is-date-object: 1.0.5 - is-finalizationregistry: 1.1.0 - is-generator-function: 1.0.10 - is-regex: 1.1.4 - is-weakref: 1.0.2 - isarray: 2.0.5 - which-boxed-primitive: 1.0.2 - which-collection: 1.0.2 - which-typed-array: 1.1.16 - - which-collection@1.0.2: - dependencies: - is-map: 2.0.3 - is-set: 2.0.3 - is-weakmap: 2.0.2 - is-weakset: 2.0.3 - - which-typed-array@1.1.16: - dependencies: - available-typed-arrays: 1.0.7 - call-bind: 1.0.7 - for-each: 0.3.3 - gopd: 1.0.1 - has-tostringtag: 1.0.2 - which@2.0.2: dependencies: isexe: 2.0.0 @@ -6394,8 +3085,6 @@ snapshots: siginfo: 2.0.0 stackback: 0.0.2 - word-wrap@1.2.5: {} - wrap-ansi@7.0.0: dependencies: ansi-styles: 4.3.0 @@ -6408,34 +3097,8 @@ snapshots: string-width: 5.1.2 strip-ansi: 7.1.0 - wrappy@1.0.2: {} - - xml-name-validator@4.0.0: {} - - y18n@5.0.8: {} - - yaml-eslint-parser@1.2.3: - dependencies: - eslint-visitor-keys: 3.4.3 - lodash: 4.17.21 - yaml: 2.6.1 + yallist@5.0.0: {} yaml@2.6.1: {} - yargs-parser@21.1.1: {} - - yargs@17.7.2: - dependencies: - cliui: 8.0.1 - escalade: 3.2.0 - get-caller-file: 2.0.5 - require-directory: 2.1.1 - string-width: 4.2.3 - y18n: 5.0.8 - yargs-parser: 21.1.1 - - yocto-queue@0.1.0: {} - - zod@3.23.8: {} - zwitch@2.0.4: {} From 1ff41a9bf473d366324c1d86d6a100f9742d7b4c Mon Sep 17 00:00:00 2001 From: TAKAHASHI Shuuji Date: Sat, 11 Jan 2025 14:00:44 +0900 Subject: [PATCH 09/21] fix: generate docs for client package instead of core package --- docs/typedoc.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/typedoc.json b/docs/typedoc.json index 4440c7f..1174dad 100644 --- a/docs/typedoc.json +++ b/docs/typedoc.json @@ -1,6 +1,6 @@ { "$schema": "https://typedoc-plugin-markdown.org/schema.json", - "entryPoints": ["../packages/core"], + "entryPoints": ["../packages/client"], "plugin": ["typedoc-plugin-markdown", "typedoc-vitepress-theme"], "name": "Packages Example", "entryPointStrategy": "packages", @@ -8,7 +8,7 @@ "includeVersion": true, "entryPoints": ["src/*.ts"] }, - "basePath": "../packages/core/src", + "basePath": "../packages/client/src", "readme": "none", "entryFileName": "index.md", "mergeReadme": true, From b57df426254d93e4fa7588b0619a9a9811be79c1 Mon Sep 17 00:00:00 2001 From: TAKAHASHI Shuuji Date: Sat, 11 Jan 2025 14:01:38 +0900 Subject: [PATCH 10/21] chore: remove unused function --- packages/client/src/bsky/index.test.ts | 8 -------- 1 file changed, 8 deletions(-) diff --git a/packages/client/src/bsky/index.test.ts b/packages/client/src/bsky/index.test.ts index 211ef01..9e7686c 100644 --- a/packages/client/src/bsky/index.test.ts +++ b/packages/client/src/bsky/index.test.ts @@ -2,14 +2,6 @@ import { CredentialManager } from '@atcute/client'; import { describe, expect, it } from 'vitest'; import { Tsky } from '~/index'; -const formatSecret = (secret: string | undefined) => { - if (!secret) { - throw new Error('Secret is required'); - } - - return secret.replace(/^tsky /g, '').trim(); -}; - const TEST_CREDENTIALS = { alice: { handle: 'alice.tsky.dev', From 058d9b7ea474bd7b62560f68dd40f0440690d06c Mon Sep 17 00:00:00 2001 From: TAKAHASHI Shuuji Date: Fri, 17 Jan 2025 02:38:31 +0900 Subject: [PATCH 11/21] docs: fix package name `@tsky/docs` to fix pnpm run filter --- docs/package.json | 2 +- packages/client/tsconfig.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/package.json b/docs/package.json index 345afb2..a23d3bf 100644 --- a/docs/package.json +++ b/docs/package.json @@ -1,5 +1,5 @@ { - "name": "tsky-docs", + "name": "@tsky/docs", "version": "1.0.0", "private": true, "main": "index.js", diff --git a/packages/client/tsconfig.json b/packages/client/tsconfig.json index 9d459d6..3bc3fa3 100644 --- a/packages/client/tsconfig.json +++ b/packages/client/tsconfig.json @@ -36,6 +36,6 @@ "theme": "default", "exclude": "**/+(__tests__|__mocks__)/*", "excludePrivate": true, - "excludeProtected": true - } + "excludeProtected": true, + }, } From f326af1d1efb1d55bcb9e29d816a9725fad336f1 Mon Sep 17 00:00:00 2001 From: TAKAHASHI Shuuji Date: Fri, 17 Jan 2025 11:00:35 +0900 Subject: [PATCH 12/21] docs: fix dead link error that block build process --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f12ce52..902a887 100644 --- a/README.md +++ b/README.md @@ -82,4 +82,4 @@ If you want to contribute to this project, please read the [CONTRIBUTING.md](CON ## License -This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details. +This project is licensed under the MIT License - see the [LICENSE](https://github.com/tsky-dev/tsky/blob/main/LICENSE) file for details. From 03a129d9e9608c9862cd5f2da3bfbd0ca3869b76 Mon Sep 17 00:00:00 2001 From: TAKAHASHI Shuuji Date: Fri, 17 Jan 2025 01:31:51 +0900 Subject: [PATCH 13/21] docs: add tsky logo image on hero page --- README.md | 2 +- docs/index.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 902a887..1663ae0 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@

- +

tsky

diff --git a/docs/index.md b/docs/index.md index 8d11a40..87f6881 100644 --- a/docs/index.md +++ b/docs/index.md @@ -4,6 +4,7 @@ layout: home hero: name: "tsky" + image: /tsky-logo.png text: "A Bluesky API client for nimble apps and tools" tagline: A Bluesky API client for nimble apps and tools actions: From abd286b7613f26fa3a2df155448fdf1a578e786b Mon Sep 17 00:00:00 2001 From: TAKAHASHI Shuuji Date: Sun, 19 Jan 2025 17:50:10 +0900 Subject: [PATCH 14/21] build: ensure rebuild `@tsky/lex-cli` and `@tsky/lexicons` during installation --- packages/lex-cli/package.json | 2 +- packages/lexicons/package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/lex-cli/package.json b/packages/lex-cli/package.json index bf44557..cba076f 100644 --- a/packages/lex-cli/package.json +++ b/packages/lex-cli/package.json @@ -13,7 +13,7 @@ "scripts": { "build": "tsc", "clean": "rm -rf dist", - "prepublish": "pnpm run clean && pnpm run build" + "prepare": "pnpm run clean && pnpm run build" }, "dependencies": { "clipanion": "4.0.0-rc.4", diff --git a/packages/lexicons/package.json b/packages/lexicons/package.json index 877a9bb..fbdb0e1 100644 --- a/packages/lexicons/package.json +++ b/packages/lexicons/package.json @@ -20,7 +20,7 @@ "build": "tsx ./scripts/generate-types.ts && tsc", "check-version-change": "tsx ./scripts/check-version-change.ts && tsc", "clean": "rm -rf dist && rm -rf lexicons", - "prepublish": "pnpm run clean && pnpm run build" + "prepare": "pnpm run clean && pnpm run build" }, "devDependencies": { "@tsky/lex-cli": "workspace:*", From 79f138d6cf99e4d54ad1e12e83e42d234e283956 Mon Sep 17 00:00:00 2001 From: TAKAHASHI Shuuji Date: Mon, 20 Jan 2025 01:18:48 +0900 Subject: [PATCH 15/21] chore: fix yet another CRLF error --- docs/typedoc.json | 58 +++++++++++++++++++++++------------------------ 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/docs/typedoc.json b/docs/typedoc.json index 1174dad..47a2a96 100644 --- a/docs/typedoc.json +++ b/docs/typedoc.json @@ -1,29 +1,29 @@ -{ - "$schema": "https://typedoc-plugin-markdown.org/schema.json", - "entryPoints": ["../packages/client"], - "plugin": ["typedoc-plugin-markdown", "typedoc-vitepress-theme"], - "name": "Packages Example", - "entryPointStrategy": "packages", - "packageOptions": { - "includeVersion": true, - "entryPoints": ["src/*.ts"] - }, - "basePath": "../packages/client/src", - "readme": "none", - "entryFileName": "index.md", - "mergeReadme": true, - "indexFormat": "table", - "useCodeBlocks": true, - "textContentMappings": { - "title.indexPage": "API Reference", - "title.memberPage": "{name}" - }, - "outputs": [ - { - "name": "markdown", - "path": "./api" - } - ], - "hidePageHeader": false, - "logLevel": "Verbose" -} +{ + "$schema": "https://typedoc-plugin-markdown.org/schema.json", + "entryPoints": ["../packages/client"], + "plugin": ["typedoc-plugin-markdown", "typedoc-vitepress-theme"], + "name": "Packages Example", + "entryPointStrategy": "packages", + "packageOptions": { + "includeVersion": true, + "entryPoints": ["src/*.ts"] + }, + "basePath": "../packages/client/src", + "readme": "none", + "entryFileName": "index.md", + "mergeReadme": true, + "indexFormat": "table", + "useCodeBlocks": true, + "textContentMappings": { + "title.indexPage": "API Reference", + "title.memberPage": "{name}" + }, + "outputs": [ + { + "name": "markdown", + "path": "./api" + } + ], + "hidePageHeader": false, + "logLevel": "Verbose" +} From 9d02f70427bc64f82992ab3c9c7914a5bb898bf5 Mon Sep 17 00:00:00 2001 From: TAKAHASHI Shuuji Date: Fri, 24 Jan 2025 02:00:41 +0900 Subject: [PATCH 16/21] chore: update `pnpm-lock.yaml` --- pnpm-lock.yaml | 127 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 127 insertions(+) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 416b6f0..84fc963 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -17,6 +17,15 @@ importers: docs: devDependencies: + typedoc: + specifier: ^0.27.1 + version: 0.27.6(typescript@5.7.2) + typedoc-plugin-markdown: + specifier: ^4.3.0 + version: 4.4.1(typedoc@0.27.6(typescript@5.7.2)) + typedoc-vitepress-theme: + specifier: ^1.1.0 + version: 1.1.2(typedoc-plugin-markdown@4.4.1(typedoc@0.27.6(typescript@5.7.2))) vitepress: specifier: ^1.5.0 version: 1.5.0(@algolia/client-search@5.15.0)(@types/node@22.10.1)(postcss@8.4.49)(search-insights@2.17.3)(typescript@5.7.2) @@ -541,6 +550,9 @@ packages: cpu: [x64] os: [win32] + '@gerrit0/mini-shiki@1.27.2': + resolution: {integrity: sha512-GeWyHz8ao2gBiUW4OJnQDxXQnFgZQwwQk05t/CVVgNBN7/rK8XZ7xY6YhLVv9tH3VppWWmr9DCl3MwemB/i+Og==} + '@iconify-json/simple-icons@1.2.13': resolution: {integrity: sha512-rRQjMoIt/kPfaD+fnBC9YZQpso3hkn8xPeadl+YWhscJ5SVUCdB9oTeR9VIpt+/5Yi8vEkh2UOWFPq4lz3ee2A==} @@ -736,12 +748,21 @@ packages: '@shikijs/engine-oniguruma@1.24.0': resolution: {integrity: sha512-Eua0qNOL73Y82lGA4GF5P+G2+VXX9XnuUxkiUuwcxQPH4wom+tE39kZpBFXfUuwNYxHSkrSxpB1p4kyRW0moSg==} + '@shikijs/engine-oniguruma@1.29.1': + resolution: {integrity: sha512-gSt2WhLNgEeLstcweQOSp+C+MhOpTsgdNXRqr3zP6M+BUBZ8Md9OU2BYwUYsALBxHza7hwaIWtFHjQ/aOOychw==} + '@shikijs/transformers@1.24.0': resolution: {integrity: sha512-Qf/hby+PRPkoHncjYnJf5svK1aCsOUtQhuLzKPnmeXJtuUZCmbH0pTpdNtXe9tgln/RHlyRJnv7q46HHS1sO0Q==} '@shikijs/types@1.24.0': resolution: {integrity: sha512-aptbEuq1Pk88DMlCe+FzXNnBZ17LCiLIGWAeCWhoFDzia5Q5Krx3DgnULLiouSdd6+LUM39XwXGppqYE0Ghtug==} + '@shikijs/types@1.29.1': + resolution: {integrity: sha512-aBqAuhYRp5vSir3Pc9+QPu9WESBOjUo03ao0IHLC4TyTioSsp/SkbAZSrIH4ghYYC1T1KTEpRSBa83bas4RnPA==} + + '@shikijs/vscode-textmate@10.0.1': + resolution: {integrity: sha512-fTIQwLF+Qhuws31iw7Ncl1R3HUDtGwIipiJ9iU+UsDUwMhegFcQKQHd51nZjb7CArq0MvON8rbgCGQYWHUKAdg==} + '@shikijs/vscode-textmate@9.3.0': resolution: {integrity: sha512-jn7/7ky30idSkd/O5yDBfAnVt+JJpepofP/POZ1iMOxK59cOfqIgg/Dj0eFsjOTMw+4ycJN0uhZH/Eb0bs/EUA==} @@ -922,6 +943,9 @@ packages: resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} engines: {node: '>=12'} + argparse@2.0.1: + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + assertion-error@2.0.1: resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==} engines: {node: '>=12'} @@ -1149,21 +1173,34 @@ packages: jackspeak@3.4.3: resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==} + linkify-it@5.0.0: + resolution: {integrity: sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==} + loupe@3.1.2: resolution: {integrity: sha512-23I4pFZHmAemUnz8WZXbYRSKYj801VDaNv9ETuMh7IrMc7VuVVSo+Z9iLE3ni30+U48iDWfi30d3twAXBYmnCg==} lru-cache@10.4.3: resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} + lunr@2.3.9: + resolution: {integrity: sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow==} + magic-string@0.30.14: resolution: {integrity: sha512-5c99P1WKTed11ZC0HMJOj6CDIue6F8ySu+bJL+85q1zBEIY8IklrJ1eiKC2NDRh3Ct3FcvmJPyQHb9erXMTJNw==} mark.js@8.11.1: resolution: {integrity: sha512-1I+1qpDt4idfgLQG+BNWmrqku+7/2bi5nLf4YwF8y8zXvmfiTBY3PV3ZibfrjBueCByROpuBjLLFCajqkgYoLQ==} + markdown-it@14.1.0: + resolution: {integrity: sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==} + hasBin: true + mdast-util-to-hast@13.2.0: resolution: {integrity: sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==} + mdurl@2.0.0: + resolution: {integrity: sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==} + merge2@1.4.1: resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} engines: {node: '>= 8'} @@ -1286,6 +1323,10 @@ packages: property-information@6.5.0: resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==} + punycode.js@2.3.1: + resolution: {integrity: sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==} + engines: {node: '>=6'} + queue-microtask@1.2.3: resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} @@ -1429,11 +1470,32 @@ packages: typanion@3.14.0: resolution: {integrity: sha512-ZW/lVMRabETuYCd9O9ZvMhAh8GslSqaUjxmK/JLPCh6l73CvLBiuXswj/+7LdnWOgYsQ130FqLzFz5aGT4I3Ug==} + typedoc-plugin-markdown@4.4.1: + resolution: {integrity: sha512-fx23nSCvewI9IR8lzIYtzDphETcgTDuxKcmHKGD4lo36oexC+B1k4NaCOY58Snqb4OlE8OXDAGVcQXYYuLRCNw==} + engines: {node: '>= 18'} + peerDependencies: + typedoc: 0.27.x + + typedoc-vitepress-theme@1.1.2: + resolution: {integrity: sha512-hQvCZRr5uKDqY1bRuY1+eNTNn6d4TE4OP5pnw65Y7WGgajkJW9X1/lVJK2UJpcwCmwkdjw1QIO49H9JQlxWhhw==} + peerDependencies: + typedoc-plugin-markdown: '>=4.4.0' + + typedoc@0.27.6: + resolution: {integrity: sha512-oBFRoh2Px6jFx366db0lLlihcalq/JzyCVp7Vaq1yphL/tbgx2e+bkpkCgJPunaPvPwoTOXSwasfklWHm7GfAw==} + engines: {node: '>= 18'} + hasBin: true + peerDependencies: + typescript: 5.0.x || 5.1.x || 5.2.x || 5.3.x || 5.4.x || 5.5.x || 5.6.x || 5.7.x + typescript@5.7.2: resolution: {integrity: sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==} engines: {node: '>=14.17'} hasBin: true + uc.micro@2.1.0: + resolution: {integrity: sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==} + undici-types@6.20.0: resolution: {integrity: sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==} @@ -1572,6 +1634,11 @@ packages: resolution: {integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==} engines: {node: '>=18'} + yaml@2.7.0: + resolution: {integrity: sha512-+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA==} + engines: {node: '>= 14'} + hasBin: true + zwitch@2.0.4: resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} @@ -1897,6 +1964,12 @@ snapshots: '@esbuild/win32-x64@0.23.1': optional: true + '@gerrit0/mini-shiki@1.27.2': + dependencies: + '@shikijs/engine-oniguruma': 1.29.1 + '@shikijs/types': 1.29.1 + '@shikijs/vscode-textmate': 10.0.1 + '@iconify-json/simple-icons@1.2.13': dependencies: '@iconify/types': 2.0.0 @@ -2061,6 +2134,11 @@ snapshots: '@shikijs/types': 1.24.0 '@shikijs/vscode-textmate': 9.3.0 + '@shikijs/engine-oniguruma@1.29.1': + dependencies: + '@shikijs/types': 1.29.1 + '@shikijs/vscode-textmate': 10.0.1 + '@shikijs/transformers@1.24.0': dependencies: shiki: 1.24.0 @@ -2070,6 +2148,13 @@ snapshots: '@shikijs/vscode-textmate': 9.3.0 '@types/hast': 3.0.4 + '@shikijs/types@1.29.1': + dependencies: + '@shikijs/vscode-textmate': 10.0.1 + '@types/hast': 3.0.4 + + '@shikijs/vscode-textmate@10.0.1': {} + '@shikijs/vscode-textmate@9.3.0': {} '@types/estree@1.0.6': {} @@ -2276,6 +2361,8 @@ snapshots: ansi-styles@6.2.1: {} + argparse@2.0.1: {} + assertion-error@2.0.1: {} balanced-match@1.0.2: {} @@ -2528,16 +2615,31 @@ snapshots: optionalDependencies: '@pkgjs/parseargs': 0.11.0 + linkify-it@5.0.0: + dependencies: + uc.micro: 2.1.0 + loupe@3.1.2: {} lru-cache@10.4.3: {} + lunr@2.3.9: {} + magic-string@0.30.14: dependencies: '@jridgewell/sourcemap-codec': 1.5.0 mark.js@8.11.1: {} + markdown-it@14.1.0: + dependencies: + argparse: 2.0.1 + entities: 4.5.0 + linkify-it: 5.0.0 + mdurl: 2.0.0 + punycode.js: 2.3.1 + uc.micro: 2.1.0 + mdast-util-to-hast@13.2.0: dependencies: '@types/hast': 3.0.4 @@ -2550,6 +2652,8 @@ snapshots: unist-util-visit: 5.0.0 vfile: 6.0.3 + mdurl@2.0.0: {} + merge2@1.4.1: {} micromark-util-character@2.1.1: @@ -2655,6 +2759,8 @@ snapshots: property-information@6.5.0: {} + punycode.js@2.3.1: {} + queue-microtask@1.2.3: {} regex-recursion@4.3.0: @@ -2809,8 +2915,27 @@ snapshots: typanion@3.14.0: {} + typedoc-plugin-markdown@4.4.1(typedoc@0.27.6(typescript@5.7.2)): + dependencies: + typedoc: 0.27.6(typescript@5.7.2) + + typedoc-vitepress-theme@1.1.2(typedoc-plugin-markdown@4.4.1(typedoc@0.27.6(typescript@5.7.2))): + dependencies: + typedoc-plugin-markdown: 4.4.1(typedoc@0.27.6(typescript@5.7.2)) + + typedoc@0.27.6(typescript@5.7.2): + dependencies: + '@gerrit0/mini-shiki': 1.27.2 + lunr: 2.3.9 + markdown-it: 14.1.0 + minimatch: 9.0.5 + typescript: 5.7.2 + yaml: 2.7.0 + typescript@5.7.2: {} + uc.micro@2.1.0: {} + undici-types@6.20.0: {} unist-util-is@6.0.0: @@ -2995,4 +3120,6 @@ snapshots: yallist@5.0.0: {} + yaml@2.7.0: {} + zwitch@2.0.4: {} From f4983deb0aa9c3c84106899f4679b5f69d20333c Mon Sep 17 00:00:00 2001 From: TAKAHASHI Shuuji Date: Fri, 24 Jan 2025 02:12:56 +0900 Subject: [PATCH 17/21] chore: ignore generated `docs/api/` directory from biome checking --- biome.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/biome.json b/biome.json index 122ed63..49257bb 100644 --- a/biome.json +++ b/biome.json @@ -17,7 +17,8 @@ "node_modules", "package.json", "tsconfig.json", - "packages/lexicons/src/lib/lexicons.ts" + "packages/lexicons/src/lib/lexicons.ts", + "docs/api/" ] }, "linter": { From 0d46e592f571b4ea7c8c954c3f45bba7ba0668a1 Mon Sep 17 00:00:00 2001 From: TAKAHASHI Shuuji Date: Fri, 24 Jan 2025 17:09:56 +0900 Subject: [PATCH 18/21] chore: add `.nvmrc` to allow netlify to choose collect node version --- .nvmrc | 1 + 1 file changed, 1 insertion(+) create mode 100644 .nvmrc diff --git a/.nvmrc b/.nvmrc new file mode 100644 index 0000000..2bd5a0a --- /dev/null +++ b/.nvmrc @@ -0,0 +1 @@ +22 From 335dfb24dd95cf9589fcfb3a5177df9e192d644d Mon Sep 17 00:00:00 2001 From: TAKAHASHI Shuuji Date: Sat, 25 Jan 2025 11:18:11 +0900 Subject: [PATCH 19/21] chore: move `.nvmrc` under `docs/` --- .nvmrc => docs/.nvmrc | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .nvmrc => docs/.nvmrc (100%) diff --git a/.nvmrc b/docs/.nvmrc similarity index 100% rename from .nvmrc rename to docs/.nvmrc From c2e2872421dc2d99eaec1f2d81abbdecb4f69fe0 Mon Sep 17 00:00:00 2001 From: TAKAHASHI Shuuji Date: Sat, 25 Jan 2025 13:21:54 +0900 Subject: [PATCH 20/21] docs: fix missing logo on home page --- docs/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.md b/docs/index.md index 87f6881..b8e6319 100644 --- a/docs/index.md +++ b/docs/index.md @@ -4,7 +4,7 @@ layout: home hero: name: "tsky" - image: /tsky-logo.png + image: https://raw.githubusercontent.com/tsky-dev/tsky/refs/heads/main/.github/assets/tsky-logo.png text: "A Bluesky API client for nimble apps and tools" tagline: A Bluesky API client for nimble apps and tools actions: From 73175c4950977ce40672bbcdb488a179dfc5abd7 Mon Sep 17 00:00:00 2001 From: TAKAHASHI Shuuji Date: Sat, 25 Jan 2025 13:48:37 +0900 Subject: [PATCH 21/21] chore: update `pnpm-lock.yaml` --- pnpm-lock.yaml | 127 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 127 insertions(+) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index ba63b0e..e50b35a 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -17,6 +17,15 @@ importers: docs: devDependencies: + typedoc: + specifier: ^0.27.1 + version: 0.27.6(typescript@5.7.2) + typedoc-plugin-markdown: + specifier: ^4.3.0 + version: 4.4.1(typedoc@0.27.6(typescript@5.7.2)) + typedoc-vitepress-theme: + specifier: ^1.1.0 + version: 1.1.2(typedoc-plugin-markdown@4.4.1(typedoc@0.27.6(typescript@5.7.2))) vitepress: specifier: ^1.5.0 version: 1.5.0(@algolia/client-search@5.15.0)(@types/node@22.10.1)(postcss@8.4.49)(search-insights@2.17.3)(typescript@5.7.2) @@ -603,6 +612,9 @@ packages: cpu: [x64] os: [win32] + '@gerrit0/mini-shiki@1.27.2': + resolution: {integrity: sha512-GeWyHz8ao2gBiUW4OJnQDxXQnFgZQwwQk05t/CVVgNBN7/rK8XZ7xY6YhLVv9tH3VppWWmr9DCl3MwemB/i+Og==} + '@iconify-json/simple-icons@1.2.13': resolution: {integrity: sha512-rRQjMoIt/kPfaD+fnBC9YZQpso3hkn8xPeadl+YWhscJ5SVUCdB9oTeR9VIpt+/5Yi8vEkh2UOWFPq4lz3ee2A==} @@ -817,12 +829,21 @@ packages: '@shikijs/engine-oniguruma@1.24.0': resolution: {integrity: sha512-Eua0qNOL73Y82lGA4GF5P+G2+VXX9XnuUxkiUuwcxQPH4wom+tE39kZpBFXfUuwNYxHSkrSxpB1p4kyRW0moSg==} + '@shikijs/engine-oniguruma@1.29.1': + resolution: {integrity: sha512-gSt2WhLNgEeLstcweQOSp+C+MhOpTsgdNXRqr3zP6M+BUBZ8Md9OU2BYwUYsALBxHza7hwaIWtFHjQ/aOOychw==} + '@shikijs/transformers@1.24.0': resolution: {integrity: sha512-Qf/hby+PRPkoHncjYnJf5svK1aCsOUtQhuLzKPnmeXJtuUZCmbH0pTpdNtXe9tgln/RHlyRJnv7q46HHS1sO0Q==} '@shikijs/types@1.24.0': resolution: {integrity: sha512-aptbEuq1Pk88DMlCe+FzXNnBZ17LCiLIGWAeCWhoFDzia5Q5Krx3DgnULLiouSdd6+LUM39XwXGppqYE0Ghtug==} + '@shikijs/types@1.29.1': + resolution: {integrity: sha512-aBqAuhYRp5vSir3Pc9+QPu9WESBOjUo03ao0IHLC4TyTioSsp/SkbAZSrIH4ghYYC1T1KTEpRSBa83bas4RnPA==} + + '@shikijs/vscode-textmate@10.0.1': + resolution: {integrity: sha512-fTIQwLF+Qhuws31iw7Ncl1R3HUDtGwIipiJ9iU+UsDUwMhegFcQKQHd51nZjb7CArq0MvON8rbgCGQYWHUKAdg==} + '@shikijs/vscode-textmate@9.3.0': resolution: {integrity: sha512-jn7/7ky30idSkd/O5yDBfAnVt+JJpepofP/POZ1iMOxK59cOfqIgg/Dj0eFsjOTMw+4ycJN0uhZH/Eb0bs/EUA==} @@ -1008,6 +1029,9 @@ packages: resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} engines: {node: '>=12'} + argparse@2.0.1: + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + assertion-error@2.0.1: resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==} engines: {node: '>=12'} @@ -1301,6 +1325,9 @@ packages: engines: {node: '>=6'} hasBin: true + linkify-it@5.0.0: + resolution: {integrity: sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==} + loupe@3.1.2: resolution: {integrity: sha512-23I4pFZHmAemUnz8WZXbYRSKYj801VDaNv9ETuMh7IrMc7VuVVSo+Z9iLE3ni30+U48iDWfi30d3twAXBYmnCg==} @@ -1310,6 +1337,9 @@ packages: lru-cache@5.1.1: resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} + lunr@2.3.9: + resolution: {integrity: sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow==} + magic-string@0.30.14: resolution: {integrity: sha512-5c99P1WKTed11ZC0HMJOj6CDIue6F8ySu+bJL+85q1zBEIY8IklrJ1eiKC2NDRh3Ct3FcvmJPyQHb9erXMTJNw==} @@ -1323,9 +1353,16 @@ packages: mark.js@8.11.1: resolution: {integrity: sha512-1I+1qpDt4idfgLQG+BNWmrqku+7/2bi5nLf4YwF8y8zXvmfiTBY3PV3ZibfrjBueCByROpuBjLLFCajqkgYoLQ==} + markdown-it@14.1.0: + resolution: {integrity: sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==} + hasBin: true + mdast-util-to-hast@13.2.0: resolution: {integrity: sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==} + mdurl@2.0.0: + resolution: {integrity: sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==} + merge2@1.4.1: resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} engines: {node: '>= 8'} @@ -1451,6 +1488,10 @@ packages: property-information@6.5.0: resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==} + punycode.js@2.3.1: + resolution: {integrity: sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==} + engines: {node: '>=6'} + queue-microtask@1.2.3: resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} @@ -1611,11 +1652,32 @@ packages: typanion@3.14.0: resolution: {integrity: sha512-ZW/lVMRabETuYCd9O9ZvMhAh8GslSqaUjxmK/JLPCh6l73CvLBiuXswj/+7LdnWOgYsQ130FqLzFz5aGT4I3Ug==} + typedoc-plugin-markdown@4.4.1: + resolution: {integrity: sha512-fx23nSCvewI9IR8lzIYtzDphETcgTDuxKcmHKGD4lo36oexC+B1k4NaCOY58Snqb4OlE8OXDAGVcQXYYuLRCNw==} + engines: {node: '>= 18'} + peerDependencies: + typedoc: 0.27.x + + typedoc-vitepress-theme@1.1.2: + resolution: {integrity: sha512-hQvCZRr5uKDqY1bRuY1+eNTNn6d4TE4OP5pnw65Y7WGgajkJW9X1/lVJK2UJpcwCmwkdjw1QIO49H9JQlxWhhw==} + peerDependencies: + typedoc-plugin-markdown: '>=4.4.0' + + typedoc@0.27.6: + resolution: {integrity: sha512-oBFRoh2Px6jFx366db0lLlihcalq/JzyCVp7Vaq1yphL/tbgx2e+bkpkCgJPunaPvPwoTOXSwasfklWHm7GfAw==} + engines: {node: '>= 18'} + hasBin: true + peerDependencies: + typescript: 5.0.x || 5.1.x || 5.2.x || 5.3.x || 5.4.x || 5.5.x || 5.6.x || 5.7.x + typescript@5.7.2: resolution: {integrity: sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==} engines: {node: '>=14.17'} hasBin: true + uc.micro@2.1.0: + resolution: {integrity: sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==} + undici-types@6.20.0: resolution: {integrity: sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==} @@ -1763,6 +1825,11 @@ packages: resolution: {integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==} engines: {node: '>=18'} + yaml@2.7.0: + resolution: {integrity: sha512-+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA==} + engines: {node: '>= 14'} + hasBin: true + zwitch@2.0.4: resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} @@ -2187,6 +2254,12 @@ snapshots: '@esbuild/win32-x64@0.23.1': optional: true + '@gerrit0/mini-shiki@1.27.2': + dependencies: + '@shikijs/engine-oniguruma': 1.29.1 + '@shikijs/types': 1.29.1 + '@shikijs/vscode-textmate': 10.0.1 + '@iconify-json/simple-icons@1.2.13': dependencies: '@iconify/types': 2.0.0 @@ -2368,6 +2441,11 @@ snapshots: '@shikijs/types': 1.24.0 '@shikijs/vscode-textmate': 9.3.0 + '@shikijs/engine-oniguruma@1.29.1': + dependencies: + '@shikijs/types': 1.29.1 + '@shikijs/vscode-textmate': 10.0.1 + '@shikijs/transformers@1.24.0': dependencies: shiki: 1.24.0 @@ -2377,6 +2455,13 @@ snapshots: '@shikijs/vscode-textmate': 9.3.0 '@types/hast': 3.0.4 + '@shikijs/types@1.29.1': + dependencies: + '@shikijs/vscode-textmate': 10.0.1 + '@types/hast': 3.0.4 + + '@shikijs/vscode-textmate@10.0.1': {} + '@shikijs/vscode-textmate@9.3.0': {} '@types/estree@1.0.6': {} @@ -2599,6 +2684,8 @@ snapshots: ansi-styles@6.2.1: {} + argparse@2.0.1: {} + assertion-error@2.0.1: {} balanced-match@1.0.2: {} @@ -2911,6 +2998,10 @@ snapshots: json5@2.2.3: {} + linkify-it@5.0.0: + dependencies: + uc.micro: 2.1.0 + loupe@3.1.2: {} lru-cache@10.4.3: {} @@ -2919,6 +3010,8 @@ snapshots: dependencies: yallist: 3.1.1 + lunr@2.3.9: {} + magic-string@0.30.14: dependencies: '@jridgewell/sourcemap-codec': 1.5.0 @@ -2935,6 +3028,15 @@ snapshots: mark.js@8.11.1: {} + markdown-it@14.1.0: + dependencies: + argparse: 2.0.1 + entities: 4.5.0 + linkify-it: 5.0.0 + mdurl: 2.0.0 + punycode.js: 2.3.1 + uc.micro: 2.1.0 + mdast-util-to-hast@13.2.0: dependencies: '@types/hast': 3.0.4 @@ -2947,6 +3049,8 @@ snapshots: unist-util-visit: 5.0.0 vfile: 6.0.3 + mdurl@2.0.0: {} + merge2@1.4.1: {} micromark-util-character@2.1.1: @@ -3054,6 +3158,8 @@ snapshots: property-information@6.5.0: {} + punycode.js@2.3.1: {} + queue-microtask@1.2.3: {} regex-recursion@4.3.0: @@ -3222,8 +3328,27 @@ snapshots: typanion@3.14.0: {} + typedoc-plugin-markdown@4.4.1(typedoc@0.27.6(typescript@5.7.2)): + dependencies: + typedoc: 0.27.6(typescript@5.7.2) + + typedoc-vitepress-theme@1.1.2(typedoc-plugin-markdown@4.4.1(typedoc@0.27.6(typescript@5.7.2))): + dependencies: + typedoc-plugin-markdown: 4.4.1(typedoc@0.27.6(typescript@5.7.2)) + + typedoc@0.27.6(typescript@5.7.2): + dependencies: + '@gerrit0/mini-shiki': 1.27.2 + lunr: 2.3.9 + markdown-it: 14.1.0 + minimatch: 9.0.5 + typescript: 5.7.2 + yaml: 2.7.0 + typescript@5.7.2: {} + uc.micro@2.1.0: {} + undici-types@6.20.0: {} unist-util-is@6.0.0: @@ -3416,4 +3541,6 @@ snapshots: yallist@5.0.0: {} + yaml@2.7.0: {} + zwitch@2.0.4: {}