@getcommunity/gc-validators 0.0.120 → 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 +2 -0
- package/dist/index.d.ts +2 -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
|
@@ -996,6 +996,7 @@ type TeamMemberTier = "owner" | "manager" | "employee";
|
|
|
996
996
|
type TeamMemberGroup = "account" | "media" | "creative";
|
|
997
997
|
type TeamMemberDocument = {
|
|
998
998
|
name: string;
|
|
999
|
+
slug: string;
|
|
999
1000
|
order: number;
|
|
1000
1001
|
job_title: string;
|
|
1001
1002
|
tier: TeamMemberTier;
|
|
@@ -2413,6 +2414,7 @@ declare const QueryStrapiSearchTeamMembers: v.ObjectSchema<{
|
|
|
2413
2414
|
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
2414
2415
|
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 20, undefined>]>, undefined>;
|
|
2415
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>;
|
|
2416
2418
|
readonly order: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2417
2419
|
readonly tier: v.OptionalSchema<v.PicklistSchema<["owner", "manager", "employee"], undefined>, undefined>;
|
|
2418
2420
|
readonly group: v.OptionalSchema<v.PicklistSchema<["account", "media", "creative"], undefined>, undefined>;
|
package/dist/index.d.ts
CHANGED
|
@@ -996,6 +996,7 @@ type TeamMemberTier = "owner" | "manager" | "employee";
|
|
|
996
996
|
type TeamMemberGroup = "account" | "media" | "creative";
|
|
997
997
|
type TeamMemberDocument = {
|
|
998
998
|
name: string;
|
|
999
|
+
slug: string;
|
|
999
1000
|
order: number;
|
|
1000
1001
|
job_title: string;
|
|
1001
1002
|
tier: TeamMemberTier;
|
|
@@ -2413,6 +2414,7 @@ declare const QueryStrapiSearchTeamMembers: v.ObjectSchema<{
|
|
|
2413
2414
|
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
2414
2415
|
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 20, undefined>]>, undefined>;
|
|
2415
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>;
|
|
2416
2418
|
readonly order: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2417
2419
|
readonly tier: v.OptionalSchema<v.PicklistSchema<["owner", "manager", "employee"], undefined>, undefined>;
|
|
2418
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"])),
|