@leavittsoftware/lg-core-typescript 5.1386.0 → 5.1388.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 +19 -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":"AA8lCA,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
|
@@ -822,6 +822,24 @@ export interface UpdateWeightDto {
|
|
|
822
822
|
WeightInPounds: number;
|
|
823
823
|
}
|
|
824
824
|
|
|
825
|
+
export interface UpsertFitnessChallengeDto {
|
|
826
|
+
AllowInvitedGuests?: boolean;
|
|
827
|
+
Description: string;
|
|
828
|
+
DistanceGoal: number;
|
|
829
|
+
DistanceGoalType: DistanceUnitTypeString;
|
|
830
|
+
EndDate: string;
|
|
831
|
+
Icon?: string | null ;
|
|
832
|
+
Id?: number | null ;
|
|
833
|
+
IsActive?: boolean;
|
|
834
|
+
IsDev?: boolean;
|
|
835
|
+
Logo?: File | null ;
|
|
836
|
+
Mark?: File | null ;
|
|
837
|
+
Name: string;
|
|
838
|
+
StartDate: string;
|
|
839
|
+
UpdateLogo?: boolean;
|
|
840
|
+
UpdateMark?: boolean;
|
|
841
|
+
}
|
|
842
|
+
|
|
825
843
|
export interface UpsertMilestoneSelfieDto {
|
|
826
844
|
Caption?: string | null ;
|
|
827
845
|
Image?: File | null ;
|
|
@@ -829,7 +847,7 @@ export interface UpsertMilestoneSelfieDto {
|
|
|
829
847
|
|
|
830
848
|
export interface WeightWeekDto {
|
|
831
849
|
Week: number;
|
|
832
|
-
Weight
|
|
850
|
+
Weight?: number | null ;
|
|
833
851
|
}
|
|
834
852
|
|
|
835
853
|
export interface AdpLocationAuditCsvDto {
|