@mx-space/api-client 1.14.0 → 1.14.2

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.
@@ -9,6 +9,7 @@ export interface ActivityPresence {
9
9
  joinedAt: number
10
10
  connectedAt: number
11
11
  updatedAt: number
12
+ readerId?: string
12
13
 
13
14
  displayName?: string
14
15
  }
package/models/auth.ts ADDED
@@ -0,0 +1,8 @@
1
+ export interface AuthUser {
2
+ id: string
3
+ email: string
4
+ isOwner: boolean
5
+ image: string
6
+ name: string
7
+ provider: string
8
+ }
package/models/index.ts CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from './activity'
2
2
  export * from './aggregate'
3
3
  export * from './ai'
4
+ export * from './auth'
4
5
  export * from './base'
5
6
  export * from './category'
6
7
  export * from './comment'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mx-space/api-client",
3
- "version": "1.14.0",
3
+ "version": "1.14.2",
4
4
  "type": "module",
5
5
  "description": "A api client for mx-space server@next",
6
6
  "author": "Innei",