@leavittsoftware/lg-core-typescript 2.106.2 → 2.107.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/api3.leavitt.com.js.map +1 -1
- package/api3.leavitt.com.ts +24 -0
- package/package.json +1 -1
package/api3.leavitt.com.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"api3.leavitt.com.js","sourceRoot":"","sources":["api3.leavitt.com.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"api3.leavitt.com.js","sourceRoot":"","sources":["api3.leavitt.com.ts"],"names":[],"mappings":"AA0pDA,MAAM,CAAN,IAAY,UAKX;AALD,WAAY,UAAU;IAClB,2CAAQ,CAAA;IACR,uDAAc,CAAA;IACd,mEAAoB,CAAA;IACpB,mDAAY,CAAA;AAChB,CAAC,EALW,UAAU,KAAV,UAAU,QAKrB;AAID,MAAM,CAAN,IAAY,aAMX;AAND,WAAY,aAAa;IACrB,qDAAU,CAAA;IACV,yDAAY,CAAA;IACZ,uEAAmB,CAAA;IACnB,qDAAU,CAAA;IACV,mEAAiB,CAAA;AACrB,CAAC,EANW,aAAa,KAAb,aAAa,QAMxB;AAID,MAAM,CAAN,IAAY,YAIX;AAJD,WAAY,YAAY;IACpB,+DAAgB,CAAA;IAChB,mDAAU,CAAA;IACV,6CAAO,CAAA;AACX,CAAC,EAJW,YAAY,KAAZ,YAAY,QAIvB;AAID,MAAM,CAAN,IAAY,eAIX;AAJD,WAAY,eAAe;IACvB,yEAAkB,CAAA;IAClB,iEAAc,CAAA;IACd,iFAAsB,CAAA;AAC1B,CAAC,EAJW,eAAe,KAAf,eAAe,QAI1B"}
|
package/api3.leavitt.com.ts
CHANGED
|
@@ -262,6 +262,12 @@ export interface PLGamePointCsvItemDto {
|
|
|
262
262
|
Type: string | null;
|
|
263
263
|
}
|
|
264
264
|
|
|
265
|
+
export interface PLGameSponsorPointsDto {
|
|
266
|
+
SponsorId: number | null;
|
|
267
|
+
SponsorName: string | null;
|
|
268
|
+
TotalPoints: Partial<number>;
|
|
269
|
+
}
|
|
270
|
+
|
|
265
271
|
export interface PLGameTeamBreakdownDto {
|
|
266
272
|
GrandPrizeName: string | null;
|
|
267
273
|
Players: Array<Partial<PLGamePlayerBreakdownDto>> | null;
|
|
@@ -300,6 +306,12 @@ export interface PLGameTopPlayerGroupsDto {
|
|
|
300
306
|
Players: Array<Partial<PLGameTopPlayerDto>> | null;
|
|
301
307
|
}
|
|
302
308
|
|
|
309
|
+
export interface PLGameTotalPointsDto {
|
|
310
|
+
Id: number;
|
|
311
|
+
SponsorPoints: Array<Partial<PLGameSponsorPointsDto>> | null;
|
|
312
|
+
TotalPoints: Partial<number>;
|
|
313
|
+
}
|
|
314
|
+
|
|
303
315
|
export interface ItManagedApplicationUpsertDto {
|
|
304
316
|
Description: string | null;
|
|
305
317
|
Id: number | null;
|
|
@@ -1626,6 +1638,12 @@ export interface CLGameScoreboardDto {
|
|
|
1626
1638
|
WebComponentHTMLTag: string | null;
|
|
1627
1639
|
}
|
|
1628
1640
|
|
|
1641
|
+
export interface CLGameSponsorPointsDto {
|
|
1642
|
+
SponsorId: number | null;
|
|
1643
|
+
SponsorName: string | null;
|
|
1644
|
+
TotalPoints: Partial<number>;
|
|
1645
|
+
}
|
|
1646
|
+
|
|
1629
1647
|
export interface CLGameTeamBreakdownDto {
|
|
1630
1648
|
GrandPrizeName: string | null;
|
|
1631
1649
|
Players: Array<Partial<CLGamePlayerBreakdownDto>> | null;
|
|
@@ -1664,6 +1682,12 @@ export interface CLGameTopPlayerGroupsDto {
|
|
|
1664
1682
|
Players: Array<Partial<CLGameTopPlayerDto>> | null;
|
|
1665
1683
|
}
|
|
1666
1684
|
|
|
1685
|
+
export interface CLGameTotalPointsDto {
|
|
1686
|
+
Id: number;
|
|
1687
|
+
SponsorPoints: Array<Partial<CLGameSponsorPointsDto>> | null;
|
|
1688
|
+
TotalPoints: Partial<number>;
|
|
1689
|
+
}
|
|
1690
|
+
|
|
1667
1691
|
export enum RaterTypes {
|
|
1668
1692
|
Life = 0,
|
|
1669
1693
|
WidgetLife = 1,
|