@leavittsoftware/lg-core-typescript 2.0.379 → 2.0.380
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/package.json +1 -1
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
|
}
|