@talkplay/shared-types 1.0.91 → 1.0.93

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 CHANGED
@@ -649,19 +649,19 @@ declare const ProgramScriptElementTypesEnum: {
649
649
  type ProgramScriptElementTypesEnum = Enum<typeof ProgramScriptElementTypesEnum>;
650
650
 
651
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";
652
+ readonly VIGNETTE_BLOCK_IN: "VIGNETTE_BLOCK_IN";
653
+ readonly VIGNETTE_BLOCK_OUT: "VIGNETTE_BLOCK_OUT";
654
+ readonly VIGNETTE_PROGRAM_IN: "VIGNETTE_PROGRAM_IN";
655
+ readonly VIGNETTE_PROGRAM_OUT: "VIGNETTE_PROGRAM_OUT";
656
+ readonly VIGNETTE_TRANSITION: "TRANSITION";
657
657
  };
658
658
  type VignetteTypesEnum = Enum<typeof VignetteTypesEnum>;
659
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";
660
+ readonly VIGNETTE_BLOCK_IN: "INTRODUÇÃO DO PROGRAMA";
661
+ readonly VIGNETTE_BLOCK_OUT: "ENCERRAMENTO DO PROGRAMA";
662
+ readonly VIGNETTE_PROGRAM_IN: "VOLTA DO INTERVALO";
663
+ readonly VIGNETTE_PROGRAM_OUT: "IDA PARA O INTERVALO";
664
+ readonly VIGNETTE_TRANSITION: "PASSAGEM";
665
665
  };
666
666
  type VignetteTypesTranslationEnum = Enum<typeof VignetteTypesTranslationsEnum>;
667
667
 
