@talkplay/shared-types 1.0.75 → 1.0.77
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 -5
- package/dist/index.d.ts +0 -5
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -868,7 +868,6 @@ type PopulatedProgramScriptBlock = PopulatedProgramScriptElement[];
|
|
|
868
868
|
type PopulatedProgramScriptEntity = PopulatedProgramScriptBlock[];
|
|
869
869
|
|
|
870
870
|
type VoiceProfileEntity = BaseEntity & {
|
|
871
|
-
name: string;
|
|
872
871
|
source: VoiceProfileSourcesEnum;
|
|
873
872
|
provider: TtsProvidersEnum;
|
|
874
873
|
externalProviderId: string;
|
|
@@ -979,28 +978,24 @@ type S3FileEntity = BaseEntity & {
|
|
|
979
978
|
program?: ProgramEntity;
|
|
980
979
|
};
|
|
981
980
|
type RadioUserAvatarEntity = Omit<S3FileEntity, "radioId" | "casterId" | "programId" | "radio" | "caster" | "program"> & {
|
|
982
|
-
kind: "radioUser";
|
|
983
981
|
radioUserId: string;
|
|
984
982
|
radioId: null;
|
|
985
983
|
casterId: null;
|
|
986
984
|
programId: null;
|
|
987
985
|
};
|
|
988
986
|
type CasterAvatarEntity = Omit<S3FileEntity, "radioId" | "radioUserId" | "programId" | "radio" | "radioUser" | "program"> & {
|
|
989
|
-
kind: "caster";
|
|
990
987
|
casterId: string;
|
|
991
988
|
radioId: null;
|
|
992
989
|
radioUserId: null;
|
|
993
990
|
programId: null;
|
|
994
991
|
};
|
|
995
992
|
type RadioLogoEntity = Omit<S3FileEntity, "casterId" | "radioUserId" | "programId" | "caster" | "radioUser" | "program"> & {
|
|
996
|
-
kind: "radioLogo";
|
|
997
993
|
radioId: string;
|
|
998
994
|
radioUserId: null;
|
|
999
995
|
casterId: null;
|
|
1000
996
|
programId: null;
|
|
1001
997
|
};
|
|
1002
998
|
type ProgramLogoEntity = Omit<S3FileEntity, "casterId" | "radioUserId" | "radioId" | "caster" | "radioUser" | "radio"> & {
|
|
1003
|
-
kind: "programLogo";
|
|
1004
999
|
programId: string;
|
|
1005
1000
|
radioId: null;
|
|
1006
1001
|
radioUserId: null;
|
package/dist/index.d.ts
CHANGED
|
@@ -868,7 +868,6 @@ type PopulatedProgramScriptBlock = PopulatedProgramScriptElement[];
|
|
|
868
868
|
type PopulatedProgramScriptEntity = PopulatedProgramScriptBlock[];
|
|
869
869
|
|
|
870
870
|
type VoiceProfileEntity = BaseEntity & {
|
|
871
|
-
name: string;
|
|
872
871
|
source: VoiceProfileSourcesEnum;
|
|
873
872
|
provider: TtsProvidersEnum;
|
|
874
873
|
externalProviderId: string;
|
|
@@ -979,28 +978,24 @@ type S3FileEntity = BaseEntity & {
|
|
|
979
978
|
program?: ProgramEntity;
|
|
980
979
|
};
|
|
981
980
|
type RadioUserAvatarEntity = Omit<S3FileEntity, "radioId" | "casterId" | "programId" | "radio" | "caster" | "program"> & {
|
|
982
|
-
kind: "radioUser";
|
|
983
981
|
radioUserId: string;
|
|
984
982
|
radioId: null;
|
|
985
983
|
casterId: null;
|
|
986
984
|
programId: null;
|
|
987
985
|
};
|
|
988
986
|
type CasterAvatarEntity = Omit<S3FileEntity, "radioId" | "radioUserId" | "programId" | "radio" | "radioUser" | "program"> & {
|
|
989
|
-
kind: "caster";
|
|
990
987
|
casterId: string;
|
|
991
988
|
radioId: null;
|
|
992
989
|
radioUserId: null;
|
|
993
990
|
programId: null;
|
|
994
991
|
};
|
|
995
992
|
type RadioLogoEntity = Omit<S3FileEntity, "casterId" | "radioUserId" | "programId" | "caster" | "radioUser" | "program"> & {
|
|
996
|
-
kind: "radioLogo";
|
|
997
993
|
radioId: string;
|
|
998
994
|
radioUserId: null;
|
|
999
995
|
casterId: null;
|
|
1000
996
|
programId: null;
|
|
1001
997
|
};
|
|
1002
998
|
type ProgramLogoEntity = Omit<S3FileEntity, "casterId" | "radioUserId" | "radioId" | "caster" | "radioUser" | "radio"> & {
|
|
1003
|
-
kind: "programLogo";
|
|
1004
999
|
programId: string;
|
|
1005
1000
|
radioId: null;
|
|
1006
1001
|
radioUserId: null;
|