@talkplay/shared-types 1.0.90 → 1.0.92
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 +12 -12
- package/dist/index.d.ts +12 -12
- package/dist/index.js +10 -10
- package/dist/index.mjs +10 -10
- package/package.json +1 -1
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
|
|
653
|
-
readonly
|
|
654
|
-
readonly
|
|
655
|
-
readonly
|
|
656
|
-
readonly
|
|
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
|
|
661
|
-
readonly
|
|
662
|
-
readonly
|
|
663
|
-
readonly
|
|
664
|
-
readonly
|
|
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
|
|
|
@@ -812,7 +812,7 @@ type TkplayErrorEntity = {
|
|
|
812
812
|
};
|
|
813
813
|
|
|
814
814
|
type ProgramScriptEntity = BaseEntity & {
|
|
815
|
-
name: string;
|
|
815
|
+
name: string | null;
|
|
816
816
|
programId: string;
|
|
817
817
|
program: ProgramEntity;
|
|
818
818
|
programDayScheduleId: string;
|
|
@@ -1298,7 +1298,7 @@ type UpsertProgramScriptBlockTagsPayload = {
|
|
|
1298
1298
|
type UpsertProgramScriptBlockElementPayload = {
|
|
1299
1299
|
id: string | null;
|
|
1300
1300
|
category: ProgramScriptElementCategoriesEnum;
|
|
1301
|
-
type:
|
|
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
|
|
653
|
-
readonly
|
|
654
|
-
readonly
|
|
655
|
-
readonly
|
|
656
|
-
readonly
|
|
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
|
|
661
|
-
readonly
|
|
662
|
-
readonly
|
|
663
|
-
readonly
|
|
664
|
-
readonly
|
|
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
|
|
|
@@ -812,7 +812,7 @@ type TkplayErrorEntity = {
|
|
|
812
812
|
};
|
|
813
813
|
|
|
814
814
|
type ProgramScriptEntity = BaseEntity & {
|
|
815
|
-
name: string;
|
|
815
|
+
name: string | null;
|
|
816
816
|
programId: string;
|
|
817
817
|
program: ProgramEntity;
|
|
818
818
|
programDayScheduleId: string;
|
|
@@ -1298,7 +1298,7 @@ type UpsertProgramScriptBlockTagsPayload = {
|
|
|
1298
1298
|
type UpsertProgramScriptBlockElementPayload = {
|
|
1299
1299
|
id: string | null;
|
|
1300
1300
|
category: ProgramScriptElementCategoriesEnum;
|
|
1301
|
-
type:
|
|
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
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
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
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
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
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
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
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
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
|