feat: make cell icon optional in type definitions

Updates CellMessage and Cell interfaces to support optional icon fields,
allowing cells to be created without requiring an icon URL.
This commit is contained in:
Ashis Kumar Naik 2025-06-28 06:33:52 +05:30
parent 41351ebab1
commit c34fc7118c
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ export interface CellMessage extends BaseMessage {
id: string;
name: string;
description: string;
icon: string;
icon?: string;
}
/**

View File

@ -16,7 +16,7 @@ export interface Cell {
id: string;
name: string;
description: string;
icon: string;
icon?: string;
signature?: string; // Message signature
browserPubKey?: string; // Public key that signed the message
}