@talkplay/shared-types 1.0.34 → 1.0.35
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 +15 -2
- package/dist/index.d.ts +15 -2
- package/dist/index.js +9 -0
- package/dist/index.mjs +8 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -145,6 +145,14 @@ declare const RadioSubscriptionStatusEnum: {
|
|
|
145
145
|
readonly INACTIVE: "INACTIVE";
|
|
146
146
|
};
|
|
147
147
|
type RadioSubscriptionStatusEnum = Enum<typeof RadioSubscriptionStatusEnum>;
|
|
148
|
+
declare const RadioSubscriptionStatusTranslationsEnum: {
|
|
149
|
+
readonly TRIAL: "Período de teste";
|
|
150
|
+
readonly ACTIVE: "Ativa";
|
|
151
|
+
readonly OVERDUE: "Pagamento em atraso";
|
|
152
|
+
readonly DELINQUENT: "Inadimplente";
|
|
153
|
+
readonly INACTIVE: "Inativa";
|
|
154
|
+
};
|
|
155
|
+
type RadioSubscriptionStatusTranslationsEnum = Enum<typeof RadioSubscriptionStatusTranslationsEnum>;
|
|
148
156
|
|
|
149
157
|
declare const EpGenerationQualityEnum: {
|
|
150
158
|
readonly DEFAULT: "DEFAULT";
|
|
@@ -504,6 +512,7 @@ type RadioEntity = BaseEntity & {
|
|
|
504
512
|
logoImg?: S3FileEntity | null;
|
|
505
513
|
addressId: string;
|
|
506
514
|
address?: AddressEntity;
|
|
515
|
+
subscription?: RadioSubscriptionEntity;
|
|
507
516
|
};
|
|
508
517
|
|
|
509
518
|
type RadioSubscriptionEntity = BaseEntity & {
|
|
@@ -735,7 +744,11 @@ type ListRadiosParams = PaginationParams & {
|
|
|
735
744
|
state?: BrStatesEnum;
|
|
736
745
|
country?: string;
|
|
737
746
|
};
|
|
738
|
-
type ListRadiosResponse = PaginatedResponseDTO<RadioEntity
|
|
747
|
+
type ListRadiosResponse = PaginatedResponseDTO<RadioEntity & {
|
|
748
|
+
logoImg: S3FileEntity | null;
|
|
749
|
+
address: AddressEntity;
|
|
750
|
+
subscription: RadioSubscriptionEntity;
|
|
751
|
+
}>;
|
|
739
752
|
|
|
740
753
|
type UpsertPlanPayload = {
|
|
741
754
|
name: string;
|
|
@@ -855,4 +868,4 @@ declare const TKPLAY_ERRORS__PTBR: TkplayMappedErrors__Ptbr;
|
|
|
855
868
|
|
|
856
869
|
declare const TKPLAY_ERROR_MESSAGE_SPLITTER = "::";
|
|
857
870
|
|
|
858
|
-
export { type AddressEntity, AudioBitratesEnum, AudioFormatsEnum, AudioFrequenciesEnum, type BaseEntity, BrStatesEnum, type CasterAvatarEntity, type CasterEntity, type ChargeEntity, ChargeItemTypesEnum, ChargeStatusEnum, type CouponActivationEntity, type CouponEntity, CouponTypesEnum, CouponTypesTranslationsEnum, type CreateCouponPayload, type CreateCouponResponse, type CreateLandingPageLeadPayload, type CreateLegalTermAgreementPayload, type CreateLegalTermPayload, type CreateLegalTermResponse, type CreateRadioPayload, type CreateRadioUserPayload, type CreateRadioUserResponse, type CreateSignupLeadPayload, type CreateSystemUserPayload, type Enum, EpGenerationQualityEnum, EpGenerationTypesEnum, type EpisodeCreatedEvt, type EpisodeErrorEvt, type EpisodeProgressEvt, FFmpegAudioCurveEnum, type GenerateEpJobPayload, type GenerateEpisodePayload, type GenerateEpisodeResponse, type GetCouponByIdResponse, type GetCouponValidationResponse, type GetPenaltyValueResponse, type GetRadioDetailsResponse, JobsEnum, type LeadEntity, LeadStatusEnum, LeadStatusTranslationsEnum, LeadTypesEnum, LeadTypesTranslationsEnum, type LegalTermEntity, LegalTermTypesEnum, LegalTermTypesTranslationsEnum, type ListChargesParams, type ListCouponsParams, type ListCouponsResponse, type ListLeadsParams, type ListLeadsResponse, type ListLegalTermsParams, type ListLegalTermsResponse, type ListRadioUsersParams, type ListRadioUsersResponse, type ListRadiosParams, type ListRadiosResponse, type ListSystemModulesResponse, type ListSystemUsersParams, type ListSystemUsersResponse, type LoginPayload, type LoginResponse, type MusicProgramScriptElement, NewsCategoriesEnum, type NewsProgramScriptElement, type NewsProgramScriptElementOptions, type OffProgramScriptElement, type PaginatedResponseDTO, type Pagination, type PaginationParams, type PlanEntity, type PopulatedProgramScriptBlock, type PopulatedProgramScriptElement, type PopulatedProgramScriptEntity, type ProgramEntity, type ProgramEpisodeBlockEntity, type ProgramEpisodeEntity, type ProgramScriptElement, type ProgramScriptElementOptionsAll, ProgramScriptElementTypesEnum, type ProgramScriptEntity, RadioBandsEnum, type RadioContractEntity, type RadioEntity, type RadioLegalAgreementEntity, type RadioLogoEntity, type RadioSubscriptionEntity, RadioSubscriptionStatusEnum, type RadioUserAvatarEntity, type RadioUserEntity, S3DirectoriesEnum, type S3FileEntity, type ScriptBlock, type SessionEntity, SessionTypesEnum, type SessionUser, type SoundtrackProgramScriptElementOptions, type SystemModuleEntity, type SystemUserEntity, TKPLAY_ERRORS_MAP, TKPLAY_ERRORS__PTBR, TKPLAY_ERROR_MESSAGE_SPLITTER, TkplayErrorCodesEnum, type TkplayErrorEntity, TkplayErrorNamesEnum, type TkplayMappedErrors, type TkplayMappedErrors__Ptbr, type UpdateCouponPayload, type UpdateCouponResponse, type UpdateLandingPageLeadPayload, type UpdateRadioUserPasswordPayload, type UpdateRadioUserProfilePayload, type UpdateRadioUserResponse, type UpdateRadioUserRolePayload, type UpdateSignupLeadPayload, type UpdateSystemUserPaswordPayload, type UpdateSystemUserPayload, type UpdateSystemUserResponse, type UpsertPlanPayload, type UpsertPlanResponse, type UpsertSystemModulePayload, type UpsertSystemModuleResponse, type UpsertSystemUserResponse, type UserLegalAgreementEntity, UserRolesEnum, UserRolesTranslationsEnum, type VerifyEmailAvailabilityResponse, type VignetteProgramScriptElement };
|
|
871
|
+
export { type AddressEntity, AudioBitratesEnum, AudioFormatsEnum, AudioFrequenciesEnum, type BaseEntity, BrStatesEnum, type CasterAvatarEntity, type CasterEntity, type ChargeEntity, ChargeItemTypesEnum, ChargeStatusEnum, type CouponActivationEntity, type CouponEntity, CouponTypesEnum, CouponTypesTranslationsEnum, type CreateCouponPayload, type CreateCouponResponse, type CreateLandingPageLeadPayload, type CreateLegalTermAgreementPayload, type CreateLegalTermPayload, type CreateLegalTermResponse, type CreateRadioPayload, type CreateRadioUserPayload, type CreateRadioUserResponse, type CreateSignupLeadPayload, type CreateSystemUserPayload, type Enum, EpGenerationQualityEnum, EpGenerationTypesEnum, type EpisodeCreatedEvt, type EpisodeErrorEvt, type EpisodeProgressEvt, FFmpegAudioCurveEnum, type GenerateEpJobPayload, type GenerateEpisodePayload, type GenerateEpisodeResponse, type GetCouponByIdResponse, type GetCouponValidationResponse, type GetPenaltyValueResponse, type GetRadioDetailsResponse, JobsEnum, type LeadEntity, LeadStatusEnum, LeadStatusTranslationsEnum, LeadTypesEnum, LeadTypesTranslationsEnum, type LegalTermEntity, LegalTermTypesEnum, LegalTermTypesTranslationsEnum, type ListChargesParams, type ListCouponsParams, type ListCouponsResponse, type ListLeadsParams, type ListLeadsResponse, type ListLegalTermsParams, type ListLegalTermsResponse, type ListRadioUsersParams, type ListRadioUsersResponse, type ListRadiosParams, type ListRadiosResponse, type ListSystemModulesResponse, type ListSystemUsersParams, type ListSystemUsersResponse, type LoginPayload, type LoginResponse, type MusicProgramScriptElement, NewsCategoriesEnum, type NewsProgramScriptElement, type NewsProgramScriptElementOptions, type OffProgramScriptElement, type PaginatedResponseDTO, type Pagination, type PaginationParams, type PlanEntity, type PopulatedProgramScriptBlock, type PopulatedProgramScriptElement, type PopulatedProgramScriptEntity, type ProgramEntity, type ProgramEpisodeBlockEntity, type ProgramEpisodeEntity, type ProgramScriptElement, type ProgramScriptElementOptionsAll, ProgramScriptElementTypesEnum, type ProgramScriptEntity, RadioBandsEnum, type RadioContractEntity, type RadioEntity, type RadioLegalAgreementEntity, type RadioLogoEntity, type RadioSubscriptionEntity, RadioSubscriptionStatusEnum, RadioSubscriptionStatusTranslationsEnum, type RadioUserAvatarEntity, type RadioUserEntity, S3DirectoriesEnum, type S3FileEntity, type ScriptBlock, type SessionEntity, SessionTypesEnum, type SessionUser, type SoundtrackProgramScriptElementOptions, type SystemModuleEntity, type SystemUserEntity, TKPLAY_ERRORS_MAP, TKPLAY_ERRORS__PTBR, TKPLAY_ERROR_MESSAGE_SPLITTER, TkplayErrorCodesEnum, type TkplayErrorEntity, TkplayErrorNamesEnum, type TkplayMappedErrors, type TkplayMappedErrors__Ptbr, type UpdateCouponPayload, type UpdateCouponResponse, type UpdateLandingPageLeadPayload, type UpdateRadioUserPasswordPayload, type UpdateRadioUserProfilePayload, type UpdateRadioUserResponse, type UpdateRadioUserRolePayload, type UpdateSignupLeadPayload, type UpdateSystemUserPaswordPayload, type UpdateSystemUserPayload, type UpdateSystemUserResponse, type UpsertPlanPayload, type UpsertPlanResponse, type UpsertSystemModulePayload, type UpsertSystemModuleResponse, type UpsertSystemUserResponse, type UserLegalAgreementEntity, UserRolesEnum, UserRolesTranslationsEnum, type VerifyEmailAvailabilityResponse, type VignetteProgramScriptElement };
|
package/dist/index.d.ts
CHANGED
|
@@ -145,6 +145,14 @@ declare const RadioSubscriptionStatusEnum: {
|
|
|
145
145
|
readonly INACTIVE: "INACTIVE";
|
|
146
146
|
};
|
|
147
147
|
type RadioSubscriptionStatusEnum = Enum<typeof RadioSubscriptionStatusEnum>;
|
|
148
|
+
declare const RadioSubscriptionStatusTranslationsEnum: {
|
|
149
|
+
readonly TRIAL: "Período de teste";
|
|
150
|
+
readonly ACTIVE: "Ativa";
|
|
151
|
+
readonly OVERDUE: "Pagamento em atraso";
|
|
152
|
+
readonly DELINQUENT: "Inadimplente";
|
|
153
|
+
readonly INACTIVE: "Inativa";
|
|
154
|
+
};
|
|
155
|
+
type RadioSubscriptionStatusTranslationsEnum = Enum<typeof RadioSubscriptionStatusTranslationsEnum>;
|
|
148
156
|
|
|
149
157
|
declare const EpGenerationQualityEnum: {
|
|
150
158
|
readonly DEFAULT: "DEFAULT";
|
|
@@ -504,6 +512,7 @@ type RadioEntity = BaseEntity & {
|
|
|
504
512
|
logoImg?: S3FileEntity | null;
|
|
505
513
|
addressId: string;
|
|
506
514
|
address?: AddressEntity;
|
|
515
|
+
subscription?: RadioSubscriptionEntity;
|
|
507
516
|
};
|
|
508
517
|
|
|
509
518
|
type RadioSubscriptionEntity = BaseEntity & {
|
|
@@ -735,7 +744,11 @@ type ListRadiosParams = PaginationParams & {
|
|
|
735
744
|
state?: BrStatesEnum;
|
|
736
745
|
country?: string;
|
|
737
746
|
};
|
|
738
|
-
type ListRadiosResponse = PaginatedResponseDTO<RadioEntity
|
|
747
|
+
type ListRadiosResponse = PaginatedResponseDTO<RadioEntity & {
|
|
748
|
+
logoImg: S3FileEntity | null;
|
|
749
|
+
address: AddressEntity;
|
|
750
|
+
subscription: RadioSubscriptionEntity;
|
|
751
|
+
}>;
|
|
739
752
|
|
|
740
753
|
type UpsertPlanPayload = {
|
|
741
754
|
name: string;
|
|
@@ -855,4 +868,4 @@ declare const TKPLAY_ERRORS__PTBR: TkplayMappedErrors__Ptbr;
|
|
|
855
868
|
|
|
856
869
|
declare const TKPLAY_ERROR_MESSAGE_SPLITTER = "::";
|
|
857
870
|
|
|
858
|
-
export { type AddressEntity, AudioBitratesEnum, AudioFormatsEnum, AudioFrequenciesEnum, type BaseEntity, BrStatesEnum, type CasterAvatarEntity, type CasterEntity, type ChargeEntity, ChargeItemTypesEnum, ChargeStatusEnum, type CouponActivationEntity, type CouponEntity, CouponTypesEnum, CouponTypesTranslationsEnum, type CreateCouponPayload, type CreateCouponResponse, type CreateLandingPageLeadPayload, type CreateLegalTermAgreementPayload, type CreateLegalTermPayload, type CreateLegalTermResponse, type CreateRadioPayload, type CreateRadioUserPayload, type CreateRadioUserResponse, type CreateSignupLeadPayload, type CreateSystemUserPayload, type Enum, EpGenerationQualityEnum, EpGenerationTypesEnum, type EpisodeCreatedEvt, type EpisodeErrorEvt, type EpisodeProgressEvt, FFmpegAudioCurveEnum, type GenerateEpJobPayload, type GenerateEpisodePayload, type GenerateEpisodeResponse, type GetCouponByIdResponse, type GetCouponValidationResponse, type GetPenaltyValueResponse, type GetRadioDetailsResponse, JobsEnum, type LeadEntity, LeadStatusEnum, LeadStatusTranslationsEnum, LeadTypesEnum, LeadTypesTranslationsEnum, type LegalTermEntity, LegalTermTypesEnum, LegalTermTypesTranslationsEnum, type ListChargesParams, type ListCouponsParams, type ListCouponsResponse, type ListLeadsParams, type ListLeadsResponse, type ListLegalTermsParams, type ListLegalTermsResponse, type ListRadioUsersParams, type ListRadioUsersResponse, type ListRadiosParams, type ListRadiosResponse, type ListSystemModulesResponse, type ListSystemUsersParams, type ListSystemUsersResponse, type LoginPayload, type LoginResponse, type MusicProgramScriptElement, NewsCategoriesEnum, type NewsProgramScriptElement, type NewsProgramScriptElementOptions, type OffProgramScriptElement, type PaginatedResponseDTO, type Pagination, type PaginationParams, type PlanEntity, type PopulatedProgramScriptBlock, type PopulatedProgramScriptElement, type PopulatedProgramScriptEntity, type ProgramEntity, type ProgramEpisodeBlockEntity, type ProgramEpisodeEntity, type ProgramScriptElement, type ProgramScriptElementOptionsAll, ProgramScriptElementTypesEnum, type ProgramScriptEntity, RadioBandsEnum, type RadioContractEntity, type RadioEntity, type RadioLegalAgreementEntity, type RadioLogoEntity, type RadioSubscriptionEntity, RadioSubscriptionStatusEnum, type RadioUserAvatarEntity, type RadioUserEntity, S3DirectoriesEnum, type S3FileEntity, type ScriptBlock, type SessionEntity, SessionTypesEnum, type SessionUser, type SoundtrackProgramScriptElementOptions, type SystemModuleEntity, type SystemUserEntity, TKPLAY_ERRORS_MAP, TKPLAY_ERRORS__PTBR, TKPLAY_ERROR_MESSAGE_SPLITTER, TkplayErrorCodesEnum, type TkplayErrorEntity, TkplayErrorNamesEnum, type TkplayMappedErrors, type TkplayMappedErrors__Ptbr, type UpdateCouponPayload, type UpdateCouponResponse, type UpdateLandingPageLeadPayload, type UpdateRadioUserPasswordPayload, type UpdateRadioUserProfilePayload, type UpdateRadioUserResponse, type UpdateRadioUserRolePayload, type UpdateSignupLeadPayload, type UpdateSystemUserPaswordPayload, type UpdateSystemUserPayload, type UpdateSystemUserResponse, type UpsertPlanPayload, type UpsertPlanResponse, type UpsertSystemModulePayload, type UpsertSystemModuleResponse, type UpsertSystemUserResponse, type UserLegalAgreementEntity, UserRolesEnum, UserRolesTranslationsEnum, type VerifyEmailAvailabilityResponse, type VignetteProgramScriptElement };
|
|
871
|
+
export { type AddressEntity, AudioBitratesEnum, AudioFormatsEnum, AudioFrequenciesEnum, type BaseEntity, BrStatesEnum, type CasterAvatarEntity, type CasterEntity, type ChargeEntity, ChargeItemTypesEnum, ChargeStatusEnum, type CouponActivationEntity, type CouponEntity, CouponTypesEnum, CouponTypesTranslationsEnum, type CreateCouponPayload, type CreateCouponResponse, type CreateLandingPageLeadPayload, type CreateLegalTermAgreementPayload, type CreateLegalTermPayload, type CreateLegalTermResponse, type CreateRadioPayload, type CreateRadioUserPayload, type CreateRadioUserResponse, type CreateSignupLeadPayload, type CreateSystemUserPayload, type Enum, EpGenerationQualityEnum, EpGenerationTypesEnum, type EpisodeCreatedEvt, type EpisodeErrorEvt, type EpisodeProgressEvt, FFmpegAudioCurveEnum, type GenerateEpJobPayload, type GenerateEpisodePayload, type GenerateEpisodeResponse, type GetCouponByIdResponse, type GetCouponValidationResponse, type GetPenaltyValueResponse, type GetRadioDetailsResponse, JobsEnum, type LeadEntity, LeadStatusEnum, LeadStatusTranslationsEnum, LeadTypesEnum, LeadTypesTranslationsEnum, type LegalTermEntity, LegalTermTypesEnum, LegalTermTypesTranslationsEnum, type ListChargesParams, type ListCouponsParams, type ListCouponsResponse, type ListLeadsParams, type ListLeadsResponse, type ListLegalTermsParams, type ListLegalTermsResponse, type ListRadioUsersParams, type ListRadioUsersResponse, type ListRadiosParams, type ListRadiosResponse, type ListSystemModulesResponse, type ListSystemUsersParams, type ListSystemUsersResponse, type LoginPayload, type LoginResponse, type MusicProgramScriptElement, NewsCategoriesEnum, type NewsProgramScriptElement, type NewsProgramScriptElementOptions, type OffProgramScriptElement, type PaginatedResponseDTO, type Pagination, type PaginationParams, type PlanEntity, type PopulatedProgramScriptBlock, type PopulatedProgramScriptElement, type PopulatedProgramScriptEntity, type ProgramEntity, type ProgramEpisodeBlockEntity, type ProgramEpisodeEntity, type ProgramScriptElement, type ProgramScriptElementOptionsAll, ProgramScriptElementTypesEnum, type ProgramScriptEntity, RadioBandsEnum, type RadioContractEntity, type RadioEntity, type RadioLegalAgreementEntity, type RadioLogoEntity, type RadioSubscriptionEntity, RadioSubscriptionStatusEnum, RadioSubscriptionStatusTranslationsEnum, type RadioUserAvatarEntity, type RadioUserEntity, S3DirectoriesEnum, type S3FileEntity, type ScriptBlock, type SessionEntity, SessionTypesEnum, type SessionUser, type SoundtrackProgramScriptElementOptions, type SystemModuleEntity, type SystemUserEntity, TKPLAY_ERRORS_MAP, TKPLAY_ERRORS__PTBR, TKPLAY_ERROR_MESSAGE_SPLITTER, TkplayErrorCodesEnum, type TkplayErrorEntity, TkplayErrorNamesEnum, type TkplayMappedErrors, type TkplayMappedErrors__Ptbr, type UpdateCouponPayload, type UpdateCouponResponse, type UpdateLandingPageLeadPayload, type UpdateRadioUserPasswordPayload, type UpdateRadioUserProfilePayload, type UpdateRadioUserResponse, type UpdateRadioUserRolePayload, type UpdateSignupLeadPayload, type UpdateSystemUserPaswordPayload, type UpdateSystemUserPayload, type UpdateSystemUserResponse, type UpsertPlanPayload, type UpsertPlanResponse, type UpsertSystemModulePayload, type UpsertSystemModuleResponse, type UpsertSystemUserResponse, type UserLegalAgreementEntity, UserRolesEnum, UserRolesTranslationsEnum, type VerifyEmailAvailabilityResponse, type VignetteProgramScriptElement };
|
package/dist/index.js
CHANGED
|
@@ -42,6 +42,7 @@ __export(index_exports, {
|
|
|
42
42
|
ProgramScriptElementTypesEnum: () => ProgramScriptElementTypesEnum,
|
|
43
43
|
RadioBandsEnum: () => RadioBandsEnum,
|
|
44
44
|
RadioSubscriptionStatusEnum: () => RadioSubscriptionStatusEnum,
|
|
45
|
+
RadioSubscriptionStatusTranslationsEnum: () => RadioSubscriptionStatusTranslationsEnum,
|
|
45
46
|
S3DirectoriesEnum: () => S3DirectoriesEnum,
|
|
46
47
|
SessionTypesEnum: () => SessionTypesEnum,
|
|
47
48
|
TKPLAY_ERRORS_MAP: () => TKPLAY_ERRORS_MAP,
|
|
@@ -102,6 +103,13 @@ var RadioSubscriptionStatusEnum = {
|
|
|
102
103
|
DELINQUENT: "DELINQUENT",
|
|
103
104
|
INACTIVE: "INACTIVE"
|
|
104
105
|
};
|
|
106
|
+
var RadioSubscriptionStatusTranslationsEnum = {
|
|
107
|
+
TRIAL: "Per\xEDodo de teste",
|
|
108
|
+
ACTIVE: "Ativa",
|
|
109
|
+
OVERDUE: "Pagamento em atraso",
|
|
110
|
+
DELINQUENT: "Inadimplente",
|
|
111
|
+
INACTIVE: "Inativa"
|
|
112
|
+
};
|
|
105
113
|
|
|
106
114
|
// src/enums/commom/br-states.enum.ts
|
|
107
115
|
var BrStatesEnum = {
|
|
@@ -485,6 +493,7 @@ var TKPLAY_ERROR_MESSAGE_SPLITTER = "::";
|
|
|
485
493
|
ProgramScriptElementTypesEnum,
|
|
486
494
|
RadioBandsEnum,
|
|
487
495
|
RadioSubscriptionStatusEnum,
|
|
496
|
+
RadioSubscriptionStatusTranslationsEnum,
|
|
488
497
|
S3DirectoriesEnum,
|
|
489
498
|
SessionTypesEnum,
|
|
490
499
|
TKPLAY_ERRORS_MAP,
|
package/dist/index.mjs
CHANGED
|
@@ -46,6 +46,13 @@ var RadioSubscriptionStatusEnum = {
|
|
|
46
46
|
DELINQUENT: "DELINQUENT",
|
|
47
47
|
INACTIVE: "INACTIVE"
|
|
48
48
|
};
|
|
49
|
+
var RadioSubscriptionStatusTranslationsEnum = {
|
|
50
|
+
TRIAL: "Per\xEDodo de teste",
|
|
51
|
+
ACTIVE: "Ativa",
|
|
52
|
+
OVERDUE: "Pagamento em atraso",
|
|
53
|
+
DELINQUENT: "Inadimplente",
|
|
54
|
+
INACTIVE: "Inativa"
|
|
55
|
+
};
|
|
49
56
|
|
|
50
57
|
// src/enums/commom/br-states.enum.ts
|
|
51
58
|
var BrStatesEnum = {
|
|
@@ -428,6 +435,7 @@ export {
|
|
|
428
435
|
ProgramScriptElementTypesEnum,
|
|
429
436
|
RadioBandsEnum,
|
|
430
437
|
RadioSubscriptionStatusEnum,
|
|
438
|
+
RadioSubscriptionStatusTranslationsEnum,
|
|
431
439
|
S3DirectoriesEnum,
|
|
432
440
|
SessionTypesEnum,
|
|
433
441
|
TKPLAY_ERRORS_MAP,
|