@bigfootai/bigfoot-types 5.2.26 → 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 +2 -0
- package/model.ts +4 -0
- 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) {
|
@@ -1899,6 +1900,7 @@ input UpdateTagSharingInput {
|
|
1899
1900
|
_id: String!
|
1900
1901
|
emailDomain: Boolean
|
1901
1902
|
sharingTenants: [SharingTenantInput]
|
1903
|
+
sharingDomains: [SharingDomainInput]
|
1902
1904
|
}`;
|
1903
1905
|
// THE GRAPH QL DEFINITIONS
|
1904
1906
|
exports.GraphQLTypes = `
|
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) {
|
@@ -3356,11 +3358,13 @@ input UpdateTagSharingInput {
|
|
3356
3358
|
_id: String!
|
3357
3359
|
emailDomain: Boolean
|
3358
3360
|
sharingTenants: [SharingTenantInput]
|
3361
|
+
sharingDomains: [SharingDomainInput]
|
3359
3362
|
}`;
|
3360
3363
|
export interface UpdateTagSharingInput {
|
3361
3364
|
_id: string;
|
3362
3365
|
emailDomain?: boolean;
|
3363
3366
|
sharingTenants?: SharingTenant[];
|
3367
|
+
sharingDomains?: SharingDomain[];
|
3364
3368
|
}
|
3365
3369
|
|
3366
3370
|
// THE GRAPH QL DEFINITIONS
|