@getcommunity/gc-validators 0.0.121 → 0.0.122
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 +1 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -2414,6 +2414,7 @@ declare const QueryStrapiSearchTeamMembers: v.ObjectSchema<{
|
|
|
2414
2414
|
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
2415
2415
|
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 20, undefined>]>, undefined>;
|
|
2416
2416
|
readonly name: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 255, "The string you provided is too long, it must be 255 characters or less.">]>, undefined>;
|
|
2417
|
+
readonly slug: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 255, "The string you provided is too long, it must be 255 characters or less.">]>, undefined>;
|
|
2417
2418
|
readonly order: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2418
2419
|
readonly tier: v.OptionalSchema<v.PicklistSchema<["owner", "manager", "employee"], undefined>, undefined>;
|
|
2419
2420
|
readonly group: v.OptionalSchema<v.PicklistSchema<["account", "media", "creative"], undefined>, undefined>;
|
package/dist/index.d.ts
CHANGED
|
@@ -2414,6 +2414,7 @@ declare const QueryStrapiSearchTeamMembers: v.ObjectSchema<{
|
|
|
2414
2414
|
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
2415
2415
|
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 20, undefined>]>, undefined>;
|
|
2416
2416
|
readonly name: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 255, "The string you provided is too long, it must be 255 characters or less.">]>, undefined>;
|
|
2417
|
+
readonly slug: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 255, "The string you provided is too long, it must be 255 characters or less.">]>, undefined>;
|
|
2417
2418
|
readonly order: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2418
2419
|
readonly tier: v.OptionalSchema<v.PicklistSchema<["owner", "manager", "employee"], undefined>, undefined>;
|
|
2419
2420
|
readonly group: v.OptionalSchema<v.PicklistSchema<["account", "media", "creative"], undefined>, undefined>;
|
package/dist/index.js
CHANGED
|
@@ -2026,6 +2026,7 @@ var QueryStrapiSearchTeamMembers = v6.object({
|
|
|
2026
2026
|
v6.pipe(v6.number(), v6.minValue(1), v6.maxValue(LIMIT_BLOG_POST_PAGINATION_MAX_SIZE))
|
|
2027
2027
|
),
|
|
2028
2028
|
name: IsValidOrUndefinedShortString,
|
|
2029
|
+
slug: IsValidOrUndefinedShortString,
|
|
2029
2030
|
order: v6.optional(v6.number()),
|
|
2030
2031
|
tier: v6.optional(v6.picklist(["owner", "manager", "employee"])),
|
|
2031
2032
|
group: v6.optional(v6.picklist(["account", "media", "creative"])),
|