@talkplay/shared-types 1.0.35 → 1.0.36
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 -1
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -736,13 +736,14 @@ type ListRadiosParams = PaginationParams & {
|
|
|
736
736
|
cnpj?: string;
|
|
737
737
|
name?: string;
|
|
738
738
|
fantasyName?: string;
|
|
739
|
-
subscriptionStatus?: RadioSubscriptionStatusEnum;
|
|
740
739
|
comercialEmail?: string;
|
|
741
740
|
financialEmail?: string;
|
|
742
741
|
frequency?: string;
|
|
743
742
|
city?: string;
|
|
744
743
|
state?: BrStatesEnum;
|
|
745
744
|
country?: string;
|
|
745
|
+
subscriptionStatus?: RadioSubscriptionStatusEnum[];
|
|
746
|
+
isActive?: boolean;
|
|
746
747
|
};
|
|
747
748
|
type ListRadiosResponse = PaginatedResponseDTO<RadioEntity & {
|
|
748
749
|
logoImg: S3FileEntity | null;
|
package/dist/index.d.ts
CHANGED
|
@@ -736,13 +736,14 @@ type ListRadiosParams = PaginationParams & {
|
|
|
736
736
|
cnpj?: string;
|
|
737
737
|
name?: string;
|
|
738
738
|
fantasyName?: string;
|
|
739
|
-
subscriptionStatus?: RadioSubscriptionStatusEnum;
|
|
740
739
|
comercialEmail?: string;
|
|
741
740
|
financialEmail?: string;
|
|
742
741
|
frequency?: string;
|
|
743
742
|
city?: string;
|
|
744
743
|
state?: BrStatesEnum;
|
|
745
744
|
country?: string;
|
|
745
|
+
subscriptionStatus?: RadioSubscriptionStatusEnum[];
|
|
746
|
+
isActive?: boolean;
|
|
746
747
|
};
|
|
747
748
|
type ListRadiosResponse = PaginatedResponseDTO<RadioEntity & {
|
|
748
749
|
logoImg: S3FileEntity | null;
|