krawlet-js 2.2.1 → 2.2.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/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';
@@ -420,10 +422,14 @@ interface Transfer {
420
422
  status: TransferStatus;
421
423
  error: string | null;
422
424
  workerId?: number | null;
423
- fromUUID: string;
425
+ fromEntityId: string;
424
426
  fromUsername: string;
425
- toUUID: string;
427
+ fromMcUuid: string | null;
428
+ fromMcName: string | null;
429
+ toEntityId: string;
426
430
  toUsername: string;
431
+ toMcUuid: string | null;
432
+ toMcName: string | null;
427
433
  itemName: string | null;
428
434
  itemNbt: string | null;
429
435
  memo?: string;
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';
@@ -420,10 +422,14 @@ interface Transfer {
420
422
  status: TransferStatus;
421
423
  error: string | null;
422
424
  workerId?: number | null;
423
- fromUUID: string;
425
+ fromEntityId: string;
424
426
  fromUsername: string;
425
- toUUID: string;
427
+ fromMcUuid: string | null;
428
+ fromMcName: string | null;
429
+ toEntityId: string;
426
430
  toUsername: string;
431
+ toMcUuid: string | null;
432
+ toMcName: string | null;
427
433
  itemName: string | null;
428
434
  itemNbt: string | null;
429
435
  memo?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "krawlet-js",
3
- "version": "2.2.1",
3
+ "version": "2.2.3",
4
4
  "description": "TypeScript/JavaScript client library for the Krawlet Minecraft economy tracking API",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",