api.fluff4.me 1.0.691 → 1.0.693
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
|
@@ -337,6 +337,7 @@ export interface Chapter {
|
|
|
337
337
|
custom_tags?: CustomTag[] | null
|
|
338
338
|
reactions?: number | null
|
|
339
339
|
reacted?: true | null
|
|
340
|
+
guest_reactions?: number | null
|
|
340
341
|
insufficient_pledge?: boolean | null
|
|
341
342
|
}
|
|
342
343
|
|
|
@@ -690,6 +691,7 @@ export interface ManifestFormInputLengths {
|
|
|
690
691
|
export interface ManifestReactionTypes {
|
|
691
692
|
love: ReactionType
|
|
692
693
|
author_heart: ReactionType
|
|
694
|
+
guest_heart: ReactionType
|
|
693
695
|
}
|
|
694
696
|
|
|
695
697
|
export interface ReactionType {
|
package/openapi.json
CHANGED
|
@@ -2049,6 +2049,16 @@
|
|
|
2049
2049
|
}
|
|
2050
2050
|
]
|
|
2051
2051
|
},
|
|
2052
|
+
"guest_reactions": {
|
|
2053
|
+
"anyOf": [
|
|
2054
|
+
{
|
|
2055
|
+
"type": "number"
|
|
2056
|
+
},
|
|
2057
|
+
{
|
|
2058
|
+
"type": "null"
|
|
2059
|
+
}
|
|
2060
|
+
]
|
|
2061
|
+
},
|
|
2052
2062
|
"insufficient_pledge": {
|
|
2053
2063
|
"anyOf": [
|
|
2054
2064
|
{
|
|
@@ -3950,11 +3960,15 @@
|
|
|
3950
3960
|
},
|
|
3951
3961
|
"author_heart": {
|
|
3952
3962
|
"$ref": "#/components/schema/ReactionType"
|
|
3963
|
+
},
|
|
3964
|
+
"guest_heart": {
|
|
3965
|
+
"$ref": "#/components/schema/ReactionType"
|
|
3953
3966
|
}
|
|
3954
3967
|
},
|
|
3955
3968
|
"required": [
|
|
3956
3969
|
"love",
|
|
3957
|
-
"author_heart"
|
|
3970
|
+
"author_heart",
|
|
3971
|
+
"guest_heart"
|
|
3958
3972
|
]
|
|
3959
3973
|
},
|
|
3960
3974
|
"ReactionType": {
|
package/package.json
CHANGED