@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.
Files changed (2) hide show
  1. package/model.ts +3 -3
  2. 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
- text: string;
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, text: string, tagType: TagType) {
588
+ constructor(tenantIdCreated: string, alias: string, tagType: TagType) {
589
589
  super();
590
590
 
591
591
  this.tenantIdCreated = tenantIdCreated;
592
- this.text = text;
592
+ this.alias = alias;
593
593
  this.tagType = tagType;
594
594
  }
595
595
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "3.3.0",
4
+ "version": "3.3.1",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",