gst-common 1.4.54 → 1.4.55
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.cts +4 -1
- package/dist/index.d.ts +4 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1668,7 +1668,10 @@ type TAccountPublicListFollowerRes = TAccountEntity & {
|
|
|
1668
1668
|
type TAccountPublicListFollowingRes = TAccountEntity & {
|
|
1669
1669
|
following: TAccountEntity[];
|
|
1670
1670
|
};
|
|
1671
|
-
type TAccountPublicDetailRes = TAccountEntity & {
|
|
1671
|
+
type TAccountPublicDetailRes = Omit<TAccountEntity, "student"> & {
|
|
1672
|
+
student: (TStudentEntity & {
|
|
1673
|
+
totalProgram: number;
|
|
1674
|
+
}) | null;
|
|
1672
1675
|
hasFollowed: boolean;
|
|
1673
1676
|
totalFollower: number;
|
|
1674
1677
|
isMe: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -1668,7 +1668,10 @@ type TAccountPublicListFollowerRes = TAccountEntity & {
|
|
|
1668
1668
|
type TAccountPublicListFollowingRes = TAccountEntity & {
|
|
1669
1669
|
following: TAccountEntity[];
|
|
1670
1670
|
};
|
|
1671
|
-
type TAccountPublicDetailRes = TAccountEntity & {
|
|
1671
|
+
type TAccountPublicDetailRes = Omit<TAccountEntity, "student"> & {
|
|
1672
|
+
student: (TStudentEntity & {
|
|
1673
|
+
totalProgram: number;
|
|
1674
|
+
}) | null;
|
|
1672
1675
|
hasFollowed: boolean;
|
|
1673
1676
|
totalFollower: number;
|
|
1674
1677
|
isMe: boolean;
|