@talkplay/shared-types 1.0.75 → 1.0.76
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 +0 -4
- package/dist/index.d.ts +0 -4
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -979,28 +979,24 @@ type S3FileEntity = BaseEntity & {
|
|
|
979
979
|
program?: ProgramEntity;
|
|
980
980
|
};
|
|
981
981
|
type RadioUserAvatarEntity = Omit<S3FileEntity, "radioId" | "casterId" | "programId" | "radio" | "caster" | "program"> & {
|
|
982
|
-
kind: "radioUser";
|
|
983
982
|
radioUserId: string;
|
|
984
983
|
radioId: null;
|
|
985
984
|
casterId: null;
|
|
986
985
|
programId: null;
|
|
987
986
|
};
|
|
988
987
|
type CasterAvatarEntity = Omit<S3FileEntity, "radioId" | "radioUserId" | "programId" | "radio" | "radioUser" | "program"> & {
|
|
989
|
-
kind: "caster";
|
|
990
988
|
casterId: string;
|
|
991
989
|
radioId: null;
|
|
992
990
|
radioUserId: null;
|
|
993
991
|
programId: null;
|
|
994
992
|
};
|
|
995
993
|
type RadioLogoEntity = Omit<S3FileEntity, "casterId" | "radioUserId" | "programId" | "caster" | "radioUser" | "program"> & {
|
|
996
|
-
kind: "radioLogo";
|
|
997
994
|
radioId: string;
|
|
998
995
|
radioUserId: null;
|
|
999
996
|
casterId: null;
|
|
1000
997
|
programId: null;
|
|
1001
998
|
};
|
|
1002
999
|
type ProgramLogoEntity = Omit<S3FileEntity, "casterId" | "radioUserId" | "radioId" | "caster" | "radioUser" | "radio"> & {
|
|
1003
|
-
kind: "programLogo";
|
|
1004
1000
|
programId: string;
|
|
1005
1001
|
radioId: null;
|
|
1006
1002
|
radioUserId: null;
|
package/dist/index.d.ts
CHANGED
|
@@ -979,28 +979,24 @@ type S3FileEntity = BaseEntity & {
|
|
|
979
979
|
program?: ProgramEntity;
|
|
980
980
|
};
|
|
981
981
|
type RadioUserAvatarEntity = Omit<S3FileEntity, "radioId" | "casterId" | "programId" | "radio" | "caster" | "program"> & {
|
|
982
|
-
kind: "radioUser";
|
|
983
982
|
radioUserId: string;
|
|
984
983
|
radioId: null;
|
|
985
984
|
casterId: null;
|
|
986
985
|
programId: null;
|
|
987
986
|
};
|
|
988
987
|
type CasterAvatarEntity = Omit<S3FileEntity, "radioId" | "radioUserId" | "programId" | "radio" | "radioUser" | "program"> & {
|
|
989
|
-
kind: "caster";
|
|
990
988
|
casterId: string;
|
|
991
989
|
radioId: null;
|
|
992
990
|
radioUserId: null;
|
|
993
991
|
programId: null;
|
|
994
992
|
};
|
|
995
993
|
type RadioLogoEntity = Omit<S3FileEntity, "casterId" | "radioUserId" | "programId" | "caster" | "radioUser" | "program"> & {
|
|
996
|
-
kind: "radioLogo";
|
|
997
994
|
radioId: string;
|
|
998
995
|
radioUserId: null;
|
|
999
996
|
casterId: null;
|
|
1000
997
|
programId: null;
|
|
1001
998
|
};
|
|
1002
999
|
type ProgramLogoEntity = Omit<S3FileEntity, "casterId" | "radioUserId" | "radioId" | "caster" | "radioUser" | "radio"> & {
|
|
1003
|
-
kind: "programLogo";
|
|
1004
1000
|
programId: string;
|
|
1005
1001
|
radioId: null;
|
|
1006
1002
|
radioUserId: null;
|