2a73400f7c
* remove customize button if no body parts are available * remove unused position field from PlayerTexturesCollection interface * removed unused label field * fix LocalUser test * little PlayerTextures class refactor * Fixing linting * Fixing missing Openapi packages in prod * Fixing back build Co-authored-by: Hanusiak Piotr <piotr@ltmp.co> Co-authored-by: David Négrier <d.negrier@thecodingmachine.com>
23 lines
728 B
TypeScript
23 lines
728 B
TypeScript
import * as tg from "generic-type-guard";
|
|
//import { isCharacterTexture } from "./CharacterTexture";
|
|
|
|
/*
|
|
* WARNING! The original file is in /messages/JsonMessages.
|
|
* All other files are automatically copied from this file on container startup / build
|
|
*/
|
|
|
|
export const isRegisterData = new tg.IsInterface()
|
|
.withProperties({
|
|
roomUrl: tg.isString,
|
|
email: tg.isNullable(tg.isString),
|
|
organizationMemberToken: tg.isNullable(tg.isString),
|
|
mapUrlStart: tg.isString,
|
|
userUuid: tg.isString,
|
|
authToken: tg.isString,
|
|
})
|
|
.withOptionalProperties({
|
|
messages: tg.isArray(tg.isUnknown),
|
|
})
|
|
.get();
|
|
export type RegisterData = tg.GuardedType<typeof isRegisterData>;
|