@wppconnect/wa-proto 1.1.9 → 1.1.30
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/CHANGELOG.md +84 -0
- package/WAProto.proto +141 -2
- package/dist/index.d.ts +1690 -10
- package/dist/index.js +4810 -7
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -592,6 +592,9 @@ export namespace waproto {
|
|
|
592
592
|
|
|
593
593
|
/** AIRichResponseMessage submessages */
|
|
594
594
|
submessages?: (waproto.AIRichResponseMessage.IAIRichResponseSubMessage[]|null);
|
|
595
|
+
|
|
596
|
+
/** AIRichResponseMessage abstractData */
|
|
597
|
+
abstractData?: (waproto.AIRichResponseMessage.IAIRichResponseAbstractData|null);
|
|
595
598
|
}
|
|
596
599
|
|
|
597
600
|
/** Represents a AIRichResponseMessage. */
|
|
@@ -609,6 +612,9 @@ export namespace waproto {
|
|
|
609
612
|
/** AIRichResponseMessage submessages. */
|
|
610
613
|
public submessages: waproto.AIRichResponseMessage.IAIRichResponseSubMessage[];
|
|
611
614
|
|
|
615
|
+
/** AIRichResponseMessage abstractData. */
|
|
616
|
+
public abstractData?: (waproto.AIRichResponseMessage.IAIRichResponseAbstractData|null);
|
|
617
|
+
|
|
612
618
|
/**
|
|
613
619
|
* Creates a new AIRichResponseMessage instance using the specified properties.
|
|
614
620
|
* @param [properties] Properties to set
|
|
@@ -689,6 +695,103 @@ export namespace waproto {
|
|
|
689
695
|
|
|
690
696
|
namespace AIRichResponseMessage {
|
|
691
697
|
|
|
698
|
+
/** Properties of a AIRichResponseAbstractData. */
|
|
699
|
+
interface IAIRichResponseAbstractData {
|
|
700
|
+
|
|
701
|
+
/** AIRichResponseAbstractData data */
|
|
702
|
+
data?: (Uint8Array|null);
|
|
703
|
+
}
|
|
704
|
+
|
|
705
|
+
/** Represents a AIRichResponseAbstractData. */
|
|
706
|
+
class AIRichResponseAbstractData implements IAIRichResponseAbstractData {
|
|
707
|
+
|
|
708
|
+
/**
|
|
709
|
+
* Constructs a new AIRichResponseAbstractData.
|
|
710
|
+
* @param [properties] Properties to set
|
|
711
|
+
*/
|
|
712
|
+
constructor(properties?: waproto.AIRichResponseMessage.IAIRichResponseAbstractData);
|
|
713
|
+
|
|
714
|
+
/** AIRichResponseAbstractData data. */
|
|
715
|
+
public data?: (Uint8Array|null);
|
|
716
|
+
|
|
717
|
+
/**
|
|
718
|
+
* Creates a new AIRichResponseAbstractData instance using the specified properties.
|
|
719
|
+
* @param [properties] Properties to set
|
|
720
|
+
* @returns AIRichResponseAbstractData instance
|
|
721
|
+
*/
|
|
722
|
+
public static create(properties?: waproto.AIRichResponseMessage.IAIRichResponseAbstractData): waproto.AIRichResponseMessage.AIRichResponseAbstractData;
|
|
723
|
+
|
|
724
|
+
/**
|
|
725
|
+
* Encodes the specified AIRichResponseAbstractData message. Does not implicitly {@link waproto.AIRichResponseMessage.AIRichResponseAbstractData.verify|verify} messages.
|
|
726
|
+
* @param message AIRichResponseAbstractData message or plain object to encode
|
|
727
|
+
* @param [writer] Writer to encode to
|
|
728
|
+
* @returns Writer
|
|
729
|
+
*/
|
|
730
|
+
public static encode(message: waproto.AIRichResponseMessage.IAIRichResponseAbstractData, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
731
|
+
|
|
732
|
+
/**
|
|
733
|
+
* Encodes the specified AIRichResponseAbstractData message, length delimited. Does not implicitly {@link waproto.AIRichResponseMessage.AIRichResponseAbstractData.verify|verify} messages.
|
|
734
|
+
* @param message AIRichResponseAbstractData message or plain object to encode
|
|
735
|
+
* @param [writer] Writer to encode to
|
|
736
|
+
* @returns Writer
|
|
737
|
+
*/
|
|
738
|
+
public static encodeDelimited(message: waproto.AIRichResponseMessage.IAIRichResponseAbstractData, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
739
|
+
|
|
740
|
+
/**
|
|
741
|
+
* Decodes a AIRichResponseAbstractData message from the specified reader or buffer.
|
|
742
|
+
* @param reader Reader or buffer to decode from
|
|
743
|
+
* @param [length] Message length if known beforehand
|
|
744
|
+
* @returns AIRichResponseAbstractData
|
|
745
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
746
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
747
|
+
*/
|
|
748
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): waproto.AIRichResponseMessage.AIRichResponseAbstractData;
|
|
749
|
+
|
|
750
|
+
/**
|
|
751
|
+
* Decodes a AIRichResponseAbstractData message from the specified reader or buffer, length delimited.
|
|
752
|
+
* @param reader Reader or buffer to decode from
|
|
753
|
+
* @returns AIRichResponseAbstractData
|
|
754
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
755
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
756
|
+
*/
|
|
757
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): waproto.AIRichResponseMessage.AIRichResponseAbstractData;
|
|
758
|
+
|
|
759
|
+
/**
|
|
760
|
+
* Verifies a AIRichResponseAbstractData message.
|
|
761
|
+
* @param message Plain object to verify
|
|
762
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
763
|
+
*/
|
|
764
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
765
|
+
|
|
766
|
+
/**
|
|
767
|
+
* Creates a AIRichResponseAbstractData message from a plain object. Also converts values to their respective internal types.
|
|
768
|
+
* @param object Plain object
|
|
769
|
+
* @returns AIRichResponseAbstractData
|
|
770
|
+
*/
|
|
771
|
+
public static fromObject(object: { [k: string]: any }): waproto.AIRichResponseMessage.AIRichResponseAbstractData;
|
|
772
|
+
|
|
773
|
+
/**
|
|
774
|
+
* Creates a plain object from a AIRichResponseAbstractData message. Also converts values to other types if specified.
|
|
775
|
+
* @param message AIRichResponseAbstractData
|
|
776
|
+
* @param [options] Conversion options
|
|
777
|
+
* @returns Plain object
|
|
778
|
+
*/
|
|
779
|
+
public static toObject(message: waproto.AIRichResponseMessage.AIRichResponseAbstractData, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
780
|
+
|
|
781
|
+
/**
|
|
782
|
+
* Converts this AIRichResponseAbstractData to JSON.
|
|
783
|
+
* @returns JSON object
|
|
784
|
+
*/
|
|
785
|
+
public toJSON(): { [k: string]: any };
|
|
786
|
+
|
|
787
|
+
/**
|
|
788
|
+
* Gets the default type url for AIRichResponseAbstractData
|
|
789
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
790
|
+
* @returns The default type url
|
|
791
|
+
*/
|
|
792
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
793
|
+
}
|
|
794
|
+
|
|
692
795
|
/** Properties of a AIRichResponseCodeMetadata. */
|
|
693
796
|
interface IAIRichResponseCodeMetadata {
|
|
694
797
|
|
|
@@ -1370,11 +1473,703 @@ export namespace waproto {
|
|
|
1370
1473
|
}
|
|
1371
1474
|
}
|
|
1372
1475
|
|
|
1476
|
+
/** Properties of a AIRichResponseLatexMetadata. */
|
|
1477
|
+
interface IAIRichResponseLatexMetadata {
|
|
1478
|
+
|
|
1479
|
+
/** AIRichResponseLatexMetadata text */
|
|
1480
|
+
text?: (string|null);
|
|
1481
|
+
|
|
1482
|
+
/** AIRichResponseLatexMetadata expressions */
|
|
1483
|
+
expressions?: (waproto.AIRichResponseMessage.AIRichResponseLatexMetadata.IAIRichResponseLatexExpression[]|null);
|
|
1484
|
+
}
|
|
1485
|
+
|
|
1486
|
+
/** Represents a AIRichResponseLatexMetadata. */
|
|
1487
|
+
class AIRichResponseLatexMetadata implements IAIRichResponseLatexMetadata {
|
|
1488
|
+
|
|
1489
|
+
/**
|
|
1490
|
+
* Constructs a new AIRichResponseLatexMetadata.
|
|
1491
|
+
* @param [properties] Properties to set
|
|
1492
|
+
*/
|
|
1493
|
+
constructor(properties?: waproto.AIRichResponseMessage.IAIRichResponseLatexMetadata);
|
|
1494
|
+
|
|
1495
|
+
/** AIRichResponseLatexMetadata text. */
|
|
1496
|
+
public text?: (string|null);
|
|
1497
|
+
|
|
1498
|
+
/** AIRichResponseLatexMetadata expressions. */
|
|
1499
|
+
public expressions: waproto.AIRichResponseMessage.AIRichResponseLatexMetadata.IAIRichResponseLatexExpression[];
|
|
1500
|
+
|
|
1501
|
+
/**
|
|
1502
|
+
* Creates a new AIRichResponseLatexMetadata instance using the specified properties.
|
|
1503
|
+
* @param [properties] Properties to set
|
|
1504
|
+
* @returns AIRichResponseLatexMetadata instance
|
|
1505
|
+
*/
|
|
1506
|
+
public static create(properties?: waproto.AIRichResponseMessage.IAIRichResponseLatexMetadata): waproto.AIRichResponseMessage.AIRichResponseLatexMetadata;
|
|
1507
|
+
|
|
1508
|
+
/**
|
|
1509
|
+
* Encodes the specified AIRichResponseLatexMetadata message. Does not implicitly {@link waproto.AIRichResponseMessage.AIRichResponseLatexMetadata.verify|verify} messages.
|
|
1510
|
+
* @param message AIRichResponseLatexMetadata message or plain object to encode
|
|
1511
|
+
* @param [writer] Writer to encode to
|
|
1512
|
+
* @returns Writer
|
|
1513
|
+
*/
|
|
1514
|
+
public static encode(message: waproto.AIRichResponseMessage.IAIRichResponseLatexMetadata, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
1515
|
+
|
|
1516
|
+
/**
|
|
1517
|
+
* Encodes the specified AIRichResponseLatexMetadata message, length delimited. Does not implicitly {@link waproto.AIRichResponseMessage.AIRichResponseLatexMetadata.verify|verify} messages.
|
|
1518
|
+
* @param message AIRichResponseLatexMetadata message or plain object to encode
|
|
1519
|
+
* @param [writer] Writer to encode to
|
|
1520
|
+
* @returns Writer
|
|
1521
|
+
*/
|
|
1522
|
+
public static encodeDelimited(message: waproto.AIRichResponseMessage.IAIRichResponseLatexMetadata, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
1523
|
+
|
|
1524
|
+
/**
|
|
1525
|
+
* Decodes a AIRichResponseLatexMetadata message from the specified reader or buffer.
|
|
1526
|
+
* @param reader Reader or buffer to decode from
|
|
1527
|
+
* @param [length] Message length if known beforehand
|
|
1528
|
+
* @returns AIRichResponseLatexMetadata
|
|
1529
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
1530
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
1531
|
+
*/
|
|
1532
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): waproto.AIRichResponseMessage.AIRichResponseLatexMetadata;
|
|
1533
|
+
|
|
1534
|
+
/**
|
|
1535
|
+
* Decodes a AIRichResponseLatexMetadata message from the specified reader or buffer, length delimited.
|
|
1536
|
+
* @param reader Reader or buffer to decode from
|
|
1537
|
+
* @returns AIRichResponseLatexMetadata
|
|
1538
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
1539
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
1540
|
+
*/
|
|
1541
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): waproto.AIRichResponseMessage.AIRichResponseLatexMetadata;
|
|
1542
|
+
|
|
1543
|
+
/**
|
|
1544
|
+
* Verifies a AIRichResponseLatexMetadata message.
|
|
1545
|
+
* @param message Plain object to verify
|
|
1546
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
1547
|
+
*/
|
|
1548
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
1549
|
+
|
|
1550
|
+
/**
|
|
1551
|
+
* Creates a AIRichResponseLatexMetadata message from a plain object. Also converts values to their respective internal types.
|
|
1552
|
+
* @param object Plain object
|
|
1553
|
+
* @returns AIRichResponseLatexMetadata
|
|
1554
|
+
*/
|
|
1555
|
+
public static fromObject(object: { [k: string]: any }): waproto.AIRichResponseMessage.AIRichResponseLatexMetadata;
|
|
1556
|
+
|
|
1557
|
+
/**
|
|
1558
|
+
* Creates a plain object from a AIRichResponseLatexMetadata message. Also converts values to other types if specified.
|
|
1559
|
+
* @param message AIRichResponseLatexMetadata
|
|
1560
|
+
* @param [options] Conversion options
|
|
1561
|
+
* @returns Plain object
|
|
1562
|
+
*/
|
|
1563
|
+
public static toObject(message: waproto.AIRichResponseMessage.AIRichResponseLatexMetadata, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
1564
|
+
|
|
1565
|
+
/**
|
|
1566
|
+
* Converts this AIRichResponseLatexMetadata to JSON.
|
|
1567
|
+
* @returns JSON object
|
|
1568
|
+
*/
|
|
1569
|
+
public toJSON(): { [k: string]: any };
|
|
1570
|
+
|
|
1571
|
+
/**
|
|
1572
|
+
* Gets the default type url for AIRichResponseLatexMetadata
|
|
1573
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
1574
|
+
* @returns The default type url
|
|
1575
|
+
*/
|
|
1576
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
1577
|
+
}
|
|
1578
|
+
|
|
1579
|
+
namespace AIRichResponseLatexMetadata {
|
|
1580
|
+
|
|
1581
|
+
/** Properties of a AIRichResponseLatexExpression. */
|
|
1582
|
+
interface IAIRichResponseLatexExpression {
|
|
1583
|
+
|
|
1584
|
+
/** AIRichResponseLatexExpression latexExpression */
|
|
1585
|
+
latexExpression?: (string|null);
|
|
1586
|
+
|
|
1587
|
+
/** AIRichResponseLatexExpression url */
|
|
1588
|
+
url?: (string|null);
|
|
1589
|
+
|
|
1590
|
+
/** AIRichResponseLatexExpression width */
|
|
1591
|
+
width?: (number|null);
|
|
1592
|
+
|
|
1593
|
+
/** AIRichResponseLatexExpression height */
|
|
1594
|
+
height?: (number|null);
|
|
1595
|
+
|
|
1596
|
+
/** AIRichResponseLatexExpression fontHeight */
|
|
1597
|
+
fontHeight?: (number|null);
|
|
1598
|
+
}
|
|
1599
|
+
|
|
1600
|
+
/** Represents a AIRichResponseLatexExpression. */
|
|
1601
|
+
class AIRichResponseLatexExpression implements IAIRichResponseLatexExpression {
|
|
1602
|
+
|
|
1603
|
+
/**
|
|
1604
|
+
* Constructs a new AIRichResponseLatexExpression.
|
|
1605
|
+
* @param [properties] Properties to set
|
|
1606
|
+
*/
|
|
1607
|
+
constructor(properties?: waproto.AIRichResponseMessage.AIRichResponseLatexMetadata.IAIRichResponseLatexExpression);
|
|
1608
|
+
|
|
1609
|
+
/** AIRichResponseLatexExpression latexExpression. */
|
|
1610
|
+
public latexExpression?: (string|null);
|
|
1611
|
+
|
|
1612
|
+
/** AIRichResponseLatexExpression url. */
|
|
1613
|
+
public url?: (string|null);
|
|
1614
|
+
|
|
1615
|
+
/** AIRichResponseLatexExpression width. */
|
|
1616
|
+
public width?: (number|null);
|
|
1617
|
+
|
|
1618
|
+
/** AIRichResponseLatexExpression height. */
|
|
1619
|
+
public height?: (number|null);
|
|
1620
|
+
|
|
1621
|
+
/** AIRichResponseLatexExpression fontHeight. */
|
|
1622
|
+
public fontHeight?: (number|null);
|
|
1623
|
+
|
|
1624
|
+
/**
|
|
1625
|
+
* Creates a new AIRichResponseLatexExpression instance using the specified properties.
|
|
1626
|
+
* @param [properties] Properties to set
|
|
1627
|
+
* @returns AIRichResponseLatexExpression instance
|
|
1628
|
+
*/
|
|
1629
|
+
public static create(properties?: waproto.AIRichResponseMessage.AIRichResponseLatexMetadata.IAIRichResponseLatexExpression): waproto.AIRichResponseMessage.AIRichResponseLatexMetadata.AIRichResponseLatexExpression;
|
|
1630
|
+
|
|
1631
|
+
/**
|
|
1632
|
+
* Encodes the specified AIRichResponseLatexExpression message. Does not implicitly {@link waproto.AIRichResponseMessage.AIRichResponseLatexMetadata.AIRichResponseLatexExpression.verify|verify} messages.
|
|
1633
|
+
* @param message AIRichResponseLatexExpression message or plain object to encode
|
|
1634
|
+
* @param [writer] Writer to encode to
|
|
1635
|
+
* @returns Writer
|
|
1636
|
+
*/
|
|
1637
|
+
public static encode(message: waproto.AIRichResponseMessage.AIRichResponseLatexMetadata.IAIRichResponseLatexExpression, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
1638
|
+
|
|
1639
|
+
/**
|
|
1640
|
+
* Encodes the specified AIRichResponseLatexExpression message, length delimited. Does not implicitly {@link waproto.AIRichResponseMessage.AIRichResponseLatexMetadata.AIRichResponseLatexExpression.verify|verify} messages.
|
|
1641
|
+
* @param message AIRichResponseLatexExpression message or plain object to encode
|
|
1642
|
+
* @param [writer] Writer to encode to
|
|
1643
|
+
* @returns Writer
|
|
1644
|
+
*/
|
|
1645
|
+
public static encodeDelimited(message: waproto.AIRichResponseMessage.AIRichResponseLatexMetadata.IAIRichResponseLatexExpression, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
1646
|
+
|
|
1647
|
+
/**
|
|
1648
|
+
* Decodes a AIRichResponseLatexExpression message from the specified reader or buffer.
|
|
1649
|
+
* @param reader Reader or buffer to decode from
|
|
1650
|
+
* @param [length] Message length if known beforehand
|
|
1651
|
+
* @returns AIRichResponseLatexExpression
|
|
1652
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
1653
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
1654
|
+
*/
|
|
1655
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): waproto.AIRichResponseMessage.AIRichResponseLatexMetadata.AIRichResponseLatexExpression;
|
|
1656
|
+
|
|
1657
|
+
/**
|
|
1658
|
+
* Decodes a AIRichResponseLatexExpression message from the specified reader or buffer, length delimited.
|
|
1659
|
+
* @param reader Reader or buffer to decode from
|
|
1660
|
+
* @returns AIRichResponseLatexExpression
|
|
1661
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
1662
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
1663
|
+
*/
|
|
1664
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): waproto.AIRichResponseMessage.AIRichResponseLatexMetadata.AIRichResponseLatexExpression;
|
|
1665
|
+
|
|
1666
|
+
/**
|
|
1667
|
+
* Verifies a AIRichResponseLatexExpression message.
|
|
1668
|
+
* @param message Plain object to verify
|
|
1669
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
1670
|
+
*/
|
|
1671
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
1672
|
+
|
|
1673
|
+
/**
|
|
1674
|
+
* Creates a AIRichResponseLatexExpression message from a plain object. Also converts values to their respective internal types.
|
|
1675
|
+
* @param object Plain object
|
|
1676
|
+
* @returns AIRichResponseLatexExpression
|
|
1677
|
+
*/
|
|
1678
|
+
public static fromObject(object: { [k: string]: any }): waproto.AIRichResponseMessage.AIRichResponseLatexMetadata.AIRichResponseLatexExpression;
|
|
1679
|
+
|
|
1680
|
+
/**
|
|
1681
|
+
* Creates a plain object from a AIRichResponseLatexExpression message. Also converts values to other types if specified.
|
|
1682
|
+
* @param message AIRichResponseLatexExpression
|
|
1683
|
+
* @param [options] Conversion options
|
|
1684
|
+
* @returns Plain object
|
|
1685
|
+
*/
|
|
1686
|
+
public static toObject(message: waproto.AIRichResponseMessage.AIRichResponseLatexMetadata.AIRichResponseLatexExpression, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
1687
|
+
|
|
1688
|
+
/**
|
|
1689
|
+
* Converts this AIRichResponseLatexExpression to JSON.
|
|
1690
|
+
* @returns JSON object
|
|
1691
|
+
*/
|
|
1692
|
+
public toJSON(): { [k: string]: any };
|
|
1693
|
+
|
|
1694
|
+
/**
|
|
1695
|
+
* Gets the default type url for AIRichResponseLatexExpression
|
|
1696
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
1697
|
+
* @returns The default type url
|
|
1698
|
+
*/
|
|
1699
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
1700
|
+
}
|
|
1701
|
+
}
|
|
1702
|
+
|
|
1703
|
+
/** Properties of a AIRichResponseMapMetadata. */
|
|
1704
|
+
interface IAIRichResponseMapMetadata {
|
|
1705
|
+
|
|
1706
|
+
/** AIRichResponseMapMetadata centerLatitude */
|
|
1707
|
+
centerLatitude?: (number|null);
|
|
1708
|
+
|
|
1709
|
+
/** AIRichResponseMapMetadata centerLongtitude */
|
|
1710
|
+
centerLongtitude?: (number|null);
|
|
1711
|
+
|
|
1712
|
+
/** AIRichResponseMapMetadata latitudeDelta */
|
|
1713
|
+
latitudeDelta?: (number|null);
|
|
1714
|
+
|
|
1715
|
+
/** AIRichResponseMapMetadata longtitudeDelta */
|
|
1716
|
+
longtitudeDelta?: (number|null);
|
|
1717
|
+
|
|
1718
|
+
/** AIRichResponseMapMetadata anotations */
|
|
1719
|
+
anotations?: (waproto.AIRichResponseMessage.AIRichResponseMapMetadata.IAIRichResponseMapAnnotation[]|null);
|
|
1720
|
+
|
|
1721
|
+
/** AIRichResponseMapMetadata showInfoList */
|
|
1722
|
+
showInfoList?: (boolean|null);
|
|
1723
|
+
}
|
|
1724
|
+
|
|
1725
|
+
/** Represents a AIRichResponseMapMetadata. */
|
|
1726
|
+
class AIRichResponseMapMetadata implements IAIRichResponseMapMetadata {
|
|
1727
|
+
|
|
1728
|
+
/**
|
|
1729
|
+
* Constructs a new AIRichResponseMapMetadata.
|
|
1730
|
+
* @param [properties] Properties to set
|
|
1731
|
+
*/
|
|
1732
|
+
constructor(properties?: waproto.AIRichResponseMessage.IAIRichResponseMapMetadata);
|
|
1733
|
+
|
|
1734
|
+
/** AIRichResponseMapMetadata centerLatitude. */
|
|
1735
|
+
public centerLatitude?: (number|null);
|
|
1736
|
+
|
|
1737
|
+
/** AIRichResponseMapMetadata centerLongtitude. */
|
|
1738
|
+
public centerLongtitude?: (number|null);
|
|
1739
|
+
|
|
1740
|
+
/** AIRichResponseMapMetadata latitudeDelta. */
|
|
1741
|
+
public latitudeDelta?: (number|null);
|
|
1742
|
+
|
|
1743
|
+
/** AIRichResponseMapMetadata longtitudeDelta. */
|
|
1744
|
+
public longtitudeDelta?: (number|null);
|
|
1745
|
+
|
|
1746
|
+
/** AIRichResponseMapMetadata anotations. */
|
|
1747
|
+
public anotations: waproto.AIRichResponseMessage.AIRichResponseMapMetadata.IAIRichResponseMapAnnotation[];
|
|
1748
|
+
|
|
1749
|
+
/** AIRichResponseMapMetadata showInfoList. */
|
|
1750
|
+
public showInfoList?: (boolean|null);
|
|
1751
|
+
|
|
1752
|
+
/**
|
|
1753
|
+
* Creates a new AIRichResponseMapMetadata instance using the specified properties.
|
|
1754
|
+
* @param [properties] Properties to set
|
|
1755
|
+
* @returns AIRichResponseMapMetadata instance
|
|
1756
|
+
*/
|
|
1757
|
+
public static create(properties?: waproto.AIRichResponseMessage.IAIRichResponseMapMetadata): waproto.AIRichResponseMessage.AIRichResponseMapMetadata;
|
|
1758
|
+
|
|
1759
|
+
/**
|
|
1760
|
+
* Encodes the specified AIRichResponseMapMetadata message. Does not implicitly {@link waproto.AIRichResponseMessage.AIRichResponseMapMetadata.verify|verify} messages.
|
|
1761
|
+
* @param message AIRichResponseMapMetadata message or plain object to encode
|
|
1762
|
+
* @param [writer] Writer to encode to
|
|
1763
|
+
* @returns Writer
|
|
1764
|
+
*/
|
|
1765
|
+
public static encode(message: waproto.AIRichResponseMessage.IAIRichResponseMapMetadata, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
1766
|
+
|
|
1767
|
+
/**
|
|
1768
|
+
* Encodes the specified AIRichResponseMapMetadata message, length delimited. Does not implicitly {@link waproto.AIRichResponseMessage.AIRichResponseMapMetadata.verify|verify} messages.
|
|
1769
|
+
* @param message AIRichResponseMapMetadata message or plain object to encode
|
|
1770
|
+
* @param [writer] Writer to encode to
|
|
1771
|
+
* @returns Writer
|
|
1772
|
+
*/
|
|
1773
|
+
public static encodeDelimited(message: waproto.AIRichResponseMessage.IAIRichResponseMapMetadata, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
1774
|
+
|
|
1775
|
+
/**
|
|
1776
|
+
* Decodes a AIRichResponseMapMetadata message from the specified reader or buffer.
|
|
1777
|
+
* @param reader Reader or buffer to decode from
|
|
1778
|
+
* @param [length] Message length if known beforehand
|
|
1779
|
+
* @returns AIRichResponseMapMetadata
|
|
1780
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
1781
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
1782
|
+
*/
|
|
1783
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): waproto.AIRichResponseMessage.AIRichResponseMapMetadata;
|
|
1784
|
+
|
|
1785
|
+
/**
|
|
1786
|
+
* Decodes a AIRichResponseMapMetadata message from the specified reader or buffer, length delimited.
|
|
1787
|
+
* @param reader Reader or buffer to decode from
|
|
1788
|
+
* @returns AIRichResponseMapMetadata
|
|
1789
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
1790
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
1791
|
+
*/
|
|
1792
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): waproto.AIRichResponseMessage.AIRichResponseMapMetadata;
|
|
1793
|
+
|
|
1794
|
+
/**
|
|
1795
|
+
* Verifies a AIRichResponseMapMetadata message.
|
|
1796
|
+
* @param message Plain object to verify
|
|
1797
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
1798
|
+
*/
|
|
1799
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
1800
|
+
|
|
1801
|
+
/**
|
|
1802
|
+
* Creates a AIRichResponseMapMetadata message from a plain object. Also converts values to their respective internal types.
|
|
1803
|
+
* @param object Plain object
|
|
1804
|
+
* @returns AIRichResponseMapMetadata
|
|
1805
|
+
*/
|
|
1806
|
+
public static fromObject(object: { [k: string]: any }): waproto.AIRichResponseMessage.AIRichResponseMapMetadata;
|
|
1807
|
+
|
|
1808
|
+
/**
|
|
1809
|
+
* Creates a plain object from a AIRichResponseMapMetadata message. Also converts values to other types if specified.
|
|
1810
|
+
* @param message AIRichResponseMapMetadata
|
|
1811
|
+
* @param [options] Conversion options
|
|
1812
|
+
* @returns Plain object
|
|
1813
|
+
*/
|
|
1814
|
+
public static toObject(message: waproto.AIRichResponseMessage.AIRichResponseMapMetadata, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
1815
|
+
|
|
1816
|
+
/**
|
|
1817
|
+
* Converts this AIRichResponseMapMetadata to JSON.
|
|
1818
|
+
* @returns JSON object
|
|
1819
|
+
*/
|
|
1820
|
+
public toJSON(): { [k: string]: any };
|
|
1821
|
+
|
|
1822
|
+
/**
|
|
1823
|
+
* Gets the default type url for AIRichResponseMapMetadata
|
|
1824
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
1825
|
+
* @returns The default type url
|
|
1826
|
+
*/
|
|
1827
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
1828
|
+
}
|
|
1829
|
+
|
|
1830
|
+
namespace AIRichResponseMapMetadata {
|
|
1831
|
+
|
|
1832
|
+
/** Properties of a AIRichResponseMapAnnotation. */
|
|
1833
|
+
interface IAIRichResponseMapAnnotation {
|
|
1834
|
+
|
|
1835
|
+
/** AIRichResponseMapAnnotation annotationNumber */
|
|
1836
|
+
annotationNumber?: (number|null);
|
|
1837
|
+
|
|
1838
|
+
/** AIRichResponseMapAnnotation latitude */
|
|
1839
|
+
latitude?: (number|null);
|
|
1840
|
+
|
|
1841
|
+
/** AIRichResponseMapAnnotation longtitude */
|
|
1842
|
+
longtitude?: (number|null);
|
|
1843
|
+
|
|
1844
|
+
/** AIRichResponseMapAnnotation title */
|
|
1845
|
+
title?: (string|null);
|
|
1846
|
+
|
|
1847
|
+
/** AIRichResponseMapAnnotation body */
|
|
1848
|
+
body?: (string|null);
|
|
1849
|
+
}
|
|
1850
|
+
|
|
1851
|
+
/** Represents a AIRichResponseMapAnnotation. */
|
|
1852
|
+
class AIRichResponseMapAnnotation implements IAIRichResponseMapAnnotation {
|
|
1853
|
+
|
|
1854
|
+
/**
|
|
1855
|
+
* Constructs a new AIRichResponseMapAnnotation.
|
|
1856
|
+
* @param [properties] Properties to set
|
|
1857
|
+
*/
|
|
1858
|
+
constructor(properties?: waproto.AIRichResponseMessage.AIRichResponseMapMetadata.IAIRichResponseMapAnnotation);
|
|
1859
|
+
|
|
1860
|
+
/** AIRichResponseMapAnnotation annotationNumber. */
|
|
1861
|
+
public annotationNumber?: (number|null);
|
|
1862
|
+
|
|
1863
|
+
/** AIRichResponseMapAnnotation latitude. */
|
|
1864
|
+
public latitude?: (number|null);
|
|
1865
|
+
|
|
1866
|
+
/** AIRichResponseMapAnnotation longtitude. */
|
|
1867
|
+
public longtitude?: (number|null);
|
|
1868
|
+
|
|
1869
|
+
/** AIRichResponseMapAnnotation title. */
|
|
1870
|
+
public title?: (string|null);
|
|
1871
|
+
|
|
1872
|
+
/** AIRichResponseMapAnnotation body. */
|
|
1873
|
+
public body?: (string|null);
|
|
1874
|
+
|
|
1875
|
+
/**
|
|
1876
|
+
* Creates a new AIRichResponseMapAnnotation instance using the specified properties.
|
|
1877
|
+
* @param [properties] Properties to set
|
|
1878
|
+
* @returns AIRichResponseMapAnnotation instance
|
|
1879
|
+
*/
|
|
1880
|
+
public static create(properties?: waproto.AIRichResponseMessage.AIRichResponseMapMetadata.IAIRichResponseMapAnnotation): waproto.AIRichResponseMessage.AIRichResponseMapMetadata.AIRichResponseMapAnnotation;
|
|
1881
|
+
|
|
1882
|
+
/**
|
|
1883
|
+
* Encodes the specified AIRichResponseMapAnnotation message. Does not implicitly {@link waproto.AIRichResponseMessage.AIRichResponseMapMetadata.AIRichResponseMapAnnotation.verify|verify} messages.
|
|
1884
|
+
* @param message AIRichResponseMapAnnotation message or plain object to encode
|
|
1885
|
+
* @param [writer] Writer to encode to
|
|
1886
|
+
* @returns Writer
|
|
1887
|
+
*/
|
|
1888
|
+
public static encode(message: waproto.AIRichResponseMessage.AIRichResponseMapMetadata.IAIRichResponseMapAnnotation, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
1889
|
+
|
|
1890
|
+
/**
|
|
1891
|
+
* Encodes the specified AIRichResponseMapAnnotation message, length delimited. Does not implicitly {@link waproto.AIRichResponseMessage.AIRichResponseMapMetadata.AIRichResponseMapAnnotation.verify|verify} messages.
|
|
1892
|
+
* @param message AIRichResponseMapAnnotation message or plain object to encode
|
|
1893
|
+
* @param [writer] Writer to encode to
|
|
1894
|
+
* @returns Writer
|
|
1895
|
+
*/
|
|
1896
|
+
public static encodeDelimited(message: waproto.AIRichResponseMessage.AIRichResponseMapMetadata.IAIRichResponseMapAnnotation, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
1897
|
+
|
|
1898
|
+
/**
|
|
1899
|
+
* Decodes a AIRichResponseMapAnnotation message from the specified reader or buffer.
|
|
1900
|
+
* @param reader Reader or buffer to decode from
|
|
1901
|
+
* @param [length] Message length if known beforehand
|
|
1902
|
+
* @returns AIRichResponseMapAnnotation
|
|
1903
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
1904
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
1905
|
+
*/
|
|
1906
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): waproto.AIRichResponseMessage.AIRichResponseMapMetadata.AIRichResponseMapAnnotation;
|
|
1907
|
+
|
|
1908
|
+
/**
|
|
1909
|
+
* Decodes a AIRichResponseMapAnnotation message from the specified reader or buffer, length delimited.
|
|
1910
|
+
* @param reader Reader or buffer to decode from
|
|
1911
|
+
* @returns AIRichResponseMapAnnotation
|
|
1912
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
1913
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
1914
|
+
*/
|
|
1915
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): waproto.AIRichResponseMessage.AIRichResponseMapMetadata.AIRichResponseMapAnnotation;
|
|
1916
|
+
|
|
1917
|
+
/**
|
|
1918
|
+
* Verifies a AIRichResponseMapAnnotation message.
|
|
1919
|
+
* @param message Plain object to verify
|
|
1920
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
1921
|
+
*/
|
|
1922
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
1923
|
+
|
|
1924
|
+
/**
|
|
1925
|
+
* Creates a AIRichResponseMapAnnotation message from a plain object. Also converts values to their respective internal types.
|
|
1926
|
+
* @param object Plain object
|
|
1927
|
+
* @returns AIRichResponseMapAnnotation
|
|
1928
|
+
*/
|
|
1929
|
+
public static fromObject(object: { [k: string]: any }): waproto.AIRichResponseMessage.AIRichResponseMapMetadata.AIRichResponseMapAnnotation;
|
|
1930
|
+
|
|
1931
|
+
/**
|
|
1932
|
+
* Creates a plain object from a AIRichResponseMapAnnotation message. Also converts values to other types if specified.
|
|
1933
|
+
* @param message AIRichResponseMapAnnotation
|
|
1934
|
+
* @param [options] Conversion options
|
|
1935
|
+
* @returns Plain object
|
|
1936
|
+
*/
|
|
1937
|
+
public static toObject(message: waproto.AIRichResponseMessage.AIRichResponseMapMetadata.AIRichResponseMapAnnotation, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
1938
|
+
|
|
1939
|
+
/**
|
|
1940
|
+
* Converts this AIRichResponseMapAnnotation to JSON.
|
|
1941
|
+
* @returns JSON object
|
|
1942
|
+
*/
|
|
1943
|
+
public toJSON(): { [k: string]: any };
|
|
1944
|
+
|
|
1945
|
+
/**
|
|
1946
|
+
* Gets the default type url for AIRichResponseMapAnnotation
|
|
1947
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
1948
|
+
* @returns The default type url
|
|
1949
|
+
*/
|
|
1950
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
1951
|
+
}
|
|
1952
|
+
}
|
|
1953
|
+
|
|
1373
1954
|
/** AIRichResponseMessageType enum. */
|
|
1374
1955
|
enum AIRichResponseMessageType {
|
|
1375
1956
|
AI_RICH_RESPONSE_TYPE_UNKNOWN = 0,
|
|
1376
|
-
AI_RICH_RESPONSE_TYPE_STANDARD = 1
|
|
1377
|
-
|
|
1957
|
+
AI_RICH_RESPONSE_TYPE_STANDARD = 1
|
|
1958
|
+
}
|
|
1959
|
+
|
|
1960
|
+
/** Properties of a AIRichResponseReelsMetadata. */
|
|
1961
|
+
interface IAIRichResponseReelsMetadata {
|
|
1962
|
+
|
|
1963
|
+
/** AIRichResponseReelsMetadata reelsMetadata */
|
|
1964
|
+
reelsMetadata?: (waproto.AIRichResponseMessage.AIRichResponseReelsMetadata.IAIRichResponseReelMetadata[]|null);
|
|
1965
|
+
}
|
|
1966
|
+
|
|
1967
|
+
/** Represents a AIRichResponseReelsMetadata. */
|
|
1968
|
+
class AIRichResponseReelsMetadata implements IAIRichResponseReelsMetadata {
|
|
1969
|
+
|
|
1970
|
+
/**
|
|
1971
|
+
* Constructs a new AIRichResponseReelsMetadata.
|
|
1972
|
+
* @param [properties] Properties to set
|
|
1973
|
+
*/
|
|
1974
|
+
constructor(properties?: waproto.AIRichResponseMessage.IAIRichResponseReelsMetadata);
|
|
1975
|
+
|
|
1976
|
+
/** AIRichResponseReelsMetadata reelsMetadata. */
|
|
1977
|
+
public reelsMetadata: waproto.AIRichResponseMessage.AIRichResponseReelsMetadata.IAIRichResponseReelMetadata[];
|
|
1978
|
+
|
|
1979
|
+
/**
|
|
1980
|
+
* Creates a new AIRichResponseReelsMetadata instance using the specified properties.
|
|
1981
|
+
* @param [properties] Properties to set
|
|
1982
|
+
* @returns AIRichResponseReelsMetadata instance
|
|
1983
|
+
*/
|
|
1984
|
+
public static create(properties?: waproto.AIRichResponseMessage.IAIRichResponseReelsMetadata): waproto.AIRichResponseMessage.AIRichResponseReelsMetadata;
|
|
1985
|
+
|
|
1986
|
+
/**
|
|
1987
|
+
* Encodes the specified AIRichResponseReelsMetadata message. Does not implicitly {@link waproto.AIRichResponseMessage.AIRichResponseReelsMetadata.verify|verify} messages.
|
|
1988
|
+
* @param message AIRichResponseReelsMetadata message or plain object to encode
|
|
1989
|
+
* @param [writer] Writer to encode to
|
|
1990
|
+
* @returns Writer
|
|
1991
|
+
*/
|
|
1992
|
+
public static encode(message: waproto.AIRichResponseMessage.IAIRichResponseReelsMetadata, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
1993
|
+
|
|
1994
|
+
/**
|
|
1995
|
+
* Encodes the specified AIRichResponseReelsMetadata message, length delimited. Does not implicitly {@link waproto.AIRichResponseMessage.AIRichResponseReelsMetadata.verify|verify} messages.
|
|
1996
|
+
* @param message AIRichResponseReelsMetadata message or plain object to encode
|
|
1997
|
+
* @param [writer] Writer to encode to
|
|
1998
|
+
* @returns Writer
|
|
1999
|
+
*/
|
|
2000
|
+
public static encodeDelimited(message: waproto.AIRichResponseMessage.IAIRichResponseReelsMetadata, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
2001
|
+
|
|
2002
|
+
/**
|
|
2003
|
+
* Decodes a AIRichResponseReelsMetadata message from the specified reader or buffer.
|
|
2004
|
+
* @param reader Reader or buffer to decode from
|
|
2005
|
+
* @param [length] Message length if known beforehand
|
|
2006
|
+
* @returns AIRichResponseReelsMetadata
|
|
2007
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
2008
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
2009
|
+
*/
|
|
2010
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): waproto.AIRichResponseMessage.AIRichResponseReelsMetadata;
|
|
2011
|
+
|
|
2012
|
+
/**
|
|
2013
|
+
* Decodes a AIRichResponseReelsMetadata message from the specified reader or buffer, length delimited.
|
|
2014
|
+
* @param reader Reader or buffer to decode from
|
|
2015
|
+
* @returns AIRichResponseReelsMetadata
|
|
2016
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
2017
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
2018
|
+
*/
|
|
2019
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): waproto.AIRichResponseMessage.AIRichResponseReelsMetadata;
|
|
2020
|
+
|
|
2021
|
+
/**
|
|
2022
|
+
* Verifies a AIRichResponseReelsMetadata message.
|
|
2023
|
+
* @param message Plain object to verify
|
|
2024
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
2025
|
+
*/
|
|
2026
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
2027
|
+
|
|
2028
|
+
/**
|
|
2029
|
+
* Creates a AIRichResponseReelsMetadata message from a plain object. Also converts values to their respective internal types.
|
|
2030
|
+
* @param object Plain object
|
|
2031
|
+
* @returns AIRichResponseReelsMetadata
|
|
2032
|
+
*/
|
|
2033
|
+
public static fromObject(object: { [k: string]: any }): waproto.AIRichResponseMessage.AIRichResponseReelsMetadata;
|
|
2034
|
+
|
|
2035
|
+
/**
|
|
2036
|
+
* Creates a plain object from a AIRichResponseReelsMetadata message. Also converts values to other types if specified.
|
|
2037
|
+
* @param message AIRichResponseReelsMetadata
|
|
2038
|
+
* @param [options] Conversion options
|
|
2039
|
+
* @returns Plain object
|
|
2040
|
+
*/
|
|
2041
|
+
public static toObject(message: waproto.AIRichResponseMessage.AIRichResponseReelsMetadata, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
2042
|
+
|
|
2043
|
+
/**
|
|
2044
|
+
* Converts this AIRichResponseReelsMetadata to JSON.
|
|
2045
|
+
* @returns JSON object
|
|
2046
|
+
*/
|
|
2047
|
+
public toJSON(): { [k: string]: any };
|
|
2048
|
+
|
|
2049
|
+
/**
|
|
2050
|
+
* Gets the default type url for AIRichResponseReelsMetadata
|
|
2051
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
2052
|
+
* @returns The default type url
|
|
2053
|
+
*/
|
|
2054
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
2055
|
+
}
|
|
2056
|
+
|
|
2057
|
+
namespace AIRichResponseReelsMetadata {
|
|
2058
|
+
|
|
2059
|
+
/** Properties of a AIRichResponseReelMetadata. */
|
|
2060
|
+
interface IAIRichResponseReelMetadata {
|
|
2061
|
+
|
|
2062
|
+
/** AIRichResponseReelMetadata title */
|
|
2063
|
+
title?: (string|null);
|
|
2064
|
+
|
|
2065
|
+
/** AIRichResponseReelMetadata profileIconUrl */
|
|
2066
|
+
profileIconUrl?: (string|null);
|
|
2067
|
+
|
|
2068
|
+
/** AIRichResponseReelMetadata previewUrl */
|
|
2069
|
+
previewUrl?: (string|null);
|
|
2070
|
+
|
|
2071
|
+
/** AIRichResponseReelMetadata videoUrl */
|
|
2072
|
+
videoUrl?: (string|null);
|
|
2073
|
+
}
|
|
2074
|
+
|
|
2075
|
+
/** Represents a AIRichResponseReelMetadata. */
|
|
2076
|
+
class AIRichResponseReelMetadata implements IAIRichResponseReelMetadata {
|
|
2077
|
+
|
|
2078
|
+
/**
|
|
2079
|
+
* Constructs a new AIRichResponseReelMetadata.
|
|
2080
|
+
* @param [properties] Properties to set
|
|
2081
|
+
*/
|
|
2082
|
+
constructor(properties?: waproto.AIRichResponseMessage.AIRichResponseReelsMetadata.IAIRichResponseReelMetadata);
|
|
2083
|
+
|
|
2084
|
+
/** AIRichResponseReelMetadata title. */
|
|
2085
|
+
public title?: (string|null);
|
|
2086
|
+
|
|
2087
|
+
/** AIRichResponseReelMetadata profileIconUrl. */
|
|
2088
|
+
public profileIconUrl?: (string|null);
|
|
2089
|
+
|
|
2090
|
+
/** AIRichResponseReelMetadata previewUrl. */
|
|
2091
|
+
public previewUrl?: (string|null);
|
|
2092
|
+
|
|
2093
|
+
/** AIRichResponseReelMetadata videoUrl. */
|
|
2094
|
+
public videoUrl?: (string|null);
|
|
2095
|
+
|
|
2096
|
+
/**
|
|
2097
|
+
* Creates a new AIRichResponseReelMetadata instance using the specified properties.
|
|
2098
|
+
* @param [properties] Properties to set
|
|
2099
|
+
* @returns AIRichResponseReelMetadata instance
|
|
2100
|
+
*/
|
|
2101
|
+
public static create(properties?: waproto.AIRichResponseMessage.AIRichResponseReelsMetadata.IAIRichResponseReelMetadata): waproto.AIRichResponseMessage.AIRichResponseReelsMetadata.AIRichResponseReelMetadata;
|
|
2102
|
+
|
|
2103
|
+
/**
|
|
2104
|
+
* Encodes the specified AIRichResponseReelMetadata message. Does not implicitly {@link waproto.AIRichResponseMessage.AIRichResponseReelsMetadata.AIRichResponseReelMetadata.verify|verify} messages.
|
|
2105
|
+
* @param message AIRichResponseReelMetadata message or plain object to encode
|
|
2106
|
+
* @param [writer] Writer to encode to
|
|
2107
|
+
* @returns Writer
|
|
2108
|
+
*/
|
|
2109
|
+
public static encode(message: waproto.AIRichResponseMessage.AIRichResponseReelsMetadata.IAIRichResponseReelMetadata, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
2110
|
+
|
|
2111
|
+
/**
|
|
2112
|
+
* Encodes the specified AIRichResponseReelMetadata message, length delimited. Does not implicitly {@link waproto.AIRichResponseMessage.AIRichResponseReelsMetadata.AIRichResponseReelMetadata.verify|verify} messages.
|
|
2113
|
+
* @param message AIRichResponseReelMetadata message or plain object to encode
|
|
2114
|
+
* @param [writer] Writer to encode to
|
|
2115
|
+
* @returns Writer
|
|
2116
|
+
*/
|
|
2117
|
+
public static encodeDelimited(message: waproto.AIRichResponseMessage.AIRichResponseReelsMetadata.IAIRichResponseReelMetadata, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
2118
|
+
|
|
2119
|
+
/**
|
|
2120
|
+
* Decodes a AIRichResponseReelMetadata message from the specified reader or buffer.
|
|
2121
|
+
* @param reader Reader or buffer to decode from
|
|
2122
|
+
* @param [length] Message length if known beforehand
|
|
2123
|
+
* @returns AIRichResponseReelMetadata
|
|
2124
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
2125
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
2126
|
+
*/
|
|
2127
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): waproto.AIRichResponseMessage.AIRichResponseReelsMetadata.AIRichResponseReelMetadata;
|
|
2128
|
+
|
|
2129
|
+
/**
|
|
2130
|
+
* Decodes a AIRichResponseReelMetadata message from the specified reader or buffer, length delimited.
|
|
2131
|
+
* @param reader Reader or buffer to decode from
|
|
2132
|
+
* @returns AIRichResponseReelMetadata
|
|
2133
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
2134
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
2135
|
+
*/
|
|
2136
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): waproto.AIRichResponseMessage.AIRichResponseReelsMetadata.AIRichResponseReelMetadata;
|
|
2137
|
+
|
|
2138
|
+
/**
|
|
2139
|
+
* Verifies a AIRichResponseReelMetadata message.
|
|
2140
|
+
* @param message Plain object to verify
|
|
2141
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
2142
|
+
*/
|
|
2143
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
2144
|
+
|
|
2145
|
+
/**
|
|
2146
|
+
* Creates a AIRichResponseReelMetadata message from a plain object. Also converts values to their respective internal types.
|
|
2147
|
+
* @param object Plain object
|
|
2148
|
+
* @returns AIRichResponseReelMetadata
|
|
2149
|
+
*/
|
|
2150
|
+
public static fromObject(object: { [k: string]: any }): waproto.AIRichResponseMessage.AIRichResponseReelsMetadata.AIRichResponseReelMetadata;
|
|
2151
|
+
|
|
2152
|
+
/**
|
|
2153
|
+
* Creates a plain object from a AIRichResponseReelMetadata message. Also converts values to other types if specified.
|
|
2154
|
+
* @param message AIRichResponseReelMetadata
|
|
2155
|
+
* @param [options] Conversion options
|
|
2156
|
+
* @returns Plain object
|
|
2157
|
+
*/
|
|
2158
|
+
public static toObject(message: waproto.AIRichResponseMessage.AIRichResponseReelsMetadata.AIRichResponseReelMetadata, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
2159
|
+
|
|
2160
|
+
/**
|
|
2161
|
+
* Converts this AIRichResponseReelMetadata to JSON.
|
|
2162
|
+
* @returns JSON object
|
|
2163
|
+
*/
|
|
2164
|
+
public toJSON(): { [k: string]: any };
|
|
2165
|
+
|
|
2166
|
+
/**
|
|
2167
|
+
* Gets the default type url for AIRichResponseReelMetadata
|
|
2168
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
2169
|
+
* @returns The default type url
|
|
2170
|
+
*/
|
|
2171
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
2172
|
+
}
|
|
1378
2173
|
}
|
|
1379
2174
|
|
|
1380
2175
|
/** Properties of a AIRichResponseSubMessage. */
|
|
@@ -1400,6 +2195,15 @@ export namespace waproto {
|
|
|
1400
2195
|
|
|
1401
2196
|
/** AIRichResponseSubMessage dynamicMetadata */
|
|
1402
2197
|
dynamicMetadata?: (waproto.AIRichResponseMessage.IAIRichResponseDynamicMetadata|null);
|
|
2198
|
+
|
|
2199
|
+
/** AIRichResponseSubMessage latexMetadata */
|
|
2200
|
+
latexMetadata?: (waproto.AIRichResponseMessage.IAIRichResponseLatexMetadata|null);
|
|
2201
|
+
|
|
2202
|
+
/** AIRichResponseSubMessage mapMetadata */
|
|
2203
|
+
mapMetadata?: (waproto.AIRichResponseMessage.IAIRichResponseMapMetadata|null);
|
|
2204
|
+
|
|
2205
|
+
/** AIRichResponseSubMessage reelsMetadata */
|
|
2206
|
+
reelsMetadata?: (waproto.AIRichResponseMessage.IAIRichResponseReelsMetadata|null);
|
|
1403
2207
|
}
|
|
1404
2208
|
|
|
1405
2209
|
/** Represents a AIRichResponseSubMessage. */
|
|
@@ -1432,6 +2236,15 @@ export namespace waproto {
|
|
|
1432
2236
|
/** AIRichResponseSubMessage dynamicMetadata. */
|
|
1433
2237
|
public dynamicMetadata?: (waproto.AIRichResponseMessage.IAIRichResponseDynamicMetadata|null);
|
|
1434
2238
|
|
|
2239
|
+
/** AIRichResponseSubMessage latexMetadata. */
|
|
2240
|
+
public latexMetadata?: (waproto.AIRichResponseMessage.IAIRichResponseLatexMetadata|null);
|
|
2241
|
+
|
|
2242
|
+
/** AIRichResponseSubMessage mapMetadata. */
|
|
2243
|
+
public mapMetadata?: (waproto.AIRichResponseMessage.IAIRichResponseMapMetadata|null);
|
|
2244
|
+
|
|
2245
|
+
/** AIRichResponseSubMessage reelsMetadata. */
|
|
2246
|
+
public reelsMetadata?: (waproto.AIRichResponseMessage.IAIRichResponseReelsMetadata|null);
|
|
2247
|
+
|
|
1435
2248
|
/**
|
|
1436
2249
|
* Creates a new AIRichResponseSubMessage instance using the specified properties.
|
|
1437
2250
|
* @param [properties] Properties to set
|
|
@@ -1518,7 +2331,10 @@ export namespace waproto {
|
|
|
1518
2331
|
AI_RICH_RESPONSE_INLINE_IMAGE = 3,
|
|
1519
2332
|
AI_RICH_RESPONSE_TABLE = 4,
|
|
1520
2333
|
AI_RICH_RESPONSE_CODE = 5,
|
|
1521
|
-
AI_RICH_RESPONSE_DYNAMIC = 6
|
|
2334
|
+
AI_RICH_RESPONSE_DYNAMIC = 6,
|
|
2335
|
+
AI_RICH_RESPONSE_MAP = 7,
|
|
2336
|
+
AI_RICH_RESPONSE_LATEX = 8,
|
|
2337
|
+
AI_RICH_RESPONSE_INLINE_REELS = 9
|
|
1522
2338
|
}
|
|
1523
2339
|
|
|
1524
2340
|
/** Properties of a AIRichResponseTableMetadata. */
|
|
@@ -2688,7 +3504,11 @@ export namespace waproto {
|
|
|
2688
3504
|
WA_IG_1P_PLUGIN_RANKING_UPDATE_9 = 19,
|
|
2689
3505
|
WA_IG_1P_PLUGIN_RANKING_UPDATE_10 = 20,
|
|
2690
3506
|
RICH_RESPONSE_SUB_HEADING = 21,
|
|
2691
|
-
RICH_RESPONSE_GRID_IMAGE = 22
|
|
3507
|
+
RICH_RESPONSE_GRID_IMAGE = 22,
|
|
3508
|
+
AI_STUDIO_UGC_MEMORY = 23,
|
|
3509
|
+
RICH_RESPONSE_LATEX = 24,
|
|
3510
|
+
RICH_RESPONSE_MAPS = 25,
|
|
3511
|
+
RICH_RESPONSE_INLINE_REELS = 26
|
|
2692
3512
|
}
|
|
2693
3513
|
}
|
|
2694
3514
|
|
|
@@ -2801,6 +3621,214 @@ export namespace waproto {
|
|
|
2801
3621
|
}
|
|
2802
3622
|
}
|
|
2803
3623
|
|
|
3624
|
+
/** Properties of a BotLinkedAccount. */
|
|
3625
|
+
interface IBotLinkedAccount {
|
|
3626
|
+
|
|
3627
|
+
/** BotLinkedAccount type */
|
|
3628
|
+
type?: (waproto.BotLinkedAccount.BotLinkedAccountType|null);
|
|
3629
|
+
}
|
|
3630
|
+
|
|
3631
|
+
/** Represents a BotLinkedAccount. */
|
|
3632
|
+
class BotLinkedAccount implements IBotLinkedAccount {
|
|
3633
|
+
|
|
3634
|
+
/**
|
|
3635
|
+
* Constructs a new BotLinkedAccount.
|
|
3636
|
+
* @param [properties] Properties to set
|
|
3637
|
+
*/
|
|
3638
|
+
constructor(properties?: waproto.IBotLinkedAccount);
|
|
3639
|
+
|
|
3640
|
+
/** BotLinkedAccount type. */
|
|
3641
|
+
public type?: (waproto.BotLinkedAccount.BotLinkedAccountType|null);
|
|
3642
|
+
|
|
3643
|
+
/**
|
|
3644
|
+
* Creates a new BotLinkedAccount instance using the specified properties.
|
|
3645
|
+
* @param [properties] Properties to set
|
|
3646
|
+
* @returns BotLinkedAccount instance
|
|
3647
|
+
*/
|
|
3648
|
+
public static create(properties?: waproto.IBotLinkedAccount): waproto.BotLinkedAccount;
|
|
3649
|
+
|
|
3650
|
+
/**
|
|
3651
|
+
* Encodes the specified BotLinkedAccount message. Does not implicitly {@link waproto.BotLinkedAccount.verify|verify} messages.
|
|
3652
|
+
* @param message BotLinkedAccount message or plain object to encode
|
|
3653
|
+
* @param [writer] Writer to encode to
|
|
3654
|
+
* @returns Writer
|
|
3655
|
+
*/
|
|
3656
|
+
public static encode(message: waproto.IBotLinkedAccount, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
3657
|
+
|
|
3658
|
+
/**
|
|
3659
|
+
* Encodes the specified BotLinkedAccount message, length delimited. Does not implicitly {@link waproto.BotLinkedAccount.verify|verify} messages.
|
|
3660
|
+
* @param message BotLinkedAccount message or plain object to encode
|
|
3661
|
+
* @param [writer] Writer to encode to
|
|
3662
|
+
* @returns Writer
|
|
3663
|
+
*/
|
|
3664
|
+
public static encodeDelimited(message: waproto.IBotLinkedAccount, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
3665
|
+
|
|
3666
|
+
/**
|
|
3667
|
+
* Decodes a BotLinkedAccount message from the specified reader or buffer.
|
|
3668
|
+
* @param reader Reader or buffer to decode from
|
|
3669
|
+
* @param [length] Message length if known beforehand
|
|
3670
|
+
* @returns BotLinkedAccount
|
|
3671
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
3672
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
3673
|
+
*/
|
|
3674
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): waproto.BotLinkedAccount;
|
|
3675
|
+
|
|
3676
|
+
/**
|
|
3677
|
+
* Decodes a BotLinkedAccount message from the specified reader or buffer, length delimited.
|
|
3678
|
+
* @param reader Reader or buffer to decode from
|
|
3679
|
+
* @returns BotLinkedAccount
|
|
3680
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
3681
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
3682
|
+
*/
|
|
3683
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): waproto.BotLinkedAccount;
|
|
3684
|
+
|
|
3685
|
+
/**
|
|
3686
|
+
* Verifies a BotLinkedAccount message.
|
|
3687
|
+
* @param message Plain object to verify
|
|
3688
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
3689
|
+
*/
|
|
3690
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
3691
|
+
|
|
3692
|
+
/**
|
|
3693
|
+
* Creates a BotLinkedAccount message from a plain object. Also converts values to their respective internal types.
|
|
3694
|
+
* @param object Plain object
|
|
3695
|
+
* @returns BotLinkedAccount
|
|
3696
|
+
*/
|
|
3697
|
+
public static fromObject(object: { [k: string]: any }): waproto.BotLinkedAccount;
|
|
3698
|
+
|
|
3699
|
+
/**
|
|
3700
|
+
* Creates a plain object from a BotLinkedAccount message. Also converts values to other types if specified.
|
|
3701
|
+
* @param message BotLinkedAccount
|
|
3702
|
+
* @param [options] Conversion options
|
|
3703
|
+
* @returns Plain object
|
|
3704
|
+
*/
|
|
3705
|
+
public static toObject(message: waproto.BotLinkedAccount, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
3706
|
+
|
|
3707
|
+
/**
|
|
3708
|
+
* Converts this BotLinkedAccount to JSON.
|
|
3709
|
+
* @returns JSON object
|
|
3710
|
+
*/
|
|
3711
|
+
public toJSON(): { [k: string]: any };
|
|
3712
|
+
|
|
3713
|
+
/**
|
|
3714
|
+
* Gets the default type url for BotLinkedAccount
|
|
3715
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
3716
|
+
* @returns The default type url
|
|
3717
|
+
*/
|
|
3718
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
3719
|
+
}
|
|
3720
|
+
|
|
3721
|
+
namespace BotLinkedAccount {
|
|
3722
|
+
|
|
3723
|
+
/** BotLinkedAccountType enum. */
|
|
3724
|
+
enum BotLinkedAccountType {
|
|
3725
|
+
BOT_LINKED_ACCOUNT_TYPE_1P = 0
|
|
3726
|
+
}
|
|
3727
|
+
}
|
|
3728
|
+
|
|
3729
|
+
/** Properties of a BotLinkedAccountsMetadata. */
|
|
3730
|
+
interface IBotLinkedAccountsMetadata {
|
|
3731
|
+
|
|
3732
|
+
/** BotLinkedAccountsMetadata accounts */
|
|
3733
|
+
accounts?: (waproto.IBotLinkedAccount[]|null);
|
|
3734
|
+
|
|
3735
|
+
/** BotLinkedAccountsMetadata acAuthTokens */
|
|
3736
|
+
acAuthTokens?: (Uint8Array|null);
|
|
3737
|
+
}
|
|
3738
|
+
|
|
3739
|
+
/** Represents a BotLinkedAccountsMetadata. */
|
|
3740
|
+
class BotLinkedAccountsMetadata implements IBotLinkedAccountsMetadata {
|
|
3741
|
+
|
|
3742
|
+
/**
|
|
3743
|
+
* Constructs a new BotLinkedAccountsMetadata.
|
|
3744
|
+
* @param [properties] Properties to set
|
|
3745
|
+
*/
|
|
3746
|
+
constructor(properties?: waproto.IBotLinkedAccountsMetadata);
|
|
3747
|
+
|
|
3748
|
+
/** BotLinkedAccountsMetadata accounts. */
|
|
3749
|
+
public accounts: waproto.IBotLinkedAccount[];
|
|
3750
|
+
|
|
3751
|
+
/** BotLinkedAccountsMetadata acAuthTokens. */
|
|
3752
|
+
public acAuthTokens?: (Uint8Array|null);
|
|
3753
|
+
|
|
3754
|
+
/**
|
|
3755
|
+
* Creates a new BotLinkedAccountsMetadata instance using the specified properties.
|
|
3756
|
+
* @param [properties] Properties to set
|
|
3757
|
+
* @returns BotLinkedAccountsMetadata instance
|
|
3758
|
+
*/
|
|
3759
|
+
public static create(properties?: waproto.IBotLinkedAccountsMetadata): waproto.BotLinkedAccountsMetadata;
|
|
3760
|
+
|
|
3761
|
+
/**
|
|
3762
|
+
* Encodes the specified BotLinkedAccountsMetadata message. Does not implicitly {@link waproto.BotLinkedAccountsMetadata.verify|verify} messages.
|
|
3763
|
+
* @param message BotLinkedAccountsMetadata message or plain object to encode
|
|
3764
|
+
* @param [writer] Writer to encode to
|
|
3765
|
+
* @returns Writer
|
|
3766
|
+
*/
|
|
3767
|
+
public static encode(message: waproto.IBotLinkedAccountsMetadata, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
3768
|
+
|
|
3769
|
+
/**
|
|
3770
|
+
* Encodes the specified BotLinkedAccountsMetadata message, length delimited. Does not implicitly {@link waproto.BotLinkedAccountsMetadata.verify|verify} messages.
|
|
3771
|
+
* @param message BotLinkedAccountsMetadata message or plain object to encode
|
|
3772
|
+
* @param [writer] Writer to encode to
|
|
3773
|
+
* @returns Writer
|
|
3774
|
+
*/
|
|
3775
|
+
public static encodeDelimited(message: waproto.IBotLinkedAccountsMetadata, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
3776
|
+
|
|
3777
|
+
/**
|
|
3778
|
+
* Decodes a BotLinkedAccountsMetadata message from the specified reader or buffer.
|
|
3779
|
+
* @param reader Reader or buffer to decode from
|
|
3780
|
+
* @param [length] Message length if known beforehand
|
|
3781
|
+
* @returns BotLinkedAccountsMetadata
|
|
3782
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
3783
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
3784
|
+
*/
|
|
3785
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): waproto.BotLinkedAccountsMetadata;
|
|
3786
|
+
|
|
3787
|
+
/**
|
|
3788
|
+
* Decodes a BotLinkedAccountsMetadata message from the specified reader or buffer, length delimited.
|
|
3789
|
+
* @param reader Reader or buffer to decode from
|
|
3790
|
+
* @returns BotLinkedAccountsMetadata
|
|
3791
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
3792
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
3793
|
+
*/
|
|
3794
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): waproto.BotLinkedAccountsMetadata;
|
|
3795
|
+
|
|
3796
|
+
/**
|
|
3797
|
+
* Verifies a BotLinkedAccountsMetadata message.
|
|
3798
|
+
* @param message Plain object to verify
|
|
3799
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
3800
|
+
*/
|
|
3801
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
3802
|
+
|
|
3803
|
+
/**
|
|
3804
|
+
* Creates a BotLinkedAccountsMetadata message from a plain object. Also converts values to their respective internal types.
|
|
3805
|
+
* @param object Plain object
|
|
3806
|
+
* @returns BotLinkedAccountsMetadata
|
|
3807
|
+
*/
|
|
3808
|
+
public static fromObject(object: { [k: string]: any }): waproto.BotLinkedAccountsMetadata;
|
|
3809
|
+
|
|
3810
|
+
/**
|
|
3811
|
+
* Creates a plain object from a BotLinkedAccountsMetadata message. Also converts values to other types if specified.
|
|
3812
|
+
* @param message BotLinkedAccountsMetadata
|
|
3813
|
+
* @param [options] Conversion options
|
|
3814
|
+
* @returns Plain object
|
|
3815
|
+
*/
|
|
3816
|
+
public static toObject(message: waproto.BotLinkedAccountsMetadata, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
3817
|
+
|
|
3818
|
+
/**
|
|
3819
|
+
* Converts this BotLinkedAccountsMetadata to JSON.
|
|
3820
|
+
* @returns JSON object
|
|
3821
|
+
*/
|
|
3822
|
+
public toJSON(): { [k: string]: any };
|
|
3823
|
+
|
|
3824
|
+
/**
|
|
3825
|
+
* Gets the default type url for BotLinkedAccountsMetadata
|
|
3826
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
3827
|
+
* @returns The default type url
|
|
3828
|
+
*/
|
|
3829
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
3830
|
+
}
|
|
3831
|
+
|
|
2804
3832
|
/** Properties of a BotMediaMetadata. */
|
|
2805
3833
|
interface IBotMediaMetadata {
|
|
2806
3834
|
|
|
@@ -3306,6 +4334,9 @@ export namespace waproto {
|
|
|
3306
4334
|
|
|
3307
4335
|
/** BotMetadata botMetricsMetadata */
|
|
3308
4336
|
botMetricsMetadata?: (waproto.IBotMetricsMetadata|null);
|
|
4337
|
+
|
|
4338
|
+
/** BotMetadata botLinkedAccountsMetadata */
|
|
4339
|
+
botLinkedAccountsMetadata?: (waproto.IBotLinkedAccountsMetadata|null);
|
|
3309
4340
|
}
|
|
3310
4341
|
|
|
3311
4342
|
/** Represents a BotMetadata. */
|
|
@@ -3368,6 +4399,9 @@ export namespace waproto {
|
|
|
3368
4399
|
/** BotMetadata botMetricsMetadata. */
|
|
3369
4400
|
public botMetricsMetadata?: (waproto.IBotMetricsMetadata|null);
|
|
3370
4401
|
|
|
4402
|
+
/** BotMetadata botLinkedAccountsMetadata. */
|
|
4403
|
+
public botLinkedAccountsMetadata?: (waproto.IBotLinkedAccountsMetadata|null);
|
|
4404
|
+
|
|
3371
4405
|
/**
|
|
3372
4406
|
* Creates a new BotMetadata instance using the specified properties.
|
|
3373
4407
|
* @param [properties] Properties to set
|
|
@@ -3463,7 +4497,8 @@ export namespace waproto {
|
|
|
3463
4497
|
NOTIFICATION = 13,
|
|
3464
4498
|
PROFILE_MESSAGE_BUTTON = 14,
|
|
3465
4499
|
FORWARD = 15,
|
|
3466
|
-
APP_SHORTCUT = 16
|
|
4500
|
+
APP_SHORTCUT = 16,
|
|
4501
|
+
FF_FAMILY = 17
|
|
3467
4502
|
}
|
|
3468
4503
|
|
|
3469
4504
|
/** Properties of a BotMetricsMetadata. */
|
|
@@ -3875,6 +4910,9 @@ export namespace waproto {
|
|
|
3875
4910
|
|
|
3876
4911
|
/** BotProgressIndicatorMetadata progressDescription */
|
|
3877
4912
|
progressDescription?: (string|null);
|
|
4913
|
+
|
|
4914
|
+
/** BotProgressIndicatorMetadata stepsMetadata */
|
|
4915
|
+
stepsMetadata?: (waproto.BotProgressIndicatorMetadata.IBotPlanningStepMetadata[]|null);
|
|
3878
4916
|
}
|
|
3879
4917
|
|
|
3880
4918
|
/** Represents a BotProgressIndicatorMetadata. */
|
|
@@ -3889,6 +4927,9 @@ export namespace waproto {
|
|
|
3889
4927
|
/** BotProgressIndicatorMetadata progressDescription. */
|
|
3890
4928
|
public progressDescription?: (string|null);
|
|
3891
4929
|
|
|
4930
|
+
/** BotProgressIndicatorMetadata stepsMetadata. */
|
|
4931
|
+
public stepsMetadata: waproto.BotProgressIndicatorMetadata.IBotPlanningStepMetadata[];
|
|
4932
|
+
|
|
3892
4933
|
/**
|
|
3893
4934
|
* Creates a new BotProgressIndicatorMetadata instance using the specified properties.
|
|
3894
4935
|
* @param [properties] Properties to set
|
|
@@ -3967,6 +5008,265 @@ export namespace waproto {
|
|
|
3967
5008
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
3968
5009
|
}
|
|
3969
5010
|
|
|
5011
|
+
namespace BotProgressIndicatorMetadata {
|
|
5012
|
+
|
|
5013
|
+
/** Properties of a BotPlanningStepMetadata. */
|
|
5014
|
+
interface IBotPlanningStepMetadata {
|
|
5015
|
+
|
|
5016
|
+
/** BotPlanningStepMetadata statusTitle */
|
|
5017
|
+
statusTitle?: (string|null);
|
|
5018
|
+
|
|
5019
|
+
/** BotPlanningStepMetadata statusBody */
|
|
5020
|
+
statusBody?: (string|null);
|
|
5021
|
+
|
|
5022
|
+
/** BotPlanningStepMetadata sourcesMetadata */
|
|
5023
|
+
sourcesMetadata?: (waproto.BotProgressIndicatorMetadata.BotPlanningStepMetadata.IBotPlanningSearchSourcesMetadata[]|null);
|
|
5024
|
+
|
|
5025
|
+
/** BotPlanningStepMetadata status */
|
|
5026
|
+
status?: (waproto.BotProgressIndicatorMetadata.BotPlanningStepMetadata.PlanningStepStatus|null);
|
|
5027
|
+
|
|
5028
|
+
/** BotPlanningStepMetadata isReasoning */
|
|
5029
|
+
isReasoning?: (boolean|null);
|
|
5030
|
+
|
|
5031
|
+
/** BotPlanningStepMetadata isEnhancedSearch */
|
|
5032
|
+
isEnhancedSearch?: (boolean|null);
|
|
5033
|
+
}
|
|
5034
|
+
|
|
5035
|
+
/** Represents a BotPlanningStepMetadata. */
|
|
5036
|
+
class BotPlanningStepMetadata implements IBotPlanningStepMetadata {
|
|
5037
|
+
|
|
5038
|
+
/**
|
|
5039
|
+
* Constructs a new BotPlanningStepMetadata.
|
|
5040
|
+
* @param [properties] Properties to set
|
|
5041
|
+
*/
|
|
5042
|
+
constructor(properties?: waproto.BotProgressIndicatorMetadata.IBotPlanningStepMetadata);
|
|
5043
|
+
|
|
5044
|
+
/** BotPlanningStepMetadata statusTitle. */
|
|
5045
|
+
public statusTitle?: (string|null);
|
|
5046
|
+
|
|
5047
|
+
/** BotPlanningStepMetadata statusBody. */
|
|
5048
|
+
public statusBody?: (string|null);
|
|
5049
|
+
|
|
5050
|
+
/** BotPlanningStepMetadata sourcesMetadata. */
|
|
5051
|
+
public sourcesMetadata: waproto.BotProgressIndicatorMetadata.BotPlanningStepMetadata.IBotPlanningSearchSourcesMetadata[];
|
|
5052
|
+
|
|
5053
|
+
/** BotPlanningStepMetadata status. */
|
|
5054
|
+
public status?: (waproto.BotProgressIndicatorMetadata.BotPlanningStepMetadata.PlanningStepStatus|null);
|
|
5055
|
+
|
|
5056
|
+
/** BotPlanningStepMetadata isReasoning. */
|
|
5057
|
+
public isReasoning?: (boolean|null);
|
|
5058
|
+
|
|
5059
|
+
/** BotPlanningStepMetadata isEnhancedSearch. */
|
|
5060
|
+
public isEnhancedSearch?: (boolean|null);
|
|
5061
|
+
|
|
5062
|
+
/**
|
|
5063
|
+
* Creates a new BotPlanningStepMetadata instance using the specified properties.
|
|
5064
|
+
* @param [properties] Properties to set
|
|
5065
|
+
* @returns BotPlanningStepMetadata instance
|
|
5066
|
+
*/
|
|
5067
|
+
public static create(properties?: waproto.BotProgressIndicatorMetadata.IBotPlanningStepMetadata): waproto.BotProgressIndicatorMetadata.BotPlanningStepMetadata;
|
|
5068
|
+
|
|
5069
|
+
/**
|
|
5070
|
+
* Encodes the specified BotPlanningStepMetadata message. Does not implicitly {@link waproto.BotProgressIndicatorMetadata.BotPlanningStepMetadata.verify|verify} messages.
|
|
5071
|
+
* @param message BotPlanningStepMetadata message or plain object to encode
|
|
5072
|
+
* @param [writer] Writer to encode to
|
|
5073
|
+
* @returns Writer
|
|
5074
|
+
*/
|
|
5075
|
+
public static encode(message: waproto.BotProgressIndicatorMetadata.IBotPlanningStepMetadata, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
5076
|
+
|
|
5077
|
+
/**
|
|
5078
|
+
* Encodes the specified BotPlanningStepMetadata message, length delimited. Does not implicitly {@link waproto.BotProgressIndicatorMetadata.BotPlanningStepMetadata.verify|verify} messages.
|
|
5079
|
+
* @param message BotPlanningStepMetadata message or plain object to encode
|
|
5080
|
+
* @param [writer] Writer to encode to
|
|
5081
|
+
* @returns Writer
|
|
5082
|
+
*/
|
|
5083
|
+
public static encodeDelimited(message: waproto.BotProgressIndicatorMetadata.IBotPlanningStepMetadata, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
5084
|
+
|
|
5085
|
+
/**
|
|
5086
|
+
* Decodes a BotPlanningStepMetadata message from the specified reader or buffer.
|
|
5087
|
+
* @param reader Reader or buffer to decode from
|
|
5088
|
+
* @param [length] Message length if known beforehand
|
|
5089
|
+
* @returns BotPlanningStepMetadata
|
|
5090
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
5091
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
5092
|
+
*/
|
|
5093
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): waproto.BotProgressIndicatorMetadata.BotPlanningStepMetadata;
|
|
5094
|
+
|
|
5095
|
+
/**
|
|
5096
|
+
* Decodes a BotPlanningStepMetadata message from the specified reader or buffer, length delimited.
|
|
5097
|
+
* @param reader Reader or buffer to decode from
|
|
5098
|
+
* @returns BotPlanningStepMetadata
|
|
5099
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
5100
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
5101
|
+
*/
|
|
5102
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): waproto.BotProgressIndicatorMetadata.BotPlanningStepMetadata;
|
|
5103
|
+
|
|
5104
|
+
/**
|
|
5105
|
+
* Verifies a BotPlanningStepMetadata message.
|
|
5106
|
+
* @param message Plain object to verify
|
|
5107
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
5108
|
+
*/
|
|
5109
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
5110
|
+
|
|
5111
|
+
/**
|
|
5112
|
+
* Creates a BotPlanningStepMetadata message from a plain object. Also converts values to their respective internal types.
|
|
5113
|
+
* @param object Plain object
|
|
5114
|
+
* @returns BotPlanningStepMetadata
|
|
5115
|
+
*/
|
|
5116
|
+
public static fromObject(object: { [k: string]: any }): waproto.BotProgressIndicatorMetadata.BotPlanningStepMetadata;
|
|
5117
|
+
|
|
5118
|
+
/**
|
|
5119
|
+
* Creates a plain object from a BotPlanningStepMetadata message. Also converts values to other types if specified.
|
|
5120
|
+
* @param message BotPlanningStepMetadata
|
|
5121
|
+
* @param [options] Conversion options
|
|
5122
|
+
* @returns Plain object
|
|
5123
|
+
*/
|
|
5124
|
+
public static toObject(message: waproto.BotProgressIndicatorMetadata.BotPlanningStepMetadata, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
5125
|
+
|
|
5126
|
+
/**
|
|
5127
|
+
* Converts this BotPlanningStepMetadata to JSON.
|
|
5128
|
+
* @returns JSON object
|
|
5129
|
+
*/
|
|
5130
|
+
public toJSON(): { [k: string]: any };
|
|
5131
|
+
|
|
5132
|
+
/**
|
|
5133
|
+
* Gets the default type url for BotPlanningStepMetadata
|
|
5134
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
5135
|
+
* @returns The default type url
|
|
5136
|
+
*/
|
|
5137
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
5138
|
+
}
|
|
5139
|
+
|
|
5140
|
+
namespace BotPlanningStepMetadata {
|
|
5141
|
+
|
|
5142
|
+
/** Properties of a BotPlanningSearchSourcesMetadata. */
|
|
5143
|
+
interface IBotPlanningSearchSourcesMetadata {
|
|
5144
|
+
|
|
5145
|
+
/** BotPlanningSearchSourcesMetadata sourceTitle */
|
|
5146
|
+
sourceTitle?: (string|null);
|
|
5147
|
+
|
|
5148
|
+
/** BotPlanningSearchSourcesMetadata provider */
|
|
5149
|
+
provider?: (waproto.BotProgressIndicatorMetadata.BotPlanningStepMetadata.BotPlanningSearchSourcesMetadata.BotPlanningSearchSourceProvider|null);
|
|
5150
|
+
|
|
5151
|
+
/** BotPlanningSearchSourcesMetadata sourceUrl */
|
|
5152
|
+
sourceUrl?: (string|null);
|
|
5153
|
+
}
|
|
5154
|
+
|
|
5155
|
+
/** Represents a BotPlanningSearchSourcesMetadata. */
|
|
5156
|
+
class BotPlanningSearchSourcesMetadata implements IBotPlanningSearchSourcesMetadata {
|
|
5157
|
+
|
|
5158
|
+
/**
|
|
5159
|
+
* Constructs a new BotPlanningSearchSourcesMetadata.
|
|
5160
|
+
* @param [properties] Properties to set
|
|
5161
|
+
*/
|
|
5162
|
+
constructor(properties?: waproto.BotProgressIndicatorMetadata.BotPlanningStepMetadata.IBotPlanningSearchSourcesMetadata);
|
|
5163
|
+
|
|
5164
|
+
/** BotPlanningSearchSourcesMetadata sourceTitle. */
|
|
5165
|
+
public sourceTitle?: (string|null);
|
|
5166
|
+
|
|
5167
|
+
/** BotPlanningSearchSourcesMetadata provider. */
|
|
5168
|
+
public provider?: (waproto.BotProgressIndicatorMetadata.BotPlanningStepMetadata.BotPlanningSearchSourcesMetadata.BotPlanningSearchSourceProvider|null);
|
|
5169
|
+
|
|
5170
|
+
/** BotPlanningSearchSourcesMetadata sourceUrl. */
|
|
5171
|
+
public sourceUrl?: (string|null);
|
|
5172
|
+
|
|
5173
|
+
/**
|
|
5174
|
+
* Creates a new BotPlanningSearchSourcesMetadata instance using the specified properties.
|
|
5175
|
+
* @param [properties] Properties to set
|
|
5176
|
+
* @returns BotPlanningSearchSourcesMetadata instance
|
|
5177
|
+
*/
|
|
5178
|
+
public static create(properties?: waproto.BotProgressIndicatorMetadata.BotPlanningStepMetadata.IBotPlanningSearchSourcesMetadata): waproto.BotProgressIndicatorMetadata.BotPlanningStepMetadata.BotPlanningSearchSourcesMetadata;
|
|
5179
|
+
|
|
5180
|
+
/**
|
|
5181
|
+
* Encodes the specified BotPlanningSearchSourcesMetadata message. Does not implicitly {@link waproto.BotProgressIndicatorMetadata.BotPlanningStepMetadata.BotPlanningSearchSourcesMetadata.verify|verify} messages.
|
|
5182
|
+
* @param message BotPlanningSearchSourcesMetadata message or plain object to encode
|
|
5183
|
+
* @param [writer] Writer to encode to
|
|
5184
|
+
* @returns Writer
|
|
5185
|
+
*/
|
|
5186
|
+
public static encode(message: waproto.BotProgressIndicatorMetadata.BotPlanningStepMetadata.IBotPlanningSearchSourcesMetadata, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
5187
|
+
|
|
5188
|
+
/**
|
|
5189
|
+
* Encodes the specified BotPlanningSearchSourcesMetadata message, length delimited. Does not implicitly {@link waproto.BotProgressIndicatorMetadata.BotPlanningStepMetadata.BotPlanningSearchSourcesMetadata.verify|verify} messages.
|
|
5190
|
+
* @param message BotPlanningSearchSourcesMetadata message or plain object to encode
|
|
5191
|
+
* @param [writer] Writer to encode to
|
|
5192
|
+
* @returns Writer
|
|
5193
|
+
*/
|
|
5194
|
+
public static encodeDelimited(message: waproto.BotProgressIndicatorMetadata.BotPlanningStepMetadata.IBotPlanningSearchSourcesMetadata, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
5195
|
+
|
|
5196
|
+
/**
|
|
5197
|
+
* Decodes a BotPlanningSearchSourcesMetadata message from the specified reader or buffer.
|
|
5198
|
+
* @param reader Reader or buffer to decode from
|
|
5199
|
+
* @param [length] Message length if known beforehand
|
|
5200
|
+
* @returns BotPlanningSearchSourcesMetadata
|
|
5201
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
5202
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
5203
|
+
*/
|
|
5204
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): waproto.BotProgressIndicatorMetadata.BotPlanningStepMetadata.BotPlanningSearchSourcesMetadata;
|
|
5205
|
+
|
|
5206
|
+
/**
|
|
5207
|
+
* Decodes a BotPlanningSearchSourcesMetadata message from the specified reader or buffer, length delimited.
|
|
5208
|
+
* @param reader Reader or buffer to decode from
|
|
5209
|
+
* @returns BotPlanningSearchSourcesMetadata
|
|
5210
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
5211
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
5212
|
+
*/
|
|
5213
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): waproto.BotProgressIndicatorMetadata.BotPlanningStepMetadata.BotPlanningSearchSourcesMetadata;
|
|
5214
|
+
|
|
5215
|
+
/**
|
|
5216
|
+
* Verifies a BotPlanningSearchSourcesMetadata message.
|
|
5217
|
+
* @param message Plain object to verify
|
|
5218
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
5219
|
+
*/
|
|
5220
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
5221
|
+
|
|
5222
|
+
/**
|
|
5223
|
+
* Creates a BotPlanningSearchSourcesMetadata message from a plain object. Also converts values to their respective internal types.
|
|
5224
|
+
* @param object Plain object
|
|
5225
|
+
* @returns BotPlanningSearchSourcesMetadata
|
|
5226
|
+
*/
|
|
5227
|
+
public static fromObject(object: { [k: string]: any }): waproto.BotProgressIndicatorMetadata.BotPlanningStepMetadata.BotPlanningSearchSourcesMetadata;
|
|
5228
|
+
|
|
5229
|
+
/**
|
|
5230
|
+
* Creates a plain object from a BotPlanningSearchSourcesMetadata message. Also converts values to other types if specified.
|
|
5231
|
+
* @param message BotPlanningSearchSourcesMetadata
|
|
5232
|
+
* @param [options] Conversion options
|
|
5233
|
+
* @returns Plain object
|
|
5234
|
+
*/
|
|
5235
|
+
public static toObject(message: waproto.BotProgressIndicatorMetadata.BotPlanningStepMetadata.BotPlanningSearchSourcesMetadata, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
5236
|
+
|
|
5237
|
+
/**
|
|
5238
|
+
* Converts this BotPlanningSearchSourcesMetadata to JSON.
|
|
5239
|
+
* @returns JSON object
|
|
5240
|
+
*/
|
|
5241
|
+
public toJSON(): { [k: string]: any };
|
|
5242
|
+
|
|
5243
|
+
/**
|
|
5244
|
+
* Gets the default type url for BotPlanningSearchSourcesMetadata
|
|
5245
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
5246
|
+
* @returns The default type url
|
|
5247
|
+
*/
|
|
5248
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
5249
|
+
}
|
|
5250
|
+
|
|
5251
|
+
namespace BotPlanningSearchSourcesMetadata {
|
|
5252
|
+
|
|
5253
|
+
/** BotPlanningSearchSourceProvider enum. */
|
|
5254
|
+
enum BotPlanningSearchSourceProvider {
|
|
5255
|
+
OTHER = 1,
|
|
5256
|
+
GOOGLE = 2,
|
|
5257
|
+
BING = 3
|
|
5258
|
+
}
|
|
5259
|
+
}
|
|
5260
|
+
|
|
5261
|
+
/** PlanningStepStatus enum. */
|
|
5262
|
+
enum PlanningStepStatus {
|
|
5263
|
+
PLANNED = 1,
|
|
5264
|
+
EXECUTING = 2,
|
|
5265
|
+
FINISHED = 3
|
|
5266
|
+
}
|
|
5267
|
+
}
|
|
5268
|
+
}
|
|
5269
|
+
|
|
3970
5270
|
/** Properties of a BotPromptSuggestion. */
|
|
3971
5271
|
interface IBotPromptSuggestion {
|
|
3972
5272
|
|
|
@@ -6005,6 +7305,121 @@ export namespace waproto {
|
|
|
6005
7305
|
}
|
|
6006
7306
|
}
|
|
6007
7307
|
|
|
7308
|
+
/** Properties of a Citation. */
|
|
7309
|
+
interface ICitation {
|
|
7310
|
+
|
|
7311
|
+
/** Citation title */
|
|
7312
|
+
title: string;
|
|
7313
|
+
|
|
7314
|
+
/** Citation subtitle */
|
|
7315
|
+
subtitle: string;
|
|
7316
|
+
|
|
7317
|
+
/** Citation cmsId */
|
|
7318
|
+
cmsId: string;
|
|
7319
|
+
|
|
7320
|
+
/** Citation imageUrl */
|
|
7321
|
+
imageUrl: string;
|
|
7322
|
+
}
|
|
7323
|
+
|
|
7324
|
+
/** Represents a Citation. */
|
|
7325
|
+
class Citation implements ICitation {
|
|
7326
|
+
|
|
7327
|
+
/**
|
|
7328
|
+
* Constructs a new Citation.
|
|
7329
|
+
* @param [properties] Properties to set
|
|
7330
|
+
*/
|
|
7331
|
+
constructor(properties?: waproto.ICitation);
|
|
7332
|
+
|
|
7333
|
+
/** Citation title. */
|
|
7334
|
+
public title: string;
|
|
7335
|
+
|
|
7336
|
+
/** Citation subtitle. */
|
|
7337
|
+
public subtitle: string;
|
|
7338
|
+
|
|
7339
|
+
/** Citation cmsId. */
|
|
7340
|
+
public cmsId: string;
|
|
7341
|
+
|
|
7342
|
+
/** Citation imageUrl. */
|
|
7343
|
+
public imageUrl: string;
|
|
7344
|
+
|
|
7345
|
+
/**
|
|
7346
|
+
* Creates a new Citation instance using the specified properties.
|
|
7347
|
+
* @param [properties] Properties to set
|
|
7348
|
+
* @returns Citation instance
|
|
7349
|
+
*/
|
|
7350
|
+
public static create(properties?: waproto.ICitation): waproto.Citation;
|
|
7351
|
+
|
|
7352
|
+
/**
|
|
7353
|
+
* Encodes the specified Citation message. Does not implicitly {@link waproto.Citation.verify|verify} messages.
|
|
7354
|
+
* @param message Citation message or plain object to encode
|
|
7355
|
+
* @param [writer] Writer to encode to
|
|
7356
|
+
* @returns Writer
|
|
7357
|
+
*/
|
|
7358
|
+
public static encode(message: waproto.ICitation, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
7359
|
+
|
|
7360
|
+
/**
|
|
7361
|
+
* Encodes the specified Citation message, length delimited. Does not implicitly {@link waproto.Citation.verify|verify} messages.
|
|
7362
|
+
* @param message Citation message or plain object to encode
|
|
7363
|
+
* @param [writer] Writer to encode to
|
|
7364
|
+
* @returns Writer
|
|
7365
|
+
*/
|
|
7366
|
+
public static encodeDelimited(message: waproto.ICitation, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
7367
|
+
|
|
7368
|
+
/**
|
|
7369
|
+
* Decodes a Citation message from the specified reader or buffer.
|
|
7370
|
+
* @param reader Reader or buffer to decode from
|
|
7371
|
+
* @param [length] Message length if known beforehand
|
|
7372
|
+
* @returns Citation
|
|
7373
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
7374
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
7375
|
+
*/
|
|
7376
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): waproto.Citation;
|
|
7377
|
+
|
|
7378
|
+
/**
|
|
7379
|
+
* Decodes a Citation message from the specified reader or buffer, length delimited.
|
|
7380
|
+
* @param reader Reader or buffer to decode from
|
|
7381
|
+
* @returns Citation
|
|
7382
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
7383
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
7384
|
+
*/
|
|
7385
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): waproto.Citation;
|
|
7386
|
+
|
|
7387
|
+
/**
|
|
7388
|
+
* Verifies a Citation message.
|
|
7389
|
+
* @param message Plain object to verify
|
|
7390
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
7391
|
+
*/
|
|
7392
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
7393
|
+
|
|
7394
|
+
/**
|
|
7395
|
+
* Creates a Citation message from a plain object. Also converts values to their respective internal types.
|
|
7396
|
+
* @param object Plain object
|
|
7397
|
+
* @returns Citation
|
|
7398
|
+
*/
|
|
7399
|
+
public static fromObject(object: { [k: string]: any }): waproto.Citation;
|
|
7400
|
+
|
|
7401
|
+
/**
|
|
7402
|
+
* Creates a plain object from a Citation message. Also converts values to other types if specified.
|
|
7403
|
+
* @param message Citation
|
|
7404
|
+
* @param [options] Conversion options
|
|
7405
|
+
* @returns Plain object
|
|
7406
|
+
*/
|
|
7407
|
+
public static toObject(message: waproto.Citation, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
7408
|
+
|
|
7409
|
+
/**
|
|
7410
|
+
* Converts this Citation to JSON.
|
|
7411
|
+
* @returns JSON object
|
|
7412
|
+
*/
|
|
7413
|
+
public toJSON(): { [k: string]: any };
|
|
7414
|
+
|
|
7415
|
+
/**
|
|
7416
|
+
* Gets the default type url for Citation
|
|
7417
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
7418
|
+
* @returns The default type url
|
|
7419
|
+
*/
|
|
7420
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
7421
|
+
}
|
|
7422
|
+
|
|
6008
7423
|
/** Properties of a ClientPairingProps. */
|
|
6009
7424
|
interface IClientPairingProps {
|
|
6010
7425
|
|
|
@@ -6510,7 +7925,8 @@ export namespace waproto {
|
|
|
6510
7925
|
GOOGLE = 1,
|
|
6511
7926
|
HARDCODED = 2,
|
|
6512
7927
|
OVERRIDE = 3,
|
|
6513
|
-
FALLBACK = 4
|
|
7928
|
+
FALLBACK = 4,
|
|
7929
|
+
MNS = 5
|
|
6514
7930
|
}
|
|
6515
7931
|
}
|
|
6516
7932
|
|
|
@@ -7977,6 +9393,9 @@ export namespace waproto {
|
|
|
7977
9393
|
|
|
7978
9394
|
/** ContextInfo urlTrackingMap */
|
|
7979
9395
|
urlTrackingMap?: (waproto.IUrlTrackingMap|null);
|
|
9396
|
+
|
|
9397
|
+
/** ContextInfo pairedMediaType */
|
|
9398
|
+
pairedMediaType?: (waproto.ContextInfo.PairedMediaType|null);
|
|
7980
9399
|
}
|
|
7981
9400
|
|
|
7982
9401
|
/** Represents a ContextInfo. */
|
|
@@ -8114,6 +9533,9 @@ export namespace waproto {
|
|
|
8114
9533
|
/** ContextInfo urlTrackingMap. */
|
|
8115
9534
|
public urlTrackingMap?: (waproto.IUrlTrackingMap|null);
|
|
8116
9535
|
|
|
9536
|
+
/** ContextInfo pairedMediaType. */
|
|
9537
|
+
public pairedMediaType?: (waproto.ContextInfo.PairedMediaType|null);
|
|
9538
|
+
|
|
8117
9539
|
/**
|
|
8118
9540
|
* Creates a new ContextInfo instance using the specified properties.
|
|
8119
9541
|
* @param [properties] Properties to set
|
|
@@ -9237,6 +10659,15 @@ export namespace waproto {
|
|
|
9237
10659
|
}
|
|
9238
10660
|
}
|
|
9239
10661
|
|
|
10662
|
+
/** PairedMediaType enum. */
|
|
10663
|
+
enum PairedMediaType {
|
|
10664
|
+
NOT_PAIRED_MEDIA = 0,
|
|
10665
|
+
SD_VIDEO_PARENT = 1,
|
|
10666
|
+
HD_VIDEO_CHILD = 2,
|
|
10667
|
+
SD_IMAGE_PARENT = 3,
|
|
10668
|
+
HD_IMAGE_CHILD = 4
|
|
10669
|
+
}
|
|
10670
|
+
|
|
9240
10671
|
/** StatusAttributionType enum. */
|
|
9241
10672
|
enum StatusAttributionType {
|
|
9242
10673
|
NONE = 0,
|
|
@@ -9748,6 +11179,9 @@ export namespace waproto {
|
|
|
9748
11179
|
|
|
9749
11180
|
/** DeviceCapabilities chatLockSupportLevel */
|
|
9750
11181
|
chatLockSupportLevel?: (waproto.DeviceCapabilities.ChatLockSupportLevel|null);
|
|
11182
|
+
|
|
11183
|
+
/** DeviceCapabilities lidMigration */
|
|
11184
|
+
lidMigration?: (waproto.DeviceCapabilities.ILIDMigration|null);
|
|
9751
11185
|
}
|
|
9752
11186
|
|
|
9753
11187
|
/** Represents a DeviceCapabilities. */
|
|
@@ -9762,6 +11196,9 @@ export namespace waproto {
|
|
|
9762
11196
|
/** DeviceCapabilities chatLockSupportLevel. */
|
|
9763
11197
|
public chatLockSupportLevel?: (waproto.DeviceCapabilities.ChatLockSupportLevel|null);
|
|
9764
11198
|
|
|
11199
|
+
/** DeviceCapabilities lidMigration. */
|
|
11200
|
+
public lidMigration?: (waproto.DeviceCapabilities.ILIDMigration|null);
|
|
11201
|
+
|
|
9765
11202
|
/**
|
|
9766
11203
|
* Creates a new DeviceCapabilities instance using the specified properties.
|
|
9767
11204
|
* @param [properties] Properties to set
|
|
@@ -9848,6 +11285,103 @@ export namespace waproto {
|
|
|
9848
11285
|
MINIMAL = 1,
|
|
9849
11286
|
FULL = 2
|
|
9850
11287
|
}
|
|
11288
|
+
|
|
11289
|
+
/** Properties of a LIDMigration. */
|
|
11290
|
+
interface ILIDMigration {
|
|
11291
|
+
|
|
11292
|
+
/** LIDMigration chatDbMigrationTimestamp */
|
|
11293
|
+
chatDbMigrationTimestamp?: (number|Long|null);
|
|
11294
|
+
}
|
|
11295
|
+
|
|
11296
|
+
/** Represents a LIDMigration. */
|
|
11297
|
+
class LIDMigration implements ILIDMigration {
|
|
11298
|
+
|
|
11299
|
+
/**
|
|
11300
|
+
* Constructs a new LIDMigration.
|
|
11301
|
+
* @param [properties] Properties to set
|
|
11302
|
+
*/
|
|
11303
|
+
constructor(properties?: waproto.DeviceCapabilities.ILIDMigration);
|
|
11304
|
+
|
|
11305
|
+
/** LIDMigration chatDbMigrationTimestamp. */
|
|
11306
|
+
public chatDbMigrationTimestamp?: (number|Long|null);
|
|
11307
|
+
|
|
11308
|
+
/**
|
|
11309
|
+
* Creates a new LIDMigration instance using the specified properties.
|
|
11310
|
+
* @param [properties] Properties to set
|
|
11311
|
+
* @returns LIDMigration instance
|
|
11312
|
+
*/
|
|
11313
|
+
public static create(properties?: waproto.DeviceCapabilities.ILIDMigration): waproto.DeviceCapabilities.LIDMigration;
|
|
11314
|
+
|
|
11315
|
+
/**
|
|
11316
|
+
* Encodes the specified LIDMigration message. Does not implicitly {@link waproto.DeviceCapabilities.LIDMigration.verify|verify} messages.
|
|
11317
|
+
* @param message LIDMigration message or plain object to encode
|
|
11318
|
+
* @param [writer] Writer to encode to
|
|
11319
|
+
* @returns Writer
|
|
11320
|
+
*/
|
|
11321
|
+
public static encode(message: waproto.DeviceCapabilities.ILIDMigration, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
11322
|
+
|
|
11323
|
+
/**
|
|
11324
|
+
* Encodes the specified LIDMigration message, length delimited. Does not implicitly {@link waproto.DeviceCapabilities.LIDMigration.verify|verify} messages.
|
|
11325
|
+
* @param message LIDMigration message or plain object to encode
|
|
11326
|
+
* @param [writer] Writer to encode to
|
|
11327
|
+
* @returns Writer
|
|
11328
|
+
*/
|
|
11329
|
+
public static encodeDelimited(message: waproto.DeviceCapabilities.ILIDMigration, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
11330
|
+
|
|
11331
|
+
/**
|
|
11332
|
+
* Decodes a LIDMigration message from the specified reader or buffer.
|
|
11333
|
+
* @param reader Reader or buffer to decode from
|
|
11334
|
+
* @param [length] Message length if known beforehand
|
|
11335
|
+
* @returns LIDMigration
|
|
11336
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
11337
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
11338
|
+
*/
|
|
11339
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): waproto.DeviceCapabilities.LIDMigration;
|
|
11340
|
+
|
|
11341
|
+
/**
|
|
11342
|
+
* Decodes a LIDMigration message from the specified reader or buffer, length delimited.
|
|
11343
|
+
* @param reader Reader or buffer to decode from
|
|
11344
|
+
* @returns LIDMigration
|
|
11345
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
11346
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
11347
|
+
*/
|
|
11348
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): waproto.DeviceCapabilities.LIDMigration;
|
|
11349
|
+
|
|
11350
|
+
/**
|
|
11351
|
+
* Verifies a LIDMigration message.
|
|
11352
|
+
* @param message Plain object to verify
|
|
11353
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
11354
|
+
*/
|
|
11355
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
11356
|
+
|
|
11357
|
+
/**
|
|
11358
|
+
* Creates a LIDMigration message from a plain object. Also converts values to their respective internal types.
|
|
11359
|
+
* @param object Plain object
|
|
11360
|
+
* @returns LIDMigration
|
|
11361
|
+
*/
|
|
11362
|
+
public static fromObject(object: { [k: string]: any }): waproto.DeviceCapabilities.LIDMigration;
|
|
11363
|
+
|
|
11364
|
+
/**
|
|
11365
|
+
* Creates a plain object from a LIDMigration message. Also converts values to other types if specified.
|
|
11366
|
+
* @param message LIDMigration
|
|
11367
|
+
* @param [options] Conversion options
|
|
11368
|
+
* @returns Plain object
|
|
11369
|
+
*/
|
|
11370
|
+
public static toObject(message: waproto.DeviceCapabilities.LIDMigration, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
11371
|
+
|
|
11372
|
+
/**
|
|
11373
|
+
* Converts this LIDMigration to JSON.
|
|
11374
|
+
* @returns JSON object
|
|
11375
|
+
*/
|
|
11376
|
+
public toJSON(): { [k: string]: any };
|
|
11377
|
+
|
|
11378
|
+
/**
|
|
11379
|
+
* Gets the default type url for LIDMigration
|
|
11380
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
11381
|
+
* @returns The default type url
|
|
11382
|
+
*/
|
|
11383
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
11384
|
+
}
|
|
9851
11385
|
}
|
|
9852
11386
|
|
|
9853
11387
|
/** Properties of a DeviceConsistencyCodeMessage. */
|
|
@@ -15227,6 +16761,9 @@ export namespace waproto {
|
|
|
15227
16761
|
|
|
15228
16762
|
/** Message richResponseMessage */
|
|
15229
16763
|
richResponseMessage?: (waproto.IAIRichResponseMessage|null);
|
|
16764
|
+
|
|
16765
|
+
/** Message statusNotificationMessage */
|
|
16766
|
+
statusNotificationMessage?: (waproto.Message.IStatusNotificationMessage|null);
|
|
15230
16767
|
}
|
|
15231
16768
|
|
|
15232
16769
|
/** Represents a Message. */
|
|
@@ -15481,6 +17018,9 @@ export namespace waproto {
|
|
|
15481
17018
|
/** Message richResponseMessage. */
|
|
15482
17019
|
public richResponseMessage?: (waproto.IAIRichResponseMessage|null);
|
|
15483
17020
|
|
|
17021
|
+
/** Message statusNotificationMessage. */
|
|
17022
|
+
public statusNotificationMessage?: (waproto.Message.IStatusNotificationMessage|null);
|
|
17023
|
+
|
|
15484
17024
|
/**
|
|
15485
17025
|
* Creates a new Message instance using the specified properties.
|
|
15486
17026
|
* @param [properties] Properties to set
|
|
@@ -21329,7 +22869,8 @@ export namespace waproto {
|
|
|
21329
22869
|
enum ImageSourceType {
|
|
21330
22870
|
USER_IMAGE = 0,
|
|
21331
22871
|
AI_GENERATED = 1,
|
|
21332
|
-
AI_MODIFIED = 2
|
|
22872
|
+
AI_MODIFIED = 2,
|
|
22873
|
+
RASTERIZED_TEXT_STATUS = 3
|
|
21333
22874
|
}
|
|
21334
22875
|
}
|
|
21335
22876
|
|
|
@@ -28429,7 +29970,8 @@ export namespace waproto {
|
|
|
28429
29970
|
LID_MIGRATION_MAPPING_SYNC = 22,
|
|
28430
29971
|
REMINDER_MESSAGE = 23,
|
|
28431
29972
|
BOT_MEMU_ONBOARDING_MESSAGE = 24,
|
|
28432
|
-
STATUS_MENTION_MESSAGE = 25
|
|
29973
|
+
STATUS_MENTION_MESSAGE = 25,
|
|
29974
|
+
STOP_GENERATION_MESSAGE = 26
|
|
28433
29975
|
}
|
|
28434
29976
|
}
|
|
28435
29977
|
|
|
@@ -29451,6 +30993,125 @@ export namespace waproto {
|
|
|
29451
30993
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
29452
30994
|
}
|
|
29453
30995
|
|
|
30996
|
+
/** Properties of a StatusNotificationMessage. */
|
|
30997
|
+
interface IStatusNotificationMessage {
|
|
30998
|
+
|
|
30999
|
+
/** StatusNotificationMessage responseMessageKey */
|
|
31000
|
+
responseMessageKey?: (waproto.IMessageKey|null);
|
|
31001
|
+
|
|
31002
|
+
/** StatusNotificationMessage originalMessageKey */
|
|
31003
|
+
originalMessageKey?: (waproto.IMessageKey|null);
|
|
31004
|
+
|
|
31005
|
+
/** StatusNotificationMessage type */
|
|
31006
|
+
type?: (waproto.Message.StatusNotificationMessage.StatusNotificationType|null);
|
|
31007
|
+
}
|
|
31008
|
+
|
|
31009
|
+
/** Represents a StatusNotificationMessage. */
|
|
31010
|
+
class StatusNotificationMessage implements IStatusNotificationMessage {
|
|
31011
|
+
|
|
31012
|
+
/**
|
|
31013
|
+
* Constructs a new StatusNotificationMessage.
|
|
31014
|
+
* @param [properties] Properties to set
|
|
31015
|
+
*/
|
|
31016
|
+
constructor(properties?: waproto.Message.IStatusNotificationMessage);
|
|
31017
|
+
|
|
31018
|
+
/** StatusNotificationMessage responseMessageKey. */
|
|
31019
|
+
public responseMessageKey?: (waproto.IMessageKey|null);
|
|
31020
|
+
|
|
31021
|
+
/** StatusNotificationMessage originalMessageKey. */
|
|
31022
|
+
public originalMessageKey?: (waproto.IMessageKey|null);
|
|
31023
|
+
|
|
31024
|
+
/** StatusNotificationMessage type. */
|
|
31025
|
+
public type?: (waproto.Message.StatusNotificationMessage.StatusNotificationType|null);
|
|
31026
|
+
|
|
31027
|
+
/**
|
|
31028
|
+
* Creates a new StatusNotificationMessage instance using the specified properties.
|
|
31029
|
+
* @param [properties] Properties to set
|
|
31030
|
+
* @returns StatusNotificationMessage instance
|
|
31031
|
+
*/
|
|
31032
|
+
public static create(properties?: waproto.Message.IStatusNotificationMessage): waproto.Message.StatusNotificationMessage;
|
|
31033
|
+
|
|
31034
|
+
/**
|
|
31035
|
+
* Encodes the specified StatusNotificationMessage message. Does not implicitly {@link waproto.Message.StatusNotificationMessage.verify|verify} messages.
|
|
31036
|
+
* @param message StatusNotificationMessage message or plain object to encode
|
|
31037
|
+
* @param [writer] Writer to encode to
|
|
31038
|
+
* @returns Writer
|
|
31039
|
+
*/
|
|
31040
|
+
public static encode(message: waproto.Message.IStatusNotificationMessage, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
31041
|
+
|
|
31042
|
+
/**
|
|
31043
|
+
* Encodes the specified StatusNotificationMessage message, length delimited. Does not implicitly {@link waproto.Message.StatusNotificationMessage.verify|verify} messages.
|
|
31044
|
+
* @param message StatusNotificationMessage message or plain object to encode
|
|
31045
|
+
* @param [writer] Writer to encode to
|
|
31046
|
+
* @returns Writer
|
|
31047
|
+
*/
|
|
31048
|
+
public static encodeDelimited(message: waproto.Message.IStatusNotificationMessage, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
31049
|
+
|
|
31050
|
+
/**
|
|
31051
|
+
* Decodes a StatusNotificationMessage message from the specified reader or buffer.
|
|
31052
|
+
* @param reader Reader or buffer to decode from
|
|
31053
|
+
* @param [length] Message length if known beforehand
|
|
31054
|
+
* @returns StatusNotificationMessage
|
|
31055
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
31056
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
31057
|
+
*/
|
|
31058
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): waproto.Message.StatusNotificationMessage;
|
|
31059
|
+
|
|
31060
|
+
/**
|
|
31061
|
+
* Decodes a StatusNotificationMessage message from the specified reader or buffer, length delimited.
|
|
31062
|
+
* @param reader Reader or buffer to decode from
|
|
31063
|
+
* @returns StatusNotificationMessage
|
|
31064
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
31065
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
31066
|
+
*/
|
|
31067
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): waproto.Message.StatusNotificationMessage;
|
|
31068
|
+
|
|
31069
|
+
/**
|
|
31070
|
+
* Verifies a StatusNotificationMessage message.
|
|
31071
|
+
* @param message Plain object to verify
|
|
31072
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
31073
|
+
*/
|
|
31074
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
31075
|
+
|
|
31076
|
+
/**
|
|
31077
|
+
* Creates a StatusNotificationMessage message from a plain object. Also converts values to their respective internal types.
|
|
31078
|
+
* @param object Plain object
|
|
31079
|
+
* @returns StatusNotificationMessage
|
|
31080
|
+
*/
|
|
31081
|
+
public static fromObject(object: { [k: string]: any }): waproto.Message.StatusNotificationMessage;
|
|
31082
|
+
|
|
31083
|
+
/**
|
|
31084
|
+
* Creates a plain object from a StatusNotificationMessage message. Also converts values to other types if specified.
|
|
31085
|
+
* @param message StatusNotificationMessage
|
|
31086
|
+
* @param [options] Conversion options
|
|
31087
|
+
* @returns Plain object
|
|
31088
|
+
*/
|
|
31089
|
+
public static toObject(message: waproto.Message.StatusNotificationMessage, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
31090
|
+
|
|
31091
|
+
/**
|
|
31092
|
+
* Converts this StatusNotificationMessage to JSON.
|
|
31093
|
+
* @returns JSON object
|
|
31094
|
+
*/
|
|
31095
|
+
public toJSON(): { [k: string]: any };
|
|
31096
|
+
|
|
31097
|
+
/**
|
|
31098
|
+
* Gets the default type url for StatusNotificationMessage
|
|
31099
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
31100
|
+
* @returns The default type url
|
|
31101
|
+
*/
|
|
31102
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
31103
|
+
}
|
|
31104
|
+
|
|
31105
|
+
namespace StatusNotificationMessage {
|
|
31106
|
+
|
|
31107
|
+
/** StatusNotificationType enum. */
|
|
31108
|
+
enum StatusNotificationType {
|
|
31109
|
+
UNKNOWN = 0,
|
|
31110
|
+
STATUS_ADD_YOURS = 1,
|
|
31111
|
+
STATUS_RESHARE = 2
|
|
31112
|
+
}
|
|
31113
|
+
}
|
|
31114
|
+
|
|
29454
31115
|
/** Properties of a StickerMessage. */
|
|
29455
31116
|
interface IStickerMessage {
|
|
29456
31117
|
|
|
@@ -31314,7 +32975,10 @@ export namespace waproto {
|
|
|
31314
32975
|
HD_VIDEO_DUAL_UPLOAD = 5,
|
|
31315
32976
|
STATUS_TAPPABLE_MESSAGE = 6,
|
|
31316
32977
|
MEDIA_POLL = 7,
|
|
31317
|
-
STATUS_ADD_YOURS = 8
|
|
32978
|
+
STATUS_ADD_YOURS = 8,
|
|
32979
|
+
STATUS_NOTIFICATION = 9,
|
|
32980
|
+
HD_IMAGE_DUAL_UPLOAD = 10,
|
|
32981
|
+
STICKER_ANNOTATION = 11
|
|
31318
32982
|
}
|
|
31319
32983
|
}
|
|
31320
32984
|
|
|
@@ -47825,6 +49489,12 @@ export namespace waproto {
|
|
|
47825
49489
|
|
|
47826
49490
|
/** WebMessageInfo statusMentionSources */
|
|
47827
49491
|
statusMentionSources?: (string[]|null);
|
|
49492
|
+
|
|
49493
|
+
/** WebMessageInfo supportAiCitations */
|
|
49494
|
+
supportAiCitations?: (waproto.ICitation[]|null);
|
|
49495
|
+
|
|
49496
|
+
/** WebMessageInfo botTargetId */
|
|
49497
|
+
botTargetId?: (string|null);
|
|
47828
49498
|
}
|
|
47829
49499
|
|
|
47830
49500
|
/** Represents a WebMessageInfo. */
|
|
@@ -48016,6 +49686,12 @@ export namespace waproto {
|
|
|
48016
49686
|
/** WebMessageInfo statusMentionSources. */
|
|
48017
49687
|
public statusMentionSources: string[];
|
|
48018
49688
|
|
|
49689
|
+
/** WebMessageInfo supportAiCitations. */
|
|
49690
|
+
public supportAiCitations: waproto.ICitation[];
|
|
49691
|
+
|
|
49692
|
+
/** WebMessageInfo botTargetId. */
|
|
49693
|
+
public botTargetId?: (string|null);
|
|
49694
|
+
|
|
48019
49695
|
/**
|
|
48020
49696
|
* Creates a new WebMessageInfo instance using the specified properties.
|
|
48021
49697
|
* @param [properties] Properties to set
|
|
@@ -48327,7 +50003,11 @@ export namespace waproto {
|
|
|
48327
50003
|
COMMUNITY_SUB_GROUP_VISIBILITY_HIDDEN = 208,
|
|
48328
50004
|
CAPI_GROUP_NE2EE_SYSTEM_MESSAGE = 209,
|
|
48329
50005
|
STATUS_MENTION = 210,
|
|
48330
|
-
USER_CONTROLS_SYSTEM_MESSAGE = 211
|
|
50006
|
+
USER_CONTROLS_SYSTEM_MESSAGE = 211,
|
|
50007
|
+
SUPPORT_SYSTEM_MESSAGE = 212,
|
|
50008
|
+
CHANGE_LID = 213,
|
|
50009
|
+
BIZ_CUSTOMER_3PD_DATA_SHARING_OPT_IN_MESSAGE = 214,
|
|
50010
|
+
BIZ_CUSTOMER_3PD_DATA_SHARING_OPT_OUT_MESSAGE = 215
|
|
48331
50011
|
}
|
|
48332
50012
|
}
|
|
48333
50013
|
|