@bigfootai/bigfoot-types 4.8.12 → 4.8.13

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.
Files changed (3) hide show
  1. package/model.js +3 -3
  2. package/model.ts +6 -6
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -659,9 +659,9 @@ type TenantLight {
659
659
  domainMemberships: [String]!
660
660
  email: String!
661
661
  tagId: String!
662
- picture: String!
663
- familyName: String!
664
- givenName: String!
662
+ picture: String
663
+ familyName: String
664
+ givenName: String
665
665
  allowed: Boolean
666
666
  access: String
667
667
  }`;
package/model.ts CHANGED
@@ -995,9 +995,9 @@ type TenantLight {
995
995
  domainMemberships: [String]!
996
996
  email: String!
997
997
  tagId: String!
998
- picture: String!
999
- familyName: String!
1000
- givenName: String!
998
+ picture: String
999
+ familyName: String
1000
+ givenName: String
1001
1001
  allowed: Boolean
1002
1002
  access: String
1003
1003
  }`;
@@ -1005,9 +1005,9 @@ export class TenantLight {
1005
1005
  domainMemberships: string[];
1006
1006
  email: string;
1007
1007
  tagId: string;
1008
- picture: string;
1009
- familyName: string;
1010
- givenName: string;
1008
+ picture?: string;
1009
+ familyName?: string;
1010
+ givenName?: string;
1011
1011
  allowed?: boolean;
1012
1012
  access?: string;
1013
1013
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "4.8.12",
4
+ "version": "4.8.13",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",