@getcommunity/gc-validators 0.0.98 → 0.0.99
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 +9 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +10 -1
- package/dist/index.d.ts +10 -1
- package/dist/index.js +9 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1595,6 +1595,14 @@ var QueryStrapiUsersByIdentifier = v6__namespace.object({
|
|
|
1595
1595
|
v6__namespace.pipe(v6__namespace.number(), v6__namespace.minValue(1), v6__namespace.maxValue(LIMIT_USER_PAGINATION_MAX_SIZE))
|
|
1596
1596
|
)
|
|
1597
1597
|
});
|
|
1598
|
+
var SCreateUserDocument = v6__namespace.object({
|
|
1599
|
+
username: IsValidUsername,
|
|
1600
|
+
email: IsValidUserEmail,
|
|
1601
|
+
password: IsValidPassword,
|
|
1602
|
+
blocked: IsValidIsBoolean,
|
|
1603
|
+
confirmed: IsValidIsBoolean,
|
|
1604
|
+
role: IsValidReferenceId
|
|
1605
|
+
});
|
|
1598
1606
|
var SUtmLinkBuilderPartCampaignDateOptions = [
|
|
1599
1607
|
"annually",
|
|
1600
1608
|
"quarterly",
|
|
@@ -2265,6 +2273,7 @@ exports.SCreateNewsletterSignup = SCreateNewsletterSignup;
|
|
|
2265
2273
|
exports.SCreateResume = SCreateResume;
|
|
2266
2274
|
exports.SCreateResumeInfo = SCreateResumeInfo;
|
|
2267
2275
|
exports.SCreateStrapiMediaUploadDocument = SCreateStrapiMediaUploadDocument;
|
|
2276
|
+
exports.SCreateUserDocument = SCreateUserDocument;
|
|
2268
2277
|
exports.SCreateUtmTrackingLinkDocument = SCreateUtmTrackingLinkDocument;
|
|
2269
2278
|
exports.SCreateUtmTrackingLinkParts = SCreateUtmTrackingLinkParts;
|
|
2270
2279
|
exports.SDisconnectManyEntityRelation = SDisconnectManyEntityRelation;
|