gcm-database-local 0.0.3 → 0.0.5
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/chunithm/chart.d.ts +4 -4
- package/dist/chunithm/presence.d.ts +3 -1
- package/dist/chunithm.d.ts +1 -1
- package/dist/maimai/chart.d.ts +4 -4
- package/dist/maimai/presence.d.ts +3 -1
- package/dist/maimai.d.ts +1 -1
- package/dist/ongeki/chart.d.ts +4 -4
- package/dist/ongeki/presence.d.ts +3 -1
- package/dist/ongeki.d.ts +1 -1
- package/package.json +1 -1
package/dist/chunithm/chart.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { Chart as BaseChart } from "gcm-database/chunithm";
|
|
2
|
-
import type { Presences, Version } from "./presence";
|
|
2
|
+
import type { ByRegion, Presences, Version } from "./presence";
|
|
3
3
|
export interface Chart extends BaseChart {
|
|
4
4
|
optionalData: {
|
|
5
5
|
bpm: number[];
|
|
@@ -13,15 +13,15 @@ export interface Chart extends BaseChart {
|
|
|
13
13
|
designer: string;
|
|
14
14
|
presences: Presences[];
|
|
15
15
|
version: {
|
|
16
|
-
displayVersion: Version
|
|
16
|
+
displayVersion: ByRegion<Version>;
|
|
17
17
|
/**
|
|
18
18
|
* Exist when a Re:Master chart is added later than the other difficulies.
|
|
19
19
|
*/
|
|
20
|
-
actualReleaseVersion?: Version
|
|
20
|
+
actualReleaseVersion?: ByRegion<Version>;
|
|
21
21
|
};
|
|
22
22
|
/**
|
|
23
23
|
* yyyy-mm-dd date of when this chart became available.
|
|
24
24
|
*/
|
|
25
|
-
addDate?: string
|
|
25
|
+
addDate?: ByRegion<string>;
|
|
26
26
|
};
|
|
27
27
|
}
|
package/dist/chunithm.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
export { Chart } from "./chunithm/chart";
|
|
2
2
|
export { Database } from "./chunithm/database";
|
|
3
|
-
export { Absence, Existence, Presences, Removal, Version, } from "./chunithm/presence";
|
|
3
|
+
export { Absence, Existence, Presences, Regions, Removal, Version, } from "./chunithm/presence";
|
package/dist/maimai/chart.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { Chart as BaseChart } from "gcm-database/maimai";
|
|
2
|
-
import type { Presences, Version } from "./presence";
|
|
2
|
+
import type { ByRegion, Presences, Version } from "./presence";
|
|
3
3
|
export interface Chart extends BaseChart {
|
|
4
4
|
optionalData: {
|
|
5
5
|
bpm: number[];
|
|
@@ -16,15 +16,15 @@ export interface Chart extends BaseChart {
|
|
|
16
16
|
};
|
|
17
17
|
presences: Presences[];
|
|
18
18
|
version: {
|
|
19
|
-
displayVersion: Version
|
|
19
|
+
displayVersion: ByRegion<Version>;
|
|
20
20
|
/**
|
|
21
21
|
* Exist when a Re:Master chart is added later than the other difficulies.
|
|
22
22
|
*/
|
|
23
|
-
actualReleaseVersion?: Version
|
|
23
|
+
actualReleaseVersion?: ByRegion<Version>;
|
|
24
24
|
};
|
|
25
25
|
/**
|
|
26
26
|
* yyyy-mm-dd date of when this chart became available.
|
|
27
27
|
*/
|
|
28
|
-
addDate?: string
|
|
28
|
+
addDate?: ByRegion<string>;
|
|
29
29
|
};
|
|
30
30
|
}
|
package/dist/maimai.d.ts
CHANGED
package/dist/ongeki/chart.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { Chart as BaseChart } from "gcm-database/ongeki";
|
|
2
|
-
import type { Presences, Version } from "./presence";
|
|
2
|
+
import type { ByRegion, Presences, Version } from "./presence";
|
|
3
3
|
export interface Chart extends BaseChart {
|
|
4
4
|
optionalData: {
|
|
5
5
|
bpm: number[];
|
|
@@ -13,15 +13,15 @@ export interface Chart extends BaseChart {
|
|
|
13
13
|
designer: string;
|
|
14
14
|
presences: Presences[];
|
|
15
15
|
version: {
|
|
16
|
-
displayVersion: Version
|
|
16
|
+
displayVersion: ByRegion<Version>;
|
|
17
17
|
/**
|
|
18
18
|
* Exist when a Re:Master chart is added later than the other difficulies.
|
|
19
19
|
*/
|
|
20
|
-
actualReleaseVersion?: Version
|
|
20
|
+
actualReleaseVersion?: ByRegion<Version>;
|
|
21
21
|
};
|
|
22
22
|
/**
|
|
23
23
|
* yyyy-mm-dd date of when this chart became available.
|
|
24
24
|
*/
|
|
25
|
-
addDate?: string
|
|
25
|
+
addDate?: ByRegion<string>;
|
|
26
26
|
};
|
|
27
27
|
}
|
package/dist/ongeki.d.ts
CHANGED