@talkplay/shared-types 1.0.82 → 1.0.85

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.ts CHANGED
@@ -74,6 +74,11 @@ declare const TkplayErrorCodesEnum: {
74
74
  PROGRAM_NAME_IS_TAKEN: string;
75
75
  PROGRAM_CREATION_NOT_ALLOWED_DURING_TRIAL: string;
76
76
  PROGRAM_CASTER_DOES_NOT_BELONG_TO_RADIO: string;
77
+ PROGRAM_DUPLICATED_CASTER_VOICES: string;
78
+ SCRITP_IS_EMPTY: string;
79
+ SCRITP_BLOCK_IS_EMPTY: string;
80
+ SCRITP_EXCEEDS_MAX_SIZE: string;
81
+ SCRIPT_HAS_FORBBIDEN_MODULE: string;
77
82
  USER_NOT_FOUND: string;
78
83
  USER_EMAIL_IS_TAKEN: string;
79
84
  USER_PASSWORDS_DONT_MATCH: string;
@@ -325,21 +330,6 @@ declare const EpGenerationTypesEnum: {
325
330
  };
326
331
  type EpGenerationTypesEnum = Enum<typeof EpGenerationTypesEnum>;
327
332
 
328
- declare const LegalTermTypesEnum: {
329
- readonly PLATFORM_USE: "PLATFORM_USE";
330
- readonly COOKIES_POLICY: "COOKIES_POLICY";
331
- readonly PRIVACY_POLICY: "PRIVACY_POLICY";
332
- readonly CANCELLATION_POLICY: "CANCELLATION_POLICY";
333
- };
334
- type LegalTermTypesEnum = Enum<typeof LegalTermTypesEnum>;
335
- declare const LegalTermTypesTranslationsEnum: {
336
- readonly PLATFORM_USE: "Termos de Uso";
337
- readonly COOKIES_POLICY: "Política de Cookies";
338
- readonly PRIVACY_POLICY: "Política de Privacidade";
339
- readonly CANCELLATION_POLICY: "Política de Cancelamento e Reembolso";
340
- };
341
- type LegalTermTypesTranslationsEnum = Enum<typeof LegalTermTypesTranslationsEnum>;
342
-
343
333
  declare const LeadStatusEnum: {
344
334
  readonly PENDING: "PENDING";
345
335
  readonly IN_PROSPECTION: "IN_PROSPECTION";
@@ -366,6 +356,21 @@ declare const LeadTypesTranslationsEnum: {
366
356
  };
367
357
  type LeadTypesTranslationsEnum = Enum<typeof LeadTypesTranslationsEnum>;
368
358
 
359
+ declare const LegalTermTypesEnum: {
360
+ readonly PLATFORM_USE: "PLATFORM_USE";
361
+ readonly COOKIES_POLICY: "COOKIES_POLICY";
362
+ readonly PRIVACY_POLICY: "PRIVACY_POLICY";
363
+ readonly CANCELLATION_POLICY: "CANCELLATION_POLICY";
364
+ };
365
+ type LegalTermTypesEnum = Enum<typeof LegalTermTypesEnum>;
366
+ declare const LegalTermTypesTranslationsEnum: {
367
+ readonly PLATFORM_USE: "Termos de Uso";
368
+ readonly COOKIES_POLICY: "Política de Cookies";
369
+ readonly PRIVACY_POLICY: "Política de Privacidade";
370
+ readonly CANCELLATION_POLICY: "Política de Cancelamento e Reembolso";
371
+ };
372
+ type LegalTermTypesTranslationsEnum = Enum<typeof LegalTermTypesTranslationsEnum>;
373
+
369
374
  declare const AudioBitratesEnum: {
370
375
  readonly "32k": "32k";
371
376
  readonly "48k": "48k";
@@ -416,109 +421,6 @@ declare const FFmpegAudioCurveEnum: {
416
421
  };
417
422
  type FFmpegAudioCurveEnum = Enum<typeof FFmpegAudioCurveEnum>;
418
423
 
419
- declare const RadioBandsEnum: {
420
- readonly AM: "AM";
421
- readonly FM: "FM";
422
- };
423
- type RadioBandsEnum = Enum<typeof RadioBandsEnum>;
424
-
425
- declare const UserRolesEnum: {
426
- readonly ADMIN: "ADMIN";
427
- readonly STAFF: "STAFF";
428
- };
429
- type UserRolesEnum = Enum<typeof UserRolesEnum>;
430
- declare const UserRolesTranslationsEnum: {
431
- readonly ADMIN: "Administrador";
432
- readonly STAFF: "Colaborador";
433
- };
434
- type UserRolesTranslationsEnum = Enum<typeof UserRolesTranslationsEnum>;
435
-
436
- declare const ProgramDayPeriodEnum: {
437
- readonly DAWN: "DAWN";
438
- readonly MORNING: "MORNING";
439
- readonly AFTERNOON: "AFTERNOON";
440
- readonly EVENING: "EVENING";
441
- readonly NIGHT: "NIGHT";
442
- };
443
- type ProgramDayPeriodEnum = Enum<typeof ProgramDayPeriodEnum>;
444
- declare const ProgramDayPeriodTranslationsEnum: {
445
- readonly DAWN: "Madrugada";
446
- readonly MORNING: "Manhã";
447
- readonly AFTERNOON: "Tarde";
448
- readonly EVENING: "Início da noite";
449
- readonly NIGHT: "Noite";
450
- };
451
- type ProgramDayPeriodTranslationsEnum = Enum<typeof ProgramDayPeriodTranslationsEnum>;
452
-
453
- declare const ProgramSegmentEnum: {
454
- readonly MUSIC: "MUSIC";
455
- readonly NEWS: "NEWS";
456
- readonly HOROSCOPE: "HOROSCOPE";
457
- readonly RELIGIOUS: "RELIGIOUS";
458
- readonly GOSPEL: "GOSPEL";
459
- readonly SPORTS: "SPORTS";
460
- readonly FLASHBACK: "FLASHBACK";
461
- readonly POPULAR: "POPULAR";
462
- readonly VARIETY: "VARIETY";
463
- readonly REGIONAL: "REGIONAL";
464
- readonly CORPORATE: "CORPORATE";
465
- readonly GOVERNMENT: "GOVERNMENT";
466
- readonly CHILDREN: "CHILDREN";
467
- readonly HUMOR: "HUMOR";
468
- readonly ENTERTAINMENT: "ENTERTAINMENT";
469
- readonly CULTURAL: "CULTURAL";
470
- readonly TALK: "TALK";
471
- };
472
- type ProgramSegmentEnum = Enum<typeof ProgramSegmentEnum>;
473
- declare const ProgramSegmentTranslationsEnum: {
474
- readonly MUSIC: "Músicas";
475
- readonly POPULAR: "Popular";
476
- readonly RELIGIOUS: "Religioso";
477
- readonly NEWS: "Jornalístico";
478
- readonly HOROSCOPE: "Horóscopo";
479
- readonly SPORTS: "Esportivo";
480
- readonly EDUCATIONAL: "Educativo";
481
- readonly FLASHBACK: "FlashBack";
482
- readonly GOSPEL: "Gospel";
483
- readonly REGIONAL: "Regional";
484
- readonly VARIETY: "Variedades";
485
- readonly CORPORATE: "Corporativo";
486
- readonly GOVERNMENT: "Governamental";
487
- readonly CHILDREN: "Infantil";
488
- readonly HUMOR: "Humor";
489
- readonly ENTERTAINMENT: "Entretenimento";
490
- readonly CULTURAL: "Cultural";
491
- readonly TALK: "Talk / Debate";
492
- };
493
- type ProgramSegmentTranslationsEnum = Enum<typeof ProgramSegmentTranslationsEnum>;
494
-
495
- declare const ProgramAudienceEnum: {
496
- readonly CHILDREN: "CHILDREN";
497
- readonly TEENS: "TEENS";
498
- readonly YOUNG_ADULTS: "YOUNG_ADULTS";
499
- readonly ADULTS: "ADULTS";
500
- readonly SENIORS: "SENIORS";
501
- readonly FAMILY: "FAMILY";
502
- readonly RURAL: "RURAL";
503
- readonly URBAN: "URBAN";
504
- readonly RELIGIOUS: "RELIGIOUS";
505
- readonly GENERAL: "GENERAL";
506
- };
507
- type ProgramAudienceEnum = Enum<typeof ProgramAudienceEnum>;
508
- declare const ProgramAudienceTranslationsEnum: {
509
- readonly CHILDREN: "Infantil";
510
- readonly TEENS: "Adolescentes";
511
- readonly YOUNG_ADULTS: "Jovens adultos";
512
- readonly ADULTS: "Adultos";
513
- readonly SENIORS: "Idosos";
514
- readonly FAMILY: "Família";
515
- readonly RURAL: "Rural";
516
- readonly URBAN: "Urbano";
517
- readonly RELIGIOUS: "Religioso";
518
- readonly GENERAL: "Geral";
519
- };
520
- type ProgramAudienceTranslation = Enum<typeof ProgramAudienceTranslationsEnum>;
521
-
522
424
  declare const MusicSubGenresEnum: {
523
425
  readonly POP: "POP";
524
426
  readonly POP_ROCK: "POP_ROCK";
@@ -629,6 +531,168 @@ declare const MusicCategoriesTranslationsEnum: {
629
531
  };
630
532
  type MusicCategoriesTranslationEnum = Enum<typeof MusicCategoriesTranslationsEnum>;
631
533
 
534
+ declare const NewsCategoriesEnum: {
535
+ readonly SPORTS: "SPORTS";
536
+ readonly GOSSIP: "GOSSIP";
537
+ readonly POLICY: "POLICY";
538
+ };
539
+ type NewsCategoriesEnum = Enum<typeof NewsCategoriesEnum>;
540
+
541
+ declare const ProgramDayPeriodEnum: {
542
+ readonly DAWN: "DAWN";
543
+ readonly MORNING: "MORNING";
544
+ readonly AFTERNOON: "AFTERNOON";
545
+ readonly EVENING: "EVENING";
546
+ readonly NIGHT: "NIGHT";
547
+ };
548
+ type ProgramDayPeriodEnum = Enum<typeof ProgramDayPeriodEnum>;
549
+ declare const ProgramDayPeriodTranslationsEnum: {
550
+ readonly DAWN: "Madrugada";
551
+ readonly MORNING: "Manhã";
552
+ readonly AFTERNOON: "Tarde";
553
+ readonly EVENING: "Início da noite";
554
+ readonly NIGHT: "Noite";
555
+ };
556
+ type ProgramDayPeriodTranslationsEnum = Enum<typeof ProgramDayPeriodTranslationsEnum>;
557
+
558
+ declare const ProgramSegmentEnum: {
559
+ readonly MUSIC: "MUSIC";
560
+ readonly NEWS: "NEWS";
561
+ readonly HOROSCOPE: "HOROSCOPE";
562
+ readonly RELIGIOUS: "RELIGIOUS";
563
+ readonly GOSPEL: "GOSPEL";
564
+ readonly SPORTS: "SPORTS";
565
+ readonly FLASHBACK: "FLASHBACK";
566
+ readonly POPULAR: "POPULAR";
567
+ readonly VARIETY: "VARIETY";
568
+ readonly REGIONAL: "REGIONAL";
569
+ readonly CORPORATE: "CORPORATE";
570
+ readonly GOVERNMENT: "GOVERNMENT";
571
+ readonly CHILDREN: "CHILDREN";
572
+ readonly HUMOR: "HUMOR";
573
+ readonly ENTERTAINMENT: "ENTERTAINMENT";
574
+ readonly CULTURAL: "CULTURAL";
575
+ readonly TALK: "TALK";
576
+ };
577
+ type ProgramSegmentEnum = Enum<typeof ProgramSegmentEnum>;
578
+ declare const ProgramSegmentTranslationsEnum: {
579
+ readonly MUSIC: "Músicas";
580
+ readonly POPULAR: "Popular";
581
+ readonly RELIGIOUS: "Religioso";
582
+ readonly NEWS: "Jornalístico";
583
+ readonly HOROSCOPE: "Horóscopo";
584
+ readonly SPORTS: "Esportivo";
585
+ readonly EDUCATIONAL: "Educativo";
586
+ readonly FLASHBACK: "FlashBack";
587
+ readonly GOSPEL: "Gospel";
588
+ readonly REGIONAL: "Regional";
589
+ readonly VARIETY: "Variedades";
590
+ readonly CORPORATE: "Corporativo";
591
+ readonly GOVERNMENT: "Governamental";
592
+ readonly CHILDREN: "Infantil";
593
+ readonly HUMOR: "Humor";
594
+ readonly ENTERTAINMENT: "Entretenimento";
595
+ readonly CULTURAL: "Cultural";
596
+ readonly TALK: "Talk / Debate";
597
+ };
598
+ type ProgramSegmentTranslationsEnum = Enum<typeof ProgramSegmentTranslationsEnum>;
599
+
600
+ declare const ProgramAudienceEnum: {
601
+ readonly CHILDREN: "CHILDREN";
602
+ readonly TEENS: "TEENS";
603
+ readonly YOUNG_ADULTS: "YOUNG_ADULTS";
604
+ readonly ADULTS: "ADULTS";
605
+ readonly SENIORS: "SENIORS";
606
+ readonly FAMILY: "FAMILY";
607
+ readonly RURAL: "RURAL";
608
+ readonly URBAN: "URBAN";
609
+ readonly RELIGIOUS: "RELIGIOUS";
610
+ readonly GENERAL: "GENERAL";
611
+ };
612
+ type ProgramAudienceEnum = Enum<typeof ProgramAudienceEnum>;
613
+ declare const ProgramAudienceTranslationsEnum: {
614
+ readonly CHILDREN: "Infantil";
615
+ readonly TEENS: "Adolescentes";
616
+ readonly YOUNG_ADULTS: "Jovens adultos";
617
+ readonly ADULTS: "Adultos";
618
+ readonly SENIORS: "Idosos";
619
+ readonly FAMILY: "Família";
620
+ readonly RURAL: "Rural";
621
+ readonly URBAN: "Urbano";
622
+ readonly RELIGIOUS: "Religioso";
623
+ readonly GENERAL: "Geral";
624
+ };
625
+ type ProgramAudienceTranslation = Enum<typeof ProgramAudienceTranslationsEnum>;
626
+
627
+ declare const ProgramScriptElementCategoriesEnum: {
628
+ readonly VOICE_TRACK: "VOICE_TRACK";
629
+ readonly MUSIC: "MUSIC";
630
+ readonly VIGNETTE: "VIGNETTE";
631
+ };
632
+ type ProgramScriptElementCategoriesEnum = Enum<typeof ProgramScriptElementCategoriesEnum>;
633
+ declare const ProgramScriptElementCategoriesTranslationsEnum: {
634
+ readonly VOICE_TRACK: "Faixa de Voz";
635
+ readonly MUSIC: "Música";
636
+ readonly VIGNETTE: "Vinheta";
637
+ };
638
+ type ProgramScriptElementCategoriesTranslationEnum = Enum<typeof ProgramScriptElementCategoriesTranslationsEnum>;
639
+
640
+ declare const ProgramScriptElementTypesEnum: {
641
+ readonly OFF: "OFF";
642
+ readonly NEWS: "NEWS";
643
+ readonly MUSIC: "MUSIC";
644
+ readonly VIGNETTE_BLOCK_IN: "VIGNETTE_BLOCK_IN";
645
+ readonly VIGNETTE_BLOCK_OUT: "VIGNETTE_BLOCK_OUT";
646
+ readonly VIGNETTE_PROGRAM_IN: "VIGNETTE_PROGRAM_IN";
647
+ readonly VIGNETTE_PROGRAM_OUT: "VIGNETTE_PROGRAM_OUT";
648
+ };
649
+ type ProgramScriptElementTypesEnum = Enum<typeof ProgramScriptElementTypesEnum>;
650
+
651
+ declare const VignetteTypesEnum: {
652
+ readonly PROGRAM_IN: "PROGRAM_IN";
653
+ readonly PROGRAM_OUT: "PROGRAM_OUT";
654
+ readonly BLOCK_IN: "BLOCK_IN";
655
+ readonly BLOCK_OUT: "BLOCK_OUT";
656
+ readonly TRANSITION: "TRANSITION";
657
+ };
658
+ type VignetteTypesEnum = Enum<typeof VignetteTypesEnum>;
659
+ declare const VignetteTypesTranslationsEnum: {
660
+ readonly PROGRAM_IN: "INTRODUÇÃO DO PROGRAMA";
661
+ readonly PROGRAM_OUT: "ENCERRAMENTO DO PROGRAMA";
662
+ readonly BLOCK_IN: "VOLTA DO INTERVALO";
663
+ readonly BLOCK_OUT: "IDA PARA O INTERVALO";
664
+ readonly TRANSITION: "PASSAGEM";
665
+ };
666
+ type VignetteTypesTranslationEnum = Enum<typeof VignetteTypesTranslationsEnum>;
667
+
668
+ declare const SoundtrackStateEnum: {
669
+ readonly ON: "ON";
670
+ readonly OFF: "OFF";
671
+ };
672
+ type SoundtrackStateEnum = Enum<typeof SoundtrackStateEnum>;
673
+ declare const SoundtrackStateTranslationsEnum: {
674
+ readonly ON: "Com trilhas sonoras";
675
+ readonly OFF: "Sem trilhas sonoras";
676
+ };
677
+ type SoundtrackStateTranslationEnum = Enum<typeof SoundtrackStateTranslationsEnum>;
678
+
679
+ declare const RadioBandsEnum: {
680
+ readonly AM: "AM";
681
+ readonly FM: "FM";
682
+ };
683
+ type RadioBandsEnum = Enum<typeof RadioBandsEnum>;
684
+
685
+ declare const UserRolesEnum: {
686
+ readonly ADMIN: "ADMIN";
687
+ readonly STAFF: "STAFF";
688
+ };
689
+ type UserRolesEnum = Enum<typeof UserRolesEnum>;
690
+ declare const UserRolesTranslationsEnum: {
691
+ readonly ADMIN: "Administrador";
692
+ readonly STAFF: "Colaborador";
693
+ };
694
+ type UserRolesTranslationsEnum = Enum<typeof UserRolesTranslationsEnum>;
695
+
632
696
  declare const TtsProvidersEnum: {
633
697
  readonly FISH_AUDIO: "FISH_AUDIO";
634
698
  };
@@ -756,46 +820,14 @@ type ProgramScriptEntity = BaseEntity & {
756
820
 
757
821
  type ProgramScriptBlockEntity = BaseEntity & {
758
822
  position: number;
823
+ name: string;
759
824
  scriptId: string;
760
825
  script?: ProgramScriptEntity;
761
826
  elements: ProgramScriptBlockElementEntity[];
762
827
  };
763
828
 
764
- declare const ProgramScriptElementCategoriesEnum: {
765
- readonly VOICE_TRACK: "VOICE_TRACK";
766
- readonly MUSIC: "MUSIC";
767
- readonly VIGNETTE: "VIGNETTE";
768
- };
769
- type ProgramScriptElementCategoriesEnum = Enum<typeof ProgramScriptElementCategoriesEnum>;
770
-
771
- declare const ProgramScriptElementTypesEnum: {
772
- readonly OFF: "OFF";
773
- readonly NEWS: "NEWS";
774
- readonly MUSIC: "MUSIC";
775
- readonly VIGNETTE_BLOCK_IN: "VIGNETTE_BLOCK_IN";
776
- readonly VIGNETTE_BLOCK_OUT: "VIGNETTE_BLOCK_OUT";
777
- readonly VIGNETTE_PROGRAM_IN: "VIGNETTE_PROGRAM_IN";
778
- readonly VIGNETTE_PROGRAM_OUT: "VIGNETTE_PROGRAM_OUT";
779
- };
780
- type ProgramScriptElementTypesEnum = Enum<typeof ProgramScriptElementTypesEnum>;
781
-
782
- declare const VignetteTypesEnum: {
783
- readonly PROGRAM_IN: "PROGRAM_IN";
784
- readonly PROGRAM_OUT: "PROGRAM_OUT";
785
- readonly BLOCK_IN: "BLOCK_IN";
786
- readonly BLOCK_OUT: "BLOCK_OUT";
787
- readonly TRANSITION: "TRANSITION";
788
- };
789
- type VignetteTypesEnum = Enum<typeof VignetteTypesEnum>;
790
-
791
- declare const SoundtrackStateEnum: {
792
- readonly ON: "ON";
793
- readonly OFF: "OFF";
794
- };
795
- type SoundtrackStateEnum = Enum<typeof SoundtrackStateEnum>;
796
-
797
- type ProgramScriptBlockElementEntity = {
798
- id: string;
829
+ type ProgramScriptBlockElementEntity = BaseEntity & {
830
+ position: number;
799
831
  category: ProgramScriptElementCategoriesEnum;
800
832
  type: VignetteTypesEnum | VoiceTrackTypesEnum;
801
833
  soundtrack?: SoundtrackStateEnum | null;
@@ -804,6 +836,16 @@ type ProgramScriptBlockElementEntity = {
804
836
  block?: ProgramScriptBlockEntity;
805
837
  };
806
838
 
839
+ type ProgramScriptBlockTagEntity = BaseEntity & {
840
+ id: string;
841
+ positionStart: number;
842
+ positionEnd: number;
843
+ name: string;
844
+ color: string;
845
+ blockId: string;
846
+ block?: ProgramScriptBlockEntity;
847
+ };
848
+
807
849
  type ProgramDayScheduleEntity = BaseEntity & {
808
850
  weekDay: WeekDayEnum;
809
851
  isActive: boolean;
@@ -1243,6 +1285,32 @@ type ListLegalTermsParams = {
1243
1285
  };
1244
1286
  type ListLegalTermsResponse = PaginatedResponseDTO<LegalTermEntity>;
1245
1287
 
1288
+ type UpsertProgramScriptBlockTagsPayload = {
1289
+ id: string | null;
1290
+ positionStart: number;
1291
+ positionEnd: number;
1292
+ name: string;
1293
+ color: string;
1294
+ };
1295
+ type UpsertProgramScriptBlockElementPayload = {
1296
+ id: string | null;
1297
+ category: ProgramScriptElementCategoriesEnum;
1298
+ type: VignetteTypesEnum | VoiceTrackTypesEnum;
1299
+ soundtrack?: SoundtrackStateEnum | null;
1300
+ customColor?: string | null;
1301
+ };
1302
+ type UpsertProgramScriptBlockPayload = {
1303
+ id: string | null;
1304
+ name: string | null;
1305
+ elements: UpsertProgramScriptBlockElementPayload[];
1306
+ tags: UpsertProgramScriptBlockTagsPayload[];
1307
+ };
1308
+ type UpsertProgramScriptPayload = {
1309
+ name: string;
1310
+ weekDay: WeekDayEnum;
1311
+ blocks: UpsertProgramScriptBlockPayload[];
1312
+ };
1313
+
1246
1314
  type ListProgramsParams = PaginationParams & {
1247
1315
  radioId?: string;
1248
1316
  name?: string;
@@ -1494,6 +1562,7 @@ type EpisodeErrorEvt = {};
1494
1562
  type EpisodeProgressEvt = {};
1495
1563
 
1496
1564
  declare const PRICE_PER_PROGRAM_HOUR = 12000;
1565
+ declare const MAX_SCRIPT_BLOCKS = 30;
1497
1566
  declare const MIN_CASTER_SAMPLES_DURATION_IN_SECONDS = 30;
1498
1567
  declare const MAX_CASTER_SAMPLES_DURATION_IN_SECONDS = 270;
1499
1568
 
@@ -1505,4 +1574,4 @@ declare const TKPLAY_ERRORS__PTBR: TkplayMappedErrors__Ptbr;
1505
1574
 
1506
1575
  declare const TKPLAY_ERROR_MESSAGE_SPLITTER = "::";
1507
1576
 
1508
- 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 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 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, MIN_CASTER_SAMPLES_DURATION_IN_SECONDS, MusicCategoriesEnum, type MusicCategoriesTranslationEnum, MusicCategoriesTranslationsEnum, MusicSubGenresEnum, type MusicSubGenresTranslationEnum, MusicSubGenresTranslationsEnum, 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 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, 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 UpdateProgramVoicesPayload, 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, VoiceEnergyEnum, VoiceEnergyTranslationsEnum, VoiceGenderEnum, VoiceGenderTranslationsEnum, type VoiceProfileEntity, VoiceProfileSourcesEnum, VoiceProfileSourcesTranslationsEnum, type VoiceTrackEntity, VoiceTrackSourcesEnum, VoiceTrackSourcesTranslationsEnum, VoiceTrackStatusEnum, VoiceTrackStatusTranslationsEnum, VoiceTrackTypesEnum, VoiceTrackTypesTranslationsEnum, WeekDayEnum, WeekDayTranslationsEnum };
1577
+ 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 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 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 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 UpsertProgramScriptPayload, 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 };