@leavittsoftware/lg-core-typescript 2.0.430 → 2.0.433
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.core.ts +1 -1
- package/lg.net.core.ts +1 -9
- package/package.json +1 -1
package/api3.leavitt.com.ts
CHANGED
|
@@ -35,7 +35,7 @@ export interface SignatureTemplateDto {
|
|
|
35
35
|
Id: number | null;
|
|
36
36
|
IsActive: boolean;
|
|
37
37
|
Name: string | null;
|
|
38
|
-
|
|
38
|
+
SignatureTemplateToCompanies: Array<Partial<SignatureTemplateToCompany>> | null;
|
|
39
39
|
TemplateWebComponentName: string | null;
|
|
40
40
|
}
|
|
41
41
|
|
package/lg.core.ts
CHANGED
|
@@ -2296,7 +2296,7 @@ export interface TemplateServiceTask extends TemplateTask {
|
|
|
2296
2296
|
TimelineTemplateId: number;
|
|
2297
2297
|
}
|
|
2298
2298
|
|
|
2299
|
-
export interface GlobalServiceTask extends GlobalTask {
|
|
2299
|
+
export interface GlobalServiceTask extends GlobalTask, IIdentity {
|
|
2300
2300
|
Attachments: Array<Partial<GlobalServiceTaskAttachment>> | null;
|
|
2301
2301
|
}
|
|
2302
2302
|
|
package/lg.net.core.ts
CHANGED
|
@@ -4295,16 +4295,8 @@ export interface SignatureTemplate {
|
|
|
4295
4295
|
TemplateWebComponentName: string | null;
|
|
4296
4296
|
}
|
|
4297
4297
|
|
|
4298
|
-
export interface SignatureTemplateThumbnail {
|
|
4299
|
-
CdnFileName: string | null;
|
|
4300
|
-
CreatedDate: string;
|
|
4301
|
-
Extension: string | null;
|
|
4302
|
-
Id: number;
|
|
4303
|
-
Name: string | null;
|
|
4304
|
-
PreviewExtension: string | null;
|
|
4305
|
-
PreviewSizes: string | null;
|
|
4298
|
+
export interface SignatureTemplateThumbnail extends IDatabaseAttachment {
|
|
4306
4299
|
SignatureTemplate: Partial<SignatureTemplate> | null;
|
|
4307
|
-
Size: number;
|
|
4308
4300
|
}
|
|
4309
4301
|
|
|
4310
4302
|
export interface SignatureTemplateToCompany {
|