@cool-digital-solutions/interferir-models 1.2.19 → 1.2.21
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.
|
@@ -230,7 +230,7 @@ const companySchema = new mongoose_1.Schema({
|
|
|
230
230
|
},
|
|
231
231
|
mergedCompanySlugs: [{ type: String, default: '' }],
|
|
232
232
|
aiContext: { type: String, default: '' },
|
|
233
|
-
creationSource: [{ type:
|
|
233
|
+
creationSource: [{ type: Object }],
|
|
234
234
|
createdBy: { type: mongoose_1.Schema.Types.ObjectId, ref: 'User', default: null },
|
|
235
235
|
updatedBy: { type: mongoose_1.Schema.Types.ObjectId, ref: 'User', default: null },
|
|
236
236
|
updatedDate: { type: Number },
|
|
@@ -279,7 +279,7 @@ export interface ICompany extends BaseSchema {
|
|
|
279
279
|
investmentPortfolio: InvestmentPortfolio;
|
|
280
280
|
mergedCompanySlugs: string[];
|
|
281
281
|
aiContext: string;
|
|
282
|
-
creationSource:
|
|
282
|
+
creationSource: object[];
|
|
283
283
|
}
|
|
284
284
|
export interface ICompanyModel extends BaseModel<ICompany> {
|
|
285
285
|
}
|
|
@@ -56,7 +56,9 @@ export declare enum Key {
|
|
|
56
56
|
SENT_TO_ENTRAMIND_DAYS = "sent_to_entramind_days",
|
|
57
57
|
MINUTE = "minute",
|
|
58
58
|
RESEARCH_BETA = "research_beta",
|
|
59
|
-
RESEARCH_PROD = "research_prod"
|
|
59
|
+
RESEARCH_PROD = "research_prod",
|
|
60
|
+
EXPERIENCE_BETA = "experience_beta",
|
|
61
|
+
EXPERIENCE_PROD = "experience_prod"
|
|
60
62
|
}
|
|
61
63
|
export interface IGeneralConfig extends BaseSchema {
|
|
62
64
|
generalConfigSub: Types.ObjectId | IGeneralConfigSub;
|