@connectedxm/client 6.4.6 → 6.4.7
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.ts +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1122,10 +1122,10 @@ interface BaseChannel {
|
|
|
1122
1122
|
name: string;
|
|
1123
1123
|
description: string | null;
|
|
1124
1124
|
image: BaseImage;
|
|
1125
|
-
subscriberCount: number;
|
|
1126
1125
|
private: boolean;
|
|
1127
1126
|
creatorId: string | null;
|
|
1128
1127
|
_count: {
|
|
1128
|
+
subscribers: number;
|
|
1129
1129
|
contents: number;
|
|
1130
1130
|
};
|
|
1131
1131
|
}
|