@leavittsoftware/lg-core-typescript 2.0.453 → 2.0.456
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.js.map +1 -1
- package/api3.leavitt.com.ts +17 -8
- package/lg.net.core.ts +4 -4
- package/package.json +1 -1
package/api3.leavitt.com.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"api3.leavitt.com.js","sourceRoot":"","sources":["api3.leavitt.com.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"api3.leavitt.com.js","sourceRoot":"","sources":["api3.leavitt.com.ts"],"names":[],"mappings":"AAwSA,MAAM,CAAN,IAAY,eAIX;AAJD,WAAY,eAAe;IACvB,yEAAkB,CAAA;IAClB,iEAAc,CAAA;IACd,iFAAsB,CAAA;AAC1B,CAAC,EAJW,eAAe,KAAf,eAAe,QAI1B"}
|
package/api3.leavitt.com.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// generated using a custom program
|
|
4
4
|
// </auto-generated>
|
|
5
5
|
// ----------------------
|
|
6
|
-
import { SignatureValue,SignatureTemplateToCompany,ServiceToChampion,ServiceToCompany,ConnectedStatusString,Company,CompanyLogo,CompanyOwnership } from './lg.net.core'
|
|
6
|
+
import { SignatureValue,SignatureTemplateToCompany,Document,ServiceToChampion,ServiceToCompany,ConnectedStatusString,Company,CompanyLogo,CompanyOwnership } from './lg.net.core'
|
|
7
7
|
|
|
8
8
|
export interface NaicsReportTopAgenciesDto {
|
|
9
9
|
Agency: string | null;
|
|
@@ -77,15 +77,24 @@ export interface SignatureTemplateDto {
|
|
|
77
77
|
TemplateWebComponentName: string | null;
|
|
78
78
|
}
|
|
79
79
|
|
|
80
|
-
export interface
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
80
|
+
export interface GetAgencyAccessUsersDto {
|
|
81
|
+
AccessSource: Array<string> | null;
|
|
82
|
+
FirstName: string | null;
|
|
83
|
+
IsAdmin: boolean;
|
|
84
|
+
LastName: string | null;
|
|
85
|
+
PersonId: number;
|
|
84
86
|
}
|
|
85
87
|
|
|
86
|
-
export interface
|
|
87
|
-
|
|
88
|
-
|
|
88
|
+
export interface GetGlobalAccessUsersDto {
|
|
89
|
+
AccessSource: Array<string> | null;
|
|
90
|
+
FirstName: string | null;
|
|
91
|
+
IsAdmin: boolean;
|
|
92
|
+
LastName: string | null;
|
|
93
|
+
PersonId: number;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
export interface UpdateDocumentDto {
|
|
97
|
+
UpdatedDocuments: Array<Partial<Document>> | null;
|
|
89
98
|
}
|
|
90
99
|
|
|
91
100
|
export interface GetOverallServiceUsageDto {
|
package/lg.net.core.ts
CHANGED
|
@@ -1645,19 +1645,19 @@ export interface Document extends IDatabaseAttachment {
|
|
|
1645
1645
|
DeletedByPerson: Partial<Person> | null;
|
|
1646
1646
|
DeletedByPersonId: number | null;
|
|
1647
1647
|
DeletedDate: string | null;
|
|
1648
|
-
DocumentFieldValues: Array<Partial<DocumentFieldValue>> | null;
|
|
1649
1648
|
DocumentType: Partial<DocumentType> | null;
|
|
1650
1649
|
DocumentTypeId: number;
|
|
1650
|
+
Fields: Array<Partial<DocumentFieldValue>> | null;
|
|
1651
1651
|
IsDeleted: boolean | null;
|
|
1652
1652
|
IsScanned: boolean;
|
|
1653
1653
|
LastModified: string;
|
|
1654
1654
|
}
|
|
1655
1655
|
|
|
1656
1656
|
export interface DocumentField {
|
|
1657
|
-
|
|
1658
|
-
DocumentFieldValues: Array<Partial<DocumentFieldValue>> | null;
|
|
1657
|
+
Answers: Array<Partial<DocumentFieldAnswer>> | null;
|
|
1659
1658
|
DocumentType: Partial<DocumentType> | null;
|
|
1660
1659
|
DocumentTypeId: number;
|
|
1660
|
+
Fields: Array<Partial<DocumentFieldValue>> | null;
|
|
1661
1661
|
Id: number;
|
|
1662
1662
|
Name: string | null;
|
|
1663
1663
|
OrderOnTable: number | null;
|
|
@@ -1691,8 +1691,8 @@ export interface DocumentType {
|
|
|
1691
1691
|
DeletedByPerson: Partial<Person> | null;
|
|
1692
1692
|
DeletedByPersonId: number | null;
|
|
1693
1693
|
DeletedDate: string | null;
|
|
1694
|
-
DocumentFields: Array<Partial<DocumentField>> | null;
|
|
1695
1694
|
Documents: Array<Partial<Document>> | null;
|
|
1695
|
+
Fields: Array<Partial<DocumentField>> | null;
|
|
1696
1696
|
GlobalViewerToPeople: Array<Partial<DocumentTypeGlobalViewerToPerson>> | null;
|
|
1697
1697
|
GlobalViewerToPeopleGroups: Array<Partial<DocumentTypeGlobalViewerToPeopleGroup>> | null;
|
|
1698
1698
|
Id: number;
|