@leavittsoftware/lg-core-typescript 2.0.460 → 2.0.463
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 +25 -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":"AAmYA,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,Document,ServiceToChampion,ServiceToCompany,ConnectedStatusString,Company,CompanyLogo,CompanyOwnership } from './lg.net.core'
|
|
6
|
+
import { SignatureValue,SignatureTemplateToCompany,DocumentType,Document,ServiceToChampion,ServiceToCompany,ConnectedStatusString,Company,CompanyLogo,CompanyOwnership } from './lg.net.core'
|
|
7
7
|
|
|
8
8
|
export interface NaicsCsvUploadDto {
|
|
9
9
|
FileName: string | null;
|
|
@@ -103,6 +103,11 @@ export interface NaicsSummaryDto {
|
|
|
103
103
|
TotalPremiums: number;
|
|
104
104
|
}
|
|
105
105
|
|
|
106
|
+
export interface SequenceDto {
|
|
107
|
+
Id: number;
|
|
108
|
+
Sequence: number;
|
|
109
|
+
}
|
|
110
|
+
|
|
106
111
|
export interface GetSignaturePrefillDataDto {
|
|
107
112
|
AgencyOrDepartment: string | null;
|
|
108
113
|
City: string | null;
|
|
@@ -153,14 +158,30 @@ export interface GetGlobalAccessUsersDto {
|
|
|
153
158
|
PersonId: number;
|
|
154
159
|
}
|
|
155
160
|
|
|
156
|
-
export interface
|
|
161
|
+
export interface ReorderDocumentFieldsDto {
|
|
162
|
+
Fields: Array<Partial<SequenceDto>> | null;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
export interface DocumentSearchDto {
|
|
166
|
+
CdnFileName: string | null;
|
|
167
|
+
CompanyId: number | null;
|
|
168
|
+
CompanyName: string | null;
|
|
169
|
+
CreatedDate: string | null;
|
|
170
|
+
DocumentId: number | null;
|
|
171
|
+
DocumentTypeId: number | null;
|
|
172
|
+
ElasticScore: number | null;
|
|
173
|
+
Extension: string | null;
|
|
174
|
+
Fields: Array<string> | null;
|
|
175
|
+
Filename: string | null;
|
|
176
|
+
Fragments: Array<string> | null;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
export interface DocumentTypeWithPermissions extends DocumentType {
|
|
157
180
|
CanAdminAllCompanies: boolean;
|
|
158
181
|
CanAdminOwnCompany: boolean;
|
|
159
182
|
CanViewAllCompanies: boolean;
|
|
160
183
|
CanViewOwnCompany: boolean;
|
|
161
184
|
DocCount: number;
|
|
162
|
-
Id: number;
|
|
163
|
-
Name: string | null;
|
|
164
185
|
}
|
|
165
186
|
|
|
166
187
|
export interface UpdateDocumentDto {
|