@joeygrable94/utm-src-pub-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 +18 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +19 -1
- package/dist/index.d.ts +19 -1
- package/dist/index.js +17 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1145,12 +1145,28 @@ var SQueryListUserDocumentsByIdentifier = v12__namespace.object({
|
|
|
1145
1145
|
USER_PAGINATION_DEFAULT_SIZE_LIMIT
|
|
1146
1146
|
)
|
|
1147
1147
|
});
|
|
1148
|
+
var SCreateUserDocument = v12__namespace.object({
|
|
1149
|
+
username: IsValidUsername,
|
|
1150
|
+
email: IsValidEmail,
|
|
1151
|
+
password: IsValidPassword,
|
|
1152
|
+
blocked: IsValidIsBoolean,
|
|
1153
|
+
confirmed: IsValidIsBoolean,
|
|
1154
|
+
role: IsValidReferenceId
|
|
1155
|
+
});
|
|
1148
1156
|
var SReadUserDocumentById = v12__namespace.object({
|
|
1149
1157
|
id: IsValidReferenceId
|
|
1150
1158
|
});
|
|
1151
1159
|
var SReadUserDocumentByDocumentId = v12__namespace.object({
|
|
1152
1160
|
documentId: IsValidReferenceDocumentId
|
|
1153
1161
|
});
|
|
1162
|
+
var SUpdateUserDocument = v12__namespace.object({
|
|
1163
|
+
username: IsValidOrUndefinedUsername,
|
|
1164
|
+
email: IsValidOrUndefinedEmail,
|
|
1165
|
+
password: IsValidOrUndefinedPassword,
|
|
1166
|
+
blocked: IsValidOrUndefinedIsBoolean,
|
|
1167
|
+
confirmed: IsValidOrUndefinedIsBoolean,
|
|
1168
|
+
role: v12__namespace.optional(IsValidReferenceId)
|
|
1169
|
+
});
|
|
1154
1170
|
var SQuerySortCampaignIdDocuments = v12__namespace.optional(
|
|
1155
1171
|
v12__namespace.object({
|
|
1156
1172
|
key: v12__namespace.fallback(
|
|
@@ -3628,6 +3644,7 @@ exports.SCreateSourceDocument = SCreateSourceDocument;
|
|
|
3628
3644
|
exports.SCreateTermDocument = SCreateTermDocument;
|
|
3629
3645
|
exports.SCreateTrackingLinkDocument = SCreateTrackingLinkDocument;
|
|
3630
3646
|
exports.SCreateUserAccountDocument = SCreateUserAccountDocument;
|
|
3647
|
+
exports.SCreateUserDocument = SCreateUserDocument;
|
|
3631
3648
|
exports.SCreateUserLimitationsDocument = SCreateUserLimitationsDocument;
|
|
3632
3649
|
exports.SCreateWebsiteDocument = SCreateWebsiteDocument;
|
|
3633
3650
|
exports.SCreativeFormatDocument = SCreativeFormatDocument;
|
|
@@ -3843,6 +3860,7 @@ exports.SUpdateSourceDocumentRequest = SUpdateSourceDocumentRequest;
|
|
|
3843
3860
|
exports.SUpdateTermDocumentRequest = SUpdateTermDocumentRequest;
|
|
3844
3861
|
exports.SUpdateTrackingLinkDocumentRequest = SUpdateTrackingLinkDocumentRequest;
|
|
3845
3862
|
exports.SUpdateUserAccountDocument = SUpdateUserAccountDocument;
|
|
3863
|
+
exports.SUpdateUserDocument = SUpdateUserDocument;
|
|
3846
3864
|
exports.SUpdateUserLimitationsDocument = SUpdateUserLimitationsDocument;
|
|
3847
3865
|
exports.SUpdateWebsiteDocumentRequest = SUpdateWebsiteDocumentRequest;
|
|
3848
3866
|
exports.SUserAccountDocument = SUserAccountDocument;
|