@bigfootai/bigfoot-types 4.5.8 → 4.5.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.
Files changed (3) hide show
  1. package/model.js +3 -2
  2. package/model.ts +8 -3
  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
- sharingDomains: [SharingDomainInput]
1129
- sharingTenants: [SharingTenantInput]
1128
+ hasAutoShareNotesOn: Boolean
1129
+ hasAutoShareTasksOn: Boolean
1130
+ sharingLevel: Int
1130
1131
  }`;
1131
1132
  exports.FindTagInputQL = `
1132
1133
  input FindTagInput {
package/model.ts CHANGED
@@ -318,6 +318,7 @@ export interface SharingTenant {
318
318
  hasAutoShareNotesOn: boolean; // Indicates if the tenant has auto sharing of notes switched on
319
319
  hasAutoShareTasksOn: boolean; // Indicates if the tenant has auto sharing of tasks switched on
320
320
  sharingLevel: SharingLevel; // Determines what tenants can do with the tag beyond tenant specific settings above
321
+ _savedSearchId: string;
321
322
  }
322
323
 
323
324
  export const ReactionSkinToneQL = `
@@ -811,7 +812,10 @@ export class Tag extends Primitive {
811
812
  originNoteId?: string; // If the tag originated from a note, we store that here
812
813
  tenantIdVerified?: string; // The tenant._id that claimed/verified this tag as being them
813
814
  archived: boolean;
814
- favorite: boolean; // This is really a virtualized tag as it's taken from the tenant sharing, not from the database
815
+ favorite?: boolean; // This is really a virtualized property
816
+ hasAutoShareNotesOn?: boolean; // This is really a virtualized property
817
+ hasAutoShareTasksOn?: boolean; // This is really a virtualized property
818
+ sharingLevel?: SharingLevel; // This is really a virtualized property
815
819
  taskCount?: number;
816
820
  _createdByAI: boolean;
817
821
  _orphan?: boolean;
@@ -2026,8 +2030,9 @@ input UpsertTagInput {
2026
2030
  inviteStatus: Int
2027
2031
  originNoteId: String
2028
2032
  favorite: Boolean
2029
- sharingDomains: [SharingDomainInput]
2030
- sharingTenants: [SharingTenantInput]
2033
+ hasAutoShareNotesOn: Boolean
2034
+ hasAutoShareTasksOn: Boolean
2035
+ sharingLevel: Int
2031
2036
  }`;
2032
2037
  export interface UpsertTagInput extends Tag {}
2033
2038
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "4.5.8",
4
+ "version": "4.5.10",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",