@bigfootai/bigfoot-types 5.3.8 → 5.3.10
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 +11 -0
- package/package.json +1 -1
package/model.js
CHANGED
package/model.ts
CHANGED
@@ -584,6 +584,15 @@ export interface LinkSubscriptionProviderRequest {
|
|
584
584
|
tableMetadata?: TableMetadata[];
|
585
585
|
}
|
586
586
|
|
587
|
+
export interface UserTokenRequest {
|
588
|
+
userId: string;
|
589
|
+
email: string;
|
590
|
+
}
|
591
|
+
|
592
|
+
export interface UserTokenResponse {
|
593
|
+
token: string;
|
594
|
+
}
|
595
|
+
|
587
596
|
export const CredentialQL = `
|
588
597
|
type Credential {
|
589
598
|
email: String!
|
@@ -1102,6 +1111,7 @@ export const TagFieldsWithoutSharing = `${PrimitiveFields}
|
|
1102
1111
|
mergedWithTagId: String
|
1103
1112
|
member: Boolean
|
1104
1113
|
archived: Boolean!
|
1114
|
+
private: Boolean
|
1105
1115
|
favorite: Boolean
|
1106
1116
|
hasAutoShareNotesOn: Boolean
|
1107
1117
|
hasAutoShareTasksOn: Boolean
|
@@ -1131,6 +1141,7 @@ export class Tag extends Primitive {
|
|
1131
1141
|
originNoteId?: string; // If the tag originated from a note, we store that here
|
1132
1142
|
tenantIdVerified?: string; // The tenant._id that claimed/verified this tag as being them
|
1133
1143
|
archived: boolean;
|
1144
|
+
private?: boolean; // Indicates if the tag exists, but the user can't see it
|
1134
1145
|
favorite?: boolean; // This is really a virtualized property
|
1135
1146
|
hasAutoShareNotesOn?: boolean; // This is really a virtualized property
|
1136
1147
|
hasAutoShareTasksOn?: boolean; // This is really a virtualized property
|