@leavittsoftware/lg-core-typescript 2.0.379 → 2.0.383
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/api2.leavitt.com.ts +73 -43
- package/elasticsearch.js.map +1 -1
- package/elasticsearch.ts +15 -0
- package/lg.core.repository.ts +142 -130
- package/package.json +1 -1
- package/reportingapi.leavitt.com.js.map +1 -1
- package/reportingapi.leavitt.com.ts +17 -0
package/api2.leavitt.com.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
// </auto-generated>
|
|
5
5
|
// ----------------------
|
|
6
6
|
import { BenefitPointCustomer,Ams360Customer } from './elasticsearch'
|
|
7
|
-
import { Ams360PersonRole,Ams360SupplementalCode,Ams360EmpCode,EmploymentTypeString,Person,CrmAccount,Tv,PreferredContactMethodTypeString,ConferenceAttendeePersonRole,Conference,ConferenceSponsorship,CompanyOwnership,TemplateContact,TimelineContact,GlobalTask,TemplateTask,TemplateServiceTask,TimelineDocumentPage,TimelineServiceTask,TimelineEnabledPage,TimelineTaskToTimelineContactAssignee,TaskReminder,TaskStatusTypeString,TimelineTaskToTimelineContactWatcher,TemplateTaskToTemplateContactAssignee,TemplateTaskToTemplateContactWatcher,TimelineTemplateToCompany,ApplicationToApplicationTag,PermissionToApplication,ProducerCommissionRate,DifferedCompensation,Expectation,FailReason,GuidingPrinciple,PhoneNumberTypesString } from './lg.core'
|
|
7
|
+
import { Ams360PersonRole,Ams360SupplementalCode,Ams360EmpCode,EmploymentTypeString,Person,CrmAccount,Tv,PreferredContactMethodTypeString,ConferenceAttendeePersonRole,Conference,ConferenceSponsorship,CompanyOwnership,TemplateContact,TimelineContact,GlobalTask,TemplateTask,TemplateServiceTask,TimelineDocumentPage,TimelineServiceTask,TimelineEnabledPage,TimelineTaskToTimelineContactAssignee,TaskReminder,TaskStatusTypeString,TimelineTaskToTimelineContactWatcher,TemplateTaskToTemplateContactAssignee,TemplateTaskToTemplateContactWatcher,TimelineTemplateToCompany,ApplicationToApplicationTag,PermissionToApplication,ProducerCommissionRate,DifferedCompensation,Expectation,FailReason,GuidingPrinciple,PLGameScoreboardToPlayerGroup,PrizeDistributionOptionString,PLGamePrize,PhoneNumberTypesString,CLGameScoreboardToPlayerGroup,CLGamePrize } from './lg.core'
|
|
8
8
|
|
|
9
9
|
export interface EventEmailDto {
|
|
10
10
|
Body: string | null;
|
|
@@ -513,20 +513,6 @@ export interface TvGroupUpsertDto {
|
|
|
513
513
|
Tvs: Array<Partial<Tv>> | null;
|
|
514
514
|
}
|
|
515
515
|
|
|
516
|
-
export interface PLGamePlayerDto {
|
|
517
|
-
CompanyName: string | null;
|
|
518
|
-
FirstName: string | null;
|
|
519
|
-
IsCaptain: boolean;
|
|
520
|
-
LastName: string | null;
|
|
521
|
-
PersonId: number;
|
|
522
|
-
PlayerId: number;
|
|
523
|
-
PlayerPersonRoleId: number | null;
|
|
524
|
-
TeamId: number | null;
|
|
525
|
-
TeamName: string | null;
|
|
526
|
-
TeamPersonRoleId: number | null;
|
|
527
|
-
TotalPoints: Partial<number>;
|
|
528
|
-
}
|
|
529
|
-
|
|
530
516
|
export interface AccountsJobRoleDto {
|
|
531
517
|
BenefitsAssignmentPercentage: number | null;
|
|
532
518
|
CommercialAssignmentPercentage: number | null;
|
|
@@ -958,34 +944,6 @@ export interface OpportunityDto {
|
|
|
958
944
|
TotalRevenue: Partial<number> | null;
|
|
959
945
|
}
|
|
960
946
|
|
|
961
|
-
export interface CLGamePrizePayoutDto {
|
|
962
|
-
FirstName: string | null;
|
|
963
|
-
GrandPrizeName: string | null;
|
|
964
|
-
LastName: string | null;
|
|
965
|
-
PersonId: number;
|
|
966
|
-
PrizeAmount: Partial<number> | null;
|
|
967
|
-
Rank: number;
|
|
968
|
-
}
|
|
969
|
-
|
|
970
|
-
export interface CLGameCrmCarrierDto {
|
|
971
|
-
CarrierId: number;
|
|
972
|
-
CarrierName: string | null;
|
|
973
|
-
}
|
|
974
|
-
|
|
975
|
-
export interface CLGamePlayerDto {
|
|
976
|
-
CompanyName: string | null;
|
|
977
|
-
FirstName: string | null;
|
|
978
|
-
IsCaptain: boolean;
|
|
979
|
-
LastName: string | null;
|
|
980
|
-
PersonId: number;
|
|
981
|
-
PlayerId: number;
|
|
982
|
-
PlayerPersonRoleId: number | null;
|
|
983
|
-
TeamId: number | null;
|
|
984
|
-
TeamName: string | null;
|
|
985
|
-
TeamPersonRoleId: number | null;
|
|
986
|
-
TotalPoints: Partial<number>;
|
|
987
|
-
}
|
|
988
|
-
|
|
989
947
|
export interface EventsRegisteredUserDto {
|
|
990
948
|
Description: string | null;
|
|
991
949
|
EventDate: string | null;
|
|
@@ -1427,6 +1385,35 @@ export interface ReorderEducationSequenceDto {
|
|
|
1427
1385
|
NewOrder: Array<Partial<EducationSequenceDto>> | null;
|
|
1428
1386
|
}
|
|
1429
1387
|
|
|
1388
|
+
export interface PLGameScoreboardDto {
|
|
1389
|
+
Id: number | null;
|
|
1390
|
+
IsEnabled: boolean;
|
|
1391
|
+
Name: string | null;
|
|
1392
|
+
PlayerGroups: Array<Partial<PLGameScoreboardToPlayerGroup>> | null;
|
|
1393
|
+
PLGameId: number;
|
|
1394
|
+
PrizeDistributionOption: PrizeDistributionOptionString;
|
|
1395
|
+
Prizes: Array<Partial<PLGamePrize>> | null;
|
|
1396
|
+
SegmentTypeId: number | null;
|
|
1397
|
+
Sequence: number;
|
|
1398
|
+
SponsorId: number | null;
|
|
1399
|
+
Take: number | null;
|
|
1400
|
+
WebComponentHTMLTag: string | null;
|
|
1401
|
+
}
|
|
1402
|
+
|
|
1403
|
+
export interface PLGamePlayerDto {
|
|
1404
|
+
CompanyName: string | null;
|
|
1405
|
+
FirstName: string | null;
|
|
1406
|
+
IsCaptain: boolean;
|
|
1407
|
+
LastName: string | null;
|
|
1408
|
+
PersonId: number;
|
|
1409
|
+
PlayerId: number;
|
|
1410
|
+
PlayerPersonRoleId: number | null;
|
|
1411
|
+
TeamId: number | null;
|
|
1412
|
+
TeamName: string | null;
|
|
1413
|
+
TeamPersonRoleId: number | null;
|
|
1414
|
+
TotalPoints: Partial<number>;
|
|
1415
|
+
}
|
|
1416
|
+
|
|
1430
1417
|
export interface ITEmployeeLookupEmailDto {
|
|
1431
1418
|
Address: string | null;
|
|
1432
1419
|
IsPrimary: boolean;
|
|
@@ -1486,6 +1473,49 @@ export interface ITEmployeeLookupSummaryDto {
|
|
|
1486
1473
|
Zip: string | null;
|
|
1487
1474
|
}
|
|
1488
1475
|
|
|
1476
|
+
export interface CLGameScoreboardDto {
|
|
1477
|
+
CLGameId: number;
|
|
1478
|
+
Id: number | null;
|
|
1479
|
+
IsEnabled: boolean;
|
|
1480
|
+
Name: string | null;
|
|
1481
|
+
PlayerGroups: Array<Partial<CLGameScoreboardToPlayerGroup>> | null;
|
|
1482
|
+
Prizes: Array<Partial<CLGamePrize>> | null;
|
|
1483
|
+
QualificationAmount: Partial<number> | null;
|
|
1484
|
+
SegmentTypeId: number | null;
|
|
1485
|
+
Sequence: number;
|
|
1486
|
+
SponsorId: number | null;
|
|
1487
|
+
Take: number | null;
|
|
1488
|
+
WebComponentHTMLTag: string | null;
|
|
1489
|
+
}
|
|
1490
|
+
|
|
1491
|
+
export interface CLGamePrizePayoutDto {
|
|
1492
|
+
FirstName: string | null;
|
|
1493
|
+
GrandPrizeName: string | null;
|
|
1494
|
+
LastName: string | null;
|
|
1495
|
+
PersonId: number;
|
|
1496
|
+
PrizeAmount: Partial<number> | null;
|
|
1497
|
+
Rank: number;
|
|
1498
|
+
}
|
|
1499
|
+
|
|
1500
|
+
export interface CLGameCrmCarrierDto {
|
|
1501
|
+
CarrierId: number;
|
|
1502
|
+
CarrierName: string | null;
|
|
1503
|
+
}
|
|
1504
|
+
|
|
1505
|
+
export interface CLGamePlayerDto {
|
|
1506
|
+
CompanyName: string | null;
|
|
1507
|
+
FirstName: string | null;
|
|
1508
|
+
IsCaptain: boolean;
|
|
1509
|
+
LastName: string | null;
|
|
1510
|
+
PersonId: number;
|
|
1511
|
+
PlayerId: number;
|
|
1512
|
+
PlayerPersonRoleId: number | null;
|
|
1513
|
+
TeamId: number | null;
|
|
1514
|
+
TeamName: string | null;
|
|
1515
|
+
TeamPersonRoleId: number | null;
|
|
1516
|
+
TotalPoints: Partial<number>;
|
|
1517
|
+
}
|
|
1518
|
+
|
|
1489
1519
|
export interface IIdentity {
|
|
1490
1520
|
Id: number;
|
|
1491
1521
|
}
|
package/elasticsearch.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"elasticsearch.js","sourceRoot":"","sources":["elasticsearch.ts"],"names":[],"mappings":"AAAA,yBAAyB;AACzB,mBAAmB;AACnB,uCAAuC;AACvC,oBAAoB;AACpB,yBAAyB;
|
|
1
|
+
{"version":3,"file":"elasticsearch.js","sourceRoot":"","sources":["elasticsearch.ts"],"names":[],"mappings":"AAAA,yBAAyB;AACzB,mBAAmB;AACnB,uCAAuC;AACvC,oBAAoB;AACpB,yBAAyB;AAkWzB,MAAM,CAAN,IAAY,WAIX;AAJD,WAAY,WAAW;IACnB,6CAAQ,CAAA;IACR,mDAAW,CAAA;IACX,mDAAW,CAAA;AACf,CAAC,EAJW,WAAW,KAAX,WAAW,QAItB;AAID,MAAM,CAAN,IAAY,SAWX;AAXD,WAAY,SAAS;IACjB,2DAAiB,CAAA;IACjB,mDAAa,CAAA;IACb,iEAAoB,CAAA;IACpB,uCAAO,CAAA;IACP,yCAAQ,CAAA;IACR,yCAAQ,CAAA;IACR,6CAAU,CAAA;IACV,2CAAS,CAAA;IACT,yCAAQ,CAAA;IACR,2CAAS,CAAA;AACb,CAAC,EAXW,SAAS,KAAT,SAAS,QAWpB;AAID,MAAM,CAAN,IAAY,aAMX;AAND,WAAY,aAAa;IACrB,mEAAiB,CAAA;IACjB,2DAAa,CAAA;IACb,uDAAW,CAAA;IACX,uDAAW,CAAA;IACX,uDAAW,CAAA;AACf,CAAC,EANW,aAAa,KAAb,aAAa,QAMxB"}
|
package/elasticsearch.ts
CHANGED
|
@@ -208,6 +208,21 @@ export interface ElasticCoreCompany {
|
|
|
208
208
|
ShortName: string | null;
|
|
209
209
|
}
|
|
210
210
|
|
|
211
|
+
export interface ElasticCompanyLeaseAttachment {
|
|
212
|
+
CdnFileName: string | null;
|
|
213
|
+
CompanyId: number;
|
|
214
|
+
CompanyLeaseAttachmentEndDate: string | null;
|
|
215
|
+
CompanyLeaseAttachmentId: number;
|
|
216
|
+
CompanyLeaseAttachmentIsExpired: boolean | null;
|
|
217
|
+
CompanyLeaseAttachmentStartDate: string;
|
|
218
|
+
CompanyLeaseExpirationDate: string | null;
|
|
219
|
+
CompanyLeaseId: number;
|
|
220
|
+
CompanyName: string | null;
|
|
221
|
+
Content: string | null;
|
|
222
|
+
Extension: string | null;
|
|
223
|
+
Filename: string | null;
|
|
224
|
+
}
|
|
225
|
+
|
|
211
226
|
export interface ElasticCorePerson {
|
|
212
227
|
CellPhone: string | null;
|
|
213
228
|
City: string | null;
|
package/lg.core.repository.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// generated using a custom program
|
|
4
4
|
// </auto-generated>
|
|
5
5
|
// ----------------------
|
|
6
|
-
import { SurgeSegment,SurgeCrmPoint,CLGameSegment,CLGamePoint
|
|
6
|
+
import { SurgeSegment,SurgeCrmPoint,Company,CLGameSegment,CLGamePoint } from './lg.core'
|
|
7
7
|
|
|
8
8
|
export interface PermissionHolderDto {
|
|
9
9
|
FirstName: string | null;
|
|
@@ -86,56 +86,6 @@ export interface SurgeAuditBreakdownDto {
|
|
|
86
86
|
SurgeCrmPoint: Partial<SurgeCrmPoint> | null;
|
|
87
87
|
}
|
|
88
88
|
|
|
89
|
-
export interface PLGameBreakdownDto {
|
|
90
|
-
Divisions: Array<Partial<PLGameDivisionBreakdownDto>> | null;
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
export interface PLGameDivisionBreakdownDto {
|
|
94
|
-
DivisionId: number;
|
|
95
|
-
DivisionName: string | null;
|
|
96
|
-
DivisionSequence: number;
|
|
97
|
-
Teams: Array<Partial<PLGameTeamBreakdownDto>> | null;
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
export interface PLGameTopPlayerDto {
|
|
101
|
-
FirstName: string | null;
|
|
102
|
-
GrandPrizeName: string | null;
|
|
103
|
-
LastName: string | null;
|
|
104
|
-
PersonId: number;
|
|
105
|
-
PrizeAmount: Partial<number> | null;
|
|
106
|
-
TotalPoints: Partial<number>;
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
export interface PLGamePlayerBreakdownDto {
|
|
110
|
-
FirstName: string | null;
|
|
111
|
-
GrandPrizeName: string | null;
|
|
112
|
-
IsTeamCaptain: boolean;
|
|
113
|
-
LastName: string | null;
|
|
114
|
-
PersonId: number;
|
|
115
|
-
PrizeAmount: Partial<number> | null;
|
|
116
|
-
TeamStartDate: string;
|
|
117
|
-
TotalPoints: Partial<number>;
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
export interface PLGameTeamBreakdownDto {
|
|
121
|
-
GrandPrizeName: string | null;
|
|
122
|
-
Players: Array<Partial<PLGamePlayerBreakdownDto>> | null;
|
|
123
|
-
PrizeAmount: Partial<number> | null;
|
|
124
|
-
TeamId: number;
|
|
125
|
-
TeamImageCdnFileName: string | null;
|
|
126
|
-
TeamImageExtension: string | null;
|
|
127
|
-
TeamImageId: number | null;
|
|
128
|
-
TeamImagePreviewExtension: string | null;
|
|
129
|
-
TeamImagePreviewSizes: string | null;
|
|
130
|
-
TeamName: string | null;
|
|
131
|
-
TeamThumbnailCdnFileName: string | null;
|
|
132
|
-
TeamThumbnailExtension: string | null;
|
|
133
|
-
TeamThumbnailFileName: string | null;
|
|
134
|
-
TeamThumbnailId: number | null;
|
|
135
|
-
TeamThumbnailPreviewSizes: string | null;
|
|
136
|
-
TotalPoints: Partial<number>;
|
|
137
|
-
}
|
|
138
|
-
|
|
139
89
|
export interface SurgeReportsBreakdownDto {
|
|
140
90
|
Divisions: Array<Partial<SurgeReportsDivisionBreakdownDto>> | null;
|
|
141
91
|
}
|
|
@@ -258,6 +208,147 @@ export interface FileExplorerFolderDto {
|
|
|
258
208
|
Name: string | null;
|
|
259
209
|
}
|
|
260
210
|
|
|
211
|
+
export interface BookedByPersonId {
|
|
212
|
+
booked_ttm: Partial<number>;
|
|
213
|
+
bookedmonth: Partial<number>;
|
|
214
|
+
bookedytd: Partial<number>;
|
|
215
|
+
corepersonid: number;
|
|
216
|
+
expected_ttm: Partial<number>;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
export interface VitalSignsLeaderDto {
|
|
220
|
+
AgencyName: string | null;
|
|
221
|
+
CompanyId: number;
|
|
222
|
+
FirstName: string | null;
|
|
223
|
+
IsSubsidized: boolean;
|
|
224
|
+
LastName: string | null;
|
|
225
|
+
PersonId: number;
|
|
226
|
+
Rank: number;
|
|
227
|
+
WrittenAmount: Partial<number> | null;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
export interface InvitedPersonDto {
|
|
231
|
+
FirstName: string | null;
|
|
232
|
+
LastName: string | null;
|
|
233
|
+
PersonId: number;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
export interface DomoBookedData {
|
|
237
|
+
BookedYtd: Partial<number>;
|
|
238
|
+
ExpectedTotalBook: Partial<number>;
|
|
239
|
+
PersonId: number;
|
|
240
|
+
TotalBook: Partial<number>;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
export interface DistributionGroupMemberDto {
|
|
244
|
+
FirstName: string | null;
|
|
245
|
+
GroupSource: Array<string> | null;
|
|
246
|
+
LastName: string | null;
|
|
247
|
+
PersonId: number;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
export interface FruitHolderDto {
|
|
251
|
+
FirstName: string | null;
|
|
252
|
+
GroupSource: Array<string> | null;
|
|
253
|
+
LastName: string | null;
|
|
254
|
+
PersonId: number;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
export interface PLGameTopPlayerGroupsDto {
|
|
258
|
+
PlayerGroupId: number;
|
|
259
|
+
PlayerGroupName: string | null;
|
|
260
|
+
Players: Array<Partial<PLGameTopPlayerDto>> | null;
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
export interface PLGameBreakdownDto {
|
|
264
|
+
Divisions: Array<Partial<PLGameDivisionBreakdownDto>> | null;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
export interface PLGameDivisionBreakdownDto {
|
|
268
|
+
DivisionId: number;
|
|
269
|
+
DivisionName: string | null;
|
|
270
|
+
DivisionSequence: number;
|
|
271
|
+
Teams: Array<Partial<PLGameTeamBreakdownDto>> | null;
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
export interface PLGameTopPlayerDto {
|
|
275
|
+
FirstName: string | null;
|
|
276
|
+
GrandPrizeName: string | null;
|
|
277
|
+
LastName: string | null;
|
|
278
|
+
PersonId: number;
|
|
279
|
+
PrizeAmount: Partial<number> | null;
|
|
280
|
+
TotalPoints: Partial<number>;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
export interface PLGamePlayerBreakdownDto {
|
|
284
|
+
FirstName: string | null;
|
|
285
|
+
GrandPrizeName: string | null;
|
|
286
|
+
IsTeamCaptain: boolean;
|
|
287
|
+
LastName: string | null;
|
|
288
|
+
PersonId: number;
|
|
289
|
+
PrizeAmount: Partial<number> | null;
|
|
290
|
+
TeamStartDate: string;
|
|
291
|
+
TotalPoints: Partial<number>;
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
export interface PLGameTeamBreakdownDto {
|
|
295
|
+
GrandPrizeName: string | null;
|
|
296
|
+
Players: Array<Partial<PLGamePlayerBreakdownDto>> | null;
|
|
297
|
+
PrizeAmount: Partial<number> | null;
|
|
298
|
+
TeamId: number;
|
|
299
|
+
TeamImageCdnFileName: string | null;
|
|
300
|
+
TeamImageExtension: string | null;
|
|
301
|
+
TeamImageId: number | null;
|
|
302
|
+
TeamImagePreviewExtension: string | null;
|
|
303
|
+
TeamImagePreviewSizes: string | null;
|
|
304
|
+
TeamName: string | null;
|
|
305
|
+
TeamThumbnailCdnFileName: string | null;
|
|
306
|
+
TeamThumbnailExtension: string | null;
|
|
307
|
+
TeamThumbnailFileName: string | null;
|
|
308
|
+
TeamThumbnailId: number | null;
|
|
309
|
+
TeamThumbnailPreviewSizes: string | null;
|
|
310
|
+
TotalPoints: Partial<number>;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
export interface FileExplorerPermissionsDto {
|
|
314
|
+
IsAdmin: boolean;
|
|
315
|
+
IsViewer: boolean;
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
export interface FileExplorerMemberDto {
|
|
319
|
+
FirstName: string | null;
|
|
320
|
+
GroupSource: Array<string> | null;
|
|
321
|
+
LastName: string | null;
|
|
322
|
+
PersonId: number;
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
export interface AgencySearchInfo {
|
|
326
|
+
CanEditOwnership: boolean;
|
|
327
|
+
Company: Partial<Company> | null;
|
|
328
|
+
CompanyId: number;
|
|
329
|
+
JobRoles: Array<Partial<CompanyJobRoleDto>> | null;
|
|
330
|
+
RemoteEmployeeCount: number;
|
|
331
|
+
RemoteLocationCount: number;
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
export interface CompanyJobRoleDto {
|
|
335
|
+
Employees: Array<Partial<CompanyEmployeeDto>> | null;
|
|
336
|
+
JobRoleType: string | null;
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
export interface CompanyEmployeeDto {
|
|
340
|
+
FirstName: string | null;
|
|
341
|
+
IsDirectEmployee: boolean;
|
|
342
|
+
LastName: string | null;
|
|
343
|
+
PersonId: number;
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
export interface CLGameTopPlayerGroupsDto {
|
|
347
|
+
PlayerGroupId: number;
|
|
348
|
+
PlayerGroupName: string | null;
|
|
349
|
+
Players: Array<Partial<CLGameTopPlayerDto>> | null;
|
|
350
|
+
}
|
|
351
|
+
|
|
261
352
|
export interface CLGameAuditBreakdownCommissionDto {
|
|
262
353
|
Amount: Partial<number>;
|
|
263
354
|
Date: string | null;
|
|
@@ -350,85 +441,6 @@ export interface CLGameTopPlayerDto {
|
|
|
350
441
|
TotalPoints: Partial<number>;
|
|
351
442
|
}
|
|
352
443
|
|
|
353
|
-
export interface BookedByPersonId {
|
|
354
|
-
booked_ttm: Partial<number>;
|
|
355
|
-
bookedmonth: Partial<number>;
|
|
356
|
-
bookedytd: Partial<number>;
|
|
357
|
-
corepersonid: number;
|
|
358
|
-
expected_ttm: Partial<number>;
|
|
359
|
-
}
|
|
360
|
-
|
|
361
|
-
export interface VitalSignsLeaderDto {
|
|
362
|
-
AgencyName: string | null;
|
|
363
|
-
CompanyId: number;
|
|
364
|
-
FirstName: string | null;
|
|
365
|
-
IsSubsidized: boolean;
|
|
366
|
-
LastName: string | null;
|
|
367
|
-
PersonId: number;
|
|
368
|
-
Rank: number;
|
|
369
|
-
WrittenAmount: Partial<number> | null;
|
|
370
|
-
}
|
|
371
|
-
|
|
372
|
-
export interface InvitedPersonDto {
|
|
373
|
-
FirstName: string | null;
|
|
374
|
-
LastName: string | null;
|
|
375
|
-
PersonId: number;
|
|
376
|
-
}
|
|
377
|
-
|
|
378
|
-
export interface DomoBookedData {
|
|
379
|
-
BookedYtd: Partial<number>;
|
|
380
|
-
ExpectedTotalBook: Partial<number>;
|
|
381
|
-
PersonId: number;
|
|
382
|
-
TotalBook: Partial<number>;
|
|
383
|
-
}
|
|
384
|
-
|
|
385
|
-
export interface DistributionGroupMemberDto {
|
|
386
|
-
FirstName: string | null;
|
|
387
|
-
GroupSource: Array<string> | null;
|
|
388
|
-
LastName: string | null;
|
|
389
|
-
PersonId: number;
|
|
390
|
-
}
|
|
391
|
-
|
|
392
|
-
export interface FruitHolderDto {
|
|
393
|
-
FirstName: string | null;
|
|
394
|
-
GroupSource: Array<string> | null;
|
|
395
|
-
LastName: string | null;
|
|
396
|
-
PersonId: number;
|
|
397
|
-
}
|
|
398
|
-
|
|
399
|
-
export interface FileExplorerPermissionsDto {
|
|
400
|
-
IsAdmin: boolean;
|
|
401
|
-
IsViewer: boolean;
|
|
402
|
-
}
|
|
403
|
-
|
|
404
|
-
export interface FileExplorerMemberDto {
|
|
405
|
-
FirstName: string | null;
|
|
406
|
-
GroupSource: Array<string> | null;
|
|
407
|
-
LastName: string | null;
|
|
408
|
-
PersonId: number;
|
|
409
|
-
}
|
|
410
|
-
|
|
411
|
-
export interface AgencySearchInfo {
|
|
412
|
-
CanEditOwnership: boolean;
|
|
413
|
-
Company: Partial<Company> | null;
|
|
414
|
-
CompanyId: number;
|
|
415
|
-
JobRoles: Array<Partial<CompanyJobRoleDto>> | null;
|
|
416
|
-
RemoteEmployeeCount: number;
|
|
417
|
-
RemoteLocationCount: number;
|
|
418
|
-
}
|
|
419
|
-
|
|
420
|
-
export interface CompanyJobRoleDto {
|
|
421
|
-
Employees: Array<Partial<CompanyEmployeeDto>> | null;
|
|
422
|
-
JobRoleType: string | null;
|
|
423
|
-
}
|
|
424
|
-
|
|
425
|
-
export interface CompanyEmployeeDto {
|
|
426
|
-
FirstName: string | null;
|
|
427
|
-
IsDirectEmployee: boolean;
|
|
428
|
-
LastName: string | null;
|
|
429
|
-
PersonId: number;
|
|
430
|
-
}
|
|
431
|
-
|
|
432
444
|
export interface BenefitPointContactDto {
|
|
433
445
|
AccountId: string | null;
|
|
434
446
|
AccountName: string | null;
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"reportingapi.leavitt.com.js","sourceRoot":"","sources":["reportingapi.leavitt.com.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"reportingapi.leavitt.com.js","sourceRoot":"","sources":["reportingapi.leavitt.com.ts"],"names":[],"mappings":"AAmIA,MAAM,CAAN,IAAY,eAKX;AALD,WAAY,eAAe;IACvB,6DAAgB,CAAA;IAChB,mEAAmB,CAAA;IACnB,qEAAoB,CAAA;IACpB,iEAAkB,CAAA;AACtB,CAAC,EALW,eAAe,KAAf,eAAe,QAK1B;AAID,MAAM,CAAN,IAAY,UAGX;AAHD,WAAY,UAAU;IAClB,2CAAQ,CAAA;IACR,+CAAU,CAAA;AACd,CAAC,EAHW,UAAU,KAAV,UAAU,QAGrB"}
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
// generated using a custom program
|
|
4
4
|
// </auto-generated>
|
|
5
5
|
// ----------------------
|
|
6
|
+
import { ManualEntryBudget,ManualEntryGeneralLedger,ManualEntryProduction } from './lg.ams360.datawarehouse'
|
|
6
7
|
import { ChartsLeaderDto,LeaderDto } from './lg.core.repository'
|
|
7
8
|
import { StateCodeTypeString,AccountStatusCodeTypeString } from './lg.core'
|
|
8
9
|
import { BasicPolInfo } from './elasticsearch'
|
|
@@ -96,6 +97,22 @@ export interface ChartsLeaderBoardDto {
|
|
|
96
97
|
TotalProducerCount: number;
|
|
97
98
|
}
|
|
98
99
|
|
|
100
|
+
export interface ManualEntryBudgetDto extends ManualEntryBudget {
|
|
101
|
+
CompanyId: number;
|
|
102
|
+
CompanyName: string | null;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
export interface ManualEntryGeneralLedgerDto extends ManualEntryGeneralLedger {
|
|
106
|
+
CompanyId: number;
|
|
107
|
+
CompanyName: string | null;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
export interface ManualEntryProductionDto extends ManualEntryProduction {
|
|
111
|
+
CompanyId: number;
|
|
112
|
+
CompanyName: string | null;
|
|
113
|
+
PersonName: string | null;
|
|
114
|
+
}
|
|
115
|
+
|
|
99
116
|
export interface GameResultDto {
|
|
100
117
|
IsYourTeam: boolean;
|
|
101
118
|
LeagueId: number;
|