@talkplay/shared-types 1.0.37 → 1.0.39
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 +3 -2
- package/dist/index.d.ts +3 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -722,7 +722,7 @@ type CreateRadioPayload = {
|
|
|
722
722
|
};
|
|
723
723
|
};
|
|
724
724
|
|
|
725
|
-
type UpdateRadioPayload = {
|
|
725
|
+
type UpdateRadioPayload = Partial<{
|
|
726
726
|
name: string;
|
|
727
727
|
fantasyName: string;
|
|
728
728
|
cnpj: string;
|
|
@@ -733,8 +733,9 @@ type UpdateRadioPayload = {
|
|
|
733
733
|
comercialEmail: string;
|
|
734
734
|
financialEmail: string;
|
|
735
735
|
wppNumber: string;
|
|
736
|
+
isActive: boolean;
|
|
736
737
|
address: Omit<AddressEntity, "id">;
|
|
737
|
-
}
|
|
738
|
+
}>;
|
|
738
739
|
|
|
739
740
|
type GetRadioDetailsResponse = RadioEntity & {
|
|
740
741
|
address: AddressEntity;
|
package/dist/index.d.ts
CHANGED
|
@@ -722,7 +722,7 @@ type CreateRadioPayload = {
|
|
|
722
722
|
};
|
|
723
723
|
};
|
|
724
724
|
|
|
725
|
-
type UpdateRadioPayload = {
|
|
725
|
+
type UpdateRadioPayload = Partial<{
|
|
726
726
|
name: string;
|
|
727
727
|
fantasyName: string;
|
|
728
728
|
cnpj: string;
|
|
@@ -733,8 +733,9 @@ type UpdateRadioPayload = {
|
|
|
733
733
|
comercialEmail: string;
|
|
734
734
|
financialEmail: string;
|
|
735
735
|
wppNumber: string;
|
|
736
|
+
isActive: boolean;
|
|
736
737
|
address: Omit<AddressEntity, "id">;
|
|
737
|
-
}
|
|
738
|
+
}>;
|
|
738
739
|
|
|
739
740
|
type GetRadioDetailsResponse = RadioEntity & {
|
|
740
741
|
address: AddressEntity;
|