@talkplay/shared-types 1.0.97 → 1.0.99
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 +105 -1
- package/dist/index.d.ts +105 -1
- package/dist/index.js +106 -0
- package/dist/index.mjs +96 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
type ImproveTextPayload = {
|
|
2
|
+
text: string;
|
|
3
|
+
textContext: string;
|
|
4
|
+
};
|
|
5
|
+
type ImproveTextResponse = {
|
|
6
|
+
improvedText: string;
|
|
7
|
+
};
|
|
8
|
+
|
|
1
9
|
type Enum<T extends Record<PropertyKey, string | number>> = T[keyof T];
|
|
2
10
|
|
|
3
11
|
declare const BrStatesEnum: {
|
|
@@ -225,6 +233,17 @@ declare const CommunicationToneTranslationsEnum: {
|
|
|
225
233
|
readonly LIGHT: "Leve";
|
|
226
234
|
};
|
|
227
235
|
type CommunicationToneTranslationsEnum = Enum<typeof CommunicationToneTranslationsEnum>;
|
|
236
|
+
declare const CommunicationToneColorsEnum: {
|
|
237
|
+
readonly FORMAL: "#1E3A8A";
|
|
238
|
+
readonly COLLOQUIAL: "#F97316";
|
|
239
|
+
readonly FRIENDLY: "#22C55E";
|
|
240
|
+
readonly INSPIRING: "#A855F7";
|
|
241
|
+
readonly INSTITUTIONAL: "#374151";
|
|
242
|
+
readonly WARM: "#FB7185";
|
|
243
|
+
readonly ENERGETIC: "#DC2626";
|
|
244
|
+
readonly LIGHT: "#38BDF8";
|
|
245
|
+
};
|
|
246
|
+
type CommunicationToneColorsEnum = Enum<typeof CommunicationToneColorsEnum>;
|
|
228
247
|
|
|
229
248
|
declare const EmotionStyleEnum: {
|
|
230
249
|
readonly NEUTRAL: "NEUTRAL";
|
|
@@ -244,6 +263,15 @@ declare const EmotionStyleTranslationsEnum: {
|
|
|
244
263
|
readonly EMPATHETIC: "Empático";
|
|
245
264
|
};
|
|
246
265
|
type EmotionStyleTranslationsEnum = Enum<typeof EmotionStyleTranslationsEnum>;
|
|
266
|
+
declare const EmotionStyleColorsEnum: {
|
|
267
|
+
readonly NEUTRAL: "#6B7280";
|
|
268
|
+
readonly HAPPY: "#FACC15";
|
|
269
|
+
readonly MOTIVATIONAL: "#22C55E";
|
|
270
|
+
readonly HOPEFUL: "#38BDF8";
|
|
271
|
+
readonly URGENT: "#DC2626";
|
|
272
|
+
readonly EMPATHETIC: "#A855F7";
|
|
273
|
+
};
|
|
274
|
+
type EmotionStyleColorsEnum = Enum<typeof EmotionStyleColorsEnum>;
|
|
247
275
|
|
|
248
276
|
declare const FormalityLevelEnum: {
|
|
249
277
|
readonly VERY_FORMAL: "VERY_FORMAL";
|
|
@@ -259,6 +287,13 @@ declare const FormalityLevelTranslationsEnum: {
|
|
|
259
287
|
readonly CASUAL: "Casual";
|
|
260
288
|
};
|
|
261
289
|
type FormalityLevelTranslationsEnum = Enum<typeof FormalityLevelTranslationsEnum>;
|
|
290
|
+
declare const FormalityLevelColorsEnum: {
|
|
291
|
+
readonly VERY_FORMAL: "#1E3A8A";
|
|
292
|
+
readonly FORMAL: "#2563EB";
|
|
293
|
+
readonly NEUTRAL: "#6B7280";
|
|
294
|
+
readonly CASUAL: "#F97316";
|
|
295
|
+
};
|
|
296
|
+
type FormalityLevelColorsEnum = Enum<typeof FormalityLevelColorsEnum>;
|
|
262
297
|
|
|
263
298
|
declare const HumorStyleEnum: {
|
|
264
299
|
readonly NONE: "NONE";
|
|
@@ -274,6 +309,13 @@ declare const HumorStyleTranslationsEnum: {
|
|
|
274
309
|
readonly FUNNY: "Engraçado";
|
|
275
310
|
};
|
|
276
311
|
type HumorStyleTranslationsEnum = Enum<typeof HumorStyleTranslationsEnum>;
|
|
312
|
+
declare const HumorStyleColorsEnum: {
|
|
313
|
+
readonly NONE: "#6B7280";
|
|
314
|
+
readonly SUBTLE: "#38BDF8";
|
|
315
|
+
readonly LIGHT: "#FACC15";
|
|
316
|
+
readonly FUNNY: "#F97316";
|
|
317
|
+
};
|
|
318
|
+
type HumorStyleColorsEnum = Enum<typeof HumorStyleColorsEnum>;
|
|
277
319
|
|
|
278
320
|
declare const LanguageStyleEnum: {
|
|
279
321
|
readonly STANDARD: "STANDARD";
|
|
@@ -293,6 +335,15 @@ declare const LanguageStyleTranslationsEnum: {
|
|
|
293
335
|
readonly POPULAR: "Popular";
|
|
294
336
|
};
|
|
295
337
|
type LanguageStyleTranslationsEnum = Enum<typeof LanguageStyleTranslationsEnum>;
|
|
338
|
+
declare const LanguageStyleColorsEnum: {
|
|
339
|
+
readonly STANDARD: "#6B7280";
|
|
340
|
+
readonly REGIONAL: "#65A30D";
|
|
341
|
+
readonly URBAN: "#1F2937";
|
|
342
|
+
readonly SIMPLE: "#38BDF8";
|
|
343
|
+
readonly TECHNICAL: "#1E3A8A";
|
|
344
|
+
readonly POPULAR: "#EC4899";
|
|
345
|
+
};
|
|
346
|
+
type LanguageStyleColorsEnum = Enum<typeof LanguageStyleColorsEnum>;
|
|
296
347
|
|
|
297
348
|
declare const VoiceEnergyEnum: {
|
|
298
349
|
readonly CALM: "CALM";
|
|
@@ -308,6 +359,13 @@ declare const VoiceEnergyTranslationsEnum: {
|
|
|
308
359
|
readonly HIGH: "Alta";
|
|
309
360
|
};
|
|
310
361
|
type VoiceEnergyTranslationsEnum = Enum<typeof VoiceEnergyTranslationsEnum>;
|
|
362
|
+
declare const VoiceEnergyColorsEnum: {
|
|
363
|
+
readonly CALM: "#38BDF8";
|
|
364
|
+
readonly BALANCED: "#22C55E";
|
|
365
|
+
readonly ACTIVE: "#F97316";
|
|
366
|
+
readonly HIGH: "#DC2626";
|
|
367
|
+
};
|
|
368
|
+
type VoiceEnergyColorsEnum = Enum<typeof VoiceEnergyColorsEnum>;
|
|
311
369
|
|
|
312
370
|
declare const VoiceGenderEnum: {
|
|
313
371
|
readonly MALE: "MALE";
|
|
@@ -319,6 +377,11 @@ declare const VoiceGenderTranslationsEnum: {
|
|
|
319
377
|
readonly FEMALE: "Voz Feminina";
|
|
320
378
|
};
|
|
321
379
|
type VoiceGenderTranslationsEnum = Enum<typeof VoiceGenderTranslationsEnum>;
|
|
380
|
+
declare const VoiceGenderColorsEnum: {
|
|
381
|
+
readonly MALE: "#2563EB";
|
|
382
|
+
readonly FEMALE: "#EC4899";
|
|
383
|
+
};
|
|
384
|
+
type VoiceGenderColorsEnum = Enum<typeof VoiceGenderColorsEnum>;
|
|
322
385
|
|
|
323
386
|
declare const EpGenerationQualityEnum: {
|
|
324
387
|
readonly DEFAULT: "DEFAULT";
|
|
@@ -556,6 +619,14 @@ declare const ProgramDayPeriodTranslationsEnum: {
|
|
|
556
619
|
readonly NIGHT: "Noite";
|
|
557
620
|
};
|
|
558
621
|
type ProgramDayPeriodTranslationsEnum = Enum<typeof ProgramDayPeriodTranslationsEnum>;
|
|
622
|
+
declare const ProgramDayPeriodColorsEnum: {
|
|
623
|
+
readonly DAWN: "#1E293B";
|
|
624
|
+
readonly MORNING: "#F59E0B";
|
|
625
|
+
readonly AFTERNOON: "#F97316";
|
|
626
|
+
readonly EVENING: "#6366F1";
|
|
627
|
+
readonly NIGHT: "#0F172A";
|
|
628
|
+
};
|
|
629
|
+
type ProgramDayPeriodColorsEnum = Enum<typeof ProgramDayPeriodColorsEnum>;
|
|
559
630
|
|
|
560
631
|
declare const ProgramSegmentEnum: {
|
|
561
632
|
readonly MUSIC: "MUSIC";
|
|
@@ -598,6 +669,26 @@ declare const ProgramSegmentTranslationsEnum: {
|
|
|
598
669
|
readonly TALK: "Talk / Debate";
|
|
599
670
|
};
|
|
600
671
|
type ProgramSegmentTranslationsEnum = Enum<typeof ProgramSegmentTranslationsEnum>;
|
|
672
|
+
declare const ProgramSegmentColorsEnum: {
|
|
673
|
+
readonly MUSIC: "#7C3AED";
|
|
674
|
+
readonly NEWS: "#2563EB";
|
|
675
|
+
readonly HOROSCOPE: "#A855F7";
|
|
676
|
+
readonly RELIGIOUS: "#F59E0B";
|
|
677
|
+
readonly GOSPEL: "#D97706";
|
|
678
|
+
readonly SPORTS: "#DC2626";
|
|
679
|
+
readonly FLASHBACK: "#F97316";
|
|
680
|
+
readonly POPULAR: "#EC4899";
|
|
681
|
+
readonly VARIETY: "#14B8A6";
|
|
682
|
+
readonly REGIONAL: "#65A30D";
|
|
683
|
+
readonly CORPORATE: "#374151";
|
|
684
|
+
readonly GOVERNMENT: "#1E3A8A";
|
|
685
|
+
readonly CHILDREN: "#FACC15";
|
|
686
|
+
readonly HUMOR: "#FB7185";
|
|
687
|
+
readonly ENTERTAINMENT: "#EF4444";
|
|
688
|
+
readonly CULTURAL: "#0F766E";
|
|
689
|
+
readonly TALK: "#6366F1";
|
|
690
|
+
};
|
|
691
|
+
type ProgramSegmentColorsEnum = Enum<typeof ProgramSegmentColorsEnum>;
|
|
601
692
|
|
|
602
693
|
declare const ProgramAudienceEnum: {
|
|
603
694
|
readonly CHILDREN: "CHILDREN";
|
|
@@ -625,6 +716,19 @@ declare const ProgramAudienceTranslationsEnum: {
|
|
|
625
716
|
readonly GENERAL: "Geral";
|
|
626
717
|
};
|
|
627
718
|
type ProgramAudienceTranslation = Enum<typeof ProgramAudienceTranslationsEnum>;
|
|
719
|
+
declare const ProgramAudienceColorsEnum: {
|
|
720
|
+
readonly CHILDREN: "#FACC15";
|
|
721
|
+
readonly TEENS: "#EC4899";
|
|
722
|
+
readonly YOUNG_ADULTS: "#7C3AED";
|
|
723
|
+
readonly ADULTS: "#2563EB";
|
|
724
|
+
readonly SENIORS: "#6B7280";
|
|
725
|
+
readonly FAMILY: "#22C55E";
|
|
726
|
+
readonly RURAL: "#65A30D";
|
|
727
|
+
readonly URBAN: "#1F2937";
|
|
728
|
+
readonly RELIGIOUS: "#F59E0B";
|
|
729
|
+
readonly GENERAL: "#64748B";
|
|
730
|
+
};
|
|
731
|
+
type ProgramAudienceColorsEnum = Enum<typeof ProgramAudienceColorsEnum>;
|
|
628
732
|
|
|
629
733
|
declare const ProgramScriptElementCategoriesEnum: {
|
|
630
734
|
readonly VOICE_TRACK: "VOICE_TRACK";
|
|
@@ -1591,4 +1695,4 @@ declare const TKPLAY_ERRORS__PTBR: TkplayMappedErrors__Ptbr;
|
|
|
1591
1695
|
|
|
1592
1696
|
declare const TKPLAY_ERROR_MESSAGE_SPLITTER = "::";
|
|
1593
1697
|
|
|
1594
|
-
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 CreateCasterPayload, type CreateCasterResponse, type CreateCouponPayload, type CreateCouponResponse, type CreateLandingPageLeadPayload, type CreateLegalTermAgreementPayload, type CreateLegalTermPayload, type CreateLegalTermResponse, type CreateProgramPayload, type CreateProgramSchedulePayload, type CreateProgramScriptPayload, 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 ListCastersParams, type ListCastersResponse, type ListChargesParams, type ListChargesResponse, type ListCouponsParams, type ListCouponsResponse, type ListLeadsParams, type ListLeadsResponse, type ListLegalTermsParams, type ListLegalTermsResponse, type ListProgramScriptsParams, type ListProgramScriptsResponse, type ListProgramsParams, type ListRadioUsersParams, type ListRadioUsersResponse, type ListRadiosParams, type ListRadiosResponse, type ListSystemModulesResponse, type ListSystemUsersParams, type ListSystemUsersResponse, type ListVoiceProfilesParams, type ListVoiceProfilesResponse, type ListVoiceTracksParams, type ListVoiceTracksResponse, type LoginPayload, type LoginResponse, MAX_CASTER_SAMPLES_DURATION_IN_SECONDS, MAX_SCRIPT_BLOCKS, MIN_CASTER_SAMPLES_DURATION_IN_SECONDS, MusicCategoriesEnum, type MusicCategoriesTranslationEnum, MusicCategoriesTranslationsEnum, MusicSubGenresEnum, type MusicSubGenresTranslationEnum, MusicSubGenresTranslationsEnum, NewsCategoriesEnum, PRICE_PER_PROGRAM_HOUR, type PaginatedResponseDTO, type Pagination, type PaginationParams, type PlanEntity, type PopulatedProgramScriptBlock, type PopulatedProgramScriptElement, type PopulatedProgramScriptEntity, type PopulatedScriptOptions, ProgramAudienceEnum, type ProgramAudienceTranslation, ProgramAudienceTranslationsEnum, ProgramDayPeriodEnum, ProgramDayPeriodTranslationsEnum, type ProgramDayScheduleEntity, type ProgramDraftEntity, type ProgramEntity, type ProgramEpisodeBlockEntity, type ProgramEpisodeEntity, type ProgramLogoEntity, type ProgramScriptBlockElementEntity, type ProgramScriptBlockEntity, type ProgramScriptBlockTagEntity, ProgramScriptElementCategoriesEnum, type ProgramScriptElementCategoriesTranslationEnum, ProgramScriptElementCategoriesTranslationsEnum, 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 SessionEntity, SessionTypesEnum, type SessionUser, SoundtrackStateEnum, type SoundtrackStateTranslationEnum, SoundtrackStateTranslationsEnum, type SystemModuleEntity, type SystemUserEntity, TKPLAY_ERRORS_MAP, TKPLAY_ERRORS__PTBR, TKPLAY_ERROR_MESSAGE_SPLITTER, TkplayErrorCodesEnum, type TkplayErrorEntity, TkplayErrorNamesEnum, type TkplayMappedErrors, type TkplayMappedErrors__Ptbr, TtsProvidersEnum, TtsProvidersTranslationsEnum, type UpdateCasterPaswordPayload, type UpdateCasterPayload, type UpdateCasterResponse, type UpdateCouponPayload, type UpdateCouponResponse, type UpdateLandingPageLeadPayload, type UpdateProgramProfilePayload, type UpdateProgramScriptPayload, type UpdateProgramVoicesPayload, type UpdateRadioPayload, type UpdateRadioUserPasswordPayload, type UpdateRadioUserProfilePayload, type UpdateRadioUserResponse, type UpdateRadioUserRolePayload, type UpdateSignupLeadPayload, type UpdateSystemUserPaswordPayload, type UpdateSystemUserPayload, type UpdateSystemUserResponse, type UpsertPlanPayload, type UpsertPlanResponse, type UpsertProgramScriptBlockElementPayload, type UpsertProgramScriptBlockPayload, type UpsertProgramScriptBlockTagsPayload, type UpsertSystemModulePayload, type UpsertSystemModuleResponse, type UpsertSystemUserResponse, type UserLegalAgreementEntity, UserRolesEnum, UserRolesTranslationsEnum, type VerifyEmailAvailabilityResponse, VignetteTypesEnum, type VignetteTypesTranslationEnum, VignetteTypesTranslationsEnum, VoiceEnergyEnum, VoiceEnergyTranslationsEnum, VoiceGenderEnum, VoiceGenderTranslationsEnum, type VoiceProfileEntity, VoiceProfileSourcesEnum, VoiceProfileSourcesTranslationsEnum, type VoiceTrackEntity, VoiceTrackSourcesEnum, VoiceTrackSourcesTranslationsEnum, VoiceTrackStatusEnum, VoiceTrackStatusTranslationsEnum, VoiceTrackTypesEnum, VoiceTrackTypesTranslationsEnum, WeekDayEnum, WeekDayTranslationsEnum };
|
|
1698
|
+
export { type AddressEntity, AudioBitratesEnum, AudioFormatsEnum, AudioFrequenciesEnum, type BaseEntity, BrStatesEnum, type CasterAvatarEntity, type CasterEntity, type ChargeEntity, ChargeItemTypesEnum, ChargeStatusEnum, ChargeTypesEnum, CommunicationToneColorsEnum, CommunicationToneEnum, CommunicationToneTranslationsEnum, type CouponActivationEntity, type CouponEntity, CouponTypesEnum, CouponTypesTranslationsEnum, type CreateCasterPayload, type CreateCasterResponse, type CreateCouponPayload, type CreateCouponResponse, type CreateLandingPageLeadPayload, type CreateLegalTermAgreementPayload, type CreateLegalTermPayload, type CreateLegalTermResponse, type CreateProgramPayload, type CreateProgramSchedulePayload, type CreateProgramScriptPayload, type CreateRadioPayload, type CreateRadioUserPayload, type CreateRadioUserResponse, type CreateSignupLeadPayload, type CreateSystemUserPayload, EmotionStyleColorsEnum, EmotionStyleEnum, EmotionStyleTranslationsEnum, type Enum, EpGenerationQualityEnum, EpGenerationTypesEnum, type EpisodeCreatedEvt, type EpisodeErrorEvt, type EpisodeProgressEvt, FFmpegAudioCurveEnum, FormalityLevelColorsEnum, FormalityLevelEnum, FormalityLevelTranslationsEnum, type GenerateEpJobPayload, type GenerateEpisodePayload, type GenerateEpisodeResponse, type GetCouponByIdResponse, type GetCouponValidationResponse, type GetPenaltyValueResponse, type GetRadioDetailsResponse, HumorStyleColorsEnum, HumorStyleEnum, HumorStyleTranslationsEnum, type ImproveTextPayload, type ImproveTextResponse, JobsEnum, LanguageStyleColorsEnum, LanguageStyleEnum, LanguageStyleTranslationsEnum, type LeadEntity, LeadStatusEnum, LeadStatusTranslationsEnum, LeadTypesEnum, LeadTypesTranslationsEnum, type LegalTermEntity, LegalTermTypesEnum, LegalTermTypesTranslationsEnum, type ListCastersParams, type ListCastersResponse, type ListChargesParams, type ListChargesResponse, type ListCouponsParams, type ListCouponsResponse, type ListLeadsParams, type ListLeadsResponse, type ListLegalTermsParams, type ListLegalTermsResponse, type ListProgramScriptsParams, type ListProgramScriptsResponse, type ListProgramsParams, type ListRadioUsersParams, type ListRadioUsersResponse, type ListRadiosParams, type ListRadiosResponse, type ListSystemModulesResponse, type ListSystemUsersParams, type ListSystemUsersResponse, type ListVoiceProfilesParams, type ListVoiceProfilesResponse, type ListVoiceTracksParams, type ListVoiceTracksResponse, type LoginPayload, type LoginResponse, MAX_CASTER_SAMPLES_DURATION_IN_SECONDS, MAX_SCRIPT_BLOCKS, MIN_CASTER_SAMPLES_DURATION_IN_SECONDS, MusicCategoriesEnum, type MusicCategoriesTranslationEnum, MusicCategoriesTranslationsEnum, MusicSubGenresEnum, type MusicSubGenresTranslationEnum, MusicSubGenresTranslationsEnum, NewsCategoriesEnum, PRICE_PER_PROGRAM_HOUR, type PaginatedResponseDTO, type Pagination, type PaginationParams, type PlanEntity, type PopulatedProgramScriptBlock, type PopulatedProgramScriptElement, type PopulatedProgramScriptEntity, type PopulatedScriptOptions, ProgramAudienceColorsEnum, ProgramAudienceEnum, type ProgramAudienceTranslation, ProgramAudienceTranslationsEnum, ProgramDayPeriodColorsEnum, ProgramDayPeriodEnum, ProgramDayPeriodTranslationsEnum, type ProgramDayScheduleEntity, type ProgramDraftEntity, type ProgramEntity, type ProgramEpisodeBlockEntity, type ProgramEpisodeEntity, type ProgramLogoEntity, type ProgramScriptBlockElementEntity, type ProgramScriptBlockEntity, type ProgramScriptBlockTagEntity, ProgramScriptElementCategoriesEnum, type ProgramScriptElementCategoriesTranslationEnum, ProgramScriptElementCategoriesTranslationsEnum, ProgramScriptElementTypesEnum, type ProgramScriptEntity, ProgramSegmentColorsEnum, 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 SessionEntity, SessionTypesEnum, type SessionUser, SoundtrackStateEnum, type SoundtrackStateTranslationEnum, SoundtrackStateTranslationsEnum, type SystemModuleEntity, type SystemUserEntity, TKPLAY_ERRORS_MAP, TKPLAY_ERRORS__PTBR, TKPLAY_ERROR_MESSAGE_SPLITTER, TkplayErrorCodesEnum, type TkplayErrorEntity, TkplayErrorNamesEnum, type TkplayMappedErrors, type TkplayMappedErrors__Ptbr, TtsProvidersEnum, TtsProvidersTranslationsEnum, type UpdateCasterPaswordPayload, type UpdateCasterPayload, type UpdateCasterResponse, type UpdateCouponPayload, type UpdateCouponResponse, type UpdateLandingPageLeadPayload, type UpdateProgramProfilePayload, type UpdateProgramScriptPayload, type UpdateProgramVoicesPayload, type UpdateRadioPayload, type UpdateRadioUserPasswordPayload, type UpdateRadioUserProfilePayload, type UpdateRadioUserResponse, type UpdateRadioUserRolePayload, type UpdateSignupLeadPayload, type UpdateSystemUserPaswordPayload, type UpdateSystemUserPayload, type UpdateSystemUserResponse, type UpsertPlanPayload, type UpsertPlanResponse, type UpsertProgramScriptBlockElementPayload, type UpsertProgramScriptBlockPayload, type UpsertProgramScriptBlockTagsPayload, type UpsertSystemModulePayload, type UpsertSystemModuleResponse, type UpsertSystemUserResponse, type UserLegalAgreementEntity, UserRolesEnum, UserRolesTranslationsEnum, type VerifyEmailAvailabilityResponse, VignetteTypesEnum, type VignetteTypesTranslationEnum, VignetteTypesTranslationsEnum, VoiceEnergyColorsEnum, VoiceEnergyEnum, VoiceEnergyTranslationsEnum, VoiceGenderColorsEnum, VoiceGenderEnum, VoiceGenderTranslationsEnum, type VoiceProfileEntity, VoiceProfileSourcesEnum, VoiceProfileSourcesTranslationsEnum, type VoiceTrackEntity, VoiceTrackSourcesEnum, VoiceTrackSourcesTranslationsEnum, VoiceTrackStatusEnum, VoiceTrackStatusTranslationsEnum, VoiceTrackTypesEnum, VoiceTrackTypesTranslationsEnum, WeekDayEnum, WeekDayTranslationsEnum };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
type ImproveTextPayload = {
|
|
2
|
+
text: string;
|
|
3
|
+
textContext: string;
|
|
4
|
+
};
|
|
5
|
+
type ImproveTextResponse = {
|
|
6
|
+
improvedText: string;
|
|
7
|
+
};
|
|
8
|
+
|
|
1
9
|
type Enum<T extends Record<PropertyKey, string | number>> = T[keyof T];
|
|
2
10
|
|
|
3
11
|
declare const BrStatesEnum: {
|
|
@@ -225,6 +233,17 @@ declare const CommunicationToneTranslationsEnum: {
|
|
|
225
233
|
readonly LIGHT: "Leve";
|
|
226
234
|
};
|
|
227
235
|
type CommunicationToneTranslationsEnum = Enum<typeof CommunicationToneTranslationsEnum>;
|
|
236
|
+
declare const CommunicationToneColorsEnum: {
|
|
237
|
+
readonly FORMAL: "#1E3A8A";
|
|
238
|
+
readonly COLLOQUIAL: "#F97316";
|
|
239
|
+
readonly FRIENDLY: "#22C55E";
|
|
240
|
+
readonly INSPIRING: "#A855F7";
|
|
241
|
+
readonly INSTITUTIONAL: "#374151";
|
|
242
|
+
readonly WARM: "#FB7185";
|
|
243
|
+
readonly ENERGETIC: "#DC2626";
|
|
244
|
+
readonly LIGHT: "#38BDF8";
|
|
245
|
+
};
|
|
246
|
+
type CommunicationToneColorsEnum = Enum<typeof CommunicationToneColorsEnum>;
|
|
228
247
|
|
|
229
248
|
declare const EmotionStyleEnum: {
|
|
230
249
|
readonly NEUTRAL: "NEUTRAL";
|
|
@@ -244,6 +263,15 @@ declare const EmotionStyleTranslationsEnum: {
|
|
|
244
263
|
readonly EMPATHETIC: "Empático";
|
|
245
264
|
};
|
|
246
265
|
type EmotionStyleTranslationsEnum = Enum<typeof EmotionStyleTranslationsEnum>;
|
|
266
|
+
declare const EmotionStyleColorsEnum: {
|
|
267
|
+
readonly NEUTRAL: "#6B7280";
|
|
268
|
+
readonly HAPPY: "#FACC15";
|
|
269
|
+
readonly MOTIVATIONAL: "#22C55E";
|
|
270
|
+
readonly HOPEFUL: "#38BDF8";
|
|
271
|
+
readonly URGENT: "#DC2626";
|
|
272
|
+
readonly EMPATHETIC: "#A855F7";
|
|
273
|
+
};
|
|
274
|
+
type EmotionStyleColorsEnum = Enum<typeof EmotionStyleColorsEnum>;
|
|
247
275
|
|
|
248
276
|
declare const FormalityLevelEnum: {
|
|
249
277
|
readonly VERY_FORMAL: "VERY_FORMAL";
|
|
@@ -259,6 +287,13 @@ declare const FormalityLevelTranslationsEnum: {
|
|
|
259
287
|
readonly CASUAL: "Casual";
|
|
260
288
|
};
|
|
261
289
|
type FormalityLevelTranslationsEnum = Enum<typeof FormalityLevelTranslationsEnum>;
|
|
290
|
+
declare const FormalityLevelColorsEnum: {
|
|
291
|
+
readonly VERY_FORMAL: "#1E3A8A";
|
|
292
|
+
readonly FORMAL: "#2563EB";
|
|
293
|
+
readonly NEUTRAL: "#6B7280";
|
|
294
|
+
readonly CASUAL: "#F97316";
|
|
295
|
+
};
|
|
296
|
+
type FormalityLevelColorsEnum = Enum<typeof FormalityLevelColorsEnum>;
|
|
262
297
|
|
|
263
298
|
declare const HumorStyleEnum: {
|
|
264
299
|
readonly NONE: "NONE";
|
|
@@ -274,6 +309,13 @@ declare const HumorStyleTranslationsEnum: {
|
|
|
274
309
|
readonly FUNNY: "Engraçado";
|
|
275
310
|
};
|
|
276
311
|
type HumorStyleTranslationsEnum = Enum<typeof HumorStyleTranslationsEnum>;
|
|
312
|
+
declare const HumorStyleColorsEnum: {
|
|
313
|
+
readonly NONE: "#6B7280";
|
|
314
|
+
readonly SUBTLE: "#38BDF8";
|
|
315
|
+
readonly LIGHT: "#FACC15";
|
|
316
|
+
readonly FUNNY: "#F97316";
|
|
317
|
+
};
|
|
318
|
+
type HumorStyleColorsEnum = Enum<typeof HumorStyleColorsEnum>;
|
|
277
319
|
|
|
278
320
|
declare const LanguageStyleEnum: {
|
|
279
321
|
readonly STANDARD: "STANDARD";
|
|
@@ -293,6 +335,15 @@ declare const LanguageStyleTranslationsEnum: {
|
|
|
293
335
|
readonly POPULAR: "Popular";
|
|
294
336
|
};
|
|
295
337
|
type LanguageStyleTranslationsEnum = Enum<typeof LanguageStyleTranslationsEnum>;
|
|
338
|
+
declare const LanguageStyleColorsEnum: {
|
|
339
|
+
readonly STANDARD: "#6B7280";
|
|
340
|
+
readonly REGIONAL: "#65A30D";
|
|
341
|
+
readonly URBAN: "#1F2937";
|
|
342
|
+
readonly SIMPLE: "#38BDF8";
|
|
343
|
+
readonly TECHNICAL: "#1E3A8A";
|
|
344
|
+
readonly POPULAR: "#EC4899";
|
|
345
|
+
};
|
|
346
|
+
type LanguageStyleColorsEnum = Enum<typeof LanguageStyleColorsEnum>;
|
|
296
347
|
|
|
297
348
|
declare const VoiceEnergyEnum: {
|
|
298
349
|
readonly CALM: "CALM";
|
|
@@ -308,6 +359,13 @@ declare const VoiceEnergyTranslationsEnum: {
|
|
|
308
359
|
readonly HIGH: "Alta";
|
|
309
360
|
};
|
|
310
361
|
type VoiceEnergyTranslationsEnum = Enum<typeof VoiceEnergyTranslationsEnum>;
|
|
362
|
+
declare const VoiceEnergyColorsEnum: {
|
|
363
|
+
readonly CALM: "#38BDF8";
|
|
364
|
+
readonly BALANCED: "#22C55E";
|
|
365
|
+
readonly ACTIVE: "#F97316";
|
|
366
|
+
readonly HIGH: "#DC2626";
|
|
367
|
+
};
|
|
368
|
+
type VoiceEnergyColorsEnum = Enum<typeof VoiceEnergyColorsEnum>;
|
|
311
369
|
|
|
312
370
|
declare const VoiceGenderEnum: {
|
|
313
371
|
readonly MALE: "MALE";
|
|
@@ -319,6 +377,11 @@ declare const VoiceGenderTranslationsEnum: {
|
|
|
319
377
|
readonly FEMALE: "Voz Feminina";
|
|
320
378
|
};
|
|
321
379
|
type VoiceGenderTranslationsEnum = Enum<typeof VoiceGenderTranslationsEnum>;
|
|
380
|
+
declare const VoiceGenderColorsEnum: {
|
|
381
|
+
readonly MALE: "#2563EB";
|
|
382
|
+
readonly FEMALE: "#EC4899";
|
|
383
|
+
};
|
|
384
|
+
type VoiceGenderColorsEnum = Enum<typeof VoiceGenderColorsEnum>;
|
|
322
385
|
|
|
323
386
|
declare const EpGenerationQualityEnum: {
|
|
324
387
|
readonly DEFAULT: "DEFAULT";
|
|
@@ -556,6 +619,14 @@ declare const ProgramDayPeriodTranslationsEnum: {
|
|
|
556
619
|
readonly NIGHT: "Noite";
|
|
557
620
|
};
|
|
558
621
|
type ProgramDayPeriodTranslationsEnum = Enum<typeof ProgramDayPeriodTranslationsEnum>;
|
|
622
|
+
declare const ProgramDayPeriodColorsEnum: {
|
|
623
|
+
readonly DAWN: "#1E293B";
|
|
624
|
+
readonly MORNING: "#F59E0B";
|
|
625
|
+
readonly AFTERNOON: "#F97316";
|
|
626
|
+
readonly EVENING: "#6366F1";
|
|
627
|
+
readonly NIGHT: "#0F172A";
|
|
628
|
+
};
|
|
629
|
+
type ProgramDayPeriodColorsEnum = Enum<typeof ProgramDayPeriodColorsEnum>;
|
|
559
630
|
|
|
560
631
|
declare const ProgramSegmentEnum: {
|
|
561
632
|
readonly MUSIC: "MUSIC";
|
|
@@ -598,6 +669,26 @@ declare const ProgramSegmentTranslationsEnum: {
|
|
|
598
669
|
readonly TALK: "Talk / Debate";
|
|
599
670
|
};
|
|
600
671
|
type ProgramSegmentTranslationsEnum = Enum<typeof ProgramSegmentTranslationsEnum>;
|
|
672
|
+
declare const ProgramSegmentColorsEnum: {
|
|
673
|
+
readonly MUSIC: "#7C3AED";
|
|
674
|
+
readonly NEWS: "#2563EB";
|
|
675
|
+
readonly HOROSCOPE: "#A855F7";
|
|
676
|
+
readonly RELIGIOUS: "#F59E0B";
|
|
677
|
+
readonly GOSPEL: "#D97706";
|
|
678
|
+
readonly SPORTS: "#DC2626";
|
|
679
|
+
readonly FLASHBACK: "#F97316";
|
|
680
|
+
readonly POPULAR: "#EC4899";
|
|
681
|
+
readonly VARIETY: "#14B8A6";
|
|
682
|
+
readonly REGIONAL: "#65A30D";
|
|
683
|
+
readonly CORPORATE: "#374151";
|
|
684
|
+
readonly GOVERNMENT: "#1E3A8A";
|
|
685
|
+
readonly CHILDREN: "#FACC15";
|
|
686
|
+
readonly HUMOR: "#FB7185";
|
|
687
|
+
readonly ENTERTAINMENT: "#EF4444";
|
|
688
|
+
readonly CULTURAL: "#0F766E";
|
|
689
|
+
readonly TALK: "#6366F1";
|
|
690
|
+
};
|
|
691
|
+
type ProgramSegmentColorsEnum = Enum<typeof ProgramSegmentColorsEnum>;
|
|
601
692
|
|
|
602
693
|
declare const ProgramAudienceEnum: {
|
|
603
694
|
readonly CHILDREN: "CHILDREN";
|
|
@@ -625,6 +716,19 @@ declare const ProgramAudienceTranslationsEnum: {
|
|
|
625
716
|
readonly GENERAL: "Geral";
|
|
626
717
|
};
|
|
627
718
|
type ProgramAudienceTranslation = Enum<typeof ProgramAudienceTranslationsEnum>;
|
|
719
|
+
declare const ProgramAudienceColorsEnum: {
|
|
720
|
+
readonly CHILDREN: "#FACC15";
|
|
721
|
+
readonly TEENS: "#EC4899";
|
|
722
|
+
readonly YOUNG_ADULTS: "#7C3AED";
|
|
723
|
+
readonly ADULTS: "#2563EB";
|
|
724
|
+
readonly SENIORS: "#6B7280";
|
|
725
|
+
readonly FAMILY: "#22C55E";
|
|
726
|
+
readonly RURAL: "#65A30D";
|
|
727
|
+
readonly URBAN: "#1F2937";
|
|
728
|
+
readonly RELIGIOUS: "#F59E0B";
|
|
729
|
+
readonly GENERAL: "#64748B";
|
|
730
|
+
};
|
|
731
|
+
type ProgramAudienceColorsEnum = Enum<typeof ProgramAudienceColorsEnum>;
|
|
628
732
|
|
|
629
733
|
declare const ProgramScriptElementCategoriesEnum: {
|
|
630
734
|
readonly VOICE_TRACK: "VOICE_TRACK";
|
|
@@ -1591,4 +1695,4 @@ declare const TKPLAY_ERRORS__PTBR: TkplayMappedErrors__Ptbr;
|
|
|
1591
1695
|
|
|
1592
1696
|
declare const TKPLAY_ERROR_MESSAGE_SPLITTER = "::";
|
|
1593
1697
|
|
|
1594
|
-
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 CreateCasterPayload, type CreateCasterResponse, type CreateCouponPayload, type CreateCouponResponse, type CreateLandingPageLeadPayload, type CreateLegalTermAgreementPayload, type CreateLegalTermPayload, type CreateLegalTermResponse, type CreateProgramPayload, type CreateProgramSchedulePayload, type CreateProgramScriptPayload, 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 ListCastersParams, type ListCastersResponse, type ListChargesParams, type ListChargesResponse, type ListCouponsParams, type ListCouponsResponse, type ListLeadsParams, type ListLeadsResponse, type ListLegalTermsParams, type ListLegalTermsResponse, type ListProgramScriptsParams, type ListProgramScriptsResponse, type ListProgramsParams, type ListRadioUsersParams, type ListRadioUsersResponse, type ListRadiosParams, type ListRadiosResponse, type ListSystemModulesResponse, type ListSystemUsersParams, type ListSystemUsersResponse, type ListVoiceProfilesParams, type ListVoiceProfilesResponse, type ListVoiceTracksParams, type ListVoiceTracksResponse, type LoginPayload, type LoginResponse, MAX_CASTER_SAMPLES_DURATION_IN_SECONDS, MAX_SCRIPT_BLOCKS, MIN_CASTER_SAMPLES_DURATION_IN_SECONDS, MusicCategoriesEnum, type MusicCategoriesTranslationEnum, MusicCategoriesTranslationsEnum, MusicSubGenresEnum, type MusicSubGenresTranslationEnum, MusicSubGenresTranslationsEnum, NewsCategoriesEnum, PRICE_PER_PROGRAM_HOUR, type PaginatedResponseDTO, type Pagination, type PaginationParams, type PlanEntity, type PopulatedProgramScriptBlock, type PopulatedProgramScriptElement, type PopulatedProgramScriptEntity, type PopulatedScriptOptions, ProgramAudienceEnum, type ProgramAudienceTranslation, ProgramAudienceTranslationsEnum, ProgramDayPeriodEnum, ProgramDayPeriodTranslationsEnum, type ProgramDayScheduleEntity, type ProgramDraftEntity, type ProgramEntity, type ProgramEpisodeBlockEntity, type ProgramEpisodeEntity, type ProgramLogoEntity, type ProgramScriptBlockElementEntity, type ProgramScriptBlockEntity, type ProgramScriptBlockTagEntity, ProgramScriptElementCategoriesEnum, type ProgramScriptElementCategoriesTranslationEnum, ProgramScriptElementCategoriesTranslationsEnum, 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 SessionEntity, SessionTypesEnum, type SessionUser, SoundtrackStateEnum, type SoundtrackStateTranslationEnum, SoundtrackStateTranslationsEnum, type SystemModuleEntity, type SystemUserEntity, TKPLAY_ERRORS_MAP, TKPLAY_ERRORS__PTBR, TKPLAY_ERROR_MESSAGE_SPLITTER, TkplayErrorCodesEnum, type TkplayErrorEntity, TkplayErrorNamesEnum, type TkplayMappedErrors, type TkplayMappedErrors__Ptbr, TtsProvidersEnum, TtsProvidersTranslationsEnum, type UpdateCasterPaswordPayload, type UpdateCasterPayload, type UpdateCasterResponse, type UpdateCouponPayload, type UpdateCouponResponse, type UpdateLandingPageLeadPayload, type UpdateProgramProfilePayload, type UpdateProgramScriptPayload, type UpdateProgramVoicesPayload, type UpdateRadioPayload, type UpdateRadioUserPasswordPayload, type UpdateRadioUserProfilePayload, type UpdateRadioUserResponse, type UpdateRadioUserRolePayload, type UpdateSignupLeadPayload, type UpdateSystemUserPaswordPayload, type UpdateSystemUserPayload, type UpdateSystemUserResponse, type UpsertPlanPayload, type UpsertPlanResponse, type UpsertProgramScriptBlockElementPayload, type UpsertProgramScriptBlockPayload, type UpsertProgramScriptBlockTagsPayload, type UpsertSystemModulePayload, type UpsertSystemModuleResponse, type UpsertSystemUserResponse, type UserLegalAgreementEntity, UserRolesEnum, UserRolesTranslationsEnum, type VerifyEmailAvailabilityResponse, VignetteTypesEnum, type VignetteTypesTranslationEnum, VignetteTypesTranslationsEnum, VoiceEnergyEnum, VoiceEnergyTranslationsEnum, VoiceGenderEnum, VoiceGenderTranslationsEnum, type VoiceProfileEntity, VoiceProfileSourcesEnum, VoiceProfileSourcesTranslationsEnum, type VoiceTrackEntity, VoiceTrackSourcesEnum, VoiceTrackSourcesTranslationsEnum, VoiceTrackStatusEnum, VoiceTrackStatusTranslationsEnum, VoiceTrackTypesEnum, VoiceTrackTypesTranslationsEnum, WeekDayEnum, WeekDayTranslationsEnum };
|
|
1698
|
+
export { type AddressEntity, AudioBitratesEnum, AudioFormatsEnum, AudioFrequenciesEnum, type BaseEntity, BrStatesEnum, type CasterAvatarEntity, type CasterEntity, type ChargeEntity, ChargeItemTypesEnum, ChargeStatusEnum, ChargeTypesEnum, CommunicationToneColorsEnum, CommunicationToneEnum, CommunicationToneTranslationsEnum, type CouponActivationEntity, type CouponEntity, CouponTypesEnum, CouponTypesTranslationsEnum, type CreateCasterPayload, type CreateCasterResponse, type CreateCouponPayload, type CreateCouponResponse, type CreateLandingPageLeadPayload, type CreateLegalTermAgreementPayload, type CreateLegalTermPayload, type CreateLegalTermResponse, type CreateProgramPayload, type CreateProgramSchedulePayload, type CreateProgramScriptPayload, type CreateRadioPayload, type CreateRadioUserPayload, type CreateRadioUserResponse, type CreateSignupLeadPayload, type CreateSystemUserPayload, EmotionStyleColorsEnum, EmotionStyleEnum, EmotionStyleTranslationsEnum, type Enum, EpGenerationQualityEnum, EpGenerationTypesEnum, type EpisodeCreatedEvt, type EpisodeErrorEvt, type EpisodeProgressEvt, FFmpegAudioCurveEnum, FormalityLevelColorsEnum, FormalityLevelEnum, FormalityLevelTranslationsEnum, type GenerateEpJobPayload, type GenerateEpisodePayload, type GenerateEpisodeResponse, type GetCouponByIdResponse, type GetCouponValidationResponse, type GetPenaltyValueResponse, type GetRadioDetailsResponse, HumorStyleColorsEnum, HumorStyleEnum, HumorStyleTranslationsEnum, type ImproveTextPayload, type ImproveTextResponse, JobsEnum, LanguageStyleColorsEnum, LanguageStyleEnum, LanguageStyleTranslationsEnum, type LeadEntity, LeadStatusEnum, LeadStatusTranslationsEnum, LeadTypesEnum, LeadTypesTranslationsEnum, type LegalTermEntity, LegalTermTypesEnum, LegalTermTypesTranslationsEnum, type ListCastersParams, type ListCastersResponse, type ListChargesParams, type ListChargesResponse, type ListCouponsParams, type ListCouponsResponse, type ListLeadsParams, type ListLeadsResponse, type ListLegalTermsParams, type ListLegalTermsResponse, type ListProgramScriptsParams, type ListProgramScriptsResponse, type ListProgramsParams, type ListRadioUsersParams, type ListRadioUsersResponse, type ListRadiosParams, type ListRadiosResponse, type ListSystemModulesResponse, type ListSystemUsersParams, type ListSystemUsersResponse, type ListVoiceProfilesParams, type ListVoiceProfilesResponse, type ListVoiceTracksParams, type ListVoiceTracksResponse, type LoginPayload, type LoginResponse, MAX_CASTER_SAMPLES_DURATION_IN_SECONDS, MAX_SCRIPT_BLOCKS, MIN_CASTER_SAMPLES_DURATION_IN_SECONDS, MusicCategoriesEnum, type MusicCategoriesTranslationEnum, MusicCategoriesTranslationsEnum, MusicSubGenresEnum, type MusicSubGenresTranslationEnum, MusicSubGenresTranslationsEnum, NewsCategoriesEnum, PRICE_PER_PROGRAM_HOUR, type PaginatedResponseDTO, type Pagination, type PaginationParams, type PlanEntity, type PopulatedProgramScriptBlock, type PopulatedProgramScriptElement, type PopulatedProgramScriptEntity, type PopulatedScriptOptions, ProgramAudienceColorsEnum, ProgramAudienceEnum, type ProgramAudienceTranslation, ProgramAudienceTranslationsEnum, ProgramDayPeriodColorsEnum, ProgramDayPeriodEnum, ProgramDayPeriodTranslationsEnum, type ProgramDayScheduleEntity, type ProgramDraftEntity, type ProgramEntity, type ProgramEpisodeBlockEntity, type ProgramEpisodeEntity, type ProgramLogoEntity, type ProgramScriptBlockElementEntity, type ProgramScriptBlockEntity, type ProgramScriptBlockTagEntity, ProgramScriptElementCategoriesEnum, type ProgramScriptElementCategoriesTranslationEnum, ProgramScriptElementCategoriesTranslationsEnum, ProgramScriptElementTypesEnum, type ProgramScriptEntity, ProgramSegmentColorsEnum, 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 SessionEntity, SessionTypesEnum, type SessionUser, SoundtrackStateEnum, type SoundtrackStateTranslationEnum, SoundtrackStateTranslationsEnum, type SystemModuleEntity, type SystemUserEntity, TKPLAY_ERRORS_MAP, TKPLAY_ERRORS__PTBR, TKPLAY_ERROR_MESSAGE_SPLITTER, TkplayErrorCodesEnum, type TkplayErrorEntity, TkplayErrorNamesEnum, type TkplayMappedErrors, type TkplayMappedErrors__Ptbr, TtsProvidersEnum, TtsProvidersTranslationsEnum, type UpdateCasterPaswordPayload, type UpdateCasterPayload, type UpdateCasterResponse, type UpdateCouponPayload, type UpdateCouponResponse, type UpdateLandingPageLeadPayload, type UpdateProgramProfilePayload, type UpdateProgramScriptPayload, type UpdateProgramVoicesPayload, type UpdateRadioPayload, type UpdateRadioUserPasswordPayload, type UpdateRadioUserProfilePayload, type UpdateRadioUserResponse, type UpdateRadioUserRolePayload, type UpdateSignupLeadPayload, type UpdateSystemUserPaswordPayload, type UpdateSystemUserPayload, type UpdateSystemUserResponse, type UpsertPlanPayload, type UpsertPlanResponse, type UpsertProgramScriptBlockElementPayload, type UpsertProgramScriptBlockPayload, type UpsertProgramScriptBlockTagsPayload, type UpsertSystemModulePayload, type UpsertSystemModuleResponse, type UpsertSystemUserResponse, type UserLegalAgreementEntity, UserRolesEnum, UserRolesTranslationsEnum, type VerifyEmailAvailabilityResponse, VignetteTypesEnum, type VignetteTypesTranslationEnum, VignetteTypesTranslationsEnum, VoiceEnergyColorsEnum, VoiceEnergyEnum, VoiceEnergyTranslationsEnum, VoiceGenderColorsEnum, VoiceGenderEnum, VoiceGenderTranslationsEnum, type VoiceProfileEntity, VoiceProfileSourcesEnum, VoiceProfileSourcesTranslationsEnum, type VoiceTrackEntity, VoiceTrackSourcesEnum, VoiceTrackSourcesTranslationsEnum, VoiceTrackStatusEnum, VoiceTrackStatusTranslationsEnum, VoiceTrackTypesEnum, VoiceTrackTypesTranslationsEnum, WeekDayEnum, WeekDayTranslationsEnum };
|
package/dist/index.js
CHANGED
|
@@ -27,20 +27,25 @@ __export(index_exports, {
|
|
|
27
27
|
ChargeItemTypesEnum: () => ChargeItemTypesEnum,
|
|
28
28
|
ChargeStatusEnum: () => ChargeStatusEnum,
|
|
29
29
|
ChargeTypesEnum: () => ChargeTypesEnum,
|
|
30
|
+
CommunicationToneColorsEnum: () => CommunicationToneColorsEnum,
|
|
30
31
|
CommunicationToneEnum: () => CommunicationToneEnum,
|
|
31
32
|
CommunicationToneTranslationsEnum: () => CommunicationToneTranslationsEnum,
|
|
32
33
|
CouponTypesEnum: () => CouponTypesEnum,
|
|
33
34
|
CouponTypesTranslationsEnum: () => CouponTypesTranslationsEnum,
|
|
35
|
+
EmotionStyleColorsEnum: () => EmotionStyleColorsEnum,
|
|
34
36
|
EmotionStyleEnum: () => EmotionStyleEnum,
|
|
35
37
|
EmotionStyleTranslationsEnum: () => EmotionStyleTranslationsEnum,
|
|
36
38
|
EpGenerationQualityEnum: () => EpGenerationQualityEnum,
|
|
37
39
|
EpGenerationTypesEnum: () => EpGenerationTypesEnum,
|
|
38
40
|
FFmpegAudioCurveEnum: () => FFmpegAudioCurveEnum,
|
|
41
|
+
FormalityLevelColorsEnum: () => FormalityLevelColorsEnum,
|
|
39
42
|
FormalityLevelEnum: () => FormalityLevelEnum,
|
|
40
43
|
FormalityLevelTranslationsEnum: () => FormalityLevelTranslationsEnum,
|
|
44
|
+
HumorStyleColorsEnum: () => HumorStyleColorsEnum,
|
|
41
45
|
HumorStyleEnum: () => HumorStyleEnum,
|
|
42
46
|
HumorStyleTranslationsEnum: () => HumorStyleTranslationsEnum,
|
|
43
47
|
JobsEnum: () => JobsEnum,
|
|
48
|
+
LanguageStyleColorsEnum: () => LanguageStyleColorsEnum,
|
|
44
49
|
LanguageStyleEnum: () => LanguageStyleEnum,
|
|
45
50
|
LanguageStyleTranslationsEnum: () => LanguageStyleTranslationsEnum,
|
|
46
51
|
LeadStatusEnum: () => LeadStatusEnum,
|
|
@@ -58,13 +63,16 @@ __export(index_exports, {
|
|
|
58
63
|
MusicSubGenresTranslationsEnum: () => MusicSubGenresTranslationsEnum,
|
|
59
64
|
NewsCategoriesEnum: () => NewsCategoriesEnum,
|
|
60
65
|
PRICE_PER_PROGRAM_HOUR: () => PRICE_PER_PROGRAM_HOUR,
|
|
66
|
+
ProgramAudienceColorsEnum: () => ProgramAudienceColorsEnum,
|
|
61
67
|
ProgramAudienceEnum: () => ProgramAudienceEnum,
|
|
62
68
|
ProgramAudienceTranslationsEnum: () => ProgramAudienceTranslationsEnum,
|
|
69
|
+
ProgramDayPeriodColorsEnum: () => ProgramDayPeriodColorsEnum,
|
|
63
70
|
ProgramDayPeriodEnum: () => ProgramDayPeriodEnum,
|
|
64
71
|
ProgramDayPeriodTranslationsEnum: () => ProgramDayPeriodTranslationsEnum,
|
|
65
72
|
ProgramScriptElementCategoriesEnum: () => ProgramScriptElementCategoriesEnum,
|
|
66
73
|
ProgramScriptElementCategoriesTranslationsEnum: () => ProgramScriptElementCategoriesTranslationsEnum,
|
|
67
74
|
ProgramScriptElementTypesEnum: () => ProgramScriptElementTypesEnum,
|
|
75
|
+
ProgramSegmentColorsEnum: () => ProgramSegmentColorsEnum,
|
|
68
76
|
ProgramSegmentEnum: () => ProgramSegmentEnum,
|
|
69
77
|
ProgramSegmentTranslationsEnum: () => ProgramSegmentTranslationsEnum,
|
|
70
78
|
RadioBandsEnum: () => RadioBandsEnum,
|
|
@@ -85,8 +93,10 @@ __export(index_exports, {
|
|
|
85
93
|
UserRolesTranslationsEnum: () => UserRolesTranslationsEnum,
|
|
86
94
|
VignetteTypesEnum: () => VignetteTypesEnum,
|
|
87
95
|
VignetteTypesTranslationsEnum: () => VignetteTypesTranslationsEnum,
|
|
96
|
+
VoiceEnergyColorsEnum: () => VoiceEnergyColorsEnum,
|
|
88
97
|
VoiceEnergyEnum: () => VoiceEnergyEnum,
|
|
89
98
|
VoiceEnergyTranslationsEnum: () => VoiceEnergyTranslationsEnum,
|
|
99
|
+
VoiceGenderColorsEnum: () => VoiceGenderColorsEnum,
|
|
90
100
|
VoiceGenderEnum: () => VoiceGenderEnum,
|
|
91
101
|
VoiceGenderTranslationsEnum: () => VoiceGenderTranslationsEnum,
|
|
92
102
|
VoiceProfileSourcesEnum: () => VoiceProfileSourcesEnum,
|
|
@@ -354,6 +364,16 @@ var CommunicationToneTranslationsEnum = {
|
|
|
354
364
|
ENERGETIC: "Energ\xE9tico",
|
|
355
365
|
LIGHT: "Leve"
|
|
356
366
|
};
|
|
367
|
+
var CommunicationToneColorsEnum = {
|
|
368
|
+
FORMAL: "#1E3A8A",
|
|
369
|
+
COLLOQUIAL: "#F97316",
|
|
370
|
+
FRIENDLY: "#22C55E",
|
|
371
|
+
INSPIRING: "#A855F7",
|
|
372
|
+
INSTITUTIONAL: "#374151",
|
|
373
|
+
WARM: "#FB7185",
|
|
374
|
+
ENERGETIC: "#DC2626",
|
|
375
|
+
LIGHT: "#38BDF8"
|
|
376
|
+
};
|
|
357
377
|
|
|
358
378
|
// src/enums/communication/emotion-style.enum.ts
|
|
359
379
|
var EmotionStyleEnum = {
|
|
@@ -372,6 +392,14 @@ var EmotionStyleTranslationsEnum = {
|
|
|
372
392
|
URGENT: "Urgente",
|
|
373
393
|
EMPATHETIC: "Emp\xE1tico"
|
|
374
394
|
};
|
|
395
|
+
var EmotionStyleColorsEnum = {
|
|
396
|
+
NEUTRAL: "#6B7280",
|
|
397
|
+
HAPPY: "#FACC15",
|
|
398
|
+
MOTIVATIONAL: "#22C55E",
|
|
399
|
+
HOPEFUL: "#38BDF8",
|
|
400
|
+
URGENT: "#DC2626",
|
|
401
|
+
EMPATHETIC: "#A855F7"
|
|
402
|
+
};
|
|
375
403
|
|
|
376
404
|
// src/enums/communication/formality-level.enum.ts
|
|
377
405
|
var FormalityLevelEnum = {
|
|
@@ -386,6 +414,12 @@ var FormalityLevelTranslationsEnum = {
|
|
|
386
414
|
NEUTRAL: "Neutro",
|
|
387
415
|
CASUAL: "Casual"
|
|
388
416
|
};
|
|
417
|
+
var FormalityLevelColorsEnum = {
|
|
418
|
+
VERY_FORMAL: "#1E3A8A",
|
|
419
|
+
FORMAL: "#2563EB",
|
|
420
|
+
NEUTRAL: "#6B7280",
|
|
421
|
+
CASUAL: "#F97316"
|
|
422
|
+
};
|
|
389
423
|
|
|
390
424
|
// src/enums/communication/humor-style.enum.ts
|
|
391
425
|
var HumorStyleEnum = {
|
|
@@ -400,6 +434,12 @@ var HumorStyleTranslationsEnum = {
|
|
|
400
434
|
LIGHT: "Leve",
|
|
401
435
|
FUNNY: "Engra\xE7ado"
|
|
402
436
|
};
|
|
437
|
+
var HumorStyleColorsEnum = {
|
|
438
|
+
NONE: "#6B7280",
|
|
439
|
+
SUBTLE: "#38BDF8",
|
|
440
|
+
LIGHT: "#FACC15",
|
|
441
|
+
FUNNY: "#F97316"
|
|
442
|
+
};
|
|
403
443
|
|
|
404
444
|
// src/enums/communication/language-style.enum.ts
|
|
405
445
|
var LanguageStyleEnum = {
|
|
@@ -418,6 +458,14 @@ var LanguageStyleTranslationsEnum = {
|
|
|
418
458
|
TECHNICAL: "T\xE9cnico",
|
|
419
459
|
POPULAR: "Popular"
|
|
420
460
|
};
|
|
461
|
+
var LanguageStyleColorsEnum = {
|
|
462
|
+
STANDARD: "#6B7280",
|
|
463
|
+
REGIONAL: "#65A30D",
|
|
464
|
+
URBAN: "#1F2937",
|
|
465
|
+
SIMPLE: "#38BDF8",
|
|
466
|
+
TECHNICAL: "#1E3A8A",
|
|
467
|
+
POPULAR: "#EC4899"
|
|
468
|
+
};
|
|
421
469
|
|
|
422
470
|
// src/enums/communication/voice-energy.enum.ts
|
|
423
471
|
var VoiceEnergyEnum = {
|
|
@@ -432,6 +480,12 @@ var VoiceEnergyTranslationsEnum = {
|
|
|
432
480
|
ACTIVE: "Ativa",
|
|
433
481
|
HIGH: "Alta"
|
|
434
482
|
};
|
|
483
|
+
var VoiceEnergyColorsEnum = {
|
|
484
|
+
CALM: "#38BDF8",
|
|
485
|
+
BALANCED: "#22C55E",
|
|
486
|
+
ACTIVE: "#F97316",
|
|
487
|
+
HIGH: "#DC2626"
|
|
488
|
+
};
|
|
435
489
|
|
|
436
490
|
// src/enums/communication/voice-gender.enum.ts
|
|
437
491
|
var VoiceGenderEnum = {
|
|
@@ -442,6 +496,10 @@ var VoiceGenderTranslationsEnum = {
|
|
|
442
496
|
MALE: "Voz Masculina",
|
|
443
497
|
FEMALE: "Voz Feminina"
|
|
444
498
|
};
|
|
499
|
+
var VoiceGenderColorsEnum = {
|
|
500
|
+
MALE: "#2563EB",
|
|
501
|
+
FEMALE: "#EC4899"
|
|
502
|
+
};
|
|
445
503
|
|
|
446
504
|
// src/enums/content-creation/episode-generation-quality.enum.ts
|
|
447
505
|
var EpGenerationQualityEnum = {
|
|
@@ -683,6 +741,13 @@ var ProgramDayPeriodTranslationsEnum = {
|
|
|
683
741
|
EVENING: "In\xEDcio da noite",
|
|
684
742
|
NIGHT: "Noite"
|
|
685
743
|
};
|
|
744
|
+
var ProgramDayPeriodColorsEnum = {
|
|
745
|
+
DAWN: "#1E293B",
|
|
746
|
+
MORNING: "#F59E0B",
|
|
747
|
+
AFTERNOON: "#F97316",
|
|
748
|
+
EVENING: "#6366F1",
|
|
749
|
+
NIGHT: "#0F172A"
|
|
750
|
+
};
|
|
686
751
|
|
|
687
752
|
// src/enums/program/program-segments.enum.ts
|
|
688
753
|
var ProgramSegmentEnum = {
|
|
@@ -724,6 +789,25 @@ var ProgramSegmentTranslationsEnum = {
|
|
|
724
789
|
CULTURAL: "Cultural",
|
|
725
790
|
TALK: "Talk / Debate"
|
|
726
791
|
};
|
|
792
|
+
var ProgramSegmentColorsEnum = {
|
|
793
|
+
MUSIC: "#7C3AED",
|
|
794
|
+
NEWS: "#2563EB",
|
|
795
|
+
HOROSCOPE: "#A855F7",
|
|
796
|
+
RELIGIOUS: "#F59E0B",
|
|
797
|
+
GOSPEL: "#D97706",
|
|
798
|
+
SPORTS: "#DC2626",
|
|
799
|
+
FLASHBACK: "#F97316",
|
|
800
|
+
POPULAR: "#EC4899",
|
|
801
|
+
VARIETY: "#14B8A6",
|
|
802
|
+
REGIONAL: "#65A30D",
|
|
803
|
+
CORPORATE: "#374151",
|
|
804
|
+
GOVERNMENT: "#1E3A8A",
|
|
805
|
+
CHILDREN: "#FACC15",
|
|
806
|
+
HUMOR: "#FB7185",
|
|
807
|
+
ENTERTAINMENT: "#EF4444",
|
|
808
|
+
CULTURAL: "#0F766E",
|
|
809
|
+
TALK: "#6366F1"
|
|
810
|
+
};
|
|
727
811
|
|
|
728
812
|
// src/enums/program/program-audiences.ts
|
|
729
813
|
var ProgramAudienceEnum = {
|
|
@@ -750,6 +834,18 @@ var ProgramAudienceTranslationsEnum = {
|
|
|
750
834
|
RELIGIOUS: "Religioso",
|
|
751
835
|
GENERAL: "Geral"
|
|
752
836
|
};
|
|
837
|
+
var ProgramAudienceColorsEnum = {
|
|
838
|
+
CHILDREN: "#FACC15",
|
|
839
|
+
TEENS: "#EC4899",
|
|
840
|
+
YOUNG_ADULTS: "#7C3AED",
|
|
841
|
+
ADULTS: "#2563EB",
|
|
842
|
+
SENIORS: "#6B7280",
|
|
843
|
+
FAMILY: "#22C55E",
|
|
844
|
+
RURAL: "#65A30D",
|
|
845
|
+
URBAN: "#1F2937",
|
|
846
|
+
RELIGIOUS: "#F59E0B",
|
|
847
|
+
GENERAL: "#64748B"
|
|
848
|
+
};
|
|
753
849
|
|
|
754
850
|
// src/enums/program-scripts/element-categories.enum.ts
|
|
755
851
|
var ProgramScriptElementCategoriesEnum = {
|
|
@@ -1034,20 +1130,25 @@ var TKPLAY_ERROR_MESSAGE_SPLITTER = "::";
|
|
|
1034
1130
|
ChargeItemTypesEnum,
|
|
1035
1131
|
ChargeStatusEnum,
|
|
1036
1132
|
ChargeTypesEnum,
|
|
1133
|
+
CommunicationToneColorsEnum,
|
|
1037
1134
|
CommunicationToneEnum,
|
|
1038
1135
|
CommunicationToneTranslationsEnum,
|
|
1039
1136
|
CouponTypesEnum,
|
|
1040
1137
|
CouponTypesTranslationsEnum,
|
|
1138
|
+
EmotionStyleColorsEnum,
|
|
1041
1139
|
EmotionStyleEnum,
|
|
1042
1140
|
EmotionStyleTranslationsEnum,
|
|
1043
1141
|
EpGenerationQualityEnum,
|
|
1044
1142
|
EpGenerationTypesEnum,
|
|
1045
1143
|
FFmpegAudioCurveEnum,
|
|
1144
|
+
FormalityLevelColorsEnum,
|
|
1046
1145
|
FormalityLevelEnum,
|
|
1047
1146
|
FormalityLevelTranslationsEnum,
|
|
1147
|
+
HumorStyleColorsEnum,
|
|
1048
1148
|
HumorStyleEnum,
|
|
1049
1149
|
HumorStyleTranslationsEnum,
|
|
1050
1150
|
JobsEnum,
|
|
1151
|
+
LanguageStyleColorsEnum,
|
|
1051
1152
|
LanguageStyleEnum,
|
|
1052
1153
|
LanguageStyleTranslationsEnum,
|
|
1053
1154
|
LeadStatusEnum,
|
|
@@ -1065,13 +1166,16 @@ var TKPLAY_ERROR_MESSAGE_SPLITTER = "::";
|
|
|
1065
1166
|
MusicSubGenresTranslationsEnum,
|
|
1066
1167
|
NewsCategoriesEnum,
|
|
1067
1168
|
PRICE_PER_PROGRAM_HOUR,
|
|
1169
|
+
ProgramAudienceColorsEnum,
|
|
1068
1170
|
ProgramAudienceEnum,
|
|
1069
1171
|
ProgramAudienceTranslationsEnum,
|
|
1172
|
+
ProgramDayPeriodColorsEnum,
|
|
1070
1173
|
ProgramDayPeriodEnum,
|
|
1071
1174
|
ProgramDayPeriodTranslationsEnum,
|
|
1072
1175
|
ProgramScriptElementCategoriesEnum,
|
|
1073
1176
|
ProgramScriptElementCategoriesTranslationsEnum,
|
|
1074
1177
|
ProgramScriptElementTypesEnum,
|
|
1178
|
+
ProgramSegmentColorsEnum,
|
|
1075
1179
|
ProgramSegmentEnum,
|
|
1076
1180
|
ProgramSegmentTranslationsEnum,
|
|
1077
1181
|
RadioBandsEnum,
|
|
@@ -1092,8 +1196,10 @@ var TKPLAY_ERROR_MESSAGE_SPLITTER = "::";
|
|
|
1092
1196
|
UserRolesTranslationsEnum,
|
|
1093
1197
|
VignetteTypesEnum,
|
|
1094
1198
|
VignetteTypesTranslationsEnum,
|
|
1199
|
+
VoiceEnergyColorsEnum,
|
|
1095
1200
|
VoiceEnergyEnum,
|
|
1096
1201
|
VoiceEnergyTranslationsEnum,
|
|
1202
|
+
VoiceGenderColorsEnum,
|
|
1097
1203
|
VoiceGenderEnum,
|
|
1098
1204
|
VoiceGenderTranslationsEnum,
|
|
1099
1205
|
VoiceProfileSourcesEnum,
|
package/dist/index.mjs
CHANGED
|
@@ -250,6 +250,16 @@ var CommunicationToneTranslationsEnum = {
|
|
|
250
250
|
ENERGETIC: "Energ\xE9tico",
|
|
251
251
|
LIGHT: "Leve"
|
|
252
252
|
};
|
|
253
|
+
var CommunicationToneColorsEnum = {
|
|
254
|
+
FORMAL: "#1E3A8A",
|
|
255
|
+
COLLOQUIAL: "#F97316",
|
|
256
|
+
FRIENDLY: "#22C55E",
|
|
257
|
+
INSPIRING: "#A855F7",
|
|
258
|
+
INSTITUTIONAL: "#374151",
|
|
259
|
+
WARM: "#FB7185",
|
|
260
|
+
ENERGETIC: "#DC2626",
|
|
261
|
+
LIGHT: "#38BDF8"
|
|
262
|
+
};
|
|
253
263
|
|
|
254
264
|
// src/enums/communication/emotion-style.enum.ts
|
|
255
265
|
var EmotionStyleEnum = {
|
|
@@ -268,6 +278,14 @@ var EmotionStyleTranslationsEnum = {
|
|
|
268
278
|
URGENT: "Urgente",
|
|
269
279
|
EMPATHETIC: "Emp\xE1tico"
|
|
270
280
|
};
|
|
281
|
+
var EmotionStyleColorsEnum = {
|
|
282
|
+
NEUTRAL: "#6B7280",
|
|
283
|
+
HAPPY: "#FACC15",
|
|
284
|
+
MOTIVATIONAL: "#22C55E",
|
|
285
|
+
HOPEFUL: "#38BDF8",
|
|
286
|
+
URGENT: "#DC2626",
|
|
287
|
+
EMPATHETIC: "#A855F7"
|
|
288
|
+
};
|
|
271
289
|
|
|
272
290
|
// src/enums/communication/formality-level.enum.ts
|
|
273
291
|
var FormalityLevelEnum = {
|
|
@@ -282,6 +300,12 @@ var FormalityLevelTranslationsEnum = {
|
|
|
282
300
|
NEUTRAL: "Neutro",
|
|
283
301
|
CASUAL: "Casual"
|
|
284
302
|
};
|
|
303
|
+
var FormalityLevelColorsEnum = {
|
|
304
|
+
VERY_FORMAL: "#1E3A8A",
|
|
305
|
+
FORMAL: "#2563EB",
|
|
306
|
+
NEUTRAL: "#6B7280",
|
|
307
|
+
CASUAL: "#F97316"
|
|
308
|
+
};
|
|
285
309
|
|
|
286
310
|
// src/enums/communication/humor-style.enum.ts
|
|
287
311
|
var HumorStyleEnum = {
|
|
@@ -296,6 +320,12 @@ var HumorStyleTranslationsEnum = {
|
|
|
296
320
|
LIGHT: "Leve",
|
|
297
321
|
FUNNY: "Engra\xE7ado"
|
|
298
322
|
};
|
|
323
|
+
var HumorStyleColorsEnum = {
|
|
324
|
+
NONE: "#6B7280",
|
|
325
|
+
SUBTLE: "#38BDF8",
|
|
326
|
+
LIGHT: "#FACC15",
|
|
327
|
+
FUNNY: "#F97316"
|
|
328
|
+
};
|
|
299
329
|
|
|
300
330
|
// src/enums/communication/language-style.enum.ts
|
|
301
331
|
var LanguageStyleEnum = {
|
|
@@ -314,6 +344,14 @@ var LanguageStyleTranslationsEnum = {
|
|
|
314
344
|
TECHNICAL: "T\xE9cnico",
|
|
315
345
|
POPULAR: "Popular"
|
|
316
346
|
};
|
|
347
|
+
var LanguageStyleColorsEnum = {
|
|
348
|
+
STANDARD: "#6B7280",
|
|
349
|
+
REGIONAL: "#65A30D",
|
|
350
|
+
URBAN: "#1F2937",
|
|
351
|
+
SIMPLE: "#38BDF8",
|
|
352
|
+
TECHNICAL: "#1E3A8A",
|
|
353
|
+
POPULAR: "#EC4899"
|
|
354
|
+
};
|
|
317
355
|
|
|
318
356
|
// src/enums/communication/voice-energy.enum.ts
|
|
319
357
|
var VoiceEnergyEnum = {
|
|
@@ -328,6 +366,12 @@ var VoiceEnergyTranslationsEnum = {
|
|
|
328
366
|
ACTIVE: "Ativa",
|
|
329
367
|
HIGH: "Alta"
|
|
330
368
|
};
|
|
369
|
+
var VoiceEnergyColorsEnum = {
|
|
370
|
+
CALM: "#38BDF8",
|
|
371
|
+
BALANCED: "#22C55E",
|
|
372
|
+
ACTIVE: "#F97316",
|
|
373
|
+
HIGH: "#DC2626"
|
|
374
|
+
};
|
|
331
375
|
|
|
332
376
|
// src/enums/communication/voice-gender.enum.ts
|
|
333
377
|
var VoiceGenderEnum = {
|
|
@@ -338,6 +382,10 @@ var VoiceGenderTranslationsEnum = {
|
|
|
338
382
|
MALE: "Voz Masculina",
|
|
339
383
|
FEMALE: "Voz Feminina"
|
|
340
384
|
};
|
|
385
|
+
var VoiceGenderColorsEnum = {
|
|
386
|
+
MALE: "#2563EB",
|
|
387
|
+
FEMALE: "#EC4899"
|
|
388
|
+
};
|
|
341
389
|
|
|
342
390
|
// src/enums/content-creation/episode-generation-quality.enum.ts
|
|
343
391
|
var EpGenerationQualityEnum = {
|
|
@@ -579,6 +627,13 @@ var ProgramDayPeriodTranslationsEnum = {
|
|
|
579
627
|
EVENING: "In\xEDcio da noite",
|
|
580
628
|
NIGHT: "Noite"
|
|
581
629
|
};
|
|
630
|
+
var ProgramDayPeriodColorsEnum = {
|
|
631
|
+
DAWN: "#1E293B",
|
|
632
|
+
MORNING: "#F59E0B",
|
|
633
|
+
AFTERNOON: "#F97316",
|
|
634
|
+
EVENING: "#6366F1",
|
|
635
|
+
NIGHT: "#0F172A"
|
|
636
|
+
};
|
|
582
637
|
|
|
583
638
|
// src/enums/program/program-segments.enum.ts
|
|
584
639
|
var ProgramSegmentEnum = {
|
|
@@ -620,6 +675,25 @@ var ProgramSegmentTranslationsEnum = {
|
|
|
620
675
|
CULTURAL: "Cultural",
|
|
621
676
|
TALK: "Talk / Debate"
|
|
622
677
|
};
|
|
678
|
+
var ProgramSegmentColorsEnum = {
|
|
679
|
+
MUSIC: "#7C3AED",
|
|
680
|
+
NEWS: "#2563EB",
|
|
681
|
+
HOROSCOPE: "#A855F7",
|
|
682
|
+
RELIGIOUS: "#F59E0B",
|
|
683
|
+
GOSPEL: "#D97706",
|
|
684
|
+
SPORTS: "#DC2626",
|
|
685
|
+
FLASHBACK: "#F97316",
|
|
686
|
+
POPULAR: "#EC4899",
|
|
687
|
+
VARIETY: "#14B8A6",
|
|
688
|
+
REGIONAL: "#65A30D",
|
|
689
|
+
CORPORATE: "#374151",
|
|
690
|
+
GOVERNMENT: "#1E3A8A",
|
|
691
|
+
CHILDREN: "#FACC15",
|
|
692
|
+
HUMOR: "#FB7185",
|
|
693
|
+
ENTERTAINMENT: "#EF4444",
|
|
694
|
+
CULTURAL: "#0F766E",
|
|
695
|
+
TALK: "#6366F1"
|
|
696
|
+
};
|
|
623
697
|
|
|
624
698
|
// src/enums/program/program-audiences.ts
|
|
625
699
|
var ProgramAudienceEnum = {
|
|
@@ -646,6 +720,18 @@ var ProgramAudienceTranslationsEnum = {
|
|
|
646
720
|
RELIGIOUS: "Religioso",
|
|
647
721
|
GENERAL: "Geral"
|
|
648
722
|
};
|
|
723
|
+
var ProgramAudienceColorsEnum = {
|
|
724
|
+
CHILDREN: "#FACC15",
|
|
725
|
+
TEENS: "#EC4899",
|
|
726
|
+
YOUNG_ADULTS: "#7C3AED",
|
|
727
|
+
ADULTS: "#2563EB",
|
|
728
|
+
SENIORS: "#6B7280",
|
|
729
|
+
FAMILY: "#22C55E",
|
|
730
|
+
RURAL: "#65A30D",
|
|
731
|
+
URBAN: "#1F2937",
|
|
732
|
+
RELIGIOUS: "#F59E0B",
|
|
733
|
+
GENERAL: "#64748B"
|
|
734
|
+
};
|
|
649
735
|
|
|
650
736
|
// src/enums/program-scripts/element-categories.enum.ts
|
|
651
737
|
var ProgramScriptElementCategoriesEnum = {
|
|
@@ -929,20 +1015,25 @@ export {
|
|
|
929
1015
|
ChargeItemTypesEnum,
|
|
930
1016
|
ChargeStatusEnum,
|
|
931
1017
|
ChargeTypesEnum,
|
|
1018
|
+
CommunicationToneColorsEnum,
|
|
932
1019
|
CommunicationToneEnum,
|
|
933
1020
|
CommunicationToneTranslationsEnum,
|
|
934
1021
|
CouponTypesEnum,
|
|
935
1022
|
CouponTypesTranslationsEnum,
|
|
1023
|
+
EmotionStyleColorsEnum,
|
|
936
1024
|
EmotionStyleEnum,
|
|
937
1025
|
EmotionStyleTranslationsEnum,
|
|
938
1026
|
EpGenerationQualityEnum,
|
|
939
1027
|
EpGenerationTypesEnum,
|
|
940
1028
|
FFmpegAudioCurveEnum,
|
|
1029
|
+
FormalityLevelColorsEnum,
|
|
941
1030
|
FormalityLevelEnum,
|
|
942
1031
|
FormalityLevelTranslationsEnum,
|
|
1032
|
+
HumorStyleColorsEnum,
|
|
943
1033
|
HumorStyleEnum,
|
|
944
1034
|
HumorStyleTranslationsEnum,
|
|
945
1035
|
JobsEnum,
|
|
1036
|
+
LanguageStyleColorsEnum,
|
|
946
1037
|
LanguageStyleEnum,
|
|
947
1038
|
LanguageStyleTranslationsEnum,
|
|
948
1039
|
LeadStatusEnum,
|
|
@@ -960,13 +1051,16 @@ export {
|
|
|
960
1051
|
MusicSubGenresTranslationsEnum,
|
|
961
1052
|
NewsCategoriesEnum,
|
|
962
1053
|
PRICE_PER_PROGRAM_HOUR,
|
|
1054
|
+
ProgramAudienceColorsEnum,
|
|
963
1055
|
ProgramAudienceEnum,
|
|
964
1056
|
ProgramAudienceTranslationsEnum,
|
|
1057
|
+
ProgramDayPeriodColorsEnum,
|
|
965
1058
|
ProgramDayPeriodEnum,
|
|
966
1059
|
ProgramDayPeriodTranslationsEnum,
|
|
967
1060
|
ProgramScriptElementCategoriesEnum,
|
|
968
1061
|
ProgramScriptElementCategoriesTranslationsEnum,
|
|
969
1062
|
ProgramScriptElementTypesEnum,
|
|
1063
|
+
ProgramSegmentColorsEnum,
|
|
970
1064
|
ProgramSegmentEnum,
|
|
971
1065
|
ProgramSegmentTranslationsEnum,
|
|
972
1066
|
RadioBandsEnum,
|
|
@@ -987,8 +1081,10 @@ export {
|
|
|
987
1081
|
UserRolesTranslationsEnum,
|
|
988
1082
|
VignetteTypesEnum,
|
|
989
1083
|
VignetteTypesTranslationsEnum,
|
|
1084
|
+
VoiceEnergyColorsEnum,
|
|
990
1085
|
VoiceEnergyEnum,
|
|
991
1086
|
VoiceEnergyTranslationsEnum,
|
|
1087
|
+
VoiceGenderColorsEnum,
|
|
992
1088
|
VoiceGenderEnum,
|
|
993
1089
|
VoiceGenderTranslationsEnum,
|
|
994
1090
|
VoiceProfileSourcesEnum,
|