@bigfootai/bigfoot-types 3.3.0 → 3.3.1
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.ts +3 -3
- package/package.json +1 -1
package/model.ts
CHANGED
@@ -572,7 +572,7 @@ type Tag {${PrimitiveFields}
|
|
572
572
|
tenantIdVerified: String
|
573
573
|
}`;
|
574
574
|
export class Tag extends Primitive {
|
575
|
-
|
575
|
+
alias: string;
|
576
576
|
tagType: TagType;
|
577
577
|
friendlyName?: string;
|
578
578
|
sharingDomains?: SharingDomain[]; // The domains this tag is shared with plus domain settings for the tag
|
@@ -585,11 +585,11 @@ export class Tag extends Primitive {
|
|
585
585
|
inviteStatus?: InviteStatus;
|
586
586
|
tenantIdVerified?: string; // The tenant._id that claimed/verified this tag as being them
|
587
587
|
|
588
|
-
constructor(tenantIdCreated: string,
|
588
|
+
constructor(tenantIdCreated: string, alias: string, tagType: TagType) {
|
589
589
|
super();
|
590
590
|
|
591
591
|
this.tenantIdCreated = tenantIdCreated;
|
592
|
-
this.
|
592
|
+
this.alias = alias;
|
593
593
|
this.tagType = tagType;
|
594
594
|
}
|
595
595
|
}
|