@bigfootai/bigfoot-types 5.3.6 → 5.3.8

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 -0
  2. package/model.ts +6 -0
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -829,10 +829,12 @@ type ConnectRecommendation {
829
829
  exports.ReactionRecommendationQL = `
830
830
  type ReactionRecommendation {
831
831
  reaction: Reaction!
832
+ tenant: TenantLight!
832
833
  }`;
833
834
  exports.ChangeRecommendationQL = `
834
835
  type ChangeRecommendation {
835
836
  status: String
837
+ tenant: TenantLight!
836
838
  }`;
837
839
  exports.UpsertRecommendationQL = `
838
840
  type UpsertRecommendation {
@@ -1495,6 +1497,7 @@ input UpsertNoteInput {
1495
1497
  editor: EditorInput!
1496
1498
  sharingTags: [SharingTagInput]
1497
1499
  favorite: Boolean
1500
+ dateAssociated: Float
1498
1501
  }`;
1499
1502
  exports.FindBlockInputQL = `
1500
1503
  input FindBlockInput {
package/model.ts CHANGED
@@ -1254,17 +1254,21 @@ export interface ConnectRecommendation {
1254
1254
  export const ReactionRecommendationQL = `
1255
1255
  type ReactionRecommendation {
1256
1256
  reaction: Reaction!
1257
+ tenant: TenantLight!
1257
1258
  }`;
1258
1259
  export interface ReactionRecommendation {
1259
1260
  reaction: Reaction;
1261
+ tenant: TenantLight;
1260
1262
  }
1261
1263
 
1262
1264
  export const ChangeRecommendationQL = `
1263
1265
  type ChangeRecommendation {
1264
1266
  status: String
1267
+ tenant: TenantLight!
1265
1268
  }`;
1266
1269
  export interface ChangeRecommendation {
1267
1270
  status?: TaskStatus;
1271
+ tenant: TenantLight;
1268
1272
  }
1269
1273
 
1270
1274
  export const UpsertRecommendationQL = `
@@ -2646,6 +2650,7 @@ input UpsertNoteInput {
2646
2650
  editor: EditorInput!
2647
2651
  sharingTags: [SharingTagInput]
2648
2652
  favorite: Boolean
2653
+ dateAssociated: Float
2649
2654
  }`;
2650
2655
  export interface UpsertNoteInput {
2651
2656
  _id?: string;
@@ -2653,6 +2658,7 @@ export interface UpsertNoteInput {
2653
2658
  editor: Editor;
2654
2659
  sharingTags?: SharingTag[];
2655
2660
  favorite?: boolean;
2661
+ dateAssociated?: number;
2656
2662
  }
2657
2663
 
2658
2664
  export const FindBlockInputQL = `
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "5.3.6",
4
+ "version": "5.3.8",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",