From 16f117f4e0306ab738bfb5c76b09c91263d76c04 Mon Sep 17 00:00:00 2001 From: dalechyn Date: Wed, 17 Jul 2024 22:19:25 +0300 Subject: [PATCH] fix: types --- src/types/composerAction.ts | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/types/composerAction.ts b/src/types/composerAction.ts index 098e801a..1df631a1 100644 --- a/src/types/composerAction.ts +++ b/src/types/composerAction.ts @@ -26,9 +26,13 @@ export type ComposerActionData = { timestamp: number url: string state: { - parent?: string | undefined - text: string - embeds: string[] + requestId: string + cast: { + parent?: string | undefined + text: string + embeds: string[] + castDistribution: string + } } }