@@ -3049,6 +3049,8 @@ def _append_full_messages_from_rows(
30493049 quote_thumb_url = ""
30503050 link_type = ""
30513051 link_style = ""
3052+ object_id = ""
3053+ object_nonce_id = ""
30523054 quote_server_id = ""
30533055 quote_type = ""
30543056 quote_voice_length = ""
@@ -3082,6 +3084,8 @@ def _append_full_messages_from_rows(
30823084 quote_thumb_url = str (parsed .get ("quoteThumbUrl" ) or "" )
30833085 link_type = str (parsed .get ("linkType" ) or "" )
30843086 link_style = str (parsed .get ("linkStyle" ) or "" )
3087+ object_id = str (parsed .get ("objectId" ) or "" )
3088+ object_nonce_id = str (parsed .get ("objectNonceId" ) or "" )
30853089 quote_username = str (parsed .get ("quoteUsername" ) or "" )
30863090 quote_server_id = str (parsed .get ("quoteServerId" ) or "" )
30873091 quote_type = str (parsed .get ("quoteType" ) or "" )
@@ -3324,6 +3328,8 @@ def _append_full_messages_from_rows(
33243328 quote_thumb_url = str (parsed .get ("quoteThumbUrl" ) or quote_thumb_url )
33253329 link_type = str (parsed .get ("linkType" ) or link_type )
33263330 link_style = str (parsed .get ("linkStyle" ) or link_style )
3331+ object_id = str (parsed .get ("objectId" ) or object_id )
3332+ object_nonce_id = str (parsed .get ("objectNonceId" ) or object_nonce_id )
33273333 amount = str (parsed .get ("amount" ) or amount )
33283334 cover_url = str (parsed .get ("coverUrl" ) or cover_url )
33293335 thumb_url = str (parsed .get ("thumbUrl" ) or thumb_url )
@@ -3382,6 +3388,8 @@ def _append_full_messages_from_rows(
33823388 "url" : url ,
33833389 "linkType" : link_type ,
33843390 "linkStyle" : link_style ,
3391+ "objectId" : object_id ,
3392+ "objectNonceId" : object_nonce_id ,
33853393 "from" : from_name ,
33863394 "fromUsername" : from_username ,
33873395 "recordItem" : record_item ,
@@ -4584,6 +4592,8 @@ def _collect_chat_messages(
45844592 quote_thumb_url = ""
45854593 link_type = ""
45864594 link_style = ""
4595+ object_id = ""
4596+ object_nonce_id = ""
45874597 quote_server_id = ""
45884598 quote_type = ""
45894599 quote_voice_length = ""
@@ -4617,6 +4627,8 @@ def _collect_chat_messages(
46174627 quote_thumb_url = str (parsed .get ("quoteThumbUrl" ) or "" )
46184628 link_type = str (parsed .get ("linkType" ) or "" )
46194629 link_style = str (parsed .get ("linkStyle" ) or "" )
4630+ object_id = str (parsed .get ("objectId" ) or "" )
4631+ object_nonce_id = str (parsed .get ("objectNonceId" ) or "" )
46204632 quote_username = str (parsed .get ("quoteUsername" ) or "" )
46214633 quote_server_id = str (parsed .get ("quoteServerId" ) or "" )
46224634 quote_type = str (parsed .get ("quoteType" ) or "" )
@@ -4838,6 +4850,8 @@ def _collect_chat_messages(
48384850 quote_thumb_url = str (parsed .get ("quoteThumbUrl" ) or quote_thumb_url )
48394851 link_type = str (parsed .get ("linkType" ) or link_type )
48404852 link_style = str (parsed .get ("linkStyle" ) or link_style )
4853+ object_id = str (parsed .get ("objectId" ) or object_id )
4854+ object_nonce_id = str (parsed .get ("objectNonceId" ) or object_nonce_id )
48414855 amount = str (parsed .get ("amount" ) or amount )
48424856 cover_url = str (parsed .get ("coverUrl" ) or cover_url )
48434857 thumb_url = str (parsed .get ("thumbUrl" ) or thumb_url )
@@ -4901,6 +4915,8 @@ def _collect_chat_messages(
49014915 "url" : url ,
49024916 "linkType" : link_type ,
49034917 "linkStyle" : link_style ,
4918+ "objectId" : object_id ,
4919+ "objectNonceId" : object_nonce_id ,
49044920 "from" : from_name ,
49054921 "fromUsername" : from_username ,
49064922 "recordItem" : record_item ,
@@ -5502,6 +5518,8 @@ def pick(*keys: str) -> Any:
55025518 quote_thumb_url = ""
55035519 link_type = ""
55045520 link_style = ""
5521+ object_id = ""
5522+ object_nonce_id = ""
55055523 quote_server_id = ""
55065524 quote_type = ""
55075525 quote_voice_length = ""
@@ -5531,6 +5549,8 @@ def pick(*keys: str) -> Any:
55315549 quote_thumb_url = str(parsed.get("quoteThumbUrl") or "")
55325550 link_type = str(parsed.get("linkType") or "")
55335551 link_style = str(parsed.get("linkStyle") or "")
5552+ object_id = str(parsed.get("objectId") or "")
5553+ object_nonce_id = str(parsed.get("objectNonceId") or "")
55345554 quote_username = str(parsed.get("quoteUsername") or "")
55355555 quote_server_id = str(parsed.get("quoteServerId") or "")
55365556 quote_type = str(parsed.get("quoteType") or "")
@@ -5736,6 +5756,8 @@ def pick(*keys: str) -> Any:
57365756 quote_thumb_url = str(parsed.get("quoteThumbUrl") or quote_thumb_url)
57375757 link_type = str(parsed.get("linkType") or link_type)
57385758 link_style = str(parsed.get("linkStyle") or link_style)
5759+ object_id = str(parsed.get("objectId") or object_id)
5760+ object_nonce_id = str(parsed.get("objectNonceId") or object_nonce_id)
57395761 amount = str(parsed.get("amount") or amount)
57405762 cover_url = str(parsed.get("coverUrl") or cover_url)
57415763 thumb_url = str(parsed.get("thumbUrl") or thumb_url)
@@ -5788,6 +5810,8 @@ def pick(*keys: str) -> Any:
57885810 "url": url,
57895811 "linkType": link_type,
57905812 "linkStyle": link_style,
5813+ "objectId": object_id,
5814+ "objectNonceId": object_nonce_id,
57915815 "from": from_name,
57925816 "fromUsername": from_username,
57935817 "recordItem": record_item,
@@ -7796,6 +7820,8 @@ async def resolve_app_message(
77967820 "fromUsername" : str (parsed .get ("fromUsername" ) or "" ).strip (),
77977821 "linkType" : str (parsed .get ("linkType" ) or "" ).strip (),
77987822 "linkStyle" : str (parsed .get ("linkStyle" ) or "" ).strip (),
7823+ "objectId" : str (parsed .get ("objectId" ) or "" ).strip (),
7824+ "objectNonceId" : str (parsed .get ("objectNonceId" ) or "" ).strip (),
77997825 "size" : str (parsed .get ("size" ) or "" ).strip (),
78007826 "baseUrl" : base_url ,
78017827 }
0 commit comments