@talkplay/shared-types 1.0.39 → 1.0.41
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 -6
- package/dist/index.d.ts +15 -6
- package/dist/index.js +13 -5
- package/dist/index.mjs +12 -5
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -111,12 +111,11 @@ declare const S3DirectoriesEnum: {
|
|
|
111
111
|
};
|
|
112
112
|
type S3DirectoriesEnum = Enum<typeof S3DirectoriesEnum>;
|
|
113
113
|
|
|
114
|
-
declare const
|
|
115
|
-
readonly
|
|
116
|
-
readonly
|
|
117
|
-
readonly OTHER: "OTHER";
|
|
114
|
+
declare const ChargeTypesEnum: {
|
|
115
|
+
readonly MONTHLY_ACCESS: "MONTHLY_ACCESS";
|
|
116
|
+
readonly PENALTY: "PENALTY";
|
|
118
117
|
};
|
|
119
|
-
type
|
|
118
|
+
type ChargeTypesEnum = Enum<typeof ChargeTypesEnum>;
|
|
120
119
|
|
|
121
120
|
declare const ChargeStatusEnum: {
|
|
122
121
|
readonly PAID: "PAID";
|
|
@@ -124,6 +123,13 @@ declare const ChargeStatusEnum: {
|
|
|
124
123
|
};
|
|
125
124
|
type ChargeStatusEnum = Enum<typeof ChargeStatusEnum>;
|
|
126
125
|
|
|
126
|
+
declare const ChargeItemTypesEnum: {
|
|
127
|
+
readonly MODULE: "MODULE";
|
|
128
|
+
readonly PROGRAM: "PROGRAM";
|
|
129
|
+
readonly OTHER: "OTHER";
|
|
130
|
+
};
|
|
131
|
+
type ChargeItemTypesEnum = Enum<typeof ChargeItemTypesEnum>;
|
|
132
|
+
|
|
127
133
|
declare const CouponTypesEnum: {
|
|
128
134
|
readonly VALUE_DISCOUNT: "VALUE_DISCOUNT";
|
|
129
135
|
readonly PERCENTAGE_DISCOUNT: "PERCENTAGE_DISCOUNT";
|
|
@@ -530,6 +536,7 @@ type ChargeEntity = BaseEntity & {
|
|
|
530
536
|
status: ChargeStatusEnum;
|
|
531
537
|
description: string;
|
|
532
538
|
value: number;
|
|
539
|
+
type: ChargeTypesEnum;
|
|
533
540
|
subscriptionId: string;
|
|
534
541
|
subscription?: RadioSubscriptionEntity;
|
|
535
542
|
couponActivationId?: string;
|
|
@@ -647,9 +654,11 @@ type PaginationParams = {
|
|
|
647
654
|
type ListChargesParams = PaginationParams & {
|
|
648
655
|
radioId?: string;
|
|
649
656
|
status?: ChargeStatusEnum;
|
|
657
|
+
type?: ChargeTypesEnum;
|
|
650
658
|
fromAt?: DateString;
|
|
651
659
|
toAt?: DateString;
|
|
652
660
|
};
|
|
661
|
+
type ListChargesResponse = PaginatedResponseDTO<ChargeEntity>;
|
|
653
662
|
|
|
654
663
|
type ListCouponsParams = PaginationParams & {
|
|
655
664
|
code?: string;
|
|
@@ -884,4 +893,4 @@ declare const TKPLAY_ERRORS__PTBR: TkplayMappedErrors__Ptbr;
|
|
|
884
893
|
|
|
885
894
|
declare const TKPLAY_ERROR_MESSAGE_SPLITTER = "::";
|
|
886
895
|
|
|
887
|
-
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 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, type VignetteProgramScriptElement };
|
|
896
|
+
export { type AddressEntity, AudioBitratesEnum, AudioFormatsEnum, AudioFrequenciesEnum, type BaseEntity, BrStatesEnum, type CasterAvatarEntity, type CasterEntity, type ChargeEntity, ChargeItemTypesEnum, ChargeStatusEnum, ChargeTypesEnum, 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 ListChargesResponse, 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 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, type VignetteProgramScriptElement };
|
package/dist/index.d.ts
CHANGED
|
@@ -111,12 +111,11 @@ declare const S3DirectoriesEnum: {
|
|
|
111
111
|
};
|
|
112
112
|
type S3DirectoriesEnum = Enum<typeof S3DirectoriesEnum>;
|
|
113
113
|
|
|
114
|
-
declare const
|
|
115
|
-
readonly
|
|
116
|
-
readonly
|
|
117
|
-
readonly OTHER: "OTHER";
|
|
114
|
+
declare const ChargeTypesEnum: {
|
|
115
|
+
readonly MONTHLY_ACCESS: "MONTHLY_ACCESS";
|
|
116
|
+
readonly PENALTY: "PENALTY";
|
|
118
117
|
};
|
|
119
|
-
type
|
|
118
|
+
type ChargeTypesEnum = Enum<typeof ChargeTypesEnum>;
|
|
120
119
|
|
|
121
120
|
declare const ChargeStatusEnum: {
|
|
122
121
|
readonly PAID: "PAID";
|
|
@@ -124,6 +123,13 @@ declare const ChargeStatusEnum: {
|
|
|
124
123
|
};
|
|
125
124
|
type ChargeStatusEnum = Enum<typeof ChargeStatusEnum>;
|
|
126
125
|
|
|
126
|
+
declare const ChargeItemTypesEnum: {
|
|
127
|
+
readonly MODULE: "MODULE";
|
|
128
|
+
readonly PROGRAM: "PROGRAM";
|
|
129
|
+
readonly OTHER: "OTHER";
|
|
130
|
+
};
|
|
131
|
+
type ChargeItemTypesEnum = Enum<typeof ChargeItemTypesEnum>;
|
|
132
|
+
|
|
127
133
|
declare const CouponTypesEnum: {
|
|
128
134
|
readonly VALUE_DISCOUNT: "VALUE_DISCOUNT";
|
|
129
135
|
readonly PERCENTAGE_DISCOUNT: "PERCENTAGE_DISCOUNT";
|
|
@@ -530,6 +536,7 @@ type ChargeEntity = BaseEntity & {
|
|
|
530
536
|
status: ChargeStatusEnum;
|
|
531
537
|
description: string;
|
|
532
538
|
value: number;
|
|
539
|
+
type: ChargeTypesEnum;
|
|
533
540
|
subscriptionId: string;
|
|
534
541
|
subscription?: RadioSubscriptionEntity;
|
|
535
542
|
couponActivationId?: string;
|
|
@@ -647,9 +654,11 @@ type PaginationParams = {
|
|
|
647
654
|
type ListChargesParams = PaginationParams & {
|
|
648
655
|
radioId?: string;
|
|
649
656
|
status?: ChargeStatusEnum;
|
|
657
|
+
type?: ChargeTypesEnum;
|
|
650
658
|
fromAt?: DateString;
|
|
651
659
|
toAt?: DateString;
|
|
652
660
|
};
|
|
661
|
+
type ListChargesResponse = PaginatedResponseDTO<ChargeEntity>;
|
|
653
662
|
|
|
654
663
|
type ListCouponsParams = PaginationParams & {
|
|
655
664
|
code?: string;
|
|
@@ -884,4 +893,4 @@ declare const TKPLAY_ERRORS__PTBR: TkplayMappedErrors__Ptbr;
|
|
|
884
893
|
|
|
885
894
|
declare const TKPLAY_ERROR_MESSAGE_SPLITTER = "::";
|
|
886
895
|
|
|
887
|
-
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 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, type VignetteProgramScriptElement };
|
|
896
|
+
export { type AddressEntity, AudioBitratesEnum, AudioFormatsEnum, AudioFrequenciesEnum, type BaseEntity, BrStatesEnum, type CasterAvatarEntity, type CasterEntity, type ChargeEntity, ChargeItemTypesEnum, ChargeStatusEnum, ChargeTypesEnum, 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 ListChargesResponse, 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 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, type VignetteProgramScriptElement };
|
package/dist/index.js
CHANGED
|
@@ -26,6 +26,7 @@ __export(index_exports, {
|
|
|
26
26
|
BrStatesEnum: () => BrStatesEnum,
|
|
27
27
|
ChargeItemTypesEnum: () => ChargeItemTypesEnum,
|
|
28
28
|
ChargeStatusEnum: () => ChargeStatusEnum,
|
|
29
|
+
ChargeTypesEnum: () => ChargeTypesEnum,
|
|
29
30
|
CouponTypesEnum: () => CouponTypesEnum,
|
|
30
31
|
CouponTypesTranslationsEnum: () => CouponTypesTranslationsEnum,
|
|
31
32
|
EpGenerationQualityEnum: () => EpGenerationQualityEnum,
|
|
@@ -70,11 +71,10 @@ var S3DirectoriesEnum = {
|
|
|
70
71
|
NEWS: "news"
|
|
71
72
|
};
|
|
72
73
|
|
|
73
|
-
// src/enums/billing/charge-
|
|
74
|
-
var
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
OTHER: "OTHER"
|
|
74
|
+
// src/enums/billing/charge-types.enum.ts
|
|
75
|
+
var ChargeTypesEnum = {
|
|
76
|
+
MONTHLY_ACCESS: "MONTHLY_ACCESS",
|
|
77
|
+
PENALTY: "PENALTY"
|
|
78
78
|
};
|
|
79
79
|
|
|
80
80
|
// src/enums/billing/charge-status.enum.ts
|
|
@@ -83,6 +83,13 @@ var ChargeStatusEnum = {
|
|
|
83
83
|
DELINQUENT: "DELINQUENT"
|
|
84
84
|
};
|
|
85
85
|
|
|
86
|
+
// src/enums/billing/charge-item-types.enum.ts
|
|
87
|
+
var ChargeItemTypesEnum = {
|
|
88
|
+
MODULE: "MODULE",
|
|
89
|
+
PROGRAM: "PROGRAM",
|
|
90
|
+
OTHER: "OTHER"
|
|
91
|
+
};
|
|
92
|
+
|
|
86
93
|
// src/enums/billing/coupon-types.enum.ts
|
|
87
94
|
var CouponTypesEnum = {
|
|
88
95
|
VALUE_DISCOUNT: "VALUE_DISCOUNT",
|
|
@@ -477,6 +484,7 @@ var TKPLAY_ERROR_MESSAGE_SPLITTER = "::";
|
|
|
477
484
|
BrStatesEnum,
|
|
478
485
|
ChargeItemTypesEnum,
|
|
479
486
|
ChargeStatusEnum,
|
|
487
|
+
ChargeTypesEnum,
|
|
480
488
|
CouponTypesEnum,
|
|
481
489
|
CouponTypesTranslationsEnum,
|
|
482
490
|
EpGenerationQualityEnum,
|
package/dist/index.mjs
CHANGED
|
@@ -13,11 +13,10 @@ var S3DirectoriesEnum = {
|
|
|
13
13
|
NEWS: "news"
|
|
14
14
|
};
|
|
15
15
|
|
|
16
|
-
// src/enums/billing/charge-
|
|
17
|
-
var
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
OTHER: "OTHER"
|
|
16
|
+
// src/enums/billing/charge-types.enum.ts
|
|
17
|
+
var ChargeTypesEnum = {
|
|
18
|
+
MONTHLY_ACCESS: "MONTHLY_ACCESS",
|
|
19
|
+
PENALTY: "PENALTY"
|
|
21
20
|
};
|
|
22
21
|
|
|
23
22
|
// src/enums/billing/charge-status.enum.ts
|
|
@@ -26,6 +25,13 @@ var ChargeStatusEnum = {
|
|
|
26
25
|
DELINQUENT: "DELINQUENT"
|
|
27
26
|
};
|
|
28
27
|
|
|
28
|
+
// src/enums/billing/charge-item-types.enum.ts
|
|
29
|
+
var ChargeItemTypesEnum = {
|
|
30
|
+
MODULE: "MODULE",
|
|
31
|
+
PROGRAM: "PROGRAM",
|
|
32
|
+
OTHER: "OTHER"
|
|
33
|
+
};
|
|
34
|
+
|
|
29
35
|
// src/enums/billing/coupon-types.enum.ts
|
|
30
36
|
var CouponTypesEnum = {
|
|
31
37
|
VALUE_DISCOUNT: "VALUE_DISCOUNT",
|
|
@@ -419,6 +425,7 @@ export {
|
|
|
419
425
|
BrStatesEnum,
|
|
420
426
|
ChargeItemTypesEnum,
|
|
421
427
|
ChargeStatusEnum,
|
|
428
|
+
ChargeTypesEnum,
|
|
422
429
|
CouponTypesEnum,
|
|
423
430
|
CouponTypesTranslationsEnum,
|
|
424
431
|
EpGenerationQualityEnum,
|