@dignite-ng/expand.dynamic-form 3.0.0-rc.4 → 3.0.0-rc.6
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/ng-package.json +7 -0
- package/package.json +2 -15
- package/src/lib/components/dynamic/dynamic.component.html +2 -0
- package/src/lib/components/dynamic/dynamic.component.scss +0 -0
- package/src/lib/components/dynamic/dynamic.component.spec.ts +21 -0
- package/src/lib/components/dynamic/dynamic.component.ts +121 -0
- package/src/lib/components/dynamic/index.ts +1 -0
- package/src/lib/components/form/date-edit/date-edit-config.component.html +40 -0
- package/src/lib/components/form/date-edit/date-edit-config.component.scss +0 -0
- package/src/lib/components/form/date-edit/date-edit-config.component.spec.ts +21 -0
- package/src/lib/components/form/date-edit/date-edit-config.component.ts +87 -0
- package/src/lib/components/form/date-edit/date-edit-config.ts +14 -0
- package/src/lib/components/form/date-edit/date-edit-control.component.html +26 -0
- package/src/lib/components/form/date-edit/date-edit-control.component.scss +0 -0
- package/src/lib/components/form/date-edit/date-edit-control.component.spec.ts +21 -0
- package/src/lib/components/form/date-edit/date-edit-control.component.ts +101 -0
- package/src/lib/components/form/date-edit/index.ts +2 -0
- package/src/lib/components/form/form-control-group.ts +64 -0
- package/src/lib/components/form/index.ts +6 -0
- package/src/lib/components/form/numeric-edit/index.ts +2 -0
- package/src/lib/components/form/numeric-edit/numberic-edit-config.component.html +31 -0
- package/src/lib/components/form/numeric-edit/numberic-edit-config.component.scss +0 -0
- package/src/lib/components/form/numeric-edit/numberic-edit-config.component.spec.ts +21 -0
- package/src/lib/components/form/numeric-edit/numberic-edit-config.component.ts +57 -0
- package/src/lib/components/form/numeric-edit/numberic-edit-config.ts +28 -0
- package/src/lib/components/form/numeric-edit/numberic-edit-control.component.html +13 -0
- package/src/lib/components/form/numeric-edit/numberic-edit-control.component.scss +0 -0
- package/src/lib/components/form/numeric-edit/numberic-edit-control.component.spec.ts +21 -0
- package/src/lib/components/form/numeric-edit/numberic-edit-control.component.ts +119 -0
- package/src/lib/components/form/select/index.ts +2 -0
- package/src/lib/components/form/select/select-config.component.html +59 -0
- package/src/lib/components/form/select/select-config.component.scss +0 -0
- package/src/lib/components/form/select/select-config.component.spec.ts +21 -0
- package/src/lib/components/form/select/select-config.component.ts +90 -0
- package/src/lib/components/form/select/select-config.ts +24 -0
- package/src/lib/components/form/select/select-control.component.html +32 -0
- package/src/lib/components/form/select/select-control.component.scss +32 -0
- package/src/lib/components/form/select/select-control.component.spec.ts +21 -0
- package/src/lib/components/form/select/select-control.component.ts +86 -0
- package/src/lib/components/form/switch/index.ts +2 -0
- package/src/lib/components/form/switch/switch-config.component.html +17 -0
- package/src/lib/components/form/switch/switch-config.component.scss +0 -0
- package/src/lib/components/form/switch/switch-config.component.spec.ts +21 -0
- package/src/lib/components/form/switch/switch-config.component.ts +58 -0
- package/src/lib/components/form/switch/switch-config.ts +17 -0
- package/src/lib/components/form/switch/switch-control.component.html +13 -0
- package/src/lib/components/form/switch/switch-control.component.scss +0 -0
- package/src/lib/components/form/switch/switch-control.component.spec.ts +21 -0
- package/src/lib/components/form/switch/switch-control.component.ts +81 -0
- package/src/lib/components/form/text-edit/index.ts +3 -0
- package/src/lib/components/form/text-edit/text-edit-config.component.html +32 -0
- package/src/lib/components/form/text-edit/text-edit-config.component.scss +0 -0
- package/src/lib/components/form/text-edit/text-edit-config.component.spec.ts +21 -0
- package/src/lib/components/form/text-edit/text-edit-config.component.ts +59 -0
- package/src/lib/components/form/text-edit/text-edit-config.ts +24 -0
- package/src/lib/components/form/text-edit/text-edit.component.html +17 -0
- package/src/lib/components/form/text-edit/text-edit.component.scss +0 -0
- package/src/lib/components/form/text-edit/text-edit.component.spec.ts +21 -0
- package/src/lib/components/form/text-edit/text-edit.component.ts +91 -0
- package/src/lib/components/index.ts +2 -0
- package/src/lib/dynamic-form.module.ts +74 -0
- package/src/lib/enums/date-edit-interfaces.ts +16 -0
- package/src/lib/enums/index.ts +2 -0
- package/src/lib/enums/text-edit-mode.ts +7 -0
- package/{lib/interfaces/form-config-interfaces.d.ts → src/lib/interfaces/form-config-interfaces.ts} +7 -2
- package/src/lib/interfaces/index.ts +1 -0
- package/src/lib/proxy/README.md +17 -0
- package/src/lib/proxy/dignite/file-explorer/directories/file-descriptor.service.ts +65 -0
- package/src/lib/proxy/dignite/file-explorer/directories/index.ts +2 -0
- package/src/lib/proxy/dignite/file-explorer/directories/models.ts +35 -0
- package/src/lib/proxy/dignite/file-explorer/files/file-descriptor.service.ts +86 -0
- package/src/lib/proxy/dignite/file-explorer/files/index.ts +2 -0
- package/src/lib/proxy/dignite/file-explorer/files/models.ts +57 -0
- package/src/lib/proxy/dignite/file-explorer/index.ts +3 -0
- package/src/lib/proxy/dignite/index.ts +2 -0
- package/src/lib/proxy/generate-proxy.json +11810 -0
- package/src/lib/proxy/index.ts +4 -0
- package/src/lib/proxy/microsoft/asp-net-core/index.ts +2 -0
- package/src/lib/proxy/microsoft/asp-net-core/mvc/index.ts +1 -0
- package/src/lib/proxy/microsoft/asp-net-core/mvc/models.ts +12 -0
- package/src/lib/proxy/microsoft/extensions/index.ts +2 -0
- package/src/lib/proxy/microsoft/extensions/primitives/index.ts +1 -0
- package/src/lib/proxy/microsoft/extensions/primitives/models.ts +9 -0
- package/src/lib/proxy/microsoft/index.ts +4 -0
- package/src/lib/proxy/microsoft/net/http/headers/index.ts +1 -0
- package/src/lib/proxy/microsoft/net/http/headers/models.ts +7 -0
- package/src/lib/proxy/microsoft/net/http/index.ts +2 -0
- package/src/lib/proxy/microsoft/net/index.ts +2 -0
- package/src/lib/proxy/volo/abp/content/index.ts +1 -0
- package/src/lib/proxy/volo/abp/content/models.ts +6 -0
- package/src/lib/proxy/volo/abp/index.ts +2 -0
- package/src/lib/proxy/volo/index.ts +2 -0
- package/src/lib/services/df-api.service.ts +75 -0
- package/src/lib/services/index.ts +1 -0
- package/{public-api.d.ts → src/public-api.ts} +4 -0
- package/tsconfig.lib.json +14 -0
- package/tsconfig.lib.prod.json +10 -0
- package/tsconfig.spec.json +14 -0
- package/esm2022/dignite-ng-expand.dynamic-form.mjs +0 -5
- package/esm2022/lib/components/dynamic/dynamic.component.mjs +0 -109
- package/esm2022/lib/components/dynamic/index.mjs +0 -2
- package/esm2022/lib/components/form/date-edit/date-edit-config.component.mjs +0 -90
- package/esm2022/lib/components/form/date-edit/date-edit-config.mjs +0 -12
- package/esm2022/lib/components/form/date-edit/date-edit-control.component.mjs +0 -99
- package/esm2022/lib/components/form/date-edit/index.mjs +0 -3
- package/esm2022/lib/components/form/form-control-group.mjs +0 -53
- package/esm2022/lib/components/form/index.mjs +0 -7
- package/esm2022/lib/components/form/numeric-edit/index.mjs +0 -3
- package/esm2022/lib/components/form/numeric-edit/numberic-edit-config.component.mjs +0 -60
- package/esm2022/lib/components/form/numeric-edit/numberic-edit-config.mjs +0 -24
- package/esm2022/lib/components/form/numeric-edit/numberic-edit-control.component.mjs +0 -106
- package/esm2022/lib/components/form/select/index.mjs +0 -3
- package/esm2022/lib/components/form/select/select-config.component.mjs +0 -93
- package/esm2022/lib/components/form/select/select-config.mjs +0 -19
- package/esm2022/lib/components/form/select/select-control.component.mjs +0 -86
- package/esm2022/lib/components/form/switch/index.mjs +0 -3
- package/esm2022/lib/components/form/switch/switch-config.component.mjs +0 -61
- package/esm2022/lib/components/form/switch/switch-config.mjs +0 -14
- package/esm2022/lib/components/form/switch/switch-control.component.mjs +0 -80
- package/esm2022/lib/components/form/text-edit/index.mjs +0 -4
- package/esm2022/lib/components/form/text-edit/text-edit-config.component.mjs +0 -63
- package/esm2022/lib/components/form/text-edit/text-edit-config.mjs +0 -18
- package/esm2022/lib/components/form/text-edit/text-edit.component.mjs +0 -89
- package/esm2022/lib/components/index.mjs +0 -3
- package/esm2022/lib/dynamic-form.module.mjs +0 -88
- package/esm2022/lib/enums/date-edit-interfaces.mjs +0 -16
- package/esm2022/lib/enums/text-edit-mode.mjs +0 -8
- package/esm2022/lib/interfaces/form-config-interfaces.mjs +0 -2
- package/esm2022/lib/interfaces/index.mjs +0 -2
- package/esm2022/lib/services/df-api.service.mjs +0 -82
- package/esm2022/lib/services/index.mjs +0 -2
- package/esm2022/public-api.mjs +0 -7
- package/fesm2022/dignite-ng-expand.dynamic-form.mjs +0 -1200
- package/fesm2022/dignite-ng-expand.dynamic-form.mjs.map +0 -1
- package/index.d.ts +0 -5
- package/lib/components/dynamic/dynamic.component.d.ts +0 -38
- package/lib/components/dynamic/index.d.ts +0 -1
- package/lib/components/form/date-edit/date-edit-config.component.d.ts +0 -29
- package/lib/components/form/date-edit/date-edit-config.d.ts +0 -9
- package/lib/components/form/date-edit/date-edit-control.component.d.ts +0 -33
- package/lib/components/form/date-edit/index.d.ts +0 -2
- package/lib/components/form/form-control-group.d.ts +0 -6
- package/lib/components/form/index.d.ts +0 -6
- package/lib/components/form/numeric-edit/index.d.ts +0 -2
- package/lib/components/form/numeric-edit/numberic-edit-config.component.d.ts +0 -23
- package/lib/components/form/numeric-edit/numberic-edit-config.d.ts +0 -11
- package/lib/components/form/numeric-edit/numberic-edit-control.component.d.ts +0 -34
- package/lib/components/form/select/index.d.ts +0 -2
- package/lib/components/form/select/select-config.component.d.ts +0 -31
- package/lib/components/form/select/select-config.d.ts +0 -7
- package/lib/components/form/select/select-control.component.d.ts +0 -29
- package/lib/components/form/switch/index.d.ts +0 -2
- package/lib/components/form/switch/switch-config.component.d.ts +0 -23
- package/lib/components/form/switch/switch-config.d.ts +0 -5
- package/lib/components/form/switch/switch-control.component.d.ts +0 -28
- package/lib/components/form/text-edit/index.d.ts +0 -3
- package/lib/components/form/text-edit/text-edit-config.component.d.ts +0 -25
- package/lib/components/form/text-edit/text-edit-config.d.ts +0 -7
- package/lib/components/form/text-edit/text-edit.component.d.ts +0 -30
- package/lib/components/index.d.ts +0 -2
- package/lib/dynamic-form.module.d.ts +0 -23
- package/lib/enums/date-edit-interfaces.d.ts +0 -5
- package/lib/enums/text-edit-mode.d.ts +0 -4
- package/lib/interfaces/index.d.ts +0 -1
- package/lib/services/df-api.service.d.ts +0 -18
- package/lib/services/index.d.ts +0 -1
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import type { CreateDirectoryInput, DirectoryDescriptorDto, DirectoryDescriptorInfoDto, GetDirectoriesInput, MoveDirectoryInput, UpdateDirectoryInput } from './models';
|
|
2
|
+
import { RestService, Rest } from '@abp/ng.core';
|
|
3
|
+
import type { PagedResultDto } from '@abp/ng.core';
|
|
4
|
+
import { Injectable } from '@angular/core';
|
|
5
|
+
|
|
6
|
+
@Injectable({
|
|
7
|
+
providedIn: 'root',
|
|
8
|
+
})
|
|
9
|
+
export class FileDescriptorService {
|
|
10
|
+
apiName = 'FileExplorer';
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
create = (input: CreateDirectoryInput, config?: Partial<Rest.Config>) =>
|
|
14
|
+
this.restService.request<any, DirectoryDescriptorDto>({
|
|
15
|
+
method: 'POST',
|
|
16
|
+
url: '/api/file-explorer/directories',
|
|
17
|
+
body: input,
|
|
18
|
+
},
|
|
19
|
+
{ apiName: this.apiName,...config });
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
delete = (id: string, config?: Partial<Rest.Config>) =>
|
|
23
|
+
this.restService.request<any, void>({
|
|
24
|
+
method: 'DELETE',
|
|
25
|
+
url: `/api/file-explorer/directories/${id}`,
|
|
26
|
+
},
|
|
27
|
+
{ apiName: this.apiName,...config });
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
get = (id: string, config?: Partial<Rest.Config>) =>
|
|
31
|
+
this.restService.request<any, DirectoryDescriptorDto>({
|
|
32
|
+
method: 'GET',
|
|
33
|
+
url: `/api/file-explorer/directories/${id}`,
|
|
34
|
+
},
|
|
35
|
+
{ apiName: this.apiName,...config });
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
getList = (input: GetDirectoriesInput, config?: Partial<Rest.Config>) =>
|
|
39
|
+
this.restService.request<any, PagedResultDto<DirectoryDescriptorInfoDto>>({
|
|
40
|
+
method: 'GET',
|
|
41
|
+
url: '/api/file-explorer/directories',
|
|
42
|
+
params: { containerName: input.containerName },
|
|
43
|
+
},
|
|
44
|
+
{ apiName: this.apiName,...config });
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
move = (id: string, input: MoveDirectoryInput, config?: Partial<Rest.Config>) =>
|
|
48
|
+
this.restService.request<any, DirectoryDescriptorDto>({
|
|
49
|
+
method: 'PUT',
|
|
50
|
+
url: `/api/file-explorer/directories/${id}/move`,
|
|
51
|
+
body: input,
|
|
52
|
+
},
|
|
53
|
+
{ apiName: this.apiName,...config });
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
update = (id: string, input: UpdateDirectoryInput, config?: Partial<Rest.Config>) =>
|
|
57
|
+
this.restService.request<any, DirectoryDescriptorDto>({
|
|
58
|
+
method: 'PUT',
|
|
59
|
+
url: `/api/file-explorer/directories/${id}`,
|
|
60
|
+
body: input,
|
|
61
|
+
},
|
|
62
|
+
{ apiName: this.apiName,...config });
|
|
63
|
+
|
|
64
|
+
constructor(private restService: RestService) {}
|
|
65
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import type { ExtensibleAuditedEntityDto, ExtensibleEntityDto } from '@abp/ng.core';
|
|
2
|
+
|
|
3
|
+
export interface CreateDirectoryInput {
|
|
4
|
+
containerName: string;
|
|
5
|
+
name: string;
|
|
6
|
+
parentId?: string;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
export interface DirectoryDescriptorDto extends ExtensibleAuditedEntityDto<string> {
|
|
10
|
+
containerName?: string;
|
|
11
|
+
name?: string;
|
|
12
|
+
parentId?: string;
|
|
13
|
+
order: number;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
export interface DirectoryDescriptorInfoDto extends ExtensibleEntityDto<string> {
|
|
17
|
+
containerName?: string;
|
|
18
|
+
name?: string;
|
|
19
|
+
parentId?: string;
|
|
20
|
+
order: number;
|
|
21
|
+
children: DirectoryDescriptorInfoDto[];
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export interface GetDirectoriesInput {
|
|
25
|
+
containerName: string;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
export interface MoveDirectoryInput {
|
|
29
|
+
parentId?: string;
|
|
30
|
+
order: number;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
export interface UpdateDirectoryInput {
|
|
34
|
+
name: string;
|
|
35
|
+
}
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
import type { CreateFileInput, FileContainerConfigurationDto, FileDescriptorDto, GetFilesInput, ImageResizeInput, UpdateFileInput } from './models';
|
|
2
|
+
import { RestService, Rest } from '@abp/ng.core';
|
|
3
|
+
import type { PagedResultDto } from '@abp/ng.core';
|
|
4
|
+
import { Injectable } from '@angular/core';
|
|
5
|
+
import type { FileResult } from '../../../microsoft/asp-net-core/mvc/models';
|
|
6
|
+
|
|
7
|
+
@Injectable({
|
|
8
|
+
providedIn: 'root',
|
|
9
|
+
})
|
|
10
|
+
export class FileDescriptorService {
|
|
11
|
+
apiName = 'FileExplorer';
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
create = (input: CreateFileInput, config?: Partial<Rest.Config>) =>
|
|
15
|
+
this.restService.request<any, FileDescriptorDto>({
|
|
16
|
+
method: 'POST',
|
|
17
|
+
url: '/api/file-explorer/files',
|
|
18
|
+
params: { containerName: input.containerName, cellName: input.cellName, directoryId: input.directoryId, entityId: input.entityId },
|
|
19
|
+
body: input.file,
|
|
20
|
+
},
|
|
21
|
+
{ apiName: this.apiName,...config });
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
delete = (id: string, config?: Partial<Rest.Config>) =>
|
|
25
|
+
this.restService.request<any, void>({
|
|
26
|
+
method: 'DELETE',
|
|
27
|
+
url: `/api/file-explorer/files/${id}`,
|
|
28
|
+
},
|
|
29
|
+
{ apiName: this.apiName,...config });
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
download = (containerName: string, blobName: string, fileName: string, config?: Partial<Rest.Config>) =>
|
|
33
|
+
this.restService.request<any, FileResult>({
|
|
34
|
+
method: 'GET',
|
|
35
|
+
url: `/api/file-explorer/files/download/${containerName}/${blobName}`,
|
|
36
|
+
params: { fileName },
|
|
37
|
+
},
|
|
38
|
+
{ apiName: this.apiName,...config });
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
get = (id: string, config?: Partial<Rest.Config>) =>
|
|
42
|
+
this.restService.request<any, FileDescriptorDto>({
|
|
43
|
+
method: 'GET',
|
|
44
|
+
url: `/api/file-explorer/files/${id}`,
|
|
45
|
+
},
|
|
46
|
+
{ apiName: this.apiName,...config });
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
getFileContainerConfiguration = (containerName: string, config?: Partial<Rest.Config>) =>
|
|
50
|
+
this.restService.request<any, FileContainerConfigurationDto>({
|
|
51
|
+
method: 'GET',
|
|
52
|
+
url: '/api/file-explorer/files/configuration',
|
|
53
|
+
params: { containerName },
|
|
54
|
+
},
|
|
55
|
+
{ apiName: this.apiName,...config });
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
getList = (input: GetFilesInput, config?: Partial<Rest.Config>) =>
|
|
59
|
+
this.restService.request<any, PagedResultDto<FileDescriptorDto>>({
|
|
60
|
+
method: 'GET',
|
|
61
|
+
url: '/api/file-explorer/files',
|
|
62
|
+
params: { containerName: input.containerName, directoryId: input.directoryId, creatorId: input.creatorId, filter: input.filter, entityId: input.entityId, sorting: input.sorting, skipCount: input.skipCount, maxResultCount: input.maxResultCount },
|
|
63
|
+
},
|
|
64
|
+
{ apiName: this.apiName,...config });
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
getStream = (containerName: string, blobName: string, imageResize?: ImageResizeInput, config?: Partial<Rest.Config>) =>
|
|
68
|
+
this.restService.request<any, Blob>({
|
|
69
|
+
method: 'GET',
|
|
70
|
+
responseType: 'blob',
|
|
71
|
+
url: `/api/file-explorer/files/${containerName}/${blobName}`,
|
|
72
|
+
params: { width: imageResize.width, height: imageResize.height },
|
|
73
|
+
},
|
|
74
|
+
{ apiName: this.apiName,...config });
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
update = (id: string, input: UpdateFileInput, config?: Partial<Rest.Config>) =>
|
|
78
|
+
this.restService.request<any, FileDescriptorDto>({
|
|
79
|
+
method: 'PUT',
|
|
80
|
+
url: `/api/file-explorer/files/${id}`,
|
|
81
|
+
body: input,
|
|
82
|
+
},
|
|
83
|
+
{ apiName: this.apiName,...config });
|
|
84
|
+
|
|
85
|
+
constructor(private restService: RestService) {}
|
|
86
|
+
}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import type { IRemoteStreamContent } from '../../../volo/abp/content/models';
|
|
2
|
+
import type { CreationAuditedEntityDto, PagedAndSortedResultRequestDto } from '@abp/ng.core';
|
|
3
|
+
|
|
4
|
+
export interface CreateFileInput {
|
|
5
|
+
containerName: string;
|
|
6
|
+
cellName?: string;
|
|
7
|
+
directoryId?: string;
|
|
8
|
+
entityId?: string;
|
|
9
|
+
file: IRemoteStreamContent;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
export interface FileCellDto {
|
|
13
|
+
name?: string;
|
|
14
|
+
displayName?: string;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export interface FileContainerConfigurationDto {
|
|
18
|
+
maxBlobSize: number;
|
|
19
|
+
allowedFileTypeNames: string[];
|
|
20
|
+
fileCells: FileCellDto[];
|
|
21
|
+
createDirectoryPermissionName?: string;
|
|
22
|
+
createFilePermissionName?: string;
|
|
23
|
+
updateFilePermissionName?: string;
|
|
24
|
+
deleteFilePermissionName?: string;
|
|
25
|
+
getFilePermissionName?: string;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
export interface FileDescriptorDto extends CreationAuditedEntityDto<string> {
|
|
29
|
+
entityId?: string;
|
|
30
|
+
containerName?: string;
|
|
31
|
+
blobName?: string;
|
|
32
|
+
cellName?: string;
|
|
33
|
+
directoryId?: string;
|
|
34
|
+
size: number;
|
|
35
|
+
name?: string;
|
|
36
|
+
mimeType?: string;
|
|
37
|
+
url?: string;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
export interface GetFilesInput extends PagedAndSortedResultRequestDto {
|
|
41
|
+
containerName: string;
|
|
42
|
+
directoryId?: string;
|
|
43
|
+
creatorId?: string;
|
|
44
|
+
filter?: string;
|
|
45
|
+
entityId?: string;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
export interface ImageResizeInput {
|
|
49
|
+
width?: number;
|
|
50
|
+
height?: number;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
export interface UpdateFileInput {
|
|
54
|
+
cellName?: string;
|
|
55
|
+
directoryId?: string;
|
|
56
|
+
name?: string;
|
|
57
|
+
}
|