@bigfootai/bigfoot-types 5.1.44 → 5.1.45
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 +2 -2
- package/model.ts +4 -4
- package/package.json +1 -1
package/model.js
CHANGED
@@ -1664,12 +1664,12 @@ type Reaction {
|
|
1664
1664
|
exports.FindReactionsInputQL = `
|
1665
1665
|
input FindReactionsInput {
|
1666
1666
|
_id: String!
|
1667
|
-
|
1667
|
+
blockType: BlockType!
|
1668
1668
|
}`;
|
1669
1669
|
exports.AddReactionInputQL = `
|
1670
1670
|
input AddReactionInput {
|
1671
1671
|
_id: String!
|
1672
|
-
|
1672
|
+
blockType: BlockType!
|
1673
1673
|
unified: String!
|
1674
1674
|
}`;
|
1675
1675
|
exports.RemoveReactionInputQL = `
|
package/model.ts
CHANGED
@@ -2973,22 +2973,22 @@ export interface Reaction {
|
|
2973
2973
|
export const FindReactionsInputQL = `
|
2974
2974
|
input FindReactionsInput {
|
2975
2975
|
_id: String!
|
2976
|
-
|
2976
|
+
blockType: BlockType!
|
2977
2977
|
}`;
|
2978
2978
|
export interface FindReactionsInput {
|
2979
2979
|
_id: string;
|
2980
|
-
|
2980
|
+
blockType: BlockType;
|
2981
2981
|
}
|
2982
2982
|
|
2983
2983
|
export const AddReactionInputQL = `
|
2984
2984
|
input AddReactionInput {
|
2985
2985
|
_id: String!
|
2986
|
-
|
2986
|
+
blockType: BlockType!
|
2987
2987
|
unified: String!
|
2988
2988
|
}`;
|
2989
2989
|
export interface AddReactionInput {
|
2990
2990
|
_id: string;
|
2991
|
-
|
2991
|
+
blockType: BlockType;
|
2992
2992
|
unified: string;
|
2993
2993
|
}
|
2994
2994
|
|