@bigfootai/bigfoot-types 5.4.8 → 5.4.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.
- package/model.js +1 -0
- package/model.ts +1 -0
- package/package.json +1 -1
package/model.js
CHANGED
@@ -1241,6 +1241,7 @@ exports.UpsertMessageInputQL = `
|
|
1241
1241
|
input UpsertMessageInput {${exports.BlockFieldsForUpsert}
|
1242
1242
|
htmlContent: String
|
1243
1243
|
originReferenceTagId: String
|
1244
|
+
originReferenceBlock: ReferenceBlockInput
|
1244
1245
|
}`;
|
1245
1246
|
exports.MessageQL = `
|
1246
1247
|
type Message {${exports.BusinessObjectFields}
|
package/model.ts
CHANGED
@@ -2121,6 +2121,7 @@ export const UpsertMessageInputQL = `
|
|
2121
2121
|
input UpsertMessageInput {${BlockFieldsForUpsert}
|
2122
2122
|
htmlContent: String
|
2123
2123
|
originReferenceTagId: String
|
2124
|
+
originReferenceBlock: ReferenceBlockInput
|
2124
2125
|
}`;
|
2125
2126
|
export const MessageQL = `
|
2126
2127
|
type Message {${BusinessObjectFields}
|