@zthun/romulator-api 1.1.0 → 1.3.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/bin/main.mjs +1 -1
- package/dist/config/config-known.d.mts +2 -3
- package/dist/main.cjs +562 -1317
- package/dist/main.cjs.map +1 -1
- package/dist/main.js +569 -1324
- package/dist/main.js.map +1 -1
- package/dist/media/media-controller.d.mts +10 -0
- package/dist/media/media-module.d.mts +2 -0
- package/dist/media/media-service.d.mts +24 -0
- package/dist/systems/system-known.d.mts +78 -9
- package/dist/systems/systems-service.d.mts +4 -1
- package/package.json +19 -13
package/bin/main.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import "../dist/main.
|
|
2
|
+
import "../dist/main.js";
|
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
import { ZRomulatorConfigBuilder } from '@zthun/romulator-client';
|
|
2
1
|
export declare abstract class ZRomulatorConfigKnown {
|
|
3
2
|
static all(): import('@zthun/romulator-client').IZRomulatorConfig<any>[];
|
|
4
3
|
private static create;
|
|
5
|
-
static games():
|
|
6
|
-
static media():
|
|
4
|
+
static games(): import('@zthun/romulator-client').IZRomulatorConfig<any>;
|
|
5
|
+
static media(): import('@zthun/romulator-client').IZRomulatorConfig<any>;
|
|
7
6
|
}
|