@bizdoc/core 1.11.0-next.2 → 1.11.0-next.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/assets/bizdoc-schema.json +4 -7
- package/esm2020/lib/compose/attachments/attachments.component.mjs +2 -2
- package/esm2020/lib/compose/form.component.mjs +2 -2
- package/esm2020/lib/core/controls/file.input.mjs +6 -6
- package/esm2020/lib/core/mailbox.service.mjs +8 -10
- package/esm2020/lib/core/models.mjs +1 -1
- package/esm2020/lib/cube/chart/chart.component.mjs +2 -3
- package/esm2020/lib/cube/cube.service.mjs +8 -3
- package/esm2020/lib/cube/filter/filter.component.mjs +9 -9
- package/esm2020/lib/dashboard/cube/filter/filter.component.mjs +1 -1
- package/esm2020/lib/reports/cube/usage-args.component.mjs +3 -5
- package/fesm2015/bizdoc-core.mjs +32 -32
- package/fesm2015/bizdoc-core.mjs.map +1 -1
- package/fesm2020/bizdoc-core.mjs +32 -32
- package/fesm2020/bizdoc-core.mjs.map +1 -1
- package/lib/compose/attachments/attachments.component.d.ts +2 -2
- package/lib/core/mailbox.service.d.ts +3 -3
- package/lib/core/models.d.ts +1 -1
- package/lib/reports/cube/usage-args.component.d.ts +0 -1
- package/package.json +1 -1
@@ -1,5 +1,5 @@
|
|
1
1
|
import { Injector, ViewContainerRef, OnChanges } from '@angular/core';
|
2
|
-
import { DocumentModel, Attachment } from '../../core/models';
|
2
|
+
import { DocumentModel, Attachment, RecipientModel } from '../../core/models';
|
3
3
|
import { Overlay } from '@angular/cdk/overlay';
|
4
4
|
import { PromptService } from '../../core/prompt.service';
|
5
5
|
import { MailboxService } from '../../core/mailbox.service';
|
@@ -14,7 +14,7 @@ export declare class AttachmentsComponent implements OnChanges {
|
|
14
14
|
private _overlay;
|
15
15
|
private _injector;
|
16
16
|
private _dir;
|
17
|
-
model: DocumentModel<any>;
|
17
|
+
model: RecipientModel<any> | DocumentModel<any>;
|
18
18
|
viewedIndicator: boolean;
|
19
19
|
includeDeleted: boolean;
|
20
20
|
attachments: Attachment[];
|
@@ -24,7 +24,7 @@ export declare class MailboxService {
|
|
24
24
|
constructor(_session: SessionService, _auth: AuthenticationImpl, messaging: HubService, _http: HttpClient);
|
25
25
|
formatDownloadUrl(documentId: number, fileId: number): string;
|
26
26
|
download(documentId: number, fileId: number): Observable<any>;
|
27
|
-
removeattachment(
|
27
|
+
removeattachment(recipientId: number, fileId: number): Observable<any>;
|
28
28
|
read(id: number, read: boolean, folderId?: string, received?: Date): Observable<any>;
|
29
29
|
comments(id: number, before: Date): Observable<Comment[]>;
|
30
30
|
tags(id: number, tags: string[]): Observable<any>;
|
@@ -36,8 +36,8 @@ export declare class MailboxService {
|
|
36
36
|
*/
|
37
37
|
changeState(documentId: number, stateId: string, userId?: string): Observable<any>;
|
38
38
|
move(id: number, folderId: string): Observable<any>;
|
39
|
-
checkOut(
|
40
|
-
checkIn(
|
39
|
+
checkOut(recipientId: number, version: number, attachmentId: number): Observable<Object>;
|
40
|
+
checkIn(recipientId: number, version: number, attachmentId: number, file: File): Observable<Attachment>;
|
41
41
|
upload(recipientId: number, formId: string, version: number, files: File | File[], options?: {
|
42
42
|
isPrivate?: boolean;
|
43
43
|
}): Observable<Attachment[]>;
|
package/lib/core/models.d.ts
CHANGED
@@ -551,7 +551,7 @@ export interface CubeAxis {
|
|
551
551
|
hidden?: boolean;
|
552
552
|
combination?: boolean;
|
553
553
|
selectionMode?: 'Single' | 'Pattern' | 'Multiple' | 'Search' | 'None';
|
554
|
-
|
554
|
+
descendentOf?: string;
|
555
555
|
}
|
556
556
|
export declare type AxisType = string | number | Array<string | number>;
|
557
557
|
export interface AxesMap {
|
@@ -13,7 +13,6 @@ export declare class UsageReportArgs implements OnInit, ArgumentsComponent<Args>
|
|
13
13
|
exclude: string[];
|
14
14
|
cube: string;
|
15
15
|
values: Args;
|
16
|
-
private _axes;
|
17
16
|
constructor(ref: ReportRef<UsageOptions>, _fb: FormBuilder, _session: SessionService);
|
18
17
|
ngOnInit(): void;
|
19
18
|
valuesChange(axes: any): void;
|
package/package.json
CHANGED