@the-inkwell/shared 0.1.152 → 0.1.154

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.
Files changed (119) hide show
  1. package/dist/index.js +1 -0
  2. package/dist/src/constants/enums.js +104 -0
  3. package/dist/src/constants/index.js +17 -0
  4. package/dist/src/types/_schema/Action.js +4 -0
  5. package/dist/src/types/_schema/Admin.js +4 -0
  6. package/dist/src/types/_schema/Campaign.js +4 -0
  7. package/dist/src/types/_schema/CampaignToPosition.js +4 -0
  8. package/dist/src/types/_schema/Candidacy.js +4 -0
  9. package/dist/src/types/_schema/CandidacyRatingReasons.js +4 -0
  10. package/dist/src/types/_schema/CandidacyRatingToTag.js +4 -0
  11. package/dist/src/types/_schema/Client.js +4 -0
  12. package/dist/src/types/_schema/Clubs.js +4 -0
  13. package/dist/src/types/_schema/Contract.js +4 -0
  14. package/dist/src/types/_schema/Conversation.js +4 -0
  15. package/dist/src/types/_schema/Conversations.js +4 -0
  16. package/dist/src/types/_schema/Jwt.js +4 -0
  17. package/dist/src/types/_schema/ListView.js +4 -0
  18. package/dist/src/types/_schema/Message.js +4 -0
  19. package/dist/src/types/_schema/MessageTemplate.js +4 -0
  20. package/dist/src/types/_schema/Note.js +4 -0
  21. package/dist/src/types/_schema/Otp.js +4 -0
  22. package/dist/src/types/_schema/Person.js +4 -0
  23. package/dist/src/types/_schema/PersonClub.js +4 -0
  24. package/dist/src/types/_schema/PersonEnrichment.js +4 -0
  25. package/dist/src/types/_schema/PersonNetwork.js +4 -0
  26. package/dist/src/types/_schema/PersonSkill.js +4 -0
  27. package/dist/src/types/_schema/PersonToBestPerson.js +4 -0
  28. package/dist/src/types/_schema/PersonToPersonClub.js +4 -0
  29. package/dist/src/types/_schema/PersonToPersonNetwork.js +4 -0
  30. package/dist/src/types/_schema/PersonToPersonSkill.js +4 -0
  31. package/dist/src/types/_schema/PersonToTag.js +4 -0
  32. package/dist/src/types/_schema/PersonsToClubs.js +4 -0
  33. package/dist/src/types/_schema/Position.js +4 -0
  34. package/dist/src/types/_schema/PublicSchema.js +4 -0
  35. package/dist/src/types/_schema/Referral.js +4 -0
  36. package/dist/src/types/_schema/ReferralPayout.js +4 -0
  37. package/dist/src/types/_schema/ReferralToIntroMessage.js +4 -0
  38. package/dist/src/types/_schema/Sender.js +4 -0
  39. package/dist/src/types/_schema/Tag.js +4 -0
  40. package/dist/src/types/_schema/WebsiteBlock.js +4 -0
  41. package/dist/src/types/_schema/WebsiteLandingPage.js +4 -0
  42. package/dist/src/types/_schema/WebsiteStaticPage.js +4 -0
  43. package/dist/src/types/admin/candidacies/index.js +2 -0
  44. package/dist/src/types/admin/index.js +19 -0
  45. package/dist/src/types/admin/persons/index.js +2 -0
  46. package/dist/src/types/admin/website/index.js +2 -0
  47. package/dist/src/types/auth/index.js +2 -0
  48. package/dist/src/types/db.js +6 -0
  49. package/dist/src/types/http/admin/candidacies/index.js +2 -0
  50. package/dist/src/types/http/admin/index.js +19 -0
  51. package/dist/src/types/http/admin/persons/index.js +2 -0
  52. package/dist/src/types/http/admin/website/index.js +2 -0
  53. package/dist/src/types/http/auth/index.js +2 -0
  54. package/dist/src/types/http/index.js +19 -0
  55. package/dist/src/types/http/utils/index.js +2 -0
  56. package/dist/src/types/models/admin/conversations/index.js +2 -0
  57. package/dist/src/types/models/admin/website/_shared.js +2 -0
  58. package/dist/src/types/schemas/Database.js +4 -0
  59. package/dist/src/types/schemas/index.js +23 -0
  60. package/dist/src/types/schemas/public/Action.js +4 -0
  61. package/dist/src/types/schemas/public/ActionNames.js +4 -0
  62. package/dist/src/types/schemas/public/Admin.js +4 -0
  63. package/dist/src/types/schemas/public/Campaign.js +4 -0
  64. package/dist/src/types/schemas/public/CampaignStatuses.js +4 -0
  65. package/dist/src/types/schemas/public/CampaignToPosition.js +4 -0
  66. package/dist/src/types/schemas/public/Candidacy.js +4 -0
  67. package/dist/src/types/schemas/public/CandidacyFeedback.js +4 -0
  68. package/dist/src/types/schemas/public/CandidacyRatingToTag.js +4 -0
  69. package/dist/src/types/schemas/public/CandidacySources.js +4 -0
  70. package/dist/src/types/schemas/public/CandidacyStatuses.js +4 -0
  71. package/dist/src/types/schemas/public/Client.js +4 -0
  72. package/dist/src/types/schemas/public/ClientStatuses.js +4 -0
  73. package/dist/src/types/schemas/public/Contract.js +4 -0
  74. package/dist/src/types/schemas/public/Conversation.js +4 -0
  75. package/dist/src/types/schemas/public/EnrichmentSources.js +4 -0
  76. package/dist/src/types/schemas/public/Jwt.js +4 -0
  77. package/dist/src/types/schemas/public/ListView.js +4 -0
  78. package/dist/src/types/schemas/public/ListViewModels.js +4 -0
  79. package/dist/src/types/schemas/public/Message.js +4 -0
  80. package/dist/src/types/schemas/public/MessageChannels.js +4 -0
  81. package/dist/src/types/schemas/public/MessageSender.js +4 -0
  82. package/dist/src/types/schemas/public/MessageTemplate.js +4 -0
  83. package/dist/src/types/schemas/public/Note.js +4 -0
  84. package/dist/src/types/schemas/public/Otp.js +4 -0
  85. package/dist/src/types/schemas/public/Person.js +4 -0
  86. package/dist/src/types/schemas/public/PersonCareerLevels.js +4 -0
  87. package/dist/src/types/schemas/public/PersonClub.js +4 -0
  88. package/dist/src/types/schemas/public/PersonDegrees.js +4 -0
  89. package/dist/src/types/schemas/public/PersonEnrichment.js +4 -0
  90. package/dist/src/types/schemas/public/PersonGenders.js +4 -0
  91. package/dist/src/types/schemas/public/PersonNetwork.js +4 -0
  92. package/dist/src/types/schemas/public/PersonSkill.js +4 -0
  93. package/dist/src/types/schemas/public/PersonSources.js +4 -0
  94. package/dist/src/types/schemas/public/PersonToBestPerson.js +4 -0
  95. package/dist/src/types/schemas/public/PersonToPersonClub.js +4 -0
  96. package/dist/src/types/schemas/public/PersonToPersonNetwork.js +4 -0
  97. package/dist/src/types/schemas/public/PersonToPersonSkill.js +4 -0
  98. package/dist/src/types/schemas/public/PersonToTag.js +4 -0
  99. package/dist/src/types/schemas/public/Position.js +4 -0
  100. package/dist/src/types/schemas/public/PositionStatuses.js +4 -0
  101. package/dist/src/types/schemas/public/PrismaMigrations.js +4 -0
  102. package/dist/src/types/schemas/public/PublicSchema.js +4 -0
  103. package/dist/src/types/schemas/public/Referral.js +4 -0
  104. package/dist/src/types/schemas/public/ReferralPayout.js +4 -0
  105. package/dist/src/types/schemas/public/ReferralSources.js +4 -0
  106. package/dist/src/types/schemas/public/ReferralToIntroMessage.js +4 -0
  107. package/dist/src/types/schemas/public/Sender.js +4 -0
  108. package/dist/src/types/schemas/public/Tag.js +4 -0
  109. package/dist/src/types/schemas/public/WebsiteBlock.js +4 -0
  110. package/dist/src/types/schemas/public/WebsiteLandingPage.js +4 -0
  111. package/dist/src/types/schemas/public/WebsiteStaticPage.js +4 -0
  112. package/dist/src/types/shared/index.js +2 -0
  113. package/dist/types/admin/index.js +17 -0
  114. package/dist/types/admin/website/index.js +2 -0
  115. package/dist/types/index.js +17 -0
  116. package/index.ts +1 -0
  117. package/package.json +1 -1
  118. package/src/constants/enums.ts +142 -0
  119. package/src/constants/index.ts +1 -0
