@bigfootai/bigfoot-types 4.5.8 → 4.5.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 +3 -2
- package/model.ts +7 -3
- package/package.json +1 -1
package/model.js
CHANGED
@@ -1125,8 +1125,9 @@ input UpsertTagInput {
|
|
1125
1125
|
inviteStatus: Int
|
1126
1126
|
originNoteId: String
|
1127
1127
|
favorite: Boolean
|
1128
|
-
|
1129
|
-
|
1128
|
+
hasAutoShareNotesOn: Boolean
|
1129
|
+
hasAutoShareTasksOn: Boolean
|
1130
|
+
sharingLevel: Int
|
1130
1131
|
}`;
|
1131
1132
|
exports.FindTagInputQL = `
|
1132
1133
|
input FindTagInput {
|
package/model.ts
CHANGED
@@ -811,7 +811,10 @@ export class Tag extends Primitive {
|
|
811
811
|
originNoteId?: string; // If the tag originated from a note, we store that here
|
812
812
|
tenantIdVerified?: string; // The tenant._id that claimed/verified this tag as being them
|
813
813
|
archived: boolean;
|
814
|
-
favorite
|
814
|
+
favorite?: boolean; // This is really a virtualized property
|
815
|
+
hasAutoShareNotesOn?: boolean; // This is really a virtualized property
|
816
|
+
hasAutoShareTasksOn?: boolean; // This is really a virtualized property
|
817
|
+
sharingLevel?: SharingLevel; // This is really a virtualized property
|
815
818
|
taskCount?: number;
|
816
819
|
_createdByAI: boolean;
|
817
820
|
_orphan?: boolean;
|
@@ -2026,8 +2029,9 @@ input UpsertTagInput {
|
|
2026
2029
|
inviteStatus: Int
|
2027
2030
|
originNoteId: String
|
2028
2031
|
favorite: Boolean
|
2029
|
-
|
2030
|
-
|
2032
|
+
hasAutoShareNotesOn: Boolean
|
2033
|
+
hasAutoShareTasksOn: Boolean
|
2034
|
+
sharingLevel: Int
|
2031
2035
|
}`;
|
2032
2036
|
export interface UpsertTagInput extends Tag {}
|
2033
2037
|
|