@overlayed/app 1.3.14 → 1.4.0
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.mts +27 -6
- package/dist/index.mjs +3 -3
- package/dist/sand.d.ts +1423 -0
- package/dist/sand.js +1 -0
- package/dist/siege.d.ts +42 -42
- package/dist/universal.d.ts +39 -9
- package/package.json +9 -3
package/dist/index.d.mts
CHANGED
|
@@ -327,6 +327,7 @@ interface GameModel {
|
|
|
327
327
|
allow_dll_injections: boolean;
|
|
328
328
|
has_render_support: boolean;
|
|
329
329
|
command_line_regex?: string;
|
|
330
|
+
injection_delay_ms?: number;
|
|
330
331
|
}
|
|
331
332
|
type GameIdentifier = GameModel["identifier"];
|
|
332
333
|
declare const GameIdentifier: Brander<GameIdentifier>;
|
|
@@ -396,7 +397,7 @@ declare function module(): {
|
|
|
396
397
|
readonly key: "universal";
|
|
397
398
|
readonly events: import("arktype").Module<{
|
|
398
399
|
event: {
|
|
399
|
-
game: "siege" | "tft";
|
|
400
|
+
game: "sand" | "siege" | "tft";
|
|
400
401
|
type: "module_loaded";
|
|
401
402
|
creation_time: number;
|
|
402
403
|
content: {
|
|
@@ -404,18 +405,28 @@ declare function module(): {
|
|
|
404
405
|
process_hash: string;
|
|
405
406
|
};
|
|
406
407
|
} | {
|
|
407
|
-
game: "
|
|
408
|
+
game: "sand";
|
|
408
409
|
type: "logged_in";
|
|
409
410
|
creation_time: number;
|
|
410
411
|
content: {
|
|
411
412
|
account_id: string;
|
|
413
|
+
display_name: string;
|
|
414
|
+
platform_id: string;
|
|
415
|
+
playfab_id: string;
|
|
412
416
|
};
|
|
413
417
|
} | {
|
|
414
418
|
game: "siege" | "tft";
|
|
419
|
+
type: "logged_in";
|
|
420
|
+
creation_time: number;
|
|
421
|
+
content: {
|
|
422
|
+
account_id: string;
|
|
423
|
+
};
|
|
424
|
+
} | {
|
|
425
|
+
game: "sand" | "siege" | "tft";
|
|
415
426
|
type: "module_unloaded";
|
|
416
427
|
creation_time: number;
|
|
417
428
|
} | {
|
|
418
|
-
game: "siege" | "tft";
|
|
429
|
+
game: "sand" | "siege" | "tft";
|
|
419
430
|
type: "unsupported_game_version";
|
|
420
431
|
creation_time: number;
|
|
421
432
|
content: {
|
|
@@ -424,6 +435,16 @@ declare function module(): {
|
|
|
424
435
|
};
|
|
425
436
|
};
|
|
426
437
|
logged_in: {
|
|
438
|
+
game: "sand";
|
|
439
|
+
type: "logged_in";
|
|
440
|
+
creation_time: number;
|
|
441
|
+
content: {
|
|
442
|
+
account_id: string;
|
|
443
|
+
display_name: string;
|
|
444
|
+
platform_id: string;
|
|
445
|
+
playfab_id: string;
|
|
446
|
+
};
|
|
447
|
+
} | {
|
|
427
448
|
game: "siege" | "tft";
|
|
428
449
|
type: "logged_in";
|
|
429
450
|
creation_time: number;
|
|
@@ -432,7 +453,7 @@ declare function module(): {
|
|
|
432
453
|
};
|
|
433
454
|
};
|
|
434
455
|
module_loaded: {
|
|
435
|
-
game: "siege" | "tft";
|
|
456
|
+
game: "sand" | "siege" | "tft";
|
|
436
457
|
type: "module_loaded";
|
|
437
458
|
creation_time: number;
|
|
438
459
|
content: {
|
|
@@ -441,12 +462,12 @@ declare function module(): {
|
|
|
441
462
|
};
|
|
442
463
|
};
|
|
443
464
|
module_unloaded: {
|
|
444
|
-
game: "siege" | "tft";
|
|
465
|
+
game: "sand" | "siege" | "tft";
|
|
445
466
|
type: "module_unloaded";
|
|
446
467
|
creation_time: number;
|
|
447
468
|
};
|
|
448
469
|
unsupported_game_version: {
|
|
449
|
-
game: "siege" | "tft";
|
|
470
|
+
game: "sand" | "siege" | "tft";
|
|
450
471
|
type: "unsupported_game_version";
|
|
451
472
|
creation_time: number;
|
|
452
473
|
content: {
|