@getcommunity/gc-validators 0.0.63 → 0.0.64
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 +5 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +8 -2
- package/dist/index.d.ts +8 -2
- package/dist/index.js +5 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -844,7 +844,8 @@ var QueryStrapiSearchClientMediaPlatforms = v3__namespace.object({
|
|
|
844
844
|
});
|
|
845
845
|
var SCreateClientMediaPlatformDocument = v3__namespace.object({
|
|
846
846
|
client: IsValidReferenceDocumentId,
|
|
847
|
-
media_platform: IsValidReferenceDocumentId
|
|
847
|
+
media_platform: IsValidReferenceDocumentId,
|
|
848
|
+
is_active: v3__namespace.optional(v3__namespace.boolean())
|
|
848
849
|
});
|
|
849
850
|
var SReadClientMediaPlatformDocumentById = v3__namespace.object({
|
|
850
851
|
id: IsValidReferenceId
|
|
@@ -852,7 +853,9 @@ var SReadClientMediaPlatformDocumentById = v3__namespace.object({
|
|
|
852
853
|
var SReadClientMediaPlatformDocumentByDocumentId = v3__namespace.object({
|
|
853
854
|
documentId: IsValidReferenceDocumentId
|
|
854
855
|
});
|
|
855
|
-
var SUpdateClientMediaPlatformDocument = v3__namespace.object({
|
|
856
|
+
var SUpdateClientMediaPlatformDocument = v3__namespace.object({
|
|
857
|
+
is_active: v3__namespace.optional(v3__namespace.boolean())
|
|
858
|
+
});
|
|
856
859
|
var SUpdateClientMediaPlatformDocumentRequest = v3__namespace.object({
|
|
857
860
|
documentId: IsValidReferenceDocumentId,
|
|
858
861
|
data: SUpdateClientMediaPlatformDocument
|