@leavittsoftware/lg-core-typescript 5.1374.0 → 5.1375.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 +26 -0
- 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":"AAo/BA,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
|
@@ -525,6 +525,32 @@ export interface AddGoogleHealthIntegrationDto {
|
|
|
525
525
|
RedirectUri: string;
|
|
526
526
|
}
|
|
527
527
|
|
|
528
|
+
export interface ActivityChallengeEquivalentDto {
|
|
529
|
+
ChallengeId: number;
|
|
530
|
+
ChallengeName: string;
|
|
531
|
+
DistanceUnitType: DistanceUnitTypeString;
|
|
532
|
+
EquivalentDistance: number;
|
|
533
|
+
}
|
|
534
|
+
|
|
535
|
+
export interface AdminAllActivityDto {
|
|
536
|
+
ActivityTypeIcon?: string | null ;
|
|
537
|
+
ActivityTypeName?: string | null ;
|
|
538
|
+
ChallengeEquivalents: Array<Partial<ActivityChallengeEquivalentDto>>;
|
|
539
|
+
CompanyId?: number | null ;
|
|
540
|
+
CompanyName?: string | null ;
|
|
541
|
+
Date: string;
|
|
542
|
+
Distance?: number | null ;
|
|
543
|
+
DistanceUnitType?: DistanceUnitTypeString | null ;
|
|
544
|
+
DurationInSeconds: number;
|
|
545
|
+
FullName?: string | null ;
|
|
546
|
+
Id: number;
|
|
547
|
+
LeavittFitActivityTypeId?: number | null ;
|
|
548
|
+
LeavittFitPersonRoleId: number;
|
|
549
|
+
PersonId: number;
|
|
550
|
+
ProfilePictureCdnFileName?: string | null ;
|
|
551
|
+
Source: string;
|
|
552
|
+
}
|
|
553
|
+
|
|
528
554
|
export interface ChallengeEffectiveMemberDto {
|
|
529
555
|
EffectiveMembers: Array<Partial<ChallengeEffectivePersonMemberDto>>;
|
|
530
556
|
Name?: string | null ;
|