ps2census
Version:
Client to connect to the PS2 Event Stream websocket.
86 lines (85 loc) • 3.23 kB
TypeScript
export type ExperienceRank = {
collection: 'experience_rank';
format: {
rank: string;
xp_max: string;
vs: {
title: {
de: string;
en: string;
es: string;
fr: string;
it: string;
tr: string;
};
image_set_id: string;
image_id: string;
};
vs_image_path: string;
nc: {
title: {
de: string;
en: string;
es: string;
fr: string;
it: string;
tr: string;
};
image_set_id: string;
image_id: string;
};
nc_image_path: string;
tr: {
title: {
de: string;
en: string;
es: string;
fr: string;
it: string;
tr: string;
};
image_set_id: string;
image_id: string;
};
tr_image_path: string;
};
paths: 'rank' | 'xp_max' | 'vs.title.de' | 'vs.title.en' | 'vs.title.es' | 'vs.title.fr' | 'vs.title.it' | 'vs.title.tr' | 'vs.image_set_id' | 'vs.image_id' | 'vs_image_path' | 'nc.title.de' | 'nc.title.en' | 'nc.title.es' | 'nc.title.fr' | 'nc.title.it' | 'nc.title.tr' | 'nc.image_set_id' | 'nc.image_id' | 'nc_image_path' | 'tr.title.de' | 'tr.title.en' | 'tr.title.es' | 'tr.title.fr' | 'tr.title.it' | 'tr.title.tr' | 'tr.image_set_id' | 'tr.image_id' | 'tr_image_path';
partialPaths: 'rank' | 'xp_max' | 'vs' | 'vs.title' | 'vs.title.de' | 'vs.title.en' | 'vs.title.es' | 'vs.title.fr' | 'vs.title.it' | 'vs.title.tr' | 'vs.image_set_id' | 'vs.image_id' | 'vs_image_path' | 'nc' | 'nc.title' | 'nc.title.de' | 'nc.title.en' | 'nc.title.es' | 'nc.title.fr' | 'nc.title.it' | 'nc.title.tr' | 'nc.image_set_id' | 'nc.image_id' | 'nc_image_path' | 'tr' | 'tr.title' | 'tr.title.de' | 'tr.title.en' | 'tr.title.es' | 'tr.title.fr' | 'tr.title.it' | 'tr.title.tr' | 'tr.image_set_id' | 'tr.image_id' | 'tr_image_path';
conditions: {
nc?: string;
'nc.image_id'?: string;
'nc.image_set_id'?: string;
'nc.title'?: string;
'nc.title.de'?: string;
'nc.title.en'?: string;
'nc.title.es'?: string;
'nc.title.fr'?: string;
'nc.title.it'?: string;
'nc.title.tr'?: string;
nc_image_path?: string;
rank?: string;
tr?: string;
'tr.image_id'?: string;
'tr.image_set_id'?: string;
'tr.title'?: string;
'tr.title.de'?: string;
'tr.title.en'?: string;
'tr.title.es'?: string;
'tr.title.fr'?: string;
'tr.title.it'?: string;
'tr.title.tr'?: string;
tr_image_path?: string;
vs?: string;
'vs.image_id'?: string;
'vs.image_set_id'?: string;
'vs.title'?: string;
'vs.title.de'?: string;
'vs.title.en'?: string;
'vs.title.es'?: string;
'vs.title.fr'?: string;
'vs.title.it'?: string;
'vs.title.tr'?: string;
vs_image_path?: string;
xp_max?: string;
};
};