@duvdu-v1/duvdu 1.1.237 → 1.1.238
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 +1 -0
- 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
|
@@ -46,6 +46,7 @@ exports.CopyrightContracts = (0, mongoose_1.model)(model_names_1.MODELS.copyrigh
|
|
|
46
46
|
notes: { type: String, default: null },
|
|
47
47
|
reason: { type: String, default: null },
|
|
48
48
|
status: { type: String, enum: SubmitFilesStatus, default: SubmitFilesStatus.pending },
|
|
49
|
+
dateOfSubmission: { type: Date, default: null },
|
|
49
50
|
}],
|
|
50
51
|
rejectedBy: { type: String, enum: ['sp', 'customer'], default: null },
|
|
51
52
|
paymentLink: { type: String, default: null },
|
|
@@ -84,6 +84,7 @@ export interface IprojectContract {
|
|
|
84
84
|
notes: string;
|
|
85
85
|
status: SubmitFilesStatus;
|
|
86
86
|
reason?: string;
|
|
87
|
+
dateOfSubmission: Date;
|
|
87
88
|
}[];
|
|
88
89
|
}
|
|
89
90
|
export declare const ProjectContract: import("mongoose").Model<IprojectContract, {}, {}, {}, import("mongoose").Document<unknown, {}, IprojectContract> & IprojectContract & {
|
|
@@ -62,6 +62,7 @@ exports.ProjectContract = (0, mongoose_1.model)(model_names_1.MODELS.projectCont
|
|
|
62
62
|
link: { type: String, default: null },
|
|
63
63
|
notes: { type: String, default: null },
|
|
64
64
|
reason: { type: String, default: null },
|
|
65
|
+
dateOfSubmission: { type: Date, default: null },
|
|
65
66
|
status: { type: String, enum: copyright_contract_model_1.SubmitFilesStatus, default: copyright_contract_model_1.SubmitFilesStatus.pending },
|
|
66
67
|
}],
|
|
67
68
|
}, { timestamps: true, collection: model_names_1.MODELS.projectContract }));
|
|
@@ -105,6 +105,7 @@ export interface ITeamContract {
|
|
|
105
105
|
notes: string;
|
|
106
106
|
status: SubmitFilesStatus;
|
|
107
107
|
reason?: string;
|
|
108
|
+
dateOfSubmission: Date;
|
|
108
109
|
}[];
|
|
109
110
|
}
|
|
110
111
|
export declare const TeamContract: import("mongoose").Model<ITeamContract, {}, {}, {}, import("mongoose").Document<unknown, {}, ITeamContract> & ITeamContract & {
|
|
@@ -100,6 +100,7 @@ exports.TeamContract = (0, mongoose_1.model)(model_names_1.MODELS.teamContract,
|
|
|
100
100
|
link: { type: String, default: null },
|
|
101
101
|
notes: { type: String, default: null },
|
|
102
102
|
reason: { type: String, default: null },
|
|
103
|
+
dateOfSubmission: { type: Date, default: null },
|
|
103
104
|
status: { type: String, enum: copyright_contract_model_1.SubmitFilesStatus, default: copyright_contract_model_1.SubmitFilesStatus.pending },
|
|
104
105
|
}],
|
|
105
106
|
}, { timestamps: true, collection: model_names_1.MODELS.teamContract }));
|