@atcute/whitewind 1.0.1 → 1.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/dist/lexicons.d.ts +4 -0
- package/package.json +2 -2
package/dist/lexicons.d.ts
CHANGED
|
@@ -5,7 +5,9 @@
|
|
|
5
5
|
import '@atcute/client/lexicons';
|
|
6
6
|
declare module '@atcute/client/lexicons' {
|
|
7
7
|
namespace ComWhtwndBlogComment {
|
|
8
|
+
/** A declaration of a comment. */
|
|
8
9
|
interface Record {
|
|
10
|
+
$type: 'com.whtwnd.blog.comment';
|
|
9
11
|
/** Maximum string length: 1000 */
|
|
10
12
|
content: string;
|
|
11
13
|
entryUri: At.Uri;
|
|
@@ -37,7 +39,9 @@ declare module '@atcute/client/lexicons' {
|
|
|
37
39
|
}
|
|
38
40
|
}
|
|
39
41
|
namespace ComWhtwndBlogEntry {
|
|
42
|
+
/** A declaration of a post. */
|
|
40
43
|
interface Record {
|
|
44
|
+
$type: 'com.whtwnd.blog.entry';
|
|
41
45
|
/** Maximum string length: 100000 */
|
|
42
46
|
content: string;
|
|
43
47
|
blobs?: ComWhtwndBlogDefs.BlobMetadata[];
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"type": "module",
|
|
3
3
|
"name": "@atcute/whitewind",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.2",
|
|
5
5
|
"description": "WhiteWind type definitions for atcute",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"@atcute/client": "^1.0.0 || ^2.0.0"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@atcute/client": "^
|
|
20
|
+
"@atcute/client": "^2.0.0",
|
|
21
21
|
"@atcute/lex-cli": "^1.0.0"
|
|
22
22
|
},
|
|
23
23
|
"scripts": {
|