@duvdu-v1/duvdu 1.1.236 → 1.1.237
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/build/models/copyright-contract.model.d.ts +2 -1
- package/build/models/copyright-contract.model.js +1 -0
- package/build/models/projectContract.model.d.ts +1 -0
- package/build/models/projectContract.model.js +1 -0
- package/build/models/teamProject.model.d.ts +1 -0
- package/build/models/teamProject.model.js +1 -0
- package/package.json +1 -1
|
@@ -44,6 +44,7 @@ exports.CopyrightContracts = (0, mongoose_1.model)(model_names_1.MODELS.copyrigh
|
|
|
44
44
|
submitFiles: [{
|
|
45
45
|
link: { type: String, default: null },
|
|
46
46
|
notes: { type: String, default: null },
|
|
47
|
+
reason: { type: String, default: null },
|
|
47
48
|
status: { type: String, enum: SubmitFilesStatus, default: SubmitFilesStatus.pending },
|
|
48
49
|
}],
|
|
49
50
|
rejectedBy: { type: String, enum: ['sp', 'customer'], default: null },
|
|
@@ -83,6 +83,7 @@ export interface IprojectContract {
|
|
|
83
83
|
link: string;
|
|
84
84
|
notes: string;
|
|
85
85
|
status: SubmitFilesStatus;
|
|
86
|
+
reason?: string;
|
|
86
87
|
}[];
|
|
87
88
|
}
|
|
88
89
|
export declare const ProjectContract: import("mongoose").Model<IprojectContract, {}, {}, {}, import("mongoose").Document<unknown, {}, IprojectContract> & IprojectContract & {
|
|
@@ -61,6 +61,7 @@ exports.ProjectContract = (0, mongoose_1.model)(model_names_1.MODELS.projectCont
|
|
|
61
61
|
submitFiles: [{
|
|
62
62
|
link: { type: String, default: null },
|
|
63
63
|
notes: { type: String, default: null },
|
|
64
|
+
reason: { type: String, default: null },
|
|
64
65
|
status: { type: String, enum: copyright_contract_model_1.SubmitFilesStatus, default: copyright_contract_model_1.SubmitFilesStatus.pending },
|
|
65
66
|
}],
|
|
66
67
|
}, { timestamps: true, collection: model_names_1.MODELS.projectContract }));
|
|
@@ -104,6 +104,7 @@ export interface ITeamContract {
|
|
|
104
104
|
link: string;
|
|
105
105
|
notes: string;
|
|
106
106
|
status: SubmitFilesStatus;
|
|
107
|
+
reason?: string;
|
|
107
108
|
}[];
|
|
108
109
|
}
|
|
109
110
|
export declare const TeamContract: import("mongoose").Model<ITeamContract, {}, {}, {}, import("mongoose").Document<unknown, {}, ITeamContract> & ITeamContract & {
|
|
@@ -99,6 +99,7 @@ exports.TeamContract = (0, mongoose_1.model)(model_names_1.MODELS.teamContract,
|
|
|
99
99
|
submitFiles: [{
|
|
100
100
|
link: { type: String, default: null },
|
|
101
101
|
notes: { type: String, default: null },
|
|
102
|
+
reason: { type: String, default: null },
|
|
102
103
|
status: { type: String, enum: copyright_contract_model_1.SubmitFilesStatus, default: copyright_contract_model_1.SubmitFilesStatus.pending },
|
|
103
104
|
}],
|
|
104
105
|
}, { timestamps: true, collection: model_names_1.MODELS.teamContract }));
|