usync, chat: get bot profile info and get bot list

This commit is contained in:
Rajeh Taher
2025-03-19 00:44:43 +02:00
parent add437047a
commit 98ecd2a653
4 changed files with 123 additions and 3 deletions
+6 -1
View File
@@ -3,6 +3,7 @@ export class USyncUser {
lid: string
phone: string
type: string
personaId: string
withId(id: string) {
this.id = id
@@ -24,4 +25,8 @@ export class USyncUser {
return this
}
}
withPersonaId(personaId: string) {
this.personaId = personaId
return this
}
}