@getcommunity/gc-validators 0.0.70 → 0.0.71
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 +4 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +6 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -856,11 +856,13 @@ var QueryStrapiSearchClientProjects = v5__namespace.object({
|
|
|
856
856
|
client_id: v5__namespace.optional(IsValidReferenceDocumentId)
|
|
857
857
|
});
|
|
858
858
|
var SCreateClientProjectDocument = v5__namespace.object({
|
|
859
|
+
clients: v5__namespace.array(IsValidReferenceDocumentId),
|
|
859
860
|
title: IsValidShortString,
|
|
860
861
|
slug: IsValidSlug,
|
|
861
862
|
project_status: IsValidClientProjectStatus
|
|
862
863
|
});
|
|
863
864
|
var SUpdateClientProjectDocument = v5__namespace.object({
|
|
865
|
+
clients: v5__namespace.optional(v5__namespace.array(IsValidReferenceDocumentId)),
|
|
864
866
|
title: IsValidShortStringOrUndefined,
|
|
865
867
|
slug: IsValidSlugOrUndefined,
|
|
866
868
|
project_status: IsValidOrUndefinedClientProjectStatus
|
|
@@ -884,11 +886,13 @@ var QueryStrapiSearchClientReports = v5__namespace.object({
|
|
|
884
886
|
client_id: v5__namespace.optional(IsValidReferenceDocumentId)
|
|
885
887
|
});
|
|
886
888
|
var SCreateClientReportDocument = v5__namespace.object({
|
|
889
|
+
clients: v5__namespace.array(IsValidReferenceDocumentId),
|
|
887
890
|
title: IsValidShortString,
|
|
888
891
|
report_id: IsValidSlug,
|
|
889
892
|
is_active: v5__namespace.optional(IsValidIsActive, true)
|
|
890
893
|
});
|
|
891
894
|
var SUpdateClientReportDocument = v5__namespace.object({
|
|
895
|
+
clients: v5__namespace.optional(v5__namespace.array(IsValidReferenceDocumentId)),
|
|
892
896
|
title: IsValidShortStringOrUndefined,
|
|
893
897
|
report_id: IsValidSlugOrUndefined,
|
|
894
898
|
is_active: IsValidOrUndefinedIsActive
|