sowell-models 1.34.0 → 1.35.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/package.json
CHANGED
|
@@ -84,6 +84,9 @@ export interface IVisitReport extends IModel {
|
|
|
84
84
|
id: string
|
|
85
85
|
name: string
|
|
86
86
|
}
|
|
87
|
+
comment?: string
|
|
88
|
+
imgs?: string[]
|
|
89
|
+
signatureUrl?: string
|
|
87
90
|
metadata?: VisitReportMetadata
|
|
88
91
|
validate?: (payload: VisitReportPayload) => string
|
|
89
92
|
}
|
|
@@ -104,6 +107,7 @@ export class SPVisitReport extends ApplicationRecord implements IVisitReport {
|
|
|
104
107
|
id: string
|
|
105
108
|
name: string
|
|
106
109
|
}
|
|
110
|
+
@Attr() signatureUrl!: string
|
|
107
111
|
@Attr() metadata!: VisitReportMetadata
|
|
108
112
|
@BelongsTo() author!: SPUserItem
|
|
109
113
|
@BelongsTo() visitSchedule!: SPVisitSchedule
|