From 403d8ece1639b341e7e168dbfc3cd96012e193ae Mon Sep 17 00:00:00 2001 From: Perfect1076 Date: Tue, 9 Apr 2024 09:57:07 -0700 Subject: [PATCH] fixed --- schema-types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schema-types.ts b/schema-types.ts index f189a9c..8040bdf 100644 --- a/schema-types.ts +++ b/schema-types.ts @@ -51,7 +51,7 @@ export type AcaHeadingToBase = BaseMessage<"AcaHeadingToBase", { /* utility types **********************************************************************************/ -export type Id = string; +export type Id = string & tags.Format<"uuid">; export type Priority = number & tags.Type<"uint32"> & tags.Maximum<10>; export type Range = number & tags.Type<"float"> & tags.Minimum & tags.Maximum;