@@ -814,7 +814,7 @@ type TkplayErrorEntity = {
814
814
  type ProgramScriptEntity = BaseEntity & {
815
815
  name: string | null;
816
816
  programId: string;
817
- program: ProgramEntity;
817
+ program?: ProgramEntity;
818
818
  programDayScheduleId: string;
819
819
  day: ProgramDayScheduleEntity;
820
820
  blocks: ProgramScriptBlockEntity[];
@@ -1298,7 +1298,7 @@ type UpsertProgramScriptBlockTagsPayload = {
1298
1298
  type UpsertProgramScriptBlockElementPayload = {
1299
1299
  id: string | null;
1300
1300
  category: ProgramScriptElementCategoriesEnum;
1301
- type: VignetteTypesEnum | VoiceTrackTypesEnum;
1301
+ type: ProgramScriptElementTypesEnum;
1302
1302
  soundtrack?: SoundtrackStateEnum | null;
1303
1303
  customColor?: string | null;
1304
1304
  };
package/dist/index.d.ts CHANGED
@@ -649,19 +649,19 @@ declare const ProgramScriptElementTypesEnum: {
649
649
  type ProgramScriptElementTypesEnum = Enum<typeof ProgramScriptElementTypesEnum>;
650
650
 
651
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";
652
+ readonly VIGNETTE_BLOCK_IN: "VIGNETTE_BLOCK_IN";
653
+ readonly VIGNETTE_BLOCK_OUT: "VIGNETTE_BLOCK_OUT";
654
+ readonly VIGNETTE_PROGRAM_IN: "VIGNETTE_PROGRAM_IN";
655
+ readonly VIGNETTE_PROGRAM_OUT: "VIGNETTE_PROGRAM_OUT";
656
+ readonly VIGNETTE_TRANSITION: "TRANSITION";
657
657
  };
658
658
  type VignetteTypesEnum = Enum<typeof VignetteTypesEnum>;
659
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";
660
+ readonly VIGNETTE_BLOCK_IN: "INTRODUÇÃO DO PROGRAMA";
661
+ readonly VIGNETTE_BLOCK_OUT: "ENCERRAMENTO DO PROGRAMA";
662
+ readonly VIGNETTE_PROGRAM_IN: "VOLTA DO INTERVALO";
663
+ readonly VIGNETTE_PROGRAM_OUT: "IDA PARA O INTERVALO";
664
+ readonly VIGNETTE_TRANSITION: "PASSAGEM";
665
665
  };
666
666
  type VignetteTypesTranslationEnum = Enum<typeof VignetteTypesTranslationsEnum>;
667
667
 
@@ -814,7 +814,7 @@ type TkplayErrorEntity = {
814
814
  type ProgramScriptEntity = BaseEntity & {
815
815
  name: string | null;
816
816
  programId: string;
817
- program: ProgramEntity;
817
+ program?: ProgramEntity;
818
818
  programDayScheduleId: string;
819
819
  day: ProgramDayScheduleEntity;
820
820
  blocks: ProgramScriptBlockEntity[];
@@ -1298,7 +1298,7 @@ type UpsertProgramScriptBlockTagsPayload = {
1298
1298
  type UpsertProgramScriptBlockElementPayload = {
1299
1299
  id: string | null;
1300
1300
  category: ProgramScriptElementCategoriesEnum;
1301
- type: VignetteTypesEnum | VoiceTrackTypesEnum;
1301
+ type: ProgramScriptElementTypesEnum;
1302
1302
  soundtrack?: SoundtrackStateEnum | null;
1303
1303
  customColor?: string | null;
1304
1304
  };
package/dist/index.js CHANGED
@@ -775,18 +775,18 @@ var ProgramScriptElementTypesEnum = {
775
775
 
776
776
  // src/enums/program-scripts/vignette-types.ts
777
777
  var VignetteTypesEnum = {
778
- PROGRAM_IN: "PROGRAM_IN",
779
- PROGRAM_OUT: "PROGRAM_OUT",
780
- BLOCK_IN: "BLOCK_IN",
781
- BLOCK_OUT: "BLOCK_OUT",
782
- TRANSITION: "TRANSITION"
778
+ VIGNETTE_BLOCK_IN: "VIGNETTE_BLOCK_IN",
779
+ VIGNETTE_BLOCK_OUT: "VIGNETTE_BLOCK_OUT",
780
+ VIGNETTE_PROGRAM_IN: "VIGNETTE_PROGRAM_IN",
781
+ VIGNETTE_PROGRAM_OUT: "VIGNETTE_PROGRAM_OUT",
782
+ VIGNETTE_TRANSITION: "TRANSITION"
783
783
  };
784
784
  var VignetteTypesTranslationsEnum = {
785
- PROGRAM_IN: "INTRODU\xC7\xC3O DO PROGRAMA",
786
- PROGRAM_OUT: "ENCERRAMENTO DO PROGRAMA",
787
- BLOCK_IN: "VOLTA DO INTERVALO",
788
- BLOCK_OUT: "IDA PARA O INTERVALO",
789
- TRANSITION: "PASSAGEM"
785
+ VIGNETTE_BLOCK_IN: "INTRODU\xC7\xC3O DO PROGRAMA",
786
+ VIGNETTE_BLOCK_OUT: "ENCERRAMENTO DO PROGRAMA",
787
+ VIGNETTE_PROGRAM_IN: "VOLTA DO INTERVALO",
788
+ VIGNETTE_PROGRAM_OUT: "IDA PARA O INTERVALO",
789
+ VIGNETTE_TRANSITION: "PASSAGEM"
790
790
  };
791
791
 
792
792
  // src/enums/program-scripts/soundtrack-state.enum.ts
package/dist/index.mjs CHANGED
@@ -671,18 +671,18 @@ var ProgramScriptElementTypesEnum = {
671
671
 
672
672
  // src/enums/program-scripts/vignette-types.ts
673
673
  var VignetteTypesEnum = {
674
- PROGRAM_IN: "PROGRAM_IN",
675
- PROGRAM_OUT: "PROGRAM_OUT",
676
- BLOCK_IN: "BLOCK_IN",
677
- BLOCK_OUT: "BLOCK_OUT",
678
- TRANSITION: "TRANSITION"
674
+ VIGNETTE_BLOCK_IN: "VIGNETTE_BLOCK_IN",
675
+ VIGNETTE_BLOCK_OUT: "VIGNETTE_BLOCK_OUT",
676
+ VIGNETTE_PROGRAM_IN: "VIGNETTE_PROGRAM_IN",
677
+ VIGNETTE_PROGRAM_OUT: "VIGNETTE_PROGRAM_OUT",
678
+ VIGNETTE_TRANSITION: "TRANSITION"
679
679
  };
680
680
  var VignetteTypesTranslationsEnum = {
681
- PROGRAM_IN: "INTRODU\xC7\xC3O DO PROGRAMA",
682
- PROGRAM_OUT: "ENCERRAMENTO DO PROGRAMA",
683
- BLOCK_IN: "VOLTA DO INTERVALO",
684
- BLOCK_OUT: "IDA PARA O INTERVALO",
685
- TRANSITION: "PASSAGEM"
681
+ VIGNETTE_BLOCK_IN: "INTRODU\xC7\xC3O DO PROGRAMA",
682
+ VIGNETTE_BLOCK_OUT: "ENCERRAMENTO DO PROGRAMA",
683
+ VIGNETTE_PROGRAM_IN: "VOLTA DO INTERVALO",
684
+ VIGNETTE_PROGRAM_OUT: "IDA PARA O INTERVALO",
685
+ VIGNETTE_TRANSITION: "PASSAGEM"
686
686
  };
687
687
 
688
688
  // src/enums/program-scripts/soundtrack-state.enum.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@talkplay/shared-types",
3
- "version": "1.0.91",
3
+ "version": "1.0.93",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.mjs",
6
6
  "types": "./dist/index.d.ts",