@leavittsoftware/lg-core-typescript 2.189.0 → 2.190.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.
@@ -44,12 +44,12 @@ export interface VitalActivityDto {
44
44
  }
45
45
 
46
46
  export interface VitalSignsLeaderDto {
47
- AgencyName: string;
47
+ AgencyName: string | null;
48
48
  CompanyId: number;
49
- FirstName: string;
49
+ FirstName: string | null;
50
50
  HireDate: string | null;
51
51
  IsSubsidized: boolean;
52
- LastName: string;
52
+ LastName: string | null;
53
53
  LicensedDate: string | null;
54
54
  PersonId: number;
55
55
  Rank: number;
@@ -73,7 +73,7 @@ export interface SurgeScoreboardReorderDto {
73
73
 
74
74
  export interface CrmCarrierDto {
75
75
  CarrierId: number;
76
- CarrierName: string;
76
+ CarrierName: string | null;
77
77
  }
78
78
 
79
79
  export interface SurgeAuditBreakdownCommissionDto {
@@ -81,18 +81,18 @@ export interface SurgeAuditBreakdownCommissionDto {
81
81
  Date: string | null;
82
82
  Id: number;
83
83
  LastModifiedDate: string | null;
84
- LineOfCoverage: string;
85
- Name: string;
84
+ LineOfCoverage: string | null;
85
+ Name: string | null;
86
86
  }
87
87
 
88
88
  export interface SurgeAuditBreakdownDto {
89
89
  AmountsMatch: boolean;
90
- CrmCommission: Partial<SurgeAuditBreakdownCommissionDto>;
90
+ CrmCommission: Partial<SurgeAuditBreakdownCommissionDto> | null;
91
91
  DatesMatch: boolean;
92
92
  IsCrmCommissionDeleted: boolean;
93
93
  IsPointCreatedByAdmin: boolean;
94
94
  SortDate: string | null;
95
- SurgeCrmPoint: Partial<SurgeAuditCrmPointDto>;
95
+ SurgeCrmPoint: Partial<SurgeAuditCrmPointDto> | null;
96
96
  }
97
97
 
98
98
  export interface SurgeAuditBreakdownsBySegmentDto {
@@ -100,14 +100,14 @@ export interface SurgeAuditBreakdownsBySegmentDto {
100
100
  CrmTotal: Partial<number>;
101
101
  IsAfterSurge: boolean;
102
102
  IsBeforeSurge: boolean;
103
- Segment: Partial<SurgeBreakDownSegmentDto>;
103
+ Segment: Partial<SurgeBreakDownSegmentDto> | null;
104
104
  SegmentId: number | null;
105
105
  SurgeTotal: Partial<number>;
106
106
  }
107
107
 
108
108
  export interface SurgeAuditCrmPointDto {
109
109
  Amount: Partial<number>;
110
- ClientName: string;
110
+ ClientName: string | null;
111
111
  CommissionSplitId: string | null;
112
112
  CreatedDate: string;
113
113
  DeletedDate: string | null;
@@ -129,13 +129,13 @@ export interface SurgeAuditSummaryDto {
129
129
 
130
130
  export interface SurgeBreakDownSegmentDto {
131
131
  EndDate: string | null;
132
- Name: string;
132
+ Name: string | null;
133
133
  StartDate: string | null;
134
134
  }
135
135
 
136
136
  export interface SurgeReportsPlayerBreakdownDto {
137
137
  FirstName: string;
138
- GrandPrizeName: string;
138
+ GrandPrizeName: string | null;
139
139
  IsTeamCaptain: boolean;
140
140
  LastName: string;
141
141
  PersonId: number;
@@ -145,21 +145,21 @@ export interface SurgeReportsPlayerBreakdownDto {
145
145
  }
146
146
 
147
147
  export interface SurgeReportsTeamBreakdownDto {
148
- CdnFileName: string;
149
- GrandPrizeName: string;
150
- ImageExtension: string;
148
+ CdnFileName: string | null;
149
+ GrandPrizeName: string | null;
150
+ ImageExtension: string | null;
151
151
  Players: Array<Partial<SurgeReportsPlayerBreakdownDto>>;
152
- PreviewExtension: string;
153
- PreviewSizes: string;
152
+ PreviewExtension: string | null;
153
+ PreviewSizes: string | null;
154
154
  PrizeAmount: Partial<number> | null;
155
155
  TeamId: number;
156
- TeamName: string;
156
+ TeamName: string | null;
157
157
  TeamTotalSold: Partial<number>;
158
158
  }
159
159
 
160
160
  export interface SurgeReportsTopPlayerDto {
161
161
  FirstName: string;
162
- GrandPrizeName: string;
162
+ GrandPrizeName: string | null;
163
163
  LastName: string;
164
164
  PersonId: number;
165
165
  PrizeAmount: Partial<number> | null;
@@ -169,17 +169,17 @@ export interface SurgeReportsTopPlayerDto {
169
169
  export interface CartItemDto {
170
170
  CartId: number | null;
171
171
  ItemHasChanged: boolean | null;
172
- JsonData: string;
173
- Name: string;
174
- PreviewDataUri: string;
172
+ JsonData: string | null;
173
+ Name: string | null;
174
+ PreviewDataUri: string | null;
175
175
  Prices: Array<Partial<StationeryPrice>>;
176
176
  SelectedPriceId: number | null;
177
- Stationery: Partial<Stationery>;
177
+ Stationery: Partial<Stationery> | null;
178
178
  }
179
179
 
180
180
  export interface PdfField {
181
- Name: string;
182
- Value: string;
181
+ Name: string | null;
182
+ Value: string | null;
183
183
  }
184
184
 
185
185
  export interface PdfFieldData {
@@ -187,95 +187,95 @@ export interface PdfFieldData {
187
187
  }
188
188
 
189
189
  export interface StationeryCartItemAddDto {
190
- JsonData: string;
190
+ JsonData: string | null;
191
191
  StationeryId: number | null;
192
192
  }
193
193
 
194
194
  export interface StationeryOrderDto {
195
195
  AgencyId: number;
196
- AgencyName: string;
197
- City: string;
196
+ AgencyName: string | null;
197
+ City: string | null;
198
198
  Id: number;
199
199
  Items: Array<Partial<StationeryOrderItemDto>>;
200
- SpecialInstructions: string;
201
- State: string;
202
- Street1: string;
203
- Street2: string;
200
+ SpecialInstructions: string | null;
201
+ State: string | null;
202
+ Street1: string | null;
203
+ Street2: string | null;
204
204
  TotalPrice: Partial<number>;
205
205
  TotalQuantity: number;
206
- Zip: string;
206
+ Zip: string | null;
207
207
  }
208
208
 
209
209
  export interface StationeryOrderItemDto {
210
210
  BackFields: Array<Partial<PdfField>>;
211
211
  FrontFields: Array<Partial<PdfField>>;
212
- OrderedFor: string;
212
+ OrderedFor: string | null;
213
213
  PriceId: number;
214
- Stationery: Partial<Stationery>;
214
+ Stationery: Partial<Stationery> | null;
215
215
  StationeryId: number;
216
216
  }
217
217
 
218
218
  export interface ViewableUsersPersonDto {
219
- FirstName: string;
220
- LastName: string;
221
- PeopleGroupName: string;
219
+ FirstName: string | null;
220
+ LastName: string | null;
221
+ PeopleGroupName: string | null;
222
222
  PersonId: number;
223
- WaysIncluded: string;
223
+ WaysIncluded: string | null;
224
224
  }
225
225
 
226
226
  export interface BoldPenguinRicochetLeadDto {
227
- Address1: string;
228
- Address2: string;
229
- City: string;
230
- CoverageType: string;
231
- Email: string;
232
- FirstName: string;
233
- LastName: string;
227
+ Address1: string | null;
228
+ Address2: string | null;
229
+ City: string | null;
230
+ CoverageType: string | null;
231
+ Email: string | null;
232
+ FirstName: string | null;
233
+ LastName: string | null;
234
234
  LeadId: number;
235
- LegalEntityName: string;
235
+ LegalEntityName: string | null;
236
236
  MainPhone: number | null;
237
- NaicsCode: string;
238
- State: string;
239
- TextOptInInternal: string;
240
- ZipCode: string;
237
+ NaicsCode: string | null;
238
+ State: string | null;
239
+ TextOptInInternal: string | null;
240
+ ZipCode: string | null;
241
241
  }
242
242
 
243
243
  export interface RicochetLeadDto {
244
- AdditionalComments: string;
245
- Address1: string;
246
- Address2: string;
247
- AssistedBy1: string;
248
- AssistedBy2: string;
249
- AssistedBy3: string;
250
- AssistedBy4: string;
251
- AssistedBy5: string;
252
- AssistedBy6: string;
253
- AssistedBy7: string;
254
- AssistedBy8: string;
255
- AssistedBy9: string;
256
- BlendLostAgencyCarrier: string;
257
- BlendLostLeadReason: string;
258
- CarrierQuoted1: string;
259
- CarrierQuoted2: string;
260
- CarrierQuoted3: string;
261
- CarrierQuoted4: string;
262
- CarrierQuoted5: string;
263
- CarrierQuoted6: string;
264
- CarrierQuoted7: string;
265
- CarrierQuoted8: string;
266
- CarrierQuoted9: string;
267
- ClCoverageTypes: string;
244
+ AdditionalComments: string | null;
245
+ Address1: string | null;
246
+ Address2: string | null;
247
+ AssistedBy1: string | null;
248
+ AssistedBy2: string | null;
249
+ AssistedBy3: string | null;
250
+ AssistedBy4: string | null;
251
+ AssistedBy5: string | null;
252
+ AssistedBy6: string | null;
253
+ AssistedBy7: string | null;
254
+ AssistedBy8: string | null;
255
+ AssistedBy9: string | null;
256
+ BlendLostAgencyCarrier: string | null;
257
+ BlendLostLeadReason: string | null;
258
+ CarrierQuoted1: string | null;
259
+ CarrierQuoted2: string | null;
260
+ CarrierQuoted3: string | null;
261
+ CarrierQuoted4: string | null;
262
+ CarrierQuoted5: string | null;
263
+ CarrierQuoted6: string | null;
264
+ CarrierQuoted7: string | null;
265
+ CarrierQuoted8: string | null;
266
+ CarrierQuoted9: string | null;
267
+ ClCoverageTypes: string | null;
268
268
  CreatedAt: string | null;
269
- CurrentBlendStatus: string;
270
- DateOfAssist1: string;
271
- DateOfAssist2: string;
272
- DateOfAssist3: string;
273
- DateOfAssist4: string;
274
- DateOfAssist5: string;
275
- DateOfAssist6: string;
276
- DateOfAssist7: string;
277
- DateOfAssist8: string;
278
- DateOfAssist9: string;
269
+ CurrentBlendStatus: string | null;
270
+ DateOfAssist1: string | null;
271
+ DateOfAssist2: string | null;
272
+ DateOfAssist3: string | null;
273
+ DateOfAssist4: string | null;
274
+ DateOfAssist5: string | null;
275
+ DateOfAssist6: string | null;
276
+ DateOfAssist7: string | null;
277
+ DateOfAssist8: string | null;
278
+ DateOfAssist9: string | null;
279
279
  DateOfQuote1: string | null;
280
280
  DateOfQuote2: string | null;
281
281
  DateOfQuote3: string | null;
@@ -296,54 +296,54 @@ export interface RicochetLeadDto {
296
296
  EffectiveDate7: string | null;
297
297
  EffectiveDate8: string | null;
298
298
  EffectiveDate9: string | null;
299
- Email: string;
300
- EstimatedAnnualPayroll: string;
301
- EstimatedAnnualRevenue: string;
302
- FirstName: string;
299
+ Email: string | null;
300
+ EstimatedAnnualPayroll: string | null;
301
+ EstimatedAnnualRevenue: string | null;
302
+ FirstName: string | null;
303
303
  LastCalledAt: string | null;
304
304
  LastEmailAt: string | null;
305
305
  LastInboundCallAt: string | null;
306
- LastName: string;
306
+ LastName: string | null;
307
307
  LastOutboundCallAt: string | null;
308
308
  LastSmsAt: string | null;
309
309
  LastStatusedAt: string | null;
310
310
  LeadId: number;
311
- LegalEntityName: string;
312
- LoanOfficer: string;
313
- LobAssisted1: string;
314
- LobAssisted2: string;
315
- LobAssisted3: string;
316
- LobAssisted4: string;
317
- LobAssisted5: string;
318
- LobAssisted6: string;
319
- LobAssisted7: string;
320
- LobAssisted8: string;
321
- LobAssisted9: string;
322
- MacuProductOfInterest: string;
323
- MacuReferralDateSubmitted: string;
324
- MacuReferralId: string;
325
- MacuReferrerBranchLocation: string;
326
- MacuReferrerName: string;
327
- MacuSourceOfReferral: string;
328
- MacuSubjectOfReferral: string;
329
- MacuTypeOfReferral: string;
330
- NaicsCode: string;
331
- NaicsDescription: string;
332
- NaicsDescription953: string;
333
- Office: string;
311
+ LegalEntityName: string | null;
312
+ LoanOfficer: string | null;
313
+ LobAssisted1: string | null;
314
+ LobAssisted2: string | null;
315
+ LobAssisted3: string | null;
316
+ LobAssisted4: string | null;
317
+ LobAssisted5: string | null;
318
+ LobAssisted6: string | null;
319
+ LobAssisted7: string | null;
320
+ LobAssisted8: string | null;
321
+ LobAssisted9: string | null;
322
+ MacuProductOfInterest: string | null;
323
+ MacuReferralDateSubmitted: string | null;
324
+ MacuReferralId: string | null;
325
+ MacuReferrerBranchLocation: string | null;
326
+ MacuReferrerName: string | null;
327
+ MacuSourceOfReferral: string | null;
328
+ MacuSubjectOfReferral: string | null;
329
+ MacuTypeOfReferral: string | null;
330
+ NaicsCode: string | null;
331
+ NaicsDescription: string | null;
332
+ NaicsDescription953: string | null;
333
+ Office: string | null;
334
334
  OfficeId: number;
335
- Owner: string;
335
+ Owner: string | null;
336
336
  OwnerId: number;
337
- Phone: string;
338
- PolicySold1: string;
339
- PolicySold2: string;
340
- PolicySold3: string;
341
- PolicySold4: string;
342
- PolicySold5: string;
343
- PolicySold6: string;
344
- PolicySold7: string;
345
- PolicySold8: string;
346
- PolicySold9: string;
337
+ Phone: string | null;
338
+ PolicySold1: string | null;
339
+ PolicySold2: string | null;
340
+ PolicySold3: string | null;
341
+ PolicySold4: string | null;
342
+ PolicySold5: string | null;
343
+ PolicySold6: string | null;
344
+ PolicySold7: string | null;
345
+ PolicySold8: string | null;
346
+ PolicySold9: string | null;
347
347
  PolicySoldDate1: string | null;
348
348
  PolicySoldDate2: string | null;
349
349
  PolicySoldDate3: string | null;
@@ -362,114 +362,114 @@ export interface RicochetLeadDto {
362
362
  PremiumQuoted7: Partial<number> | null;
363
363
  PremiumQuoted8: Partial<number> | null;
364
364
  PremiumQuoted9: Partial<number> | null;
365
- PropertyUsageType: string;
366
- QuotedBy1: string;
367
- QuotedBy2: string;
368
- QuotedBy3: string;
369
- QuotedBy4: string;
370
- QuotedBy5: string;
371
- QuotedBy6: string;
372
- QuotedBy7: string;
373
- QuotedBy8: string;
374
- QuotedBy9: string;
375
- State: string;
376
- Status: string;
365
+ PropertyUsageType: string | null;
366
+ QuotedBy1: string | null;
367
+ QuotedBy2: string | null;
368
+ QuotedBy3: string | null;
369
+ QuotedBy4: string | null;
370
+ QuotedBy5: string | null;
371
+ QuotedBy6: string | null;
372
+ QuotedBy7: string | null;
373
+ QuotedBy8: string | null;
374
+ QuotedBy9: string | null;
375
+ State: string | null;
376
+ Status: string | null;
377
377
  StatusId: number;
378
378
  UpdatedAt: string | null;
379
379
  VendorId: number;
380
- VendorName: string;
381
- ZipCode: string;
380
+ VendorName: string | null;
381
+ ZipCode: string | null;
382
382
  }
383
383
 
384
384
  export interface Ams360EmpCodeDto {
385
- Code: string;
385
+ Code: string | null;
386
386
  DatabaseId: number;
387
- DatabaseName: string;
388
- Email: string;
387
+ DatabaseName: string | null;
388
+ Email: string | null;
389
389
  EndDate: string | null;
390
- FirstName: string;
390
+ FirstName: string | null;
391
391
  Id: number;
392
392
  IsExpired: boolean;
393
393
  IsProd: boolean;
394
394
  IsRep: boolean;
395
- LastName: string;
395
+ LastName: string | null;
396
396
  StartDate: string;
397
- Status: string;
397
+ Status: string | null;
398
398
  }
399
399
 
400
400
  export interface Ams360EmpCodesDto {
401
- Agencies: Array<Partial<EmpCodeInstanceDto>>;
401
+ Agencies: Array<Partial<EmpCodeInstanceDto>> | null;
402
402
  Ams360DatabaseId: number;
403
- Ams360SupplementalCodes: Array<Partial<Ams360SupplementalCodeDto>>;
404
- AssignedRoles: Array<Partial<Ams360PersonRoleDto>>;
405
- Database: string;
406
- EmpCode: Partial<Ams360EmpCodeDto>;
407
- Status: string;
403
+ Ams360SupplementalCodes: Array<Partial<Ams360SupplementalCodeDto>> | null;
404
+ AssignedRoles: Array<Partial<Ams360PersonRoleDto>> | null;
405
+ Database: string | null;
406
+ EmpCode: Partial<Ams360EmpCodeDto> | null;
407
+ Status: string | null;
408
408
  }
409
409
 
410
410
  export interface Ams360PersonRoleDto {
411
411
  EmpCodeId: number;
412
- FirstName: string;
412
+ FirstName: string | null;
413
413
  InstanceId: number;
414
414
  IsManual: boolean;
415
- LastName: string;
415
+ LastName: string | null;
416
416
  }
417
417
 
418
418
  export interface Ams360SupplementalCodeDto {
419
419
  EmpCodeId: number;
420
420
  Id: number;
421
421
  InstanceId: number;
422
- Name: string;
422
+ Name: string | null;
423
423
  ProducerCodeTypeId: number;
424
- ProducerCodeTypeName: string;
424
+ ProducerCodeTypeName: string | null;
425
425
  }
426
426
 
427
427
  export interface Ams360UpsertDto {
428
- Ams360PersonRole: Partial<Ams360PersonRole>;
429
- Ams360SupplementalCode: Partial<Ams360SupplementalCode>;
428
+ Ams360PersonRole: Partial<Ams360PersonRole> | null;
429
+ Ams360SupplementalCode: Partial<Ams360SupplementalCode> | null;
430
430
  Id: number;
431
431
  }
432
432
 
433
433
  export interface BookOfBusinessChangeDto {
434
434
  AgencyLOBPercentages: Array<Partial<AgencyLOBPercentage>>;
435
435
  Amount: Partial<number> | null;
436
- Company: Partial<Company>;
436
+ Company: Partial<Company> | null;
437
437
  CompanyId: number | null;
438
- Description: string;
438
+ Description: string | null;
439
439
  EffectiveDate: string | null;
440
440
  Id: number;
441
441
  }
442
442
 
443
443
  export interface EmpCodeInstanceDto {
444
- CompanyName: string;
444
+ CompanyName: string | null;
445
445
  InstanceId: number | null;
446
446
  }
447
447
 
448
448
  export interface ManualEntryBudgetDto extends ManualEntryBudget {
449
449
  CompanyId: number;
450
- CompanyName: string;
450
+ CompanyName: string | null;
451
451
  }
452
452
 
453
453
  export interface ManualEntryGeneralLedgerDto extends ManualEntryGeneralLedger {
454
454
  CompanyId: number;
455
- CompanyName: string;
455
+ CompanyName: string | null;
456
456
  }
457
457
 
458
458
  export interface ManualEntryProductionDto extends ManualEntryProduction {
459
459
  CompanyId: number;
460
- CompanyName: string;
461
- PersonName: string;
460
+ CompanyName: string | null;
461
+ PersonName: string | null;
462
462
  }
463
463
 
464
464
  export interface BenefitPointCarrier {
465
- Alias: string;
465
+ Alias: string | null;
466
466
  Id: number | null;
467
- Name: string;
467
+ Name: string | null;
468
468
  }
469
469
 
470
470
  export interface CustomerQuoteDto {
471
- Attachment: File;
472
- CarrierName: string;
471
+ Attachment: File | null;
472
+ CarrierName: string | null;
473
473
  EffectiveDate: string;
474
474
  Id: number | null;
475
475
  LineOfCoverage: CustomerLineOfCoverageString;
@@ -485,7 +485,7 @@ export interface PLGameDivisionReorderDto {
485
485
 
486
486
  export interface PLGamePointDto {
487
487
  Amount: Partial<number> | null;
488
- ClientName: string;
488
+ ClientName: string | null;
489
489
  CreatedDate: string | null;
490
490
  CreatorPersonId: number | null;
491
491
  DeletedByPersonId: number | null;
@@ -496,7 +496,7 @@ export interface PLGamePointDto {
496
496
  LastModifiedDate: string | null;
497
497
  PointToCustomQuestions: Array<Partial<PLGamePointToCustomQuestionValue>>;
498
498
  SponsorId: number | null;
499
- TeamPersonRole: Partial<PLGameTeamPersonRole>;
499
+ TeamPersonRole: Partial<PLGameTeamPersonRole> | null;
500
500
  TeamPersonRoleId: number | null;
501
501
  Type: PLGamePointTypeString | null;
502
502
  }
@@ -504,14 +504,14 @@ export interface PLGamePointDto {
504
504
  export interface PLGamePointUpsertDto {
505
505
  GameId: number;
506
506
  PersonId: number;
507
- Point: Partial<PLGamePointDto>;
507
+ Point: Partial<PLGamePointDto> | null;
508
508
  }
509
509
 
510
510
  export interface PLGamePrizePayoutDto {
511
- EmailAddress: string;
512
- FirstName: string;
513
- GrandPrizeName: string;
514
- LastName: string;
511
+ EmailAddress: string | null;
512
+ FirstName: string | null;
513
+ GrandPrizeName: string | null;
514
+ LastName: string | null;
515
515
  PersonId: number;
516
516
  PrizeAmount: Partial<number> | null;
517
517
  Rank: number;
@@ -520,7 +520,7 @@ export interface PLGamePrizePayoutDto {
520
520
  export interface PLGameScoreboardDto {
521
521
  Id: number | null;
522
522
  IsEnabled: boolean;
523
- Name: string;
523
+ Name: string | null;
524
524
  PlayerGroups: Array<Partial<PLGameScoreboardToPlayerGroup>>;
525
525
  PLGameCustomQuestionId: number | null;
526
526
  PLGameId: number;
@@ -531,7 +531,7 @@ export interface PLGameScoreboardDto {
531
531
  SponsorId: number | null;
532
532
  SponsorIds: Array<number>;
533
533
  Take: number | null;
534
- WebComponentHTMLTag: string;
534
+ WebComponentHTMLTag: string | null;
535
535
  }
536
536
 
537
537
  export interface PLGameVideoReorderDto {
@@ -552,17 +552,17 @@ export interface PLGameBreakdownDto {
552
552
 
553
553
  export interface PLGameDivisionBreakdownDto {
554
554
  DivisionId: number;
555
- DivisionName: string;
555
+ DivisionName: string | null;
556
556
  DivisionSequence: number;
557
557
  Teams: Array<Partial<PLGameTeamBreakdownDto>>;
558
558
  }
559
559
 
560
560
  export interface PLGamePlayerBreakdownDto {
561
- EmailAddress: string;
562
- FirstName: string;
563
- GrandPrizeName: string;
561
+ EmailAddress: string | null;
562
+ FirstName: string | null;
563
+ GrandPrizeName: string | null;
564
564
  IsTeamCaptain: boolean;
565
- LastName: string;
565
+ LastName: string | null;
566
566
  PersonId: number;
567
567
  PrizeAmount: Partial<number> | null;
568
568
  Rank: number;
@@ -571,23 +571,23 @@ export interface PLGamePlayerBreakdownDto {
571
571
  }
572
572
 
573
573
  export interface PLGamePlayerCsvItemDTO {
574
- CompanyName: string;
575
- FirstName: string;
576
- LastName: string;
577
- Points: string;
578
- TeamName: string;
574
+ CompanyName: string | null;
575
+ FirstName: string | null;
576
+ LastName: string | null;
577
+ Points: string | null;
578
+ TeamName: string | null;
579
579
  }
580
580
 
581
581
  export interface PLGamePlayerDto {
582
- CompanyName: string;
583
- FirstName: string;
582
+ CompanyName: string | null;
583
+ FirstName: string | null;
584
584
  IsCaptain: boolean;
585
- LastName: string;
585
+ LastName: string | null;
586
586
  PersonId: number;
587
587
  PlayerId: number;
588
588
  PlayerPersonRoleId: number | null;
589
589
  TeamId: number | null;
590
- TeamName: string;
590
+ TeamName: string | null;
591
591
  TeamPersonRoleId: number | null;
592
592
  TotalPoints: Partial<number>;
593
593
  }
@@ -604,58 +604,58 @@ export interface PLGamePlayerPointDto {
604
604
  }
605
605
 
606
606
  export interface PLGamePointCsvItemDto {
607
- Amount: string;
608
- ClientName: string;
609
- Date: string;
610
- ProducerFirstName: string;
611
- ProducerLastName: string;
612
- Sponsor: string;
613
- Type: string;
607
+ Amount: string | null;
608
+ ClientName: string | null;
609
+ Date: string | null;
610
+ ProducerFirstName: string | null;
611
+ ProducerLastName: string | null;
612
+ Sponsor: string | null;
613
+ Type: string | null;
614
614
  }
615
615
 
616
616
  export interface PLGameSponsorPointsDto {
617
617
  SponsorId: number | null;
618
- SponsorName: string;
618
+ SponsorName: string | null;
619
619
  TotalPoints: Partial<number>;
620
620
  }
621
621
 
622
622
  export interface PLGameTeamBreakdownDto {
623
- GrandPrizeName: string;
623
+ GrandPrizeName: string | null;
624
624
  Players: Array<Partial<PLGamePlayerBreakdownDto>>;
625
625
  PrizeAmount: Partial<number> | null;
626
626
  Rank: number;
627
627
  TeamId: number;
628
- TeamImageCdnFileName: string;
629
- TeamImageExtension: string;
628
+ TeamImageCdnFileName: string | null;
629
+ TeamImageExtension: string | null;
630
630
  TeamImageId: number | null;
631
- TeamImagePreviewExtension: string;
632
- TeamImagePreviewSizes: string;
633
- TeamName: string;
634
- TeamThumbnailCdnFileName: string;
635
- TeamThumbnailExtension: string;
636
- TeamThumbnailFileName: string;
631
+ TeamImagePreviewExtension: string | null;
632
+ TeamImagePreviewSizes: string | null;
633
+ TeamName: string | null;
634
+ TeamThumbnailCdnFileName: string | null;
635
+ TeamThumbnailExtension: string | null;
636
+ TeamThumbnailFileName: string | null;
637
637
  TeamThumbnailId: number | null;
638
- TeamThumbnailPreviewSizes: string;
638
+ TeamThumbnailPreviewSizes: string | null;
639
639
  TotalPoints: Partial<number>;
640
640
  }
641
641
 
642
642
  export interface PLGameTopCoinsDto {
643
643
  AgencyId: number | null;
644
- AgencyName: string;
645
- EmailAddress: string;
646
- FirstName: string;
647
- GrandPrizeName: string;
648
- LastName: string;
644
+ AgencyName: string | null;
645
+ EmailAddress: string | null;
646
+ FirstName: string | null;
647
+ GrandPrizeName: string | null;
648
+ LastName: string | null;
649
649
  PersonId: number;
650
650
  PrizeAmount: Partial<number> | null;
651
651
  TotalCoins: Partial<number>;
652
652
  }
653
653
 
654
654
  export interface PLGameTopPlayerCoinsDto {
655
- AgencyName: string;
656
- FirstName: string;
657
- GrandPrizeName: string;
658
- LastName: string;
655
+ AgencyName: string | null;
656
+ FirstName: string | null;
657
+ GrandPrizeName: string | null;
658
+ LastName: string | null;
659
659
  PersonId: number;
660
660
  PrizeAmount: Partial<number> | null;
661
661
  Rank: number;
@@ -664,12 +664,12 @@ export interface PLGameTopPlayerCoinsDto {
664
664
 
665
665
  export interface PLGameTopPlayerDto {
666
666
  AgencyId: number | null;
667
- AgencyName: string;
668
- EmailAddress: string;
669
- FirstName: string;
670
- GrandPrizeName: string;
667
+ AgencyName: string | null;
668
+ EmailAddress: string | null;
669
+ FirstName: string | null;
670
+ GrandPrizeName: string | null;
671
671
  IsSubsidized: boolean;
672
- LastName: string;
672
+ LastName: string | null;
673
673
  PersonId: number;
674
674
  PrizeAmount: Partial<number> | null;
675
675
  Rank: number;
@@ -678,7 +678,7 @@ export interface PLGameTopPlayerDto {
678
678
 
679
679
  export interface PLGameTopPlayerGroupsDto {
680
680
  PlayerGroupId: number;
681
- PlayerGroupName: string;
681
+ PlayerGroupName: string | null;
682
682
  Players: Array<Partial<PLGameTopPlayerDto>>;
683
683
  }
684
684
 
@@ -691,62 +691,62 @@ export interface PLGameTotalPointsDto {
691
691
  export interface CrashReportSearchDto {
692
692
  EndDateTime: string | null;
693
693
  StartDateTime: string | null;
694
- Term: string;
694
+ Term: string | null;
695
695
  }
696
696
 
697
697
  export interface PhonesCrashReportDto {
698
698
  Date: string;
699
- Id: string;
700
- Message: string;
701
- StackTrace: string;
702
- Username: string;
703
- Version: string;
699
+ Id: string | null;
700
+ Message: string | null;
701
+ StackTrace: string | null;
702
+ Username: string | null;
703
+ Version: string | null;
704
704
  }
705
705
 
706
706
  export interface ItManagedApplicationUpsertDto {
707
- Description: string;
707
+ Description: string | null;
708
708
  Id: number | null;
709
709
  IsActive: boolean;
710
710
  IsDiscoverable: boolean;
711
- Name: string;
712
- Owner: string;
711
+ Name: string | null;
712
+ Owner: string | null;
713
713
  Tags: Array<Partial<ApplicationToApplicationTag>>;
714
714
  Tenants: Array<string>;
715
- URL: string;
715
+ URL: string | null;
716
716
  }
717
717
 
718
718
  export interface CustomPeopleGroupMembershipDto {
719
719
  GroupId: number;
720
720
  GroupSource: Array<string>;
721
- Person: Partial<Person>;
721
+ Person: Partial<Person> | null;
722
722
  }
723
723
 
724
724
  export interface LssApplicationUpsertDto {
725
- Description: string;
725
+ Description: string | null;
726
726
  Id: number | null;
727
727
  IsActive: boolean;
728
728
  IsDiscoverable: boolean;
729
- Name: string;
730
- Owner: string;
729
+ Name: string | null;
730
+ Owner: string | null;
731
731
  Permissions: Array<Partial<PermissionToApplication>>;
732
732
  Tags: Array<Partial<ApplicationToApplicationTag>>;
733
- URL: string;
733
+ URL: string | null;
734
734
  }
735
735
 
736
736
  export interface PermissionUpsertDto {
737
737
  Applications: Array<Partial<PermissionToApplication>>;
738
- Description: string;
738
+ Description: string | null;
739
739
  Id: number | null;
740
- Name: string;
740
+ Name: string | null;
741
741
  ScopeId: number | null;
742
742
  }
743
743
 
744
744
  export interface UserPermissionsDto {
745
745
  PermissionId: number;
746
- PermissionName: string;
746
+ PermissionName: string | null;
747
747
  PersonToPermissionId: number | null;
748
748
  ScopeId: number | null;
749
- ScopeName: string;
749
+ ScopeName: string | null;
750
750
  }
751
751
 
752
752
  export interface NaicsCsvUploadDto {
@@ -755,89 +755,89 @@ export interface NaicsCsvUploadDto {
755
755
  }
756
756
 
757
757
  export interface NaicsGetLineOfBusinessDto {
758
- LineOfBusiness: string;
758
+ LineOfBusiness: string | null;
759
759
  }
760
760
 
761
761
  export interface NaicsGetStatesDto {
762
- State: string;
762
+ State: string | null;
763
763
  }
764
764
 
765
765
  export interface NaicsReportTopAgenciesCsvDto {
766
- Agency: string;
767
- AgencyId: string;
768
- NaicsCode: string;
769
- PolicyType: string;
766
+ Agency: string | null;
767
+ AgencyId: string | null;
768
+ NaicsCode: string | null;
769
+ PolicyType: string | null;
770
770
  Premium: number;
771
771
  }
772
772
 
773
773
  export interface NaicsReportTopAgenciesDto {
774
- Agency: string;
775
- AgencyId: string;
776
- NaicsCode: string;
774
+ Agency: string | null;
775
+ AgencyId: string | null;
776
+ NaicsCode: string | null;
777
777
  Premium: number;
778
778
  Rank: number;
779
779
  }
780
780
 
781
781
  export interface NaicsReportTopCarriersCsvDto {
782
- NaicsCode: string;
783
- ParentCompany: string;
784
- PolicyType: string;
782
+ NaicsCode: string | null;
783
+ ParentCompany: string | null;
784
+ PolicyType: string | null;
785
785
  Premium: number;
786
786
  }
787
787
 
788
788
  export interface NaicsReportTopCarriersDto {
789
- NaicsCode: string;
790
- ParentCompany: string;
789
+ NaicsCode: string | null;
790
+ ParentCompany: string | null;
791
791
  Premium: number;
792
792
  Rank: number;
793
793
  }
794
794
 
795
795
  export interface NaicsReportTopIndustriesCsvDto {
796
- NaicsCode: string;
796
+ NaicsCode: string | null;
797
797
  Premium: number;
798
798
  Rank: number;
799
- Title: string;
799
+ Title: string | null;
800
800
  }
801
801
 
802
802
  export interface NaicsReportTopIndustriesDto {
803
- NaicsCode: string;
803
+ NaicsCode: string | null;
804
804
  Premium: number;
805
805
  Rank: number;
806
- Title: string;
806
+ Title: string | null;
807
807
  }
808
808
 
809
809
  export interface NaicsReportTopProducersCsvDto {
810
- AgencyId: string;
811
- AgencyName: string;
812
- NaicsCode: string;
813
- PolicyType: string;
810
+ AgencyId: string | null;
811
+ AgencyName: string | null;
812
+ NaicsCode: string | null;
813
+ PolicyType: string | null;
814
814
  Premium: number;
815
- Producer: string;
816
- ProducerId: string;
815
+ Producer: string | null;
816
+ ProducerId: string | null;
817
817
  }
818
818
 
819
819
  export interface NaicsReportTopProducersDto {
820
- AgencyName: string;
821
- NaicsCode: string;
822
- PersonId: string;
820
+ AgencyName: string | null;
821
+ NaicsCode: string | null;
822
+ PersonId: string | null;
823
823
  Premium: number;
824
- Producer: string;
824
+ Producer: string | null;
825
825
  Rank: number;
826
826
  Terminated: boolean | null;
827
827
  }
828
828
 
829
829
  export interface NaicsReportTopStatesCsvDto {
830
- NaicsCode: string;
831
- PolicyType: string;
830
+ NaicsCode: string | null;
831
+ PolicyType: string | null;
832
832
  Premium: number;
833
- State: string;
833
+ State: string | null;
834
834
  }
835
835
 
836
836
  export interface NaicsReportTopStatesDto {
837
- NaicsCode: string;
837
+ NaicsCode: string | null;
838
838
  Premium: number | null;
839
839
  Rank: number;
840
- State: string;
840
+ State: string | null;
841
841
  }
842
842
 
843
843
  export interface NaicsRow {
@@ -881,7 +881,7 @@ export interface ProvisionedCompanyUnitDto {
881
881
  export interface HartfordGroupedErrorDto {
882
882
  Count: number;
883
883
  EndDate: string;
884
- Message: string;
884
+ Message: string | null;
885
885
  StartDate: string;
886
886
  }
887
887
 
@@ -900,10 +900,10 @@ export interface LifeQuoteRequestSummaryDto {
900
900
 
901
901
  export interface PersonalPropertyGroupedErrorDto {
902
902
  CarrierId: number;
903
- CarrierName: string;
903
+ CarrierName: string | null;
904
904
  Count: number;
905
905
  EndDate: string;
906
- Message: string;
906
+ Message: string | null;
907
907
  StartDate: string;
908
908
  }
909
909
 
@@ -929,38 +929,38 @@ export interface HartfordEmailQuoteDto {
929
929
 
930
930
  export interface IxnLifeCarrierDto {
931
931
  Id: number;
932
- Large: string;
933
- Medium: string;
934
- Name: string;
935
- Small: string;
932
+ Large: string | null;
933
+ Medium: string | null;
934
+ Name: string | null;
935
+ Small: string | null;
936
936
  }
937
937
 
938
938
  export interface SpectrumDto {
939
939
  AnswerSet: Array<Partial<AnswerSetDto>>;
940
- ClassName: string;
941
- NAICCd: string;
942
- Question: string;
943
- SpectrumCode: string;
940
+ ClassName: string | null;
941
+ NAICCd: string | null;
942
+ Question: string | null;
943
+ SpectrumCode: string | null;
944
944
  }
945
945
 
946
946
  export interface AnswerSetDto {
947
- ClassName: string;
948
- NAICCd: string;
949
- SpectrumCode: string;
947
+ ClassName: string | null;
948
+ NAICCd: string | null;
949
+ SpectrumCode: string | null;
950
950
  }
951
951
 
952
952
  export interface WcClassDetailDto {
953
- RqUid: string;
954
- SpectrumClassCode: string;
955
- StateProvCd: string;
956
- Status: string;
953
+ RqUid: string | null;
954
+ SpectrumClassCode: string | null;
955
+ StateProvCd: string | null;
956
+ Status: string | null;
957
957
  WorkCompRateClasses: Array<Partial<WorkCompRateClassDto>>;
958
958
  }
959
959
 
960
960
  export interface WorkCompRateClassDto {
961
- RatingClassificationCode: string;
962
- RatingClassificationDesc: string;
963
- RatingClassificationDescCd: string;
961
+ RatingClassificationCode: string | null;
962
+ RatingClassificationDesc: string | null;
963
+ RatingClassificationDescCd: string | null;
964
964
  }
965
965
 
966
966
  export interface VertaforeLimitsDto {
@@ -1026,8 +1026,8 @@ export interface HomeOwnersStepOneDto {
1026
1026
 
1027
1027
  export interface HomeOwnersStepSevenDto {
1028
1028
  CoApplicantDateOfBirth: string | null;
1029
- CoApplicantFirstName: string;
1030
- CoApplicantLastName: string;
1029
+ CoApplicantFirstName: string | null;
1030
+ CoApplicantLastName: string | null;
1031
1031
  CoApplicantRelationshipToInsured: CoApplicantRelationshipToInsuredString | null;
1032
1032
  }
1033
1033
 
@@ -1066,18 +1066,18 @@ export interface PersonalPropertyGettingStartedStepOneDto {
1066
1066
  LastName: string;
1067
1067
  PersonalPropertyQuoteRequestId: number | null;
1068
1068
  RaterUniqueId: string;
1069
- RecaptchaUserResponse: string;
1069
+ RecaptchaUserResponse: string | null;
1070
1070
  }
1071
1071
 
1072
1072
  export interface PersonalPropertyGettingStartedStepTwoDto {
1073
- City: string;
1074
- County: string;
1075
- EmailAddress: string;
1073
+ City: string | null;
1074
+ County: string | null;
1075
+ EmailAddress: string | null;
1076
1076
  IsBundled: boolean | null;
1077
- PhoneNumber: string;
1078
- State: string;
1079
- Street1: string;
1080
- Zip: string;
1077
+ PhoneNumber: string | null;
1078
+ State: string | null;
1079
+ Street1: string | null;
1080
+ Zip: string | null;
1081
1081
  }
1082
1082
 
1083
1083
  export interface PersonalPropertyLastPageVisitedDto {
@@ -1118,14 +1118,14 @@ export interface PersonalPropertyRaterToCarrierUpsertDto {
1118
1118
  }
1119
1119
 
1120
1120
  export interface PersonalPropertyRaterUpsertDto {
1121
- AdobeAnalyticUrl: string;
1122
- AppAccentColor: string;
1123
- AppPrimaryColor: string;
1124
- AppSecondaryColor: string;
1121
+ AdobeAnalyticUrl: string | null;
1122
+ AppAccentColor: string | null;
1123
+ AppPrimaryColor: string | null;
1124
+ AppSecondaryColor: string | null;
1125
1125
  Carriers: Array<Partial<PersonalPropertyRaterToCarrierUpsertDto>>;
1126
1126
  CompanyId: number;
1127
1127
  Disclaimer: string;
1128
- EloquaCampaign: string;
1128
+ EloquaCampaign: string | null;
1129
1129
  EnableBundling: boolean;
1130
1130
  FooterEmailAddress: string;
1131
1131
  Id: number | null;
@@ -1143,18 +1143,18 @@ export interface SelectedQuoteDto {
1143
1143
  }
1144
1144
 
1145
1145
  export interface VehicleDataDto {
1146
- ABS: string;
1147
- BodyType: string;
1148
- Carburetor: string;
1146
+ ABS: string | null;
1147
+ BodyType: string | null;
1148
+ Carburetor: string | null;
1149
1149
  FourWheelDrive: boolean;
1150
- FuelType: string;
1151
- Key: string;
1152
- Maker: string;
1153
- Model: string;
1150
+ FuelType: string | null;
1151
+ Key: string | null;
1152
+ Maker: string | null;
1153
+ Model: string | null;
1154
1154
  MSRP: number;
1155
1155
  NumCylinders: number;
1156
- VIN: string;
1157
- Year: string;
1156
+ VIN: string | null;
1157
+ Year: string | null;
1158
1158
  }
1159
1159
 
1160
1160
  export interface LifeGettingStartedStepOneDto {
@@ -1164,7 +1164,7 @@ export interface LifeGettingStartedStepOneDto {
1164
1164
  LastName: string;
1165
1165
  LifeQuoteRequestId: number | null;
1166
1166
  RaterUniqueId: string;
1167
- RecaptchaUserResponse: string;
1167
+ RecaptchaUserResponse: string | null;
1168
1168
  }
1169
1169
 
1170
1170
  export interface LifeGettingStartedStepTwoDto {
@@ -1192,13 +1192,13 @@ export interface LifeRaterToCarrierUpsertDto {
1192
1192
  }
1193
1193
 
1194
1194
  export interface LifeRaterUpsertDto {
1195
- AppAccentColor: string;
1196
- AppPrimaryColor: string;
1197
- AppSecondaryColor: string;
1195
+ AppAccentColor: string | null;
1196
+ AppPrimaryColor: string | null;
1197
+ AppSecondaryColor: string | null;
1198
1198
  Carriers: Array<Partial<LifeRaterToCarrierUpsertDto>>;
1199
1199
  CompanyId: number;
1200
1200
  Disclaimer: string;
1201
- EloquaCampaign: string;
1201
+ EloquaCampaign: string | null;
1202
1202
  FooterEmailAddress: string;
1203
1203
  Id: number | null;
1204
1204
  IsActive: boolean;
@@ -1213,24 +1213,24 @@ export interface LifeSelectQuoteDto {
1213
1213
  }
1214
1214
 
1215
1215
  export interface LifeWidgetFulfillDto {
1216
- City: string;
1216
+ City: string | null;
1217
1217
  CoverageAmount: Partial<number>;
1218
1218
  DateOfBirth: string;
1219
- EmailAddress: string;
1219
+ EmailAddress: string | null;
1220
1220
  FirstName: string;
1221
1221
  Gender: GenderTypeString | null;
1222
1222
  HealthRating: HealthRatingTypeString;
1223
1223
  IsTest: boolean;
1224
1224
  LastName: string;
1225
1225
  LifeQuoteRequestId: number | null;
1226
- PhoneNumber: string;
1226
+ PhoneNumber: string | null;
1227
1227
  ProductType: ProductTypeString;
1228
1228
  RaterUniqueId: string;
1229
1229
  State: string;
1230
1230
  Street1: string;
1231
1231
  Tobacco: TobaccoTypeString;
1232
- WealthManager: string;
1233
- WealthManagerEmail: string;
1232
+ WealthManager: string | null;
1233
+ WealthManagerEmail: string | null;
1234
1234
  ZipCode: string;
1235
1235
  }
1236
1236
 
@@ -1239,11 +1239,11 @@ export interface LifeYourHealthDto {
1239
1239
  }
1240
1240
 
1241
1241
  export interface WidgetLifeRaterUpsertDto {
1242
- AppPrimaryColor: string;
1243
- AppSecondaryColor: string;
1242
+ AppPrimaryColor: string | null;
1243
+ AppSecondaryColor: string | null;
1244
1244
  Carriers: Array<Partial<LifeRaterToCarrierUpsertDto>>;
1245
1245
  CompanyId: number;
1246
- EloquaCampaign: string;
1246
+ EloquaCampaign: string | null;
1247
1247
  FooterEmailAddress: string;
1248
1248
  HeaderText: string;
1249
1249
  Id: number | null;
@@ -1259,13 +1259,13 @@ export interface BopQuoteDto {
1259
1259
  BppLimit: Partial<number> | null;
1260
1260
  BusinessStartYear: number;
1261
1261
  City: string;
1262
- ClassName: string;
1262
+ ClassName: string | null;
1263
1263
  IsTest: boolean;
1264
1264
  Name: string;
1265
- PhoneNumber: string;
1266
- RaterUniqueId: string;
1265
+ PhoneNumber: string | null;
1266
+ RaterUniqueId: string | null;
1267
1267
  RecaptchaUserResponse: string;
1268
- SpectrumClassCode: string;
1268
+ SpectrumClassCode: string | null;
1269
1269
  State: string;
1270
1270
  Street1: string;
1271
1271
  TotalEmployeePayroll: Partial<number> | null;
@@ -1273,10 +1273,10 @@ export interface BopQuoteDto {
1273
1273
  }
1274
1274
 
1275
1275
  export interface HartfordRaterUpsertDto {
1276
- AdobeAnalyticUrl: string;
1277
- AppAccentColor: string;
1278
- AppPrimaryColor: string;
1279
- AppSecondaryColor: string;
1276
+ AdobeAnalyticUrl: string | null;
1277
+ AppAccentColor: string | null;
1278
+ AppPrimaryColor: string | null;
1279
+ AppSecondaryColor: string | null;
1280
1280
  Carriers: Array<Partial<LifeRaterToCarrierUpsertDto>>;
1281
1281
  CompanyId: number;
1282
1282
  Disclaimer: string;
@@ -1292,7 +1292,7 @@ export interface HartfordRaterUpsertDto {
1292
1292
  export interface HartfordWorkersCompClassCodeDto {
1293
1293
  NumberOfEmployees: number;
1294
1294
  Payroll: Partial<number>;
1295
- RatingClassificationCode: string;
1295
+ RatingClassificationCode: string | null;
1296
1296
  }
1297
1297
 
1298
1298
  export interface SmallBusinessSummaryDto {
@@ -1309,19 +1309,19 @@ export interface WorkersCompQuoteDto {
1309
1309
  BusinessStartYear: number;
1310
1310
  City: string;
1311
1311
  ClassCodes: Array<Partial<HartfordWorkersCompClassCodeDto>>;
1312
- FEIN: string;
1312
+ FEIN: string | null;
1313
1313
  IsTest: boolean;
1314
1314
  Name: string;
1315
1315
  NumberOfEmployees: number;
1316
1316
  OwnerIncluded: boolean;
1317
- OwnerName: string;
1317
+ OwnerName: string | null;
1318
1318
  OwnerPayroll: Partial<number> | null;
1319
- OwnerRatingClassificationCd: string;
1319
+ OwnerRatingClassificationCd: string | null;
1320
1320
  OwnershipPercentage: number | null;
1321
- PhoneNumber: string;
1322
- RaterUniqueId: string;
1321
+ PhoneNumber: string | null;
1322
+ RaterUniqueId: string | null;
1323
1323
  RecaptchaUserResponse: string;
1324
- SpectrumClassCode: string;
1324
+ SpectrumClassCode: string | null;
1325
1325
  State: string;
1326
1326
  Street1: string;
1327
1327
  TotalEmployeePayroll: Partial<number>;
@@ -1361,7 +1361,7 @@ export interface AddFitBitIntegrationDto {
1361
1361
  AuthCode: string;
1362
1362
  CodeVerifier: string;
1363
1363
  RedirectUri: string;
1364
- State: string;
1364
+ State: string | null;
1365
1365
  }
1366
1366
 
1367
1367
  export interface AddGoogleFitIntegrationDto {
@@ -1457,18 +1457,18 @@ export interface ExpenseCashItemDto {
1457
1457
  Amount: Partial<number> | null;
1458
1458
  BillToCompanyId: number | null;
1459
1459
  Date: string | null;
1460
- Description: string;
1460
+ Description: string | null;
1461
1461
  ExpenseCategoryId: number | null;
1462
1462
  ExpenseFormId: number | null;
1463
1463
  Id: number | null;
1464
- Image: File;
1465
- Merchant: string;
1464
+ Image: File | null;
1465
+ Merchant: string | null;
1466
1466
  RequestingCompanyId: number | null;
1467
1467
  UpdateAttachment: boolean;
1468
1468
  }
1469
1469
 
1470
1470
  export interface ExpenseFormRejectDto {
1471
- RejectedReason: string;
1471
+ RejectedReason: string | null;
1472
1472
  }
1473
1473
 
1474
1474
  export interface ExpenseFormSubmitDto {
@@ -1496,7 +1496,7 @@ export interface AuditorDto {
1496
1496
  }
1497
1497
 
1498
1498
  export interface GuestDto {
1499
- Description: string;
1499
+ Description: string | null;
1500
1500
  Email: string;
1501
1501
  ExpirationDate: string | null;
1502
1502
  FirstName: string;
@@ -1506,36 +1506,36 @@ export interface GuestDto {
1506
1506
  }
1507
1507
 
1508
1508
  export interface HireDTO {
1509
- AdditionalItInfo: string;
1509
+ AdditionalItInfo: string | null;
1510
1510
  AdditionalPayPerMonth: Partial<number> | null;
1511
1511
  BenefitPoint: boolean;
1512
- Comments: string;
1512
+ Comments: string | null;
1513
1513
  CompanyAddressId: number | null;
1514
- CRMCredentials: string;
1514
+ CRMCredentials: string | null;
1515
1515
  DateLicensed: string | null;
1516
1516
  DateOfBirth: string;
1517
1517
  DepartmentId: number | null;
1518
- DomoAuthority: string;
1518
+ DomoAuthority: string | null;
1519
1519
  EmploymentType: EmploymentTypeString;
1520
- Extension: string;
1520
+ Extension: string | null;
1521
1521
  FirstName: string;
1522
1522
  HireDate: string;
1523
1523
  HiringManagerPersonId: number;
1524
- HomeAddress: Partial<CompanyAddress>;
1524
+ HomeAddress: Partial<CompanyAddress> | null;
1525
1525
  Hours: number;
1526
- IpAddress: string;
1526
+ IpAddress: string | null;
1527
1527
  IsAcctManagerOrRepOrCSR: boolean;
1528
1528
  IsProducerOrExecutive: boolean;
1529
- JobOfferLetter: File;
1529
+ JobOfferLetter: File | null;
1530
1530
  JobRoles: Array<Partial<JobRole>>;
1531
1531
  LastName: string;
1532
- MiddleName: string;
1533
- ModelAfter: string;
1532
+ MiddleName: string | null;
1533
+ ModelAfter: string | null;
1534
1534
  OrderEquipment: boolean;
1535
1535
  PayRate: Partial<number> | null;
1536
1536
  ProducerEarnings: Partial<number> | null;
1537
1537
  PtoAccrualsPerMonth: number;
1538
- ShippingAddress: Partial<CompanyAddress>;
1538
+ ShippingAddress: Partial<CompanyAddress> | null;
1539
1539
  ShipToAgency: boolean;
1540
1540
  SupervisorId: number | null;
1541
1541
  TimeSupervisorId: number | null;
@@ -1550,20 +1550,20 @@ export interface InvestorDto {
1550
1550
  }
1551
1551
 
1552
1552
  export interface LdapAdObject {
1553
- AccountName: string;
1553
+ AccountName: string | null;
1554
1554
  AccountStatus: AccountStatusString;
1555
- CommonName: string;
1556
- CompanyName: string;
1557
- DisplayName: string;
1558
- DistinguishedName: string;
1559
- FirstName: string;
1555
+ CommonName: string | null;
1556
+ CompanyName: string | null;
1557
+ DisplayName: string | null;
1558
+ DistinguishedName: string | null;
1559
+ FirstName: string | null;
1560
1560
  Guid: string;
1561
1561
  Id: number | null;
1562
- LastName: string;
1563
- MatchingPerson: Partial<Person>;
1564
- Path: string;
1565
- SchemaClassName: string;
1566
- Sid: string;
1562
+ LastName: string | null;
1563
+ MatchingPerson: Partial<Person> | null;
1564
+ Path: string | null;
1565
+ SchemaClassName: string | null;
1566
+ Sid: string | null;
1567
1567
  }
1568
1568
 
1569
1569
  export interface MultiTransferDto {
@@ -1577,79 +1577,79 @@ export interface NewUserResult {
1577
1577
  }
1578
1578
 
1579
1579
  export interface RehireDTO {
1580
- AdditionalItInfo: string;
1580
+ AdditionalItInfo: string | null;
1581
1581
  AdditionalPayPerMonth: Partial<number> | null;
1582
1582
  BenefitPoint: boolean;
1583
- Comments: string;
1583
+ Comments: string | null;
1584
1584
  CompanyAddressId: number | null;
1585
- CRMCredentials: string;
1585
+ CRMCredentials: string | null;
1586
1586
  DateLicensed: string | null;
1587
1587
  DepartmentId: number | null;
1588
- DomoAuthority: string;
1588
+ DomoAuthority: string | null;
1589
1589
  EmploymentType: EmploymentTypeString;
1590
- Extension: string;
1590
+ Extension: string | null;
1591
1591
  HireDate: string;
1592
1592
  HiringManagerPersonId: number;
1593
- HomeAddress: Partial<CompanyAddress>;
1593
+ HomeAddress: Partial<CompanyAddress> | null;
1594
1594
  Hours: number;
1595
- IpAddress: string;
1595
+ IpAddress: string | null;
1596
1596
  IsAcctManagerOrRepOrCSR: boolean;
1597
1597
  IsProducerOrExecutive: boolean;
1598
- JobOfferLetter: File;
1598
+ JobOfferLetter: File | null;
1599
1599
  JobRoles: Array<Partial<JobRole>>;
1600
- ModelAfter: string;
1600
+ ModelAfter: string | null;
1601
1601
  OrderEquipment: boolean;
1602
1602
  PayRate: Partial<number> | null;
1603
1603
  ProducerEarnings: Partial<number> | null;
1604
1604
  PtoAccrualsPerMonth: number;
1605
- ShippingAddress: Partial<CompanyAddress>;
1605
+ ShippingAddress: Partial<CompanyAddress> | null;
1606
1606
  ShipToAgency: boolean;
1607
1607
  SupervisorId: number | null;
1608
1608
  TimeSupervisorId: number | null;
1609
1609
  }
1610
1610
 
1611
1611
  export interface TerminateDto {
1612
- Comments: string;
1612
+ Comments: string | null;
1613
1613
  DaysToForwardEmail: number | null;
1614
1614
  EligibleForReHire: boolean | null;
1615
- EmployeeName: string;
1616
- ForwardIncomingMailTo: string;
1615
+ EmployeeName: string | null;
1616
+ ForwardIncomingMailTo: string | null;
1617
1617
  LastDayWorked: string;
1618
- MailingAddress: string;
1618
+ MailingAddress: string | null;
1619
1619
  MobilePhoneForCompanyEmails: boolean | null;
1620
1620
  NeedsDomoLicenseRemoved: boolean | null;
1621
- OpenSuspensesPerson: string;
1622
- Phone: string;
1623
- Reason: string;
1621
+ OpenSuspensesPerson: string | null;
1622
+ Phone: string | null;
1623
+ Reason: string | null;
1624
1624
  TerminationDate: string;
1625
1625
  }
1626
1626
 
1627
1627
  export interface TransferDTO {
1628
1628
  CompanyAddressId: number | null;
1629
1629
  DepartmentId: number | null;
1630
- HomeAddress: Partial<CompanyAddress>;
1630
+ HomeAddress: Partial<CompanyAddress> | null;
1631
1631
  JobRoles: Array<Partial<JobRole>>;
1632
1632
  }
1633
1633
 
1634
1634
  export interface GetSignaturePrefillDataDto {
1635
- AgencyOrDepartment: string;
1636
- City: string;
1637
- EmailAddress: string;
1638
- Name: string;
1635
+ AgencyOrDepartment: string | null;
1636
+ City: string | null;
1637
+ EmailAddress: string | null;
1638
+ Name: string | null;
1639
1639
  PersonId: number | null;
1640
- Phone: string;
1641
- PhoneCell: string;
1642
- PhoneFax: string;
1643
- PhoneOffice: string;
1644
- State: string;
1645
- Street: string;
1646
- Title: string;
1647
- Zip: string;
1640
+ Phone: string | null;
1641
+ PhoneCell: string | null;
1642
+ PhoneFax: string | null;
1643
+ PhoneOffice: string | null;
1644
+ State: string | null;
1645
+ Street: string | null;
1646
+ Title: string | null;
1647
+ Zip: string | null;
1648
1648
  }
1649
1649
 
1650
1650
  export interface SignatureDto {
1651
1651
  Id: number | null;
1652
- Name: string;
1652
+ Name: string | null;
1653
1653
  PersonId: number;
1654
1654
  SignatureTemplateId: number;
1655
1655
  SignatureValues: Array<Partial<SignatureValue>>;
@@ -1660,15 +1660,15 @@ export interface SignatureTemplateDto {
1660
1660
  AvailableToAll: boolean;
1661
1661
  Id: number | null;
1662
1662
  IsActive: boolean;
1663
- Name: string;
1663
+ Name: string | null;
1664
1664
  SignatureTemplateToCompanies: Array<Partial<SignatureTemplateToCompany>>;
1665
- TemplateWebComponentName: string;
1665
+ TemplateWebComponentName: string | null;
1666
1666
  }
1667
1667
 
1668
1668
  export interface AdminEducationLessonDto {
1669
1669
  FileCount: number;
1670
1670
  Id: number;
1671
- LessonName: string;
1671
+ LessonName: string | null;
1672
1672
  Passed: number;
1673
1673
  QuestionCount: number;
1674
1674
  Sequence: number;
@@ -1689,30 +1689,30 @@ export interface BulkEnrollDto {
1689
1689
 
1690
1690
  export interface DownloadCoursesByUserDto {
1691
1691
  CompletedPercentage: number | null;
1692
- CourseName: string;
1693
- DateCompleted: string;
1692
+ CourseName: string | null;
1693
+ DateCompleted: string | null;
1694
1694
  IsRequired: boolean | null;
1695
- PersonName: string;
1695
+ PersonName: string | null;
1696
1696
  }
1697
1697
 
1698
1698
  export interface DownloadLessonsByUserDto {
1699
- CourseName: string;
1700
- LessonName: string;
1699
+ CourseName: string | null;
1700
+ LessonName: string | null;
1701
1701
  LessonPercentage: number | null;
1702
1702
  LessonStatus: LessonAttemptStatusString | null;
1703
- PersonName: string;
1703
+ PersonName: string | null;
1704
1704
  }
1705
1705
 
1706
1706
  export interface EducationLessonsDto {
1707
1707
  CourseId: number;
1708
- CourseName: string;
1708
+ CourseName: string | null;
1709
1709
  Lessons: Array<Partial<AdminEducationLessonDto>>;
1710
1710
  }
1711
1711
 
1712
1712
  export interface EducationSendReminderEmailsDto {
1713
- CategoryIds: Array<number>;
1714
- CompanyIds: Array<number>;
1715
- CourseIds: Array<number>;
1713
+ CategoryIds: Array<number> | null;
1714
+ CompanyIds: Array<number> | null;
1715
+ CourseIds: Array<number> | null;
1716
1716
  HasRequiredCourse: boolean;
1717
1717
  IsNewEmployee: boolean;
1718
1718
  IsProducer: boolean;
@@ -1720,7 +1720,7 @@ export interface EducationSendReminderEmailsDto {
1720
1720
 
1721
1721
  export interface GetCourseLessonDto {
1722
1722
  Id: number;
1723
- Name: string;
1723
+ Name: string | null;
1724
1724
  Sequence: number;
1725
1725
  }
1726
1726
 
@@ -1728,25 +1728,25 @@ export interface GetCoursesDto {
1728
1728
  Categories: Array<Partial<CourseCategoryDto>>;
1729
1729
  CreatedDate: string;
1730
1730
  Id: number;
1731
- Image: Partial<EducationCourseImage>;
1731
+ Image: Partial<EducationCourseImage> | null;
1732
1732
  LastAttemptedDate: string | null;
1733
1733
  Lessons: Array<Partial<GetCourseLessonDto>>;
1734
- Name: string;
1734
+ Name: string | null;
1735
1735
  UsersPassed: number;
1736
1736
  UsersStarted: number;
1737
1737
  }
1738
1738
 
1739
1739
  export interface GetMembersDto {
1740
- FirstName: string;
1740
+ FirstName: string | null;
1741
1741
  IsRequired: boolean;
1742
- LastName: string;
1742
+ LastName: string | null;
1743
1743
  PersonId: number;
1744
1744
  }
1745
1745
 
1746
1746
  export interface GetPeopleCoursesDto {
1747
- CourseName: string;
1747
+ CourseName: string | null;
1748
1748
  Id: number;
1749
- Image: Partial<EducationCourseImage>;
1749
+ Image: Partial<EducationCourseImage> | null;
1750
1750
  IsRequired: boolean;
1751
1751
  LessonsPassed: number;
1752
1752
  TotalLessons: number;
@@ -1763,20 +1763,20 @@ export interface LessonParticipationGraphDto {
1763
1763
  }
1764
1764
 
1765
1765
  export interface ParticipantBreakdownDto {
1766
- Agency: string;
1766
+ Agency: string | null;
1767
1767
  CoursesAssigned: number;
1768
1768
  CoursesPassed: number;
1769
- FirstName: string;
1769
+ FirstName: string | null;
1770
1770
  IsNewEmployee: boolean;
1771
1771
  IsProducer: boolean;
1772
- LastName: string;
1772
+ LastName: string | null;
1773
1773
  PersonId: number;
1774
1774
  RequiredCoursesAssigned: number;
1775
1775
  RequiredCoursesPassed: number;
1776
1776
  }
1777
1777
 
1778
1778
  export interface ParticipantDashboardDto {
1779
- Certificate: Partial<EducationCourseCertificate>;
1779
+ Certificate: Partial<EducationCourseCertificate> | null;
1780
1780
  CourseId: number;
1781
1781
  Lessons: Array<Partial<ParticipantDashboardLessonDto>>;
1782
1782
  LessonsAvailable: number;
@@ -1790,7 +1790,7 @@ export interface ParticipantDashboardLessonDto {
1790
1790
  CompletedDate: string | null;
1791
1791
  GradePercentage: number | null;
1792
1792
  LessonId: number;
1793
- Name: string;
1793
+ Name: string | null;
1794
1794
  TimeWatchedPercentage: Partial<number> | null;
1795
1795
  }
1796
1796
 
@@ -1806,13 +1806,13 @@ export interface ReorderEducationSequenceDto {
1806
1806
 
1807
1807
  export interface UpsertCourseDto {
1808
1808
  CategoryIds: Array<number>;
1809
- Certificate: File;
1810
- Description: string;
1809
+ Certificate: File | null;
1810
+ Description: string | null;
1811
1811
  Id: number | null;
1812
- Image: File;
1812
+ Image: File | null;
1813
1813
  Reviewable: boolean;
1814
- ShortDescription: string;
1815
- Title: string;
1814
+ ShortDescription: string | null;
1815
+ Title: string | null;
1816
1816
  UpdateCertificate: boolean;
1817
1817
  UpdateImage: boolean;
1818
1818
  }
@@ -1822,10 +1822,10 @@ export interface UpsertLessonDto {
1822
1822
  DeleteFileIds: Array<number>;
1823
1823
  Files: Array<File>;
1824
1824
  Id: number | null;
1825
- Name: string;
1825
+ Name: string | null;
1826
1826
  PassingPercentage: number;
1827
- VideoLength: string;
1828
- YoutubeVideoKey: string;
1827
+ VideoLength: string | null;
1828
+ YoutubeVideoKey: string | null;
1829
1829
  }
1830
1830
 
1831
1831
  export interface UpsertQuestionsDto {
@@ -1838,14 +1838,14 @@ export interface CopyEducationCourseDto {
1838
1838
 
1839
1839
  export interface CourseCategoryDto {
1840
1840
  Id: number;
1841
- Name: string;
1841
+ Name: string | null;
1842
1842
  }
1843
1843
 
1844
1844
  export interface CourseMemberDto {
1845
1845
  Categories: Array<Partial<CourseCategoryDto>>;
1846
1846
  CourseId: number;
1847
- CourseName: string;
1848
- Description: string;
1847
+ CourseName: string | null;
1848
+ Description: string | null;
1849
1849
  IsRequired: boolean;
1850
1850
  PersonId: number;
1851
1851
  Status: CourseMemberStatusString;
@@ -1858,7 +1858,7 @@ export interface EducationAnswersDto {
1858
1858
 
1859
1859
  export interface EducationLessonDto {
1860
1860
  Id: number;
1861
- Name: string;
1861
+ Name: string | null;
1862
1862
  NumberOfFiles: number | null;
1863
1863
  NumberOfQuestions: number | null;
1864
1864
  Sequence: number;
@@ -1869,7 +1869,7 @@ export interface EducationLessonDto {
1869
1869
  export interface EducationReportCardDto {
1870
1870
  CompletedDate: string | null;
1871
1871
  CourseId: number;
1872
- CourseName: string;
1872
+ CourseName: string | null;
1873
1873
  LastAttemptedDate: string | null;
1874
1874
  }
1875
1875
 
@@ -1887,15 +1887,15 @@ export interface GradeResponseDto {
1887
1887
 
1888
1888
  export interface MyCoursesDto {
1889
1889
  Categories: Array<Partial<CourseCategoryDto>>;
1890
- Certificate: Partial<EducationCourseCertificate>;
1890
+ Certificate: Partial<EducationCourseCertificate> | null;
1891
1891
  CompletionPercent: number | null;
1892
1892
  CreatedDate: string | null;
1893
- Description: string;
1893
+ Description: string | null;
1894
1894
  Id: number;
1895
- Image: Partial<EducationCourseImage>;
1895
+ Image: Partial<EducationCourseImage> | null;
1896
1896
  IsCompleted: boolean | null;
1897
1897
  Lessons: Array<Partial<EducationLessonDto>>;
1898
- Name: string;
1898
+ Name: string | null;
1899
1899
  Required: boolean | null;
1900
1900
  }
1901
1901
 
@@ -1931,14 +1931,14 @@ export interface DocumentSearchDto extends IDatabaseAttachment {
1931
1931
  export interface DocumentSearchFieldDto {
1932
1932
  Id: number;
1933
1933
  Name: string;
1934
- Value: string;
1934
+ Value: string | null;
1935
1935
  ValueType: string;
1936
1936
  }
1937
1937
 
1938
1938
  export interface DocumentSearchFieldFilterDto {
1939
1939
  id: number;
1940
- value: string;
1941
- value2: string;
1940
+ value: string | null;
1941
+ value2: string | null;
1942
1942
  }
1943
1943
 
1944
1944
  export interface DocumentSearchParameterDto {
@@ -1974,28 +1974,28 @@ export interface DistributionGroupMemberDto {
1974
1974
  }
1975
1975
 
1976
1976
  export interface SearchDto {
1977
- AccountId: string;
1978
- AccountName: string;
1979
- Address1: string;
1980
- Address2: string;
1977
+ AccountId: string | null;
1978
+ AccountName: string | null;
1979
+ Address1: string | null;
1980
+ Address2: string | null;
1981
1981
  AgencyId: number | null;
1982
- AgencyName: string;
1983
- City: string;
1984
- ContactFirstName: string;
1985
- ContactLastName: string;
1986
- ContactTitle: string;
1982
+ AgencyName: string | null;
1983
+ City: string | null;
1984
+ ContactFirstName: string | null;
1985
+ ContactLastName: string | null;
1986
+ ContactTitle: string | null;
1987
1987
  ElasticScore: number | null;
1988
- Email: string;
1989
- MainPhone: string;
1988
+ Email: string | null;
1989
+ MainPhone: string | null;
1990
1990
  PolicyNumbers: Array<string>;
1991
1991
  ProducerId: number | null;
1992
- ProducerName: string;
1993
- ProducerPhone: string;
1992
+ ProducerName: string | null;
1993
+ ProducerPhone: string | null;
1994
1994
  Source: SearchSourceString;
1995
- State: string;
1996
- Title: string;
1997
- Type: string;
1998
- Zip: string;
1995
+ State: string | null;
1996
+ Title: string | null;
1997
+ Type: string | null;
1998
+ Zip: string | null;
1999
1999
  }
2000
2000
 
2001
2001
  export interface AccountActivityOverviewDto {
@@ -2011,7 +2011,7 @@ export interface AccountActivityOverviewDto {
2011
2011
  export interface AccountDto {
2012
2012
  AccountType: new_AccountTypeString;
2013
2013
  Id: string;
2014
- Name: string;
2014
+ Name: string | null;
2015
2015
  Opportunities: Array<Partial<OpportunityDto>>;
2016
2016
  OwnerId: string | null;
2017
2017
  }
@@ -2068,8 +2068,8 @@ export interface OpportunityDto {
2068
2068
  IsSponsored2: boolean;
2069
2069
  LineOfBusiness: Opportunity_new_LineofBusinessString;
2070
2070
  LineOfCoverage: Opportunity_new_LineofCoverageString;
2071
- Name: string;
2072
- Other: string;
2071
+ Name: string | null;
2072
+ Other: string | null;
2073
2073
  Premium: Partial<number> | null;
2074
2074
  TotalRevenue: Partial<number> | null;
2075
2075
  }
@@ -2107,21 +2107,21 @@ export interface UpsertConnectedServicesDto {
2107
2107
  Id: number | null;
2108
2108
  IsActive: boolean;
2109
2109
  Name: string;
2110
- ServiceCost: string;
2110
+ ServiceCost: string | null;
2111
2111
  ShowLicensing: boolean;
2112
2112
  }
2113
2113
 
2114
2114
  export interface AgencyPartnerDto {
2115
- FirstName: string;
2115
+ FirstName: string | null;
2116
2116
  Id: number;
2117
- LastName: string;
2117
+ LastName: string | null;
2118
2118
  }
2119
2119
 
2120
2120
  export interface CompanyBreakdownDto {
2121
2121
  AgencyPartnerId: number;
2122
- AgencyPartnerName: string;
2122
+ AgencyPartnerName: string | null;
2123
2123
  CompanyId: number;
2124
- CompanyName: string;
2124
+ CompanyName: string | null;
2125
2125
  ServiceToCompanyId: number;
2126
2126
  Status: ConnectedStatusString;
2127
2127
  UpdatedDate: string | null;
@@ -2143,7 +2143,7 @@ export interface GetLicensingBreakdownByCompanyDto {
2143
2143
  AgreementEndDate: string | null;
2144
2144
  AgreementStartDate: string | null;
2145
2145
  CompanyId: number;
2146
- CompanyName: string;
2146
+ CompanyName: string | null;
2147
2147
  CostPerLicense: Partial<number> | null;
2148
2148
  NumOfLicenses: number | null;
2149
2149
  ServiceToCompanyId: number;
@@ -2154,14 +2154,14 @@ export interface GetLicensingBreakdownByCompanyDto {
2154
2154
  export interface GetPopularServicesDto {
2155
2155
  Id: number;
2156
2156
  InUseCount: number;
2157
- Name: string;
2157
+ Name: string | null;
2158
2158
  TotalAvailableToCount: number;
2159
2159
  }
2160
2160
 
2161
2161
  export interface GetServiceCompanyStatsDto {
2162
2162
  AgencyPartners: Array<Partial<AgencyPartnerDto>>;
2163
2163
  CompanyId: number;
2164
- CompanyName: string;
2164
+ CompanyName: string | null;
2165
2165
  CompanyStartDate: string;
2166
2166
  ServicesInUseCount: number;
2167
2167
  ServicesNotDiscussedCount: number;
@@ -2173,16 +2173,16 @@ export interface GetServicesCountDto {
2173
2173
  Count: number;
2174
2174
  CreatedDate: string;
2175
2175
  ServiceId: number;
2176
- ServiceName: string;
2176
+ ServiceName: string | null;
2177
2177
  }
2178
2178
 
2179
2179
  export interface GetServiceStatsDto {
2180
- CategoryName: string;
2180
+ CategoryName: string | null;
2181
2181
  ChampionMeetingCount: number;
2182
2182
  Id: number;
2183
2183
  ImplementationSuccessRate: Partial<number>;
2184
2184
  ImplementingCount: number;
2185
- Name: string;
2185
+ Name: string | null;
2186
2186
  NotDiscussedCount: number;
2187
2187
  NotInterestedCount: number;
2188
2188
  ServicesImplemented: number;
@@ -2192,18 +2192,18 @@ export interface GetServiceStatsDto {
2192
2192
  }
2193
2193
 
2194
2194
  export interface ServiceDetailsChampionDto {
2195
- FirstName: string;
2196
- LastName: string;
2195
+ FirstName: string | null;
2196
+ LastName: string | null;
2197
2197
  PersonId: number;
2198
2198
  }
2199
2199
 
2200
2200
  export interface ServiceDetailsDto {
2201
- Category: string;
2201
+ Category: string | null;
2202
2202
  Champions: Array<Partial<ServiceDetailsChampionDto>>;
2203
2203
  Description: string;
2204
2204
  Id: number;
2205
2205
  Name: string;
2206
- ServiceCost: string;
2206
+ ServiceCost: string | null;
2207
2207
  }
2208
2208
 
2209
2209
  export interface ServiceToCompanyToChampionDto {
@@ -2213,71 +2213,71 @@ export interface ServiceToCompanyToChampionDto {
2213
2213
  }
2214
2214
 
2215
2215
  export interface UpsertServiceToCompanyDto {
2216
- Body: string;
2216
+ Body: string | null;
2217
2217
  CcCoOwners: boolean;
2218
2218
  CcSelf: boolean;
2219
2219
  Champions: Array<Partial<ServiceToCompanyToChampionDto>>;
2220
2220
  DueDate: string | null;
2221
2221
  SendEmail: boolean;
2222
2222
  Status: ConnectedStatusString;
2223
- Subject: string;
2223
+ Subject: string | null;
2224
2224
  }
2225
2225
 
2226
2226
  export interface AgencySearchInfo {
2227
2227
  CanEditOwnership: boolean;
2228
- Company: Partial<Company>;
2228
+ Company: Partial<Company> | null;
2229
2229
  CompanyId: number;
2230
- JobRoles: Array<Partial<CompanyJobRoleDto>>;
2230
+ JobRoles: Array<Partial<CompanyJobRoleDto>> | null;
2231
2231
  RemoteEmployeeCount: number;
2232
2232
  RemoteLocationCount: number;
2233
2233
  }
2234
2234
 
2235
2235
  export interface CompanyDetailsDto {
2236
2236
  AcquisitionDate: string | null;
2237
- DbaName: string;
2238
- Ein: string;
2239
- Fax: string;
2240
- FolderPath: string;
2241
- HrName: string;
2237
+ DbaName: string | null;
2238
+ Ein: string | null;
2239
+ Fax: string | null;
2240
+ FolderPath: string | null;
2241
+ HrName: string | null;
2242
2242
  Id: number;
2243
- LegalName: string;
2243
+ LegalName: string | null;
2244
2244
  Logos: Array<Partial<CompanyLogo>>;
2245
- MainName: string;
2246
- MainPhone: string;
2247
- PrimaryEmail: string;
2248
- ShortName: string;
2249
- Type: string;
2245
+ MainName: string | null;
2246
+ MainPhone: string | null;
2247
+ PrimaryEmail: string | null;
2248
+ ShortName: string | null;
2249
+ Type: string | null;
2250
2250
  }
2251
2251
 
2252
2252
  export interface CompanyEmployeeDto {
2253
- Email: string;
2254
- FirstName: string;
2253
+ Email: string | null;
2254
+ FirstName: string | null;
2255
2255
  IsDirectEmployee: boolean;
2256
- LastName: string;
2256
+ LastName: string | null;
2257
2257
  PersonId: number;
2258
2258
  }
2259
2259
 
2260
2260
  export interface CompanyJobRoleDto {
2261
2261
  Employees: Array<Partial<CompanyEmployeeDto>>;
2262
- JobRoleType: string;
2262
+ JobRoleType: string | null;
2263
2263
  }
2264
2264
 
2265
2265
  export interface CompanyUpsertDto {
2266
2266
  AcquisitionDate: string | null;
2267
2267
  CompanyRoleType: CompanyRoleTypeString | null;
2268
- DBAName: string;
2269
- EIN: string;
2270
- FaxPhoneAreaCode: string;
2271
- FaxPhoneLine: string;
2272
- FolderPath: string;
2273
- HrName: string;
2268
+ DBAName: string | null;
2269
+ EIN: string | null;
2270
+ FaxPhoneAreaCode: string | null;
2271
+ FaxPhoneLine: string | null;
2272
+ FolderPath: string | null;
2273
+ HrName: string | null;
2274
2274
  Id: number | null;
2275
- LegalName: string;
2276
- MainName: string;
2277
- MainPhoneAreaCode: string;
2278
- MainPhoneLine: string;
2279
- PrimaryEmail: string;
2280
- ShortName: string;
2275
+ LegalName: string | null;
2276
+ MainName: string | null;
2277
+ MainPhoneAreaCode: string | null;
2278
+ MainPhoneLine: string | null;
2279
+ PrimaryEmail: string | null;
2280
+ ShortName: string | null;
2281
2281
  }
2282
2282
 
2283
2283
  export interface MergerDto {
@@ -2299,14 +2299,14 @@ export interface CLGameAuditBreakdownCommissionDto {
2299
2299
  Date: string | null;
2300
2300
  Id: number;
2301
2301
  LastModifiedDate: string | null;
2302
- LineOfCoverage: string;
2303
- Name: string;
2302
+ LineOfCoverage: string | null;
2303
+ Name: string | null;
2304
2304
  }
2305
2305
 
2306
2306
  export interface CLGameAuditBreakdownDto {
2307
2307
  AmountsMatch: boolean;
2308
- CLGamePoint: Partial<CLGamePoint>;
2309
- CrmCommission: Partial<CLGameAuditBreakdownCommissionDto>;
2308
+ CLGamePoint: Partial<CLGamePoint> | null;
2309
+ CrmCommission: Partial<CLGameAuditBreakdownCommissionDto> | null;
2310
2310
  DatesMatch: boolean;
2311
2311
  IsCrmCommissionDeleted: boolean;
2312
2312
  IsPointCreatedByAdmin: boolean;
@@ -2319,15 +2319,15 @@ export interface CLGameAuditBreakdownsBySegmentDto {
2319
2319
  GameTotal: Partial<number>;
2320
2320
  IsAfterGame: boolean;
2321
2321
  IsBeforeGame: boolean;
2322
- Segment: Partial<CLGameSegment>;
2322
+ Segment: Partial<CLGameSegment> | null;
2323
2323
  SegmentId: number | null;
2324
2324
  }
2325
2325
 
2326
2326
  export interface CLGameAuditSummaryDto {
2327
2327
  Difference: Partial<number>;
2328
- FirstName: string;
2328
+ FirstName: string | null;
2329
2329
  IsEditedByAdmin: boolean;
2330
- LastName: string;
2330
+ LastName: string | null;
2331
2331
  PersonId: number;
2332
2332
  TotalCLPoints: Partial<number>;
2333
2333
  TotalCRMPoints: Partial<number>;
@@ -2338,10 +2338,10 @@ export interface CLGameDivisionReorderDto {
2338
2338
  }
2339
2339
 
2340
2340
  export interface CLGamePrizePayoutDto {
2341
- EmailAddress: string;
2342
- FirstName: string;
2343
- GrandPrizeName: string;
2344
- LastName: string;
2341
+ EmailAddress: string | null;
2342
+ FirstName: string | null;
2343
+ GrandPrizeName: string | null;
2344
+ LastName: string | null;
2345
2345
  PersonId: number;
2346
2346
  PrizeAmount: Partial<number> | null;
2347
2347
  Rank: number;
@@ -2365,22 +2365,22 @@ export interface CLGameBreakdownDto {
2365
2365
 
2366
2366
  export interface CLGameCrmCarrierDto {
2367
2367
  CarrierId: number;
2368
- CarrierName: string;
2368
+ CarrierName: string | null;
2369
2369
  }
2370
2370
 
2371
2371
  export interface CLGameDivisionBreakdownDto {
2372
2372
  DivisionId: number;
2373
- DivisionName: string;
2373
+ DivisionName: string | null;
2374
2374
  DivisionSequence: number;
2375
2375
  Teams: Array<Partial<CLGameTeamBreakdownDto>>;
2376
2376
  }
2377
2377
 
2378
2378
  export interface CLGamePlayerBreakdownDto {
2379
- EmailAddress: string;
2380
- FirstName: string;
2381
- GrandPrizeName: string;
2379
+ EmailAddress: string | null;
2380
+ FirstName: string | null;
2381
+ GrandPrizeName: string | null;
2382
2382
  IsTeamCaptain: boolean;
2383
- LastName: string;
2383
+ LastName: string | null;
2384
2384
  PersonId: number;
2385
2385
  PrizeAmount: Partial<number> | null;
2386
2386
  Rank: number;
@@ -2389,15 +2389,15 @@ export interface CLGamePlayerBreakdownDto {
2389
2389
  }
2390
2390
 
2391
2391
  export interface CLGamePlayerDto {
2392
- CompanyName: string;
2393
- FirstName: string;
2392
+ CompanyName: string | null;
2393
+ FirstName: string | null;
2394
2394
  IsCaptain: boolean;
2395
- LastName: string;
2395
+ LastName: string | null;
2396
2396
  PersonId: number;
2397
2397
  PlayerId: number;
2398
2398
  PlayerPersonRoleId: number | null;
2399
2399
  TeamId: number | null;
2400
- TeamName: string;
2400
+ TeamName: string | null;
2401
2401
  TeamPersonRoleId: number | null;
2402
2402
  TotalPoints: Partial<number>;
2403
2403
  }
@@ -2415,43 +2415,43 @@ export interface CLGameScoreboardDto {
2415
2415
  SponsorId: number | null;
2416
2416
  SponsorIds: Array<number>;
2417
2417
  Take: number | null;
2418
- WebComponentHTMLTag: string;
2418
+ WebComponentHTMLTag: string | null;
2419
2419
  }
2420
2420
 
2421
2421
  export interface CLGameSponsorPointsDto {
2422
2422
  SponsorId: number | null;
2423
- SponsorName: string;
2423
+ SponsorName: string | null;
2424
2424
  TotalPoints: Partial<number>;
2425
2425
  }
2426
2426
 
2427
2427
  export interface CLGameTeamBreakdownDto {
2428
- GrandPrizeName: string;
2428
+ GrandPrizeName: string | null;
2429
2429
  Players: Array<Partial<CLGamePlayerBreakdownDto>>;
2430
2430
  PrizeAmount: Partial<number> | null;
2431
2431
  Rank: number;
2432
2432
  TeamId: number;
2433
- TeamImageCdnFileName: string;
2434
- TeamImageExtension: string;
2433
+ TeamImageCdnFileName: string | null;
2434
+ TeamImageExtension: string | null;
2435
2435
  TeamImageId: number | null;
2436
- TeamImagePreviewExtension: string;
2437
- TeamImagePreviewSizes: string;
2438
- TeamName: string;
2439
- TeamThumbnailCdnFileName: string;
2440
- TeamThumbnailExtension: string;
2441
- TeamThumbnailFileName: string;
2436
+ TeamImagePreviewExtension: string | null;
2437
+ TeamImagePreviewSizes: string | null;
2438
+ TeamName: string | null;
2439
+ TeamThumbnailCdnFileName: string | null;
2440
+ TeamThumbnailExtension: string | null;
2441
+ TeamThumbnailFileName: string | null;
2442
2442
  TeamThumbnailId: number | null;
2443
- TeamThumbnailPreviewSizes: string;
2443
+ TeamThumbnailPreviewSizes: string | null;
2444
2444
  TotalPoints: Partial<number>;
2445
2445
  }
2446
2446
 
2447
2447
  export interface CLGameTopPlayerDto {
2448
2448
  AgencyId: number | null;
2449
- AgencyName: string;
2450
- EmailAddress: string;
2451
- FirstName: string;
2452
- GrandPrizeName: string;
2449
+ AgencyName: string | null;
2450
+ EmailAddress: string | null;
2451
+ FirstName: string | null;
2452
+ GrandPrizeName: string | null;
2453
2453
  IsSubsidized: boolean;
2454
- LastName: string;
2454
+ LastName: string | null;
2455
2455
  PersonId: number;
2456
2456
  PrizeAmount: Partial<number> | null;
2457
2457
  Rank: number;
@@ -2460,7 +2460,7 @@ export interface CLGameTopPlayerDto {
2460
2460
 
2461
2461
  export interface CLGameTopPlayerGroupsDto {
2462
2462
  PlayerGroupId: number;
2463
- PlayerGroupName: string;
2463
+ PlayerGroupName: string | null;
2464
2464
  Players: Array<Partial<CLGameTopPlayerDto>>;
2465
2465
  }
2466
2466