@leavittsoftware/lg-core-typescript 2.28.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 +75 -1
- package/lg.net.core.ts +4 -4
- 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
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// generated using a custom program
|
|
4
4
|
// </auto-generated>
|
|
5
5
|
// ----------------------
|
|
6
|
-
import { PermissionToApplication,ApplicationToApplicationTag,EmploymentTypeString,CompanyAddress,JobRole,
|
|
6
|
+
import { Person,PermissionToApplication,ApplicationToApplicationTag,EmploymentTypeString,CompanyAddress,JobRole,SignatureValue,SignatureTemplateToCompany,DocumentType,Document,ServiceToChampion,ServiceToCompany,ConnectedStatusString,Company,CompanyLogo,CompanyOwnership } from './lg.net.core'
|
|
7
7
|
|
|
8
8
|
export interface FileExplorerDto {
|
|
9
9
|
AllowedFileTypes: string | null;
|
|
@@ -150,6 +150,68 @@ 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
|
+
|
|
209
|
+
export interface CustomPeopleGroupMembershipDto {
|
|
210
|
+
GroupId: number;
|
|
211
|
+
GroupSource: Array<string> | null;
|
|
212
|
+
Person: Partial<Person> | null;
|
|
213
|
+
}
|
|
214
|
+
|
|
153
215
|
export interface LssApplicationUpsertDto {
|
|
154
216
|
Description: string | null;
|
|
155
217
|
Id: number | null;
|
|
@@ -162,6 +224,18 @@ export interface LssApplicationUpsertDto {
|
|
|
162
224
|
URL: string | null;
|
|
163
225
|
}
|
|
164
226
|
|
|
227
|
+
export interface ItManagedApplicationUpsertDto {
|
|
228
|
+
Description: string | null;
|
|
229
|
+
Id: number | null;
|
|
230
|
+
IsActive: boolean;
|
|
231
|
+
IsDiscoverable: boolean;
|
|
232
|
+
Name: string | null;
|
|
233
|
+
Owner: string | null;
|
|
234
|
+
Tags: Array<Partial<ApplicationToApplicationTag>> | null;
|
|
235
|
+
Tenants: Array<string> | null;
|
|
236
|
+
URL: string | null;
|
|
237
|
+
}
|
|
238
|
+
|
|
165
239
|
export interface NaicsCsvUploadDto {
|
|
166
240
|
FileName: string | null;
|
|
167
241
|
RecordCount: number;
|
package/lg.net.core.ts
CHANGED
|
@@ -181,14 +181,14 @@ export interface SurgeTeamPersonRole extends PersonRole {
|
|
|
181
181
|
CrmPoints: Array<Partial<SurgeCrmPoint>> | null;
|
|
182
182
|
Points: Array<Partial<SurgePoint>> | null;
|
|
183
183
|
PrimaryScoreboardIndividualGrandPrizes: string | null;
|
|
184
|
-
PrimaryScoreboardIndividualPrizeAmount: Partial<number
|
|
184
|
+
PrimaryScoreboardIndividualPrizeAmount: Partial<number>;
|
|
185
185
|
PrimaryScoreboardIndividualRank: number;
|
|
186
186
|
PrimaryScoreboardIndividualTotalPoints: number;
|
|
187
|
-
PrimaryScoreboardTeamPrizePortion: Partial<number
|
|
187
|
+
PrimaryScoreboardTeamPrizePortion: Partial<number>;
|
|
188
188
|
PrimaryScoreboardTopOnTeamGrandPrizes: string | null;
|
|
189
|
-
PrimaryScoreboardTopOnTeamPrizeAmount: Partial<number
|
|
189
|
+
PrimaryScoreboardTopOnTeamPrizeAmount: Partial<number>;
|
|
190
190
|
PrimaryScoreboardTopOnTeamRank: number;
|
|
191
|
-
PrimaryScoreboardTotalPrizeAmount: Partial<number
|
|
191
|
+
PrimaryScoreboardTotalPrizeAmount: Partial<number>;
|
|
192
192
|
Surge: Partial<Surge> | null;
|
|
193
193
|
SurgeId: number;
|
|
194
194
|
Team: Partial<SurgeTeam> | null;
|