@bigfootai/bigfoot-types 4.8.7 → 4.8.8
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 +3 -1
- package/model.ts +3 -1
- package/package.json +1 -1
package/model.js
CHANGED
@@ -618,7 +618,9 @@ exports.TagFieldsWithoutSharing = `${exports.PrimitiveFields}
|
|
618
618
|
tenantIdVerified: String
|
619
619
|
businessObjects: [BusinessObjectLink]
|
620
620
|
archived: Boolean!
|
621
|
-
favorite: Boolean
|
621
|
+
favorite: Boolean
|
622
|
+
hasAutoShareNotesOn: Boolean
|
623
|
+
hasAutoShareTasksOn: Boolean
|
622
624
|
taskCount: Int`;
|
623
625
|
exports.TagFieldsJustSharing = `
|
624
626
|
sharingDomains: [SharingDomain]
|
package/model.ts
CHANGED
@@ -914,7 +914,9 @@ export const TagFieldsWithoutSharing = `${PrimitiveFields}
|
|
914
914
|
tenantIdVerified: String
|
915
915
|
businessObjects: [BusinessObjectLink]
|
916
916
|
archived: Boolean!
|
917
|
-
favorite: Boolean
|
917
|
+
favorite: Boolean
|
918
|
+
hasAutoShareNotesOn: Boolean
|
919
|
+
hasAutoShareTasksOn: Boolean
|
918
920
|
taskCount: Int`;
|
919
921
|
export const TagFieldsJustSharing = `
|
920
922
|
sharingDomains: [SharingDomain]
|