(sessionID: string)
| 419 | return store.session.info[sessionID] |
| 420 | }, |
| 421 | async refresh(sessionID: string) { |
| 422 | const result = await sdk.client.v2.session.get({ sessionID }, { throwOnError: true }) |
| 423 | setStore("session", "info", sessionID, result.data.data) |
| 424 | }, |
| 425 | message: { |
| 426 | list(sessionID: string) { |
| 427 | return store.session.message[sessionID] |
nothing calls this directly
no test coverage detected