@getcommunity/gc-validators 0.0.100 → 0.0.101
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 +17 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +22 -1
- package/dist/index.d.ts +22 -1
- package/dist/index.js +15 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1112,6 +1112,20 @@ var QueryStrapiSearchClientStyleguide = v6__namespace.object({
|
|
|
1112
1112
|
client_id: IsValidOrUndefinedReferenceDocumentId,
|
|
1113
1113
|
sort: QuerySortClientStyleguides
|
|
1114
1114
|
});
|
|
1115
|
+
var SCreateClientStyleguideDocument = v6__namespace.object({
|
|
1116
|
+
client: IsValidReferenceDocumentId,
|
|
1117
|
+
title: IsValidShortString,
|
|
1118
|
+
is_active: v6__namespace.optional(IsValidIsActive, true)
|
|
1119
|
+
});
|
|
1120
|
+
var SUpdateClientStyleguideDocument = v6__namespace.object({
|
|
1121
|
+
client: IsValidOrUndefinedReferenceDocumentId,
|
|
1122
|
+
title: IsValidOrUndefinedShortString,
|
|
1123
|
+
is_active: IsValidOrUndefinedIsActive
|
|
1124
|
+
});
|
|
1125
|
+
var SUpdateClientStyleguideDocumentRequest = v6__namespace.object({
|
|
1126
|
+
documentId: IsValidReferenceDocumentId,
|
|
1127
|
+
data: SUpdateClientStyleguideDocument
|
|
1128
|
+
});
|
|
1115
1129
|
var QuerySortClientUsers = v6__namespace.optional(
|
|
1116
1130
|
v6__namespace.object({
|
|
1117
1131
|
key: v6__namespace.picklist(["id", "createdAt", "updatedAt"]),
|
|
@@ -2277,6 +2291,7 @@ exports.SCreateClientDocument = SCreateClientDocument;
|
|
|
2277
2291
|
exports.SCreateClientMediaPlatformDocument = SCreateClientMediaPlatformDocument;
|
|
2278
2292
|
exports.SCreateClientProjectDocument = SCreateClientProjectDocument;
|
|
2279
2293
|
exports.SCreateClientReportDocument = SCreateClientReportDocument;
|
|
2294
|
+
exports.SCreateClientStyleguideDocument = SCreateClientStyleguideDocument;
|
|
2280
2295
|
exports.SCreateClientUserDocument = SCreateClientUserDocument;
|
|
2281
2296
|
exports.SCreateContentPillarDocument = SCreateContentPillarDocument;
|
|
2282
2297
|
exports.SCreateLead = SCreateLead;
|
|
@@ -2321,6 +2336,8 @@ exports.SUpdateClientProjectDocument = SUpdateClientProjectDocument;
|
|
|
2321
2336
|
exports.SUpdateClientProjectDocumentRequest = SUpdateClientProjectDocumentRequest;
|
|
2322
2337
|
exports.SUpdateClientReportDocument = SUpdateClientReportDocument;
|
|
2323
2338
|
exports.SUpdateClientReportDocumentRequest = SUpdateClientReportDocumentRequest;
|
|
2339
|
+
exports.SUpdateClientStyleguideDocument = SUpdateClientStyleguideDocument;
|
|
2340
|
+
exports.SUpdateClientStyleguideDocumentRequest = SUpdateClientStyleguideDocumentRequest;
|
|
2324
2341
|
exports.SUpdateClientUserDocument = SUpdateClientUserDocument;
|
|
2325
2342
|
exports.SUpdateClientUserDocumentRequest = SUpdateClientUserDocumentRequest;
|
|
2326
2343
|
exports.SUpdateContentPillarDocument = SUpdateContentPillarDocument;
|