@leavittsoftware/lg-core-typescript 2.34.0 → 2.35.0

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.
@@ -1 +1 @@
1
- {"version":3,"file":"api3.leavitt.com.js","sourceRoot":"","sources":["api3.leavitt.com.ts"],"names":[],"mappings":"AA69BA,MAAM,CAAN,IAAY,aAMX;AAND,WAAY,aAAa;IACrB,qDAAU,CAAA;IACV,yDAAY,CAAA;IACZ,uEAAmB,CAAA;IACnB,qDAAU,CAAA;IACV,mEAAiB,CAAA;AACrB,CAAC,EANW,aAAa,KAAb,aAAa,QAMxB;AAID,MAAM,CAAN,IAAY,YAIX;AAJD,WAAY,YAAY;IACpB,+DAAgB,CAAA;IAChB,mDAAU,CAAA;IACV,6CAAO,CAAA;AACX,CAAC,EAJW,YAAY,KAAZ,YAAY,QAIvB;AAID,MAAM,CAAN,IAAY,eAIX;AAJD,WAAY,eAAe;IACvB,yEAAkB,CAAA;IAClB,iEAAc,CAAA;IACd,iFAAsB,CAAA;AAC1B,CAAC,EAJW,eAAe,KAAf,eAAe,QAI1B"}
1
+ {"version":3,"file":"api3.leavitt.com.js","sourceRoot":"","sources":["api3.leavitt.com.ts"],"names":[],"mappings":"AAq+BA,MAAM,CAAN,IAAY,aAMX;AAND,WAAY,aAAa;IACrB,qDAAU,CAAA;IACV,yDAAY,CAAA;IACZ,uEAAmB,CAAA;IACnB,qDAAU,CAAA;IACV,mEAAiB,CAAA;AACrB,CAAC,EANW,aAAa,KAAb,aAAa,QAMxB;AAID,MAAM,CAAN,IAAY,YAIX;AAJD,WAAY,YAAY;IACpB,+DAAgB,CAAA;IAChB,mDAAU,CAAA;IACV,6CAAO,CAAA;AACX,CAAC,EAJW,YAAY,KAAZ,YAAY,QAIvB;AAID,MAAM,CAAN,IAAY,eAIX;AAJD,WAAY,eAAe;IACvB,yEAAkB,CAAA;IAClB,iEAAc,CAAA;IACd,iFAAsB,CAAA;AAC1B,CAAC,EAJW,eAAe,KAAf,eAAe,QAI1B"}
@@ -5,49 +5,6 @@
5
5
  // ----------------------
6
6
  import { Person,PermissionToApplication,ApplicationToApplicationTag,EmploymentTypeString,CompanyAddress,JobRole,SignatureValue,SignatureTemplateToCompany,DocumentType,Document,ServiceToChampion,ServiceToCompany,ConnectedStatusString,Company,CompanyLogo,CompanyOwnership,CLGameScoreboardToPlayerGroup,CLGamePrize } from './lg.net.core'
7
7
 
8
- export interface FileExplorerDto {
9
- AllowedFileTypes: string | null;
10
- CanEdit: boolean;
11
- Files: Array<Partial<FileExplorerFileDto>> | null;
12
- FilesCount: number;
13
- Folders: Array<Partial<FileExplorerFolderDto>> | null;
14
- FoldersCount: number;
15
- Name: string | null;
16
- Path: Array<Partial<FileExplorerPathDto>> | null;
17
- Size: number;
18
- }
19
-
20
- export interface FileExplorerPathDto {
21
- FileExplorerId: number | null;
22
- FolderId: number | null;
23
- Name: string | null;
24
- }
25
-
26
- export interface FileExplorerFileDto {
27
- CdnFileName: string | null;
28
- CreatedDate: string;
29
- CreatorFirstName: string | null;
30
- CreatorId: number;
31
- CreatorLastName: string | null;
32
- Extension: string | null;
33
- Id: number;
34
- Name: string | null;
35
- PreviewExtension: string | null;
36
- PreviewSizes: string | null;
37
- Size: number;
38
- }
39
-
40
- export interface FileExplorerFolderDto {
41
- CreatedDate: string;
42
- CreatorFirstName: string | null;
43
- CreatorId: number;
44
- CreatorLastName: string | null;
45
- FilesCount: number;
46
- FoldersCount: number;
47
- Id: number;
48
- Name: string | null;
49
- }
50
-
51
8
  export interface FruitHolderDto {
52
9
  FirstName: string | null;
53
10
  GroupSource: Array<string> | null;
@@ -224,6 +181,14 @@ export interface LssApplicationUpsertDto {
224
181
  URL: string | null;
225
182
  }
226
183
 
184
+ export interface UserPermissionsDto {
185
+ PermissionId: number;
186
+ PermissionName: string | null;
187
+ PersonToPermissionId: number | null;
188
+ ScopeId: number | null;
189
+ ScopeName: string | null;
190
+ }
191
+
227
192
  export interface ItManagedApplicationUpsertDto {
228
193
  Description: string | null;
229
194
  Id: number | null;
@@ -412,6 +377,49 @@ export interface SequenceDto {
412
377
  Sequence: number;
413
378
  }
414
379
 
380
+ export interface FileExplorerDto {
381
+ AllowedFileTypes: string | null;
382
+ CanEdit: boolean;
383
+ Files: Array<Partial<FileExplorerFileDto>> | null;
384
+ FilesCount: number;
385
+ Folders: Array<Partial<FileExplorerFolderDto>> | null;
386
+ FoldersCount: number;
387
+ Name: string | null;
388
+ Path: Array<Partial<FileExplorerPathDto>> | null;
389
+ Size: number;
390
+ }
391
+
392
+ export interface FileExplorerPathDto {
393
+ FileExplorerId: number | null;
394
+ FolderId: number | null;
395
+ Name: string | null;
396
+ }
397
+
398
+ export interface FileExplorerFileDto {
399
+ CdnFileName: string | null;
400
+ CreatedDate: string;
401
+ CreatorFirstName: string | null;
402
+ CreatorId: number;
403
+ CreatorLastName: string | null;
404
+ Extension: string | null;
405
+ Id: number;
406
+ Name: string | null;
407
+ PreviewExtension: string | null;
408
+ PreviewSizes: string | null;
409
+ Size: number;
410
+ }
411
+
412
+ export interface FileExplorerFolderDto {
413
+ CreatedDate: string;
414
+ CreatorFirstName: string | null;
415
+ CreatorId: number;
416
+ CreatorLastName: string | null;
417
+ FilesCount: number;
418
+ FoldersCount: number;
419
+ Id: number;
420
+ Name: string | null;
421
+ }
422
+
415
423
  export interface FileExplorerMemberDto {
416
424
  FirstName: string | null;
417
425
  GroupSource: Array<string> | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leavittsoftware/lg-core-typescript",
3
- "version": "2.34.0",
3
+ "version": "2.35.0",
4
4
  "description": "Typescript of lg core",
5
5
  "main": "lg.core.js",
6
6
  "files": [