@leavittsoftware/lg-core-typescript 2.10.1 → 2.13.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.js.map +1 -1
- package/api3.leavitt.com.ts +28 -0
- package/lg.net.core.ts +2 -2
- package/package.json +1 -1
package/api3.leavitt.com.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"api3.leavitt.com.js","sourceRoot":"","sources":["api3.leavitt.com.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"api3.leavitt.com.js","sourceRoot":"","sources":["api3.leavitt.com.ts"],"names":[],"mappings":"AA6uBA,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"}
|
package/api3.leavitt.com.ts
CHANGED
|
@@ -186,6 +186,19 @@ export interface NaicsSummaryDto {
|
|
|
186
186
|
TotalPremiums: number;
|
|
187
187
|
}
|
|
188
188
|
|
|
189
|
+
export interface BopQuoteDto {
|
|
190
|
+
BusinessStartYear: number;
|
|
191
|
+
City: string | null;
|
|
192
|
+
IsTest: boolean;
|
|
193
|
+
Name: string | null;
|
|
194
|
+
PhoneNumber: string | null;
|
|
195
|
+
SpectrumClassCode: string | null;
|
|
196
|
+
State: string | null;
|
|
197
|
+
Street1: string | null;
|
|
198
|
+
Street2: string | null;
|
|
199
|
+
Zip: string | null;
|
|
200
|
+
}
|
|
201
|
+
|
|
189
202
|
export interface SpectrumDto {
|
|
190
203
|
AnswerSet: Array<Partial<AnswerSetDto>> | null;
|
|
191
204
|
ClassName: string | null;
|
|
@@ -200,6 +213,21 @@ export interface AnswerSetDto {
|
|
|
200
213
|
SpectrumCode: string | null;
|
|
201
214
|
}
|
|
202
215
|
|
|
216
|
+
export interface WorkersCompQuoteDto {
|
|
217
|
+
BusinessStartYear: number;
|
|
218
|
+
City: string | null;
|
|
219
|
+
IsTest: boolean;
|
|
220
|
+
Name: string | null;
|
|
221
|
+
NumberOfEmployees: number;
|
|
222
|
+
PhoneNumber: string | null;
|
|
223
|
+
SpectrumClassCode: string | null;
|
|
224
|
+
State: string | null;
|
|
225
|
+
Street1: string | null;
|
|
226
|
+
Street2: string | null;
|
|
227
|
+
TotalEmployeePayroll: Partial<number>;
|
|
228
|
+
Zip: string | null;
|
|
229
|
+
}
|
|
230
|
+
|
|
203
231
|
export interface CampaignSummaryDto {
|
|
204
232
|
Attempted: number;
|
|
205
233
|
Completed: number;
|
package/lg.net.core.ts
CHANGED
|
@@ -128,12 +128,12 @@ export interface SurgeScoreboard {
|
|
|
128
128
|
Id: number;
|
|
129
129
|
IsEnabled: boolean;
|
|
130
130
|
Name: string | null;
|
|
131
|
+
Prizes: Array<Partial<SurgePrize>> | null;
|
|
131
132
|
SegmentType: Partial<SurgeSegmentType> | null;
|
|
132
133
|
SegmentTypeId: number | null;
|
|
133
134
|
Sequence: number;
|
|
134
135
|
Surge: Partial<Surge> | null;
|
|
135
136
|
SurgeId: number;
|
|
136
|
-
SurgePrizes: Array<Partial<SurgePrize>> | null;
|
|
137
137
|
Take: number | null;
|
|
138
138
|
WebComponentHTMLTag: string | null;
|
|
139
139
|
}
|
|
@@ -187,11 +187,11 @@ export interface SurgeTeamPersonRole extends PersonRole {
|
|
|
187
187
|
PrimaryScoreboardTopOnTeamPrizeAmount: Partial<number> | null;
|
|
188
188
|
PrimaryScoreboardTopOnTeamRank: number;
|
|
189
189
|
PrimaryScoreboardTotalPrizeAmount: Partial<number> | null;
|
|
190
|
+
Surge: Partial<Surge> | null;
|
|
190
191
|
SurgeCrmPoints: Array<Partial<SurgeCrmPoint>> | null;
|
|
191
192
|
SurgeId: number;
|
|
192
193
|
Team: Partial<SurgeTeam> | null;
|
|
193
194
|
TeamId: number | null;
|
|
194
|
-
TeamPersonRoleSurge: Partial<Surge> | null;
|
|
195
195
|
}
|
|
196
196
|
|
|
197
197
|
export interface SurgeViewerPersonRole extends PersonRole {
|