@bigfootai/bigfoot-types 4.8.7 → 4.8.9
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 +5 -1
- package/model.ts +7 -3
- package/package.json +1 -1
package/model.js
CHANGED
@@ -617,8 +617,12 @@ exports.TagFieldsWithoutSharing = `${exports.PrimitiveFields}
|
|
617
617
|
originNoteId: String
|
618
618
|
tenantIdVerified: String
|
619
619
|
businessObjects: [BusinessObjectLink]
|
620
|
+
merged: Boolean
|
621
|
+
mergedWithTagId: String
|
620
622
|
archived: Boolean!
|
621
|
-
favorite: Boolean
|
623
|
+
favorite: Boolean
|
624
|
+
hasAutoShareNotesOn: Boolean
|
625
|
+
hasAutoShareTasksOn: Boolean
|
622
626
|
taskCount: Int`;
|
623
627
|
exports.TagFieldsJustSharing = `
|
624
628
|
sharingDomains: [SharingDomain]
|
package/model.ts
CHANGED
@@ -913,8 +913,12 @@ export const TagFieldsWithoutSharing = `${PrimitiveFields}
|
|
913
913
|
originNoteId: String
|
914
914
|
tenantIdVerified: String
|
915
915
|
businessObjects: [BusinessObjectLink]
|
916
|
+
merged: Boolean
|
917
|
+
mergedWithTagId: String
|
916
918
|
archived: Boolean!
|
917
|
-
favorite: Boolean
|
919
|
+
favorite: Boolean
|
920
|
+
hasAutoShareNotesOn: Boolean
|
921
|
+
hasAutoShareTasksOn: Boolean
|
918
922
|
taskCount: Int`;
|
919
923
|
export const TagFieldsJustSharing = `
|
920
924
|
sharingDomains: [SharingDomain]
|
@@ -949,8 +953,8 @@ export class Tag extends Primitive {
|
|
949
953
|
_savedSearchId?: string;
|
950
954
|
_inviteCode?: string;
|
951
955
|
_dateInviteCodeExpires?: number;
|
952
|
-
|
953
|
-
|
956
|
+
merged?: boolean;
|
957
|
+
mergedWithTagId?: string;
|
954
958
|
|
955
959
|
constructor(tenantIdCreated: string, alias: string, tagType: TagType) {
|
956
960
|
super();
|