@leavittsoftware/lg-core-typescript 5.66.0 → 5.67.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 +16 -16
- package/package.json +1 -1
package/api3.leavitt.com.ts
CHANGED
|
@@ -3301,34 +3301,34 @@ export interface UpdateDocumentDto {
|
|
|
3301
3301
|
}
|
|
3302
3302
|
|
|
3303
3303
|
export interface CreateSoldPlanDto {
|
|
3304
|
-
Admin: number;
|
|
3304
|
+
Admin: number | null;
|
|
3305
3305
|
BenefitPointAccountId: number | null;
|
|
3306
3306
|
BillingType: BenefitPointBillingTypeString;
|
|
3307
|
-
BusinessType: BenefitPointBusinessTypeString;
|
|
3307
|
+
BusinessType: BenefitPointBusinessTypeString | null;
|
|
3308
3308
|
CarrierId: number;
|
|
3309
3309
|
CarrierName: string;
|
|
3310
|
-
City: string;
|
|
3310
|
+
City: string | null;
|
|
3311
3311
|
CommissionFee: number;
|
|
3312
3312
|
EffectiveDate: string;
|
|
3313
|
-
HippaAgreementRequired: boolean;
|
|
3314
|
-
MarketSize: BenefitPointEmployerMarketSizeString;
|
|
3313
|
+
HippaAgreementRequired: boolean | null;
|
|
3314
|
+
MarketSize: BenefitPointEmployerMarketSizeString | null;
|
|
3315
3315
|
MonthlyPremium: number;
|
|
3316
3316
|
NAICS: string | null;
|
|
3317
3317
|
Name: string;
|
|
3318
|
-
NumberOfFullTimeEmployees: number;
|
|
3319
|
-
OfficeId: number;
|
|
3320
|
-
PolicyNumber: string
|
|
3321
|
-
PrimaryContact: number;
|
|
3322
|
-
PrimaryIndustry: BenefitPointPrimaryIndustryString;
|
|
3318
|
+
NumberOfFullTimeEmployees: number | null;
|
|
3319
|
+
OfficeId: number | null;
|
|
3320
|
+
PolicyNumber: string;
|
|
3321
|
+
PrimaryContact: number | null;
|
|
3322
|
+
PrimaryIndustry: BenefitPointPrimaryIndustryString | null;
|
|
3323
3323
|
ProductTypeId: number;
|
|
3324
3324
|
ProductTypeName: string;
|
|
3325
3325
|
RenewalDate: string;
|
|
3326
|
-
Requires5500: boolean;
|
|
3327
|
-
SalesLeader: number;
|
|
3328
|
-
ServiceLead: number;
|
|
3329
|
-
State: string;
|
|
3330
|
-
Street1: string;
|
|
3331
|
-
Zip: string;
|
|
3326
|
+
Requires5500: boolean | null;
|
|
3327
|
+
SalesLeader: number | null;
|
|
3328
|
+
ServiceLead: number | null;
|
|
3329
|
+
State: string | null;
|
|
3330
|
+
Street1: string | null;
|
|
3331
|
+
Zip: string | null;
|
|
3332
3332
|
}
|
|
3333
3333
|
|
|
3334
3334
|
export interface DistributionGroupMemberDto {
|