Skip to content
Snippets Groups Projects

Feature/connect bio entity endpoint

Merged Tadeusz Miesiąc requested to merge feature/connect-bio-entity-endpoint into development
3 unresolved threads
6 files
+ 13
13
Compare changes
  • Side-by-side
  • Inline
Files
6
@@ -32,7 +32,7 @@ export const bioEntitySchema = z.object({
transparencyLevel: z.string(),
synonyms: z.array(z.string()),
formerSymbols: z.array(z.string()),
fullName: z.string(),
fullName: z.string().nullable(),
abbreviation: z.string().nullable(),
formula: z.string().nullable(),
glyph: glyphSchema.nullable(),
@@ -58,8 +58,8 @@ export const bioEntitySchema = z.object({
fillColor: colorSchema,
borderColor: colorSchema,
smiles: z.optional(z.string()),
inChI: z.optional(z.string()),
inChIKey: z.optional(z.string()),
inChI: z.optional(z.string().nullable()),
inChIKey: z.optional(z.string().nullable()),
thickness: z.optional(z.number()),
outerWidth: z.optional(z.number()),
innerWidth: z.optional(z.number()),
Loading