@leavittsoftware/lg-core-typescript 5.131.0 → 5.132.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.ts +3 -3
- package/package.json +1 -1
package/api3.leavitt.com.ts
CHANGED
|
@@ -3922,7 +3922,7 @@ export interface UpsertCompanyOwnershipDto {
|
|
|
3922
3922
|
}
|
|
3923
3923
|
|
|
3924
3924
|
export interface CLGameAdminPointUpsertDto {
|
|
3925
|
-
Amount: number;
|
|
3925
|
+
Amount: number | null;
|
|
3926
3926
|
Answers: Array<Partial<GamePointAnswer>>;
|
|
3927
3927
|
ClientName: string;
|
|
3928
3928
|
EffectiveDate: string;
|
|
@@ -4109,7 +4109,7 @@ export interface CLGameDivisionBreakdownDto {
|
|
|
4109
4109
|
}
|
|
4110
4110
|
|
|
4111
4111
|
export interface CLGamePlayerAddPointDto {
|
|
4112
|
-
Amount: number;
|
|
4112
|
+
Amount: number | null;
|
|
4113
4113
|
EffectiveDate: string;
|
|
4114
4114
|
GameId: number;
|
|
4115
4115
|
Name: string;
|
|
@@ -4148,7 +4148,7 @@ export interface CLGamePlayerDto {
|
|
|
4148
4148
|
}
|
|
4149
4149
|
|
|
4150
4150
|
export interface CLGamePointUpsertDto {
|
|
4151
|
-
Amount: number;
|
|
4151
|
+
Amount: number | null;
|
|
4152
4152
|
Answers: Array<Partial<GamePointAnswer>>;
|
|
4153
4153
|
ClientName: string;
|
|
4154
4154
|
EffectiveDate: string;
|