@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.
- package/model.js +1 -0
- package/model.ts +2 -0
- package/package.json +1 -1
package/model.js
CHANGED
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) {
|