@talkplay/shared-types 1.0.42 → 1.0.43
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 +2 -3
- package/dist/index.d.ts +2 -3
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -814,15 +814,13 @@ type UpdateRadioPayload = Partial<{
|
|
|
814
814
|
name: string;
|
|
815
815
|
fantasyName: string;
|
|
816
816
|
cnpj: string;
|
|
817
|
-
slogan: string;
|
|
818
|
-
prefix: string;
|
|
819
|
-
frequency: string;
|
|
820
817
|
band: RadioBandsEnum;
|
|
821
818
|
comercialEmail: string;
|
|
822
819
|
financialEmail: string;
|
|
823
820
|
wppNumber: string;
|
|
824
821
|
isActive: boolean;
|
|
825
822
|
address: Omit<AddressEntity, "id">;
|
|
823
|
+
profile: UpdateRadioProfilePayload;
|
|
826
824
|
}>;
|
|
827
825
|
|
|
828
826
|
type GetRadioDetailsResponse = RadioEntity & {
|
|
@@ -852,6 +850,7 @@ type ListRadiosResponse = PaginatedResponseDTO<Omit<RadioEntity, "logoImg" | "ad
|
|
|
852
850
|
logoImg: S3FileEntity | null;
|
|
853
851
|
address: AddressEntity;
|
|
854
852
|
subscription: RadioSubscriptionEntity;
|
|
853
|
+
radioProfile: RadioProfileEntity;
|
|
855
854
|
}>>;
|
|
856
855
|
|
|
857
856
|
type UpdateRadioProfilePayload = {
|
package/dist/index.d.ts
CHANGED
|
@@ -814,15 +814,13 @@ type UpdateRadioPayload = Partial<{
|
|
|
814
814
|
name: string;
|
|
815
815
|
fantasyName: string;
|
|
816
816
|
cnpj: string;
|
|
817
|
-
slogan: string;
|
|
818
|
-
prefix: string;
|
|
819
|
-
frequency: string;
|
|
820
817
|
band: RadioBandsEnum;
|
|
821
818
|
comercialEmail: string;
|
|
822
819
|
financialEmail: string;
|
|
823
820
|
wppNumber: string;
|
|
824
821
|
isActive: boolean;
|
|
825
822
|
address: Omit<AddressEntity, "id">;
|
|
823
|
+
profile: UpdateRadioProfilePayload;
|
|
826
824
|
}>;
|
|
827
825
|
|
|
828
826
|
type GetRadioDetailsResponse = RadioEntity & {
|
|
@@ -852,6 +850,7 @@ type ListRadiosResponse = PaginatedResponseDTO<Omit<RadioEntity, "logoImg" | "ad
|
|
|
852
850
|
logoImg: S3FileEntity | null;
|
|
853
851
|
address: AddressEntity;
|
|
854
852
|
subscription: RadioSubscriptionEntity;
|
|
853
|
+
radioProfile: RadioProfileEntity;
|
|
855
854
|
}>>;
|
|
856
855
|
|
|
857
856
|
type UpdateRadioProfilePayload = {
|