api.fluff4.me 1.0.457 → 1.0.458
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 +20 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -217,6 +217,7 @@ export interface Chapter {
|
|
|
217
217
|
time_publish?: string | null
|
|
218
218
|
author: string
|
|
219
219
|
work: string
|
|
220
|
+
tier?: PatreonCampaignTier | null
|
|
220
221
|
is_numbered: boolean
|
|
221
222
|
body: string
|
|
222
223
|
index: number
|
|
@@ -264,6 +265,7 @@ export interface ChapterLite {
|
|
|
264
265
|
time_publish?: string | null
|
|
265
266
|
author: string
|
|
266
267
|
work: string
|
|
268
|
+
tier?: PatreonCampaignTier | null
|
|
267
269
|
is_numbered: boolean
|
|
268
270
|
}
|
|
269
271
|
|
package/openapi.json
CHANGED
|
@@ -1206,6 +1206,16 @@
|
|
|
1206
1206
|
"work": {
|
|
1207
1207
|
"type": "string"
|
|
1208
1208
|
},
|
|
1209
|
+
"tier": {
|
|
1210
|
+
"anyOf": [
|
|
1211
|
+
{
|
|
1212
|
+
"$ref": "#/components/schema/PatreonCampaignTier"
|
|
1213
|
+
},
|
|
1214
|
+
{
|
|
1215
|
+
"type": "null"
|
|
1216
|
+
}
|
|
1217
|
+
]
|
|
1218
|
+
},
|
|
1209
1219
|
"is_numbered": {
|
|
1210
1220
|
"type": "boolean"
|
|
1211
1221
|
},
|
|
@@ -1578,6 +1588,16 @@
|
|
|
1578
1588
|
"work": {
|
|
1579
1589
|
"type": "string"
|
|
1580
1590
|
},
|
|
1591
|
+
"tier": {
|
|
1592
|
+
"anyOf": [
|
|
1593
|
+
{
|
|
1594
|
+
"$ref": "#/components/schema/PatreonCampaignTier"
|
|
1595
|
+
},
|
|
1596
|
+
{
|
|
1597
|
+
"type": "null"
|
|
1598
|
+
}
|
|
1599
|
+
]
|
|
1600
|
+
},
|
|
1581
1601
|
"is_numbered": {
|
|
1582
1602
|
"type": "boolean"
|
|
1583
1603
|
}
|
package/package.json
CHANGED