ugcinc 3.59.0 → 3.60.0
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/types.d.ts +13 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -1488,12 +1488,18 @@ export interface CreateDmMessage {
|
|
|
1488
1488
|
export interface CreateDmNodeConfig {
|
|
1489
1489
|
/** Platform to render */
|
|
1490
1490
|
platform: 'imessage' | 'instagram';
|
|
1491
|
+
/** Whether platform comes from input port */
|
|
1492
|
+
platformIsVariable?: boolean;
|
|
1491
1493
|
/** Light or dark mode */
|
|
1492
1494
|
lightMode: boolean;
|
|
1493
1495
|
/** Username displayed in header */
|
|
1494
1496
|
username: string;
|
|
1497
|
+
/** Whether username comes from input port */
|
|
1498
|
+
usernameIsVariable?: boolean;
|
|
1495
1499
|
/** Status bar time */
|
|
1496
1500
|
time: string;
|
|
1501
|
+
/** Whether status bar time comes from input port */
|
|
1502
|
+
timeIsVariable?: boolean;
|
|
1497
1503
|
/** Profile picture URL (fallback if profilePic input not connected) */
|
|
1498
1504
|
profilePicUrl?: string;
|
|
1499
1505
|
/** Whether profile pic comes from input port */
|
|
@@ -1508,10 +1514,17 @@ export interface CreateDmNodeConfig {
|
|
|
1508
1514
|
imageAttachmentIsVariable?: boolean;
|
|
1509
1515
|
/** iMessage-specific settings */
|
|
1510
1516
|
imessage?: {
|
|
1517
|
+
senderBubbleColor?: string;
|
|
1511
1518
|
showReadReceipt: boolean;
|
|
1512
1519
|
readReceiptText: string;
|
|
1520
|
+
/** Whether read receipt time comes from input port */
|
|
1521
|
+
readReceiptTimeIsVariable?: boolean;
|
|
1513
1522
|
unreadBadgeText: string;
|
|
1523
|
+
/** Whether unread badge comes from input port */
|
|
1524
|
+
unreadBadgeIsVariable?: boolean;
|
|
1514
1525
|
messageHeaderTimestampText: string;
|
|
1526
|
+
/** Whether message header time comes from input port */
|
|
1527
|
+
messageHeaderTimeIsVariable?: boolean;
|
|
1515
1528
|
};
|
|
1516
1529
|
/** Instagram-specific settings */
|
|
1517
1530
|
instagram?: {
|