@atcute/bluemoji 1.0.1 → 1.0.3
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 +7 -1
- package/dist/lexicons.js +1 -1
- package/package.json +4 -4
package/dist/lexicons.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @module
|
|
3
|
-
* Contains type declarations for
|
|
3
|
+
* Contains type declarations for Bluemoji lexicons
|
|
4
4
|
*/
|
|
5
5
|
import '@atcute/client/lexicons';
|
|
6
6
|
import '@atcute/bluesky/lexicons';
|
|
@@ -44,7 +44,9 @@ declare module '@atcute/client/lexicons' {
|
|
|
44
44
|
}
|
|
45
45
|
}
|
|
46
46
|
namespace BlueMojiCollectionItem {
|
|
47
|
+
/** A custom emoji */
|
|
47
48
|
interface Record {
|
|
49
|
+
$type: 'blue.moji.collection.item';
|
|
48
50
|
createdAt: string;
|
|
49
51
|
/** Open union to allow for future formats */
|
|
50
52
|
formats: Brand.Union<Formats_v0>;
|
|
@@ -260,7 +262,9 @@ declare module '@atcute/client/lexicons' {
|
|
|
260
262
|
}
|
|
261
263
|
}
|
|
262
264
|
namespace BlueMojiPacksPack {
|
|
265
|
+
/** A shareable Bluemoji pack */
|
|
263
266
|
interface Record {
|
|
267
|
+
$type: 'blue.moji.packs.pack';
|
|
264
268
|
createdAt: string;
|
|
265
269
|
/**
|
|
266
270
|
* Minimum string length: 1 \
|
|
@@ -281,7 +285,9 @@ declare module '@atcute/client/lexicons' {
|
|
|
281
285
|
}
|
|
282
286
|
}
|
|
283
287
|
namespace BlueMojiPacksPackitem {
|
|
288
|
+
/** Record representing a Bluemoji's inclusion in a specific pack. The AppView will ignore duplicate item records. */
|
|
284
289
|
interface Record {
|
|
290
|
+
$type: 'blue.moji.packs.packitem';
|
|
285
291
|
createdAt: string;
|
|
286
292
|
/** Reference (AT-URI) to the pack record (blue.moji.packs.pack). */
|
|
287
293
|
pack: At.Uri;
|
package/dist/lexicons.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"type": "module",
|
|
3
3
|
"name": "@atcute/bluemoji",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.3",
|
|
5
5
|
"description": "Bluemoji type definitions for atcute",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
@@ -15,11 +15,11 @@
|
|
|
15
15
|
},
|
|
16
16
|
"peerDependencies": {
|
|
17
17
|
"@atcute/bluesky": "^1.0.0",
|
|
18
|
-
"@atcute/client": "^1.0.0"
|
|
18
|
+
"@atcute/client": "^1.0.0 || ^2.0.0"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@atcute/bluesky": "^1.0.
|
|
22
|
-
"@atcute/client": "^
|
|
21
|
+
"@atcute/bluesky": "^1.0.6",
|
|
22
|
+
"@atcute/client": "^2.0.0",
|
|
23
23
|
"@atcute/lex-cli": "^1.0.0"
|
|
24
24
|
},
|
|
25
25
|
"scripts": {
|