@getcommunity/gc-validators 0.0.119 → 0.0.121

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
@@ -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;
@@ -1004,7 +1005,7 @@ type TeamMemberDocument = {
1004
1005
  trends?: TrendDocument[];
1005
1006
  contact_links?: BlockContact;
1006
1007
  biography: RichTextBlock[];
1007
- featured_image?: MediaUploadDocument;
1008
+ featured_image?: MediaUploadDocument | null;
1008
1009
  featured_video?: MediaUploadDocument | null;
1009
1010
  blog_posts?: BlogPostDocument[];
1010
1011
  } & BaseDocument;
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;
@@ -1004,7 +1005,7 @@ type TeamMemberDocument = {
1004
1005
  trends?: TrendDocument[];
1005
1006
  contact_links?: BlockContact;
1006
1007
  biography: RichTextBlock[];
1007
- featured_image?: MediaUploadDocument;
1008
+ featured_image?: MediaUploadDocument | null;
1008
1009
  featured_video?: MediaUploadDocument | null;
1009
1010
  blog_posts?: BlogPostDocument[];
1010
1011
  } & BaseDocument;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@getcommunity/gc-validators",
3
3
  "description": "Schema Validator for GetCommunity types",
4
- "version": "0.0.119",
4
+ "version": "0.0.121",
5
5
  "author": "Joey Grable <joey@getcommunity.com> (https://joeygrable.com)",
6
6
  "contributors": [],
7
7
  "main": "dist/index.js",