@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.
Files changed (3) hide show
  1. package/model.js +3 -2
  2. package/model.ts +7 -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
@@ -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: boolean; // This is really a virtualized tag as it's taken from the tenant sharing, not from the database
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
- sharingDomains: [SharingDomainInput]
2030
- sharingTenants: [SharingTenantInput]
2032
+ hasAutoShareNotesOn: Boolean
2033
+ hasAutoShareTasksOn: Boolean
2034
+ sharingLevel: Int
2031
2035
  }`;
2032
2036
  export interface UpsertTagInput extends Tag {}
2033
2037
 
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.9",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",