@leavittsoftware/lg-core-typescript 5.1096.0 → 5.1097.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 +1 -1
- package/lg.net.sambasafety.ts +6 -1
- package/package.json +1 -1
package/api3.leavitt.com.ts
CHANGED
|
@@ -7242,7 +7242,7 @@ export interface AddAssociationDto {
|
|
|
7242
7242
|
export interface UpsertRenewalTemplateItemDto {
|
|
7243
7243
|
CollectDocuments?: boolean;
|
|
7244
7244
|
DeleteDocumentIds: Array<number>;
|
|
7245
|
-
Description
|
|
7245
|
+
Description?: string | null ;
|
|
7246
7246
|
Documents: Array<File>;
|
|
7247
7247
|
Id?: number | null ;
|
|
7248
7248
|
Name: string;
|
package/lg.net.sambasafety.ts
CHANGED
|
@@ -125,7 +125,7 @@ export interface ActivityHistoryMedicalCertificate {
|
|
|
125
125
|
Examiner?: Partial<ActivityHistoryMedicalExaminer> | null ;
|
|
126
126
|
ExpirationDate?: string | null ;
|
|
127
127
|
IssuedDate?: string | null ;
|
|
128
|
-
Restrictions: Array<
|
|
128
|
+
Restrictions: Array<Partial<ActivityHistoryMedicalCertificateRestriction>>;
|
|
129
129
|
SelfCertification?: Partial<MedicalCertificateSelfCertification> | null ;
|
|
130
130
|
Status?: string | null ;
|
|
131
131
|
StatusRaw?: string | null ;
|
|
@@ -133,6 +133,11 @@ export interface ActivityHistoryMedicalCertificate {
|
|
|
133
133
|
WasReceived?: string | null ;
|
|
134
134
|
}
|
|
135
135
|
|
|
136
|
+
export interface ActivityHistoryMedicalCertificateRestriction {
|
|
137
|
+
Description?: string | null ;
|
|
138
|
+
DescriptionRaw?: string | null ;
|
|
139
|
+
}
|
|
140
|
+
|
|
136
141
|
export interface ActivityHistoryMedicalExaminer {
|
|
137
142
|
FirstName?: string | null ;
|
|
138
143
|
LastName?: string | null ;
|