@talkplay/shared-types 1.0.25 → 1.0.26
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 +8 -4
- package/dist/index.d.ts +8 -4
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -537,7 +537,12 @@ type UserLegalAgreementEntity = Pick<BaseEntity, "id"> & {
|
|
|
537
537
|
user?: RadioUserEntity;
|
|
538
538
|
};
|
|
539
539
|
|
|
540
|
-
type LeadEntity = BaseEntity &
|
|
540
|
+
type LeadEntity = BaseEntity & {
|
|
541
|
+
directorName: string;
|
|
542
|
+
radioFantasyName: string;
|
|
543
|
+
radioComercialEmail: string;
|
|
544
|
+
radioFinancialEmail: string;
|
|
545
|
+
radioWppNumber: string;
|
|
541
546
|
status: LeadStatusEnum;
|
|
542
547
|
};
|
|
543
548
|
|
|
@@ -787,9 +792,8 @@ type VerifyEmailAvailabilityResponse = {
|
|
|
787
792
|
type CreateLeadPayload = Omit<LeadEntity, "status" | keyof BaseEntity>;
|
|
788
793
|
|
|
789
794
|
type ListLeadsParams = PaginationParams & {
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
financialEmail?: string;
|
|
795
|
+
directorName?: string;
|
|
796
|
+
radioFantasyName?: string;
|
|
793
797
|
status?: LeadStatusEnum;
|
|
794
798
|
};
|
|
795
799
|
type ListLeadsResponse = PaginatedResponseDTO<LeadEntity>;
|
package/dist/index.d.ts
CHANGED
|
@@ -537,7 +537,12 @@ type UserLegalAgreementEntity = Pick<BaseEntity, "id"> & {
|
|
|
537
537
|
user?: RadioUserEntity;
|
|
538
538
|
};
|
|
539
539
|
|
|
540
|
-
type LeadEntity = BaseEntity &
|
|
540
|
+
type LeadEntity = BaseEntity & {
|
|
541
|
+
directorName: string;
|
|
542
|
+
radioFantasyName: string;
|
|
543
|
+
radioComercialEmail: string;
|
|
544
|
+
radioFinancialEmail: string;
|
|
545
|
+
radioWppNumber: string;
|
|
541
546
|
status: LeadStatusEnum;
|
|
542
547
|
};
|
|
543
548
|
|
|
@@ -787,9 +792,8 @@ type VerifyEmailAvailabilityResponse = {
|
|
|
787
792
|
type CreateLeadPayload = Omit<LeadEntity, "status" | keyof BaseEntity>;
|
|
788
793
|
|
|
789
794
|
type ListLeadsParams = PaginationParams & {
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
financialEmail?: string;
|
|
795
|
+
directorName?: string;
|
|
796
|
+
radioFantasyName?: string;
|
|
793
797
|
status?: LeadStatusEnum;
|
|
794
798
|
};
|
|
795
799
|
type ListLeadsResponse = PaginatedResponseDTO<LeadEntity>;
|