@periskope/types 0.6.112 → 0.6.114
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/supabase.types.d.ts +0 -1
- package/dist/types.d.ts +1 -1
- package/dist/types.js +1 -0
- package/package.json +1 -1
- package/supabase.types.ts +2291 -2292
- package/types.ts +1 -0
package/dist/supabase.types.d.ts
CHANGED
package/dist/types.d.ts
CHANGED
|
@@ -180,7 +180,7 @@ export type NotificationType = Tables<'tbl_chat_notifications'>;
|
|
|
180
180
|
export type ChatAccessType = Merge<Partial<Tables<'tbl_chat_access'>>, Tables<'tbl_org_members'>>;
|
|
181
181
|
export declare const labelColors: string[];
|
|
182
182
|
export declare const enumChatColors: readonly ["#B4876E", "#A5B337", "#06CF9C", "#25D366", "#02A698", "#7D9EF1", "#007BFC", "#5E47DE", "#7F66FF", "#9333EA", "#FA6533", "#C4532D", "#DC2626", "#FF2E74", "#DB2777"];
|
|
183
|
-
export declare const SUPPORTED_TYPES: readonly ["chat", "sticker", "image", "video", "document", "vcard", "multi_vcard", "audio", "ptt", "poll_creation", "location"];
|
|
183
|
+
export declare const SUPPORTED_TYPES: readonly ["chat", "sticker", "image", "video", "document", "vcard", "multi_vcard", "audio", "ptt", "poll_creation", "location", "ciphertext"];
|
|
184
184
|
export type SendMessageContent = {
|
|
185
185
|
message_type?: (typeof SUPPORTED_TYPES)[number];
|
|
186
186
|
body?: string;
|
package/dist/types.js
CHANGED