@thejob/schema 2.1.3 → 2.1.5
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/.claude/settings.local.json +5 -5
- package/CLAUDE.md +85 -0
- package/dist/index.cjs +234 -138
- package/dist/index.d.cts +203 -129
- package/dist/index.d.ts +203 -129
- package/dist/index.js +198 -107
- package/package.json +1 -1
- package/src/index.ts +6 -0
- package/src/saved-search/saved-search.constant.ts +17 -0
- package/src/saved-search/saved-search.schema.ts +84 -0
- package/src/user/general-detail.schema.ts +27 -5
- package/src/user/user.constant.ts +20 -0
package/dist/index.d.ts
CHANGED
|
@@ -1474,6 +1474,198 @@ declare const DefaultPaginationOptions: {
|
|
|
1474
1474
|
limit: number;
|
|
1475
1475
|
};
|
|
1476
1476
|
|
|
1477
|
+
declare enum UserRole {
|
|
1478
|
+
Admin = "admin",
|
|
1479
|
+
Moderator = "moderator",
|
|
1480
|
+
Manager = "manager",
|
|
1481
|
+
Recruiter = "recruiter",
|
|
1482
|
+
JobSeeker = "job_seeker",
|
|
1483
|
+
Coordinator = "coordinator",
|
|
1484
|
+
System = "system",
|
|
1485
|
+
Normal = "normal"
|
|
1486
|
+
}
|
|
1487
|
+
declare const SupportedUserRoles: UserRole[];
|
|
1488
|
+
declare enum UserStatus {
|
|
1489
|
+
Active = "active",
|
|
1490
|
+
Blocked = "blocked",
|
|
1491
|
+
Pending = "pending",
|
|
1492
|
+
Deleted = "deleted",
|
|
1493
|
+
MarkedForDeletion = "marked_for_deletion"
|
|
1494
|
+
}
|
|
1495
|
+
declare const SupportedUserStatuses: UserStatus[];
|
|
1496
|
+
declare const DefaultUserRoles: UserRole[];
|
|
1497
|
+
declare enum UserProfileVisibility {
|
|
1498
|
+
Public = "public",
|
|
1499
|
+
Private = "private",
|
|
1500
|
+
Hidden = "hidden"
|
|
1501
|
+
}
|
|
1502
|
+
declare const SupportedUserProfileVisibilities: UserProfileVisibility[];
|
|
1503
|
+
/**
|
|
1504
|
+
* How a user's `signupContext` was obtained. Stored on the document, so these
|
|
1505
|
+
* strings are data: lowercase, and a rename is a migration.
|
|
1506
|
+
*
|
|
1507
|
+
* The distinction is deliberate. Only `CfHeader` is measured; the other two are
|
|
1508
|
+
* inferred, and `Default` is a bare presumption with no signal behind it at all.
|
|
1509
|
+
* Collapsing them would make an assumed country indistinguishable from an
|
|
1510
|
+
* observed one, which is precisely what a compliance record must not do.
|
|
1511
|
+
*/
|
|
1512
|
+
declare enum SignupContextSource {
|
|
1513
|
+
/** Measured from Cloudflare's `cf-ipcountry` header at sign-up. */
|
|
1514
|
+
CfHeader = "cf-header",
|
|
1515
|
+
/** Derived from the user's self-entered profile location (backfill). */
|
|
1516
|
+
Location = "location",
|
|
1517
|
+
/** Assumed; no signal was available. A presumption, not evidence. */
|
|
1518
|
+
Default = "default"
|
|
1519
|
+
}
|
|
1520
|
+
declare const SupportedSignupContextSources: SignupContextSource[];
|
|
1521
|
+
declare enum UserDetailType {
|
|
1522
|
+
Overview = "overview",
|
|
1523
|
+
AdditionalInfo = "additionalInfo",
|
|
1524
|
+
General = "general",
|
|
1525
|
+
SocialAccounts = "socialAccounts",
|
|
1526
|
+
WorkExperiences = "workExperiences",
|
|
1527
|
+
Educations = "educations",
|
|
1528
|
+
Skills = "skills",
|
|
1529
|
+
Languages = "languages",
|
|
1530
|
+
Certifications = "certifications",
|
|
1531
|
+
Interests = "interests",
|
|
1532
|
+
Projects = "projects"
|
|
1533
|
+
}
|
|
1534
|
+
declare enum ProficiencyLevel {
|
|
1535
|
+
BasicAwareness = "basic_awareness",
|
|
1536
|
+
Beginner = "beginner",
|
|
1537
|
+
Intermediate = "intermediate",
|
|
1538
|
+
Advanced = "advanced",
|
|
1539
|
+
Expert = "expert"
|
|
1540
|
+
}
|
|
1541
|
+
declare const SupportedProficiencyLevels: ProficiencyLevel[];
|
|
1542
|
+
declare enum JobSearchUrgency {
|
|
1543
|
+
Asap = "asap",
|
|
1544
|
+
WithinThreeMonths = "within_3_months",
|
|
1545
|
+
WithinSixMonths = "within_6_months",
|
|
1546
|
+
PassivelyBrowsing = "passively_browsing"
|
|
1547
|
+
}
|
|
1548
|
+
declare const SupportedJobSearchUrgencies: JobSearchUrgency[];
|
|
1549
|
+
/**
|
|
1550
|
+
* How the user heard about the platform - captured at the end of onboarding
|
|
1551
|
+
* for marketing attribution.
|
|
1552
|
+
*/
|
|
1553
|
+
declare enum ReferralSource {
|
|
1554
|
+
Recruiter = "recruiter",
|
|
1555
|
+
LinkedIn = "linkedin",
|
|
1556
|
+
TikTokInstagram = "tiktok_instagram",
|
|
1557
|
+
Google = "google",
|
|
1558
|
+
Reddit = "reddit",
|
|
1559
|
+
ChatGptGemini = "chatgpt_gemini",
|
|
1560
|
+
Friend = "friend",
|
|
1561
|
+
Other = "other"
|
|
1562
|
+
}
|
|
1563
|
+
declare const SupportedReferralSources: ReferralSource[];
|
|
1564
|
+
/**
|
|
1565
|
+
* How often a subscribed user receives job-alert emails. `Off` disables job
|
|
1566
|
+
* alerts specifically while leaving other marketing (newsletters, product
|
|
1567
|
+
* updates) governed by `marketingConsent.subscribed`.
|
|
1568
|
+
*/
|
|
1569
|
+
declare enum JobAlertFrequency {
|
|
1570
|
+
Off = "off",
|
|
1571
|
+
Daily = "daily",
|
|
1572
|
+
Weekly = "weekly"
|
|
1573
|
+
}
|
|
1574
|
+
declare const SupportedJobAlertFrequencies: JobAlertFrequency[];
|
|
1575
|
+
/**
|
|
1576
|
+
* Channels of NOTIFICATION email — mail about activity on the user's own
|
|
1577
|
+
* account (a group invite, a job of theirs expiring). Distinct from marketing:
|
|
1578
|
+
* notifications are opt-OUT (default on, see `notificationPrefs`), marketing is
|
|
1579
|
+
* opt-IN (`marketingConsent.subscribed`). Transactional mail (magic-link,
|
|
1580
|
+
* verification) is governed by neither and always sends.
|
|
1581
|
+
*
|
|
1582
|
+
* Deliberately coarse: four channels a user will actually reason about, rather
|
|
1583
|
+
* than one toggle per email template.
|
|
1584
|
+
*/
|
|
1585
|
+
declare enum NotificationChannel {
|
|
1586
|
+
/** Group invites, join requests, membership approved/rejected. */
|
|
1587
|
+
GroupActivity = "groupActivity",
|
|
1588
|
+
/** Activity on jobs the user posted, e.g. a listing expiring. */
|
|
1589
|
+
JobActivity = "jobActivity",
|
|
1590
|
+
/** Status changes on jobs the user applied to. */
|
|
1591
|
+
ApplicationUpdates = "applicationUpdates",
|
|
1592
|
+
/** Product announcements and feature news. */
|
|
1593
|
+
ProductUpdates = "productUpdates"
|
|
1594
|
+
}
|
|
1595
|
+
declare const SupportedNotificationChannels: NotificationChannel[];
|
|
1596
|
+
/** ISO-4217 currency codes accepted for the salary preference (extend as needed). */
|
|
1597
|
+
declare const SupportedSalaryCurrencies: readonly ["USD", "EUR", "GBP", "SEK", "INR"];
|
|
1598
|
+
type SupportedSalaryCurrency = (typeof SupportedSalaryCurrencies)[number];
|
|
1599
|
+
/** Bounds enforced server-side on the minimum-salary slider. */
|
|
1600
|
+
declare const MIN_SALARY_LOWER_BOUND = 0;
|
|
1601
|
+
declare const MIN_SALARY_UPPER_BOUND = 1000000;
|
|
1602
|
+
/**
|
|
1603
|
+
* Profile fields whose confirmed write should drain the resume-parser's
|
|
1604
|
+
* suggestion. When the user accepts/edits one of these, the matching
|
|
1605
|
+
* `pendingPrefill.<key>` is unset in the same write so the "Suggestion"
|
|
1606
|
+
* affordance disappears on the next load ("confirmed beats prefill").
|
|
1607
|
+
*/
|
|
1608
|
+
declare const PREFILL_MIRRORED_KEYS: readonly ["headline", "aboutMe", "mobile", "location", "experienceLevel", "socialAccounts", "workExperiences", "educations"];
|
|
1609
|
+
type PrefillMirroredKey = (typeof PREFILL_MIRRORED_KEYS)[number];
|
|
1610
|
+
/**
|
|
1611
|
+
* Fields stripped from a public (non-owner) profile read. A public profile must
|
|
1612
|
+
* never expose these regardless of the caller's requested `fields`.
|
|
1613
|
+
*/
|
|
1614
|
+
declare const PRIVATE_PROFILE_FIELDS: readonly ["email", "emailVerified", "mobile", "additionalInfo"];
|
|
1615
|
+
type PrivateProfileField = (typeof PRIVATE_PROFILE_FIELDS)[number];
|
|
1616
|
+
|
|
1617
|
+
/**
|
|
1618
|
+
* Lifecycle of a saved search. Lowercase values, like every other enum in this
|
|
1619
|
+
* package: the string is stored in Mongo and compared as a literal across
|
|
1620
|
+
* services, so its casing is data rather than style.
|
|
1621
|
+
*/
|
|
1622
|
+
declare enum SavedSearchStatus {
|
|
1623
|
+
/** Matching runs and alerts may be sent. */
|
|
1624
|
+
Active = "active",
|
|
1625
|
+
/**
|
|
1626
|
+
* Kept for the user to see and re-enable, but skipped by the matching sweep.
|
|
1627
|
+
* Distinct from deleting: a user pausing alerts should not lose the query they
|
|
1628
|
+
* spent time building.
|
|
1629
|
+
*/
|
|
1630
|
+
Paused = "paused"
|
|
1631
|
+
}
|
|
1632
|
+
declare const SupportedSavedSearchStatuses: SavedSearchStatus[];
|
|
1633
|
+
|
|
1634
|
+
/**
|
|
1635
|
+
* A search a user asked to be kept, and optionally to be alerted about.
|
|
1636
|
+
*
|
|
1637
|
+
* Two jobs in one document, deliberately: the query the user built, and the
|
|
1638
|
+
* cadence at which they want it re-run for them. Splitting them would mean a
|
|
1639
|
+
* user with three saved searches and one alert preference has no way to say
|
|
1640
|
+
* which search the alert is for.
|
|
1641
|
+
*
|
|
1642
|
+
* The stored query mirrors what `GET /jobs/search-v3` accepts — a free-text
|
|
1643
|
+
* `search` plus a `filter` map — so replaying a saved search is running the same
|
|
1644
|
+
* search the user originally ran, not a second, subtly different implementation
|
|
1645
|
+
* that drifts from it.
|
|
1646
|
+
*/
|
|
1647
|
+
declare const SavedSearchSchema: yup.ObjectSchema<{
|
|
1648
|
+
shortId: string | undefined;
|
|
1649
|
+
ownerUserId: string | undefined;
|
|
1650
|
+
label: string;
|
|
1651
|
+
search: string | undefined;
|
|
1652
|
+
filter: {};
|
|
1653
|
+
frequency: JobAlertFrequency;
|
|
1654
|
+
status: SavedSearchStatus;
|
|
1655
|
+
lastNotifiedAt: number | undefined;
|
|
1656
|
+
lastMatchedAt: number | undefined;
|
|
1657
|
+
}, yup.AnyObject, {
|
|
1658
|
+
shortId: undefined;
|
|
1659
|
+
ownerUserId: undefined;
|
|
1660
|
+
label: undefined;
|
|
1661
|
+
search: undefined;
|
|
1662
|
+
filter: {};
|
|
1663
|
+
frequency: JobAlertFrequency.Off;
|
|
1664
|
+
status: SavedSearchStatus.Active;
|
|
1665
|
+
lastNotifiedAt: undefined;
|
|
1666
|
+
lastMatchedAt: undefined;
|
|
1667
|
+
}, "">;
|
|
1668
|
+
|
|
1477
1669
|
declare enum ResourceType {
|
|
1478
1670
|
Job = "job",
|
|
1479
1671
|
User = "user",
|
|
@@ -1609,128 +1801,6 @@ declare const SocialAccountSchema: yup.ObjectSchema<{
|
|
|
1609
1801
|
url: undefined;
|
|
1610
1802
|
}, "">;
|
|
1611
1803
|
|
|
1612
|
-
declare enum UserRole {
|
|
1613
|
-
Admin = "admin",
|
|
1614
|
-
Moderator = "moderator",
|
|
1615
|
-
Manager = "manager",
|
|
1616
|
-
Recruiter = "recruiter",
|
|
1617
|
-
JobSeeker = "job_seeker",
|
|
1618
|
-
Coordinator = "coordinator",
|
|
1619
|
-
System = "system",
|
|
1620
|
-
Normal = "normal"
|
|
1621
|
-
}
|
|
1622
|
-
declare const SupportedUserRoles: UserRole[];
|
|
1623
|
-
declare enum UserStatus {
|
|
1624
|
-
Active = "active",
|
|
1625
|
-
Blocked = "blocked",
|
|
1626
|
-
Pending = "pending",
|
|
1627
|
-
Deleted = "deleted",
|
|
1628
|
-
MarkedForDeletion = "marked_for_deletion"
|
|
1629
|
-
}
|
|
1630
|
-
declare const SupportedUserStatuses: UserStatus[];
|
|
1631
|
-
declare const DefaultUserRoles: UserRole[];
|
|
1632
|
-
declare enum UserProfileVisibility {
|
|
1633
|
-
Public = "public",
|
|
1634
|
-
Private = "private",
|
|
1635
|
-
Hidden = "hidden"
|
|
1636
|
-
}
|
|
1637
|
-
declare const SupportedUserProfileVisibilities: UserProfileVisibility[];
|
|
1638
|
-
declare enum UserDetailType {
|
|
1639
|
-
Overview = "overview",
|
|
1640
|
-
AdditionalInfo = "additionalInfo",
|
|
1641
|
-
General = "general",
|
|
1642
|
-
SocialAccounts = "socialAccounts",
|
|
1643
|
-
WorkExperiences = "workExperiences",
|
|
1644
|
-
Educations = "educations",
|
|
1645
|
-
Skills = "skills",
|
|
1646
|
-
Languages = "languages",
|
|
1647
|
-
Certifications = "certifications",
|
|
1648
|
-
Interests = "interests",
|
|
1649
|
-
Projects = "projects"
|
|
1650
|
-
}
|
|
1651
|
-
declare enum ProficiencyLevel {
|
|
1652
|
-
BasicAwareness = "basic_awareness",
|
|
1653
|
-
Beginner = "beginner",
|
|
1654
|
-
Intermediate = "intermediate",
|
|
1655
|
-
Advanced = "advanced",
|
|
1656
|
-
Expert = "expert"
|
|
1657
|
-
}
|
|
1658
|
-
declare const SupportedProficiencyLevels: ProficiencyLevel[];
|
|
1659
|
-
declare enum JobSearchUrgency {
|
|
1660
|
-
Asap = "asap",
|
|
1661
|
-
WithinThreeMonths = "within_3_months",
|
|
1662
|
-
WithinSixMonths = "within_6_months",
|
|
1663
|
-
PassivelyBrowsing = "passively_browsing"
|
|
1664
|
-
}
|
|
1665
|
-
declare const SupportedJobSearchUrgencies: JobSearchUrgency[];
|
|
1666
|
-
/**
|
|
1667
|
-
* How the user heard about the platform - captured at the end of onboarding
|
|
1668
|
-
* for marketing attribution.
|
|
1669
|
-
*/
|
|
1670
|
-
declare enum ReferralSource {
|
|
1671
|
-
Recruiter = "recruiter",
|
|
1672
|
-
LinkedIn = "linkedin",
|
|
1673
|
-
TikTokInstagram = "tiktok_instagram",
|
|
1674
|
-
Google = "google",
|
|
1675
|
-
Reddit = "reddit",
|
|
1676
|
-
ChatGptGemini = "chatgpt_gemini",
|
|
1677
|
-
Friend = "friend",
|
|
1678
|
-
Other = "other"
|
|
1679
|
-
}
|
|
1680
|
-
declare const SupportedReferralSources: ReferralSource[];
|
|
1681
|
-
/**
|
|
1682
|
-
* How often a subscribed user receives job-alert emails. `Off` disables job
|
|
1683
|
-
* alerts specifically while leaving other marketing (newsletters, product
|
|
1684
|
-
* updates) governed by `marketingConsent.subscribed`.
|
|
1685
|
-
*/
|
|
1686
|
-
declare enum JobAlertFrequency {
|
|
1687
|
-
Off = "off",
|
|
1688
|
-
Daily = "daily",
|
|
1689
|
-
Weekly = "weekly"
|
|
1690
|
-
}
|
|
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[];
|
|
1713
|
-
/** ISO-4217 currency codes accepted for the salary preference (extend as needed). */
|
|
1714
|
-
declare const SupportedSalaryCurrencies: readonly ["USD", "EUR", "GBP", "SEK", "INR"];
|
|
1715
|
-
type SupportedSalaryCurrency = (typeof SupportedSalaryCurrencies)[number];
|
|
1716
|
-
/** Bounds enforced server-side on the minimum-salary slider. */
|
|
1717
|
-
declare const MIN_SALARY_LOWER_BOUND = 0;
|
|
1718
|
-
declare const MIN_SALARY_UPPER_BOUND = 1000000;
|
|
1719
|
-
/**
|
|
1720
|
-
* Profile fields whose confirmed write should drain the resume-parser's
|
|
1721
|
-
* suggestion. When the user accepts/edits one of these, the matching
|
|
1722
|
-
* `pendingPrefill.<key>` is unset in the same write so the "Suggestion"
|
|
1723
|
-
* affordance disappears on the next load ("confirmed beats prefill").
|
|
1724
|
-
*/
|
|
1725
|
-
declare const PREFILL_MIRRORED_KEYS: readonly ["headline", "aboutMe", "mobile", "location", "experienceLevel", "socialAccounts", "workExperiences", "educations"];
|
|
1726
|
-
type PrefillMirroredKey = (typeof PREFILL_MIRRORED_KEYS)[number];
|
|
1727
|
-
/**
|
|
1728
|
-
* Fields stripped from a public (non-owner) profile read. A public profile must
|
|
1729
|
-
* never expose these regardless of the caller's requested `fields`.
|
|
1730
|
-
*/
|
|
1731
|
-
declare const PRIVATE_PROFILE_FIELDS: readonly ["email", "emailVerified", "mobile", "additionalInfo"];
|
|
1732
|
-
type PrivateProfileField = (typeof PRIVATE_PROFILE_FIELDS)[number];
|
|
1733
|
-
|
|
1734
1804
|
declare const UserSchema: yup.ObjectSchema<{
|
|
1735
1805
|
authAccountId: string;
|
|
1736
1806
|
socialAccounts: {
|
|
@@ -1880,9 +1950,11 @@ declare const UserSchema: yup.ObjectSchema<{
|
|
|
1880
1950
|
coordinates: number[];
|
|
1881
1951
|
};
|
|
1882
1952
|
};
|
|
1883
|
-
|
|
1953
|
+
signupContext: {
|
|
1884
1954
|
country: string;
|
|
1885
|
-
|
|
1955
|
+
at: number;
|
|
1956
|
+
locale: string;
|
|
1957
|
+
source: NonNullable<SignupContextSource | undefined>;
|
|
1886
1958
|
} | undefined;
|
|
1887
1959
|
profileVisibility: UserProfileVisibility;
|
|
1888
1960
|
openToWork: boolean;
|
|
@@ -2085,7 +2157,7 @@ declare const UserSchema: yup.ObjectSchema<{
|
|
|
2085
2157
|
coordinates: "";
|
|
2086
2158
|
};
|
|
2087
2159
|
};
|
|
2088
|
-
|
|
2160
|
+
signupContext: undefined;
|
|
2089
2161
|
profileVisibility: UserProfileVisibility.Public;
|
|
2090
2162
|
openToWork: false;
|
|
2091
2163
|
jobSearchUrgency: undefined;
|
|
@@ -2137,9 +2209,11 @@ declare const UserGeneralDetailSchema: yup.ObjectSchema<{
|
|
|
2137
2209
|
coordinates: number[];
|
|
2138
2210
|
};
|
|
2139
2211
|
};
|
|
2140
|
-
|
|
2212
|
+
signupContext: {
|
|
2141
2213
|
country: string;
|
|
2142
|
-
|
|
2214
|
+
at: number;
|
|
2215
|
+
locale: string;
|
|
2216
|
+
source: NonNullable<SignupContextSource | undefined>;
|
|
2143
2217
|
} | undefined;
|
|
2144
2218
|
profileVisibility: UserProfileVisibility;
|
|
2145
2219
|
}, yup.AnyObject, {
|
|
@@ -2169,7 +2243,7 @@ declare const UserGeneralDetailSchema: yup.ObjectSchema<{
|
|
|
2169
2243
|
coordinates: "";
|
|
2170
2244
|
};
|
|
2171
2245
|
};
|
|
2172
|
-
|
|
2246
|
+
signupContext: undefined;
|
|
2173
2247
|
profileVisibility: UserProfileVisibility.Public;
|
|
2174
2248
|
}, "">;
|
|
2175
2249
|
|
|
@@ -2943,4 +3017,4 @@ declare const StudentCompletenessSchema: yup.ObjectSchema<{
|
|
|
2943
3017
|
};
|
|
2944
3018
|
}, "">;
|
|
2945
3019
|
|
|
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 };
|
|
3020
|
+
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, SavedSearchSchema, SavedSearchStatus, SignupContextSource, 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, SupportedSavedSearchStatuses, SupportedSignupContextSources, 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 };
|