@getcommunity/gc-validators 0.0.178 → 0.0.180
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +11 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +11 -1
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.cjs
CHANGED
|
@@ -1184,7 +1184,17 @@ var InvalidResumeFileType = "Please upload a PDF or Word document.";
|
|
|
1184
1184
|
var IsValidResumeFile = v6__namespace.nullable(
|
|
1185
1185
|
v6__namespace.pipe(
|
|
1186
1186
|
v6__namespace.file(InvalidResumeFileType),
|
|
1187
|
-
v6__namespace.mimeType(
|
|
1187
|
+
v6__namespace.mimeType(
|
|
1188
|
+
[
|
|
1189
|
+
"application/pdf",
|
|
1190
|
+
"application/msword",
|
|
1191
|
+
"application/vnd.openxmlformats-officedocument.wordprocessingml.document",
|
|
1192
|
+
"application/rtf",
|
|
1193
|
+
"text/plain",
|
|
1194
|
+
"application/vnd.oasis.opendocument.text"
|
|
1195
|
+
],
|
|
1196
|
+
InvalidResumeFileType
|
|
1197
|
+
)
|
|
1188
1198
|
)
|
|
1189
1199
|
);
|
|
1190
1200
|
var ValidNumberOfEmployeeOptions = [
|