@talkplay/shared-types 1.0.28 → 1.0.29
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 +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -802,7 +802,7 @@ type CreateLeadPayload = Omit<LeadEntity, "status" | keyof BaseEntity>;
|
|
|
802
802
|
type ListLeadsParams = PaginationParams & {
|
|
803
803
|
directorName?: string;
|
|
804
804
|
radioFantasyName?: string;
|
|
805
|
-
status?: LeadStatusEnum;
|
|
805
|
+
status?: LeadStatusEnum[];
|
|
806
806
|
};
|
|
807
807
|
type ListLeadsResponse = PaginatedResponseDTO<LeadEntity>;
|
|
808
808
|
|
package/dist/index.d.ts
CHANGED
|
@@ -802,7 +802,7 @@ type CreateLeadPayload = Omit<LeadEntity, "status" | keyof BaseEntity>;
|
|
|
802
802
|
type ListLeadsParams = PaginationParams & {
|
|
803
803
|
directorName?: string;
|
|
804
804
|
radioFantasyName?: string;
|
|
805
|
-
status?: LeadStatusEnum;
|
|
805
|
+
status?: LeadStatusEnum[];
|
|
806
806
|
};
|
|
807
807
|
type ListLeadsResponse = PaginatedResponseDTO<LeadEntity>;
|
|
808
808
|
|