@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.
- package/model.js +4 -3
- package/model.ts +4 -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
|
-
|
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: [
|
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
|
-
|
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: [
|
2295
|
+
businessObjects: [BusinessObjectLinkInput]
|
2295
2296
|
hasAutoShareNotesOn: Boolean
|
2296
2297
|
hasAutoShareTasksOn: Boolean
|
2297
2298
|
sharingLevel: Int
|