@leavittsoftware/lg-core-typescript 5.1364.0 → 5.1366.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/api4.leavitt.com.js.map +1 -1
- package/api4.leavitt.com.ts +68 -1
- package/package.json +1 -1
package/api4.leavitt.com.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"api4.leavitt.com.js","sourceRoot":"","sources":["api4.leavitt.com.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"api4.leavitt.com.js","sourceRoot":"","sources":["api4.leavitt.com.ts"],"names":[],"mappings":"AA+3BA,MAAM,CAAN,IAAY,UAOX;AAPD,WAAY,UAAU;IAClB,2CAAQ,CAAA;IACR,uDAAc,CAAA;IACd,mEAAoB,CAAA;IACpB,mDAAY,CAAA;IACZ,6CAAS,CAAA;IACT,yCAAO,CAAA;AACX,CAAC,EAPW,UAAU,KAAV,UAAU,QAOrB;AAID,MAAM,CAAN,IAAY,mBAGX;AAHD,WAAY,mBAAmB;IAC3B,2DAAO,CAAA;IACP,yDAAM,CAAA;AACV,CAAC,EAHW,mBAAmB,KAAnB,mBAAmB,QAG9B"}
|
package/api4.leavitt.com.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
// </auto-generated>
|
|
5
5
|
// ----------------------
|
|
6
6
|
import { UnionConcat } from './enum-helpers'
|
|
7
|
-
import { Company, LogoHeightTypeString, QuotingPromptTypeString, PersonalPropertyLineOfBusinessString, PersonalPropertyQuoteTypeString, Person, EmploymentTypeString } from './lg.net.core'
|
|
7
|
+
import { Company, LogoHeightTypeString, QuotingPromptTypeString, PersonalPropertyLineOfBusinessString, PersonalPropertyQuoteTypeString, Person, DistanceUnitTypeString, EmploymentTypeString } from './lg.net.core'
|
|
8
8
|
|
|
9
9
|
export interface ICompanySelect {
|
|
10
10
|
Id: number;
|
|
@@ -532,15 +532,82 @@ export interface FitnessActivityTotalsDto {
|
|
|
532
532
|
YearlyTotal: number;
|
|
533
533
|
}
|
|
534
534
|
|
|
535
|
+
export interface FitnessSiteStatusAchievedMilestoneDto {
|
|
536
|
+
Caption?: string | null ;
|
|
537
|
+
Date: string;
|
|
538
|
+
Id: number;
|
|
539
|
+
MilestoneId: number;
|
|
540
|
+
Selfie?: Partial<FitnessSiteStatusSelfieDto> | null ;
|
|
541
|
+
}
|
|
542
|
+
|
|
543
|
+
export interface FitnessSiteStatusActivityTypeDto {
|
|
544
|
+
Icon?: string | null ;
|
|
545
|
+
Id: number;
|
|
546
|
+
Name?: string | null ;
|
|
547
|
+
}
|
|
548
|
+
|
|
549
|
+
export interface FitnessSiteStatusChallengeDto {
|
|
550
|
+
Description: string;
|
|
551
|
+
DistanceGoal: number;
|
|
552
|
+
DistanceGoalType: DistanceUnitTypeString;
|
|
553
|
+
EndDate: string;
|
|
554
|
+
Id: number;
|
|
555
|
+
IsActive?: boolean;
|
|
556
|
+
IsDev?: boolean;
|
|
557
|
+
Milestones: Array<Partial<FitnessSiteStatusMilestoneDto>>;
|
|
558
|
+
Name: string;
|
|
559
|
+
QualifyingActivities: Array<Partial<FitnessSiteStatusQualifyingActivityDto>>;
|
|
560
|
+
StartDate: string;
|
|
561
|
+
}
|
|
562
|
+
|
|
535
563
|
export interface FitnessSiteStatusDto {
|
|
564
|
+
ActivityTypes: Array<Partial<FitnessSiteStatusActivityTypeDto>>;
|
|
536
565
|
CurrentWeight: number;
|
|
566
|
+
Distance: number;
|
|
567
|
+
FitnessChallenges: Array<Partial<FitnessSiteStatusChallengeDto>>;
|
|
537
568
|
GoalMinutes: number;
|
|
569
|
+
IsGoogleHealthSyncEnabled?: boolean;
|
|
538
570
|
IsRegisteredMember?: boolean;
|
|
539
571
|
MinutesThisMonth: number;
|
|
572
|
+
OverallRank: number;
|
|
540
573
|
RecentActivities: Array<string>;
|
|
541
574
|
WeightLast12Months: Array<Partial<WeightWeekDto>>;
|
|
542
575
|
}
|
|
543
576
|
|
|
577
|
+
export interface FitnessSiteStatusMilestoneDto {
|
|
578
|
+
AchievedMilestones: Array<Partial<FitnessSiteStatusAchievedMilestoneDto>>;
|
|
579
|
+
DistanceGoal: number;
|
|
580
|
+
DistanceGoalUnitType: DistanceUnitTypeString;
|
|
581
|
+
Id: number;
|
|
582
|
+
Name: string;
|
|
583
|
+
}
|
|
584
|
+
|
|
585
|
+
export interface FitnessSiteStatusQualifyingActivityDto {
|
|
586
|
+
ActivityDistanceUnitType: DistanceUnitTypeString;
|
|
587
|
+
ActivityTypeDistance: number;
|
|
588
|
+
ActivityTypes: Array<Partial<FitnessSiteStatusActivityTypeDto>>;
|
|
589
|
+
EarnedDistance: number;
|
|
590
|
+
EarnedDistanceUnitType: DistanceUnitTypeString;
|
|
591
|
+
Id: number;
|
|
592
|
+
Name: string;
|
|
593
|
+
}
|
|
594
|
+
|
|
595
|
+
export interface FitnessSiteStatusSelfieDto {
|
|
596
|
+
CdnFileName?: string | null ;
|
|
597
|
+
Extension?: string | null ;
|
|
598
|
+
Id: number;
|
|
599
|
+
Name: string;
|
|
600
|
+
PreviewExtension?: string | null ;
|
|
601
|
+
PreviewSizes?: string | null ;
|
|
602
|
+
}
|
|
603
|
+
|
|
604
|
+
export interface InviteLeavittFitInviteeDto {
|
|
605
|
+
Email: string;
|
|
606
|
+
FirstName: string;
|
|
607
|
+
LastName: string;
|
|
608
|
+
Relationship: string;
|
|
609
|
+
}
|
|
610
|
+
|
|
544
611
|
export interface ReimbursementEligibilityDto {
|
|
545
612
|
FirstName: string;
|
|
546
613
|
FullName?: string | null ;
|