UNPKG

ps2census

Version:

Client to connect to the PS2 Event Stream websocket.

56 lines (55 loc) 2.14 kB
export type Directive = { collection: 'directive'; format: { directive_id: string; directive_tree_id: string; directive_tier_id: string; objective_set_id: string; name: { de: string; en: string; es: string; fr: string; it: string; tr: string; }; description: { de: string; en: string; es: string; fr: string; it: string; tr: string; }; image_set_id: string; image_id: string; image_path: string; qualify_requirement_id: string; }; paths: 'directive_id' | 'directive_tree_id' | 'directive_tier_id' | 'objective_set_id' | 'name.de' | 'name.en' | 'name.es' | 'name.fr' | 'name.it' | 'name.tr' | 'description.de' | 'description.en' | 'description.es' | 'description.fr' | 'description.it' | 'description.tr' | 'image_set_id' | 'image_id' | 'image_path' | 'qualify_requirement_id'; partialPaths: 'directive_id' | 'directive_tree_id' | 'directive_tier_id' | 'objective_set_id' | 'name' | 'name.de' | 'name.en' | 'name.es' | 'name.fr' | 'name.it' | 'name.tr' | 'description' | 'description.de' | 'description.en' | 'description.es' | 'description.fr' | 'description.it' | 'description.tr' | 'image_set_id' | 'image_id' | 'image_path' | 'qualify_requirement_id'; conditions: { description?: string; 'description.de'?: string; 'description.en'?: string; 'description.es'?: string; 'description.fr'?: string; 'description.it'?: string; 'description.tr'?: string; directive_id?: string; directive_tier_id?: string; directive_tree_id?: string; image_id?: string; image_path?: string; image_set_id?: string; name?: string; 'name.de'?: string; 'name.en'?: string; 'name.es'?: string; 'name.fr'?: string; 'name.it'?: string; 'name.tr'?: string; objective_set_id?: string; qualify_requirement_id?: string; }; };