style: deno fmt
parent
1c83368257
commit
147524e44e
44
src/types.ts
44
src/types.ts
|
|
@ -11,7 +11,7 @@ export enum Queries {
|
||||||
CoopHistoryQuery = "91b917becd2fa415890f5b47e15ffb15",
|
CoopHistoryQuery = "91b917becd2fa415890f5b47e15ffb15",
|
||||||
CoopHistoryDetailQuery = "379f0d9b78b531be53044bcac031b34b",
|
CoopHistoryDetailQuery = "379f0d9b78b531be53044bcac031b34b",
|
||||||
myOutfitCommonDataFilteringConditionQuery =
|
myOutfitCommonDataFilteringConditionQuery =
|
||||||
"d02ab22c9dccc440076055c8baa0fa7a",
|
"d02ab22c9dccc440076055c8baa0fa7a",
|
||||||
myOutfitCommonDataEquipmentsQuery = "d29cd0c2b5e6bac90dd5b817914832f8",
|
myOutfitCommonDataEquipmentsQuery = "d29cd0c2b5e6bac90dd5b817914832f8",
|
||||||
HistoryRecordQuery = "f09da9d24d888797fdfb2f060dbdf4ed",
|
HistoryRecordQuery = "f09da9d24d888797fdfb2f060dbdf4ed",
|
||||||
ConfigureAnalyticsQuery = "f8ae00773cc412a50dd41a6d9a159ddd",
|
ConfigureAnalyticsQuery = "f8ae00773cc412a50dd41a6d9a159ddd",
|
||||||
|
|
@ -682,14 +682,14 @@ export type StatInkCoopPlayer = {
|
||||||
number: string;
|
number: string;
|
||||||
splashtag_title: string | null;
|
splashtag_title: string | null;
|
||||||
uniform?:
|
uniform?:
|
||||||
| string
|
| string
|
||||||
| "orange"
|
| "orange"
|
||||||
| "green"
|
| "green"
|
||||||
| "yellow"
|
| "yellow"
|
||||||
| "pink"
|
| "pink"
|
||||||
| "blue"
|
| "blue"
|
||||||
| "black"
|
| "black"
|
||||||
| "white";
|
| "white";
|
||||||
special?: string;
|
special?: string;
|
||||||
weapons: (string | null)[];
|
weapons: (string | null)[];
|
||||||
golden_eggs: number;
|
golden_eggs: number;
|
||||||
|
|
@ -754,13 +754,13 @@ export type StatInkPostBody = {
|
||||||
test?: "yes" | "no";
|
test?: "yes" | "no";
|
||||||
uuid: string;
|
uuid: string;
|
||||||
lobby:
|
lobby:
|
||||||
| "regular"
|
| "regular"
|
||||||
| "bankara_challenge"
|
| "bankara_challenge"
|
||||||
| "bankara_open"
|
| "bankara_open"
|
||||||
| "xmatch"
|
| "xmatch"
|
||||||
| "splatfest_challenge"
|
| "splatfest_challenge"
|
||||||
| "splatfest_open"
|
| "splatfest_open"
|
||||||
| "private";
|
| "private";
|
||||||
rule: "nawabari" | "area" | "hoko" | "yagura" | "asari" | "tricolor";
|
rule: "nawabari" | "area" | "hoko" | "yagura" | "asari" | "tricolor";
|
||||||
stage: string;
|
stage: string;
|
||||||
weapon: string;
|
weapon: string;
|
||||||
|
|
@ -808,12 +808,12 @@ export type StatInkPostBody = {
|
||||||
x_power_after?: number | null;
|
x_power_after?: number | null;
|
||||||
fest_power?: number; // Splatfest Power (Pro)
|
fest_power?: number; // Splatfest Power (Pro)
|
||||||
fest_dragon?:
|
fest_dragon?:
|
||||||
| "10x"
|
| "10x"
|
||||||
| "decuple"
|
| "decuple"
|
||||||
| "100x"
|
| "100x"
|
||||||
| "dragon"
|
| "dragon"
|
||||||
| "333x"
|
| "333x"
|
||||||
| "double_dragon";
|
| "double_dragon";
|
||||||
clout_before?: number; // Splatfest Clout, before the battle
|
clout_before?: number; // Splatfest Clout, before the battle
|
||||||
clout_after?: number; // Splatfest Clout, after the battle
|
clout_after?: number; // Splatfest Clout, after the battle
|
||||||
clout_change?: number; // Splatfest Clout, equals to clout_after - clout_before if you know them
|
clout_change?: number; // Splatfest Clout, equals to clout_after - clout_before if you know them
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue