@leavittsoftware/lg-core-typescript 2.0.381 → 2.0.382
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/lg.core.repository.ts +142 -130
- package/package.json +1 -1
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;
|