Merge pull request #139 from matrix-org/leniant-schemas

Future proof schemas by making them nonstrict
This commit is contained in:
Jorik Schellekens 2020-09-23 17:03:16 +01:00 committed by GitHub
commit 5d6e1e8b11
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 36 additions and 40 deletions

View File

@ -24,7 +24,7 @@ const EventSchema = object({
origin_server_ts: string(),
unsigned: object({}).nonstrict().optional(),
room_id: string(),
});
}).nonstrict();
export type Event = TypeOf<typeof EventSchema>;
export default EventSchema;

View File

@ -26,18 +26,16 @@ export const RoomSchema = object({
world_readable: boolean(),
guest_can_join: boolean(),
avatar_url: string().optional(),
});
}).nonstrict();
const PublicRoomsSchema = object({
chunk: array(RoomSchema),
next_batch: string().optional(),
prev_batch: string().optional(),
total_room_count_estimate: number().optional(),
});
}).nonstrict();
export type Room = TypeOf<typeof RoomSchema>;
export type PublicRooms = TypeOf<typeof PublicRoomsSchema>;
export default PublicRoomsSchema;

View File

@ -19,8 +19,7 @@ import { object, array, string, TypeOf } from 'zod';
const RoomAliasSchema = object({
room_id: string(),
servers: array(string()),
});
}).nonstrict();
export type RoomAlias = TypeOf<typeof RoomAliasSchema>;
export default RoomAliasSchema;

View File

@ -19,8 +19,7 @@ import { object, string, TypeOf } from 'zod';
const UserSchema = object({
avatar_url: string().optional(),
displayname: string().optional(),
})
}).nonstrict();
export type User = TypeOf<typeof UserSchema>;
export default UserSchema;

View File

@ -18,12 +18,12 @@ import { object, string, TypeOf } from 'zod';
const WellKnownSchema = object({
'm.homeserver': object({
'base_url': string().url(),
base_url: string().url(),
}),
'm.identity_server': object({
'base_url': string().url(),
}),
});
base_url: string().url(),
}).optional(),
}).nonstrict();
export type WellKnown = TypeOf<typeof WellKnownSchema>;
export default WellKnownSchema;