@atcute/client 4.0.0 → 4.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -9
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -9,8 +9,8 @@ lightweight and cute API client for AT Protocol.
|
|
|
9
9
|
```ts
|
|
10
10
|
import { Client, CredentialManager, ok, simpleFetchHandler } from '@atcute/client';
|
|
11
11
|
|
|
12
|
-
// import
|
|
13
|
-
import '@atcute/bluesky
|
|
12
|
+
// import lexicons
|
|
13
|
+
import type {} from '@atcute/bluesky';
|
|
14
14
|
|
|
15
15
|
// basic usage
|
|
16
16
|
{
|
|
@@ -86,11 +86,13 @@ import '@atcute/bluesky/lexicons';
|
|
|
86
86
|
}
|
|
87
87
|
```
|
|
88
88
|
|
|
89
|
-
by default, the API client
|
|
90
|
-
|
|
91
|
-
these with optional definition packages:
|
|
89
|
+
by default, the API client ships with no queries or procedures. you can extend the client by
|
|
90
|
+
installing one of these definition packages.
|
|
92
91
|
|
|
93
|
-
- [`@atcute/
|
|
94
|
-
- [`@atcute/
|
|
95
|
-
- [`@atcute/
|
|
96
|
-
- [`@atcute/
|
|
92
|
+
- [`@atcute/atproto`](../../definitions/atproto): `com.atproto.*` schema definitions
|
|
93
|
+
- [`@atcute/bluemoji`](../../definitions/bluemoji): `blue.moji.*` schema definitions
|
|
94
|
+
- [`@atcute/bluesky`](../../definitions/bluesky): `app.bsky.*` and `chat.bsky.*` schema definitions
|
|
95
|
+
- [`@atcute/frontpage`](../../definitions/frontpage): `fyi.unravel.frontpage.*` schema definitions
|
|
96
|
+
- [`@atcute/ozone`](../../definitions/ozone): `tools.ozone.*` schema definitions
|
|
97
|
+
- [`@atcute/tangled`](../../definitions/tangled): `sh.tangled.*` schema definitions
|
|
98
|
+
- [`@atcute/whitewind`](../../definitions/whitewind): `com.whtwnd.*` schema definitions
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"type": "module",
|
|
3
3
|
"name": "@atcute/client",
|
|
4
|
-
"version": "4.0.
|
|
4
|
+
"version": "4.0.2",
|
|
5
5
|
"description": "lightweight and cute API client for AT Protocol",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
8
8
|
"url": "https://github.com/mary-ext/atcute",
|
|
9
|
-
"directory": "packages/
|
|
9
|
+
"directory": "packages/clients/client"
|
|
10
10
|
},
|
|
11
11
|
"files": [
|
|
12
12
|
"dist/",
|
|
@@ -18,14 +18,14 @@
|
|
|
18
18
|
".": "./dist/index.js"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@atcute/identity": "^1.0.
|
|
22
|
-
"@atcute/lexicons": "^1.0.
|
|
21
|
+
"@atcute/identity": "^1.0.2",
|
|
22
|
+
"@atcute/lexicons": "^1.0.2"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"@vitest/coverage-v8": "^3.1.3",
|
|
26
26
|
"vitest": "^3.1.3",
|
|
27
|
-
"@atcute/
|
|
28
|
-
"@atcute/
|
|
27
|
+
"@atcute/atproto": "^3.0.2",
|
|
28
|
+
"@atcute/bluesky": "^3.0.2",
|
|
29
29
|
"@atcute/internal-dev-env": "^1.0.1"
|
|
30
30
|
},
|
|
31
31
|
"scripts": {
|