@thejob/schema 2.1.1 → 2.1.3
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/index.cjs +199 -119
- package/dist/index.d.cts +72 -1
- package/dist/index.d.ts +72 -1
- package/dist/index.js +164 -92
- package/package.json +1 -1
- package/src/feedback/feedback.constant.ts +21 -0
- package/src/feedback/feedback.schema.ts +32 -0
- package/src/index.ts +6 -0
- package/src/user/user.constant.ts +23 -0
- package/src/user/user.schema.ts +27 -0
package/dist/index.d.cts
CHANGED
|
@@ -1504,6 +1504,44 @@ declare const ReportSchema: yup.ObjectSchema<{
|
|
|
1504
1504
|
comment: undefined;
|
|
1505
1505
|
}, "">;
|
|
1506
1506
|
|
|
1507
|
+
declare enum FeedbackType {
|
|
1508
|
+
Bug = "bug",
|
|
1509
|
+
Feature = "feature",
|
|
1510
|
+
Suggestion = "suggestion",
|
|
1511
|
+
Report = "report",
|
|
1512
|
+
Other = "other"
|
|
1513
|
+
}
|
|
1514
|
+
declare const SupportedFeedbackTypes: FeedbackType[];
|
|
1515
|
+
declare enum FeedbackStatus {
|
|
1516
|
+
New = "new",
|
|
1517
|
+
InReview = "in_review",
|
|
1518
|
+
Resolved = "resolved",
|
|
1519
|
+
Archived = "archived"
|
|
1520
|
+
}
|
|
1521
|
+
declare const SupportedFeedbackStatuses: FeedbackStatus[];
|
|
1522
|
+
/** Max length of a feedback message body (enforced client + server). */
|
|
1523
|
+
declare const FEEDBACK_MESSAGE_MAX = 4000;
|
|
1524
|
+
|
|
1525
|
+
/**
|
|
1526
|
+
* A user-submitted feedback / report record (bug, feature request, suggestion,
|
|
1527
|
+
* abuse report, …) captured by the app-wide feedback widget and stored by
|
|
1528
|
+
* common-service. `email` is an optional reply-to for signed-out submitters;
|
|
1529
|
+
* the rest of the identity/diagnostic fields are attached server-side.
|
|
1530
|
+
*/
|
|
1531
|
+
declare const FeedbackSchema: yup.ObjectSchema<{
|
|
1532
|
+
type: NonNullable<FeedbackType | undefined>;
|
|
1533
|
+
message: string;
|
|
1534
|
+
email: string | undefined;
|
|
1535
|
+
pageUrl: string | undefined;
|
|
1536
|
+
status: FeedbackStatus | undefined;
|
|
1537
|
+
}, yup.AnyObject, {
|
|
1538
|
+
type: undefined;
|
|
1539
|
+
message: undefined;
|
|
1540
|
+
email: undefined;
|
|
1541
|
+
pageUrl: undefined;
|
|
1542
|
+
status: undefined;
|
|
1543
|
+
}, "">;
|
|
1544
|
+
|
|
1507
1545
|
declare const SkillSchema: yup.ObjectSchema<{
|
|
1508
1546
|
name: string;
|
|
1509
1547
|
logo: {
|
|
@@ -1651,6 +1689,27 @@ declare enum JobAlertFrequency {
|
|
|
1651
1689
|
Weekly = "weekly"
|
|
1652
1690
|
}
|
|
1653
1691
|
declare const SupportedJobAlertFrequencies: JobAlertFrequency[];
|
|
1692
|
+
/**
|
|
1693
|
+
* Channels of NOTIFICATION email — mail about activity on the user's own
|
|
1694
|
+
* account (a group invite, a job of theirs expiring). Distinct from marketing:
|
|
1695
|
+
* notifications are opt-OUT (default on, see `notificationPrefs`), marketing is
|
|
1696
|
+
* opt-IN (`marketingConsent.subscribed`). Transactional mail (magic-link,
|
|
1697
|
+
* verification) is governed by neither and always sends.
|
|
1698
|
+
*
|
|
1699
|
+
* Deliberately coarse: four channels a user will actually reason about, rather
|
|
1700
|
+
* than one toggle per email template.
|
|
1701
|
+
*/
|
|
1702
|
+
declare enum NotificationChannel {
|
|
1703
|
+
/** Group invites, join requests, membership approved/rejected. */
|
|
1704
|
+
GroupActivity = "groupActivity",
|
|
1705
|
+
/** Activity on jobs the user posted, e.g. a listing expiring. */
|
|
1706
|
+
JobActivity = "jobActivity",
|
|
1707
|
+
/** Status changes on jobs the user applied to. */
|
|
1708
|
+
ApplicationUpdates = "applicationUpdates",
|
|
1709
|
+
/** Product announcements and feature news. */
|
|
1710
|
+
ProductUpdates = "productUpdates"
|
|
1711
|
+
}
|
|
1712
|
+
declare const SupportedNotificationChannels: NotificationChannel[];
|
|
1654
1713
|
/** ISO-4217 currency codes accepted for the salary preference (extend as needed). */
|
|
1655
1714
|
declare const SupportedSalaryCurrencies: readonly ["USD", "EUR", "GBP", "SEK", "INR"];
|
|
1656
1715
|
type SupportedSalaryCurrency = (typeof SupportedSalaryCurrencies)[number];
|
|
@@ -1785,6 +1844,12 @@ declare const UserSchema: yup.ObjectSchema<{
|
|
|
1785
1844
|
jobAlertFrequency?: JobAlertFrequency | undefined;
|
|
1786
1845
|
subscribed: boolean;
|
|
1787
1846
|
};
|
|
1847
|
+
notificationPrefs: {
|
|
1848
|
+
groupActivity: boolean;
|
|
1849
|
+
jobActivity: boolean;
|
|
1850
|
+
applicationUpdates: boolean;
|
|
1851
|
+
productUpdates: boolean;
|
|
1852
|
+
};
|
|
1788
1853
|
embedding: {
|
|
1789
1854
|
vector?: number[] | undefined;
|
|
1790
1855
|
model?: string | undefined;
|
|
@@ -1984,6 +2049,12 @@ declare const UserSchema: yup.ObjectSchema<{
|
|
|
1984
2049
|
marketingConsent: {
|
|
1985
2050
|
subscribed: boolean;
|
|
1986
2051
|
};
|
|
2052
|
+
notificationPrefs: {
|
|
2053
|
+
groupActivity: boolean;
|
|
2054
|
+
jobActivity: boolean;
|
|
2055
|
+
applicationUpdates: boolean;
|
|
2056
|
+
productUpdates: boolean;
|
|
2057
|
+
};
|
|
1987
2058
|
embedding: {
|
|
1988
2059
|
vector: undefined;
|
|
1989
2060
|
model: undefined;
|
|
@@ -2872,4 +2943,4 @@ declare const StudentCompletenessSchema: yup.ObjectSchema<{
|
|
|
2872
2943
|
};
|
|
2873
2944
|
}, "">;
|
|
2874
2945
|
|
|
2875
|
-
export { AnswerChoiceType, ApplicationReceivePreference, CampaignSchema, CampaignStatus, ChoiceQuestionSchema, Common, CompensationType, CompletenessScoreSchema, ContactTypes, CoordinatorPageLinkSchema, DISPLAY_DATE_FORMAT, DISPLAY_DATE_FORMAT_SHORT, DateStringSchema, DbDefaultSchema, DefaultPaginatedResponse, DefaultPaginationOptions, DefaultUserRoles, DurationSchema, EMPTY_STRING, EducationLevel, EducationSchema, EmployeeCount, EmploymentType, ExperienceLevel, GeneraDetailFields, GroupManagedBy, GroupMembershipSchema, GroupMembershipStatus, GroupSchema, GroupStatus, GroupTranslationSchema, GroupVisibility, InputQuestionSchema, JOB_TAXONOMY, JobAlertFrequency, JobCategory, JobIndustry, JobSchema, JobSearchUrgency, JobStatus, JobSubCategory, ListFilterSchema, LocationSchema, MIN_SALARY_LOWER_BOUND, MIN_SALARY_UPPER_BOUND, MailingListSchema, PREFILL_MIRRORED_KEYS, PRIVATE_PROFILE_FIELDS, PageSchema, PageStatus, PageType, type PaginatedResponse, PaginationSchema, PostSchema, PostStatus, type PrefillMirroredKey, type PrivateProfileField, ProficiencyLevel, QuestionSchema, QuestionType, ReadAndAcknowledgeQuestionSchema, RecruiterPageLinkSchema, ReferralSource, ReportReason, ReportSchema, ResourceType, SITEMAP_FORMAT, SYSTEM_DATE_FORMAT, SkillSchema, SocialAccount, SocialAccountSchema, StudentCompletenessSchema, StudyType, SupportedAnswerChoiceTypes, SupportedApplicationReceivePreferences, SupportedCampaignStatuses, SupportedCompensationTypes, SupportedContactTypes, SupportedEducationLevels, SupportedEmployeeCounts, SupportedEmploymentTypes, SupportedExperienceLevels, SupportedJobAlertFrequencies, SupportedJobCategories, SupportedJobIndustries, SupportedJobSearchUrgencies, SupportedJobStatuses, SupportedJobSubCategories, SupportedPageStatuses, SupportedPageTypes, SupportedPostStatuses, SupportedProficiencyLevels, SupportedQuestionTypes, SupportedReferralSources, SupportedReportReasons, SupportedResourceTypes, SupportedSalaryCurrencies, type SupportedSalaryCurrency, SupportedSocialAccounts, SupportedStudyTypes, SupportedUserProfileVisibilities, SupportedUserRoles, SupportedUserStatuses, SupportedWorkModes, TAXONOMY_LABELS, type TChoiceQuestionSchema, type TDurationSchema, type TInputQuestionSchema, type TJobSchema, type TPostSchema, type TQuestionSchema, type TReadAndAcknowledgeQuestionSchema, type TUserIdAndCreatedAtSchema, TermsAcceptedSchema, UserAdditionalInfoSchema, UserCertificationSchema, UserCompletenessSchema, UserCoordinatorProfileSchema, UserDetailType, UserGeneralDetailSchema, UserIdAndCreatedAtSchema, UserInterestSchema, UserJobPreferencesSchema, UserLanguageSchema, type UserProfileOverview, UserProfileVisibility, UserProjectSchema, UserRecruiterProfileSchema, UserRole, UserSchema, UserSkillSchema, UserStatus, WorkExperienceSchema, WorkMode, categoryOfIndustry, categoryOfSubCategory, dateString, deriveIndustry, getSchemaByQuestion, industriesOfCategory, industryOfSubCategory, subCategoriesOfIndustry };
|
|
2946
|
+
export { AnswerChoiceType, ApplicationReceivePreference, CampaignSchema, CampaignStatus, ChoiceQuestionSchema, Common, CompensationType, CompletenessScoreSchema, ContactTypes, CoordinatorPageLinkSchema, DISPLAY_DATE_FORMAT, DISPLAY_DATE_FORMAT_SHORT, DateStringSchema, DbDefaultSchema, DefaultPaginatedResponse, DefaultPaginationOptions, DefaultUserRoles, DurationSchema, EMPTY_STRING, EducationLevel, EducationSchema, EmployeeCount, EmploymentType, ExperienceLevel, FEEDBACK_MESSAGE_MAX, FeedbackSchema, FeedbackStatus, FeedbackType, GeneraDetailFields, GroupManagedBy, GroupMembershipSchema, GroupMembershipStatus, GroupSchema, GroupStatus, GroupTranslationSchema, GroupVisibility, InputQuestionSchema, JOB_TAXONOMY, JobAlertFrequency, JobCategory, JobIndustry, JobSchema, JobSearchUrgency, JobStatus, JobSubCategory, ListFilterSchema, LocationSchema, MIN_SALARY_LOWER_BOUND, MIN_SALARY_UPPER_BOUND, MailingListSchema, NotificationChannel, PREFILL_MIRRORED_KEYS, PRIVATE_PROFILE_FIELDS, PageSchema, PageStatus, PageType, type PaginatedResponse, PaginationSchema, PostSchema, PostStatus, type PrefillMirroredKey, type PrivateProfileField, ProficiencyLevel, QuestionSchema, QuestionType, ReadAndAcknowledgeQuestionSchema, RecruiterPageLinkSchema, ReferralSource, ReportReason, ReportSchema, ResourceType, SITEMAP_FORMAT, SYSTEM_DATE_FORMAT, SkillSchema, SocialAccount, SocialAccountSchema, StudentCompletenessSchema, StudyType, SupportedAnswerChoiceTypes, SupportedApplicationReceivePreferences, SupportedCampaignStatuses, SupportedCompensationTypes, SupportedContactTypes, SupportedEducationLevels, SupportedEmployeeCounts, SupportedEmploymentTypes, SupportedExperienceLevels, SupportedFeedbackStatuses, SupportedFeedbackTypes, SupportedJobAlertFrequencies, SupportedJobCategories, SupportedJobIndustries, SupportedJobSearchUrgencies, SupportedJobStatuses, SupportedJobSubCategories, SupportedNotificationChannels, SupportedPageStatuses, SupportedPageTypes, SupportedPostStatuses, SupportedProficiencyLevels, SupportedQuestionTypes, SupportedReferralSources, SupportedReportReasons, SupportedResourceTypes, SupportedSalaryCurrencies, type SupportedSalaryCurrency, SupportedSocialAccounts, SupportedStudyTypes, SupportedUserProfileVisibilities, SupportedUserRoles, SupportedUserStatuses, SupportedWorkModes, TAXONOMY_LABELS, type TChoiceQuestionSchema, type TDurationSchema, type TInputQuestionSchema, type TJobSchema, type TPostSchema, type TQuestionSchema, type TReadAndAcknowledgeQuestionSchema, type TUserIdAndCreatedAtSchema, TermsAcceptedSchema, UserAdditionalInfoSchema, UserCertificationSchema, UserCompletenessSchema, UserCoordinatorProfileSchema, UserDetailType, UserGeneralDetailSchema, UserIdAndCreatedAtSchema, UserInterestSchema, UserJobPreferencesSchema, UserLanguageSchema, type UserProfileOverview, UserProfileVisibility, UserProjectSchema, UserRecruiterProfileSchema, UserRole, UserSchema, UserSkillSchema, UserStatus, WorkExperienceSchema, WorkMode, categoryOfIndustry, categoryOfSubCategory, dateString, deriveIndustry, getSchemaByQuestion, industriesOfCategory, industryOfSubCategory, subCategoriesOfIndustry };
|
package/dist/index.d.ts
CHANGED
|
@@ -1504,6 +1504,44 @@ declare const ReportSchema: yup.ObjectSchema<{
|
|
|
1504
1504
|
comment: undefined;
|
|
1505
1505
|
}, "">;
|
|
1506
1506
|
|
|
1507
|
+
declare enum FeedbackType {
|
|
1508
|
+
Bug = "bug",
|
|
1509
|
+
Feature = "feature",
|
|
1510
|
+
Suggestion = "suggestion",
|
|
1511
|
+
Report = "report",
|
|
1512
|
+
Other = "other"
|
|
1513
|
+
}
|
|
1514
|
+
declare const SupportedFeedbackTypes: FeedbackType[];
|
|
1515
|
+
declare enum FeedbackStatus {
|
|
1516
|
+
New = "new",
|
|
1517
|
+
InReview = "in_review",
|
|
1518
|
+
Resolved = "resolved",
|
|
1519
|
+
Archived = "archived"
|
|
1520
|
+
}
|
|
1521
|
+
declare const SupportedFeedbackStatuses: FeedbackStatus[];
|
|
1522
|
+
/** Max length of a feedback message body (enforced client + server). */
|
|
1523
|
+
declare const FEEDBACK_MESSAGE_MAX = 4000;
|
|
1524
|
+
|
|
1525
|
+
/**
|
|
1526
|
+
* A user-submitted feedback / report record (bug, feature request, suggestion,
|
|
1527
|
+
* abuse report, …) captured by the app-wide feedback widget and stored by
|
|
1528
|
+
* common-service. `email` is an optional reply-to for signed-out submitters;
|
|
1529
|
+
* the rest of the identity/diagnostic fields are attached server-side.
|
|
1530
|
+
*/
|
|
1531
|
+
declare const FeedbackSchema: yup.ObjectSchema<{
|
|
1532
|
+
type: NonNullable<FeedbackType | undefined>;
|
|
1533
|
+
message: string;
|
|
1534
|
+
email: string | undefined;
|
|
1535
|
+
pageUrl: string | undefined;
|
|
1536
|
+
status: FeedbackStatus | undefined;
|
|
1537
|
+
}, yup.AnyObject, {
|
|
1538
|
+
type: undefined;
|
|
1539
|
+
message: undefined;
|
|
1540
|
+
email: undefined;
|
|
1541
|
+
pageUrl: undefined;
|
|
1542
|
+
status: undefined;
|
|
1543
|
+
}, "">;
|
|
1544
|
+
|
|
1507
1545
|
declare const SkillSchema: yup.ObjectSchema<{
|
|
1508
1546
|
name: string;
|
|
1509
1547
|
logo: {
|
|
@@ -1651,6 +1689,27 @@ declare enum JobAlertFrequency {
|
|
|
1651
1689
|
Weekly = "weekly"
|
|
1652
1690
|
}
|
|
1653
1691
|
declare const SupportedJobAlertFrequencies: JobAlertFrequency[];
|
|
1692
|
+
/**
|
|
1693
|
+
* Channels of NOTIFICATION email — mail about activity on the user's own
|
|
1694
|
+
* account (a group invite, a job of theirs expiring). Distinct from marketing:
|
|
1695
|
+
* notifications are opt-OUT (default on, see `notificationPrefs`), marketing is
|
|
1696
|
+
* opt-IN (`marketingConsent.subscribed`). Transactional mail (magic-link,
|
|
1697
|
+
* verification) is governed by neither and always sends.
|
|
1698
|
+
*
|
|
1699
|
+
* Deliberately coarse: four channels a user will actually reason about, rather
|
|
1700
|
+
* than one toggle per email template.
|
|
1701
|
+
*/
|
|
1702
|
+
declare enum NotificationChannel {
|
|
1703
|
+
/** Group invites, join requests, membership approved/rejected. */
|
|
1704
|
+
GroupActivity = "groupActivity",
|
|
1705
|
+
/** Activity on jobs the user posted, e.g. a listing expiring. */
|
|
1706
|
+
JobActivity = "jobActivity",
|
|
1707
|
+
/** Status changes on jobs the user applied to. */
|
|
1708
|
+
ApplicationUpdates = "applicationUpdates",
|
|
1709
|
+
/** Product announcements and feature news. */
|
|
1710
|
+
ProductUpdates = "productUpdates"
|
|
1711
|
+
}
|
|
1712
|
+
declare const SupportedNotificationChannels: NotificationChannel[];
|
|
1654
1713
|
/** ISO-4217 currency codes accepted for the salary preference (extend as needed). */
|
|
1655
1714
|
declare const SupportedSalaryCurrencies: readonly ["USD", "EUR", "GBP", "SEK", "INR"];
|
|
1656
1715
|
type SupportedSalaryCurrency = (typeof SupportedSalaryCurrencies)[number];
|
|
@@ -1785,6 +1844,12 @@ declare const UserSchema: yup.ObjectSchema<{
|
|
|
1785
1844
|
jobAlertFrequency?: JobAlertFrequency | undefined;
|
|
1786
1845
|
subscribed: boolean;
|
|
1787
1846
|
};
|
|
1847
|
+
notificationPrefs: {
|
|
1848
|
+
groupActivity: boolean;
|
|
1849
|
+
jobActivity: boolean;
|
|
1850
|
+
applicationUpdates: boolean;
|
|
1851
|
+
productUpdates: boolean;
|
|
1852
|
+
};
|
|
1788
1853
|
embedding: {
|
|
1789
1854
|
vector?: number[] | undefined;
|
|
1790
1855
|
model?: string | undefined;
|
|
@@ -1984,6 +2049,12 @@ declare const UserSchema: yup.ObjectSchema<{
|
|
|
1984
2049
|
marketingConsent: {
|
|
1985
2050
|
subscribed: boolean;
|
|
1986
2051
|
};
|
|
2052
|
+
notificationPrefs: {
|
|
2053
|
+
groupActivity: boolean;
|
|
2054
|
+
jobActivity: boolean;
|
|
2055
|
+
applicationUpdates: boolean;
|
|
2056
|
+
productUpdates: boolean;
|
|
2057
|
+
};
|
|
1987
2058
|
embedding: {
|
|
1988
2059
|
vector: undefined;
|
|
1989
2060
|
model: undefined;
|
|
@@ -2872,4 +2943,4 @@ declare const StudentCompletenessSchema: yup.ObjectSchema<{
|
|
|
2872
2943
|
};
|
|
2873
2944
|
}, "">;
|
|
2874
2945
|
|
|
2875
|
-
export { AnswerChoiceType, ApplicationReceivePreference, CampaignSchema, CampaignStatus, ChoiceQuestionSchema, Common, CompensationType, CompletenessScoreSchema, ContactTypes, CoordinatorPageLinkSchema, DISPLAY_DATE_FORMAT, DISPLAY_DATE_FORMAT_SHORT, DateStringSchema, DbDefaultSchema, DefaultPaginatedResponse, DefaultPaginationOptions, DefaultUserRoles, DurationSchema, EMPTY_STRING, EducationLevel, EducationSchema, EmployeeCount, EmploymentType, ExperienceLevel, GeneraDetailFields, GroupManagedBy, GroupMembershipSchema, GroupMembershipStatus, GroupSchema, GroupStatus, GroupTranslationSchema, GroupVisibility, InputQuestionSchema, JOB_TAXONOMY, JobAlertFrequency, JobCategory, JobIndustry, JobSchema, JobSearchUrgency, JobStatus, JobSubCategory, ListFilterSchema, LocationSchema, MIN_SALARY_LOWER_BOUND, MIN_SALARY_UPPER_BOUND, MailingListSchema, PREFILL_MIRRORED_KEYS, PRIVATE_PROFILE_FIELDS, PageSchema, PageStatus, PageType, type PaginatedResponse, PaginationSchema, PostSchema, PostStatus, type PrefillMirroredKey, type PrivateProfileField, ProficiencyLevel, QuestionSchema, QuestionType, ReadAndAcknowledgeQuestionSchema, RecruiterPageLinkSchema, ReferralSource, ReportReason, ReportSchema, ResourceType, SITEMAP_FORMAT, SYSTEM_DATE_FORMAT, SkillSchema, SocialAccount, SocialAccountSchema, StudentCompletenessSchema, StudyType, SupportedAnswerChoiceTypes, SupportedApplicationReceivePreferences, SupportedCampaignStatuses, SupportedCompensationTypes, SupportedContactTypes, SupportedEducationLevels, SupportedEmployeeCounts, SupportedEmploymentTypes, SupportedExperienceLevels, SupportedJobAlertFrequencies, SupportedJobCategories, SupportedJobIndustries, SupportedJobSearchUrgencies, SupportedJobStatuses, SupportedJobSubCategories, SupportedPageStatuses, SupportedPageTypes, SupportedPostStatuses, SupportedProficiencyLevels, SupportedQuestionTypes, SupportedReferralSources, SupportedReportReasons, SupportedResourceTypes, SupportedSalaryCurrencies, type SupportedSalaryCurrency, SupportedSocialAccounts, SupportedStudyTypes, SupportedUserProfileVisibilities, SupportedUserRoles, SupportedUserStatuses, SupportedWorkModes, TAXONOMY_LABELS, type TChoiceQuestionSchema, type TDurationSchema, type TInputQuestionSchema, type TJobSchema, type TPostSchema, type TQuestionSchema, type TReadAndAcknowledgeQuestionSchema, type TUserIdAndCreatedAtSchema, TermsAcceptedSchema, UserAdditionalInfoSchema, UserCertificationSchema, UserCompletenessSchema, UserCoordinatorProfileSchema, UserDetailType, UserGeneralDetailSchema, UserIdAndCreatedAtSchema, UserInterestSchema, UserJobPreferencesSchema, UserLanguageSchema, type UserProfileOverview, UserProfileVisibility, UserProjectSchema, UserRecruiterProfileSchema, UserRole, UserSchema, UserSkillSchema, UserStatus, WorkExperienceSchema, WorkMode, categoryOfIndustry, categoryOfSubCategory, dateString, deriveIndustry, getSchemaByQuestion, industriesOfCategory, industryOfSubCategory, subCategoriesOfIndustry };
|
|
2946
|
+
export { AnswerChoiceType, ApplicationReceivePreference, CampaignSchema, CampaignStatus, ChoiceQuestionSchema, Common, CompensationType, CompletenessScoreSchema, ContactTypes, CoordinatorPageLinkSchema, DISPLAY_DATE_FORMAT, DISPLAY_DATE_FORMAT_SHORT, DateStringSchema, DbDefaultSchema, DefaultPaginatedResponse, DefaultPaginationOptions, DefaultUserRoles, DurationSchema, EMPTY_STRING, EducationLevel, EducationSchema, EmployeeCount, EmploymentType, ExperienceLevel, FEEDBACK_MESSAGE_MAX, FeedbackSchema, FeedbackStatus, FeedbackType, GeneraDetailFields, GroupManagedBy, GroupMembershipSchema, GroupMembershipStatus, GroupSchema, GroupStatus, GroupTranslationSchema, GroupVisibility, InputQuestionSchema, JOB_TAXONOMY, JobAlertFrequency, JobCategory, JobIndustry, JobSchema, JobSearchUrgency, JobStatus, JobSubCategory, ListFilterSchema, LocationSchema, MIN_SALARY_LOWER_BOUND, MIN_SALARY_UPPER_BOUND, MailingListSchema, NotificationChannel, PREFILL_MIRRORED_KEYS, PRIVATE_PROFILE_FIELDS, PageSchema, PageStatus, PageType, type PaginatedResponse, PaginationSchema, PostSchema, PostStatus, type PrefillMirroredKey, type PrivateProfileField, ProficiencyLevel, QuestionSchema, QuestionType, ReadAndAcknowledgeQuestionSchema, RecruiterPageLinkSchema, ReferralSource, ReportReason, ReportSchema, ResourceType, SITEMAP_FORMAT, SYSTEM_DATE_FORMAT, SkillSchema, SocialAccount, SocialAccountSchema, StudentCompletenessSchema, StudyType, SupportedAnswerChoiceTypes, SupportedApplicationReceivePreferences, SupportedCampaignStatuses, SupportedCompensationTypes, SupportedContactTypes, SupportedEducationLevels, SupportedEmployeeCounts, SupportedEmploymentTypes, SupportedExperienceLevels, SupportedFeedbackStatuses, SupportedFeedbackTypes, SupportedJobAlertFrequencies, SupportedJobCategories, SupportedJobIndustries, SupportedJobSearchUrgencies, SupportedJobStatuses, SupportedJobSubCategories, SupportedNotificationChannels, SupportedPageStatuses, SupportedPageTypes, SupportedPostStatuses, SupportedProficiencyLevels, SupportedQuestionTypes, SupportedReferralSources, SupportedReportReasons, SupportedResourceTypes, SupportedSalaryCurrencies, type SupportedSalaryCurrency, SupportedSocialAccounts, SupportedStudyTypes, SupportedUserProfileVisibilities, SupportedUserRoles, SupportedUserStatuses, SupportedWorkModes, TAXONOMY_LABELS, type TChoiceQuestionSchema, type TDurationSchema, type TInputQuestionSchema, type TJobSchema, type TPostSchema, type TQuestionSchema, type TReadAndAcknowledgeQuestionSchema, type TUserIdAndCreatedAtSchema, TermsAcceptedSchema, UserAdditionalInfoSchema, UserCertificationSchema, UserCompletenessSchema, UserCoordinatorProfileSchema, UserDetailType, UserGeneralDetailSchema, UserIdAndCreatedAtSchema, UserInterestSchema, UserJobPreferencesSchema, UserLanguageSchema, type UserProfileOverview, UserProfileVisibility, UserProjectSchema, UserRecruiterProfileSchema, UserRole, UserSchema, UserSkillSchema, UserStatus, WorkExperienceSchema, WorkMode, categoryOfIndustry, categoryOfSubCategory, dateString, deriveIndustry, getSchemaByQuestion, industriesOfCategory, industryOfSubCategory, subCategoriesOfIndustry };
|