clashofclans.js 2.5.0-dev.597dedf → 2.5.0-dev.7761293
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.
|
@@ -42,7 +42,7 @@ export declare class ClanWarLeagueRound {
|
|
|
42
42
|
export declare class ClanWarLeagueGroup {
|
|
43
43
|
private readonly client;
|
|
44
44
|
/** The CWL group's current war state. */
|
|
45
|
-
state: 'preparation' | 'inWar' | '
|
|
45
|
+
state: 'preparation' | 'inWar' | 'ended';
|
|
46
46
|
/** Season Id of this CWL group. */
|
|
47
47
|
season: string;
|
|
48
48
|
/** Returns all participating clans. */
|
package/dist/types/api.d.ts
CHANGED
|
@@ -139,7 +139,7 @@ export interface APIClanWarLog {
|
|
|
139
139
|
}
|
|
140
140
|
/** /clans/{clanTag}/currentwar/leaguegroup */
|
|
141
141
|
export interface APIClanWarLeagueGroup {
|
|
142
|
-
state: 'preparation' | 'inWar' | '
|
|
142
|
+
state: 'preparation' | 'inWar' | 'ended';
|
|
143
143
|
season: string;
|
|
144
144
|
clans: APIClanWarLeagueClan[];
|
|
145
145
|
rounds: APIClanWarLeagueRound[];
|
package/package.json
CHANGED