@leavittsoftware/lg-core-typescript 5.344.0 → 5.346.0
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/api3.leavitt.com.ts +2 -2
- package/lg.net.dynamics.ts +1 -1
- package/package.json +1 -1
package/api3.leavitt.com.ts
CHANGED
|
@@ -1800,8 +1800,8 @@ export interface CampaignDashboardPhoneContactDto {
|
|
|
1800
1800
|
BlockedByPersonId: number | null;
|
|
1801
1801
|
BlockedReason: string | null;
|
|
1802
1802
|
Id: number;
|
|
1803
|
-
IsArchived: boolean;
|
|
1804
|
-
IsUnsubscribed: boolean;
|
|
1803
|
+
IsArchived: boolean | null;
|
|
1804
|
+
IsUnsubscribed: boolean | null;
|
|
1805
1805
|
Name: string | null;
|
|
1806
1806
|
PhoneNumber: string;
|
|
1807
1807
|
UnsubscribedByPersonId: number | null;
|
package/lg.net.dynamics.ts
CHANGED
|
@@ -216,7 +216,7 @@ export interface Lead extends IEntity {
|
|
|
216
216
|
Address2Line3: string | null;
|
|
217
217
|
Address2PostalCode: string | null;
|
|
218
218
|
Address2StateOrProvince: string | null;
|
|
219
|
-
AnnualSales:
|
|
219
|
+
AnnualSales: number | null;
|
|
220
220
|
CompanyName: string | null;
|
|
221
221
|
CreatedOn: string | null;
|
|
222
222
|
Description: string | null;
|