@managesome/knotr-toolkit 0.8.16 → 0.8.20
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/backend/index.d.ts +2 -2
- package/dist/backend/index.d.ts.map +1 -1
- package/dist/backend/index.js +1 -1
- package/dist/backend/index.js.map +1 -1
- package/dist/backend/worker-queue.d.ts +203 -13
- package/dist/backend/worker-queue.d.ts.map +1 -1
- package/dist/backend/worker-queue.js +67 -12
- package/dist/backend/worker-queue.js.map +1 -1
- package/dist/constants/worker.d.ts +17 -0
- package/dist/constants/worker.d.ts.map +1 -1
- package/dist/constants/worker.js +20 -0
- package/dist/constants/worker.js.map +1 -1
- package/dist/schemas/account.schema.d.ts +66 -66
- package/dist/schemas/chat.schema.d.ts +49 -49
- package/dist/schemas/chat.schema.d.ts.map +1 -1
- package/dist/schemas/collaboration-request.schema.d.ts +84 -84
- package/dist/schemas/collaboration-request.schema.d.ts.map +1 -1
- package/dist/schemas/company-review.schema.d.ts +83 -83
- package/dist/schemas/company-review.schema.d.ts.map +1 -1
- package/dist/schemas/company.schema.d.ts +88 -88
- package/dist/schemas/company.schema.d.ts.map +1 -1
- package/dist/schemas/contract.schema.d.ts +120 -120
- package/dist/schemas/contract.schema.d.ts.map +1 -1
- package/dist/schemas/dispute.schema.d.ts +84 -84
- package/dist/schemas/dispute.schema.d.ts.map +1 -1
- package/dist/schemas/donation.schema.d.ts +49 -49
- package/dist/schemas/donation.schema.d.ts.map +1 -1
- package/dist/schemas/escrow.schema.d.ts +84 -84
- package/dist/schemas/escrow.schema.d.ts.map +1 -1
- package/dist/schemas/interest.schema.d.ts +87 -87
- package/dist/schemas/interest.schema.d.ts.map +1 -1
- package/dist/schemas/match.schema.d.ts +87 -87
- package/dist/schemas/match.schema.d.ts.map +1 -1
- package/dist/schemas/message.schema.d.ts +53 -53
- package/dist/schemas/message.schema.d.ts.map +1 -1
- package/dist/schemas/milestone.schema.d.ts +48 -48
- package/dist/schemas/notification.schema.d.ts +155 -155
- package/dist/schemas/notification.schema.d.ts.map +1 -1
- package/dist/schemas/profile.schema.d.ts +87 -87
- package/dist/schemas/profile.schema.d.ts.map +1 -1
- package/dist/schemas/profit-share-agreement.schema.d.ts +48 -48
- package/dist/schemas/profit-share.schema.d.ts +48 -48
- package/dist/schemas/proposal.schema.d.ts +48 -48
- package/dist/schemas/purchase.schema.d.ts +49 -49
- package/dist/schemas/purchase.schema.d.ts.map +1 -1
- package/dist/schemas/requirement-post.schema.d.ts +84 -84
- package/dist/schemas/requirement-post.schema.d.ts.map +1 -1
- package/dist/schemas/service-listing.schema.d.ts +48 -48
- package/dist/schemas/subscription.schema.d.ts +83 -83
- package/dist/schemas/subscription.schema.d.ts.map +1 -1
- package/dist/schemas/tmc-application.schema.d.ts +48 -48
- package/dist/schemas/tmc-membership.schema.d.ts +48 -48
- package/dist/schemas/trust-badge.schema.d.ts +48 -48
- package/dist/schemas/verification.schema.d.ts +87 -87
- package/dist/schemas/verification.schema.d.ts.map +1 -1
- package/dist/schemas/webhook-event.schema.d.ts +48 -48
- package/dist/types/worker.d.ts +9 -2
- package/dist/types/worker.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -1652,7 +1652,7 @@ export declare const ProfileSchema: Schema<import("mongoose").Document<unknown,
|
|
|
1652
1652
|
id: string;
|
|
1653
1653
|
}> | undefined;
|
|
1654
1654
|
get?: import("mongoose").SchemaDefinitionProperty<{
|
|
1655
|
-
<T extends "preferences" | "photos" | "status" | "candidateName" | "gender" | "dateOfBirth" | "age" | "sect" | "maritalStatus" | "complexion" | "bodyType" | "nationality" | "citizenship" | "profession" | "aboutCandidate" | "aboutFamily" | "partnerExpectations" | "languages" | "bio" | "prayerFrequency" | "hasChildren" | "numberOfChildren" | "willingToRelocate" | "
|
|
1655
|
+
<T extends "preferences" | "photos" | "status" | "candidateName" | "gender" | "dateOfBirth" | "age" | "sect" | "maritalStatus" | "complexion" | "bodyType" | "nationality" | "citizenship" | "profession" | "aboutCandidate" | "aboutFamily" | "partnerExpectations" | "languages" | "bio" | "prayerFrequency" | "hasChildren" | "numberOfChildren" | "willingToRelocate" | "accountId" | "createdAt" | "tenantId" | "flagCount" | "updatedAt" | "_id" | "reviewedAt" | "reviewedBy" | "rejectionReason" | "displayName" | "holdReason" | "holdUntil" | "hijabStatus" | "beardStatus" | "islamicEducation" | "quranMemorization" | "heightCm" | "weightKg" | "disabilities" | "currentLocation" | "relocatePreferences" | "residencyStatus" | "educationLevel" | "educationField" | "institution" | "jobTitle" | "employer" | "annualIncome" | "incomeCurrency" | "incomeVisibility" | "familyType" | "fatherOccupation" | "motherOccupation" | "siblings" | "familyValues" | "familyReligiosity" | "dietaryPreference" | "smoking" | "livesAlone" | "hasOwnAccommodation" | "caste" | "ethnicity" | "hobbies" | "dealBreakers" | "additionalInfo" | "idVerificationId" | "isIdVerified" | "isVerified" | "viewCount" | "interestReceivedCount" | "interestSentCount">(path: T, type?: any, options?: any): (Omit<IProfile, "id"> & {
|
|
1656
1656
|
_id: string;
|
|
1657
1657
|
})[T];
|
|
1658
1658
|
(path: string, type?: any, options?: any): any;
|
|
@@ -1811,7 +1811,7 @@ export declare const ProfileSchema: Schema<import("mongoose").Document<unknown,
|
|
|
1811
1811
|
id: string;
|
|
1812
1812
|
}> | undefined;
|
|
1813
1813
|
invalidate?: import("mongoose").SchemaDefinitionProperty<{
|
|
1814
|
-
<T extends "preferences" | "photos" | "status" | "candidateName" | "gender" | "dateOfBirth" | "age" | "sect" | "maritalStatus" | "complexion" | "bodyType" | "nationality" | "citizenship" | "profession" | "aboutCandidate" | "aboutFamily" | "partnerExpectations" | "languages" | "bio" | "prayerFrequency" | "hasChildren" | "numberOfChildren" | "willingToRelocate" | "
|
|
1814
|
+
<T extends "preferences" | "photos" | "status" | "candidateName" | "gender" | "dateOfBirth" | "age" | "sect" | "maritalStatus" | "complexion" | "bodyType" | "nationality" | "citizenship" | "profession" | "aboutCandidate" | "aboutFamily" | "partnerExpectations" | "languages" | "bio" | "prayerFrequency" | "hasChildren" | "numberOfChildren" | "willingToRelocate" | "accountId" | "createdAt" | "tenantId" | "flagCount" | "updatedAt" | "_id" | "reviewedAt" | "reviewedBy" | "rejectionReason" | "displayName" | "holdReason" | "holdUntil" | "hijabStatus" | "beardStatus" | "islamicEducation" | "quranMemorization" | "heightCm" | "weightKg" | "disabilities" | "currentLocation" | "relocatePreferences" | "residencyStatus" | "educationLevel" | "educationField" | "institution" | "jobTitle" | "employer" | "annualIncome" | "incomeCurrency" | "incomeVisibility" | "familyType" | "fatherOccupation" | "motherOccupation" | "siblings" | "familyValues" | "familyReligiosity" | "dietaryPreference" | "smoking" | "livesAlone" | "hasOwnAccommodation" | "caste" | "ethnicity" | "hobbies" | "dealBreakers" | "additionalInfo" | "idVerificationId" | "isIdVerified" | "isVerified" | "viewCount" | "interestReceivedCount" | "interestSentCount">(path: T, errorMsg: string | NativeError, value?: any, kind?: string): NativeError | null;
|
|
1815
1815
|
(path: string, errorMsg: string | NativeError, value?: any, kind?: string): NativeError | null;
|
|
1816
1816
|
}, import("mongoose").Document<unknown, {}, Omit<IProfile, "id"> & {
|
|
1817
1817
|
_id: string;
|
|
@@ -1845,7 +1845,7 @@ export declare const ProfileSchema: Schema<import("mongoose").Document<unknown,
|
|
|
1845
1845
|
id: string;
|
|
1846
1846
|
}> | undefined;
|
|
1847
1847
|
isDirectModified?: import("mongoose").SchemaDefinitionProperty<{
|
|
1848
|
-
<T extends "preferences" | "photos" | "status" | "candidateName" | "gender" | "dateOfBirth" | "age" | "sect" | "maritalStatus" | "complexion" | "bodyType" | "nationality" | "citizenship" | "profession" | "aboutCandidate" | "aboutFamily" | "partnerExpectations" | "languages" | "bio" | "prayerFrequency" | "hasChildren" | "numberOfChildren" | "willingToRelocate" | "
|
|
1848
|
+
<T extends "preferences" | "photos" | "status" | "candidateName" | "gender" | "dateOfBirth" | "age" | "sect" | "maritalStatus" | "complexion" | "bodyType" | "nationality" | "citizenship" | "profession" | "aboutCandidate" | "aboutFamily" | "partnerExpectations" | "languages" | "bio" | "prayerFrequency" | "hasChildren" | "numberOfChildren" | "willingToRelocate" | "accountId" | "createdAt" | "tenantId" | "flagCount" | "updatedAt" | "_id" | "reviewedAt" | "reviewedBy" | "rejectionReason" | "displayName" | "holdReason" | "holdUntil" | "hijabStatus" | "beardStatus" | "islamicEducation" | "quranMemorization" | "heightCm" | "weightKg" | "disabilities" | "currentLocation" | "relocatePreferences" | "residencyStatus" | "educationLevel" | "educationField" | "institution" | "jobTitle" | "employer" | "annualIncome" | "incomeCurrency" | "incomeVisibility" | "familyType" | "fatherOccupation" | "motherOccupation" | "siblings" | "familyValues" | "familyReligiosity" | "dietaryPreference" | "smoking" | "livesAlone" | "hasOwnAccommodation" | "caste" | "ethnicity" | "hobbies" | "dealBreakers" | "additionalInfo" | "idVerificationId" | "isIdVerified" | "isVerified" | "viewCount" | "interestReceivedCount" | "interestSentCount">(path: T | T[]): boolean;
|
|
1849
1849
|
(path: string | Array<string>): boolean;
|
|
1850
1850
|
}, import("mongoose").Document<unknown, {}, Omit<IProfile, "id"> & {
|
|
1851
1851
|
_id: string;
|
|
@@ -1879,7 +1879,7 @@ export declare const ProfileSchema: Schema<import("mongoose").Document<unknown,
|
|
|
1879
1879
|
id: string;
|
|
1880
1880
|
}> | undefined;
|
|
1881
1881
|
isDirectSelected?: import("mongoose").SchemaDefinitionProperty<{
|
|
1882
|
-
<T extends "preferences" | "photos" | "status" | "candidateName" | "gender" | "dateOfBirth" | "age" | "sect" | "maritalStatus" | "complexion" | "bodyType" | "nationality" | "citizenship" | "profession" | "aboutCandidate" | "aboutFamily" | "partnerExpectations" | "languages" | "bio" | "prayerFrequency" | "hasChildren" | "numberOfChildren" | "willingToRelocate" | "
|
|
1882
|
+
<T extends "preferences" | "photos" | "status" | "candidateName" | "gender" | "dateOfBirth" | "age" | "sect" | "maritalStatus" | "complexion" | "bodyType" | "nationality" | "citizenship" | "profession" | "aboutCandidate" | "aboutFamily" | "partnerExpectations" | "languages" | "bio" | "prayerFrequency" | "hasChildren" | "numberOfChildren" | "willingToRelocate" | "accountId" | "createdAt" | "tenantId" | "flagCount" | "updatedAt" | "_id" | "reviewedAt" | "reviewedBy" | "rejectionReason" | "displayName" | "holdReason" | "holdUntil" | "hijabStatus" | "beardStatus" | "islamicEducation" | "quranMemorization" | "heightCm" | "weightKg" | "disabilities" | "currentLocation" | "relocatePreferences" | "residencyStatus" | "educationLevel" | "educationField" | "institution" | "jobTitle" | "employer" | "annualIncome" | "incomeCurrency" | "incomeVisibility" | "familyType" | "fatherOccupation" | "motherOccupation" | "siblings" | "familyValues" | "familyReligiosity" | "dietaryPreference" | "smoking" | "livesAlone" | "hasOwnAccommodation" | "caste" | "ethnicity" | "hobbies" | "dealBreakers" | "additionalInfo" | "idVerificationId" | "isIdVerified" | "isVerified" | "viewCount" | "interestReceivedCount" | "interestSentCount">(path: T): boolean;
|
|
1883
1883
|
(path: string): boolean;
|
|
1884
1884
|
}, import("mongoose").Document<unknown, {}, Omit<IProfile, "id"> & {
|
|
1885
1885
|
_id: string;
|
|
@@ -1913,7 +1913,7 @@ export declare const ProfileSchema: Schema<import("mongoose").Document<unknown,
|
|
|
1913
1913
|
id: string;
|
|
1914
1914
|
}> | undefined;
|
|
1915
1915
|
isInit?: import("mongoose").SchemaDefinitionProperty<{
|
|
1916
|
-
<T extends "preferences" | "photos" | "status" | "candidateName" | "gender" | "dateOfBirth" | "age" | "sect" | "maritalStatus" | "complexion" | "bodyType" | "nationality" | "citizenship" | "profession" | "aboutCandidate" | "aboutFamily" | "partnerExpectations" | "languages" | "bio" | "prayerFrequency" | "hasChildren" | "numberOfChildren" | "willingToRelocate" | "
|
|
1916
|
+
<T extends "preferences" | "photos" | "status" | "candidateName" | "gender" | "dateOfBirth" | "age" | "sect" | "maritalStatus" | "complexion" | "bodyType" | "nationality" | "citizenship" | "profession" | "aboutCandidate" | "aboutFamily" | "partnerExpectations" | "languages" | "bio" | "prayerFrequency" | "hasChildren" | "numberOfChildren" | "willingToRelocate" | "accountId" | "createdAt" | "tenantId" | "flagCount" | "updatedAt" | "_id" | "reviewedAt" | "reviewedBy" | "rejectionReason" | "displayName" | "holdReason" | "holdUntil" | "hijabStatus" | "beardStatus" | "islamicEducation" | "quranMemorization" | "heightCm" | "weightKg" | "disabilities" | "currentLocation" | "relocatePreferences" | "residencyStatus" | "educationLevel" | "educationField" | "institution" | "jobTitle" | "employer" | "annualIncome" | "incomeCurrency" | "incomeVisibility" | "familyType" | "fatherOccupation" | "motherOccupation" | "siblings" | "familyValues" | "familyReligiosity" | "dietaryPreference" | "smoking" | "livesAlone" | "hasOwnAccommodation" | "caste" | "ethnicity" | "hobbies" | "dealBreakers" | "additionalInfo" | "idVerificationId" | "isIdVerified" | "isVerified" | "viewCount" | "interestReceivedCount" | "interestSentCount">(path: T): boolean;
|
|
1917
1917
|
(path: string): boolean;
|
|
1918
1918
|
}, import("mongoose").Document<unknown, {}, Omit<IProfile, "id"> & {
|
|
1919
1919
|
_id: string;
|
|
@@ -1947,7 +1947,7 @@ export declare const ProfileSchema: Schema<import("mongoose").Document<unknown,
|
|
|
1947
1947
|
id: string;
|
|
1948
1948
|
}> | undefined;
|
|
1949
1949
|
isModified?: import("mongoose").SchemaDefinitionProperty<{
|
|
1950
|
-
<T extends "preferences" | "photos" | "status" | "candidateName" | "gender" | "dateOfBirth" | "age" | "sect" | "maritalStatus" | "complexion" | "bodyType" | "nationality" | "citizenship" | "profession" | "aboutCandidate" | "aboutFamily" | "partnerExpectations" | "languages" | "bio" | "prayerFrequency" | "hasChildren" | "numberOfChildren" | "willingToRelocate" | "
|
|
1950
|
+
<T extends "preferences" | "photos" | "status" | "candidateName" | "gender" | "dateOfBirth" | "age" | "sect" | "maritalStatus" | "complexion" | "bodyType" | "nationality" | "citizenship" | "profession" | "aboutCandidate" | "aboutFamily" | "partnerExpectations" | "languages" | "bio" | "prayerFrequency" | "hasChildren" | "numberOfChildren" | "willingToRelocate" | "accountId" | "createdAt" | "tenantId" | "flagCount" | "updatedAt" | "_id" | "reviewedAt" | "reviewedBy" | "rejectionReason" | "displayName" | "holdReason" | "holdUntil" | "hijabStatus" | "beardStatus" | "islamicEducation" | "quranMemorization" | "heightCm" | "weightKg" | "disabilities" | "currentLocation" | "relocatePreferences" | "residencyStatus" | "educationLevel" | "educationField" | "institution" | "jobTitle" | "employer" | "annualIncome" | "incomeCurrency" | "incomeVisibility" | "familyType" | "fatherOccupation" | "motherOccupation" | "siblings" | "familyValues" | "familyReligiosity" | "dietaryPreference" | "smoking" | "livesAlone" | "hasOwnAccommodation" | "caste" | "ethnicity" | "hobbies" | "dealBreakers" | "additionalInfo" | "idVerificationId" | "isIdVerified" | "isVerified" | "viewCount" | "interestReceivedCount" | "interestSentCount">(path?: T | T[] | undefined, options?: {
|
|
1951
1951
|
ignoreAtomics?: boolean;
|
|
1952
1952
|
} | null): boolean;
|
|
1953
1953
|
(path?: string | Array<string>, options?: {
|
|
@@ -2016,7 +2016,7 @@ export declare const ProfileSchema: Schema<import("mongoose").Document<unknown,
|
|
|
2016
2016
|
id: string;
|
|
2017
2017
|
}> | undefined;
|
|
2018
2018
|
isSelected?: import("mongoose").SchemaDefinitionProperty<{
|
|
2019
|
-
<T extends "preferences" | "photos" | "status" | "candidateName" | "gender" | "dateOfBirth" | "age" | "sect" | "maritalStatus" | "complexion" | "bodyType" | "nationality" | "citizenship" | "profession" | "aboutCandidate" | "aboutFamily" | "partnerExpectations" | "languages" | "bio" | "prayerFrequency" | "hasChildren" | "numberOfChildren" | "willingToRelocate" | "
|
|
2019
|
+
<T extends "preferences" | "photos" | "status" | "candidateName" | "gender" | "dateOfBirth" | "age" | "sect" | "maritalStatus" | "complexion" | "bodyType" | "nationality" | "citizenship" | "profession" | "aboutCandidate" | "aboutFamily" | "partnerExpectations" | "languages" | "bio" | "prayerFrequency" | "hasChildren" | "numberOfChildren" | "willingToRelocate" | "accountId" | "createdAt" | "tenantId" | "flagCount" | "updatedAt" | "_id" | "reviewedAt" | "reviewedBy" | "rejectionReason" | "displayName" | "holdReason" | "holdUntil" | "hijabStatus" | "beardStatus" | "islamicEducation" | "quranMemorization" | "heightCm" | "weightKg" | "disabilities" | "currentLocation" | "relocatePreferences" | "residencyStatus" | "educationLevel" | "educationField" | "institution" | "jobTitle" | "employer" | "annualIncome" | "incomeCurrency" | "incomeVisibility" | "familyType" | "fatherOccupation" | "motherOccupation" | "siblings" | "familyValues" | "familyReligiosity" | "dietaryPreference" | "smoking" | "livesAlone" | "hasOwnAccommodation" | "caste" | "ethnicity" | "hobbies" | "dealBreakers" | "additionalInfo" | "idVerificationId" | "isIdVerified" | "isVerified" | "viewCount" | "interestReceivedCount" | "interestSentCount">(path: T): boolean;
|
|
2020
2020
|
(path: string): boolean;
|
|
2021
2021
|
}, import("mongoose").Document<unknown, {}, Omit<IProfile, "id"> & {
|
|
2022
2022
|
_id: string;
|
|
@@ -2050,7 +2050,7 @@ export declare const ProfileSchema: Schema<import("mongoose").Document<unknown,
|
|
|
2050
2050
|
id: string;
|
|
2051
2051
|
}> | undefined;
|
|
2052
2052
|
markModified?: import("mongoose").SchemaDefinitionProperty<{
|
|
2053
|
-
<T extends "preferences" | "photos" | "status" | "candidateName" | "gender" | "dateOfBirth" | "age" | "sect" | "maritalStatus" | "complexion" | "bodyType" | "nationality" | "citizenship" | "profession" | "aboutCandidate" | "aboutFamily" | "partnerExpectations" | "languages" | "bio" | "prayerFrequency" | "hasChildren" | "numberOfChildren" | "willingToRelocate" | "
|
|
2053
|
+
<T extends "preferences" | "photos" | "status" | "candidateName" | "gender" | "dateOfBirth" | "age" | "sect" | "maritalStatus" | "complexion" | "bodyType" | "nationality" | "citizenship" | "profession" | "aboutCandidate" | "aboutFamily" | "partnerExpectations" | "languages" | "bio" | "prayerFrequency" | "hasChildren" | "numberOfChildren" | "willingToRelocate" | "accountId" | "createdAt" | "tenantId" | "flagCount" | "updatedAt" | "_id" | "reviewedAt" | "reviewedBy" | "rejectionReason" | "displayName" | "holdReason" | "holdUntil" | "hijabStatus" | "beardStatus" | "islamicEducation" | "quranMemorization" | "heightCm" | "weightKg" | "disabilities" | "currentLocation" | "relocatePreferences" | "residencyStatus" | "educationLevel" | "educationField" | "institution" | "jobTitle" | "employer" | "annualIncome" | "incomeCurrency" | "incomeVisibility" | "familyType" | "fatherOccupation" | "motherOccupation" | "siblings" | "familyValues" | "familyReligiosity" | "dietaryPreference" | "smoking" | "livesAlone" | "hasOwnAccommodation" | "caste" | "ethnicity" | "hobbies" | "dealBreakers" | "additionalInfo" | "idVerificationId" | "isIdVerified" | "isVerified" | "viewCount" | "interestReceivedCount" | "interestSentCount">(path: T, scope?: any): void;
|
|
2054
2054
|
(path: string, scope?: any): void;
|
|
2055
2055
|
}, import("mongoose").Document<unknown, {}, Omit<IProfile, "id"> & {
|
|
2056
2056
|
_id: string;
|
|
@@ -2489,7 +2489,7 @@ export declare const ProfileSchema: Schema<import("mongoose").Document<unknown,
|
|
|
2489
2489
|
id: string;
|
|
2490
2490
|
}> | undefined;
|
|
2491
2491
|
set?: import("mongoose").SchemaDefinitionProperty<{
|
|
2492
|
-
<T extends "preferences" | "photos" | "status" | "candidateName" | "gender" | "dateOfBirth" | "age" | "sect" | "maritalStatus" | "complexion" | "bodyType" | "nationality" | "citizenship" | "profession" | "aboutCandidate" | "aboutFamily" | "partnerExpectations" | "languages" | "bio" | "prayerFrequency" | "hasChildren" | "numberOfChildren" | "willingToRelocate" | "
|
|
2492
|
+
<T extends "preferences" | "photos" | "status" | "candidateName" | "gender" | "dateOfBirth" | "age" | "sect" | "maritalStatus" | "complexion" | "bodyType" | "nationality" | "citizenship" | "profession" | "aboutCandidate" | "aboutFamily" | "partnerExpectations" | "languages" | "bio" | "prayerFrequency" | "hasChildren" | "numberOfChildren" | "willingToRelocate" | "accountId" | "createdAt" | "tenantId" | "flagCount" | "updatedAt" | "_id" | "reviewedAt" | "reviewedBy" | "rejectionReason" | "displayName" | "holdReason" | "holdUntil" | "hijabStatus" | "beardStatus" | "islamicEducation" | "quranMemorization" | "heightCm" | "weightKg" | "disabilities" | "currentLocation" | "relocatePreferences" | "residencyStatus" | "educationLevel" | "educationField" | "institution" | "jobTitle" | "employer" | "annualIncome" | "incomeCurrency" | "incomeVisibility" | "familyType" | "fatherOccupation" | "motherOccupation" | "siblings" | "familyValues" | "familyReligiosity" | "dietaryPreference" | "smoking" | "livesAlone" | "hasOwnAccommodation" | "caste" | "ethnicity" | "hobbies" | "dealBreakers" | "additionalInfo" | "idVerificationId" | "isIdVerified" | "isVerified" | "viewCount" | "interestReceivedCount" | "interestSentCount">(path: T, val: (Omit<IProfile, "id"> & {
|
|
2493
2493
|
_id: string;
|
|
2494
2494
|
})[T], type: any, options?: import("mongoose").DocumentSetOptions): import("mongoose").Document<unknown, {}, Omit<IProfile, "id"> & {
|
|
2495
2495
|
_id: string;
|
|
@@ -2639,14 +2639,14 @@ export declare const ProfileSchema: Schema<import("mongoose").Document<unknown,
|
|
|
2639
2639
|
hasChildren: boolean;
|
|
2640
2640
|
numberOfChildren?: number | undefined;
|
|
2641
2641
|
willingToRelocate: boolean;
|
|
2642
|
+
accountId: string;
|
|
2643
|
+
createdAt: Date;
|
|
2642
2644
|
tenantId?: string | undefined;
|
|
2643
2645
|
flagCount: number;
|
|
2644
|
-
createdAt: Date;
|
|
2645
2646
|
updatedAt: Date;
|
|
2646
2647
|
_id: string;
|
|
2647
2648
|
reviewedAt?: Date | undefined;
|
|
2648
2649
|
reviewedBy?: string | undefined;
|
|
2649
|
-
accountId: string;
|
|
2650
2650
|
rejectionReason?: string | undefined;
|
|
2651
2651
|
displayName?: string | undefined;
|
|
2652
2652
|
holdReason?: import("../index.js").ProfileHoldReason | undefined;
|
|
@@ -2770,13 +2770,13 @@ export declare const ProfileSchema: Schema<import("mongoose").Document<unknown,
|
|
|
2770
2770
|
hasChildren: boolean;
|
|
2771
2771
|
numberOfChildren?: number | undefined;
|
|
2772
2772
|
willingToRelocate: boolean;
|
|
2773
|
+
accountId: string;
|
|
2774
|
+
createdAt: Date;
|
|
2773
2775
|
tenantId?: string | undefined;
|
|
2774
2776
|
flagCount: number;
|
|
2775
|
-
createdAt: Date;
|
|
2776
2777
|
updatedAt: Date;
|
|
2777
2778
|
reviewedAt?: Date | undefined;
|
|
2778
2779
|
reviewedBy?: string | undefined;
|
|
2779
|
-
accountId: string;
|
|
2780
2780
|
rejectionReason?: string | undefined;
|
|
2781
2781
|
displayName?: string | undefined;
|
|
2782
2782
|
holdReason?: import("../index.js").ProfileHoldReason | undefined;
|
|
@@ -2921,14 +2921,14 @@ export declare const ProfileSchema: Schema<import("mongoose").Document<unknown,
|
|
|
2921
2921
|
hasChildren: boolean;
|
|
2922
2922
|
numberOfChildren?: number | undefined;
|
|
2923
2923
|
willingToRelocate: boolean;
|
|
2924
|
+
accountId: string;
|
|
2925
|
+
createdAt: Date;
|
|
2924
2926
|
tenantId?: string | undefined;
|
|
2925
2927
|
flagCount: number;
|
|
2926
|
-
createdAt: Date;
|
|
2927
2928
|
updatedAt: Date;
|
|
2928
2929
|
_id: string;
|
|
2929
2930
|
reviewedAt?: Date | undefined;
|
|
2930
2931
|
reviewedBy?: string | undefined;
|
|
2931
|
-
accountId: string;
|
|
2932
2932
|
rejectionReason?: string | undefined;
|
|
2933
2933
|
displayName?: string | undefined;
|
|
2934
2934
|
holdReason?: import("../index.js").ProfileHoldReason | undefined;
|
|
@@ -3052,13 +3052,13 @@ export declare const ProfileSchema: Schema<import("mongoose").Document<unknown,
|
|
|
3052
3052
|
hasChildren: boolean;
|
|
3053
3053
|
numberOfChildren?: number | undefined;
|
|
3054
3054
|
willingToRelocate: boolean;
|
|
3055
|
+
accountId: string;
|
|
3056
|
+
createdAt: Date;
|
|
3055
3057
|
tenantId?: string | undefined;
|
|
3056
3058
|
flagCount: number;
|
|
3057
|
-
createdAt: Date;
|
|
3058
3059
|
updatedAt: Date;
|
|
3059
3060
|
reviewedAt?: Date | undefined;
|
|
3060
3061
|
reviewedBy?: string | undefined;
|
|
3061
|
-
accountId: string;
|
|
3062
3062
|
rejectionReason?: string | undefined;
|
|
3063
3063
|
displayName?: string | undefined;
|
|
3064
3064
|
holdReason?: import("../index.js").ProfileHoldReason | undefined;
|
|
@@ -3203,14 +3203,14 @@ export declare const ProfileSchema: Schema<import("mongoose").Document<unknown,
|
|
|
3203
3203
|
hasChildren: boolean;
|
|
3204
3204
|
numberOfChildren?: number | undefined;
|
|
3205
3205
|
willingToRelocate: boolean;
|
|
3206
|
+
accountId: string;
|
|
3207
|
+
createdAt: Date;
|
|
3206
3208
|
tenantId?: string | undefined;
|
|
3207
3209
|
flagCount: number;
|
|
3208
|
-
createdAt: Date;
|
|
3209
3210
|
updatedAt: Date;
|
|
3210
3211
|
_id: string;
|
|
3211
3212
|
reviewedAt?: Date | undefined;
|
|
3212
3213
|
reviewedBy?: string | undefined;
|
|
3213
|
-
accountId: string;
|
|
3214
3214
|
rejectionReason?: string | undefined;
|
|
3215
3215
|
displayName?: string | undefined;
|
|
3216
3216
|
holdReason?: import("../index.js").ProfileHoldReason | undefined;
|
|
@@ -3334,13 +3334,13 @@ export declare const ProfileSchema: Schema<import("mongoose").Document<unknown,
|
|
|
3334
3334
|
hasChildren: boolean;
|
|
3335
3335
|
numberOfChildren?: number | undefined;
|
|
3336
3336
|
willingToRelocate: boolean;
|
|
3337
|
+
accountId: string;
|
|
3338
|
+
createdAt: Date;
|
|
3337
3339
|
tenantId?: string | undefined;
|
|
3338
3340
|
flagCount: number;
|
|
3339
|
-
createdAt: Date;
|
|
3340
3341
|
updatedAt: Date;
|
|
3341
3342
|
reviewedAt?: Date | undefined;
|
|
3342
3343
|
reviewedBy?: string | undefined;
|
|
3343
|
-
accountId: string;
|
|
3344
3344
|
rejectionReason?: string | undefined;
|
|
3345
3345
|
displayName?: string | undefined;
|
|
3346
3346
|
holdReason?: import("../index.js").ProfileHoldReason | undefined;
|
|
@@ -3485,14 +3485,14 @@ export declare const ProfileSchema: Schema<import("mongoose").Document<unknown,
|
|
|
3485
3485
|
hasChildren: boolean;
|
|
3486
3486
|
numberOfChildren?: number | undefined;
|
|
3487
3487
|
willingToRelocate: boolean;
|
|
3488
|
+
accountId: string;
|
|
3489
|
+
createdAt: Date;
|
|
3488
3490
|
tenantId?: string | undefined;
|
|
3489
3491
|
flagCount: number;
|
|
3490
|
-
createdAt: Date;
|
|
3491
3492
|
updatedAt: Date;
|
|
3492
3493
|
_id: string;
|
|
3493
3494
|
reviewedAt?: Date | undefined;
|
|
3494
3495
|
reviewedBy?: string | undefined;
|
|
3495
|
-
accountId: string;
|
|
3496
3496
|
rejectionReason?: string | undefined;
|
|
3497
3497
|
displayName?: string | undefined;
|
|
3498
3498
|
holdReason?: import("../index.js").ProfileHoldReason | undefined;
|
|
@@ -3616,13 +3616,13 @@ export declare const ProfileSchema: Schema<import("mongoose").Document<unknown,
|
|
|
3616
3616
|
hasChildren: boolean;
|
|
3617
3617
|
numberOfChildren?: number | undefined;
|
|
3618
3618
|
willingToRelocate: boolean;
|
|
3619
|
+
accountId: string;
|
|
3620
|
+
createdAt: Date;
|
|
3619
3621
|
tenantId?: string | undefined;
|
|
3620
3622
|
flagCount: number;
|
|
3621
|
-
createdAt: Date;
|
|
3622
3623
|
updatedAt: Date;
|
|
3623
3624
|
reviewedAt?: Date | undefined;
|
|
3624
3625
|
reviewedBy?: string | undefined;
|
|
3625
|
-
accountId: string;
|
|
3626
3626
|
rejectionReason?: string | undefined;
|
|
3627
3627
|
displayName?: string | undefined;
|
|
3628
3628
|
holdReason?: import("../index.js").ProfileHoldReason | undefined;
|
|
@@ -3766,13 +3766,13 @@ export declare const ProfileSchema: Schema<import("mongoose").Document<unknown,
|
|
|
3766
3766
|
hasChildren: boolean;
|
|
3767
3767
|
numberOfChildren?: number | undefined;
|
|
3768
3768
|
willingToRelocate: boolean;
|
|
3769
|
+
accountId: string;
|
|
3770
|
+
createdAt: Date;
|
|
3769
3771
|
tenantId?: string | undefined;
|
|
3770
3772
|
flagCount: number;
|
|
3771
|
-
createdAt: Date;
|
|
3772
3773
|
updatedAt: Date;
|
|
3773
3774
|
reviewedAt?: Date | undefined;
|
|
3774
3775
|
reviewedBy?: string | undefined;
|
|
3775
|
-
accountId: string;
|
|
3776
3776
|
rejectionReason?: string | undefined;
|
|
3777
3777
|
displayName?: string | undefined;
|
|
3778
3778
|
holdReason?: import("../index.js").ProfileHoldReason | undefined;
|
|
@@ -3896,13 +3896,13 @@ export declare const ProfileSchema: Schema<import("mongoose").Document<unknown,
|
|
|
3896
3896
|
hasChildren: boolean;
|
|
3897
3897
|
numberOfChildren?: number | undefined;
|
|
3898
3898
|
willingToRelocate: boolean;
|
|
3899
|
+
accountId: string;
|
|
3900
|
+
createdAt: Date;
|
|
3899
3901
|
tenantId?: string | undefined;
|
|
3900
3902
|
flagCount: number;
|
|
3901
|
-
createdAt: Date;
|
|
3902
3903
|
updatedAt: Date;
|
|
3903
3904
|
reviewedAt?: Date | undefined;
|
|
3904
3905
|
reviewedBy?: string | undefined;
|
|
3905
|
-
accountId: string;
|
|
3906
3906
|
rejectionReason?: string | undefined;
|
|
3907
3907
|
displayName?: string | undefined;
|
|
3908
3908
|
holdReason?: import("../index.js").ProfileHoldReason | undefined;
|
|
@@ -4026,13 +4026,13 @@ export declare const ProfileSchema: Schema<import("mongoose").Document<unknown,
|
|
|
4026
4026
|
hasChildren: boolean;
|
|
4027
4027
|
numberOfChildren?: number | undefined;
|
|
4028
4028
|
willingToRelocate: boolean;
|
|
4029
|
+
accountId: string;
|
|
4030
|
+
createdAt: Date;
|
|
4029
4031
|
tenantId?: string | undefined;
|
|
4030
4032
|
flagCount: number;
|
|
4031
|
-
createdAt: Date;
|
|
4032
4033
|
updatedAt: Date;
|
|
4033
4034
|
reviewedAt?: Date | undefined;
|
|
4034
4035
|
reviewedBy?: string | undefined;
|
|
4035
|
-
accountId: string;
|
|
4036
4036
|
rejectionReason?: string | undefined;
|
|
4037
4037
|
displayName?: string | undefined;
|
|
4038
4038
|
holdReason?: import("../index.js").ProfileHoldReason | undefined;
|
|
@@ -4155,13 +4155,13 @@ export declare const ProfileSchema: Schema<import("mongoose").Document<unknown,
|
|
|
4155
4155
|
hasChildren: boolean;
|
|
4156
4156
|
numberOfChildren?: number | undefined;
|
|
4157
4157
|
willingToRelocate: boolean;
|
|
4158
|
+
accountId: string;
|
|
4159
|
+
createdAt: Date;
|
|
4158
4160
|
tenantId?: string | undefined;
|
|
4159
4161
|
flagCount: number;
|
|
4160
|
-
createdAt: Date;
|
|
4161
4162
|
updatedAt: Date;
|
|
4162
4163
|
reviewedAt?: Date | undefined;
|
|
4163
4164
|
reviewedBy?: string | undefined;
|
|
4164
|
-
accountId: string;
|
|
4165
4165
|
rejectionReason?: string | undefined;
|
|
4166
4166
|
displayName?: string | undefined;
|
|
4167
4167
|
holdReason?: import("../index.js").ProfileHoldReason | undefined;
|
|
@@ -4302,14 +4302,14 @@ export declare const ProfileSchema: Schema<import("mongoose").Document<unknown,
|
|
|
4302
4302
|
hasChildren: boolean;
|
|
4303
4303
|
numberOfChildren?: number | undefined;
|
|
4304
4304
|
willingToRelocate: boolean;
|
|
4305
|
+
accountId: string;
|
|
4306
|
+
createdAt: Date;
|
|
4305
4307
|
tenantId?: string | undefined;
|
|
4306
4308
|
flagCount: number;
|
|
4307
|
-
createdAt: Date;
|
|
4308
4309
|
updatedAt: Date;
|
|
4309
4310
|
_id: string;
|
|
4310
4311
|
reviewedAt?: Date | undefined;
|
|
4311
4312
|
reviewedBy?: string | undefined;
|
|
4312
|
-
accountId: string;
|
|
4313
4313
|
rejectionReason?: string | undefined;
|
|
4314
4314
|
displayName?: string | undefined;
|
|
4315
4315
|
holdReason?: import("../index.js").ProfileHoldReason | undefined;
|
|
@@ -4434,14 +4434,14 @@ export declare const ProfileSchema: Schema<import("mongoose").Document<unknown,
|
|
|
4434
4434
|
hasChildren: boolean;
|
|
4435
4435
|
numberOfChildren?: number | undefined;
|
|
4436
4436
|
willingToRelocate: boolean;
|
|
4437
|
+
accountId: string;
|
|
4438
|
+
createdAt: Date;
|
|
4437
4439
|
tenantId?: string | undefined;
|
|
4438
4440
|
flagCount: number;
|
|
4439
|
-
createdAt: Date;
|
|
4440
4441
|
updatedAt: Date;
|
|
4441
4442
|
_id: string;
|
|
4442
4443
|
reviewedAt?: Date | undefined;
|
|
4443
4444
|
reviewedBy?: string | undefined;
|
|
4444
|
-
accountId: string;
|
|
4445
4445
|
rejectionReason?: string | undefined;
|
|
4446
4446
|
displayName?: string | undefined;
|
|
4447
4447
|
holdReason?: import("../index.js").ProfileHoldReason | undefined;
|
|
@@ -4574,14 +4574,14 @@ export declare const ProfileSchema: Schema<import("mongoose").Document<unknown,
|
|
|
4574
4574
|
hasChildren: boolean;
|
|
4575
4575
|
numberOfChildren?: number | undefined;
|
|
4576
4576
|
willingToRelocate: boolean;
|
|
4577
|
+
accountId: string;
|
|
4578
|
+
createdAt: Date;
|
|
4577
4579
|
tenantId?: string | undefined;
|
|
4578
4580
|
flagCount: number;
|
|
4579
|
-
createdAt: Date;
|
|
4580
4581
|
updatedAt: Date;
|
|
4581
4582
|
_id: string;
|
|
4582
4583
|
reviewedAt?: Date | undefined;
|
|
4583
4584
|
reviewedBy?: string | undefined;
|
|
4584
|
-
accountId: string;
|
|
4585
4585
|
rejectionReason?: string | undefined;
|
|
4586
4586
|
displayName?: string | undefined;
|
|
4587
4587
|
holdReason?: import("../index.js").ProfileHoldReason | undefined;
|
|
@@ -4713,14 +4713,14 @@ export declare const ProfileSchema: Schema<import("mongoose").Document<unknown,
|
|
|
4713
4713
|
hasChildren: boolean;
|
|
4714
4714
|
numberOfChildren?: number | undefined;
|
|
4715
4715
|
willingToRelocate: boolean;
|
|
4716
|
+
accountId: string;
|
|
4717
|
+
createdAt: Date;
|
|
4716
4718
|
tenantId?: string | undefined;
|
|
4717
4719
|
flagCount: number;
|
|
4718
|
-
createdAt: Date;
|
|
4719
4720
|
updatedAt: Date;
|
|
4720
4721
|
_id: string;
|
|
4721
4722
|
reviewedAt?: Date | undefined;
|
|
4722
4723
|
reviewedBy?: string | undefined;
|
|
4723
|
-
accountId: string;
|
|
4724
4724
|
rejectionReason?: string | undefined;
|
|
4725
4725
|
displayName?: string | undefined;
|
|
4726
4726
|
holdReason?: import("../index.js").ProfileHoldReason | undefined;
|
|
@@ -4843,14 +4843,14 @@ export declare const ProfileSchema: Schema<import("mongoose").Document<unknown,
|
|
|
4843
4843
|
hasChildren: boolean;
|
|
4844
4844
|
numberOfChildren?: number | undefined;
|
|
4845
4845
|
willingToRelocate: boolean;
|
|
4846
|
+
accountId: string;
|
|
4847
|
+
createdAt: Date;
|
|
4846
4848
|
tenantId?: string | undefined;
|
|
4847
4849
|
flagCount: number;
|
|
4848
|
-
createdAt: Date;
|
|
4849
4850
|
updatedAt: Date;
|
|
4850
4851
|
_id: string;
|
|
4851
4852
|
reviewedAt?: Date | undefined;
|
|
4852
4853
|
reviewedBy?: string | undefined;
|
|
4853
|
-
accountId: string;
|
|
4854
4854
|
rejectionReason?: string | undefined;
|
|
4855
4855
|
displayName?: string | undefined;
|
|
4856
4856
|
holdReason?: import("../index.js").ProfileHoldReason | undefined;
|
|
@@ -5039,14 +5039,14 @@ export declare const ProfileSchema: Schema<import("mongoose").Document<unknown,
|
|
|
5039
5039
|
hasChildren: boolean;
|
|
5040
5040
|
numberOfChildren?: number | undefined;
|
|
5041
5041
|
willingToRelocate: boolean;
|
|
5042
|
+
accountId: string;
|
|
5043
|
+
createdAt: Date;
|
|
5042
5044
|
tenantId?: string | undefined;
|
|
5043
5045
|
flagCount: number;
|
|
5044
|
-
createdAt: Date;
|
|
5045
5046
|
updatedAt: Date;
|
|
5046
5047
|
_id: string;
|
|
5047
5048
|
reviewedAt?: Date | undefined;
|
|
5048
5049
|
reviewedBy?: string | undefined;
|
|
5049
|
-
accountId: string;
|
|
5050
5050
|
rejectionReason?: string | undefined;
|
|
5051
5051
|
displayName?: string | undefined;
|
|
5052
5052
|
holdReason?: import("../index.js").ProfileHoldReason | undefined;
|
|
@@ -5170,13 +5170,13 @@ export declare const ProfileSchema: Schema<import("mongoose").Document<unknown,
|
|
|
5170
5170
|
hasChildren: boolean;
|
|
5171
5171
|
numberOfChildren?: number | undefined;
|
|
5172
5172
|
willingToRelocate: boolean;
|
|
5173
|
+
accountId: string;
|
|
5174
|
+
createdAt: Date;
|
|
5173
5175
|
tenantId?: string | undefined;
|
|
5174
5176
|
flagCount: number;
|
|
5175
|
-
createdAt: Date;
|
|
5176
5177
|
updatedAt: Date;
|
|
5177
5178
|
reviewedAt?: Date | undefined;
|
|
5178
5179
|
reviewedBy?: string | undefined;
|
|
5179
|
-
accountId: string;
|
|
5180
5180
|
rejectionReason?: string | undefined;
|
|
5181
5181
|
displayName?: string | undefined;
|
|
5182
5182
|
holdReason?: import("../index.js").ProfileHoldReason | undefined;
|
|
@@ -5321,14 +5321,14 @@ export declare const ProfileSchema: Schema<import("mongoose").Document<unknown,
|
|
|
5321
5321
|
hasChildren: boolean;
|
|
5322
5322
|
numberOfChildren?: number | undefined;
|
|
5323
5323
|
willingToRelocate: boolean;
|
|
5324
|
+
accountId: string;
|
|
5325
|
+
createdAt: Date;
|
|
5324
5326
|
tenantId?: string | undefined;
|
|
5325
5327
|
flagCount: number;
|
|
5326
|
-
createdAt: Date;
|
|
5327
5328
|
updatedAt: Date;
|
|
5328
5329
|
_id: string;
|
|
5329
5330
|
reviewedAt?: Date | undefined;
|
|
5330
5331
|
reviewedBy?: string | undefined;
|
|
5331
|
-
accountId: string;
|
|
5332
5332
|
rejectionReason?: string | undefined;
|
|
5333
5333
|
displayName?: string | undefined;
|
|
5334
5334
|
holdReason?: import("../index.js").ProfileHoldReason | undefined;
|
|
@@ -5452,13 +5452,13 @@ export declare const ProfileSchema: Schema<import("mongoose").Document<unknown,
|
|
|
5452
5452
|
hasChildren: boolean;
|
|
5453
5453
|
numberOfChildren?: number | undefined;
|
|
5454
5454
|
willingToRelocate: boolean;
|
|
5455
|
+
accountId: string;
|
|
5456
|
+
createdAt: Date;
|
|
5455
5457
|
tenantId?: string | undefined;
|
|
5456
5458
|
flagCount: number;
|
|
5457
|
-
createdAt: Date;
|
|
5458
5459
|
updatedAt: Date;
|
|
5459
5460
|
reviewedAt?: Date | undefined;
|
|
5460
5461
|
reviewedBy?: string | undefined;
|
|
5461
|
-
accountId: string;
|
|
5462
5462
|
rejectionReason?: string | undefined;
|
|
5463
5463
|
displayName?: string | undefined;
|
|
5464
5464
|
holdReason?: import("../index.js").ProfileHoldReason | undefined;
|
|
@@ -5603,14 +5603,14 @@ export declare const ProfileSchema: Schema<import("mongoose").Document<unknown,
|
|
|
5603
5603
|
hasChildren: boolean;
|
|
5604
5604
|
numberOfChildren?: number | undefined;
|
|
5605
5605
|
willingToRelocate: boolean;
|
|
5606
|
+
accountId: string;
|
|
5607
|
+
createdAt: Date;
|
|
5606
5608
|
tenantId?: string | undefined;
|
|
5607
5609
|
flagCount: number;
|
|
5608
|
-
createdAt: Date;
|
|
5609
5610
|
updatedAt: Date;
|
|
5610
5611
|
_id: string;
|
|
5611
5612
|
reviewedAt?: Date | undefined;
|
|
5612
5613
|
reviewedBy?: string | undefined;
|
|
5613
|
-
accountId: string;
|
|
5614
5614
|
rejectionReason?: string | undefined;
|
|
5615
5615
|
displayName?: string | undefined;
|
|
5616
5616
|
holdReason?: import("../index.js").ProfileHoldReason | undefined;
|
|
@@ -5734,13 +5734,13 @@ export declare const ProfileSchema: Schema<import("mongoose").Document<unknown,
|
|
|
5734
5734
|
hasChildren: boolean;
|
|
5735
5735
|
numberOfChildren?: number | undefined;
|
|
5736
5736
|
willingToRelocate: boolean;
|
|
5737
|
+
accountId: string;
|
|
5738
|
+
createdAt: Date;
|
|
5737
5739
|
tenantId?: string | undefined;
|
|
5738
5740
|
flagCount: number;
|
|
5739
|
-
createdAt: Date;
|
|
5740
5741
|
updatedAt: Date;
|
|
5741
5742
|
reviewedAt?: Date | undefined;
|
|
5742
5743
|
reviewedBy?: string | undefined;
|
|
5743
|
-
accountId: string;
|
|
5744
5744
|
rejectionReason?: string | undefined;
|
|
5745
5745
|
displayName?: string | undefined;
|
|
5746
5746
|
holdReason?: import("../index.js").ProfileHoldReason | undefined;
|
|
@@ -5885,14 +5885,14 @@ export declare const ProfileSchema: Schema<import("mongoose").Document<unknown,
|
|
|
5885
5885
|
hasChildren: boolean;
|
|
5886
5886
|
numberOfChildren?: number | undefined;
|
|
5887
5887
|
willingToRelocate: boolean;
|
|
5888
|
+
accountId: string;
|
|
5889
|
+
createdAt: Date;
|
|
5888
5890
|
tenantId?: string | undefined;
|
|
5889
5891
|
flagCount: number;
|
|
5890
|
-
createdAt: Date;
|
|
5891
5892
|
updatedAt: Date;
|
|
5892
5893
|
_id: string;
|
|
5893
5894
|
reviewedAt?: Date | undefined;
|
|
5894
5895
|
reviewedBy?: string | undefined;
|
|
5895
|
-
accountId: string;
|
|
5896
5896
|
rejectionReason?: string | undefined;
|
|
5897
5897
|
displayName?: string | undefined;
|
|
5898
5898
|
holdReason?: import("../index.js").ProfileHoldReason | undefined;
|
|
@@ -6016,13 +6016,13 @@ export declare const ProfileSchema: Schema<import("mongoose").Document<unknown,
|
|
|
6016
6016
|
hasChildren: boolean;
|
|
6017
6017
|
numberOfChildren?: number | undefined;
|
|
6018
6018
|
willingToRelocate: boolean;
|
|
6019
|
+
accountId: string;
|
|
6020
|
+
createdAt: Date;
|
|
6019
6021
|
tenantId?: string | undefined;
|
|
6020
6022
|
flagCount: number;
|
|
6021
|
-
createdAt: Date;
|
|
6022
6023
|
updatedAt: Date;
|
|
6023
6024
|
reviewedAt?: Date | undefined;
|
|
6024
6025
|
reviewedBy?: string | undefined;
|
|
6025
|
-
accountId: string;
|
|
6026
6026
|
rejectionReason?: string | undefined;
|
|
6027
6027
|
displayName?: string | undefined;
|
|
6028
6028
|
holdReason?: import("../index.js").ProfileHoldReason | undefined;
|
|
@@ -6166,13 +6166,13 @@ export declare const ProfileSchema: Schema<import("mongoose").Document<unknown,
|
|
|
6166
6166
|
hasChildren: boolean;
|
|
6167
6167
|
numberOfChildren?: number | undefined;
|
|
6168
6168
|
willingToRelocate: boolean;
|
|
6169
|
+
accountId: string;
|
|
6170
|
+
createdAt: Date;
|
|
6169
6171
|
tenantId?: string | undefined;
|
|
6170
6172
|
flagCount: number;
|
|
6171
|
-
createdAt: Date;
|
|
6172
6173
|
updatedAt: Date;
|
|
6173
6174
|
reviewedAt?: Date | undefined;
|
|
6174
6175
|
reviewedBy?: string | undefined;
|
|
6175
|
-
accountId: string;
|
|
6176
6176
|
rejectionReason?: string | undefined;
|
|
6177
6177
|
displayName?: string | undefined;
|
|
6178
6178
|
holdReason?: import("../index.js").ProfileHoldReason | undefined;
|
|
@@ -6296,13 +6296,13 @@ export declare const ProfileSchema: Schema<import("mongoose").Document<unknown,
|
|
|
6296
6296
|
hasChildren: boolean;
|
|
6297
6297
|
numberOfChildren?: number | undefined;
|
|
6298
6298
|
willingToRelocate: boolean;
|
|
6299
|
+
accountId: string;
|
|
6300
|
+
createdAt: Date;
|
|
6299
6301
|
tenantId?: string | undefined;
|
|
6300
6302
|
flagCount: number;
|
|
6301
|
-
createdAt: Date;
|
|
6302
6303
|
updatedAt: Date;
|
|
6303
6304
|
reviewedAt?: Date | undefined;
|
|
6304
6305
|
reviewedBy?: string | undefined;
|
|
6305
|
-
accountId: string;
|
|
6306
6306
|
rejectionReason?: string | undefined;
|
|
6307
6307
|
displayName?: string | undefined;
|
|
6308
6308
|
holdReason?: import("../index.js").ProfileHoldReason | undefined;
|
|
@@ -6426,13 +6426,13 @@ export declare const ProfileSchema: Schema<import("mongoose").Document<unknown,
|
|
|
6426
6426
|
hasChildren: boolean;
|
|
6427
6427
|
numberOfChildren?: number | undefined;
|
|
6428
6428
|
willingToRelocate: boolean;
|
|
6429
|
+
accountId: string;
|
|
6430
|
+
createdAt: Date;
|
|
6429
6431
|
tenantId?: string | undefined;
|
|
6430
6432
|
flagCount: number;
|
|
6431
|
-
createdAt: Date;
|
|
6432
6433
|
updatedAt: Date;
|
|
6433
6434
|
reviewedAt?: Date | undefined;
|
|
6434
6435
|
reviewedBy?: string | undefined;
|
|
6435
|
-
accountId: string;
|
|
6436
6436
|
rejectionReason?: string | undefined;
|
|
6437
6437
|
displayName?: string | undefined;
|
|
6438
6438
|
holdReason?: import("../index.js").ProfileHoldReason | undefined;
|
|
@@ -6555,13 +6555,13 @@ export declare const ProfileSchema: Schema<import("mongoose").Document<unknown,
|
|
|
6555
6555
|
hasChildren: boolean;
|
|
6556
6556
|
numberOfChildren?: number | undefined;
|
|
6557
6557
|
willingToRelocate: boolean;
|
|
6558
|
+
accountId: string;
|
|
6559
|
+
createdAt: Date;
|
|
6558
6560
|
tenantId?: string | undefined;
|
|
6559
6561
|
flagCount: number;
|
|
6560
|
-
createdAt: Date;
|
|
6561
6562
|
updatedAt: Date;
|
|
6562
6563
|
reviewedAt?: Date | undefined;
|
|
6563
6564
|
reviewedBy?: string | undefined;
|
|
6564
|
-
accountId: string;
|
|
6565
6565
|
rejectionReason?: string | undefined;
|
|
6566
6566
|
displayName?: string | undefined;
|
|
6567
6567
|
holdReason?: import("../index.js").ProfileHoldReason | undefined;
|
|
@@ -6702,14 +6702,14 @@ export declare const ProfileSchema: Schema<import("mongoose").Document<unknown,
|
|
|
6702
6702
|
hasChildren: boolean;
|
|
6703
6703
|
numberOfChildren?: number | undefined;
|
|
6704
6704
|
willingToRelocate: boolean;
|
|
6705
|
+
accountId: string;
|
|
6706
|
+
createdAt: Date;
|
|
6705
6707
|
tenantId?: string | undefined;
|
|
6706
6708
|
flagCount: number;
|
|
6707
|
-
createdAt: Date;
|
|
6708
6709
|
updatedAt: Date;
|
|
6709
6710
|
_id: string;
|
|
6710
6711
|
reviewedAt?: Date | undefined;
|
|
6711
6712
|
reviewedBy?: string | undefined;
|
|
6712
|
-
accountId: string;
|
|
6713
6713
|
rejectionReason?: string | undefined;
|
|
6714
6714
|
displayName?: string | undefined;
|
|
6715
6715
|
holdReason?: import("../index.js").ProfileHoldReason | undefined;
|
|
@@ -6834,14 +6834,14 @@ export declare const ProfileSchema: Schema<import("mongoose").Document<unknown,
|
|
|
6834
6834
|
hasChildren: boolean;
|
|
6835
6835
|
numberOfChildren?: number | undefined;
|
|
6836
6836
|
willingToRelocate: boolean;
|
|
6837
|
+
accountId: string;
|
|
6838
|
+
createdAt: Date;
|
|
6837
6839
|
tenantId?: string | undefined;
|
|
6838
6840
|
flagCount: number;
|
|
6839
|
-
createdAt: Date;
|
|
6840
6841
|
updatedAt: Date;
|
|
6841
6842
|
_id: string;
|
|
6842
6843
|
reviewedAt?: Date | undefined;
|
|
6843
6844
|
reviewedBy?: string | undefined;
|
|
6844
|
-
accountId: string;
|
|
6845
6845
|
rejectionReason?: string | undefined;
|
|
6846
6846
|
displayName?: string | undefined;
|
|
6847
6847
|
holdReason?: import("../index.js").ProfileHoldReason | undefined;
|
|
@@ -6974,14 +6974,14 @@ export declare const ProfileSchema: Schema<import("mongoose").Document<unknown,
|
|
|
6974
6974
|
hasChildren: boolean;
|
|
6975
6975
|
numberOfChildren?: number | undefined;
|
|
6976
6976
|
willingToRelocate: boolean;
|
|
6977
|
+
accountId: string;
|
|
6978
|
+
createdAt: Date;
|
|
6977
6979
|
tenantId?: string | undefined;
|
|
6978
6980
|
flagCount: number;
|
|
6979
|
-
createdAt: Date;
|
|
6980
6981
|
updatedAt: Date;
|
|
6981
6982
|
_id: string;
|
|
6982
6983
|
reviewedAt?: Date | undefined;
|
|
6983
6984
|
reviewedBy?: string | undefined;
|
|
6984
|
-
accountId: string;
|
|
6985
6985
|
rejectionReason?: string | undefined;
|
|
6986
6986
|
displayName?: string | undefined;
|
|
6987
6987
|
holdReason?: import("../index.js").ProfileHoldReason | undefined;
|
|
@@ -7113,14 +7113,14 @@ export declare const ProfileSchema: Schema<import("mongoose").Document<unknown,
|
|
|
7113
7113
|
hasChildren: boolean;
|
|
7114
7114
|
numberOfChildren?: number | undefined;
|
|
7115
7115
|
willingToRelocate: boolean;
|
|
7116
|
+
accountId: string;
|
|
7117
|
+
createdAt: Date;
|
|
7116
7118
|
tenantId?: string | undefined;
|
|
7117
7119
|
flagCount: number;
|
|
7118
|
-
createdAt: Date;
|
|
7119
7120
|
updatedAt: Date;
|
|
7120
7121
|
_id: string;
|
|
7121
7122
|
reviewedAt?: Date | undefined;
|
|
7122
7123
|
reviewedBy?: string | undefined;
|
|
7123
|
-
accountId: string;
|
|
7124
7124
|
rejectionReason?: string | undefined;
|
|
7125
7125
|
displayName?: string | undefined;
|
|
7126
7126
|
holdReason?: import("../index.js").ProfileHoldReason | undefined;
|
|
@@ -7243,14 +7243,14 @@ export declare const ProfileSchema: Schema<import("mongoose").Document<unknown,
|
|
|
7243
7243
|
hasChildren: boolean;
|
|
7244
7244
|
numberOfChildren?: number | undefined;
|
|
7245
7245
|
willingToRelocate: boolean;
|
|
7246
|
+
accountId: string;
|
|
7247
|
+
createdAt: Date;
|
|
7246
7248
|
tenantId?: string | undefined;
|
|
7247
7249
|
flagCount: number;
|
|
7248
|
-
createdAt: Date;
|
|
7249
7250
|
updatedAt: Date;
|
|
7250
7251
|
_id: string;
|
|
7251
7252
|
reviewedAt?: Date | undefined;
|
|
7252
7253
|
reviewedBy?: string | undefined;
|
|
7253
|
-
accountId: string;
|
|
7254
7254
|
rejectionReason?: string | undefined;
|
|
7255
7255
|
displayName?: string | undefined;
|
|
7256
7256
|
holdReason?: import("../index.js").ProfileHoldReason | undefined;
|
|
@@ -7367,7 +7367,7 @@ export declare const ProfileSchema: Schema<import("mongoose").Document<unknown,
|
|
|
7367
7367
|
id: string;
|
|
7368
7368
|
}> | undefined;
|
|
7369
7369
|
unmarkModified?: import("mongoose").SchemaDefinitionProperty<{
|
|
7370
|
-
<T extends "preferences" | "photos" | "status" | "candidateName" | "gender" | "dateOfBirth" | "age" | "sect" | "maritalStatus" | "complexion" | "bodyType" | "nationality" | "citizenship" | "profession" | "aboutCandidate" | "aboutFamily" | "partnerExpectations" | "languages" | "bio" | "prayerFrequency" | "hasChildren" | "numberOfChildren" | "willingToRelocate" | "
|
|
7370
|
+
<T extends "preferences" | "photos" | "status" | "candidateName" | "gender" | "dateOfBirth" | "age" | "sect" | "maritalStatus" | "complexion" | "bodyType" | "nationality" | "citizenship" | "profession" | "aboutCandidate" | "aboutFamily" | "partnerExpectations" | "languages" | "bio" | "prayerFrequency" | "hasChildren" | "numberOfChildren" | "willingToRelocate" | "accountId" | "createdAt" | "tenantId" | "flagCount" | "updatedAt" | "_id" | "reviewedAt" | "reviewedBy" | "rejectionReason" | "displayName" | "holdReason" | "holdUntil" | "hijabStatus" | "beardStatus" | "islamicEducation" | "quranMemorization" | "heightCm" | "weightKg" | "disabilities" | "currentLocation" | "relocatePreferences" | "residencyStatus" | "educationLevel" | "educationField" | "institution" | "jobTitle" | "employer" | "annualIncome" | "incomeCurrency" | "incomeVisibility" | "familyType" | "fatherOccupation" | "motherOccupation" | "siblings" | "familyValues" | "familyReligiosity" | "dietaryPreference" | "smoking" | "livesAlone" | "hasOwnAccommodation" | "caste" | "ethnicity" | "hobbies" | "dealBreakers" | "additionalInfo" | "idVerificationId" | "isIdVerified" | "isVerified" | "viewCount" | "interestReceivedCount" | "interestSentCount">(path: T): void;
|
|
7371
7371
|
(path: string): void;
|
|
7372
7372
|
}, import("mongoose").Document<unknown, {}, Omit<IProfile, "id"> & {
|
|
7373
7373
|
_id: string;
|
|
@@ -7452,7 +7452,7 @@ export declare const ProfileSchema: Schema<import("mongoose").Document<unknown,
|
|
|
7452
7452
|
id: string;
|
|
7453
7453
|
}> | undefined;
|
|
7454
7454
|
validate?: import("mongoose").SchemaDefinitionProperty<{
|
|
7455
|
-
<T extends "preferences" | "photos" | "status" | "candidateName" | "gender" | "dateOfBirth" | "age" | "sect" | "maritalStatus" | "complexion" | "bodyType" | "nationality" | "citizenship" | "profession" | "aboutCandidate" | "aboutFamily" | "partnerExpectations" | "languages" | "bio" | "prayerFrequency" | "hasChildren" | "numberOfChildren" | "willingToRelocate" | "
|
|
7455
|
+
<T extends "preferences" | "photos" | "status" | "candidateName" | "gender" | "dateOfBirth" | "age" | "sect" | "maritalStatus" | "complexion" | "bodyType" | "nationality" | "citizenship" | "profession" | "aboutCandidate" | "aboutFamily" | "partnerExpectations" | "languages" | "bio" | "prayerFrequency" | "hasChildren" | "numberOfChildren" | "willingToRelocate" | "accountId" | "createdAt" | "tenantId" | "flagCount" | "updatedAt" | "_id" | "reviewedAt" | "reviewedBy" | "rejectionReason" | "displayName" | "holdReason" | "holdUntil" | "hijabStatus" | "beardStatus" | "islamicEducation" | "quranMemorization" | "heightCm" | "weightKg" | "disabilities" | "currentLocation" | "relocatePreferences" | "residencyStatus" | "educationLevel" | "educationField" | "institution" | "jobTitle" | "employer" | "annualIncome" | "incomeCurrency" | "incomeVisibility" | "familyType" | "fatherOccupation" | "motherOccupation" | "siblings" | "familyValues" | "familyReligiosity" | "dietaryPreference" | "smoking" | "livesAlone" | "hasOwnAccommodation" | "caste" | "ethnicity" | "hobbies" | "dealBreakers" | "additionalInfo" | "idVerificationId" | "isIdVerified" | "isVerified" | "viewCount" | "interestReceivedCount" | "interestSentCount">(pathsToValidate?: T | T[] | undefined, options?: import("mongoose").AnyObject): Promise<void>;
|
|
7456
7456
|
(pathsToValidate?: import("mongoose").pathsToValidate, options?: import("mongoose").AnyObject): Promise<void>;
|
|
7457
7457
|
(options: {
|
|
7458
7458
|
pathsToSkip?: import("mongoose").pathsToSkip;
|
|
@@ -7493,7 +7493,7 @@ export declare const ProfileSchema: Schema<import("mongoose").Document<unknown,
|
|
|
7493
7493
|
pathsToSkip?: import("mongoose").pathsToSkip;
|
|
7494
7494
|
[k: string]: any;
|
|
7495
7495
|
}): import("mongoose").Error.ValidationError | null;
|
|
7496
|
-
<T extends "preferences" | "photos" | "status" | "candidateName" | "gender" | "dateOfBirth" | "age" | "sect" | "maritalStatus" | "complexion" | "bodyType" | "nationality" | "citizenship" | "profession" | "aboutCandidate" | "aboutFamily" | "partnerExpectations" | "languages" | "bio" | "prayerFrequency" | "hasChildren" | "numberOfChildren" | "willingToRelocate" | "
|
|
7496
|
+
<T extends "preferences" | "photos" | "status" | "candidateName" | "gender" | "dateOfBirth" | "age" | "sect" | "maritalStatus" | "complexion" | "bodyType" | "nationality" | "citizenship" | "profession" | "aboutCandidate" | "aboutFamily" | "partnerExpectations" | "languages" | "bio" | "prayerFrequency" | "hasChildren" | "numberOfChildren" | "willingToRelocate" | "accountId" | "createdAt" | "tenantId" | "flagCount" | "updatedAt" | "_id" | "reviewedAt" | "reviewedBy" | "rejectionReason" | "displayName" | "holdReason" | "holdUntil" | "hijabStatus" | "beardStatus" | "islamicEducation" | "quranMemorization" | "heightCm" | "weightKg" | "disabilities" | "currentLocation" | "relocatePreferences" | "residencyStatus" | "educationLevel" | "educationField" | "institution" | "jobTitle" | "employer" | "annualIncome" | "incomeCurrency" | "incomeVisibility" | "familyType" | "fatherOccupation" | "motherOccupation" | "siblings" | "familyValues" | "familyReligiosity" | "dietaryPreference" | "smoking" | "livesAlone" | "hasOwnAccommodation" | "caste" | "ethnicity" | "hobbies" | "dealBreakers" | "additionalInfo" | "idVerificationId" | "isIdVerified" | "isVerified" | "viewCount" | "interestReceivedCount" | "interestSentCount">(pathsToValidate?: T | T[] | undefined, options?: import("mongoose").AnyObject): import("mongoose").Error.ValidationError | null;
|
|
7497
7497
|
(pathsToValidate?: import("mongoose").pathsToValidate, options?: import("mongoose").AnyObject): import("mongoose").Error.ValidationError | null;
|
|
7498
7498
|
}, import("mongoose").Document<unknown, {}, Omit<IProfile, "id"> & {
|
|
7499
7499
|
_id: string;
|
|
@@ -8239,7 +8239,7 @@ export declare const ProfileSchema: Schema<import("mongoose").Document<unknown,
|
|
|
8239
8239
|
} & {
|
|
8240
8240
|
id: string;
|
|
8241
8241
|
}> | undefined;
|
|
8242
|
-
|
|
8242
|
+
accountId?: import("mongoose").SchemaDefinitionProperty<string, import("mongoose").Document<unknown, {}, Omit<IProfile, "id"> & {
|
|
8243
8243
|
_id: string;
|
|
8244
8244
|
}, {}, import("mongoose").DefaultSchemaOptions> & Omit<IProfile, "id"> & {
|
|
8245
8245
|
_id: string;
|
|
@@ -8270,7 +8270,7 @@ export declare const ProfileSchema: Schema<import("mongoose").Document<unknown,
|
|
|
8270
8270
|
} & {
|
|
8271
8271
|
id: string;
|
|
8272
8272
|
}> | undefined;
|
|
8273
|
-
|
|
8273
|
+
createdAt?: import("mongoose").SchemaDefinitionProperty<Date, import("mongoose").Document<unknown, {}, Omit<IProfile, "id"> & {
|
|
8274
8274
|
_id: string;
|
|
8275
8275
|
}, {}, import("mongoose").DefaultSchemaOptions> & Omit<IProfile, "id"> & {
|
|
8276
8276
|
_id: string;
|
|
@@ -8301,7 +8301,7 @@ export declare const ProfileSchema: Schema<import("mongoose").Document<unknown,
|
|
|
8301
8301
|
} & {
|
|
8302
8302
|
id: string;
|
|
8303
8303
|
}> | undefined;
|
|
8304
|
-
|
|
8304
|
+
tenantId?: import("mongoose").SchemaDefinitionProperty<string | undefined, import("mongoose").Document<unknown, {}, Omit<IProfile, "id"> & {
|
|
8305
8305
|
_id: string;
|
|
8306
8306
|
}, {}, import("mongoose").DefaultSchemaOptions> & Omit<IProfile, "id"> & {
|
|
8307
8307
|
_id: string;
|
|
@@ -8332,7 +8332,7 @@ export declare const ProfileSchema: Schema<import("mongoose").Document<unknown,
|
|
|
8332
8332
|
} & {
|
|
8333
8333
|
id: string;
|
|
8334
8334
|
}> | undefined;
|
|
8335
|
-
|
|
8335
|
+
flagCount?: import("mongoose").SchemaDefinitionProperty<number, import("mongoose").Document<unknown, {}, Omit<IProfile, "id"> & {
|
|
8336
8336
|
_id: string;
|
|
8337
8337
|
}, {}, import("mongoose").DefaultSchemaOptions> & Omit<IProfile, "id"> & {
|
|
8338
8338
|
_id: string;
|
|
@@ -8363,7 +8363,7 @@ export declare const ProfileSchema: Schema<import("mongoose").Document<unknown,
|
|
|
8363
8363
|
} & {
|
|
8364
8364
|
id: string;
|
|
8365
8365
|
}> | undefined;
|
|
8366
|
-
|
|
8366
|
+
updatedAt?: import("mongoose").SchemaDefinitionProperty<Date, import("mongoose").Document<unknown, {}, Omit<IProfile, "id"> & {
|
|
8367
8367
|
_id: string;
|
|
8368
8368
|
}, {}, import("mongoose").DefaultSchemaOptions> & Omit<IProfile, "id"> & {
|
|
8369
8369
|
_id: string;
|
|
@@ -8394,7 +8394,7 @@ export declare const ProfileSchema: Schema<import("mongoose").Document<unknown,
|
|
|
8394
8394
|
} & {
|
|
8395
8395
|
id: string;
|
|
8396
8396
|
}> | undefined;
|
|
8397
|
-
|
|
8397
|
+
reviewedAt?: import("mongoose").SchemaDefinitionProperty<Date | undefined, import("mongoose").Document<unknown, {}, Omit<IProfile, "id"> & {
|
|
8398
8398
|
_id: string;
|
|
8399
8399
|
}, {}, import("mongoose").DefaultSchemaOptions> & Omit<IProfile, "id"> & {
|
|
8400
8400
|
_id: string;
|
|
@@ -8425,7 +8425,7 @@ export declare const ProfileSchema: Schema<import("mongoose").Document<unknown,
|
|
|
8425
8425
|
} & {
|
|
8426
8426
|
id: string;
|
|
8427
8427
|
}> | undefined;
|
|
8428
|
-
|
|
8428
|
+
reviewedBy?: import("mongoose").SchemaDefinitionProperty<string | undefined, import("mongoose").Document<unknown, {}, Omit<IProfile, "id"> & {
|
|
8429
8429
|
_id: string;
|
|
8430
8430
|
}, {}, import("mongoose").DefaultSchemaOptions> & Omit<IProfile, "id"> & {
|
|
8431
8431
|
_id: string;
|