@bizdoc/core 3.9.2 → 3.9.5
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/themes/default.min.css +1 -1
- package/fesm2022/bizdoc-core.mjs +180 -152
- package/fesm2022/bizdoc-core.mjs.map +1 -1
- package/index.d.ts +15 -9
- package/package.json +1 -1
package/index.d.ts
CHANGED
@@ -150,8 +150,8 @@ interface HeaderModel<T = any> {
|
|
150
150
|
documentId: number;
|
151
151
|
substituteId?: string;
|
152
152
|
ownerId: string;
|
153
|
-
actionId?: string;
|
154
153
|
ownerBy?: string;
|
154
|
+
actionId?: string;
|
155
155
|
id: number;
|
156
156
|
version: number;
|
157
157
|
formId: string;
|
@@ -160,19 +160,14 @@ interface HeaderModel<T = any> {
|
|
160
160
|
value?: number;
|
161
161
|
received: Date;
|
162
162
|
replied?: Date;
|
163
|
-
repliedBy?: string;
|
164
163
|
folderId: string;
|
165
164
|
read: boolean;
|
166
|
-
note?: string;
|
167
|
-
/** author of note */
|
168
|
-
noteBy?: string;
|
169
165
|
senderId?: string;
|
166
|
+
/** identity */
|
170
167
|
senderBy?: string;
|
171
168
|
stateId: string;
|
172
169
|
currencyCode?: string;
|
173
170
|
flag?: boolean;
|
174
|
-
summary?: string;
|
175
|
-
pending?: boolean;
|
176
171
|
model?: T;
|
177
172
|
}
|
178
173
|
interface DocumentModel<T = any> {
|
@@ -189,7 +184,7 @@ interface DocumentModel<T = any> {
|
|
189
184
|
version: number;
|
190
185
|
formId: string;
|
191
186
|
stateId: string;
|
192
|
-
completed?:
|
187
|
+
completed?: Date;
|
193
188
|
model?: T;
|
194
189
|
viewed?: Date;
|
195
190
|
attachments: Attachment[];
|
@@ -229,6 +224,7 @@ interface WorkflowInfo {
|
|
229
224
|
}
|
230
225
|
interface RecipientModel<T = any> extends HeaderModel<T>, DocumentModel<T> {
|
231
226
|
actions?: string[];
|
227
|
+
pending?: boolean;
|
232
228
|
fyi: boolean;
|
233
229
|
originId?: number;
|
234
230
|
roleId?: string;
|
@@ -236,6 +232,9 @@ interface RecipientModel<T = any> extends HeaderModel<T>, DocumentModel<T> {
|
|
236
232
|
tags?: string[];
|
237
233
|
repliedBy?: string;
|
238
234
|
substituteId?: string;
|
235
|
+
note?: string;
|
236
|
+
/** note author id */
|
237
|
+
noteBy?: string;
|
239
238
|
}
|
240
239
|
interface ConnectorInfo {
|
241
240
|
originId?: number;
|
@@ -287,7 +286,7 @@ interface Recipient {
|
|
287
286
|
userId: string;
|
288
287
|
pending: boolean;
|
289
288
|
folderId: string;
|
290
|
-
|
289
|
+
roleId?: string;
|
291
290
|
received: Date;
|
292
291
|
replied?: Date;
|
293
292
|
repliedBy?: string;
|
@@ -7192,6 +7191,7 @@ declare class UserTaggingComponent extends TaggingComponentBase<PersonInfo> {
|
|
7192
7191
|
private _session;
|
7193
7192
|
private _accounts;
|
7194
7193
|
private readonly _me;
|
7194
|
+
normalizedName(name: string): string;
|
7195
7195
|
onBind(value: string): void;
|
7196
7196
|
static ɵfac: i0.ɵɵFactoryDeclaration<UserTaggingComponent, never>;
|
7197
7197
|
static ɵcmp: i0.ɵɵComponentDeclaration<UserTaggingComponent, "ng-component", never, {}, {}, never, never, false, never>;
|
@@ -7648,6 +7648,12 @@ declare class FlowViewComponent extends TraceBase implements AfterViewInit, OnDe
|
|
7648
7648
|
* @param recipient
|
7649
7649
|
*/
|
7650
7650
|
private _note;
|
7651
|
+
/**
|
7652
|
+
*
|
7653
|
+
* @param name
|
7654
|
+
* @param gender
|
7655
|
+
* @returns
|
7656
|
+
*/
|
7651
7657
|
private _action;
|
7652
7658
|
ngOnDestroy(): void;
|
7653
7659
|
static ɵfac: i0.ɵɵFactoryDeclaration<FlowViewComponent, never>;
|