@leavittsoftware/lg-core-typescript 2.0.466 → 2.0.467
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 +6 -1
- 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":"AAwYA,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
|
@@ -171,11 +171,16 @@ export interface DocumentSearchDto {
|
|
|
171
171
|
DocumentTypeId: number | null;
|
|
172
172
|
ElasticScore: number | null;
|
|
173
173
|
Extension: string | null;
|
|
174
|
-
Fields: Array<
|
|
174
|
+
Fields: Array<Partial<DocumentSearchFieldDto>> | null;
|
|
175
175
|
Filename: string | null;
|
|
176
176
|
Fragments: Array<string> | null;
|
|
177
177
|
}
|
|
178
178
|
|
|
179
|
+
export interface DocumentSearchFieldDto {
|
|
180
|
+
Name: string | null;
|
|
181
|
+
Value: string | null;
|
|
182
|
+
}
|
|
183
|
+
|
|
179
184
|
export interface DocumentTypeWithPermissions extends DocumentType {
|
|
180
185
|
CanAdminAllCompanies: boolean;
|
|
181
186
|
CanAdminOwnCompany: boolean;
|