@getcommunity/gc-validators 0.0.155 → 0.0.156

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.d.cts CHANGED
@@ -2981,6 +2981,7 @@ type QuerySortTeamworkProjectHealth = v.InferOutput<typeof QuerySortTeamworkProj
2981
2981
  declare const QueryStrapiSearchTeamworkProjectHealth: v.ObjectSchema<{
2982
2982
  readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
2983
2983
  readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 100, undefined>]>, undefined>;
2984
+ readonly lastPeriodDays: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
2984
2985
  readonly searchTerm: 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>;
2985
2986
  readonly excludeTagIds: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "Please provide a valid string.">, v.MaxLengthAction<string, 255, "The string you provided is too long, it must be 255 characters or less.">]>, undefined>, undefined>;
2986
2987
  readonly includeArchivedProjects: v.OptionalSchema<v.BooleanSchema<"this value must be a boolean">, undefined>;
package/dist/index.d.ts CHANGED
@@ -2981,6 +2981,7 @@ type QuerySortTeamworkProjectHealth = v.InferOutput<typeof QuerySortTeamworkProj
2981
2981
  declare const QueryStrapiSearchTeamworkProjectHealth: v.ObjectSchema<{
2982
2982
  readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
2983
2983
  readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 100, undefined>]>, undefined>;
2984
+ readonly lastPeriodDays: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
2984
2985
  readonly searchTerm: 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>;
2985
2986
  readonly excludeTagIds: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "Please provide a valid string.">, v.MaxLengthAction<string, 255, "The string you provided is too long, it must be 255 characters or less.">]>, undefined>, undefined>;
2986
2987
  readonly includeArchivedProjects: v.OptionalSchema<v.BooleanSchema<"this value must be a boolean">, undefined>;
package/dist/index.js CHANGED
@@ -2566,6 +2566,7 @@ var QueryStrapiSearchTeamworkProjectHealth = v6.object({
2566
2566
  size: v6.optional(
2567
2567
  v6.pipe(v6.number(), v6.minValue(1), v6.maxValue(LIMIT_PAGINATION_DEFAULT_SIZE))
2568
2568
  ),
2569
+ lastPeriodDays: v6.optional(v6.number()),
2569
2570
  searchTerm: IsValidOrUndefinedShortStringNoMin,
2570
2571
  excludeTagIds: IsValidOrUndefinedStringList,
2571
2572
  includeArchivedProjects: IsValidOrUndefinedIsBoolean,