@atcute/bluesky 1.0.9 → 1.0.10
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 +5 -0
- package/lib/lexicons.ts +5 -0
- package/package.json +1 -1
package/dist/lexicons.d.ts
CHANGED
|
@@ -1805,6 +1805,11 @@ declare module '@atcute/client/lexicons' {
|
|
|
1805
1805
|
*/
|
|
1806
1806
|
limit?: number;
|
|
1807
1807
|
priority?: boolean;
|
|
1808
|
+
/**
|
|
1809
|
+
* Notification reasons to include in response. \
|
|
1810
|
+
* A reason that matches the reason property of #notification.
|
|
1811
|
+
*/
|
|
1812
|
+
reasons?: string[];
|
|
1808
1813
|
seenAt?: string;
|
|
1809
1814
|
}
|
|
1810
1815
|
type Input = undefined;
|
package/lib/lexicons.ts
CHANGED
|
@@ -1936,6 +1936,11 @@ declare module '@atcute/client/lexicons' {
|
|
|
1936
1936
|
*/
|
|
1937
1937
|
limit?: number;
|
|
1938
1938
|
priority?: boolean;
|
|
1939
|
+
/**
|
|
1940
|
+
* Notification reasons to include in response. \
|
|
1941
|
+
* A reason that matches the reason property of #notification.
|
|
1942
|
+
*/
|
|
1943
|
+
reasons?: string[];
|
|
1939
1944
|
seenAt?: string;
|
|
1940
1945
|
}
|
|
1941
1946
|
type Input = undefined;
|