@cool-digital-solutions/interferir-models 1.0.16 → 1.0.17
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/schemas/ai-conversation.schema.d.ts +2 -4
- package/dist/schemas/backend-error.schema.d.ts +2 -4
- package/dist/schemas/badge.schema.d.ts +2 -4
- package/dist/schemas/batch-history.schema.d.ts +2 -6
- package/dist/schemas/company-funding-round.schema.d.ts +2 -4
- package/dist/schemas/company.schema.d.ts +2 -4
- package/dist/schemas/competitor.schema.d.ts +2 -4
- package/dist/schemas/contact-message.schema.d.ts +2 -4
- package/dist/schemas/contact-startup.schema.d.ts +1 -3
- package/dist/schemas/content.schema.d.ts +2 -4
- package/dist/schemas/draft-version.schema.d.ts +2 -4
- package/dist/schemas/evidence-layout.schema.d.ts +2 -4
- package/dist/schemas/evidence.schema.d.ts +2 -4
- package/dist/schemas/faq.schema.d.ts +2 -4
- package/dist/schemas/follow-content.schema.d.ts +2 -4
- package/dist/schemas/general-config-sub.schema.d.ts +1 -3
- package/dist/schemas/general-config.schema.d.ts +1 -3
- package/dist/schemas/image.schema.d.ts +2 -4
- package/dist/schemas/industry.schema.d.ts +2 -4
- package/dist/schemas/instant-research.schema.d.ts +2 -4
- package/dist/schemas/investor.schema.d.ts +2 -4
- package/dist/schemas/like.schema.d.ts +2 -4
- package/dist/schemas/news.schema.d.ts +2 -4
- package/dist/schemas/notification.schema.d.ts +1 -3
- package/dist/schemas/otp.schema.d.ts +1 -3
- package/dist/schemas/portia-article.schema.d.ts +2 -4
- package/dist/schemas/problem.schema.d.ts +2 -4
- package/dist/schemas/search-history.schema.d.ts +2 -4
- package/dist/schemas/sf-category.schema.d.ts +2 -4
- package/dist/schemas/sf-sub-category.schema.d.ts +2 -4
- package/dist/schemas/sf-tag.schema.d.ts +2 -4
- package/dist/schemas/site-map-cache.schema.d.ts +1 -3
- package/dist/schemas/spark-use-case.schema.d.ts +2 -4
- package/dist/schemas/spark.schema.d.ts +2 -4
- package/dist/schemas/suggest.schema.d.ts +2 -4
- package/dist/schemas/technology.schema.d.ts +2 -4
- package/dist/schemas/theme.schema.d.ts +2 -4
- package/dist/schemas/token.schema.d.ts +1 -3
- package/dist/schemas/update-job.schema.d.ts +2 -4
- package/dist/schemas/use-case.schema.d.ts +2 -4
- package/dist/schemas/user-token.schema.d.ts +2 -4
- package/dist/schemas/user-visit.schema.d.ts +2 -4
- package/dist/schemas/user.schema.d.ts +2 -4
- package/package.json +2 -2
|
@@ -22,9 +22,7 @@
|
|
|
22
22
|
/// <reference types="mongoose/types/validation" />
|
|
23
23
|
/// <reference types="mongoose/types/virtuals" />
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
-
import { Schema
|
|
25
|
+
import { Schema } from 'mongoose';
|
|
26
26
|
import type { IAiConversation, IAiConversationModel } from '../types';
|
|
27
|
-
declare const aiConversationSchema: Schema<IAiConversation, IAiConversationModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IAiConversation
|
|
28
|
-
_id: Types.ObjectId;
|
|
29
|
-
}>>;
|
|
27
|
+
declare const aiConversationSchema: Schema<IAiConversation, IAiConversationModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IAiConversation>;
|
|
30
28
|
export default aiConversationSchema;
|
|
@@ -22,9 +22,7 @@
|
|
|
22
22
|
/// <reference types="mongoose/types/validation" />
|
|
23
23
|
/// <reference types="mongoose/types/virtuals" />
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
-
import { Schema
|
|
25
|
+
import { Schema } from 'mongoose';
|
|
26
26
|
import type { IBackendError, IBackendErrorModel } from '../types';
|
|
27
|
-
declare const backendErrorSchema: Schema<IBackendError, IBackendErrorModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IBackendError
|
|
28
|
-
_id: Types.ObjectId;
|
|
29
|
-
}>>;
|
|
27
|
+
declare const backendErrorSchema: Schema<IBackendError, IBackendErrorModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IBackendError>;
|
|
30
28
|
export default backendErrorSchema;
|
|
@@ -22,9 +22,7 @@
|
|
|
22
22
|
/// <reference types="mongoose/types/validation" />
|
|
23
23
|
/// <reference types="mongoose/types/virtuals" />
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
-
import { Schema
|
|
25
|
+
import { Schema } from 'mongoose';
|
|
26
26
|
import type { IBadge, IBadgeModel } from '../types';
|
|
27
|
-
declare const badgeSchema: Schema<IBadge, IBadgeModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IBadge
|
|
28
|
-
_id: Types.ObjectId;
|
|
29
|
-
}>>;
|
|
27
|
+
declare const badgeSchema: Schema<IBadge, IBadgeModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IBadge>;
|
|
30
28
|
export default badgeSchema;
|
|
@@ -22,11 +22,7 @@
|
|
|
22
22
|
/// <reference types="mongoose/types/validation" />
|
|
23
23
|
/// <reference types="mongoose/types/virtuals" />
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
-
import { Schema
|
|
25
|
+
import { Schema } from 'mongoose';
|
|
26
26
|
import type { IBatchHistory } from '../types';
|
|
27
|
-
declare const batchHistorySchema: Schema<IBatchHistory, import("mongoose").Model<IBatchHistory, any, any, any, import("mongoose").
|
|
28
|
-
_id: Types.ObjectId;
|
|
29
|
-
}>, any>, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IBatchHistory, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<IBatchHistory>> & import("mongoose").FlatRecord<IBatchHistory> & Required<{
|
|
30
|
-
_id: Types.ObjectId;
|
|
31
|
-
}>>;
|
|
27
|
+
declare const batchHistorySchema: Schema<IBatchHistory, import("mongoose").Model<IBatchHistory, any, any, any, any>, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IBatchHistory>;
|
|
32
28
|
export default batchHistorySchema;
|
|
@@ -22,9 +22,7 @@
|
|
|
22
22
|
/// <reference types="mongoose/types/validation" />
|
|
23
23
|
/// <reference types="mongoose/types/virtuals" />
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
-
import { Schema
|
|
25
|
+
import { Schema } from 'mongoose';
|
|
26
26
|
import { ICompanyFundingRound, ICompanyFundingRoundModel } from '../types';
|
|
27
|
-
declare const companyFundingRound: Schema<ICompanyFundingRound, ICompanyFundingRoundModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, ICompanyFundingRound
|
|
28
|
-
_id: Types.ObjectId;
|
|
29
|
-
}>>;
|
|
27
|
+
declare const companyFundingRound: Schema<ICompanyFundingRound, ICompanyFundingRoundModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, ICompanyFundingRound>;
|
|
30
28
|
export default companyFundingRound;
|
|
@@ -22,9 +22,7 @@
|
|
|
22
22
|
/// <reference types="mongoose/types/validation" />
|
|
23
23
|
/// <reference types="mongoose/types/virtuals" />
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
-
import { Schema
|
|
25
|
+
import { Schema } from 'mongoose';
|
|
26
26
|
import type { ICompany, ICompanyModel } from '../types';
|
|
27
|
-
declare const companySchema: Schema<ICompany, ICompanyModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, ICompany
|
|
28
|
-
_id: Types.ObjectId;
|
|
29
|
-
}>>;
|
|
27
|
+
declare const companySchema: Schema<ICompany, ICompanyModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, ICompany>;
|
|
30
28
|
export default companySchema;
|
|
@@ -22,9 +22,7 @@
|
|
|
22
22
|
/// <reference types="mongoose/types/validation" />
|
|
23
23
|
/// <reference types="mongoose/types/virtuals" />
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
-
import { Schema
|
|
25
|
+
import { Schema } from 'mongoose';
|
|
26
26
|
import type { ICompetitor, ICompetitorModel } from '../types';
|
|
27
|
-
declare const competitorSchema: Schema<ICompetitor, ICompetitorModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, ICompetitor
|
|
28
|
-
_id: Types.ObjectId;
|
|
29
|
-
}>>;
|
|
27
|
+
declare const competitorSchema: Schema<ICompetitor, ICompetitorModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, ICompetitor>;
|
|
30
28
|
export default competitorSchema;
|
|
@@ -22,9 +22,7 @@
|
|
|
22
22
|
/// <reference types="mongoose/types/validation" />
|
|
23
23
|
/// <reference types="mongoose/types/virtuals" />
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
-
import { Schema
|
|
25
|
+
import { Schema } from 'mongoose';
|
|
26
26
|
import type { IContactMessage, IContactMessageModel } from '../types';
|
|
27
|
-
declare const contactMessageSchema: Schema<IContactMessage, IContactMessageModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IContactMessage
|
|
28
|
-
_id: Types.ObjectId;
|
|
29
|
-
}>>;
|
|
27
|
+
declare const contactMessageSchema: Schema<IContactMessage, IContactMessageModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IContactMessage>;
|
|
30
28
|
export default contactMessageSchema;
|
|
@@ -24,7 +24,5 @@
|
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
25
|
import { Schema } from 'mongoose';
|
|
26
26
|
import type { IContactStartup, IContactStartupModel } from '../types';
|
|
27
|
-
declare const contactStartupSchema: Schema<IContactStartup, IContactStartupModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IContactStartup
|
|
28
|
-
_id: import("mongoose").Types.ObjectId;
|
|
29
|
-
}>>;
|
|
27
|
+
declare const contactStartupSchema: Schema<IContactStartup, IContactStartupModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IContactStartup>;
|
|
30
28
|
export default contactStartupSchema;
|
|
@@ -22,9 +22,7 @@
|
|
|
22
22
|
/// <reference types="mongoose/types/validation" />
|
|
23
23
|
/// <reference types="mongoose/types/virtuals" />
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
-
import { Schema
|
|
25
|
+
import { Schema } from 'mongoose';
|
|
26
26
|
import type { IContent, IContentModel } from '../types';
|
|
27
|
-
declare const contentSchema: Schema<IContent, IContentModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IContent
|
|
28
|
-
_id: Types.ObjectId;
|
|
29
|
-
}>>;
|
|
27
|
+
declare const contentSchema: Schema<IContent, IContentModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IContent>;
|
|
30
28
|
export default contentSchema;
|
|
@@ -22,9 +22,7 @@
|
|
|
22
22
|
/// <reference types="mongoose/types/validation" />
|
|
23
23
|
/// <reference types="mongoose/types/virtuals" />
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
-
import { Schema
|
|
25
|
+
import { Schema } from 'mongoose';
|
|
26
26
|
import type { IDraftVersion, IDraftVersionModel } from '../types';
|
|
27
|
-
declare const draftVersionSchema: Schema<IDraftVersion, IDraftVersionModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IDraftVersion
|
|
28
|
-
_id: Types.ObjectId;
|
|
29
|
-
}>>;
|
|
27
|
+
declare const draftVersionSchema: Schema<IDraftVersion, IDraftVersionModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IDraftVersion>;
|
|
30
28
|
export default draftVersionSchema;
|
|
@@ -22,9 +22,7 @@
|
|
|
22
22
|
/// <reference types="mongoose/types/validation" />
|
|
23
23
|
/// <reference types="mongoose/types/virtuals" />
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
-
import { Schema
|
|
25
|
+
import { Schema } from 'mongoose';
|
|
26
26
|
import type { IEvidenceLayout, IEvidenceLayoutModel } from '../types';
|
|
27
|
-
declare const evidenceLayoutSchema: Schema<IEvidenceLayout, IEvidenceLayoutModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IEvidenceLayout
|
|
28
|
-
_id: Types.ObjectId;
|
|
29
|
-
}>>;
|
|
27
|
+
declare const evidenceLayoutSchema: Schema<IEvidenceLayout, IEvidenceLayoutModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IEvidenceLayout>;
|
|
30
28
|
export default evidenceLayoutSchema;
|
|
@@ -22,9 +22,7 @@
|
|
|
22
22
|
/// <reference types="mongoose/types/validation" />
|
|
23
23
|
/// <reference types="mongoose/types/virtuals" />
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
-
import { Schema
|
|
25
|
+
import { Schema } from 'mongoose';
|
|
26
26
|
import type { IEvidence, IEvidenceModel } from '../types';
|
|
27
|
-
declare const evidenceSchema: Schema<IEvidence, IEvidenceModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IEvidence
|
|
28
|
-
_id: Types.ObjectId;
|
|
29
|
-
}>>;
|
|
27
|
+
declare const evidenceSchema: Schema<IEvidence, IEvidenceModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IEvidence>;
|
|
30
28
|
export default evidenceSchema;
|
|
@@ -22,9 +22,7 @@
|
|
|
22
22
|
/// <reference types="mongoose/types/validation" />
|
|
23
23
|
/// <reference types="mongoose/types/virtuals" />
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
-
import { Schema
|
|
25
|
+
import { Schema } from 'mongoose';
|
|
26
26
|
import type { IFaq, IFaqModel } from '../types';
|
|
27
|
-
declare const faqSchema: Schema<IFaq, IFaqModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IFaq
|
|
28
|
-
_id: Types.ObjectId;
|
|
29
|
-
}>>;
|
|
27
|
+
declare const faqSchema: Schema<IFaq, IFaqModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IFaq>;
|
|
30
28
|
export default faqSchema;
|
|
@@ -22,9 +22,7 @@
|
|
|
22
22
|
/// <reference types="mongoose/types/validation" />
|
|
23
23
|
/// <reference types="mongoose/types/virtuals" />
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
-
import { Schema
|
|
25
|
+
import { Schema } from 'mongoose';
|
|
26
26
|
import type { IFollowContent, IFollowContentModel } from '../types';
|
|
27
|
-
declare const followContentSchema: Schema<IFollowContent, IFollowContentModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IFollowContent
|
|
28
|
-
_id: Types.ObjectId;
|
|
29
|
-
}>>;
|
|
27
|
+
declare const followContentSchema: Schema<IFollowContent, IFollowContentModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IFollowContent>;
|
|
30
28
|
export default followContentSchema;
|
|
@@ -24,7 +24,5 @@
|
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
25
|
import { Schema } from 'mongoose';
|
|
26
26
|
import type { IGeneralConfigSub, IGeneralConfigSubModel } from '../types';
|
|
27
|
-
declare const generalConfigSubSchema: Schema<IGeneralConfigSub, IGeneralConfigSubModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IGeneralConfigSub
|
|
28
|
-
_id: import("mongoose").Types.ObjectId;
|
|
29
|
-
}>>;
|
|
27
|
+
declare const generalConfigSubSchema: Schema<IGeneralConfigSub, IGeneralConfigSubModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IGeneralConfigSub>;
|
|
30
28
|
export default generalConfigSubSchema;
|
|
@@ -24,7 +24,5 @@
|
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
25
|
import { Schema } from 'mongoose';
|
|
26
26
|
import type { IGeneralConfig, IGeneralConfigModel } from '../types';
|
|
27
|
-
declare const generalConfigSchema: Schema<IGeneralConfig, IGeneralConfigModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IGeneralConfig
|
|
28
|
-
_id: import("mongoose").Types.ObjectId;
|
|
29
|
-
}>>;
|
|
27
|
+
declare const generalConfigSchema: Schema<IGeneralConfig, IGeneralConfigModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IGeneralConfig>;
|
|
30
28
|
export default generalConfigSchema;
|
|
@@ -22,9 +22,7 @@
|
|
|
22
22
|
/// <reference types="mongoose/types/validation" />
|
|
23
23
|
/// <reference types="mongoose/types/virtuals" />
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
-
import { Schema
|
|
25
|
+
import { Schema } from 'mongoose';
|
|
26
26
|
import type { IImage, IImageModel } from '../types';
|
|
27
|
-
declare const imageSchema: Schema<IImage, IImageModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IImage
|
|
28
|
-
_id: Types.ObjectId;
|
|
29
|
-
}>>;
|
|
27
|
+
declare const imageSchema: Schema<IImage, IImageModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IImage>;
|
|
30
28
|
export default imageSchema;
|
|
@@ -22,9 +22,7 @@
|
|
|
22
22
|
/// <reference types="mongoose/types/validation" />
|
|
23
23
|
/// <reference types="mongoose/types/virtuals" />
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
-
import { Schema
|
|
25
|
+
import { Schema } from 'mongoose';
|
|
26
26
|
import type { IIndustry, IIndustryModel } from '../types';
|
|
27
|
-
declare const industrySchema: Schema<IIndustry, IIndustryModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IIndustry
|
|
28
|
-
_id: Types.ObjectId;
|
|
29
|
-
}>>;
|
|
27
|
+
declare const industrySchema: Schema<IIndustry, IIndustryModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IIndustry>;
|
|
30
28
|
export default industrySchema;
|
|
@@ -22,9 +22,7 @@
|
|
|
22
22
|
/// <reference types="mongoose/types/validation" />
|
|
23
23
|
/// <reference types="mongoose/types/virtuals" />
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
-
import { Schema
|
|
25
|
+
import { Schema } from 'mongoose';
|
|
26
26
|
import type { IInstantResearch, IInstantResearchModel } from '../types';
|
|
27
|
-
declare const instantResearchSchema: Schema<IInstantResearch, IInstantResearchModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IInstantResearch
|
|
28
|
-
_id: Types.ObjectId;
|
|
29
|
-
}>>;
|
|
27
|
+
declare const instantResearchSchema: Schema<IInstantResearch, IInstantResearchModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IInstantResearch>;
|
|
30
28
|
export default instantResearchSchema;
|
|
@@ -22,9 +22,7 @@
|
|
|
22
22
|
/// <reference types="mongoose/types/validation" />
|
|
23
23
|
/// <reference types="mongoose/types/virtuals" />
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
-
import { Schema
|
|
25
|
+
import { Schema } from 'mongoose';
|
|
26
26
|
import type { IInvestor, IInvestorModel } from '../types';
|
|
27
|
-
declare const instantResearchSchema: Schema<IInvestor, IInvestorModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IInvestor
|
|
28
|
-
_id: Types.ObjectId;
|
|
29
|
-
}>>;
|
|
27
|
+
declare const instantResearchSchema: Schema<IInvestor, IInvestorModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IInvestor>;
|
|
30
28
|
export default instantResearchSchema;
|
|
@@ -22,9 +22,7 @@
|
|
|
22
22
|
/// <reference types="mongoose/types/validation" />
|
|
23
23
|
/// <reference types="mongoose/types/virtuals" />
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
-
import { Schema
|
|
25
|
+
import { Schema } from 'mongoose';
|
|
26
26
|
import type { ILike, ILikeModel } from '../types';
|
|
27
|
-
declare const likeSchema: Schema<ILike, ILikeModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, ILike
|
|
28
|
-
_id: Types.ObjectId;
|
|
29
|
-
}>>;
|
|
27
|
+
declare const likeSchema: Schema<ILike, ILikeModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, ILike>;
|
|
30
28
|
export default likeSchema;
|
|
@@ -22,9 +22,7 @@
|
|
|
22
22
|
/// <reference types="mongoose/types/validation" />
|
|
23
23
|
/// <reference types="mongoose/types/virtuals" />
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
-
import { Schema
|
|
25
|
+
import { Schema } from 'mongoose';
|
|
26
26
|
import type { INews, INewsModel } from '../types';
|
|
27
|
-
declare const newsSchema: Schema<INews, INewsModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, INews
|
|
28
|
-
_id: Types.ObjectId;
|
|
29
|
-
}>>;
|
|
27
|
+
declare const newsSchema: Schema<INews, INewsModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, INews>;
|
|
30
28
|
export default newsSchema;
|
|
@@ -24,7 +24,5 @@
|
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
25
|
import { Schema } from 'mongoose';
|
|
26
26
|
import type { INotification, INotificationModel } from '../types';
|
|
27
|
-
declare const notificationSchema: Schema<INotification, INotificationModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, INotification
|
|
28
|
-
_id: import("mongoose").Types.ObjectId;
|
|
29
|
-
}>>;
|
|
27
|
+
declare const notificationSchema: Schema<INotification, INotificationModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, INotification>;
|
|
30
28
|
export default notificationSchema;
|
|
@@ -24,7 +24,5 @@
|
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
25
|
import { Schema } from 'mongoose';
|
|
26
26
|
import type { IOtp, IOtpModel } from '../types';
|
|
27
|
-
declare const otpSchema: Schema<IOtp, IOtpModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IOtp
|
|
28
|
-
_id: import("mongoose").Types.ObjectId;
|
|
29
|
-
}>>;
|
|
27
|
+
declare const otpSchema: Schema<IOtp, IOtpModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IOtp>;
|
|
30
28
|
export default otpSchema;
|
|
@@ -22,9 +22,7 @@
|
|
|
22
22
|
/// <reference types="mongoose/types/validation" />
|
|
23
23
|
/// <reference types="mongoose/types/virtuals" />
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
-
import { Schema
|
|
25
|
+
import { Schema } from 'mongoose';
|
|
26
26
|
import { IPortiaArticle, IPortiaArticleModel } from '../types';
|
|
27
|
-
declare const portiaArticleSchema: Schema<IPortiaArticle, IPortiaArticleModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IPortiaArticle
|
|
28
|
-
_id: Types.ObjectId;
|
|
29
|
-
}>>;
|
|
27
|
+
declare const portiaArticleSchema: Schema<IPortiaArticle, IPortiaArticleModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IPortiaArticle>;
|
|
30
28
|
export default portiaArticleSchema;
|
|
@@ -22,9 +22,7 @@
|
|
|
22
22
|
/// <reference types="mongoose/types/validation" />
|
|
23
23
|
/// <reference types="mongoose/types/virtuals" />
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
-
import { Schema
|
|
25
|
+
import { Schema } from 'mongoose';
|
|
26
26
|
import type { IProblem, IProblemModel } from '../types';
|
|
27
|
-
declare const problemSchema: Schema<IProblem, IProblemModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IProblem
|
|
28
|
-
_id: Types.ObjectId;
|
|
29
|
-
}>>;
|
|
27
|
+
declare const problemSchema: Schema<IProblem, IProblemModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IProblem>;
|
|
30
28
|
export default problemSchema;
|
|
@@ -22,9 +22,7 @@
|
|
|
22
22
|
/// <reference types="mongoose/types/validation" />
|
|
23
23
|
/// <reference types="mongoose/types/virtuals" />
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
-
import { Schema
|
|
25
|
+
import { Schema } from 'mongoose';
|
|
26
26
|
import type { ISearchHistory, ISearchHistoryModel } from '../types';
|
|
27
|
-
declare const searchHistorySchema: Schema<ISearchHistory, ISearchHistoryModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, ISearchHistory
|
|
28
|
-
_id: Types.ObjectId;
|
|
29
|
-
}>>;
|
|
27
|
+
declare const searchHistorySchema: Schema<ISearchHistory, ISearchHistoryModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, ISearchHistory>;
|
|
30
28
|
export default searchHistorySchema;
|
|
@@ -22,9 +22,7 @@
|
|
|
22
22
|
/// <reference types="mongoose/types/validation" />
|
|
23
23
|
/// <reference types="mongoose/types/virtuals" />
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
-
import { Schema
|
|
25
|
+
import { Schema } from 'mongoose';
|
|
26
26
|
import type { ISFCategory, ISFCategoryModel } from '../types';
|
|
27
|
-
declare const sfCategorySchema: Schema<ISFCategory, ISFCategoryModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, ISFCategory
|
|
28
|
-
_id: Types.ObjectId;
|
|
29
|
-
}>>;
|
|
27
|
+
declare const sfCategorySchema: Schema<ISFCategory, ISFCategoryModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, ISFCategory>;
|
|
30
28
|
export default sfCategorySchema;
|
|
@@ -22,9 +22,7 @@
|
|
|
22
22
|
/// <reference types="mongoose/types/validation" />
|
|
23
23
|
/// <reference types="mongoose/types/virtuals" />
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
-
import { Schema
|
|
25
|
+
import { Schema } from 'mongoose';
|
|
26
26
|
import type { ISFSubCategory, ISFSubCategoryModel } from '../types';
|
|
27
|
-
declare const sfSubCategorySchema: Schema<ISFSubCategory, ISFSubCategoryModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, ISFSubCategory
|
|
28
|
-
_id: Types.ObjectId;
|
|
29
|
-
}>>;
|
|
27
|
+
declare const sfSubCategorySchema: Schema<ISFSubCategory, ISFSubCategoryModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, ISFSubCategory>;
|
|
30
28
|
export default sfSubCategorySchema;
|
|
@@ -22,9 +22,7 @@
|
|
|
22
22
|
/// <reference types="mongoose/types/validation" />
|
|
23
23
|
/// <reference types="mongoose/types/virtuals" />
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
-
import { Schema
|
|
25
|
+
import { Schema } from 'mongoose';
|
|
26
26
|
import type { ISFTag, ISFTagModel } from '../types';
|
|
27
|
-
declare const sfTagSchema: Schema<ISFTag, ISFTagModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, ISFTag
|
|
28
|
-
_id: Types.ObjectId;
|
|
29
|
-
}>>;
|
|
27
|
+
declare const sfTagSchema: Schema<ISFTag, ISFTagModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, ISFTag>;
|
|
30
28
|
export default sfTagSchema;
|
|
@@ -24,7 +24,5 @@
|
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
25
|
import { Schema } from 'mongoose';
|
|
26
26
|
import type { ISiteMapCache, ISiteMapCacheModel } from '../types';
|
|
27
|
-
declare const siteMapCacheSchema: Schema<ISiteMapCache, ISiteMapCacheModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, ISiteMapCache
|
|
28
|
-
_id: import("mongoose").Types.ObjectId;
|
|
29
|
-
}>>;
|
|
27
|
+
declare const siteMapCacheSchema: Schema<ISiteMapCache, ISiteMapCacheModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, ISiteMapCache>;
|
|
30
28
|
export default siteMapCacheSchema;
|
|
@@ -22,9 +22,7 @@
|
|
|
22
22
|
/// <reference types="mongoose/types/validation" />
|
|
23
23
|
/// <reference types="mongoose/types/virtuals" />
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
-
import { Schema
|
|
25
|
+
import { Schema } from 'mongoose';
|
|
26
26
|
import type { ISparkUseCase, ISparkUseCaseModel } from '../types';
|
|
27
|
-
declare const sparkUseCaseSchema: Schema<ISparkUseCase, ISparkUseCaseModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, ISparkUseCase
|
|
28
|
-
_id: Types.ObjectId;
|
|
29
|
-
}>>;
|
|
27
|
+
declare const sparkUseCaseSchema: Schema<ISparkUseCase, ISparkUseCaseModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, ISparkUseCase>;
|
|
30
28
|
export default sparkUseCaseSchema;
|
|
@@ -22,9 +22,7 @@
|
|
|
22
22
|
/// <reference types="mongoose/types/validation" />
|
|
23
23
|
/// <reference types="mongoose/types/virtuals" />
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
-
import { Schema
|
|
25
|
+
import { Schema } from 'mongoose';
|
|
26
26
|
import type { ISpark, ISparkModel } from '../types';
|
|
27
|
-
declare const sparkSchema: Schema<ISpark, ISparkModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, ISpark
|
|
28
|
-
_id: Types.ObjectId;
|
|
29
|
-
}>>;
|
|
27
|
+
declare const sparkSchema: Schema<ISpark, ISparkModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, ISpark>;
|
|
30
28
|
export default sparkSchema;
|
|
@@ -22,9 +22,7 @@
|
|
|
22
22
|
/// <reference types="mongoose/types/validation" />
|
|
23
23
|
/// <reference types="mongoose/types/virtuals" />
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
-
import { Schema
|
|
25
|
+
import { Schema } from 'mongoose';
|
|
26
26
|
import type { ISuggest, ISuggestModel } from '../types';
|
|
27
|
-
declare const suggestSchema: Schema<ISuggest, ISuggestModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, ISuggest
|
|
28
|
-
_id: Types.ObjectId;
|
|
29
|
-
}>>;
|
|
27
|
+
declare const suggestSchema: Schema<ISuggest, ISuggestModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, ISuggest>;
|
|
30
28
|
export default suggestSchema;
|
|
@@ -22,9 +22,7 @@
|
|
|
22
22
|
/// <reference types="mongoose/types/validation" />
|
|
23
23
|
/// <reference types="mongoose/types/virtuals" />
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
-
import { Schema
|
|
25
|
+
import { Schema } from 'mongoose';
|
|
26
26
|
import type { ITechnology, ITechnologyModel } from '../types';
|
|
27
|
-
declare const technologySchema: Schema<ITechnology, ITechnologyModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, ITechnology
|
|
28
|
-
_id: Types.ObjectId;
|
|
29
|
-
}>>;
|
|
27
|
+
declare const technologySchema: Schema<ITechnology, ITechnologyModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, ITechnology>;
|
|
30
28
|
export default technologySchema;
|
|
@@ -22,9 +22,7 @@
|
|
|
22
22
|
/// <reference types="mongoose/types/validation" />
|
|
23
23
|
/// <reference types="mongoose/types/virtuals" />
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
-
import { Schema
|
|
25
|
+
import { Schema } from 'mongoose';
|
|
26
26
|
import type { ITheme, IThemeModel } from '../types';
|
|
27
|
-
declare const themeSchema: Schema<ITheme, IThemeModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, ITheme
|
|
28
|
-
_id: Types.ObjectId;
|
|
29
|
-
}>>;
|
|
27
|
+
declare const themeSchema: Schema<ITheme, IThemeModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, ITheme>;
|
|
30
28
|
export default themeSchema;
|
|
@@ -24,7 +24,5 @@
|
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
25
|
import { Schema } from 'mongoose';
|
|
26
26
|
import type { IToken, ITokenModel } from '../types';
|
|
27
|
-
declare const tokenSchema: Schema<IToken, ITokenModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IToken
|
|
28
|
-
_id: import("mongoose").Types.ObjectId;
|
|
29
|
-
}>>;
|
|
27
|
+
declare const tokenSchema: Schema<IToken, ITokenModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IToken>;
|
|
30
28
|
export default tokenSchema;
|
|
@@ -22,9 +22,7 @@
|
|
|
22
22
|
/// <reference types="mongoose/types/validation" />
|
|
23
23
|
/// <reference types="mongoose/types/virtuals" />
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
-
import { Schema
|
|
25
|
+
import { Schema } from 'mongoose';
|
|
26
26
|
import type { IUpdateJob, IUpdateJobModel } from '../types';
|
|
27
|
-
declare const updateJobSchema: Schema<IUpdateJob, IUpdateJobModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IUpdateJob
|
|
28
|
-
_id: Types.ObjectId;
|
|
29
|
-
}>>;
|
|
27
|
+
declare const updateJobSchema: Schema<IUpdateJob, IUpdateJobModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IUpdateJob>;
|
|
30
28
|
export default updateJobSchema;
|
|
@@ -22,9 +22,7 @@
|
|
|
22
22
|
/// <reference types="mongoose/types/validation" />
|
|
23
23
|
/// <reference types="mongoose/types/virtuals" />
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
-
import { Schema
|
|
25
|
+
import { Schema } from 'mongoose';
|
|
26
26
|
import type { IUseCase, IUseCaseModel } from '../types';
|
|
27
|
-
declare const useCaseSchema: Schema<IUseCase, IUseCaseModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IUseCase
|
|
28
|
-
_id: Types.ObjectId;
|
|
29
|
-
}>>;
|
|
27
|
+
declare const useCaseSchema: Schema<IUseCase, IUseCaseModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IUseCase>;
|
|
30
28
|
export default useCaseSchema;
|
|
@@ -22,9 +22,7 @@
|
|
|
22
22
|
/// <reference types="mongoose/types/validation" />
|
|
23
23
|
/// <reference types="mongoose/types/virtuals" />
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
-
import { Schema
|
|
25
|
+
import { Schema } from 'mongoose';
|
|
26
26
|
import type { IUserToken, IUserTokenModel } from '../types';
|
|
27
|
-
declare const userTokenSchema: Schema<IUserToken, IUserTokenModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IUserToken
|
|
28
|
-
_id: Types.ObjectId;
|
|
29
|
-
}>>;
|
|
27
|
+
declare const userTokenSchema: Schema<IUserToken, IUserTokenModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IUserToken>;
|
|
30
28
|
export default userTokenSchema;
|
|
@@ -22,9 +22,7 @@
|
|
|
22
22
|
/// <reference types="mongoose/types/validation" />
|
|
23
23
|
/// <reference types="mongoose/types/virtuals" />
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
-
import { Schema
|
|
25
|
+
import { Schema } from 'mongoose';
|
|
26
26
|
import type { IUserVisit, IUserVisitModel } from '../types';
|
|
27
|
-
declare const userVisitSchema: Schema<IUserVisit, IUserVisitModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IUserVisit
|
|
28
|
-
_id: Types.ObjectId;
|
|
29
|
-
}>>;
|
|
27
|
+
declare const userVisitSchema: Schema<IUserVisit, IUserVisitModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IUserVisit>;
|
|
30
28
|
export default userVisitSchema;
|
|
@@ -22,9 +22,7 @@
|
|
|
22
22
|
/// <reference types="mongoose/types/validation" />
|
|
23
23
|
/// <reference types="mongoose/types/virtuals" />
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
-
import { Schema
|
|
25
|
+
import { Schema } from 'mongoose';
|
|
26
26
|
import type { IUser, IUserModel } from '../types';
|
|
27
|
-
declare const userSchema: Schema<IUser, IUserModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IUser
|
|
28
|
-
_id: Types.ObjectId;
|
|
29
|
-
}>>;
|
|
27
|
+
declare const userSchema: Schema<IUser, IUserModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IUser>;
|
|
30
28
|
export default userSchema;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cool-digital-solutions/interferir-models",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.17",
|
|
4
4
|
"main": "./dist/index.js",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist/**/*"
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"license": "ISC",
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"express-http-context": "^1.2.4",
|
|
20
|
-
"mongoose": "^
|
|
20
|
+
"mongoose": "^6.0.9"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
23
|
"@types/node": "^20.11.6",
|