api.fluff4.me 1.0.828 → 1.0.839
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 +12 -0
- package/openapi.json +44 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -119,6 +119,12 @@ export interface Work {
|
|
|
119
119
|
license?: WorkLicense | null
|
|
120
120
|
patreon?: WorkPatreon | null
|
|
121
121
|
lock_reason?: string | null
|
|
122
|
+
frequency?:
|
|
123
|
+
| {
|
|
124
|
+
amount: number
|
|
125
|
+
interval: number
|
|
126
|
+
}
|
|
127
|
+
| null
|
|
122
128
|
}
|
|
123
129
|
|
|
124
130
|
export interface WorkLicense {
|
|
@@ -259,6 +265,12 @@ export interface WorkFull {
|
|
|
259
265
|
license?: WorkLicense | null
|
|
260
266
|
patreon?: WorkPatreon | null
|
|
261
267
|
lock_reason?: string | null
|
|
268
|
+
frequency?:
|
|
269
|
+
| {
|
|
270
|
+
amount: number
|
|
271
|
+
interval: number
|
|
272
|
+
}
|
|
273
|
+
| null
|
|
262
274
|
synopsis: TextBodyWithAuthor
|
|
263
275
|
custom_tags?: CustomTag[] | null
|
|
264
276
|
last_chapter: string
|
package/openapi.json
CHANGED
|
@@ -613,6 +613,28 @@
|
|
|
613
613
|
"type": "null"
|
|
614
614
|
}
|
|
615
615
|
]
|
|
616
|
+
},
|
|
617
|
+
"frequency": {
|
|
618
|
+
"anyOf": [
|
|
619
|
+
{
|
|
620
|
+
"type": "object",
|
|
621
|
+
"properties": {
|
|
622
|
+
"amount": {
|
|
623
|
+
"type": "number"
|
|
624
|
+
},
|
|
625
|
+
"interval": {
|
|
626
|
+
"type": "number"
|
|
627
|
+
}
|
|
628
|
+
},
|
|
629
|
+
"required": [
|
|
630
|
+
"amount",
|
|
631
|
+
"interval"
|
|
632
|
+
]
|
|
633
|
+
},
|
|
634
|
+
{
|
|
635
|
+
"type": "null"
|
|
636
|
+
}
|
|
637
|
+
]
|
|
616
638
|
}
|
|
617
639
|
},
|
|
618
640
|
"required": [
|
|
@@ -1449,6 +1471,28 @@
|
|
|
1449
1471
|
}
|
|
1450
1472
|
]
|
|
1451
1473
|
},
|
|
1474
|
+
"frequency": {
|
|
1475
|
+
"anyOf": [
|
|
1476
|
+
{
|
|
1477
|
+
"type": "object",
|
|
1478
|
+
"properties": {
|
|
1479
|
+
"amount": {
|
|
1480
|
+
"type": "number"
|
|
1481
|
+
},
|
|
1482
|
+
"interval": {
|
|
1483
|
+
"type": "number"
|
|
1484
|
+
}
|
|
1485
|
+
},
|
|
1486
|
+
"required": [
|
|
1487
|
+
"amount",
|
|
1488
|
+
"interval"
|
|
1489
|
+
]
|
|
1490
|
+
},
|
|
1491
|
+
{
|
|
1492
|
+
"type": "null"
|
|
1493
|
+
}
|
|
1494
|
+
]
|
|
1495
|
+
},
|
|
1452
1496
|
"synopsis": {
|
|
1453
1497
|
"$ref": "#/components/schema/TextBodyWithAuthor"
|
|
1454
1498
|
},
|
package/package.json
CHANGED