Resolves #18536 Retreive conversation variables (#18581)

This commit is contained in:
Alex Chim 2025-04-25 11:52:25 +08:00 committed by GitHub
commit 12836f9db9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 691 additions and 1 deletions

View file

@ -19,3 +19,9 @@ paginated_conversation_variable_fields = {
"has_more": fields.Boolean,
"data": fields.List(fields.Nested(conversation_variable_fields), attribute="data"),
}
conversation_variable_infinite_scroll_pagination_fields = {
"limit": fields.Integer,
"has_more": fields.Boolean,
"data": fields.List(fields.Nested(conversation_variable_fields)),
}