@bigfootai/bigfoot-types 5.2.27 → 5.2.28

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 +1 -0
  2. package/model.ts +2 -0
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -883,6 +883,7 @@ exports.Tenant = Tenant;
883
883
  exports.DomainQL = `
884
884
  type Domain {${exports.PrimitiveFields}
885
885
  domain: String!
886
+ member: Boolean!
886
887
  }`;
887
888
  class Domain extends Primitive {
888
889
  constructor(domain, isPublic) {
package/model.ts CHANGED
@@ -1380,9 +1380,11 @@ export class Tenant extends Primitive {
1380
1380
  export const DomainQL = `
1381
1381
  type Domain {${PrimitiveFields}
1382
1382
  domain: String!
1383
+ member: Boolean!
1383
1384
  }`;
1384
1385
  export class Domain extends Primitive {
1385
1386
  domain: string;
1387
+ member?: boolean;
1386
1388
  isPublic: boolean;
1387
1389
 
1388
1390
  constructor(domain: string, isPublic: boolean) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "5.2.27",
4
+ "version": "5.2.28",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",