api.fluff4.me 1.0.680 → 1.0.682
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/index.d.ts +2 -0
- package/openapi.json +15 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -522,6 +522,7 @@ export interface CommentResolved {
|
|
|
522
522
|
author?: string | null
|
|
523
523
|
reactions?: number | null
|
|
524
524
|
reacted?: true | null
|
|
525
|
+
author_hearted?: boolean | null
|
|
525
526
|
}
|
|
526
527
|
|
|
527
528
|
export interface CommentCreateBody {
|
|
@@ -688,6 +689,7 @@ export interface ManifestFormInputLengths {
|
|
|
688
689
|
|
|
689
690
|
export interface ManifestReactionTypes {
|
|
690
691
|
love: ReactionType
|
|
692
|
+
author_heart: ReactionType
|
|
691
693
|
}
|
|
692
694
|
|
|
693
695
|
export interface ReactionType {
|
package/openapi.json
CHANGED
|
@@ -3142,6 +3142,16 @@
|
|
|
3142
3142
|
"type": "null"
|
|
3143
3143
|
}
|
|
3144
3144
|
]
|
|
3145
|
+
},
|
|
3146
|
+
"author_hearted": {
|
|
3147
|
+
"anyOf": [
|
|
3148
|
+
{
|
|
3149
|
+
"type": "boolean"
|
|
3150
|
+
},
|
|
3151
|
+
{
|
|
3152
|
+
"type": "null"
|
|
3153
|
+
}
|
|
3154
|
+
]
|
|
3145
3155
|
}
|
|
3146
3156
|
},
|
|
3147
3157
|
"required": [
|
|
@@ -3934,10 +3944,14 @@
|
|
|
3934
3944
|
"properties": {
|
|
3935
3945
|
"love": {
|
|
3936
3946
|
"$ref": "#/components/schema/ReactionType"
|
|
3947
|
+
},
|
|
3948
|
+
"author_heart": {
|
|
3949
|
+
"$ref": "#/components/schema/ReactionType"
|
|
3937
3950
|
}
|
|
3938
3951
|
},
|
|
3939
3952
|
"required": [
|
|
3940
|
-
"love"
|
|
3953
|
+
"love",
|
|
3954
|
+
"author_heart"
|
|
3941
3955
|
]
|
|
3942
3956
|
},
|
|
3943
3957
|
"ReactionType": {
|
package/package.json
CHANGED