From 2f327f411ed583646f59cec0a7a3b5744518d54a Mon Sep 17 00:00:00 2001 From: Ghoz Date: Sun, 23 Feb 2025 08:49:30 +0100 Subject: [PATCH 1/2] allow publish from Tz --- src/lib/types.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/types.ts b/src/lib/types.ts index 701938f5a887b..98323c83de187 100644 --- a/src/lib/types.ts +++ b/src/lib/types.ts @@ -328,6 +328,7 @@ export namespace Tz { state: KeyValue; endpoint_name: string | undefined; membersState?: {[s: string]: KeyValue}; + publish?: Publish; } // biome-ignore lint/suspicious/noConfusingVoidType: allow for converters export type ConvertSetResult = {state?: KeyValue; membersState?: {[s: string]: KeyValue}} | void; From 533951c314b9bfd1b09d3e48e1e818c4c2bcc32b Mon Sep 17 00:00:00 2001 From: ghoz Date: Sun, 23 Feb 2025 22:30:01 +0100 Subject: [PATCH 2/2] Update src/lib/types.ts Make publish mandatory Co-authored-by: Koen Kanters --- src/lib/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/types.ts b/src/lib/types.ts index 98323c83de187..bb4195dcdd6b0 100644 --- a/src/lib/types.ts +++ b/src/lib/types.ts @@ -328,7 +328,7 @@ export namespace Tz { state: KeyValue; endpoint_name: string | undefined; membersState?: {[s: string]: KeyValue}; - publish?: Publish; + publish: Publish; } // biome-ignore lint/suspicious/noConfusingVoidType: allow for converters export type ConvertSetResult = {state?: KeyValue; membersState?: {[s: string]: KeyValue}} | void;