@leavittsoftware/lg-core-typescript 2.67.0 → 2.68.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 +32 -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":"AA2yCA,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
|
@@ -147,6 +147,38 @@ export interface PLGamePlayerBreakdownDto {
|
|
|
147
147
|
TotalPoints: Partial<number>;
|
|
148
148
|
}
|
|
149
149
|
|
|
150
|
+
export interface PLGamePlayerCsvItemDTO {
|
|
151
|
+
CompanyName: string | null;
|
|
152
|
+
FirstName: string | null;
|
|
153
|
+
LastName: string | null;
|
|
154
|
+
Points: string | null;
|
|
155
|
+
TeamName: string | null;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
export interface PLGamePlayerDto {
|
|
159
|
+
CompanyName: string | null;
|
|
160
|
+
FirstName: string | null;
|
|
161
|
+
IsCaptain: boolean;
|
|
162
|
+
LastName: string | null;
|
|
163
|
+
PersonId: number;
|
|
164
|
+
PlayerId: number;
|
|
165
|
+
PlayerPersonRoleId: number | null;
|
|
166
|
+
TeamId: number | null;
|
|
167
|
+
TeamName: string | null;
|
|
168
|
+
TeamPersonRoleId: number | null;
|
|
169
|
+
TotalPoints: Partial<number>;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
export interface PLGamePointCsvItemDto {
|
|
173
|
+
Amount: string | null;
|
|
174
|
+
ClientName: string | null;
|
|
175
|
+
Date: string | null;
|
|
176
|
+
ProducerFirstName: string | null;
|
|
177
|
+
ProducerLastName: string | null;
|
|
178
|
+
Sponsor: string | null;
|
|
179
|
+
Type: string | null;
|
|
180
|
+
}
|
|
181
|
+
|
|
150
182
|
export interface PLGameTeamBreakdownDto {
|
|
151
183
|
GrandPrizeName: string | null;
|
|
152
184
|
Players: Array<Partial<PLGamePlayerBreakdownDto>> | null;
|