@bigfootai/bigfoot-types 5.2.31 → 5.2.32
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
@@ -1094,6 +1094,7 @@ export const TagFieldsWithoutSharing = `${PrimitiveFields}
|
|
1094
1094
|
externalIdLinks: [ExternalIdLink]
|
1095
1095
|
merged: Boolean
|
1096
1096
|
mergedWithTagId: String
|
1097
|
+
member: Boolean
|
1097
1098
|
archived: Boolean!
|
1098
1099
|
favorite: Boolean
|
1099
1100
|
hasAutoShareNotesOn: Boolean
|
@@ -1138,6 +1139,7 @@ export class Tag extends Primitive {
|
|
1138
1139
|
_dateInviteCodeExpires?: number;
|
1139
1140
|
merged?: boolean;
|
1140
1141
|
mergedWithTagId?: string;
|
1142
|
+
member?: boolean;
|
1141
1143
|
|
1142
1144
|
constructor(tenantIdCreated: string, alias: string, tagType: TagType) {
|
1143
1145
|
super();
|