@leavittsoftware/lg-core-typescript 2.0.377 → 2.0.378
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/lg.core.repository.ts +10 -0
- package/package.json +1 -1
package/lg.core.repository.ts
CHANGED
|
@@ -128,6 +128,11 @@ export interface PLGameTeamBreakdownDto {
|
|
|
128
128
|
TeamImagePreviewExtension: string | null;
|
|
129
129
|
TeamImagePreviewSizes: string | null;
|
|
130
130
|
TeamName: string | null;
|
|
131
|
+
TeamThumbnailCdnFileName: string | null;
|
|
132
|
+
TeamThumbnailExtension: string | null;
|
|
133
|
+
TeamThumbnailFileName: string | null;
|
|
134
|
+
TeamThumbnailId: number | null;
|
|
135
|
+
TeamThumbnailPreviewSizes: string | null;
|
|
131
136
|
TotalPoints: Partial<number>;
|
|
132
137
|
}
|
|
133
138
|
|
|
@@ -325,6 +330,11 @@ export interface CLGameTeamBreakdownDto {
|
|
|
325
330
|
TeamImagePreviewExtension: string | null;
|
|
326
331
|
TeamImagePreviewSizes: string | null;
|
|
327
332
|
TeamName: string | null;
|
|
333
|
+
TeamThumbnailCdnFileName: string | null;
|
|
334
|
+
TeamThumbnailExtension: string | null;
|
|
335
|
+
TeamThumbnailFileName: string | null;
|
|
336
|
+
TeamThumbnailId: number | null;
|
|
337
|
+
TeamThumbnailPreviewSizes: string | null;
|
|
328
338
|
TotalPoints: Partial<number>;
|
|
329
339
|
}
|
|
330
340
|
|