krawlet-js 2.2.4 → 2.2.6

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
@@ -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;
@@ -423,11 +427,11 @@ interface Transfer {
423
427
  error: string | null;
424
428
  workerId?: number | null;
425
429
  fromEntityId: string;
426
- fromUsername: string;
430
+ fromName: string;
427
431
  fromMcUuid: string | null;
428
432
  fromMcName: string | null;
429
433
  toEntityId: string;
430
- toUsername: string;
434
+ toName: string;
431
435
  toMcUuid: string | null;
432
436
  toMcName: string | null;
433
437
  itemName: string | 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;
@@ -423,11 +427,11 @@ interface Transfer {
423
427
  error: string | null;
424
428
  workerId?: number | null;
425
429
  fromEntityId: string;
426
- fromUsername: string;
430
+ fromName: string;
427
431
  fromMcUuid: string | null;
428
432
  fromMcName: string | null;
429
433
  toEntityId: string;
430
- toUsername: string;
434
+ toName: string;
431
435
  toMcUuid: string | null;
432
436
  toMcName: string | null;
433
437
  itemName: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "krawlet-js",
3
- "version": "2.2.4",
3
+ "version": "2.2.6",
4
4
  "description": "TypeScript/JavaScript client library for the Krawlet Minecraft economy tracking API",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",