@leavittsoftware/lg-core-typescript 2.0.468 → 2.0.469
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 +13 -6
- 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":"AA+YA,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
|
@@ -162,23 +162,19 @@ export interface ReorderDocumentFieldsDto {
|
|
|
162
162
|
Fields: Array<Partial<SequenceDto>> | null;
|
|
163
163
|
}
|
|
164
164
|
|
|
165
|
-
export interface DocumentSearchDto {
|
|
166
|
-
CdnFileName: string | null;
|
|
165
|
+
export interface DocumentSearchDto extends IDatabaseAttachment {
|
|
167
166
|
CompanyId: number | null;
|
|
168
167
|
CompanyName: string | null;
|
|
169
|
-
CreatedDate: string | null;
|
|
170
|
-
DocumentId: number | null;
|
|
171
168
|
DocumentTypeId: number | null;
|
|
172
169
|
ElasticScore: number | null;
|
|
173
|
-
Extension: string | null;
|
|
174
170
|
Fields: Array<Partial<DocumentSearchFieldDto>> | null;
|
|
175
|
-
Filename: string | null;
|
|
176
171
|
Fragments: Array<string> | null;
|
|
177
172
|
}
|
|
178
173
|
|
|
179
174
|
export interface DocumentSearchFieldDto {
|
|
180
175
|
Name: string | null;
|
|
181
176
|
Value: string | null;
|
|
177
|
+
ValueType: string | null;
|
|
182
178
|
}
|
|
183
179
|
|
|
184
180
|
export interface DocumentTypeWithPermissions extends DocumentType {
|
|
@@ -390,6 +386,17 @@ export interface UpsertCompanyOwnershipDto {
|
|
|
390
386
|
CompanyOwnerships: Array<Partial<CompanyOwnership>> | null;
|
|
391
387
|
}
|
|
392
388
|
|
|
389
|
+
export interface IDatabaseAttachment {
|
|
390
|
+
CdnFileName: string | null;
|
|
391
|
+
CreatedDate: string;
|
|
392
|
+
Extension: string | null;
|
|
393
|
+
Id: number;
|
|
394
|
+
Name: string | null;
|
|
395
|
+
PreviewExtension: string | null;
|
|
396
|
+
PreviewSizes: string | null;
|
|
397
|
+
Size: number;
|
|
398
|
+
}
|
|
399
|
+
|
|
393
400
|
export enum CompanyRoleType {
|
|
394
401
|
LLCCompanyRole = 0,
|
|
395
402
|
AgencyRole = 1,
|