@leavittsoftware/lg-core-typescript 5.1374.0 → 5.1376.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 +33 -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":"AA2/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
|
@@ -515,6 +515,13 @@ export interface ActivitiesByWeekDto {
|
|
|
515
515
|
WeekStart: string;
|
|
516
516
|
}
|
|
517
517
|
|
|
518
|
+
export interface AddFitBitIntegrationDto {
|
|
519
|
+
AuthCode: string;
|
|
520
|
+
CodeVerifier: string;
|
|
521
|
+
RedirectUri: string;
|
|
522
|
+
State?: string | null ;
|
|
523
|
+
}
|
|
524
|
+
|
|
518
525
|
export interface AddGoogleFitIntegrationDto {
|
|
519
526
|
AuthCode: string;
|
|
520
527
|
RedirectUri: string;
|
|
@@ -525,6 +532,32 @@ export interface AddGoogleHealthIntegrationDto {
|
|
|
525
532
|
RedirectUri: string;
|
|
526
533
|
}
|
|
527
534
|
|
|
535
|
+
export interface ActivityChallengeEquivalentDto {
|
|
536
|
+
ChallengeId: number;
|
|
537
|
+
ChallengeName: string;
|
|
538
|
+
DistanceUnitType: DistanceUnitTypeString;
|
|
539
|
+
EquivalentDistance: number;
|
|
540
|
+
}
|
|
541
|
+
|
|
542
|
+
export interface AdminAllActivityDto {
|
|
543
|
+
ActivityTypeIcon?: string | null ;
|
|
544
|
+
ActivityTypeName?: string | null ;
|
|
545
|
+
ChallengeEquivalents: Array<Partial<ActivityChallengeEquivalentDto>>;
|
|
546
|
+
CompanyId?: number | null ;
|
|
547
|
+
CompanyName?: string | null ;
|
|
548
|
+
Date: string;
|
|
549
|
+
Distance?: number | null ;
|
|
550
|
+
DistanceUnitType?: DistanceUnitTypeString | null ;
|
|
551
|
+
DurationInSeconds: number;
|
|
552
|
+
FullName?: string | null ;
|
|
553
|
+
Id: number;
|
|
554
|
+
LeavittFitActivityTypeId?: number | null ;
|
|
555
|
+
LeavittFitPersonRoleId: number;
|
|
556
|
+
PersonId: number;
|
|
557
|
+
ProfilePictureCdnFileName?: string | null ;
|
|
558
|
+
Source: string;
|
|
559
|
+
}
|
|
560
|
+
|
|
528
561
|
export interface ChallengeEffectiveMemberDto {
|
|
529
562
|
EffectiveMembers: Array<Partial<ChallengeEffectivePersonMemberDto>>;
|
|
530
563
|
Name?: string | null ;
|