@leavittsoftware/lg-core-typescript 5.822.0 → 5.823.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 +2 -2
- package/lg.net.core.ts +3 -3
- package/package.json +1 -1
package/api3.leavitt.com.ts
CHANGED
|
@@ -4256,7 +4256,9 @@ export interface CourseStatsDto {
|
|
|
4256
4256
|
export interface EducationActivityDto {
|
|
4257
4257
|
ActivityCount?: number | null ;
|
|
4258
4258
|
ActivityDate: string;
|
|
4259
|
+
CourseName?: string | null ;
|
|
4259
4260
|
Id: number;
|
|
4261
|
+
LessonName?: string | null ;
|
|
4260
4262
|
Type: EducationLessonActivityTypeString;
|
|
4261
4263
|
}
|
|
4262
4264
|
|
|
@@ -4378,8 +4380,6 @@ export interface LessonDto {
|
|
|
4378
4380
|
}
|
|
4379
4381
|
|
|
4380
4382
|
export interface PersonEducationActivityDto extends EducationActivityDto {
|
|
4381
|
-
CourseName?: string | null ;
|
|
4382
|
-
LessonName?: string | null ;
|
|
4383
4383
|
PersonCdnProfilePicture?: string | null ;
|
|
4384
4384
|
PersonFullName?: string | null ;
|
|
4385
4385
|
PersonId?: number | null ;
|
package/lg.net.core.ts
CHANGED
|
@@ -1801,7 +1801,7 @@ export interface SambaPublicRecordSearch extends PublicRecordSearch {
|
|
|
1801
1801
|
ActivityHistory?: Partial<ActivityHistory> | null ;
|
|
1802
1802
|
ActivityHistoryBillingAmount?: number | null ;
|
|
1803
1803
|
ActivityHistoryCreatedBy?: Partial<Person> | null ;
|
|
1804
|
-
ActivityHistoryCreatedById
|
|
1804
|
+
ActivityHistoryCreatedById?: number | null ;
|
|
1805
1805
|
ActivityHistoryCreatedDate?: string | null ;
|
|
1806
1806
|
ActivityHistoryErrorMessage?: string | null ;
|
|
1807
1807
|
ActivityHistoryOrderId?: string | null ;
|
|
@@ -1811,7 +1811,7 @@ export interface SambaPublicRecordSearch extends PublicRecordSearch {
|
|
|
1811
1811
|
LicenseVerification?: Partial<LicenseVerification> | null ;
|
|
1812
1812
|
LicenseVerificationBillingAmount?: number | null ;
|
|
1813
1813
|
LicenseVerificationCreatedBy?: Partial<Person> | null ;
|
|
1814
|
-
LicenseVerificationCreatedById
|
|
1814
|
+
LicenseVerificationCreatedById?: number | null ;
|
|
1815
1815
|
LicenseVerificationCreatedDate?: string | null ;
|
|
1816
1816
|
LicenseVerificationErrorMessage?: string | null ;
|
|
1817
1817
|
LicenseVerificationOrderId?: string | null ;
|
|
@@ -1824,7 +1824,7 @@ export interface SambaPublicRecordSearch extends PublicRecordSearch {
|
|
|
1824
1824
|
TransactionalMVR?: Partial<MotorVehicleReport> | null ;
|
|
1825
1825
|
TransactionalMVRBillingAmount?: number | null ;
|
|
1826
1826
|
TransactionalMVRCreatedBy?: Partial<Person> | null ;
|
|
1827
|
-
TransactionalMVRCreatedById
|
|
1827
|
+
TransactionalMVRCreatedById?: number | null ;
|
|
1828
1828
|
TransactionalMVRCreatedDate?: string | null ;
|
|
1829
1829
|
TransactionalMVRErrorMessage?: string | null ;
|
|
1830
1830
|
TransactionalMVRRequest?: string | null ;
|