@talkplay/shared-types 1.0.47 → 1.0.49
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 +62 -44
- package/dist/index.d.ts +62 -44
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -657,26 +657,6 @@ type TkplayErrorEntity = {
|
|
|
657
657
|
data: any;
|
|
658
658
|
};
|
|
659
659
|
|
|
660
|
-
type RadioContractEntity = BaseEntity & {
|
|
661
|
-
validUntil: DateString;
|
|
662
|
-
isActive: boolean;
|
|
663
|
-
radioId: string;
|
|
664
|
-
radio?: RadioEntity;
|
|
665
|
-
};
|
|
666
|
-
|
|
667
|
-
type RadioExternalMediasEntity = {
|
|
668
|
-
id: string;
|
|
669
|
-
website?: string | null;
|
|
670
|
-
instagram?: string | null;
|
|
671
|
-
facebook?: string | null;
|
|
672
|
-
whatsapp?: string | null;
|
|
673
|
-
tiktok?: string | null;
|
|
674
|
-
createdAt: Date;
|
|
675
|
-
updatedAt: Date | null;
|
|
676
|
-
radioId: string;
|
|
677
|
-
radio?: RadioEntity;
|
|
678
|
-
};
|
|
679
|
-
|
|
680
660
|
type ProgramEpisodeBlockEntity = BaseEntity & {
|
|
681
661
|
index: number;
|
|
682
662
|
episode?: ProgramEpisodeEntity;
|
|
@@ -739,28 +719,24 @@ type ProgramScriptEntity = BaseEntity & {
|
|
|
739
719
|
program?: ProgramEntity;
|
|
740
720
|
};
|
|
741
721
|
|
|
742
|
-
type
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
blocksAmount: number;
|
|
747
|
-
duration: number;
|
|
748
|
-
dayPeriod: ProgramDayPeriodEnum;
|
|
749
|
-
allowAiGeneratedPersonNames: boolean;
|
|
750
|
-
allowCityMentions: boolean;
|
|
751
|
-
audiences: ProgramAudienceEnum[];
|
|
752
|
-
musicCategories: MusicCategoriesEnum[];
|
|
753
|
-
musicGenres: MusicSubGenresEnum[];
|
|
754
|
-
segments: ProgramSegmentEnum[];
|
|
755
|
-
communicationTone: CommunicationToneEnum;
|
|
756
|
-
emotionStyle: EmotionStyleEnum;
|
|
757
|
-
formalityLevel: FormalityLevelEnum;
|
|
758
|
-
humorStyle: HumorStyleEnum;
|
|
759
|
-
languageStyle: LanguageStyleEnum;
|
|
760
|
-
voiceEnergy: VoiceEnergyEnum;
|
|
722
|
+
type RadioContractEntity = BaseEntity & {
|
|
723
|
+
validUntil: DateString;
|
|
724
|
+
isActive: boolean;
|
|
725
|
+
radioId: string;
|
|
761
726
|
radio?: RadioEntity;
|
|
727
|
+
};
|
|
728
|
+
|
|
729
|
+
type RadioExternalMediasEntity = {
|
|
730
|
+
id: string;
|
|
731
|
+
website?: string | null;
|
|
732
|
+
instagram?: string | null;
|
|
733
|
+
facebook?: string | null;
|
|
734
|
+
whatsapp?: string | null;
|
|
735
|
+
tiktok?: string | null;
|
|
736
|
+
createdAt: Date;
|
|
737
|
+
updatedAt: Date | null;
|
|
762
738
|
radioId: string;
|
|
763
|
-
|
|
739
|
+
radio?: RadioEntity;
|
|
764
740
|
};
|
|
765
741
|
|
|
766
742
|
type CasterEntity = BaseEntity & {
|
|
@@ -794,6 +770,30 @@ type SystemUserEntity = BaseEntity & {
|
|
|
794
770
|
role: UserRolesEnum;
|
|
795
771
|
};
|
|
796
772
|
|
|
773
|
+
type ProgramEntity = BaseEntity & {
|
|
774
|
+
name: string;
|
|
775
|
+
description: string;
|
|
776
|
+
blockNamePrefix: string;
|
|
777
|
+
blocksAmount: number;
|
|
778
|
+
duration: number;
|
|
779
|
+
dayPeriod: ProgramDayPeriodEnum;
|
|
780
|
+
allowAiGeneratedPersonNames: boolean;
|
|
781
|
+
allowCityMentions: boolean;
|
|
782
|
+
audiences: ProgramAudienceEnum[];
|
|
783
|
+
musicCategories: MusicCategoriesEnum[];
|
|
784
|
+
musicGenres: MusicSubGenresEnum[];
|
|
785
|
+
segments: ProgramSegmentEnum[];
|
|
786
|
+
communicationTone: CommunicationToneEnum;
|
|
787
|
+
emotionStyle: EmotionStyleEnum;
|
|
788
|
+
formalityLevel: FormalityLevelEnum;
|
|
789
|
+
humorStyle: HumorStyleEnum;
|
|
790
|
+
languageStyle: LanguageStyleEnum;
|
|
791
|
+
voiceEnergy: VoiceEnergyEnum;
|
|
792
|
+
radio?: RadioEntity;
|
|
793
|
+
radioId: string;
|
|
794
|
+
casters?: CasterEntity[];
|
|
795
|
+
};
|
|
796
|
+
|
|
797
797
|
type S3FileEntity = BaseEntity & {
|
|
798
798
|
key: string;
|
|
799
799
|
mimeType: string;
|
|
@@ -805,30 +805,48 @@ type S3FileEntity = BaseEntity & {
|
|
|
805
805
|
radioUser: RadioUserEntity;
|
|
806
806
|
casterId: string | null;
|
|
807
807
|
caster?: CasterEntity;
|
|
808
|
+
programId: string | null;
|
|
809
|
+
program?: ProgramEntity;
|
|
808
810
|
};
|
|
809
|
-
type RadioUserAvatarEntity = Omit<S3FileEntity, "radioId" | "casterId"> & {
|
|
811
|
+
type RadioUserAvatarEntity = Omit<S3FileEntity, "radioId" | "casterId" | "programId"> & {
|
|
810
812
|
kind: "radioUser";
|
|
811
813
|
radioUserId: string;
|
|
812
814
|
radioId: null;
|
|
813
815
|
casterId: null;
|
|
816
|
+
programId: null;
|
|
814
817
|
radio: never;
|
|
815
818
|
caster: never;
|
|
819
|
+
program: never;
|
|
816
820
|
};
|
|
817
|
-
type CasterAvatarEntity = Omit<S3FileEntity, "radioId" | "radioUserId"> & {
|
|
821
|
+
type CasterAvatarEntity = Omit<S3FileEntity, "radioId" | "radioUserId" | "programId"> & {
|
|
818
822
|
kind: "caster";
|
|
819
823
|
casterId: string;
|
|
820
824
|
radioId: null;
|
|
821
825
|
radioUserId: null;
|
|
826
|
+
programId: null;
|
|
822
827
|
user: never;
|
|
823
828
|
radio: never;
|
|
829
|
+
program: never;
|
|
824
830
|
};
|
|
825
|
-
type RadioLogoEntity = Omit<S3FileEntity, "casterId" | "radioUserId"> & {
|
|
831
|
+
type RadioLogoEntity = Omit<S3FileEntity, "casterId" | "radioUserId" | "programId"> & {
|
|
826
832
|
kind: "radioLogo";
|
|
827
833
|
radioId: string;
|
|
828
834
|
radioUserId: null;
|
|
829
835
|
casterId: null;
|
|
836
|
+
programId: null;
|
|
830
837
|
radioUser: never;
|
|
831
838
|
caster: never;
|
|
839
|
+
program: never;
|
|
840
|
+
};
|
|
841
|
+
type ProgramLogoEntity = Omit<S3FileEntity, "casterId" | "radioUserId" | "radioId"> & {
|
|
842
|
+
kind: "programLogo";
|
|
843
|
+
programId: string;
|
|
844
|
+
radioId: null;
|
|
845
|
+
radioUserId: null;
|
|
846
|
+
casterId: null;
|
|
847
|
+
radioUser: never;
|
|
848
|
+
radio: never;
|
|
849
|
+
caster: never;
|
|
832
850
|
};
|
|
833
851
|
|
|
834
852
|
type RadioEntity = BaseEntity & {
|
|
@@ -1235,4 +1253,4 @@ declare const TKPLAY_ERRORS__PTBR: TkplayMappedErrors__Ptbr;
|
|
|
1235
1253
|
|
|
1236
1254
|
declare const TKPLAY_ERROR_MESSAGE_SPLITTER = "::";
|
|
1237
1255
|
|
|
1238
|
-
export { type AddressEntity, AudioBitratesEnum, AudioFormatsEnum, AudioFrequenciesEnum, type BaseEntity, BrStatesEnum, type CasterAvatarEntity, type CasterEntity, type ChargeEntity, ChargeItemTypesEnum, ChargeStatusEnum, ChargeTypesEnum, CommunicationToneEnum, CommunicationToneTranslationsEnum, type CouponActivationEntity, type CouponEntity, CouponTypesEnum, CouponTypesTranslationsEnum, type CreateCouponPayload, type CreateCouponResponse, type CreateLandingPageLeadPayload, type CreateLegalTermAgreementPayload, type CreateLegalTermPayload, type CreateLegalTermResponse, type CreateRadioPayload, type CreateRadioUserPayload, type CreateRadioUserResponse, type CreateSignupLeadPayload, type CreateSystemUserPayload, EmotionStyleEnum, EmotionStyleTranslationsEnum, type Enum, EpGenerationQualityEnum, EpGenerationTypesEnum, type EpisodeCreatedEvt, type EpisodeErrorEvt, type EpisodeProgressEvt, FFmpegAudioCurveEnum, FormalityLevelEnum, FormalityLevelTranslationsEnum, type GenerateEpJobPayload, type GenerateEpisodePayload, type GenerateEpisodeResponse, type GetCouponByIdResponse, type GetCouponValidationResponse, type GetPenaltyValueResponse, type GetRadioDetailsResponse, HumorStyleEnum, HumorStyleTranslationsEnum, JobsEnum, LanguageStyleEnum, LanguageStyleTranslationsEnum, type LeadEntity, LeadStatusEnum, LeadStatusTranslationsEnum, LeadTypesEnum, LeadTypesTranslationsEnum, type LegalTermEntity, LegalTermTypesEnum, LegalTermTypesTranslationsEnum, type ListChargesParams, type ListChargesResponse, type ListCouponsParams, type ListCouponsResponse, type ListLeadsParams, type ListLeadsResponse, type ListLegalTermsParams, type ListLegalTermsResponse, type ListRadioUsersParams, type ListRadioUsersResponse, type ListRadiosParams, type ListRadiosResponse, type ListSystemModulesResponse, type ListSystemUsersParams, type ListSystemUsersResponse, type LoginPayload, type LoginResponse, MusicCategoriesEnum, type MusicCategoriesTranslationEnum, MusicCategoriesTranslationsEnum, type MusicProgramScriptElement, MusicSubGenresEnum, type MusicSubGenresTranslationEnum, MusicSubGenresTranslationsEnum, NewsCategoriesEnum, type NewsProgramScriptElement, type NewsProgramScriptElementOptions, type OffProgramScriptElement, type PaginatedResponseDTO, type Pagination, type PaginationParams, type PlanEntity, type PopulatedProgramScriptBlock, type PopulatedProgramScriptElement, type PopulatedProgramScriptEntity, ProgramAudienceEnum, type ProgramAudienceTranslation, ProgramAudienceTranslationsEnum, ProgramDayPeriodEnum, ProgramDayPeriodTranslationsEnum, type ProgramEntity, type ProgramEpisodeBlockEntity, type ProgramEpisodeEntity, type ProgramScriptElement, type ProgramScriptElementOptionsAll, ProgramScriptElementTypesEnum, type ProgramScriptEntity, ProgramSegmentEnum, ProgramSegmentTranslationsEnum, RadioBandsEnum, type RadioContractEntity, type RadioEntity, type RadioExternalMediasEntity, type RadioLegalAgreementEntity, type RadioLogoEntity, type RadioSubscriptionEntity, RadioSubscriptionStatusEnum, RadioSubscriptionStatusTranslationsEnum, type RadioUserAvatarEntity, type RadioUserEntity, S3DirectoriesEnum, type S3FileEntity, type ScriptBlock, type SessionEntity, SessionTypesEnum, type SessionUser, type SoundtrackProgramScriptElementOptions, type SystemModuleEntity, type SystemUserEntity, TKPLAY_ERRORS_MAP, TKPLAY_ERRORS__PTBR, TKPLAY_ERROR_MESSAGE_SPLITTER, TkplayErrorCodesEnum, type TkplayErrorEntity, TkplayErrorNamesEnum, type TkplayMappedErrors, type TkplayMappedErrors__Ptbr, type UpdateCouponPayload, type UpdateCouponResponse, type UpdateLandingPageLeadPayload, type UpdateRadioPayload, type UpdateRadioUserPasswordPayload, type UpdateRadioUserProfilePayload, type UpdateRadioUserResponse, type UpdateRadioUserRolePayload, type UpdateSignupLeadPayload, type UpdateSystemUserPaswordPayload, type UpdateSystemUserPayload, type UpdateSystemUserResponse, type UpsertPlanPayload, type UpsertPlanResponse, type UpsertSystemModulePayload, type UpsertSystemModuleResponse, type UpsertSystemUserResponse, type UserLegalAgreementEntity, UserRolesEnum, UserRolesTranslationsEnum, type VerifyEmailAvailabilityResponse, type VignetteProgramScriptElement, VoiceEnergyEnum, VoiceEnergyTranslationsEnum };
|
|
1256
|
+
export { type AddressEntity, AudioBitratesEnum, AudioFormatsEnum, AudioFrequenciesEnum, type BaseEntity, BrStatesEnum, type CasterAvatarEntity, type CasterEntity, type ChargeEntity, ChargeItemTypesEnum, ChargeStatusEnum, ChargeTypesEnum, CommunicationToneEnum, CommunicationToneTranslationsEnum, type CouponActivationEntity, type CouponEntity, CouponTypesEnum, CouponTypesTranslationsEnum, type CreateCouponPayload, type CreateCouponResponse, type CreateLandingPageLeadPayload, type CreateLegalTermAgreementPayload, type CreateLegalTermPayload, type CreateLegalTermResponse, type CreateRadioPayload, type CreateRadioUserPayload, type CreateRadioUserResponse, type CreateSignupLeadPayload, type CreateSystemUserPayload, EmotionStyleEnum, EmotionStyleTranslationsEnum, type Enum, EpGenerationQualityEnum, EpGenerationTypesEnum, type EpisodeCreatedEvt, type EpisodeErrorEvt, type EpisodeProgressEvt, FFmpegAudioCurveEnum, FormalityLevelEnum, FormalityLevelTranslationsEnum, type GenerateEpJobPayload, type GenerateEpisodePayload, type GenerateEpisodeResponse, type GetCouponByIdResponse, type GetCouponValidationResponse, type GetPenaltyValueResponse, type GetRadioDetailsResponse, HumorStyleEnum, HumorStyleTranslationsEnum, JobsEnum, LanguageStyleEnum, LanguageStyleTranslationsEnum, type LeadEntity, LeadStatusEnum, LeadStatusTranslationsEnum, LeadTypesEnum, LeadTypesTranslationsEnum, type LegalTermEntity, LegalTermTypesEnum, LegalTermTypesTranslationsEnum, type ListChargesParams, type ListChargesResponse, type ListCouponsParams, type ListCouponsResponse, type ListLeadsParams, type ListLeadsResponse, type ListLegalTermsParams, type ListLegalTermsResponse, type ListRadioUsersParams, type ListRadioUsersResponse, type ListRadiosParams, type ListRadiosResponse, type ListSystemModulesResponse, type ListSystemUsersParams, type ListSystemUsersResponse, type LoginPayload, type LoginResponse, MusicCategoriesEnum, type MusicCategoriesTranslationEnum, MusicCategoriesTranslationsEnum, type MusicProgramScriptElement, MusicSubGenresEnum, type MusicSubGenresTranslationEnum, MusicSubGenresTranslationsEnum, NewsCategoriesEnum, type NewsProgramScriptElement, type NewsProgramScriptElementOptions, type OffProgramScriptElement, type PaginatedResponseDTO, type Pagination, type PaginationParams, type PlanEntity, type PopulatedProgramScriptBlock, type PopulatedProgramScriptElement, type PopulatedProgramScriptEntity, ProgramAudienceEnum, type ProgramAudienceTranslation, ProgramAudienceTranslationsEnum, ProgramDayPeriodEnum, ProgramDayPeriodTranslationsEnum, type ProgramEntity, type ProgramEpisodeBlockEntity, type ProgramEpisodeEntity, type ProgramLogoEntity, type ProgramScriptElement, type ProgramScriptElementOptionsAll, ProgramScriptElementTypesEnum, type ProgramScriptEntity, ProgramSegmentEnum, ProgramSegmentTranslationsEnum, RadioBandsEnum, type RadioContractEntity, type RadioEntity, type RadioExternalMediasEntity, type RadioLegalAgreementEntity, type RadioLogoEntity, type RadioSubscriptionEntity, RadioSubscriptionStatusEnum, RadioSubscriptionStatusTranslationsEnum, type RadioUserAvatarEntity, type RadioUserEntity, S3DirectoriesEnum, type S3FileEntity, type ScriptBlock, type SessionEntity, SessionTypesEnum, type SessionUser, type SoundtrackProgramScriptElementOptions, type SystemModuleEntity, type SystemUserEntity, TKPLAY_ERRORS_MAP, TKPLAY_ERRORS__PTBR, TKPLAY_ERROR_MESSAGE_SPLITTER, TkplayErrorCodesEnum, type TkplayErrorEntity, TkplayErrorNamesEnum, type TkplayMappedErrors, type TkplayMappedErrors__Ptbr, type UpdateCouponPayload, type UpdateCouponResponse, type UpdateLandingPageLeadPayload, type UpdateRadioPayload, type UpdateRadioUserPasswordPayload, type UpdateRadioUserProfilePayload, type UpdateRadioUserResponse, type UpdateRadioUserRolePayload, type UpdateSignupLeadPayload, type UpdateSystemUserPaswordPayload, type UpdateSystemUserPayload, type UpdateSystemUserResponse, type UpsertPlanPayload, type UpsertPlanResponse, type UpsertSystemModulePayload, type UpsertSystemModuleResponse, type UpsertSystemUserResponse, type UserLegalAgreementEntity, UserRolesEnum, UserRolesTranslationsEnum, type VerifyEmailAvailabilityResponse, type VignetteProgramScriptElement, VoiceEnergyEnum, VoiceEnergyTranslationsEnum };
|
package/dist/index.d.ts
CHANGED
|
@@ -657,26 +657,6 @@ type TkplayErrorEntity = {
|
|
|
657
657
|
data: any;
|
|
658
658
|
};
|
|
659
659
|
|
|
660
|
-
type RadioContractEntity = BaseEntity & {
|
|
661
|
-
validUntil: DateString;
|
|
662
|
-
isActive: boolean;
|
|
663
|
-
radioId: string;
|
|
664
|
-
radio?: RadioEntity;
|
|
665
|
-
};
|
|
666
|
-
|
|
667
|
-
type RadioExternalMediasEntity = {
|
|
668
|
-
id: string;
|
|
669
|
-
website?: string | null;
|
|
670
|
-
instagram?: string | null;
|
|
671
|
-
facebook?: string | null;
|
|
672
|
-
whatsapp?: string | null;
|
|
673
|
-
tiktok?: string | null;
|
|
674
|
-
createdAt: Date;
|
|
675
|
-
updatedAt: Date | null;
|
|
676
|
-
radioId: string;
|
|
677
|
-
radio?: RadioEntity;
|
|
678
|
-
};
|
|
679
|
-
|
|
680
660
|
type ProgramEpisodeBlockEntity = BaseEntity & {
|
|
681
661
|
index: number;
|
|
682
662
|
episode?: ProgramEpisodeEntity;
|
|
@@ -739,28 +719,24 @@ type ProgramScriptEntity = BaseEntity & {
|
|
|
739
719
|
program?: ProgramEntity;
|
|
740
720
|
};
|
|
741
721
|
|
|
742
|
-
type
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
blocksAmount: number;
|
|
747
|
-
duration: number;
|
|
748
|
-
dayPeriod: ProgramDayPeriodEnum;
|
|
749
|
-
allowAiGeneratedPersonNames: boolean;
|
|
750
|
-
allowCityMentions: boolean;
|
|
751
|
-
audiences: ProgramAudienceEnum[];
|
|
752
|
-
musicCategories: MusicCategoriesEnum[];
|
|
753
|
-
musicGenres: MusicSubGenresEnum[];
|
|
754
|
-
segments: ProgramSegmentEnum[];
|
|
755
|
-
communicationTone: CommunicationToneEnum;
|
|
756
|
-
emotionStyle: EmotionStyleEnum;
|
|
757
|
-
formalityLevel: FormalityLevelEnum;
|
|
758
|
-
humorStyle: HumorStyleEnum;
|
|
759
|
-
languageStyle: LanguageStyleEnum;
|
|
760
|
-
voiceEnergy: VoiceEnergyEnum;
|
|
722
|
+
type RadioContractEntity = BaseEntity & {
|
|
723
|
+
validUntil: DateString;
|
|
724
|
+
isActive: boolean;
|
|
725
|
+
radioId: string;
|
|
761
726
|
radio?: RadioEntity;
|
|
727
|
+
};
|
|
728
|
+
|
|
729
|
+
type RadioExternalMediasEntity = {
|
|
730
|
+
id: string;
|
|
731
|
+
website?: string | null;
|
|
732
|
+
instagram?: string | null;
|
|
733
|
+
facebook?: string | null;
|
|
734
|
+
whatsapp?: string | null;
|
|
735
|
+
tiktok?: string | null;
|
|
736
|
+
createdAt: Date;
|
|
737
|
+
updatedAt: Date | null;
|
|
762
738
|
radioId: string;
|
|
763
|
-
|
|
739
|
+
radio?: RadioEntity;
|
|
764
740
|
};
|
|
765
741
|
|
|
766
742
|
type CasterEntity = BaseEntity & {
|
|
@@ -794,6 +770,30 @@ type SystemUserEntity = BaseEntity & {
|
|
|
794
770
|
role: UserRolesEnum;
|
|
795
771
|
};
|
|
796
772
|
|
|
773
|
+
type ProgramEntity = BaseEntity & {
|
|
774
|
+
name: string;
|
|
775
|
+
description: string;
|
|
776
|
+
blockNamePrefix: string;
|
|
777
|
+
blocksAmount: number;
|
|
778
|
+
duration: number;
|
|
779
|
+
dayPeriod: ProgramDayPeriodEnum;
|
|
780
|
+
allowAiGeneratedPersonNames: boolean;
|
|
781
|
+
allowCityMentions: boolean;
|
|
782
|
+
audiences: ProgramAudienceEnum[];
|
|
783
|
+
musicCategories: MusicCategoriesEnum[];
|
|
784
|
+
musicGenres: MusicSubGenresEnum[];
|
|
785
|
+
segments: ProgramSegmentEnum[];
|
|
786
|
+
communicationTone: CommunicationToneEnum;
|
|
787
|
+
emotionStyle: EmotionStyleEnum;
|
|
788
|
+
formalityLevel: FormalityLevelEnum;
|
|
789
|
+
humorStyle: HumorStyleEnum;
|
|
790
|
+
languageStyle: LanguageStyleEnum;
|
|
791
|
+
voiceEnergy: VoiceEnergyEnum;
|
|
792
|
+
radio?: RadioEntity;
|
|
793
|
+
radioId: string;
|
|
794
|
+
casters?: CasterEntity[];
|
|
795
|
+
};
|
|
796
|
+
|
|
797
797
|
type S3FileEntity = BaseEntity & {
|
|
798
798
|
key: string;
|
|
799
799
|
mimeType: string;
|
|
@@ -805,30 +805,48 @@ type S3FileEntity = BaseEntity & {
|
|
|
805
805
|
radioUser: RadioUserEntity;
|
|
806
806
|
casterId: string | null;
|
|
807
807
|
caster?: CasterEntity;
|
|
808
|
+
programId: string | null;
|
|
809
|
+
program?: ProgramEntity;
|
|
808
810
|
};
|
|
809
|
-
type RadioUserAvatarEntity = Omit<S3FileEntity, "radioId" | "casterId"> & {
|
|
811
|
+
type RadioUserAvatarEntity = Omit<S3FileEntity, "radioId" | "casterId" | "programId"> & {
|
|
810
812
|
kind: "radioUser";
|
|
811
813
|
radioUserId: string;
|
|
812
814
|
radioId: null;
|
|
813
815
|
casterId: null;
|
|
816
|
+
programId: null;
|
|
814
817
|
radio: never;
|
|
815
818
|
caster: never;
|
|
819
|
+
program: never;
|
|
816
820
|
};
|
|
817
|
-
type CasterAvatarEntity = Omit<S3FileEntity, "radioId" | "radioUserId"> & {
|
|
821
|
+
type CasterAvatarEntity = Omit<S3FileEntity, "radioId" | "radioUserId" | "programId"> & {
|
|
818
822
|
kind: "caster";
|
|
819
823
|
casterId: string;
|
|
820
824
|
radioId: null;
|
|
821
825
|
radioUserId: null;
|
|
826
|
+
programId: null;
|
|
822
827
|
user: never;
|
|
823
828
|
radio: never;
|
|
829
|
+
program: never;
|
|
824
830
|
};
|
|
825
|
-
type RadioLogoEntity = Omit<S3FileEntity, "casterId" | "radioUserId"> & {
|
|
831
|
+
type RadioLogoEntity = Omit<S3FileEntity, "casterId" | "radioUserId" | "programId"> & {
|
|
826
832
|
kind: "radioLogo";
|
|
827
833
|
radioId: string;
|
|
828
834
|
radioUserId: null;
|
|
829
835
|
casterId: null;
|
|
836
|
+
programId: null;
|
|
830
837
|
radioUser: never;
|
|
831
838
|
caster: never;
|
|
839
|
+
program: never;
|
|
840
|
+
};
|
|
841
|
+
type ProgramLogoEntity = Omit<S3FileEntity, "casterId" | "radioUserId" | "radioId"> & {
|
|
842
|
+
kind: "programLogo";
|
|
843
|
+
programId: string;
|
|
844
|
+
radioId: null;
|
|
845
|
+
radioUserId: null;
|
|
846
|
+
casterId: null;
|
|
847
|
+
radioUser: never;
|
|
848
|
+
radio: never;
|
|
849
|
+
caster: never;
|
|
832
850
|
};
|
|
833
851
|
|
|
834
852
|
type RadioEntity = BaseEntity & {
|
|
@@ -1235,4 +1253,4 @@ declare const TKPLAY_ERRORS__PTBR: TkplayMappedErrors__Ptbr;
|
|
|
1235
1253
|
|
|
1236
1254
|
declare const TKPLAY_ERROR_MESSAGE_SPLITTER = "::";
|
|
1237
1255
|
|
|
1238
|
-
export { type AddressEntity, AudioBitratesEnum, AudioFormatsEnum, AudioFrequenciesEnum, type BaseEntity, BrStatesEnum, type CasterAvatarEntity, type CasterEntity, type ChargeEntity, ChargeItemTypesEnum, ChargeStatusEnum, ChargeTypesEnum, CommunicationToneEnum, CommunicationToneTranslationsEnum, type CouponActivationEntity, type CouponEntity, CouponTypesEnum, CouponTypesTranslationsEnum, type CreateCouponPayload, type CreateCouponResponse, type CreateLandingPageLeadPayload, type CreateLegalTermAgreementPayload, type CreateLegalTermPayload, type CreateLegalTermResponse, type CreateRadioPayload, type CreateRadioUserPayload, type CreateRadioUserResponse, type CreateSignupLeadPayload, type CreateSystemUserPayload, EmotionStyleEnum, EmotionStyleTranslationsEnum, type Enum, EpGenerationQualityEnum, EpGenerationTypesEnum, type EpisodeCreatedEvt, type EpisodeErrorEvt, type EpisodeProgressEvt, FFmpegAudioCurveEnum, FormalityLevelEnum, FormalityLevelTranslationsEnum, type GenerateEpJobPayload, type GenerateEpisodePayload, type GenerateEpisodeResponse, type GetCouponByIdResponse, type GetCouponValidationResponse, type GetPenaltyValueResponse, type GetRadioDetailsResponse, HumorStyleEnum, HumorStyleTranslationsEnum, JobsEnum, LanguageStyleEnum, LanguageStyleTranslationsEnum, type LeadEntity, LeadStatusEnum, LeadStatusTranslationsEnum, LeadTypesEnum, LeadTypesTranslationsEnum, type LegalTermEntity, LegalTermTypesEnum, LegalTermTypesTranslationsEnum, type ListChargesParams, type ListChargesResponse, type ListCouponsParams, type ListCouponsResponse, type ListLeadsParams, type ListLeadsResponse, type ListLegalTermsParams, type ListLegalTermsResponse, type ListRadioUsersParams, type ListRadioUsersResponse, type ListRadiosParams, type ListRadiosResponse, type ListSystemModulesResponse, type ListSystemUsersParams, type ListSystemUsersResponse, type LoginPayload, type LoginResponse, MusicCategoriesEnum, type MusicCategoriesTranslationEnum, MusicCategoriesTranslationsEnum, type MusicProgramScriptElement, MusicSubGenresEnum, type MusicSubGenresTranslationEnum, MusicSubGenresTranslationsEnum, NewsCategoriesEnum, type NewsProgramScriptElement, type NewsProgramScriptElementOptions, type OffProgramScriptElement, type PaginatedResponseDTO, type Pagination, type PaginationParams, type PlanEntity, type PopulatedProgramScriptBlock, type PopulatedProgramScriptElement, type PopulatedProgramScriptEntity, ProgramAudienceEnum, type ProgramAudienceTranslation, ProgramAudienceTranslationsEnum, ProgramDayPeriodEnum, ProgramDayPeriodTranslationsEnum, type ProgramEntity, type ProgramEpisodeBlockEntity, type ProgramEpisodeEntity, type ProgramScriptElement, type ProgramScriptElementOptionsAll, ProgramScriptElementTypesEnum, type ProgramScriptEntity, ProgramSegmentEnum, ProgramSegmentTranslationsEnum, RadioBandsEnum, type RadioContractEntity, type RadioEntity, type RadioExternalMediasEntity, type RadioLegalAgreementEntity, type RadioLogoEntity, type RadioSubscriptionEntity, RadioSubscriptionStatusEnum, RadioSubscriptionStatusTranslationsEnum, type RadioUserAvatarEntity, type RadioUserEntity, S3DirectoriesEnum, type S3FileEntity, type ScriptBlock, type SessionEntity, SessionTypesEnum, type SessionUser, type SoundtrackProgramScriptElementOptions, type SystemModuleEntity, type SystemUserEntity, TKPLAY_ERRORS_MAP, TKPLAY_ERRORS__PTBR, TKPLAY_ERROR_MESSAGE_SPLITTER, TkplayErrorCodesEnum, type TkplayErrorEntity, TkplayErrorNamesEnum, type TkplayMappedErrors, type TkplayMappedErrors__Ptbr, type UpdateCouponPayload, type UpdateCouponResponse, type UpdateLandingPageLeadPayload, type UpdateRadioPayload, type UpdateRadioUserPasswordPayload, type UpdateRadioUserProfilePayload, type UpdateRadioUserResponse, type UpdateRadioUserRolePayload, type UpdateSignupLeadPayload, type UpdateSystemUserPaswordPayload, type UpdateSystemUserPayload, type UpdateSystemUserResponse, type UpsertPlanPayload, type UpsertPlanResponse, type UpsertSystemModulePayload, type UpsertSystemModuleResponse, type UpsertSystemUserResponse, type UserLegalAgreementEntity, UserRolesEnum, UserRolesTranslationsEnum, type VerifyEmailAvailabilityResponse, type VignetteProgramScriptElement, VoiceEnergyEnum, VoiceEnergyTranslationsEnum };
|
|
1256
|
+
export { type AddressEntity, AudioBitratesEnum, AudioFormatsEnum, AudioFrequenciesEnum, type BaseEntity, BrStatesEnum, type CasterAvatarEntity, type CasterEntity, type ChargeEntity, ChargeItemTypesEnum, ChargeStatusEnum, ChargeTypesEnum, CommunicationToneEnum, CommunicationToneTranslationsEnum, type CouponActivationEntity, type CouponEntity, CouponTypesEnum, CouponTypesTranslationsEnum, type CreateCouponPayload, type CreateCouponResponse, type CreateLandingPageLeadPayload, type CreateLegalTermAgreementPayload, type CreateLegalTermPayload, type CreateLegalTermResponse, type CreateRadioPayload, type CreateRadioUserPayload, type CreateRadioUserResponse, type CreateSignupLeadPayload, type CreateSystemUserPayload, EmotionStyleEnum, EmotionStyleTranslationsEnum, type Enum, EpGenerationQualityEnum, EpGenerationTypesEnum, type EpisodeCreatedEvt, type EpisodeErrorEvt, type EpisodeProgressEvt, FFmpegAudioCurveEnum, FormalityLevelEnum, FormalityLevelTranslationsEnum, type GenerateEpJobPayload, type GenerateEpisodePayload, type GenerateEpisodeResponse, type GetCouponByIdResponse, type GetCouponValidationResponse, type GetPenaltyValueResponse, type GetRadioDetailsResponse, HumorStyleEnum, HumorStyleTranslationsEnum, JobsEnum, LanguageStyleEnum, LanguageStyleTranslationsEnum, type LeadEntity, LeadStatusEnum, LeadStatusTranslationsEnum, LeadTypesEnum, LeadTypesTranslationsEnum, type LegalTermEntity, LegalTermTypesEnum, LegalTermTypesTranslationsEnum, type ListChargesParams, type ListChargesResponse, type ListCouponsParams, type ListCouponsResponse, type ListLeadsParams, type ListLeadsResponse, type ListLegalTermsParams, type ListLegalTermsResponse, type ListRadioUsersParams, type ListRadioUsersResponse, type ListRadiosParams, type ListRadiosResponse, type ListSystemModulesResponse, type ListSystemUsersParams, type ListSystemUsersResponse, type LoginPayload, type LoginResponse, MusicCategoriesEnum, type MusicCategoriesTranslationEnum, MusicCategoriesTranslationsEnum, type MusicProgramScriptElement, MusicSubGenresEnum, type MusicSubGenresTranslationEnum, MusicSubGenresTranslationsEnum, NewsCategoriesEnum, type NewsProgramScriptElement, type NewsProgramScriptElementOptions, type OffProgramScriptElement, type PaginatedResponseDTO, type Pagination, type PaginationParams, type PlanEntity, type PopulatedProgramScriptBlock, type PopulatedProgramScriptElement, type PopulatedProgramScriptEntity, ProgramAudienceEnum, type ProgramAudienceTranslation, ProgramAudienceTranslationsEnum, ProgramDayPeriodEnum, ProgramDayPeriodTranslationsEnum, type ProgramEntity, type ProgramEpisodeBlockEntity, type ProgramEpisodeEntity, type ProgramLogoEntity, type ProgramScriptElement, type ProgramScriptElementOptionsAll, ProgramScriptElementTypesEnum, type ProgramScriptEntity, ProgramSegmentEnum, ProgramSegmentTranslationsEnum, RadioBandsEnum, type RadioContractEntity, type RadioEntity, type RadioExternalMediasEntity, type RadioLegalAgreementEntity, type RadioLogoEntity, type RadioSubscriptionEntity, RadioSubscriptionStatusEnum, RadioSubscriptionStatusTranslationsEnum, type RadioUserAvatarEntity, type RadioUserEntity, S3DirectoriesEnum, type S3FileEntity, type ScriptBlock, type SessionEntity, SessionTypesEnum, type SessionUser, type SoundtrackProgramScriptElementOptions, type SystemModuleEntity, type SystemUserEntity, TKPLAY_ERRORS_MAP, TKPLAY_ERRORS__PTBR, TKPLAY_ERROR_MESSAGE_SPLITTER, TkplayErrorCodesEnum, type TkplayErrorEntity, TkplayErrorNamesEnum, type TkplayMappedErrors, type TkplayMappedErrors__Ptbr, type UpdateCouponPayload, type UpdateCouponResponse, type UpdateLandingPageLeadPayload, type UpdateRadioPayload, type UpdateRadioUserPasswordPayload, type UpdateRadioUserProfilePayload, type UpdateRadioUserResponse, type UpdateRadioUserRolePayload, type UpdateSignupLeadPayload, type UpdateSystemUserPaswordPayload, type UpdateSystemUserPayload, type UpdateSystemUserResponse, type UpsertPlanPayload, type UpsertPlanResponse, type UpsertSystemModulePayload, type UpsertSystemModuleResponse, type UpsertSystemUserResponse, type UserLegalAgreementEntity, UserRolesEnum, UserRolesTranslationsEnum, type VerifyEmailAvailabilityResponse, type VignetteProgramScriptElement, VoiceEnergyEnum, VoiceEnergyTranslationsEnum };
|