@borealise/api 2.0.0-alpha.15 → 2.0.0-alpha.16
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.
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -142,6 +142,7 @@ interface PublicUser {
|
|
|
142
142
|
level: number;
|
|
143
143
|
subscriptionType?: string | null;
|
|
144
144
|
subscriptionMonths?: number | null;
|
|
145
|
+
currentRoomSlug?: string | null;
|
|
145
146
|
createdAt?: string;
|
|
146
147
|
friendsCount: number;
|
|
147
148
|
}
|
|
@@ -873,6 +874,7 @@ interface FriendEntry {
|
|
|
873
874
|
displayName: string | null;
|
|
874
875
|
avatarId: string;
|
|
875
876
|
level: number;
|
|
877
|
+
currentRoomSlug?: string | null;
|
|
876
878
|
status: 'pending' | 'accepted' | 'blocked';
|
|
877
879
|
isSender: boolean;
|
|
878
880
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -142,6 +142,7 @@ interface PublicUser {
|
|
|
142
142
|
level: number;
|
|
143
143
|
subscriptionType?: string | null;
|
|
144
144
|
subscriptionMonths?: number | null;
|
|
145
|
+
currentRoomSlug?: string | null;
|
|
145
146
|
createdAt?: string;
|
|
146
147
|
friendsCount: number;
|
|
147
148
|
}
|
|
@@ -873,6 +874,7 @@ interface FriendEntry {
|
|
|
873
874
|
displayName: string | null;
|
|
874
875
|
avatarId: string;
|
|
875
876
|
level: number;
|
|
877
|
+
currentRoomSlug?: string | null;
|
|
876
878
|
status: 'pending' | 'accepted' | 'blocked';
|
|
877
879
|
isSender: boolean;
|
|
878
880
|
}
|