krawlet-js 2.2.2 → 2.2.4
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 +7 -0
- package/dist/index.d.ts +7 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -412,6 +412,8 @@ interface TransferTarget {
|
|
|
412
412
|
id: string;
|
|
413
413
|
name: string;
|
|
414
414
|
type: string;
|
|
415
|
+
mcUuid: string | null;
|
|
416
|
+
mcName: string | null;
|
|
415
417
|
links: TransferTargetLink[];
|
|
416
418
|
}
|
|
417
419
|
type TransferStatus = 'pending' | 'in_progress' | 'completed' | 'failed' | 'cancelled';
|
|
@@ -422,9 +424,14 @@ interface Transfer {
|
|
|
422
424
|
workerId?: number | null;
|
|
423
425
|
fromEntityId: string;
|
|
424
426
|
fromUsername: string;
|
|
427
|
+
fromMcUuid: string | null;
|
|
428
|
+
fromMcName: string | null;
|
|
425
429
|
toEntityId: string;
|
|
426
430
|
toUsername: string;
|
|
431
|
+
toMcUuid: string | null;
|
|
432
|
+
toMcName: string | null;
|
|
427
433
|
itemName: string | null;
|
|
434
|
+
itemDisplayName?: string;
|
|
428
435
|
itemNbt: string | null;
|
|
429
436
|
memo?: string;
|
|
430
437
|
quantity: number | null;
|
package/dist/index.d.ts
CHANGED
|
@@ -412,6 +412,8 @@ interface TransferTarget {
|
|
|
412
412
|
id: string;
|
|
413
413
|
name: string;
|
|
414
414
|
type: string;
|
|
415
|
+
mcUuid: string | null;
|
|
416
|
+
mcName: string | null;
|
|
415
417
|
links: TransferTargetLink[];
|
|
416
418
|
}
|
|
417
419
|
type TransferStatus = 'pending' | 'in_progress' | 'completed' | 'failed' | 'cancelled';
|
|
@@ -422,9 +424,14 @@ interface Transfer {
|
|
|
422
424
|
workerId?: number | null;
|
|
423
425
|
fromEntityId: string;
|
|
424
426
|
fromUsername: string;
|
|
427
|
+
fromMcUuid: string | null;
|
|
428
|
+
fromMcName: string | null;
|
|
425
429
|
toEntityId: string;
|
|
426
430
|
toUsername: string;
|
|
431
|
+
toMcUuid: string | null;
|
|
432
|
+
toMcName: string | null;
|
|
427
433
|
itemName: string | null;
|
|
434
|
+
itemDisplayName?: string;
|
|
428
435
|
itemNbt: string | null;
|
|
429
436
|
memo?: string;
|
|
430
437
|
quantity: number | null;
|