@leavittsoftware/lg-core-typescript 2.66.0 → 2.69.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.
@@ -1 +1 @@
1
- {"version":3,"file":"api3.leavitt.com.js","sourceRoot":"","sources":["api3.leavitt.com.ts"],"names":[],"mappings":"AAywCA,MAAM,CAAN,IAAY,aAMX;AAND,WAAY,aAAa;IACrB,qDAAU,CAAA;IACV,yDAAY,CAAA;IACZ,uEAAmB,CAAA;IACnB,qDAAU,CAAA;IACV,mEAAiB,CAAA;AACrB,CAAC,EANW,aAAa,KAAb,aAAa,QAMxB;AAID,MAAM,CAAN,IAAY,YAIX;AAJD,WAAY,YAAY;IACpB,+DAAgB,CAAA;IAChB,mDAAU,CAAA;IACV,6CAAO,CAAA;AACX,CAAC,EAJW,YAAY,KAAZ,YAAY,QAIvB;AAID,MAAM,CAAN,IAAY,eAIX;AAJD,WAAY,eAAe;IACvB,yEAAkB,CAAA;IAClB,iEAAc,CAAA;IACd,iFAAsB,CAAA;AAC1B,CAAC,EAJW,eAAe,KAAf,eAAe,QAI1B"}
1
+ {"version":3,"file":"api3.leavitt.com.js","sourceRoot":"","sources":["api3.leavitt.com.ts"],"names":[],"mappings":"AAgzCA,MAAM,CAAN,IAAY,aAMX;AAND,WAAY,aAAa;IACrB,qDAAU,CAAA;IACV,yDAAY,CAAA;IACZ,uEAAmB,CAAA;IACnB,qDAAU,CAAA;IACV,mEAAiB,CAAA;AACrB,CAAC,EANW,aAAa,KAAb,aAAa,QAMxB;AAID,MAAM,CAAN,IAAY,YAIX;AAJD,WAAY,YAAY;IACpB,+DAAgB,CAAA;IAChB,mDAAU,CAAA;IACV,6CAAO,CAAA;AACX,CAAC,EAJW,YAAY,KAAZ,YAAY,QAIvB;AAID,MAAM,CAAN,IAAY,eAIX;AAJD,WAAY,eAAe;IACvB,yEAAkB,CAAA;IAClB,iEAAc,CAAA;IACd,iFAAsB,CAAA;AAC1B,CAAC,EAJW,eAAe,KAAf,eAAe,QAI1B"}
@@ -147,6 +147,38 @@ export interface PLGamePlayerBreakdownDto {
147
147
  TotalPoints: Partial<number>;
148
148
  }
149
149
 
150
+ export interface PLGamePlayerCsvItemDTO {
151
+ CompanyName: string | null;
152
+ FirstName: string | null;
153
+ LastName: string | null;
154
+ Points: string | null;
155
+ TeamName: string | null;
156
+ }
157
+
158
+ export interface PLGamePlayerDto {
159
+ CompanyName: string | null;
160
+ FirstName: string | null;
161
+ IsCaptain: boolean;
162
+ LastName: string | null;
163
+ PersonId: number;
164
+ PlayerId: number;
165
+ PlayerPersonRoleId: number | null;
166
+ TeamId: number | null;
167
+ TeamName: string | null;
168
+ TeamPersonRoleId: number | null;
169
+ TotalPoints: Partial<number>;
170
+ }
171
+
172
+ export interface PLGamePointCsvItemDto {
173
+ Amount: string | null;
174
+ ClientName: string | null;
175
+ Date: string | null;
176
+ ProducerFirstName: string | null;
177
+ ProducerLastName: string | null;
178
+ Sponsor: string | null;
179
+ Type: string | null;
180
+ }
181
+
150
182
  export interface PLGameTeamBreakdownDto {
151
183
  GrandPrizeName: string | null;
152
184
  Players: Array<Partial<PLGamePlayerBreakdownDto>> | null;
@@ -337,18 +369,9 @@ export interface CarrierLoginDto {
337
369
  Username: string | null;
338
370
  }
339
371
 
340
- export interface BopQuoteDto {
341
- BusinessStartYear: number;
342
- City: string | null;
343
- ClassName: string | null;
344
- IsTest: boolean;
372
+ export interface ProvisionedCompanyUnitDto {
373
+ Id: string | null;
345
374
  Name: string | null;
346
- PhoneNumber: string | null;
347
- RecaptchaUserResponse: string | null;
348
- SpectrumClassCode: string | null;
349
- State: string | null;
350
- Street1: string | null;
351
- Zip: string | null;
352
375
  }
353
376
 
354
377
  export interface HartfordEmailQuoteDto {
@@ -380,21 +403,6 @@ export interface AnswerSetDto {
380
403
  SpectrumCode: string | null;
381
404
  }
382
405
 
383
- export interface WorkersCompQuoteDto {
384
- BusinessStartYear: number;
385
- City: string | null;
386
- IsTest: boolean;
387
- Name: string | null;
388
- NumberOfEmployees: number;
389
- PhoneNumber: string | null;
390
- RecaptchaUserResponse: string | null;
391
- SpectrumClassCode: string | null;
392
- State: string | null;
393
- Street1: string | null;
394
- TotalEmployeePayroll: Partial<number>;
395
- Zip: string | null;
396
- }
397
-
398
406
  export interface VertaforeLimitsDto {
399
407
  Values: Array<string> | null;
400
408
  }
@@ -556,6 +564,21 @@ export interface WidgetLifeRaterUpsertDto {
556
564
  ShowWealthManagementFields: boolean;
557
565
  }
558
566
 
567
+ export interface BopQuoteDto {
568
+ BusinessStartYear: number;
569
+ City: string | null;
570
+ ClassName: string | null;
571
+ IsTest: boolean;
572
+ Name: string | null;
573
+ PhoneNumber: string | null;
574
+ RaterUniqueId: string | null;
575
+ RecaptchaUserResponse: string | null;
576
+ SpectrumClassCode: string | null;
577
+ State: string | null;
578
+ Street1: string | null;
579
+ Zip: string | null;
580
+ }
581
+
559
582
  export interface CampaignSummaryDto {
560
583
  Attempted: number;
561
584
  Completed: number;
@@ -590,6 +613,22 @@ export interface SmallBusinessSummaryDto {
590
613
  WcQuotesWithError: number;
591
614
  }
592
615
 
616
+ export interface WorkersCompQuoteDto {
617
+ BusinessStartYear: number;
618
+ City: string | null;
619
+ IsTest: boolean;
620
+ Name: string | null;
621
+ NumberOfEmployees: number;
622
+ PhoneNumber: string | null;
623
+ RaterUniqueId: string | null;
624
+ RecaptchaUserResponse: string | null;
625
+ SpectrumClassCode: string | null;
626
+ State: string | null;
627
+ Street1: string | null;
628
+ TotalEmployeePayroll: Partial<number>;
629
+ Zip: string | null;
630
+ }
631
+
593
632
  export interface SequenceDto {
594
633
  Id: number;
595
634
  Sequence: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leavittsoftware/lg-core-typescript",
3
- "version": "2.66.0",
3
+ "version": "2.69.0",
4
4
  "description": "Typescript of lg core",
5
5
  "main": "lg.core.js",
6
6
  "files": [