@leavittsoftware/lg-core-typescript 2.30.0 → 2.31.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 +56 -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":"AAk5BA,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
|
@@ -150,6 +150,62 @@ export interface SurgeReportsTopPlayerDto {
|
|
|
150
150
|
TotalSold: Partial<number>;
|
|
151
151
|
}
|
|
152
152
|
|
|
153
|
+
export interface PLGameBreakdownDto {
|
|
154
|
+
Divisions: Array<Partial<PLGameDivisionBreakdownDto>> | null;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
export interface PLGameDivisionBreakdownDto {
|
|
158
|
+
DivisionId: number;
|
|
159
|
+
DivisionName: string | null;
|
|
160
|
+
DivisionSequence: number;
|
|
161
|
+
Teams: Array<Partial<PLGameTeamBreakdownDto>> | null;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
export interface PLGamePlayerBreakdownDto {
|
|
165
|
+
FirstName: string | null;
|
|
166
|
+
GrandPrizeName: string | null;
|
|
167
|
+
IsTeamCaptain: boolean;
|
|
168
|
+
LastName: string | null;
|
|
169
|
+
PersonId: number;
|
|
170
|
+
PrizeAmount: Partial<number> | null;
|
|
171
|
+
TeamStartDate: string;
|
|
172
|
+
TotalPoints: Partial<number>;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
export interface PLGameTeamBreakdownDto {
|
|
176
|
+
GrandPrizeName: string | null;
|
|
177
|
+
Players: Array<Partial<PLGamePlayerBreakdownDto>> | null;
|
|
178
|
+
PrizeAmount: Partial<number> | null;
|
|
179
|
+
TeamId: number;
|
|
180
|
+
TeamImageCdnFileName: string | null;
|
|
181
|
+
TeamImageExtension: string | null;
|
|
182
|
+
TeamImageId: number | null;
|
|
183
|
+
TeamImagePreviewExtension: string | null;
|
|
184
|
+
TeamImagePreviewSizes: string | null;
|
|
185
|
+
TeamName: string | null;
|
|
186
|
+
TeamThumbnailCdnFileName: string | null;
|
|
187
|
+
TeamThumbnailExtension: string | null;
|
|
188
|
+
TeamThumbnailFileName: string | null;
|
|
189
|
+
TeamThumbnailId: number | null;
|
|
190
|
+
TeamThumbnailPreviewSizes: string | null;
|
|
191
|
+
TotalPoints: Partial<number>;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
export interface PLGameTopPlayerDto {
|
|
195
|
+
FirstName: string | null;
|
|
196
|
+
GrandPrizeName: string | null;
|
|
197
|
+
LastName: string | null;
|
|
198
|
+
PersonId: number;
|
|
199
|
+
PrizeAmount: Partial<number> | null;
|
|
200
|
+
TotalPoints: Partial<number>;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
export interface PLGameTopPlayerGroupsDto {
|
|
204
|
+
PlayerGroupId: number;
|
|
205
|
+
PlayerGroupName: string | null;
|
|
206
|
+
Players: Array<Partial<PLGameTopPlayerDto>> | null;
|
|
207
|
+
}
|
|
208
|
+
|
|
153
209
|
export interface CustomPeopleGroupMembershipDto {
|
|
154
210
|
GroupId: number;
|
|
155
211
|
GroupSource: Array<string> | null;
|