@bigfootai/bigfoot-types 5.1.45 → 5.1.46
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 -1
- package/model.ts +2 -2
- package/package.json +1 -1
package/model.js
CHANGED
package/model.ts
CHANGED
@@ -2995,12 +2995,12 @@ export interface AddReactionInput {
|
|
2995
2995
|
export const RemoveReactionInputQL = `
|
2996
2996
|
input RemoveReactionInput {
|
2997
2997
|
_id: String!
|
2998
|
-
|
2998
|
+
blockType: BlockType!
|
2999
2999
|
unified: String!
|
3000
3000
|
}`;
|
3001
3001
|
export interface RemoveReactionInput {
|
3002
3002
|
_id: string;
|
3003
|
-
|
3003
|
+
blockType: BlockType;
|
3004
3004
|
unified: string;
|
3005
3005
|
}
|
3006
3006
|
|