From bde578d43f5b656cfd98b5003fa1f5b37c8fdd1f Mon Sep 17 00:00:00 2001 From: Perfect1076 Date: Thu, 4 Apr 2024 22:52:46 -0600 Subject: [PATCH] changed id to just be string. --- schema-types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schema-types.ts b/schema-types.ts index 65cdddd..f189a9c 100644 --- a/schema-types.ts +++ b/schema-types.ts @@ -51,7 +51,7 @@ export type AcaHeadingToBase = BaseMessage<"AcaHeadingToBase", { /* utility types **********************************************************************************/ -export type Id = number & tags.Type<"uint64">; +export type Id = string; export type Priority = number & tags.Type<"uint32"> & tags.Maximum<10>; export type Range = number & tags.Type<"float"> & tags.Minimum & tags.Maximum;