@bigfootai/bigfoot-types 5.3.7 → 5.3.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 +2 -0
- package/model.ts +4 -0
- package/package.json +1 -1
package/model.js
CHANGED
@@ -740,6 +740,7 @@ exports.TagFieldsWithoutSharing = `${exports.PrimitiveFields}
|
|
740
740
|
mergedWithTagId: String
|
741
741
|
member: Boolean
|
742
742
|
archived: Boolean!
|
743
|
+
private: Boolean
|
743
744
|
favorite: Boolean
|
744
745
|
hasAutoShareNotesOn: Boolean
|
745
746
|
hasAutoShareTasksOn: Boolean
|
@@ -1497,6 +1498,7 @@ input UpsertNoteInput {
|
|
1497
1498
|
editor: EditorInput!
|
1498
1499
|
sharingTags: [SharingTagInput]
|
1499
1500
|
favorite: Boolean
|
1501
|
+
dateAssociated: Float
|
1500
1502
|
}`;
|
1501
1503
|
exports.FindBlockInputQL = `
|
1502
1504
|
input FindBlockInput {
|
package/model.ts
CHANGED
@@ -1102,6 +1102,7 @@ export const TagFieldsWithoutSharing = `${PrimitiveFields}
|
|
1102
1102
|
mergedWithTagId: String
|
1103
1103
|
member: Boolean
|
1104
1104
|
archived: Boolean!
|
1105
|
+
private: Boolean
|
1105
1106
|
favorite: Boolean
|
1106
1107
|
hasAutoShareNotesOn: Boolean
|
1107
1108
|
hasAutoShareTasksOn: Boolean
|
@@ -1131,6 +1132,7 @@ export class Tag extends Primitive {
|
|
1131
1132
|
originNoteId?: string; // If the tag originated from a note, we store that here
|
1132
1133
|
tenantIdVerified?: string; // The tenant._id that claimed/verified this tag as being them
|
1133
1134
|
archived: boolean;
|
1135
|
+
private?: boolean; // Indicates if the tag exists, but the user can't see it
|
1134
1136
|
favorite?: boolean; // This is really a virtualized property
|
1135
1137
|
hasAutoShareNotesOn?: boolean; // This is really a virtualized property
|
1136
1138
|
hasAutoShareTasksOn?: boolean; // This is really a virtualized property
|
@@ -2650,6 +2652,7 @@ input UpsertNoteInput {
|
|
2650
2652
|
editor: EditorInput!
|
2651
2653
|
sharingTags: [SharingTagInput]
|
2652
2654
|
favorite: Boolean
|
2655
|
+
dateAssociated: Float
|
2653
2656
|
}`;
|
2654
2657
|
export interface UpsertNoteInput {
|
2655
2658
|
_id?: string;
|
@@ -2657,6 +2660,7 @@ export interface UpsertNoteInput {
|
|
2657
2660
|
editor: Editor;
|
2658
2661
|
sharingTags?: SharingTag[];
|
2659
2662
|
favorite?: boolean;
|
2663
|
+
dateAssociated?: number;
|
2660
2664
|
}
|
2661
2665
|
|
2662
2666
|
export const FindBlockInputQL = `
|