@bigfootai/bigfoot-types 4.8.16 → 4.8.17
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 +3 -0
- package/package.json +1 -1
package/model.js
CHANGED
@@ -659,6 +659,7 @@ type TagRecommendation {
|
|
659
659
|
}`;
|
660
660
|
exports.TenantLightQL = `
|
661
661
|
type TenantLight {
|
662
|
+
_id: String!
|
662
663
|
domainMemberships: [String]!
|
663
664
|
email: String!
|
664
665
|
tagId: String!
|
@@ -670,6 +671,7 @@ type TenantLight {
|
|
670
671
|
}`;
|
671
672
|
class TenantLight {
|
672
673
|
constructor(tenant) {
|
674
|
+
this._id = tenant._id;
|
673
675
|
this.domainMemberships = tenant.domainMemberships;
|
674
676
|
this.email = tenant.email;
|
675
677
|
this.tagId = tenant.tagId;
|
package/model.ts
CHANGED
@@ -999,6 +999,7 @@ export interface TagRecommendation {
|
|
999
999
|
|
1000
1000
|
export const TenantLightQL = `
|
1001
1001
|
type TenantLight {
|
1002
|
+
_id: String!
|
1002
1003
|
domainMemberships: [String]!
|
1003
1004
|
email: String!
|
1004
1005
|
tagId: String!
|
@@ -1009,6 +1010,7 @@ type TenantLight {
|
|
1009
1010
|
access: String
|
1010
1011
|
}`;
|
1011
1012
|
export class TenantLight {
|
1013
|
+
_id: string;
|
1012
1014
|
domainMemberships: string[];
|
1013
1015
|
email: string;
|
1014
1016
|
tagId: string;
|
@@ -1019,6 +1021,7 @@ export class TenantLight {
|
|
1019
1021
|
access?: string;
|
1020
1022
|
|
1021
1023
|
constructor(tenant: Tenant) {
|
1024
|
+
this._id = tenant._id;
|
1022
1025
|
this.domainMemberships = tenant.domainMemberships;
|
1023
1026
|
this.email = tenant.email;
|
1024
1027
|
this.tagId = tenant.tagId;
|