@bigfootai/bigfoot-types 4.7.27 → 4.7.29

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 +4 -3
  2. package/model.ts +4 -3
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -292,9 +292,10 @@ type SharingTenant {
292
292
  }`;
293
293
  exports.BusinessObjectLinkInputQL = `
294
294
  input BusinessObjectLinkInput {
295
- url: String!
295
+ url: String
296
296
  provider: String
297
- recordType: String
297
+ metadataType: String
298
+ blockType: String
298
299
  _compound: String
299
300
  }`;
300
301
  exports.BusinessObjectLinkQL = `
@@ -1271,7 +1272,7 @@ input UpsertTagInput {
1271
1272
  inviteStatus: String
1272
1273
  originNoteId: String
1273
1274
  favorite: Boolean
1274
- businessObjects: [BusinessObjectLink]
1275
+ businessObjects: [BusinessObjectLinkInput]
1275
1276
  hasAutoShareNotesOn: Boolean
1276
1277
  hasAutoShareTasksOn: Boolean
1277
1278
  sharingLevel: Int
package/model.ts CHANGED
@@ -340,9 +340,10 @@ export interface SharingTenant {
340
340
 
341
341
  export const BusinessObjectLinkInputQL = `
342
342
  input BusinessObjectLinkInput {
343
- url: String!
343
+ url: String
344
344
  provider: String
345
- recordType: String
345
+ metadataType: String
346
+ blockType: String
346
347
  _compound: String
347
348
  }`;
348
349
  export const BusinessObjectLinkQL = `
@@ -2291,7 +2292,7 @@ input UpsertTagInput {
2291
2292
  inviteStatus: String
2292
2293
  originNoteId: String
2293
2294
  favorite: Boolean
2294
- businessObjects: [BusinessObjectLink]
2295
+ businessObjects: [BusinessObjectLinkInput]
2295
2296
  hasAutoShareNotesOn: Boolean
2296
2297
  hasAutoShareTasksOn: Boolean
2297
2298
  sharingLevel: Int
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "4.7.27",
4
+ "version": "4.7.29",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",