api.fluff4.me 1.0.255 → 1.0.257
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 +24 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -194,6 +194,7 @@ export interface ChapterReorderBody {
|
|
|
194
194
|
}
|
|
195
195
|
|
|
196
196
|
export interface CommentWithAuthor {
|
|
197
|
+
comment_id: string
|
|
197
198
|
parent_id?: string | null
|
|
198
199
|
body?: TextBody | null
|
|
199
200
|
created_time?: string | null
|
|
@@ -288,6 +289,7 @@ export interface Comments {
|
|
|
288
289
|
}
|
|
289
290
|
|
|
290
291
|
export interface Comment {
|
|
292
|
+
comment_id: string
|
|
291
293
|
parent_id?: string | null
|
|
292
294
|
body?: string | null
|
|
293
295
|
created_time?: string | null
|
package/openapi.json
CHANGED
|
@@ -1097,10 +1097,17 @@
|
|
|
1097
1097
|
"CommentWithAuthor": {
|
|
1098
1098
|
"type": "object",
|
|
1099
1099
|
"properties": {
|
|
1100
|
+
"comment_id": {
|
|
1101
|
+
"type": "string",
|
|
1102
|
+
"minLength": 36,
|
|
1103
|
+
"maxLength": 36
|
|
1104
|
+
},
|
|
1100
1105
|
"parent_id": {
|
|
1101
1106
|
"anyOf": [
|
|
1102
1107
|
{
|
|
1103
|
-
"type": "string"
|
|
1108
|
+
"type": "string",
|
|
1109
|
+
"minLength": 36,
|
|
1110
|
+
"maxLength": 36
|
|
1104
1111
|
},
|
|
1105
1112
|
{
|
|
1106
1113
|
"type": "null"
|
|
@@ -1147,7 +1154,10 @@
|
|
|
1147
1154
|
}
|
|
1148
1155
|
]
|
|
1149
1156
|
}
|
|
1150
|
-
}
|
|
1157
|
+
},
|
|
1158
|
+
"required": [
|
|
1159
|
+
"comment_id"
|
|
1160
|
+
]
|
|
1151
1161
|
},
|
|
1152
1162
|
"CommentCreateBody": {
|
|
1153
1163
|
"type": "object",
|
|
@@ -1555,10 +1565,17 @@
|
|
|
1555
1565
|
"Comment": {
|
|
1556
1566
|
"type": "object",
|
|
1557
1567
|
"properties": {
|
|
1568
|
+
"comment_id": {
|
|
1569
|
+
"type": "string",
|
|
1570
|
+
"minLength": 36,
|
|
1571
|
+
"maxLength": 36
|
|
1572
|
+
},
|
|
1558
1573
|
"parent_id": {
|
|
1559
1574
|
"anyOf": [
|
|
1560
1575
|
{
|
|
1561
|
-
"type": "string"
|
|
1576
|
+
"type": "string",
|
|
1577
|
+
"minLength": 36,
|
|
1578
|
+
"maxLength": 36
|
|
1562
1579
|
},
|
|
1563
1580
|
{
|
|
1564
1581
|
"type": "null"
|
|
@@ -1606,7 +1623,10 @@
|
|
|
1606
1623
|
}
|
|
1607
1624
|
]
|
|
1608
1625
|
}
|
|
1609
|
-
}
|
|
1626
|
+
},
|
|
1627
|
+
"required": [
|
|
1628
|
+
"comment_id"
|
|
1629
|
+
]
|
|
1610
1630
|
},
|
|
1611
1631
|
"Tiers": {
|
|
1612
1632
|
"type": "array",
|
package/package.json
CHANGED