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