@taiger-common/model 1.0.12 → 1.0.14
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/dist/cjs/model/Audit.js +2 -2
- package/dist/cjs/model/Basedocumentationslink.js +3 -2
- package/dist/cjs/model/Communication.js +2 -2
- package/dist/cjs/model/Complaint.js +2 -2
- package/dist/cjs/model/Course.js +2 -2
- package/dist/cjs/model/Docspage.js +4 -3
- package/dist/cjs/model/Documentation.js +3 -2
- package/dist/cjs/model/Documentthread.js +2 -2
- package/dist/cjs/model/Event.js +17 -4
- package/dist/cjs/model/Internaldoc.js +14 -0
- package/dist/cjs/model/Interval.js +39 -0
- package/dist/cjs/model/Interview.js +40 -0
- package/dist/cjs/model/InterviewSurveyResponse.js +24 -0
- package/dist/cjs/model/Keywordset.js +48 -0
- package/dist/cjs/model/Note.js +9 -0
- package/dist/cjs/model/Permission.js +48 -0
- package/dist/cjs/model/Program.js +290 -0
- package/dist/cjs/model/Programrequirement.js +118 -0
- package/dist/cjs/model/ResponseTime.js +27 -0
- package/dist/cjs/model/SurveyInput.js +56 -0
- package/dist/cjs/model/Template.js +19 -0
- package/dist/cjs/model/Tenant.js +9 -0
- package/dist/cjs/model/Ticket.js +55 -0
- package/dist/cjs/model/Token.js +20 -0
- package/dist/cjs/model/User.js +676 -0
- package/dist/esm/model/Audit.js +2 -2
- package/dist/esm/model/Basedocumentationslink.js +3 -2
- package/dist/esm/model/Communication.js +2 -2
- package/dist/esm/model/Complaint.js +2 -2
- package/dist/esm/model/Course.js +2 -2
- package/dist/esm/model/Docspage.js +4 -3
- package/dist/esm/model/Documentation.js +3 -2
- package/dist/esm/model/Documentthread.js +2 -2
- package/dist/esm/model/Event.js +17 -4
- package/dist/esm/model/Internaldoc.js +11 -0
- package/dist/esm/model/Interval.js +36 -0
- package/dist/esm/model/Interview.js +37 -0
- package/dist/esm/model/InterviewSurveyResponse.js +21 -0
- package/dist/esm/model/Keywordset.js +45 -0
- package/dist/esm/model/Note.js +6 -0
- package/dist/esm/model/Permission.js +45 -0
- package/dist/esm/model/Program.js +287 -0
- package/dist/esm/model/Programrequirement.js +115 -0
- package/dist/esm/model/ResponseTime.js +24 -0
- package/dist/esm/model/SurveyInput.js +53 -0
- package/dist/esm/model/Template.js +16 -0
- package/dist/esm/model/Tenant.js +6 -0
- package/dist/esm/model/Ticket.js +52 -0
- package/dist/esm/model/Token.js +17 -0
- package/dist/esm/model/User.js +670 -0
- package/dist/types/model/Audit.d.ts +74 -24
- package/dist/types/model/Basedocumentationslink.d.ts +46 -15
- package/dist/types/model/Communication.d.ts +101 -36
- package/dist/types/model/Complaint.d.ts +200 -58
- package/dist/types/model/Course.d.ts +78 -47
- package/dist/types/model/Docspage.d.ts +58 -34
- package/dist/types/model/Documentation.d.ts +58 -31
- package/dist/types/model/Documentthread.d.ts +201 -59
- package/dist/types/model/Event.d.ts +74 -44
- package/dist/types/model/Internaldoc.d.ts +58 -0
- package/dist/types/model/Interval.d.ts +58 -0
- package/dist/types/model/Interview.d.ts +84 -0
- package/dist/types/model/InterviewSurveyResponse.d.ts +93 -0
- package/dist/types/model/Keywordset.d.ts +75 -0
- package/dist/types/model/Note.d.ts +43 -0
- package/dist/types/model/Permission.d.ts +81 -0
- package/dist/types/model/Program.d.ts +453 -0
- package/dist/types/model/Programrequirement.d.ts +168 -0
- package/dist/types/model/ResponseTime.d.ts +49 -0
- package/dist/types/model/SurveyInput.d.ts +121 -0
- package/dist/types/model/Template.d.ts +46 -0
- package/dist/types/model/Tenant.d.ts +43 -0
- package/dist/types/model/Ticket.d.ts +69 -0
- package/dist/types/model/Token.d.ts +43 -0
- package/dist/types/model/User.d.ts +31 -0
- package/dist/umd/index.js +1 -1
- package/package.json +6 -1
|
@@ -1,48 +1,79 @@
|
|
|
1
|
+
/// <reference types="mongoose/types/aggregate" />
|
|
2
|
+
/// <reference types="mongoose/types/callback" />
|
|
3
|
+
/// <reference types="mongoose/types/collection" />
|
|
4
|
+
/// <reference types="mongoose/types/connection" />
|
|
5
|
+
/// <reference types="mongoose/types/cursor" />
|
|
6
|
+
/// <reference types="mongoose/types/document" />
|
|
7
|
+
/// <reference types="mongoose/types/error" />
|
|
8
|
+
/// <reference types="mongoose/types/expressions" />
|
|
9
|
+
/// <reference types="mongoose/types/helpers" />
|
|
10
|
+
/// <reference types="mongoose/types/middlewares" />
|
|
11
|
+
/// <reference types="mongoose/types/indexes" />
|
|
12
|
+
/// <reference types="mongoose/types/models" />
|
|
13
|
+
/// <reference types="mongoose/types/mongooseoptions" />
|
|
14
|
+
/// <reference types="mongoose/types/pipelinestage" />
|
|
15
|
+
/// <reference types="mongoose/types/populate" />
|
|
16
|
+
/// <reference types="mongoose/types/query" />
|
|
17
|
+
/// <reference types="mongoose/types/schemaoptions" />
|
|
18
|
+
/// <reference types="mongoose/types/schematypes" />
|
|
19
|
+
/// <reference types="mongoose/types/session" />
|
|
20
|
+
/// <reference types="mongoose/types/types" />
|
|
21
|
+
/// <reference types="mongoose/types/utility" />
|
|
22
|
+
/// <reference types="mongoose/types/validation" />
|
|
23
|
+
/// <reference types="mongoose/types/virtuals" />
|
|
24
|
+
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
+
/// <reference types="mongoose/types/inferrawdoctype" />
|
|
1
26
|
import { Schema } from 'mongoose';
|
|
2
|
-
export declare const coursesSchema: {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
updatedAt
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
27
|
+
export declare const coursesSchema: Schema<any, import("mongoose").Model<any, any, any, any, any, any>, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, {
|
|
28
|
+
name: string;
|
|
29
|
+
table_data_string: string;
|
|
30
|
+
table_data_string_locked: boolean;
|
|
31
|
+
table_data_string_taiger_guided: string;
|
|
32
|
+
updatedAt?: NativeDate | null | undefined;
|
|
33
|
+
student_id?: import("mongoose").Types.ObjectId | null | undefined;
|
|
34
|
+
analysis?: {
|
|
35
|
+
path: string;
|
|
36
|
+
analyzed_course: string[];
|
|
37
|
+
isAnalysed: boolean;
|
|
38
|
+
isAnalysedV2: boolean;
|
|
39
|
+
pathV2: string;
|
|
40
|
+
updatedAt?: NativeDate | null | undefined;
|
|
41
|
+
updatedAtV2?: NativeDate | null | undefined;
|
|
42
|
+
} | null | undefined;
|
|
43
|
+
}, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{
|
|
44
|
+
name: string;
|
|
45
|
+
table_data_string: string;
|
|
46
|
+
table_data_string_locked: boolean;
|
|
47
|
+
table_data_string_taiger_guided: string;
|
|
48
|
+
updatedAt?: NativeDate | null | undefined;
|
|
49
|
+
student_id?: import("mongoose").Types.ObjectId | null | undefined;
|
|
50
|
+
analysis?: {
|
|
51
|
+
path: string;
|
|
52
|
+
analyzed_course: string[];
|
|
53
|
+
isAnalysed: boolean;
|
|
54
|
+
isAnalysedV2: boolean;
|
|
55
|
+
pathV2: string;
|
|
56
|
+
updatedAt?: NativeDate | null | undefined;
|
|
57
|
+
updatedAtV2?: NativeDate | null | undefined;
|
|
58
|
+
} | null | undefined;
|
|
59
|
+
}>> & import("mongoose").FlatRecord<{
|
|
60
|
+
name: string;
|
|
61
|
+
table_data_string: string;
|
|
62
|
+
table_data_string_locked: boolean;
|
|
63
|
+
table_data_string_taiger_guided: string;
|
|
64
|
+
updatedAt?: NativeDate | null | undefined;
|
|
65
|
+
student_id?: import("mongoose").Types.ObjectId | null | undefined;
|
|
66
|
+
analysis?: {
|
|
67
|
+
path: string;
|
|
68
|
+
analyzed_course: string[];
|
|
69
|
+
isAnalysed: boolean;
|
|
70
|
+
isAnalysedV2: boolean;
|
|
71
|
+
pathV2: string;
|
|
72
|
+
updatedAt?: NativeDate | null | undefined;
|
|
73
|
+
updatedAtV2?: NativeDate | null | undefined;
|
|
74
|
+
} | null | undefined;
|
|
75
|
+
}> & {
|
|
76
|
+
_id: import("mongoose").Types.ObjectId;
|
|
77
|
+
} & {
|
|
78
|
+
__v: number;
|
|
79
|
+
}>;
|
|
@@ -1,3 +1,29 @@
|
|
|
1
|
+
/// <reference types="mongoose/types/aggregate" />
|
|
2
|
+
/// <reference types="mongoose/types/callback" />
|
|
3
|
+
/// <reference types="mongoose/types/collection" />
|
|
4
|
+
/// <reference types="mongoose/types/connection" />
|
|
5
|
+
/// <reference types="mongoose/types/cursor" />
|
|
6
|
+
/// <reference types="mongoose/types/document" />
|
|
7
|
+
/// <reference types="mongoose/types/error" />
|
|
8
|
+
/// <reference types="mongoose/types/expressions" />
|
|
9
|
+
/// <reference types="mongoose/types/helpers" />
|
|
10
|
+
/// <reference types="mongoose/types/middlewares" />
|
|
11
|
+
/// <reference types="mongoose/types/indexes" />
|
|
12
|
+
/// <reference types="mongoose/types/models" />
|
|
13
|
+
/// <reference types="mongoose/types/mongooseoptions" />
|
|
14
|
+
/// <reference types="mongoose/types/pipelinestage" />
|
|
15
|
+
/// <reference types="mongoose/types/populate" />
|
|
16
|
+
/// <reference types="mongoose/types/query" />
|
|
17
|
+
/// <reference types="mongoose/types/schemaoptions" />
|
|
18
|
+
/// <reference types="mongoose/types/schematypes" />
|
|
19
|
+
/// <reference types="mongoose/types/session" />
|
|
20
|
+
/// <reference types="mongoose/types/types" />
|
|
21
|
+
/// <reference types="mongoose/types/utility" />
|
|
22
|
+
/// <reference types="mongoose/types/validation" />
|
|
23
|
+
/// <reference types="mongoose/types/virtuals" />
|
|
24
|
+
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
+
/// <reference types="mongoose/types/inferrawdoctype" />
|
|
26
|
+
import { Schema } from 'mongoose';
|
|
1
27
|
export interface IDocspages {
|
|
2
28
|
name: string;
|
|
3
29
|
title: string;
|
|
@@ -8,37 +34,35 @@ export interface IDocspages {
|
|
|
8
34
|
country: string;
|
|
9
35
|
updatedAt: Date;
|
|
10
36
|
}
|
|
11
|
-
export declare const docspagesSchema: {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
country:
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
};
|
|
44
|
-
};
|
|
37
|
+
export declare const docspagesSchema: Schema<any, import("mongoose").Model<any, any, any, any, any, any>, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, {
|
|
38
|
+
text: string;
|
|
39
|
+
name: string;
|
|
40
|
+
category: string;
|
|
41
|
+
title: string;
|
|
42
|
+
prop: string;
|
|
43
|
+
author: string;
|
|
44
|
+
country: string;
|
|
45
|
+
updatedAt?: NativeDate | null | undefined;
|
|
46
|
+
}, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{
|
|
47
|
+
text: string;
|
|
48
|
+
name: string;
|
|
49
|
+
category: string;
|
|
50
|
+
title: string;
|
|
51
|
+
prop: string;
|
|
52
|
+
author: string;
|
|
53
|
+
country: string;
|
|
54
|
+
updatedAt?: NativeDate | null | undefined;
|
|
55
|
+
}>> & import("mongoose").FlatRecord<{
|
|
56
|
+
text: string;
|
|
57
|
+
name: string;
|
|
58
|
+
category: string;
|
|
59
|
+
title: string;
|
|
60
|
+
prop: string;
|
|
61
|
+
author: string;
|
|
62
|
+
country: string;
|
|
63
|
+
updatedAt?: NativeDate | null | undefined;
|
|
64
|
+
}> & {
|
|
65
|
+
_id: import("mongoose").Types.ObjectId;
|
|
66
|
+
} & {
|
|
67
|
+
__v: number;
|
|
68
|
+
}>;
|
|
@@ -1,31 +1,58 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
1
|
+
/// <reference types="mongoose/types/aggregate" />
|
|
2
|
+
/// <reference types="mongoose/types/callback" />
|
|
3
|
+
/// <reference types="mongoose/types/collection" />
|
|
4
|
+
/// <reference types="mongoose/types/connection" />
|
|
5
|
+
/// <reference types="mongoose/types/cursor" />
|
|
6
|
+
/// <reference types="mongoose/types/document" />
|
|
7
|
+
/// <reference types="mongoose/types/error" />
|
|
8
|
+
/// <reference types="mongoose/types/expressions" />
|
|
9
|
+
/// <reference types="mongoose/types/helpers" />
|
|
10
|
+
/// <reference types="mongoose/types/middlewares" />
|
|
11
|
+
/// <reference types="mongoose/types/indexes" />
|
|
12
|
+
/// <reference types="mongoose/types/models" />
|
|
13
|
+
/// <reference types="mongoose/types/mongooseoptions" />
|
|
14
|
+
/// <reference types="mongoose/types/pipelinestage" />
|
|
15
|
+
/// <reference types="mongoose/types/populate" />
|
|
16
|
+
/// <reference types="mongoose/types/query" />
|
|
17
|
+
/// <reference types="mongoose/types/schemaoptions" />
|
|
18
|
+
/// <reference types="mongoose/types/schematypes" />
|
|
19
|
+
/// <reference types="mongoose/types/session" />
|
|
20
|
+
/// <reference types="mongoose/types/types" />
|
|
21
|
+
/// <reference types="mongoose/types/utility" />
|
|
22
|
+
/// <reference types="mongoose/types/validation" />
|
|
23
|
+
/// <reference types="mongoose/types/virtuals" />
|
|
24
|
+
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
+
/// <reference types="mongoose/types/inferrawdoctype" />
|
|
26
|
+
import { Schema } from 'mongoose';
|
|
27
|
+
export declare const documentationsSchema: Schema<any, import("mongoose").Model<any, any, any, any, any, any>, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, {
|
|
28
|
+
text: string;
|
|
29
|
+
name: string;
|
|
30
|
+
category: string;
|
|
31
|
+
title: string;
|
|
32
|
+
prop: string;
|
|
33
|
+
author: string;
|
|
34
|
+
country: string;
|
|
35
|
+
updatedAt?: NativeDate | null | undefined;
|
|
36
|
+
}, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{
|
|
37
|
+
text: string;
|
|
38
|
+
name: string;
|
|
39
|
+
category: string;
|
|
40
|
+
title: string;
|
|
41
|
+
prop: string;
|
|
42
|
+
author: string;
|
|
43
|
+
country: string;
|
|
44
|
+
updatedAt?: NativeDate | null | undefined;
|
|
45
|
+
}>> & import("mongoose").FlatRecord<{
|
|
46
|
+
text: string;
|
|
47
|
+
name: string;
|
|
48
|
+
category: string;
|
|
49
|
+
title: string;
|
|
50
|
+
prop: string;
|
|
51
|
+
author: string;
|
|
52
|
+
country: string;
|
|
53
|
+
updatedAt?: NativeDate | null | undefined;
|
|
54
|
+
}> & {
|
|
55
|
+
_id: import("mongoose").Types.ObjectId;
|
|
56
|
+
} & {
|
|
57
|
+
__v: number;
|
|
58
|
+
}>;
|
|
@@ -1,60 +1,202 @@
|
|
|
1
|
+
/// <reference types="mongoose/types/aggregate" />
|
|
2
|
+
/// <reference types="mongoose/types/callback" />
|
|
3
|
+
/// <reference types="mongoose/types/collection" />
|
|
4
|
+
/// <reference types="mongoose/types/connection" />
|
|
5
|
+
/// <reference types="mongoose/types/cursor" />
|
|
6
|
+
/// <reference types="mongoose/types/document" />
|
|
7
|
+
/// <reference types="mongoose/types/error" />
|
|
8
|
+
/// <reference types="mongoose/types/expressions" />
|
|
9
|
+
/// <reference types="mongoose/types/helpers" />
|
|
10
|
+
/// <reference types="mongoose/types/middlewares" />
|
|
11
|
+
/// <reference types="mongoose/types/indexes" />
|
|
12
|
+
/// <reference types="mongoose/types/models" />
|
|
13
|
+
/// <reference types="mongoose/types/mongooseoptions" />
|
|
14
|
+
/// <reference types="mongoose/types/pipelinestage" />
|
|
15
|
+
/// <reference types="mongoose/types/populate" />
|
|
16
|
+
/// <reference types="mongoose/types/query" />
|
|
17
|
+
/// <reference types="mongoose/types/schemaoptions" />
|
|
18
|
+
/// <reference types="mongoose/types/schematypes" />
|
|
19
|
+
/// <reference types="mongoose/types/session" />
|
|
20
|
+
/// <reference types="mongoose/types/types" />
|
|
21
|
+
/// <reference types="mongoose/types/utility" />
|
|
22
|
+
/// <reference types="mongoose/types/validation" />
|
|
23
|
+
/// <reference types="mongoose/types/virtuals" />
|
|
24
|
+
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
+
/// <reference types="mongoose/types/inferrawdoctype" />
|
|
1
26
|
import { Schema } from 'mongoose';
|
|
2
|
-
export declare const documentThreadsSchema: {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
27
|
+
export declare const documentThreadsSchema: Schema<any, import("mongoose").Model<any, any, any, any, any, any>, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, {
|
|
28
|
+
messages: import("mongoose").Types.DocumentArray<{
|
|
29
|
+
message: string;
|
|
30
|
+
file: import("mongoose").Types.DocumentArray<{
|
|
31
|
+
name: string;
|
|
32
|
+
path: string;
|
|
33
|
+
}, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {
|
|
34
|
+
name: string;
|
|
35
|
+
path: string;
|
|
36
|
+
}> & {
|
|
37
|
+
name: string;
|
|
38
|
+
path: string;
|
|
39
|
+
}>;
|
|
40
|
+
createdAt?: NativeDate | null | undefined;
|
|
41
|
+
ignore_message?: boolean | null | undefined;
|
|
42
|
+
user_id?: import("mongoose").Types.ObjectId | null | undefined;
|
|
43
|
+
}, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {
|
|
44
|
+
message: string;
|
|
45
|
+
file: import("mongoose").Types.DocumentArray<{
|
|
46
|
+
name: string;
|
|
47
|
+
path: string;
|
|
48
|
+
}, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {
|
|
49
|
+
name: string;
|
|
50
|
+
path: string;
|
|
51
|
+
}> & {
|
|
52
|
+
name: string;
|
|
53
|
+
path: string;
|
|
54
|
+
}>;
|
|
55
|
+
createdAt?: NativeDate | null | undefined;
|
|
56
|
+
ignore_message?: boolean | null | undefined;
|
|
57
|
+
user_id?: import("mongoose").Types.ObjectId | null | undefined;
|
|
58
|
+
}> & {
|
|
59
|
+
message: string;
|
|
60
|
+
file: import("mongoose").Types.DocumentArray<{
|
|
61
|
+
name: string;
|
|
62
|
+
path: string;
|
|
63
|
+
}, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {
|
|
64
|
+
name: string;
|
|
65
|
+
path: string;
|
|
66
|
+
}> & {
|
|
67
|
+
name: string;
|
|
68
|
+
path: string;
|
|
69
|
+
}>;
|
|
70
|
+
createdAt?: NativeDate | null | undefined;
|
|
71
|
+
ignore_message?: boolean | null | undefined;
|
|
72
|
+
user_id?: import("mongoose").Types.ObjectId | null | undefined;
|
|
73
|
+
}>;
|
|
74
|
+
outsourced_user_id: import("mongoose").Types.ObjectId[];
|
|
75
|
+
pin_by_user_id: import("mongoose").Types.ObjectId[];
|
|
76
|
+
flag_by_user_id: import("mongoose").Types.ObjectId[];
|
|
77
|
+
isFinalVersion: boolean;
|
|
78
|
+
isOriginAuthorDeclarationConfirmedByStudent: boolean;
|
|
79
|
+
updatedAt?: NativeDate | null | undefined;
|
|
80
|
+
student_id?: import("mongoose").Types.ObjectId | null | undefined;
|
|
81
|
+
isOriginAuthorDeclarationConfirmedByStudentTimestamp?: NativeDate | null | undefined;
|
|
82
|
+
program_id?: import("mongoose").Types.ObjectId | null | undefined;
|
|
83
|
+
file_type?: string | null | undefined;
|
|
84
|
+
}, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{
|
|
85
|
+
messages: import("mongoose").Types.DocumentArray<{
|
|
86
|
+
message: string;
|
|
87
|
+
file: import("mongoose").Types.DocumentArray<{
|
|
88
|
+
name: string;
|
|
89
|
+
path: string;
|
|
90
|
+
}, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {
|
|
91
|
+
name: string;
|
|
92
|
+
path: string;
|
|
93
|
+
}> & {
|
|
94
|
+
name: string;
|
|
95
|
+
path: string;
|
|
96
|
+
}>;
|
|
97
|
+
createdAt?: NativeDate | null | undefined;
|
|
98
|
+
ignore_message?: boolean | null | undefined;
|
|
99
|
+
user_id?: import("mongoose").Types.ObjectId | null | undefined;
|
|
100
|
+
}, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {
|
|
101
|
+
message: string;
|
|
102
|
+
file: import("mongoose").Types.DocumentArray<{
|
|
103
|
+
name: string;
|
|
104
|
+
path: string;
|
|
105
|
+
}, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {
|
|
106
|
+
name: string;
|
|
107
|
+
path: string;
|
|
108
|
+
}> & {
|
|
109
|
+
name: string;
|
|
110
|
+
path: string;
|
|
111
|
+
}>;
|
|
112
|
+
createdAt?: NativeDate | null | undefined;
|
|
113
|
+
ignore_message?: boolean | null | undefined;
|
|
114
|
+
user_id?: import("mongoose").Types.ObjectId | null | undefined;
|
|
115
|
+
}> & {
|
|
116
|
+
message: string;
|
|
117
|
+
file: import("mongoose").Types.DocumentArray<{
|
|
118
|
+
name: string;
|
|
119
|
+
path: string;
|
|
120
|
+
}, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {
|
|
121
|
+
name: string;
|
|
122
|
+
path: string;
|
|
123
|
+
}> & {
|
|
124
|
+
name: string;
|
|
125
|
+
path: string;
|
|
126
|
+
}>;
|
|
127
|
+
createdAt?: NativeDate | null | undefined;
|
|
128
|
+
ignore_message?: boolean | null | undefined;
|
|
129
|
+
user_id?: import("mongoose").Types.ObjectId | null | undefined;
|
|
130
|
+
}>;
|
|
131
|
+
outsourced_user_id: import("mongoose").Types.ObjectId[];
|
|
132
|
+
pin_by_user_id: import("mongoose").Types.ObjectId[];
|
|
133
|
+
flag_by_user_id: import("mongoose").Types.ObjectId[];
|
|
134
|
+
isFinalVersion: boolean;
|
|
135
|
+
isOriginAuthorDeclarationConfirmedByStudent: boolean;
|
|
136
|
+
updatedAt?: NativeDate | null | undefined;
|
|
137
|
+
student_id?: import("mongoose").Types.ObjectId | null | undefined;
|
|
138
|
+
isOriginAuthorDeclarationConfirmedByStudentTimestamp?: NativeDate | null | undefined;
|
|
139
|
+
program_id?: import("mongoose").Types.ObjectId | null | undefined;
|
|
140
|
+
file_type?: string | null | undefined;
|
|
141
|
+
}>> & import("mongoose").FlatRecord<{
|
|
142
|
+
messages: import("mongoose").Types.DocumentArray<{
|
|
143
|
+
message: string;
|
|
144
|
+
file: import("mongoose").Types.DocumentArray<{
|
|
145
|
+
name: string;
|
|
146
|
+
path: string;
|
|
147
|
+
}, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {
|
|
148
|
+
name: string;
|
|
149
|
+
path: string;
|
|
150
|
+
}> & {
|
|
151
|
+
name: string;
|
|
152
|
+
path: string;
|
|
153
|
+
}>;
|
|
154
|
+
createdAt?: NativeDate | null | undefined;
|
|
155
|
+
ignore_message?: boolean | null | undefined;
|
|
156
|
+
user_id?: import("mongoose").Types.ObjectId | null | undefined;
|
|
157
|
+
}, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {
|
|
158
|
+
message: string;
|
|
159
|
+
file: import("mongoose").Types.DocumentArray<{
|
|
160
|
+
name: string;
|
|
161
|
+
path: string;
|
|
162
|
+
}, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {
|
|
163
|
+
name: string;
|
|
164
|
+
path: string;
|
|
165
|
+
}> & {
|
|
166
|
+
name: string;
|
|
167
|
+
path: string;
|
|
168
|
+
}>;
|
|
169
|
+
createdAt?: NativeDate | null | undefined;
|
|
170
|
+
ignore_message?: boolean | null | undefined;
|
|
171
|
+
user_id?: import("mongoose").Types.ObjectId | null | undefined;
|
|
172
|
+
}> & {
|
|
173
|
+
message: string;
|
|
174
|
+
file: import("mongoose").Types.DocumentArray<{
|
|
175
|
+
name: string;
|
|
176
|
+
path: string;
|
|
177
|
+
}, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {
|
|
178
|
+
name: string;
|
|
179
|
+
path: string;
|
|
180
|
+
}> & {
|
|
181
|
+
name: string;
|
|
182
|
+
path: string;
|
|
183
|
+
}>;
|
|
184
|
+
createdAt?: NativeDate | null | undefined;
|
|
185
|
+
ignore_message?: boolean | null | undefined;
|
|
186
|
+
user_id?: import("mongoose").Types.ObjectId | null | undefined;
|
|
187
|
+
}>;
|
|
188
|
+
outsourced_user_id: import("mongoose").Types.ObjectId[];
|
|
189
|
+
pin_by_user_id: import("mongoose").Types.ObjectId[];
|
|
190
|
+
flag_by_user_id: import("mongoose").Types.ObjectId[];
|
|
191
|
+
isFinalVersion: boolean;
|
|
192
|
+
isOriginAuthorDeclarationConfirmedByStudent: boolean;
|
|
193
|
+
updatedAt?: NativeDate | null | undefined;
|
|
194
|
+
student_id?: import("mongoose").Types.ObjectId | null | undefined;
|
|
195
|
+
isOriginAuthorDeclarationConfirmedByStudentTimestamp?: NativeDate | null | undefined;
|
|
196
|
+
program_id?: import("mongoose").Types.ObjectId | null | undefined;
|
|
197
|
+
file_type?: string | null | undefined;
|
|
198
|
+
}> & {
|
|
199
|
+
_id: import("mongoose").Types.ObjectId;
|
|
200
|
+
} & {
|
|
201
|
+
__v: number;
|
|
202
|
+
}>;
|