krawlet-js 2.2.3 → 2.2.5
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/index.d.cts +5 -0
- package/dist/index.d.ts +5 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -227,6 +227,8 @@ interface ApiKeyUsage {
|
|
|
227
227
|
interface ApiKeyInfo {
|
|
228
228
|
id: string;
|
|
229
229
|
name: string;
|
|
230
|
+
mcUuid: string;
|
|
231
|
+
mcName: string;
|
|
230
232
|
email: string | null;
|
|
231
233
|
tier: ApiKeyTier;
|
|
232
234
|
rateLimit: number;
|
|
@@ -260,6 +262,8 @@ interface QuickCodeRedeemResponse {
|
|
|
260
262
|
message: string;
|
|
261
263
|
apiKey: string;
|
|
262
264
|
name: string;
|
|
265
|
+
mcUuid: string;
|
|
266
|
+
mcName: string;
|
|
263
267
|
tier: ApiKeyTier;
|
|
264
268
|
rateLimit: number;
|
|
265
269
|
warning: string;
|
|
@@ -431,6 +435,7 @@ interface Transfer {
|
|
|
431
435
|
toMcUuid: string | null;
|
|
432
436
|
toMcName: string | null;
|
|
433
437
|
itemName: string | null;
|
|
438
|
+
itemDisplayName?: string;
|
|
434
439
|
itemNbt: string | null;
|
|
435
440
|
memo?: string;
|
|
436
441
|
quantity: number | null;
|
package/dist/index.d.ts
CHANGED
|
@@ -227,6 +227,8 @@ interface ApiKeyUsage {
|
|
|
227
227
|
interface ApiKeyInfo {
|
|
228
228
|
id: string;
|
|
229
229
|
name: string;
|
|
230
|
+
mcUuid: string;
|
|
231
|
+
mcName: string;
|
|
230
232
|
email: string | null;
|
|
231
233
|
tier: ApiKeyTier;
|
|
232
234
|
rateLimit: number;
|
|
@@ -260,6 +262,8 @@ interface QuickCodeRedeemResponse {
|
|
|
260
262
|
message: string;
|
|
261
263
|
apiKey: string;
|
|
262
264
|
name: string;
|
|
265
|
+
mcUuid: string;
|
|
266
|
+
mcName: string;
|
|
263
267
|
tier: ApiKeyTier;
|
|
264
268
|
rateLimit: number;
|
|
265
269
|
warning: string;
|
|
@@ -431,6 +435,7 @@ interface Transfer {
|
|
|
431
435
|
toMcUuid: string | null;
|
|
432
436
|
toMcName: string | null;
|
|
433
437
|
itemName: string | null;
|
|
438
|
+
itemDisplayName?: string;
|
|
434
439
|
itemNbt: string | null;
|
|
435
440
|
memo?: string;
|
|
436
441
|
quantity: number | null;
|