@experts_hub/shared 1.0.140 → 1.0.142
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/entities/index.d.ts +1 -0
- package/dist/entities/interview.entity.d.ts +20 -0
- package/dist/entities/job.entity.d.ts +2 -0
- package/dist/entities/user.entity.d.ts +2 -0
- package/dist/index.d.mts +21 -1
- package/dist/index.d.ts +21 -1
- package/dist/index.js +237 -170
- package/dist/index.mjs +235 -170
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -955,10 +955,10 @@ import {
|
|
|
955
955
|
} from "class-validator";
|
|
956
956
|
|
|
957
957
|
// src/entities/rating.entity.ts
|
|
958
|
-
import { Entity as
|
|
958
|
+
import { Entity as Entity17, Column as Column18, ManyToOne as ManyToOne16, JoinColumn as JoinColumn16, Index as Index14 } from "typeorm";
|
|
959
959
|
|
|
960
960
|
// src/entities/user.entity.ts
|
|
961
|
-
import { Entity as
|
|
961
|
+
import { Entity as Entity16, Column as Column17, OneToMany as OneToMany6, OneToOne, Index as Index13, ManyToOne as ManyToOne15, JoinColumn as JoinColumn15 } from "typeorm";
|
|
962
962
|
|
|
963
963
|
// src/entities/base.entity.ts
|
|
964
964
|
import {
|
|
@@ -1370,11 +1370,11 @@ CompanyProfile = __decorateClass([
|
|
|
1370
1370
|
|
|
1371
1371
|
// src/entities/job.entity.ts
|
|
1372
1372
|
import {
|
|
1373
|
-
Entity as
|
|
1374
|
-
Column as
|
|
1375
|
-
Index as
|
|
1376
|
-
ManyToOne as
|
|
1377
|
-
JoinColumn as
|
|
1373
|
+
Entity as Entity10,
|
|
1374
|
+
Column as Column11,
|
|
1375
|
+
Index as Index7,
|
|
1376
|
+
ManyToOne as ManyToOne9,
|
|
1377
|
+
JoinColumn as JoinColumn9,
|
|
1378
1378
|
OneToMany as OneToMany4
|
|
1379
1379
|
} from "typeorm";
|
|
1380
1380
|
|
|
@@ -1546,6 +1546,61 @@ JobApplication = __decorateClass([
|
|
|
1546
1546
|
Entity8("job_applications")
|
|
1547
1547
|
], JobApplication);
|
|
1548
1548
|
|
|
1549
|
+
// src/entities/interview.entity.ts
|
|
1550
|
+
import { Entity as Entity9, Column as Column10, Index as Index6, ManyToOne as ManyToOne8, JoinColumn as JoinColumn8 } from "typeorm";
|
|
1551
|
+
var InterviewStatusEnum = /* @__PURE__ */ ((InterviewStatusEnum2) => {
|
|
1552
|
+
InterviewStatusEnum2["DRAFTED"] = "DRAFTED";
|
|
1553
|
+
InterviewStatusEnum2["PUBLISHED"] = "PUBLISHED";
|
|
1554
|
+
InterviewStatusEnum2["INACTIVE"] = "INACTIVE";
|
|
1555
|
+
InterviewStatusEnum2["DISCARDED"] = "DISCARDED";
|
|
1556
|
+
InterviewStatusEnum2["ARCHIVED"] = "ARCHIVED";
|
|
1557
|
+
return InterviewStatusEnum2;
|
|
1558
|
+
})(InterviewStatusEnum || {});
|
|
1559
|
+
var Interview = class extends BaseEntity {
|
|
1560
|
+
};
|
|
1561
|
+
__decorateClass([
|
|
1562
|
+
Column10({
|
|
1563
|
+
name: "interview_id",
|
|
1564
|
+
type: "varchar",
|
|
1565
|
+
unique: true,
|
|
1566
|
+
nullable: true
|
|
1567
|
+
}),
|
|
1568
|
+
Index6()
|
|
1569
|
+
], Interview.prototype, "interviewId", 2);
|
|
1570
|
+
__decorateClass([
|
|
1571
|
+
Column10({ name: "user_id", type: "integer", nullable: true }),
|
|
1572
|
+
Index6()
|
|
1573
|
+
], Interview.prototype, "userId", 2);
|
|
1574
|
+
__decorateClass([
|
|
1575
|
+
ManyToOne8(() => User, (user) => user.interviews),
|
|
1576
|
+
JoinColumn8({ name: "user_id" })
|
|
1577
|
+
], Interview.prototype, "user", 2);
|
|
1578
|
+
__decorateClass([
|
|
1579
|
+
Column10({ name: "interview_name", type: "varchar", nullable: true })
|
|
1580
|
+
], Interview.prototype, "interviewName", 2);
|
|
1581
|
+
__decorateClass([
|
|
1582
|
+
Column10({ name: "job_id", type: "integer" }),
|
|
1583
|
+
Index6()
|
|
1584
|
+
], Interview.prototype, "jobId", 2);
|
|
1585
|
+
__decorateClass([
|
|
1586
|
+
ManyToOne8(() => Job, (job) => job.interviews, { onDelete: "CASCADE" }),
|
|
1587
|
+
JoinColumn8({ name: "job_id" })
|
|
1588
|
+
], Interview.prototype, "job", 2);
|
|
1589
|
+
__decorateClass([
|
|
1590
|
+
Column10({ name: "interview_type", type: "varchar", nullable: true })
|
|
1591
|
+
], Interview.prototype, "interviewType", 2);
|
|
1592
|
+
__decorateClass([
|
|
1593
|
+
Column10({
|
|
1594
|
+
name: "status",
|
|
1595
|
+
type: "enum",
|
|
1596
|
+
enum: InterviewStatusEnum,
|
|
1597
|
+
default: "DRAFTED" /* DRAFTED */
|
|
1598
|
+
})
|
|
1599
|
+
], Interview.prototype, "status", 2);
|
|
1600
|
+
Interview = __decorateClass([
|
|
1601
|
+
Entity9("interviews")
|
|
1602
|
+
], Interview);
|
|
1603
|
+
|
|
1549
1604
|
// src/entities/job.entity.ts
|
|
1550
1605
|
var JobLocationEnum = /* @__PURE__ */ ((JobLocationEnum2) => {
|
|
1551
1606
|
JobLocationEnum2["ONSITE"] = "ONSITE";
|
|
@@ -1583,28 +1638,28 @@ var DurationTypeEnum = /* @__PURE__ */ ((DurationTypeEnum2) => {
|
|
|
1583
1638
|
var Job = class extends BaseEntity {
|
|
1584
1639
|
};
|
|
1585
1640
|
__decorateClass([
|
|
1586
|
-
|
|
1641
|
+
Column11({ name: "job_id", type: "varchar", unique: true, nullable: true })
|
|
1587
1642
|
], Job.prototype, "jobId", 2);
|
|
1588
1643
|
// individual index to find jobs by user
|
|
1589
1644
|
__decorateClass([
|
|
1590
|
-
|
|
1591
|
-
|
|
1645
|
+
Column11({ name: "user_id", type: "integer", nullable: true }),
|
|
1646
|
+
Index7()
|
|
1592
1647
|
], Job.prototype, "userId", 2);
|
|
1593
1648
|
__decorateClass([
|
|
1594
|
-
|
|
1595
|
-
|
|
1649
|
+
ManyToOne9(() => User, (user) => user.jobs),
|
|
1650
|
+
JoinColumn9({ name: "user_id" })
|
|
1596
1651
|
], Job.prototype, "user", 2);
|
|
1597
1652
|
__decorateClass([
|
|
1598
|
-
|
|
1653
|
+
Column11({ name: "job_role", type: "varchar", nullable: true })
|
|
1599
1654
|
], Job.prototype, "jobRole", 2);
|
|
1600
1655
|
__decorateClass([
|
|
1601
|
-
|
|
1656
|
+
Column11({ name: "note", type: "varchar", nullable: true })
|
|
1602
1657
|
], Job.prototype, "note", 2);
|
|
1603
1658
|
__decorateClass([
|
|
1604
|
-
|
|
1659
|
+
Column11({ name: "openings", type: "integer", default: 0 })
|
|
1605
1660
|
], Job.prototype, "openings", 2);
|
|
1606
1661
|
__decorateClass([
|
|
1607
|
-
|
|
1662
|
+
Column11({
|
|
1608
1663
|
name: "location",
|
|
1609
1664
|
type: "enum",
|
|
1610
1665
|
enum: JobLocationEnum,
|
|
@@ -1612,7 +1667,7 @@ __decorateClass([
|
|
|
1612
1667
|
})
|
|
1613
1668
|
], Job.prototype, "location", 2);
|
|
1614
1669
|
__decorateClass([
|
|
1615
|
-
|
|
1670
|
+
Column11({
|
|
1616
1671
|
name: "type_of_employment",
|
|
1617
1672
|
type: "enum",
|
|
1618
1673
|
enum: TypeOfEmploymentEnum,
|
|
@@ -1620,10 +1675,10 @@ __decorateClass([
|
|
|
1620
1675
|
})
|
|
1621
1676
|
], Job.prototype, "typeOfEmployment", 2);
|
|
1622
1677
|
__decorateClass([
|
|
1623
|
-
|
|
1678
|
+
Column11({ name: "currency", type: "varchar", default: "USD" })
|
|
1624
1679
|
], Job.prototype, "currency", 2);
|
|
1625
1680
|
__decorateClass([
|
|
1626
|
-
|
|
1681
|
+
Column11({
|
|
1627
1682
|
name: "expected_salary_from",
|
|
1628
1683
|
type: "decimal",
|
|
1629
1684
|
precision: 10,
|
|
@@ -1632,7 +1687,7 @@ __decorateClass([
|
|
|
1632
1687
|
})
|
|
1633
1688
|
], Job.prototype, "expectedSalaryFrom", 2);
|
|
1634
1689
|
__decorateClass([
|
|
1635
|
-
|
|
1690
|
+
Column11({
|
|
1636
1691
|
name: "expected_salary_to",
|
|
1637
1692
|
type: "decimal",
|
|
1638
1693
|
precision: 10,
|
|
@@ -1641,13 +1696,13 @@ __decorateClass([
|
|
|
1641
1696
|
})
|
|
1642
1697
|
], Job.prototype, "expectedSalaryTo", 2);
|
|
1643
1698
|
__decorateClass([
|
|
1644
|
-
|
|
1699
|
+
Column11({ name: "tentative_start_date", type: "date", nullable: true })
|
|
1645
1700
|
], Job.prototype, "tentativeStartDate", 2);
|
|
1646
1701
|
__decorateClass([
|
|
1647
|
-
|
|
1702
|
+
Column11({ name: "duration", type: "varchar", nullable: true })
|
|
1648
1703
|
], Job.prototype, "duration", 2);
|
|
1649
1704
|
__decorateClass([
|
|
1650
|
-
|
|
1705
|
+
Column11({
|
|
1651
1706
|
name: "duration_type",
|
|
1652
1707
|
type: "enum",
|
|
1653
1708
|
enum: DurationTypeEnum,
|
|
@@ -1655,13 +1710,13 @@ __decorateClass([
|
|
|
1655
1710
|
})
|
|
1656
1711
|
], Job.prototype, "durationType", 2);
|
|
1657
1712
|
__decorateClass([
|
|
1658
|
-
|
|
1713
|
+
Column11({ name: "description", type: "varchar", nullable: true })
|
|
1659
1714
|
], Job.prototype, "description", 2);
|
|
1660
1715
|
__decorateClass([
|
|
1661
|
-
|
|
1716
|
+
Column11({ name: "additional_comment", type: "varchar", nullable: true })
|
|
1662
1717
|
], Job.prototype, "additionalComment", 2);
|
|
1663
1718
|
__decorateClass([
|
|
1664
|
-
|
|
1719
|
+
Column11({
|
|
1665
1720
|
name: "onboarding_tat",
|
|
1666
1721
|
type: "varchar",
|
|
1667
1722
|
length: 50,
|
|
@@ -1669,14 +1724,14 @@ __decorateClass([
|
|
|
1669
1724
|
})
|
|
1670
1725
|
], Job.prototype, "onboardingTat", 2);
|
|
1671
1726
|
__decorateClass([
|
|
1672
|
-
|
|
1727
|
+
Column11({
|
|
1673
1728
|
name: "candidate_communication_skills",
|
|
1674
1729
|
type: "varchar",
|
|
1675
1730
|
nullable: true
|
|
1676
1731
|
})
|
|
1677
1732
|
], Job.prototype, "candidateCommunicationSkills", 2);
|
|
1678
1733
|
__decorateClass([
|
|
1679
|
-
|
|
1734
|
+
Column11({
|
|
1680
1735
|
name: "step_completed",
|
|
1681
1736
|
type: "enum",
|
|
1682
1737
|
enum: Step,
|
|
@@ -1684,7 +1739,7 @@ __decorateClass([
|
|
|
1684
1739
|
})
|
|
1685
1740
|
], Job.prototype, "stepCompleted", 2);
|
|
1686
1741
|
__decorateClass([
|
|
1687
|
-
|
|
1742
|
+
Column11({
|
|
1688
1743
|
name: "status",
|
|
1689
1744
|
type: "enum",
|
|
1690
1745
|
enum: JobStatusEnum,
|
|
@@ -1692,10 +1747,10 @@ __decorateClass([
|
|
|
1692
1747
|
})
|
|
1693
1748
|
], Job.prototype, "status", 2);
|
|
1694
1749
|
__decorateClass([
|
|
1695
|
-
|
|
1750
|
+
Column11({ name: "viewed_count", type: "integer", default: 0 })
|
|
1696
1751
|
], Job.prototype, "viewedCount", 2);
|
|
1697
1752
|
__decorateClass([
|
|
1698
|
-
|
|
1753
|
+
Column11({ name: "application_count", type: "integer", default: 0 })
|
|
1699
1754
|
], Job.prototype, "applicationCount", 2);
|
|
1700
1755
|
__decorateClass([
|
|
1701
1756
|
OneToMany4(() => JobSkill, (jobSkill) => jobSkill.job, { cascade: true })
|
|
@@ -1705,17 +1760,22 @@ __decorateClass([
|
|
|
1705
1760
|
cascade: true
|
|
1706
1761
|
})
|
|
1707
1762
|
], Job.prototype, "jobApplications", 2);
|
|
1763
|
+
__decorateClass([
|
|
1764
|
+
OneToMany4(() => Interview, (interview) => interview.job, {
|
|
1765
|
+
cascade: true
|
|
1766
|
+
})
|
|
1767
|
+
], Job.prototype, "interviews", 2);
|
|
1708
1768
|
Job = __decorateClass([
|
|
1709
|
-
|
|
1769
|
+
Entity10("jobs")
|
|
1710
1770
|
], Job);
|
|
1711
1771
|
|
|
1712
1772
|
// src/entities/bank-details.entity.ts
|
|
1713
1773
|
import {
|
|
1714
|
-
Entity as
|
|
1715
|
-
Column as
|
|
1716
|
-
Index as
|
|
1717
|
-
ManyToOne as
|
|
1718
|
-
JoinColumn as
|
|
1774
|
+
Entity as Entity11,
|
|
1775
|
+
Column as Column12,
|
|
1776
|
+
Index as Index8,
|
|
1777
|
+
ManyToOne as ManyToOne10,
|
|
1778
|
+
JoinColumn as JoinColumn10
|
|
1719
1779
|
} from "typeorm";
|
|
1720
1780
|
var BankAccountTypeEnum = /* @__PURE__ */ ((BankAccountTypeEnum2) => {
|
|
1721
1781
|
BankAccountTypeEnum2["PRIMARY"] = "PRIMARY";
|
|
@@ -1731,48 +1791,48 @@ var BankDetail = class extends BaseEntity {
|
|
|
1731
1791
|
};
|
|
1732
1792
|
// individual index to find bank details by user
|
|
1733
1793
|
__decorateClass([
|
|
1734
|
-
|
|
1735
|
-
|
|
1794
|
+
Column12({ name: "user_id", type: "integer", nullable: true }),
|
|
1795
|
+
Index8()
|
|
1736
1796
|
], BankDetail.prototype, "userId", 2);
|
|
1737
1797
|
__decorateClass([
|
|
1738
|
-
|
|
1739
|
-
|
|
1798
|
+
ManyToOne10(() => User, (user) => user.bankDetail),
|
|
1799
|
+
JoinColumn10({ name: "user_id" })
|
|
1740
1800
|
], BankDetail.prototype, "user", 2);
|
|
1741
1801
|
__decorateClass([
|
|
1742
|
-
|
|
1802
|
+
Column12({ name: "name", type: "varchar", nullable: true })
|
|
1743
1803
|
], BankDetail.prototype, "name", 2);
|
|
1744
1804
|
__decorateClass([
|
|
1745
|
-
|
|
1805
|
+
Column12({ name: "mobile", type: "varchar", unique: true, nullable: true })
|
|
1746
1806
|
], BankDetail.prototype, "mobile", 2);
|
|
1747
1807
|
__decorateClass([
|
|
1748
|
-
|
|
1808
|
+
Column12({ name: "email", type: "varchar", unique: true })
|
|
1749
1809
|
], BankDetail.prototype, "email", 2);
|
|
1750
1810
|
__decorateClass([
|
|
1751
|
-
|
|
1811
|
+
Column12({ name: "address", type: "varchar", nullable: true })
|
|
1752
1812
|
], BankDetail.prototype, "address", 2);
|
|
1753
1813
|
__decorateClass([
|
|
1754
|
-
|
|
1814
|
+
Column12({ name: "account_number", type: "varchar", unique: true, nullable: true })
|
|
1755
1815
|
], BankDetail.prototype, "accountNumber", 2);
|
|
1756
1816
|
__decorateClass([
|
|
1757
|
-
|
|
1817
|
+
Column12({ name: "bank_name", type: "varchar", nullable: true })
|
|
1758
1818
|
], BankDetail.prototype, "bankName", 2);
|
|
1759
1819
|
__decorateClass([
|
|
1760
|
-
|
|
1820
|
+
Column12({ name: "ifsc_code", type: "varchar", nullable: true })
|
|
1761
1821
|
], BankDetail.prototype, "ifscCode", 2);
|
|
1762
1822
|
__decorateClass([
|
|
1763
|
-
|
|
1823
|
+
Column12({ name: "branch_name", type: "varchar", nullable: true })
|
|
1764
1824
|
], BankDetail.prototype, "branchName", 2);
|
|
1765
1825
|
__decorateClass([
|
|
1766
|
-
|
|
1826
|
+
Column12({ name: "routing_no", type: "varchar", nullable: true })
|
|
1767
1827
|
], BankDetail.prototype, "routingNo", 2);
|
|
1768
1828
|
__decorateClass([
|
|
1769
|
-
|
|
1829
|
+
Column12({ name: "aba_no", type: "varchar", nullable: true })
|
|
1770
1830
|
], BankDetail.prototype, "abaNumber", 2);
|
|
1771
1831
|
__decorateClass([
|
|
1772
|
-
|
|
1832
|
+
Column12({ name: "iban", type: "varchar", nullable: true })
|
|
1773
1833
|
], BankDetail.prototype, "iban", 2);
|
|
1774
1834
|
__decorateClass([
|
|
1775
|
-
|
|
1835
|
+
Column12({
|
|
1776
1836
|
name: "account_type",
|
|
1777
1837
|
type: "enum",
|
|
1778
1838
|
enum: BankAccountTypeEnum,
|
|
@@ -1780,7 +1840,7 @@ __decorateClass([
|
|
|
1780
1840
|
})
|
|
1781
1841
|
], BankDetail.prototype, "accountType", 2);
|
|
1782
1842
|
__decorateClass([
|
|
1783
|
-
|
|
1843
|
+
Column12({
|
|
1784
1844
|
name: "account_scope",
|
|
1785
1845
|
type: "enum",
|
|
1786
1846
|
enum: BankAccountScopeEnum,
|
|
@@ -1788,133 +1848,133 @@ __decorateClass([
|
|
|
1788
1848
|
})
|
|
1789
1849
|
], BankDetail.prototype, "accountScope", 2);
|
|
1790
1850
|
BankDetail = __decorateClass([
|
|
1791
|
-
|
|
1851
|
+
Entity11("bank_details")
|
|
1792
1852
|
], BankDetail);
|
|
1793
1853
|
|
|
1794
1854
|
// src/entities/system-preference.entity.ts
|
|
1795
1855
|
import {
|
|
1796
|
-
Entity as
|
|
1797
|
-
Column as
|
|
1798
|
-
Index as
|
|
1799
|
-
ManyToOne as
|
|
1800
|
-
JoinColumn as
|
|
1856
|
+
Entity as Entity12,
|
|
1857
|
+
Column as Column13,
|
|
1858
|
+
Index as Index9,
|
|
1859
|
+
ManyToOne as ManyToOne11,
|
|
1860
|
+
JoinColumn as JoinColumn11
|
|
1801
1861
|
} from "typeorm";
|
|
1802
1862
|
var SystemPreference = class extends BaseEntity {
|
|
1803
1863
|
};
|
|
1804
1864
|
// individual index to find system preference by user
|
|
1805
1865
|
__decorateClass([
|
|
1806
|
-
|
|
1807
|
-
|
|
1866
|
+
Column13({ name: "user_id", type: "integer", nullable: true }),
|
|
1867
|
+
Index9()
|
|
1808
1868
|
], SystemPreference.prototype, "userId", 2);
|
|
1809
1869
|
__decorateClass([
|
|
1810
|
-
|
|
1811
|
-
|
|
1870
|
+
ManyToOne11(() => User, (user) => user.systemPreference),
|
|
1871
|
+
JoinColumn11({ name: "user_id" })
|
|
1812
1872
|
], SystemPreference.prototype, "user", 2);
|
|
1813
1873
|
__decorateClass([
|
|
1814
|
-
|
|
1874
|
+
Column13({ name: "key", type: "varchar", unique: true, nullable: false })
|
|
1815
1875
|
], SystemPreference.prototype, "key", 2);
|
|
1816
1876
|
__decorateClass([
|
|
1817
|
-
|
|
1877
|
+
Column13({ name: "value", type: "boolean", default: false })
|
|
1818
1878
|
], SystemPreference.prototype, "value", 2);
|
|
1819
1879
|
SystemPreference = __decorateClass([
|
|
1820
|
-
|
|
1880
|
+
Entity12("system_preferences")
|
|
1821
1881
|
], SystemPreference);
|
|
1822
1882
|
|
|
1823
1883
|
// src/entities/company-role.entity.ts
|
|
1824
|
-
import { Column as
|
|
1884
|
+
import { Column as Column14, Entity as Entity13, Index as Index10, JoinColumn as JoinColumn12, ManyToOne as ManyToOne12 } from "typeorm";
|
|
1825
1885
|
var CompanyRole = class extends BaseEntity {
|
|
1826
1886
|
};
|
|
1827
1887
|
// individual index to find company roles by user
|
|
1828
1888
|
__decorateClass([
|
|
1829
|
-
|
|
1830
|
-
|
|
1889
|
+
Column14({ name: "user_id", type: "integer", nullable: true }),
|
|
1890
|
+
Index10()
|
|
1831
1891
|
], CompanyRole.prototype, "userId", 2);
|
|
1832
1892
|
__decorateClass([
|
|
1833
|
-
|
|
1834
|
-
|
|
1893
|
+
ManyToOne12(() => User, (user) => user.companyRole),
|
|
1894
|
+
JoinColumn12({ name: "user_id" })
|
|
1835
1895
|
], CompanyRole.prototype, "user", 2);
|
|
1836
1896
|
__decorateClass([
|
|
1837
|
-
|
|
1897
|
+
Column14({ name: "name", type: "varchar" })
|
|
1838
1898
|
], CompanyRole.prototype, "name", 2);
|
|
1839
1899
|
__decorateClass([
|
|
1840
|
-
|
|
1841
|
-
|
|
1900
|
+
Column14({ name: "slug", type: "varchar", nullable: true, unique: true }),
|
|
1901
|
+
Index10()
|
|
1842
1902
|
], CompanyRole.prototype, "slug", 2);
|
|
1843
1903
|
__decorateClass([
|
|
1844
|
-
|
|
1904
|
+
Column14({ name: "description", type: "text", nullable: true })
|
|
1845
1905
|
], CompanyRole.prototype, "description", 2);
|
|
1846
1906
|
__decorateClass([
|
|
1847
|
-
|
|
1907
|
+
Column14({ name: "is_active", type: "boolean", default: true })
|
|
1848
1908
|
], CompanyRole.prototype, "isActive", 2);
|
|
1849
1909
|
CompanyRole = __decorateClass([
|
|
1850
|
-
|
|
1910
|
+
Entity13("company_roles")
|
|
1851
1911
|
], CompanyRole);
|
|
1852
1912
|
|
|
1853
1913
|
// src/entities/freelancer-experience.entity.ts
|
|
1854
1914
|
import {
|
|
1855
|
-
Entity as
|
|
1856
|
-
Column as
|
|
1857
|
-
Index as
|
|
1858
|
-
ManyToOne as
|
|
1859
|
-
JoinColumn as
|
|
1915
|
+
Entity as Entity14,
|
|
1916
|
+
Column as Column15,
|
|
1917
|
+
Index as Index11,
|
|
1918
|
+
ManyToOne as ManyToOne13,
|
|
1919
|
+
JoinColumn as JoinColumn13
|
|
1860
1920
|
} from "typeorm";
|
|
1861
1921
|
var FreelancerExperience = class extends BaseEntity {
|
|
1862
1922
|
};
|
|
1863
1923
|
// individual index to find experence by user
|
|
1864
1924
|
__decorateClass([
|
|
1865
|
-
|
|
1866
|
-
|
|
1925
|
+
Column15({ name: "user_id", type: "integer", nullable: true }),
|
|
1926
|
+
Index11()
|
|
1867
1927
|
], FreelancerExperience.prototype, "userId", 2);
|
|
1868
1928
|
__decorateClass([
|
|
1869
|
-
|
|
1870
|
-
|
|
1929
|
+
ManyToOne13(() => User, (user) => user.freelancerExperience),
|
|
1930
|
+
JoinColumn13({ name: "user_id" })
|
|
1871
1931
|
], FreelancerExperience.prototype, "user", 2);
|
|
1872
1932
|
__decorateClass([
|
|
1873
|
-
|
|
1933
|
+
Column15({ name: "company_name", type: "varchar", nullable: true })
|
|
1874
1934
|
], FreelancerExperience.prototype, "companyName", 2);
|
|
1875
1935
|
__decorateClass([
|
|
1876
|
-
|
|
1936
|
+
Column15({ name: "designation", type: "varchar", nullable: true })
|
|
1877
1937
|
], FreelancerExperience.prototype, "designation", 2);
|
|
1878
1938
|
__decorateClass([
|
|
1879
|
-
|
|
1939
|
+
Column15({ name: "job_duration", type: "varchar", nullable: true })
|
|
1880
1940
|
], FreelancerExperience.prototype, "jobDuration", 2);
|
|
1881
1941
|
__decorateClass([
|
|
1882
|
-
|
|
1942
|
+
Column15({ name: "description", type: "varchar", nullable: true })
|
|
1883
1943
|
], FreelancerExperience.prototype, "description", 2);
|
|
1884
1944
|
FreelancerExperience = __decorateClass([
|
|
1885
|
-
|
|
1945
|
+
Entity14("freelancer_experiences")
|
|
1886
1946
|
], FreelancerExperience);
|
|
1887
1947
|
|
|
1888
1948
|
// src/entities/freelancer-education.entity.ts
|
|
1889
1949
|
import {
|
|
1890
|
-
Entity as
|
|
1891
|
-
Column as
|
|
1892
|
-
Index as
|
|
1893
|
-
ManyToOne as
|
|
1894
|
-
JoinColumn as
|
|
1950
|
+
Entity as Entity15,
|
|
1951
|
+
Column as Column16,
|
|
1952
|
+
Index as Index12,
|
|
1953
|
+
ManyToOne as ManyToOne14,
|
|
1954
|
+
JoinColumn as JoinColumn14
|
|
1895
1955
|
} from "typeorm";
|
|
1896
1956
|
var FreelancerEducation = class extends BaseEntity {
|
|
1897
1957
|
};
|
|
1898
1958
|
// individual index to find education by user
|
|
1899
1959
|
__decorateClass([
|
|
1900
|
-
|
|
1901
|
-
|
|
1960
|
+
Column16({ name: "user_id", type: "integer", nullable: true }),
|
|
1961
|
+
Index12()
|
|
1902
1962
|
], FreelancerEducation.prototype, "userId", 2);
|
|
1903
1963
|
__decorateClass([
|
|
1904
|
-
|
|
1905
|
-
|
|
1964
|
+
ManyToOne14(() => User, (user) => user.freelancerEducation),
|
|
1965
|
+
JoinColumn14({ name: "user_id" })
|
|
1906
1966
|
], FreelancerEducation.prototype, "user", 2);
|
|
1907
1967
|
__decorateClass([
|
|
1908
|
-
|
|
1968
|
+
Column16({ name: "degree", type: "varchar", nullable: true })
|
|
1909
1969
|
], FreelancerEducation.prototype, "degree", 2);
|
|
1910
1970
|
__decorateClass([
|
|
1911
|
-
|
|
1971
|
+
Column16({ name: "university", type: "varchar", nullable: true })
|
|
1912
1972
|
], FreelancerEducation.prototype, "university", 2);
|
|
1913
1973
|
__decorateClass([
|
|
1914
|
-
|
|
1974
|
+
Column16({ name: "year_of_graduation", type: "varchar", nullable: true })
|
|
1915
1975
|
], FreelancerEducation.prototype, "yearOfGraduation", 2);
|
|
1916
1976
|
FreelancerEducation = __decorateClass([
|
|
1917
|
-
|
|
1977
|
+
Entity15("freelancer_educations")
|
|
1918
1978
|
], FreelancerEducation);
|
|
1919
1979
|
|
|
1920
1980
|
// src/entities/user.entity.ts
|
|
@@ -1941,51 +2001,51 @@ var Provider = /* @__PURE__ */ ((Provider2) => {
|
|
|
1941
2001
|
var User = class extends BaseEntity {
|
|
1942
2002
|
};
|
|
1943
2003
|
__decorateClass([
|
|
1944
|
-
|
|
2004
|
+
Column17({ name: "unique_id", type: "varchar", unique: true })
|
|
1945
2005
|
], User.prototype, "uniqueId", 2);
|
|
1946
2006
|
__decorateClass([
|
|
1947
|
-
|
|
1948
|
-
|
|
2007
|
+
Column17({ name: "parent_id", type: "integer", nullable: true }),
|
|
2008
|
+
Index13()
|
|
1949
2009
|
], User.prototype, "parentId", 2);
|
|
1950
2010
|
__decorateClass([
|
|
1951
|
-
|
|
1952
|
-
|
|
2011
|
+
ManyToOne15(() => User, (user) => user.children, { nullable: true }),
|
|
2012
|
+
JoinColumn15({ name: "parent_id" })
|
|
1953
2013
|
], User.prototype, "parent", 2);
|
|
1954
2014
|
__decorateClass([
|
|
1955
2015
|
OneToMany6(() => User, (user) => user.parent)
|
|
1956
2016
|
], User.prototype, "children", 2);
|
|
1957
2017
|
__decorateClass([
|
|
1958
|
-
|
|
2018
|
+
Column17({ name: "username", type: "varchar", unique: true, nullable: true })
|
|
1959
2019
|
], User.prototype, "username", 2);
|
|
1960
2020
|
__decorateClass([
|
|
1961
|
-
|
|
2021
|
+
Column17({ name: "first_name", type: "varchar", length: 100, nullable: true })
|
|
1962
2022
|
], User.prototype, "firstName", 2);
|
|
1963
2023
|
__decorateClass([
|
|
1964
|
-
|
|
2024
|
+
Column17({ name: "last_name", type: "varchar", length: 100, nullable: true })
|
|
1965
2025
|
], User.prototype, "lastName", 2);
|
|
1966
2026
|
__decorateClass([
|
|
1967
|
-
|
|
2027
|
+
Column17({ name: "date_of_birth", type: "date", nullable: true })
|
|
1968
2028
|
], User.prototype, "dateOfBirth", 2);
|
|
1969
2029
|
__decorateClass([
|
|
1970
|
-
|
|
2030
|
+
Column17({ name: "gender", type: "varchar", length: 10, nullable: true })
|
|
1971
2031
|
], User.prototype, "gender", 2);
|
|
1972
2032
|
__decorateClass([
|
|
1973
|
-
|
|
2033
|
+
Column17({ name: "profile_picture_url", type: "text", nullable: true })
|
|
1974
2034
|
], User.prototype, "profilePictureUrl", 2);
|
|
1975
2035
|
__decorateClass([
|
|
1976
|
-
|
|
2036
|
+
Column17({ name: "email", type: "varchar", unique: true })
|
|
1977
2037
|
], User.prototype, "email", 2);
|
|
1978
2038
|
__decorateClass([
|
|
1979
|
-
|
|
2039
|
+
Column17({ name: "mobile_code", type: "varchar", nullable: true })
|
|
1980
2040
|
], User.prototype, "mobileCode", 2);
|
|
1981
2041
|
__decorateClass([
|
|
1982
|
-
|
|
2042
|
+
Column17({ name: "mobile", type: "varchar", unique: true, nullable: true })
|
|
1983
2043
|
], User.prototype, "mobile", 2);
|
|
1984
2044
|
__decorateClass([
|
|
1985
|
-
|
|
2045
|
+
Column17({ name: "password", type: "varchar" })
|
|
1986
2046
|
], User.prototype, "password", 2);
|
|
1987
2047
|
__decorateClass([
|
|
1988
|
-
|
|
2048
|
+
Column17({
|
|
1989
2049
|
name: "account_type",
|
|
1990
2050
|
type: "enum",
|
|
1991
2051
|
enum: AccountType,
|
|
@@ -1993,7 +2053,7 @@ __decorateClass([
|
|
|
1993
2053
|
})
|
|
1994
2054
|
], User.prototype, "accountType", 2);
|
|
1995
2055
|
__decorateClass([
|
|
1996
|
-
|
|
2056
|
+
Column17({
|
|
1997
2057
|
name: "account_status",
|
|
1998
2058
|
type: "enum",
|
|
1999
2059
|
enum: AccountStatus,
|
|
@@ -2001,26 +2061,26 @@ __decorateClass([
|
|
|
2001
2061
|
})
|
|
2002
2062
|
], User.prototype, "accountStatus", 2);
|
|
2003
2063
|
__decorateClass([
|
|
2004
|
-
|
|
2064
|
+
Column17({ name: "is_email_verified", type: "boolean", default: false })
|
|
2005
2065
|
], User.prototype, "isEmailVerified", 2);
|
|
2006
2066
|
__decorateClass([
|
|
2007
|
-
|
|
2067
|
+
Column17({ name: "is_mobile_verified", type: "boolean", default: false })
|
|
2008
2068
|
], User.prototype, "isMobileVerified", 2);
|
|
2009
2069
|
__decorateClass([
|
|
2010
|
-
|
|
2070
|
+
Column17({
|
|
2011
2071
|
name: "last_login_at",
|
|
2012
2072
|
type: "timestamp with time zone",
|
|
2013
2073
|
nullable: true
|
|
2014
2074
|
})
|
|
2015
2075
|
], User.prototype, "lastLoginAt", 2);
|
|
2016
2076
|
__decorateClass([
|
|
2017
|
-
|
|
2077
|
+
Column17({ name: "last_login_ip", type: "varchar", nullable: true })
|
|
2018
2078
|
], User.prototype, "lastLoginIp", 2);
|
|
2019
2079
|
__decorateClass([
|
|
2020
|
-
|
|
2080
|
+
Column17({ name: "reset_token", type: "varchar", nullable: true })
|
|
2021
2081
|
], User.prototype, "resetToken", 2);
|
|
2022
2082
|
__decorateClass([
|
|
2023
|
-
|
|
2083
|
+
Column17({
|
|
2024
2084
|
name: "reset_token_expire_at",
|
|
2025
2085
|
type: "timestamp with time zone",
|
|
2026
2086
|
nullable: true
|
|
@@ -2030,7 +2090,7 @@ __decorateClass([
|
|
|
2030
2090
|
OneToMany6(() => RefreshToken, (token) => token.user)
|
|
2031
2091
|
], User.prototype, "refreshTokens", 2);
|
|
2032
2092
|
__decorateClass([
|
|
2033
|
-
|
|
2093
|
+
Column17({
|
|
2034
2094
|
name: "provider",
|
|
2035
2095
|
type: "enum",
|
|
2036
2096
|
enum: Provider,
|
|
@@ -2039,16 +2099,16 @@ __decorateClass([
|
|
|
2039
2099
|
})
|
|
2040
2100
|
], User.prototype, "provider", 2);
|
|
2041
2101
|
__decorateClass([
|
|
2042
|
-
|
|
2102
|
+
Column17({ name: "provider_token", type: "varchar", nullable: true })
|
|
2043
2103
|
], User.prototype, "providerToken", 2);
|
|
2044
2104
|
__decorateClass([
|
|
2045
|
-
|
|
2105
|
+
Column17({ name: "linkedin_id", type: "varchar", nullable: true })
|
|
2046
2106
|
], User.prototype, "linkedInId", 2);
|
|
2047
2107
|
__decorateClass([
|
|
2048
|
-
|
|
2108
|
+
Column17({ name: "google_id", type: "varchar", nullable: true })
|
|
2049
2109
|
], User.prototype, "googleId", 2);
|
|
2050
2110
|
__decorateClass([
|
|
2051
|
-
|
|
2111
|
+
Column17({ name: "gitlabs_id", type: "varchar", nullable: true })
|
|
2052
2112
|
], User.prototype, "gitLabsId", 2);
|
|
2053
2113
|
__decorateClass([
|
|
2054
2114
|
OneToMany6(() => Otp, (otp) => otp.user)
|
|
@@ -2068,6 +2128,9 @@ __decorateClass([
|
|
|
2068
2128
|
__decorateClass([
|
|
2069
2129
|
OneToMany6(() => Job, (job) => job.user)
|
|
2070
2130
|
], User.prototype, "jobs", 2);
|
|
2131
|
+
__decorateClass([
|
|
2132
|
+
OneToMany6(() => Interview, (interview) => interview.user)
|
|
2133
|
+
], User.prototype, "interviews", 2);
|
|
2071
2134
|
__decorateClass([
|
|
2072
2135
|
OneToMany6(() => BankDetail, (bankDetail) => bankDetail.user)
|
|
2073
2136
|
], User.prototype, "bankDetail", 2);
|
|
@@ -2096,7 +2159,7 @@ __decorateClass([
|
|
|
2096
2159
|
OneToOne(() => FreelancerEducation, (freelancerEducation) => freelancerEducation.user)
|
|
2097
2160
|
], User.prototype, "freelancerEducation", 2);
|
|
2098
2161
|
User = __decorateClass([
|
|
2099
|
-
|
|
2162
|
+
Entity16("users")
|
|
2100
2163
|
], User);
|
|
2101
2164
|
|
|
2102
2165
|
// src/entities/rating.entity.ts
|
|
@@ -2108,36 +2171,36 @@ var RatingTypeEnum = /* @__PURE__ */ ((RatingTypeEnum2) => {
|
|
|
2108
2171
|
var Rating = class extends BaseEntity {
|
|
2109
2172
|
};
|
|
2110
2173
|
__decorateClass([
|
|
2111
|
-
|
|
2112
|
-
|
|
2174
|
+
Column18({ name: "reviewer_id", type: "integer" }),
|
|
2175
|
+
Index14()
|
|
2113
2176
|
], Rating.prototype, "reviewer_id", 2);
|
|
2114
2177
|
__decorateClass([
|
|
2115
|
-
|
|
2116
|
-
|
|
2178
|
+
ManyToOne16(() => User, { onDelete: "CASCADE" }),
|
|
2179
|
+
JoinColumn16({ name: "reviewer_id" })
|
|
2117
2180
|
], Rating.prototype, "reviewer", 2);
|
|
2118
2181
|
__decorateClass([
|
|
2119
|
-
|
|
2120
|
-
|
|
2182
|
+
Column18({ name: "reviewee_id", type: "integer" }),
|
|
2183
|
+
Index14()
|
|
2121
2184
|
], Rating.prototype, "reviewee_id", 2);
|
|
2122
2185
|
__decorateClass([
|
|
2123
|
-
|
|
2124
|
-
|
|
2186
|
+
ManyToOne16(() => User, { onDelete: "CASCADE" }),
|
|
2187
|
+
JoinColumn16({ name: "reviewee_id" })
|
|
2125
2188
|
], Rating.prototype, "reviewee", 2);
|
|
2126
2189
|
__decorateClass([
|
|
2127
|
-
|
|
2190
|
+
Column18({
|
|
2128
2191
|
type: "enum",
|
|
2129
2192
|
enum: RatingTypeEnum,
|
|
2130
2193
|
nullable: true
|
|
2131
2194
|
})
|
|
2132
2195
|
], Rating.prototype, "ratingType", 2);
|
|
2133
2196
|
__decorateClass([
|
|
2134
|
-
|
|
2197
|
+
Column18({ type: "integer", nullable: true })
|
|
2135
2198
|
], Rating.prototype, "rating", 2);
|
|
2136
2199
|
__decorateClass([
|
|
2137
|
-
|
|
2200
|
+
Column18({ type: "text", nullable: true })
|
|
2138
2201
|
], Rating.prototype, "review", 2);
|
|
2139
2202
|
Rating = __decorateClass([
|
|
2140
|
-
|
|
2203
|
+
Entity17("ratings")
|
|
2141
2204
|
], Rating);
|
|
2142
2205
|
|
|
2143
2206
|
// src/modules/rating/dto/add.rating.dto.ts
|
|
@@ -2603,7 +2666,7 @@ var NotificationRMQAdapter = (mode = "microservice") => {
|
|
|
2603
2666
|
};
|
|
2604
2667
|
|
|
2605
2668
|
// src/entities/question.entity.ts
|
|
2606
|
-
import { Entity as
|
|
2669
|
+
import { Entity as Entity18, Column as Column19 } from "typeorm";
|
|
2607
2670
|
var QuestionFor = /* @__PURE__ */ ((QuestionFor2) => {
|
|
2608
2671
|
QuestionFor2["CLIENT"] = "CLIENT";
|
|
2609
2672
|
QuestionFor2["FREELANCER"] = "FREELANCER";
|
|
@@ -2612,16 +2675,16 @@ var QuestionFor = /* @__PURE__ */ ((QuestionFor2) => {
|
|
|
2612
2675
|
var Question = class extends BaseEntity {
|
|
2613
2676
|
};
|
|
2614
2677
|
__decorateClass([
|
|
2615
|
-
|
|
2678
|
+
Column19({ name: "question", type: "varchar" })
|
|
2616
2679
|
], Question.prototype, "question", 2);
|
|
2617
2680
|
__decorateClass([
|
|
2618
|
-
|
|
2681
|
+
Column19({ name: "hint", type: "varchar", nullable: true })
|
|
2619
2682
|
], Question.prototype, "hint", 2);
|
|
2620
2683
|
__decorateClass([
|
|
2621
|
-
|
|
2684
|
+
Column19({ name: "slug", type: "varchar", nullable: true, unique: true })
|
|
2622
2685
|
], Question.prototype, "slug", 2);
|
|
2623
2686
|
__decorateClass([
|
|
2624
|
-
|
|
2687
|
+
Column19({
|
|
2625
2688
|
name: "question_for",
|
|
2626
2689
|
type: "enum",
|
|
2627
2690
|
enum: QuestionFor,
|
|
@@ -2629,76 +2692,76 @@ __decorateClass([
|
|
|
2629
2692
|
})
|
|
2630
2693
|
], Question.prototype, "questionFor", 2);
|
|
2631
2694
|
__decorateClass([
|
|
2632
|
-
|
|
2695
|
+
Column19({ name: "type", type: "varchar", nullable: true })
|
|
2633
2696
|
], Question.prototype, "type", 2);
|
|
2634
2697
|
__decorateClass([
|
|
2635
|
-
|
|
2698
|
+
Column19({ name: "options", type: "jsonb", nullable: true })
|
|
2636
2699
|
], Question.prototype, "options", 2);
|
|
2637
2700
|
__decorateClass([
|
|
2638
|
-
|
|
2701
|
+
Column19({ name: "is_active", type: "boolean", default: false })
|
|
2639
2702
|
], Question.prototype, "isActive", 2);
|
|
2640
2703
|
Question = __decorateClass([
|
|
2641
|
-
|
|
2704
|
+
Entity18("questions")
|
|
2642
2705
|
], Question);
|
|
2643
2706
|
|
|
2644
2707
|
// src/entities/job-role.entity.ts
|
|
2645
|
-
import { Entity as
|
|
2708
|
+
import { Entity as Entity19, Column as Column20 } from "typeorm";
|
|
2646
2709
|
var JobRoles = class extends BaseEntity {
|
|
2647
2710
|
};
|
|
2648
2711
|
__decorateClass([
|
|
2649
|
-
|
|
2712
|
+
Column20({ name: "slug", type: "varchar", nullable: true, unique: true })
|
|
2650
2713
|
], JobRoles.prototype, "slug", 2);
|
|
2651
2714
|
__decorateClass([
|
|
2652
|
-
|
|
2715
|
+
Column20({ name: "name", type: "varchar", nullable: true })
|
|
2653
2716
|
], JobRoles.prototype, "name", 2);
|
|
2654
2717
|
__decorateClass([
|
|
2655
|
-
|
|
2718
|
+
Column20({ name: "is_active", type: "boolean", default: true })
|
|
2656
2719
|
], JobRoles.prototype, "isActive", 2);
|
|
2657
2720
|
JobRoles = __decorateClass([
|
|
2658
|
-
|
|
2721
|
+
Entity19("job_roles")
|
|
2659
2722
|
], JobRoles);
|
|
2660
2723
|
|
|
2661
2724
|
// src/entities/plan.entity.ts
|
|
2662
|
-
import { Entity as
|
|
2725
|
+
import { Entity as Entity21, Column as Column22, ManyToMany as ManyToMany2, JoinTable } from "typeorm";
|
|
2663
2726
|
|
|
2664
2727
|
// src/entities/feature.entity.ts
|
|
2665
|
-
import { Entity as
|
|
2728
|
+
import { Entity as Entity20, Column as Column21, ManyToMany } from "typeorm";
|
|
2666
2729
|
var Feature = class extends BaseEntity {
|
|
2667
2730
|
};
|
|
2668
2731
|
__decorateClass([
|
|
2669
|
-
|
|
2732
|
+
Column21({ name: "name", type: "varchar", unique: true })
|
|
2670
2733
|
], Feature.prototype, "name", 2);
|
|
2671
2734
|
__decorateClass([
|
|
2672
2735
|
ManyToMany(() => Plan, (plan) => plan.features)
|
|
2673
2736
|
], Feature.prototype, "plans", 2);
|
|
2674
2737
|
Feature = __decorateClass([
|
|
2675
|
-
|
|
2738
|
+
Entity20("features")
|
|
2676
2739
|
], Feature);
|
|
2677
2740
|
|
|
2678
2741
|
// src/entities/plan.entity.ts
|
|
2679
2742
|
var Plan = class extends BaseEntity {
|
|
2680
2743
|
};
|
|
2681
2744
|
__decorateClass([
|
|
2682
|
-
|
|
2745
|
+
Column22({ name: "name", type: "varchar", unique: true })
|
|
2683
2746
|
], Plan.prototype, "name", 2);
|
|
2684
2747
|
__decorateClass([
|
|
2685
|
-
|
|
2748
|
+
Column22({ name: "description", type: "varchar", nullable: true })
|
|
2686
2749
|
], Plan.prototype, "description", 2);
|
|
2687
2750
|
__decorateClass([
|
|
2688
|
-
|
|
2751
|
+
Column22({ name: "price", type: "decimal", precision: 10, scale: 2 })
|
|
2689
2752
|
], Plan.prototype, "price", 2);
|
|
2690
2753
|
__decorateClass([
|
|
2691
|
-
|
|
2754
|
+
Column22({ name: "billing_period", type: "varchar" })
|
|
2692
2755
|
], Plan.prototype, "billingPeriod", 2);
|
|
2693
2756
|
__decorateClass([
|
|
2694
|
-
|
|
2757
|
+
Column22({ name: "is_current", type: "boolean", default: false })
|
|
2695
2758
|
], Plan.prototype, "isCurrent", 2);
|
|
2696
2759
|
__decorateClass([
|
|
2697
2760
|
ManyToMany2(() => Feature, (feature) => feature.plans, { cascade: true }),
|
|
2698
2761
|
JoinTable()
|
|
2699
2762
|
], Plan.prototype, "features", 2);
|
|
2700
2763
|
Plan = __decorateClass([
|
|
2701
|
-
|
|
2764
|
+
Entity21("plans")
|
|
2702
2765
|
], Plan);
|
|
2703
2766
|
export {
|
|
2704
2767
|
AUTHENTICATION_PATTERN,
|
|
@@ -2745,6 +2808,8 @@ export {
|
|
|
2745
2808
|
FreelancerUploadResumeDto,
|
|
2746
2809
|
FreelancerWorkShowcaseDto,
|
|
2747
2810
|
FromUsOn,
|
|
2811
|
+
Interview,
|
|
2812
|
+
InterviewStatusEnum,
|
|
2748
2813
|
JOB_PATTERN,
|
|
2749
2814
|
JOB_ROLE_PATTERN,
|
|
2750
2815
|
Job,
|