package/dist/index.js CHANGED
@@ -15,3 +15,4 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./src/types"), exports);
18
+ __exportStar(require("./src/constants"), exports);
@@ -0,0 +1,104 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.referralSources = exports.positionStages = exports.positionStatuses = exports.personSources = exports.genders = exports.positionRatingCategories = exports.jobLevels = exports.messageChannels = exports.listViewModels = exports.enrichmentSources = exports.educationFields = exports.educationDegrees = exports.clientStages = exports.clientStatuses = exports.candidacyRatingCategories = exports.candidacyStages = exports.candidacyStatuses = exports.candidacySources = exports.campaignStatuses = exports.actionNames = exports.listRequestSortDirections = exports.listRequestLimits = void 0;
4
+ exports.listRequestLimits = [10, 50, 100, 200, 500];
5
+ exports.listRequestSortDirections = ['asc', 'desc'];
6
+ exports.actionNames = [
7
+ 'MESSAGE_SENT',
8
+ 'PROFILE_UPDATE',
9
+ 'SIGN_IN',
10
+ 'STATUS_UPDATE'
11
+ ];
12
+ exports.campaignStatuses = ['DRAFT', 'CLOSED', 'SENT'];
13
+ exports.candidacySources = [
14
+ 'CAMPAIGN',
15
+ 'NETWORK',
16
+ 'WEBSITE',
17
+ 'SOCIAL_MEDIA'
18
+ ];
19
+ exports.candidacyStatuses = ['OPEN', 'CLOSED'];
20
+ exports.candidacyStages = [
21
+ 'SUBMITTED',
22
+ 'SCREENING',
23
+ 'INTERVIEWING',
24
+ 'OFFERED',
25
+ 'HIRED',
26
+ 'REJECTED',
27
+ 'WITHDRAWN'
28
+ ];
29
+ exports.candidacyRatingCategories = [
30
+ 'EXPERIENCE',
31
+ 'INDUSTRY',
32
+ 'SKILL',
33
+ 'CULTURE',
34
+ 'COMPENSATION'
35
+ ];
36
+ exports.clientStatuses = ['ACTIVE', 'INACTIVE'];
37
+ exports.clientStages = [
38
+ 'PENDING',
39
+ 'CONTACTED',
40
+ 'QUALIFYING',
41
+ 'CONVERTED',
42
+ 'NOT_CONVERTED'
43
+ ];
44
+ exports.educationDegrees = [
45
+ 'HIGH_SCHOOL',
46
+ 'ASSOCIATES',
47
+ 'BACHELORS',
48
+ 'MASTERS',
49
+ 'DOCTORATE'
50
+ ];
51
+ exports.educationFields = [
52
+ 'ACCOUNTING',
53
+ 'BUSINESS',
54
+ 'LAW',
55
+ 'ENGINEERING',
56
+ 'EDUCATION',
57
+ 'MEDICINE',
58
+ 'ARCHITECTURE',
59
+ 'SOCIAL_WORK',
60
+ 'HUMANITIES',
61
+ 'NATURAL_SCIENCES',
62
+ 'SOCIAL_SCIENCES'
63
+ ];
64
+ exports.enrichmentSources = ['PDL'];
65
+ exports.listViewModels = [
66
+ 'PERSON',
67
+ 'POSITION',
68
+ 'CANDIDACY',
69
+ 'REFERRAL'
70
+ ];
71
+ exports.messageChannels = ['EMAIL', 'SMS'];
72
+ exports.jobLevels = [
73
+ 'EXPERIENCED',
74
+ 'MANAGER',
75
+ 'DIRECTOR',
76
+ 'VICE_PRESIDENT',
77
+ 'VICE_PRESIDENT_SENIOR',
78
+ 'CHIEF_SUITE'
79
+ ];
80
+ exports.positionRatingCategories = [
81
+ 'COMPENSATION',
82
+ 'INTEREST'
83
+ ];
84
+ exports.genders = ['MAN', 'WOMAN', 'NON_BINARY', 'UNKNOWN'];
85
+ exports.personSources = [
86
+ 'SOURCED',
87
+ 'NETWORK',
88
+ 'WEBSITE',
89
+ 'SOCIAL_MEDIA'
90
+ ];
91
+ exports.positionStatuses = ['OPEN', 'CLOSED'];
92
+ exports.positionStages = [
93
+ 'PENDING',
94
+ 'IN_PROGRESS',
95
+ 'HIRED',
96
+ 'CANCELED',
97
+ 'FAILED'
98
+ ];
99
+ exports.referralSources = [
100
+ 'CAMPAIGN',
101
+ 'NETWORK',
102
+ 'WEBSITE',
103
+ 'SOCIAL_MEDIA'
104
+ ];
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./enums"), exports);
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./candidacies"), exports);
18
+ __exportStar(require("./persons"), exports);
19
+ __exportStar(require("./website"), exports);
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ /**
3
+ * This file was generated by kysely-codegen.
4
+ * Please do not edit it manually.
5
+ */
6
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./candidacies"), exports);
18
+ __exportStar(require("./persons"), exports);
19
+ __exportStar(require("./website"), exports);
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./admin"), exports);
18
+ __exportStar(require("./auth"), exports);
19
+ __exportStar(require("../utils"), exports);
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,23 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./public/Action"), exports);
18
+ __exportStar(require("./public/ActionNames"), exports);
19
+ __exportStar(require("./public/Admin"), exports);
20
+ __exportStar(require("./public/Campaign"), exports);
21
+ __exportStar(require("./public/CampaignStatuses"), exports);
22
+ __exportStar(require("./public/CampaignToPosition"), exports);
23
+ __exportStar(require("./public/Candidacy"), exports);
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // @generated
3
+ // This file is automatically generated by Kanel. Do not modify manually.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./website"), exports);
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./admin"), exports);
package/index.ts CHANGED
@@ -1 +1,2 @@
1
1
  export * from './src/types'
2
+ export * from './src/constants'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@the-inkwell/shared",
3
- "version": "0.1.152",
3
+ "version": "0.1.154",
4
4
  "description": "Shared code for Inkwell",
5
5
  "license": "ISC",
6
6
  "author": "Inkwell (Rob Yedlin & Saimon Alam)",
@@ -0,0 +1,142 @@
1
+ import ActionNames from '../types/_schema/ActionNames'
2
+ import CampaignStatuses from '../types/_schema/CampaignStatuses'
3
+ import CandidacyRatingCategories from '../types/_schema/CandidacyRatingCategories'
4
+ import CandidacySources from '../types/_schema/CandidacySources'
5
+ import CandidacyStages from '../types/_schema/CandidacyStages'
6
+ import CandidacyStatuses from '../types/_schema/CandidacyStatuses'
7
+ import ClientStages from '../types/_schema/ClientStages'
8
+ import ClientStatuses from '../types/_schema/ClientStatuses'
9
+ import EducationDegrees from '../types/_schema/EducationDegrees'
10
+ import EducationFields from '../types/_schema/EducationFields'
11
+ import EnrichmentSources from '../types/_schema/EnrichmentSources'
12
+ import Genders from '../types/_schema/Genders'
13
+ import JobLevels from '../types/_schema/JobLevels'
14
+ import ListViewModels from '../types/_schema/ListViewModels'
15
+ import MessageChannels from '../types/_schema/MessageChannels'
16
+ import PersonSources from '../types/_schema/PersonSources'
17
+ import PositionRatingCategories from '../types/_schema/PositionRatingCategories'
18
+ import PositionStages from '../types/_schema/PositionStages'
19
+ import PositionStatuses from '../types/_schema/PositionStatuses'
20
+ import ReferralSources from '../types/_schema/ReferralSources'
21
+
22
+ export const listRequestLimits = [10, 50, 100, 200, 500]
23
+ export const listRequestSortDirections = ['asc', 'desc']
24
+
25
+ export const actionNames: ActionNames[] = [
26
+ 'MESSAGE_SENT',
27
+ 'PROFILE_UPDATE',
28
+ 'SIGN_IN',
29
+ 'STATUS_UPDATE'
30
+ ]
31
+
32
+ export const campaignStatuses: CampaignStatuses[] = ['DRAFT', 'CLOSED', 'SENT']
33
+
34
+ export const candidacySources: CandidacySources[] = [
35
+ 'CAMPAIGN',
36
+ 'NETWORK',
37
+ 'WEBSITE',
38
+ 'SOCIAL_MEDIA'
39
+ ]
40
+
41
+ export const candidacyStatuses: CandidacyStatuses[] = ['OPEN', 'CLOSED']
42
+
43
+ export const candidacyStages: CandidacyStages[] = [
44
+ 'SUBMITTED',
45
+ 'SCREENING',
46
+ 'INTERVIEWING',
47
+ 'OFFERED',
48
+ 'HIRED',
49
+ 'REJECTED',
50
+ 'WITHDRAWN'
51
+ ]
52
+
53
+ export const candidacyRatingCategories: CandidacyRatingCategories[] = [
54
+ 'EXPERIENCE',
55
+ 'INDUSTRY',
56
+ 'SKILL',
57
+ 'CULTURE',
58
+ 'COMPENSATION'
59
+ ]
60
+
61
+ export const clientStatuses: ClientStatuses[] = ['ACTIVE', 'INACTIVE']
62
+
63
+ export const clientStages: ClientStages[] = [
64
+ 'PENDING',
65
+ 'CONTACTED',
66
+ 'QUALIFYING',
67
+ 'CONVERTED',
68
+ 'NOT_CONVERTED'
69
+ ]
70
+
71
+ export const educationDegrees: EducationDegrees[] = [
72
+ 'HIGH_SCHOOL',
73
+ 'ASSOCIATES',
74
+ 'BACHELORS',
75
+ 'MASTERS',
76
+ 'DOCTORATE'
77
+ ]
78
+
79
+ export const educationFields: EducationFields[] = [
80
+ 'ACCOUNTING',
81
+ 'BUSINESS',
82
+ 'LAW',
83
+ 'ENGINEERING',
84
+ 'EDUCATION',
85
+ 'MEDICINE',
86
+ 'ARCHITECTURE',
87
+ 'SOCIAL_WORK',
88
+ 'HUMANITIES',
89
+ 'NATURAL_SCIENCES',
90
+ 'SOCIAL_SCIENCES'
91
+ ]
92
+
93
+ export const enrichmentSources: EnrichmentSources[] = ['PDL']
94
+
95
+ export const listViewModels: ListViewModels[] = [
96
+ 'PERSON',
97
+ 'POSITION',
98
+ 'CANDIDACY',
99
+ 'REFERRAL'
100
+ ]
101
+
102
+ export const messageChannels: MessageChannels[] = ['EMAIL', 'SMS']
103
+
104
+ export const jobLevels: JobLevels[] = [
105
+ 'EXPERIENCED',
106
+ 'MANAGER',
107
+ 'DIRECTOR',
108
+ 'VICE_PRESIDENT',
109
+ 'VICE_PRESIDENT_SENIOR',
110
+ 'CHIEF_SUITE'
111
+ ]
112
+
113
+ export const positionRatingCategories: PositionRatingCategories[] = [
114
+ 'COMPENSATION',
115
+ 'INTEREST'
116
+ ]
117
+
118
+ export const genders: Genders[] = ['MAN', 'WOMAN', 'NON_BINARY', 'UNKNOWN']
119
+
120
+ export const personSources: PersonSources[] = [
121
+ 'SOURCED',
122
+ 'NETWORK',
123
+ 'WEBSITE',
124
+ 'SOCIAL_MEDIA'
125
+ ]
126
+
127
+ export const positionStatuses: PositionStatuses[] = ['OPEN', 'CLOSED']
128
+
129
+ export const positionStages: PositionStages[] = [
130
+ 'PENDING',
131
+ 'IN_PROGRESS',
132
+ 'HIRED',
133
+ 'CANCELED',
134
+ 'FAILED'
135
+ ]
136
+
137
+ export const referralSources: ReferralSources[] = [
138
+ 'CAMPAIGN',
139
+ 'NETWORK',
140
+ 'WEBSITE',
141
+ 'SOCIAL_MEDIA'
142
+ ]
@@ -0,0 +1 @@
1
+ export * from './enums'