api.fluff4.me 1.0.1125 → 1.0.1127
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 +89 -89
- package/openapi.json +240 -240
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1246,13 +1246,13 @@ export interface Paths {
|
|
|
1246
1246
|
search?: undefined
|
|
1247
1247
|
response: Response<AuthorSelf> | ErrorResponse
|
|
1248
1248
|
},
|
|
1249
|
-
"/v2/authors/{
|
|
1249
|
+
"/v2/authors/{author_vanity}": {
|
|
1250
1250
|
method: "get"
|
|
1251
1251
|
body?: undefined
|
|
1252
1252
|
search?: undefined
|
|
1253
1253
|
response: Response<Author> | ErrorResponse
|
|
1254
1254
|
},
|
|
1255
|
-
"/v2/authors/{
|
|
1255
|
+
"/v2/authors/{author_vanity}/rss.xml": {
|
|
1256
1256
|
method: "get"
|
|
1257
1257
|
body?: undefined
|
|
1258
1258
|
search?: undefined
|
|
@@ -1294,115 +1294,115 @@ export interface Paths {
|
|
|
1294
1294
|
search?: undefined
|
|
1295
1295
|
response: Response<Work> | ErrorResponse
|
|
1296
1296
|
},
|
|
1297
|
-
"/v2/works/{
|
|
1297
|
+
"/v2/works/{author_vanity}/{work_vanity}/get": {
|
|
1298
1298
|
method: "get"
|
|
1299
1299
|
body?: undefined
|
|
1300
1300
|
search?: undefined
|
|
1301
1301
|
response: Response<Work> | ErrorResponse
|
|
1302
1302
|
},
|
|
1303
|
-
"/v2/works/{
|
|
1303
|
+
"/v2/works/{author_vanity}/{work_vanity}/update": {
|
|
1304
1304
|
method: "post"
|
|
1305
1305
|
body: WorkUpdateBody
|
|
1306
1306
|
search?: undefined
|
|
1307
1307
|
response: Response<Work> | ErrorResponse
|
|
1308
1308
|
},
|
|
1309
|
-
"/v2/works/{
|
|
1309
|
+
"/v2/works/{author_vanity}/{work_vanity}/delete": {
|
|
1310
1310
|
method: "post"
|
|
1311
1311
|
body?: undefined
|
|
1312
1312
|
search?: undefined
|
|
1313
1313
|
response: void | ErrorResponse
|
|
1314
1314
|
},
|
|
1315
|
-
"/v2/works/{
|
|
1315
|
+
"/v2/works/{author_vanity}/{work_vanity}/feedback": {
|
|
1316
1316
|
method: "get"
|
|
1317
1317
|
body?: undefined
|
|
1318
1318
|
search?: undefined
|
|
1319
1319
|
response: Response<Feedback> | ErrorResponse
|
|
1320
1320
|
},
|
|
1321
|
-
"/v2/works/{
|
|
1321
|
+
"/v2/works/{author_vanity}/{work_vanity}/rss.xml": {
|
|
1322
1322
|
method: "get"
|
|
1323
1323
|
body?: undefined
|
|
1324
1324
|
search?: undefined
|
|
1325
1325
|
response: void | ErrorResponse
|
|
1326
1326
|
},
|
|
1327
|
-
"/v2/works/{
|
|
1327
|
+
"/v2/works/{author_vanity}": {
|
|
1328
1328
|
method: "get"
|
|
1329
1329
|
body?: undefined
|
|
1330
1330
|
search: PaginationSearch
|
|
1331
1331
|
response: PaginatedResponse<Works> | ErrorResponse
|
|
1332
1332
|
},
|
|
1333
|
-
"/v2/chapters/{
|
|
1333
|
+
"/v2/chapters/{author_vanity}/{work_vanity}/create": {
|
|
1334
1334
|
method: "post"
|
|
1335
1335
|
body: ChapterCreateBody
|
|
1336
1336
|
search?: undefined
|
|
1337
1337
|
response: Response<Chapter> | ErrorResponse
|
|
1338
1338
|
},
|
|
1339
|
-
"/v2/chapters/{
|
|
1339
|
+
"/v2/chapters/{author_vanity}/{work_vanity}/{chapter_url}": {
|
|
1340
1340
|
method: "get"
|
|
1341
1341
|
body?: undefined
|
|
1342
1342
|
search: PaginationSearch
|
|
1343
1343
|
response: PaginatedResponse<Chapter> | ErrorResponse
|
|
1344
1344
|
},
|
|
1345
|
-
"/v2/chapters/{
|
|
1345
|
+
"/v2/chapters/{author_vanity}/{work_vanity}/{chapter_url}/update": {
|
|
1346
1346
|
method: "post"
|
|
1347
1347
|
body: ChapterUpdateBody
|
|
1348
1348
|
search?: undefined
|
|
1349
1349
|
response: Response<Chapter> | ErrorResponse
|
|
1350
1350
|
},
|
|
1351
|
-
"/v2/chapters/{
|
|
1351
|
+
"/v2/chapters/{author_vanity}/{work_vanity}/{chapter_url}/delete": {
|
|
1352
1352
|
method: "post"
|
|
1353
1353
|
body?: undefined
|
|
1354
1354
|
search?: undefined
|
|
1355
1355
|
response: void | ErrorResponse
|
|
1356
1356
|
},
|
|
1357
|
-
"/v2/chapters/{
|
|
1357
|
+
"/v2/chapters/{author_vanity}/{work_vanity}/{chapter_url}/reorder": {
|
|
1358
1358
|
method: "post"
|
|
1359
1359
|
body: ChapterRelativePosition
|
|
1360
1360
|
search?: undefined
|
|
1361
1361
|
response: Response<ChapterMetadata> | ErrorResponse
|
|
1362
1362
|
},
|
|
1363
|
-
"/v2/chapters/{
|
|
1363
|
+
"/v2/chapters/{author_vanity}/{work_vanity}": {
|
|
1364
1364
|
method: "get"
|
|
1365
1365
|
body?: undefined
|
|
1366
1366
|
search: PaginationSearch
|
|
1367
1367
|
response: PaginatedResponse<Chapters> | ErrorResponse
|
|
1368
1368
|
},
|
|
1369
|
-
"/v2/chapters/{
|
|
1369
|
+
"/v2/chapters/{author_vanity}/{work_vanity}/list": {
|
|
1370
1370
|
method: "get"
|
|
1371
1371
|
body?: undefined
|
|
1372
1372
|
search: PaginationSearch
|
|
1373
1373
|
response: PaginatedResponse<Chapter> | ErrorResponse
|
|
1374
1374
|
},
|
|
1375
|
-
"/v2/chapters/{
|
|
1375
|
+
"/v2/chapters/{author_vanity}/{work_vanity}/bulk/queue": {
|
|
1376
1376
|
method: "post"
|
|
1377
1377
|
body: ChapterQueueBody
|
|
1378
1378
|
search?: undefined
|
|
1379
1379
|
response: Response<ChapterBulkQueueItem> | ErrorResponse
|
|
1380
1380
|
},
|
|
1381
|
-
"/v2/chapters/{
|
|
1381
|
+
"/v2/chapters/{author_vanity}/{work_vanity}/bulk/cancel": {
|
|
1382
1382
|
method: "post"
|
|
1383
1383
|
body?: undefined
|
|
1384
1384
|
search?: undefined
|
|
1385
1385
|
response: void | ErrorResponse
|
|
1386
1386
|
},
|
|
1387
|
-
"/v2/chapters/{
|
|
1387
|
+
"/v2/chapters/{author_vanity}/{work_vanity}/bulk/finish": {
|
|
1388
1388
|
method: "post"
|
|
1389
1389
|
body: ChapterBulkQueueFinishBody
|
|
1390
1390
|
search?: undefined
|
|
1391
1391
|
response: void | ErrorResponse
|
|
1392
1392
|
},
|
|
1393
|
-
"/v2/chapters/{
|
|
1393
|
+
"/v2/chapters/{author_vanity}/{work_vanity}/bulk/has": {
|
|
1394
1394
|
method: "post"
|
|
1395
1395
|
body?: undefined
|
|
1396
1396
|
search?: undefined
|
|
1397
1397
|
response: Response<ChapterHasQueue> | ErrorResponse
|
|
1398
1398
|
},
|
|
1399
|
-
"/v2/chapters/{
|
|
1399
|
+
"/v2/chapters/{author_vanity}/{work_vanity}/bulk/unname": {
|
|
1400
1400
|
method: "post"
|
|
1401
1401
|
body?: undefined
|
|
1402
1402
|
search?: undefined
|
|
1403
1403
|
response: void | ErrorResponse
|
|
1404
1404
|
},
|
|
1405
|
-
"/v2/chapters/{
|
|
1405
|
+
"/v2/chapters/{author_vanity}/{work_vanity}/bulk/setvisibility": {
|
|
1406
1406
|
method: "post"
|
|
1407
1407
|
body: CampaignTierSetBody
|
|
1408
1408
|
search?: undefined
|
|
@@ -1444,13 +1444,13 @@ export interface Paths {
|
|
|
1444
1444
|
search?: undefined
|
|
1445
1445
|
response: Response<Follow> | ErrorResponse
|
|
1446
1446
|
},
|
|
1447
|
-
"/v2/follows/author/{
|
|
1447
|
+
"/v2/follows/author/{author_vanity}/work-comments/ignore": {
|
|
1448
1448
|
method: "post"
|
|
1449
1449
|
body?: undefined
|
|
1450
1450
|
search?: undefined
|
|
1451
1451
|
response: void | ErrorResponse
|
|
1452
1452
|
},
|
|
1453
|
-
"/v2/follows/author/{
|
|
1453
|
+
"/v2/follows/author/{author_vanity}/work-comments/unignore": {
|
|
1454
1454
|
method: "post"
|
|
1455
1455
|
body?: undefined
|
|
1456
1456
|
search?: undefined
|
|
@@ -1528,37 +1528,37 @@ export interface Paths {
|
|
|
1528
1528
|
search?: undefined
|
|
1529
1529
|
response: Response<Follow> | ErrorResponse
|
|
1530
1530
|
},
|
|
1531
|
-
"/v2/follows/work/{
|
|
1531
|
+
"/v2/follows/work/{author_vanity}/{work_vanity}/follow": {
|
|
1532
1532
|
method: "post"
|
|
1533
1533
|
body?: undefined
|
|
1534
1534
|
search?: undefined
|
|
1535
1535
|
response: Response<Follow> | ErrorResponse
|
|
1536
1536
|
},
|
|
1537
|
-
"/v2/follows/work/{
|
|
1537
|
+
"/v2/follows/work/{author_vanity}/{work_vanity}/unfollow": {
|
|
1538
1538
|
method: "post"
|
|
1539
1539
|
body?: undefined
|
|
1540
1540
|
search?: undefined
|
|
1541
1541
|
response: Response<Follow | null> | ErrorResponse
|
|
1542
1542
|
},
|
|
1543
|
-
"/v2/follows/work/{
|
|
1543
|
+
"/v2/follows/work/{author_vanity}/{work_vanity}": {
|
|
1544
1544
|
method: "get"
|
|
1545
1545
|
body?: undefined
|
|
1546
1546
|
search?: undefined
|
|
1547
1547
|
response: Response<Follow> | ErrorResponse
|
|
1548
1548
|
},
|
|
1549
|
-
"/v2/follows/work/{
|
|
1549
|
+
"/v2/follows/work/{author_vanity}/{work_vanity}/ignore": {
|
|
1550
1550
|
method: "post"
|
|
1551
1551
|
body?: undefined
|
|
1552
1552
|
search?: undefined
|
|
1553
1553
|
response: Response<Follow> | ErrorResponse
|
|
1554
1554
|
},
|
|
1555
|
-
"/v2/follows/work/{
|
|
1555
|
+
"/v2/follows/work/{author_vanity}/{work_vanity}/unignore": {
|
|
1556
1556
|
method: "post"
|
|
1557
1557
|
body?: undefined
|
|
1558
1558
|
search?: undefined
|
|
1559
1559
|
response: Response<Follow | null> | ErrorResponse
|
|
1560
1560
|
},
|
|
1561
|
-
"/v2/follows/work/{
|
|
1561
|
+
"/v2/follows/work/{author_vanity}/{work_vanity}/ignoring": {
|
|
1562
1562
|
method: "get"
|
|
1563
1563
|
body?: undefined
|
|
1564
1564
|
search?: undefined
|
|
@@ -1582,31 +1582,31 @@ export interface Paths {
|
|
|
1582
1582
|
search: PaginationSearch
|
|
1583
1583
|
response: PaginatedResponse<Follow[]> | ErrorResponse
|
|
1584
1584
|
},
|
|
1585
|
-
"/v2/privileges/author/{
|
|
1585
|
+
"/v2/privileges/author/{author_vanity}/get": {
|
|
1586
1586
|
method: "get"
|
|
1587
1587
|
body?: undefined
|
|
1588
1588
|
search?: undefined
|
|
1589
1589
|
response: Response<Privileges> | ErrorResponse
|
|
1590
1590
|
},
|
|
1591
|
-
"/v2/privileges/author/{
|
|
1591
|
+
"/v2/privileges/author/{author_vanity}/grant": {
|
|
1592
1592
|
method: "post"
|
|
1593
1593
|
body: Privileges
|
|
1594
1594
|
search?: undefined
|
|
1595
1595
|
response: void | ErrorResponse
|
|
1596
1596
|
},
|
|
1597
|
-
"/v2/privileges/author/{
|
|
1597
|
+
"/v2/privileges/author/{author_vanity}/revoke": {
|
|
1598
1598
|
method: "post"
|
|
1599
1599
|
body: Privileges
|
|
1600
1600
|
search?: undefined
|
|
1601
1601
|
response: void | ErrorResponse
|
|
1602
1602
|
},
|
|
1603
|
-
"/v2/privileges/role/{
|
|
1603
|
+
"/v2/privileges/role/{role_name}/grant": {
|
|
1604
1604
|
method: "post"
|
|
1605
1605
|
body: Privileges
|
|
1606
1606
|
search?: undefined
|
|
1607
1607
|
response: void | ErrorResponse
|
|
1608
1608
|
},
|
|
1609
|
-
"/v2/privileges/role/{
|
|
1609
|
+
"/v2/privileges/role/{role_name}/revoke": {
|
|
1610
1610
|
method: "post"
|
|
1611
1611
|
body: Privileges
|
|
1612
1612
|
search?: undefined
|
|
@@ -1618,25 +1618,25 @@ export interface Paths {
|
|
|
1618
1618
|
search?: undefined
|
|
1619
1619
|
response: void | ErrorResponse
|
|
1620
1620
|
},
|
|
1621
|
-
"/v2/roles/{
|
|
1621
|
+
"/v2/roles/{role_name}/delete": {
|
|
1622
1622
|
method: "post"
|
|
1623
1623
|
body?: undefined
|
|
1624
1624
|
search?: undefined
|
|
1625
1625
|
response: void | ErrorResponse
|
|
1626
1626
|
},
|
|
1627
|
-
"/v2/roles/{
|
|
1627
|
+
"/v2/roles/{role_name}/update": {
|
|
1628
1628
|
method: "post"
|
|
1629
1629
|
body: RoleUpdateBody
|
|
1630
1630
|
search?: undefined
|
|
1631
1631
|
response: Response<Role> | ErrorResponse
|
|
1632
1632
|
},
|
|
1633
|
-
"/v2/roles/author/{
|
|
1633
|
+
"/v2/roles/author/{author_vanity}/{role_name}/grant": {
|
|
1634
1634
|
method: "post"
|
|
1635
1635
|
body?: undefined
|
|
1636
1636
|
search?: undefined
|
|
1637
1637
|
response: void | ErrorResponse
|
|
1638
1638
|
},
|
|
1639
|
-
"/v2/roles/author/{
|
|
1639
|
+
"/v2/roles/author/{author_vanity}/{role_name}/revoke": {
|
|
1640
1640
|
method: "post"
|
|
1641
1641
|
body?: undefined
|
|
1642
1642
|
search?: undefined
|
|
@@ -1654,31 +1654,31 @@ export interface Paths {
|
|
|
1654
1654
|
search?: undefined
|
|
1655
1655
|
response: void | ErrorResponse
|
|
1656
1656
|
},
|
|
1657
|
-
"/v2/comments/{
|
|
1657
|
+
"/v2/comments/{comment_id}/add": {
|
|
1658
1658
|
method: "post"
|
|
1659
1659
|
body: CommentCreateBody
|
|
1660
1660
|
search?: undefined
|
|
1661
1661
|
response: Response<Comment> | ErrorResponse
|
|
1662
1662
|
},
|
|
1663
|
-
"/v2/comments/{
|
|
1663
|
+
"/v2/comments/{comment_id}/update": {
|
|
1664
1664
|
method: "post"
|
|
1665
1665
|
body: CommentUpdateBody
|
|
1666
1666
|
search?: undefined
|
|
1667
1667
|
response: Response<Comment> | ErrorResponse
|
|
1668
1668
|
},
|
|
1669
|
-
"/v2/comments/{
|
|
1669
|
+
"/v2/comments/{comment_id}/delete": {
|
|
1670
1670
|
method: "post"
|
|
1671
1671
|
body?: undefined
|
|
1672
1672
|
search?: undefined
|
|
1673
1673
|
response: void | ErrorResponse
|
|
1674
1674
|
},
|
|
1675
|
-
"/v2/comments/{
|
|
1675
|
+
"/v2/comments/{comment_id}/descendants": {
|
|
1676
1676
|
method: "get"
|
|
1677
1677
|
body?: undefined
|
|
1678
1678
|
search: PaginationSearch
|
|
1679
1679
|
response: PaginatedResponse<CommentsResponse> | ErrorResponse
|
|
1680
1680
|
},
|
|
1681
|
-
"/v2/comments/moderation/author/{
|
|
1681
|
+
"/v2/comments/moderation/author/{author_vanity}": {
|
|
1682
1682
|
method: "get"
|
|
1683
1683
|
body?: undefined
|
|
1684
1684
|
search: PaginationSearch
|
|
@@ -1702,25 +1702,25 @@ export interface Paths {
|
|
|
1702
1702
|
search: PaginationSearch
|
|
1703
1703
|
response: PaginatedResponse<ContextualCommentsResponse> | ErrorResponse
|
|
1704
1704
|
},
|
|
1705
|
-
"/v2/comments/author/{
|
|
1705
|
+
"/v2/comments/author/{author_vanity}/chapter": {
|
|
1706
1706
|
method: "get"
|
|
1707
1707
|
body?: undefined
|
|
1708
1708
|
search: PaginationSearch
|
|
1709
1709
|
response: PaginatedResponse<ContextualCommentsResponse> | ErrorResponse
|
|
1710
1710
|
},
|
|
1711
|
-
"/v2/comments/author/{
|
|
1711
|
+
"/v2/comments/author/{author_vanity}/work": {
|
|
1712
1712
|
method: "get"
|
|
1713
1713
|
body?: undefined
|
|
1714
1714
|
search: PaginationSearch
|
|
1715
1715
|
response: PaginatedResponse<ContextualCommentsResponse> | ErrorResponse
|
|
1716
1716
|
},
|
|
1717
|
-
"/v2/comments/work/{
|
|
1717
|
+
"/v2/comments/work/{author_vanity}/{work_vanity}/add": {
|
|
1718
1718
|
method: "post"
|
|
1719
1719
|
body: WorkRecommendationBody
|
|
1720
1720
|
search?: undefined
|
|
1721
1721
|
response: Response<Comment> | ErrorResponse
|
|
1722
1722
|
},
|
|
1723
|
-
"/v2/comments/work/{
|
|
1723
|
+
"/v2/comments/work/{author_vanity}/{work_vanity}": {
|
|
1724
1724
|
method: "get"
|
|
1725
1725
|
body?: undefined
|
|
1726
1726
|
search: PaginationSearch
|
|
@@ -1750,13 +1750,13 @@ export interface Paths {
|
|
|
1750
1750
|
search?: undefined
|
|
1751
1751
|
response: Response<Tag> | ErrorResponse
|
|
1752
1752
|
},
|
|
1753
|
-
"/v2/tags/global/{
|
|
1753
|
+
"/v2/tags/global/{global_tag_id}/update": {
|
|
1754
1754
|
method: "post"
|
|
1755
1755
|
body: TagGlobalUpdateBody
|
|
1756
1756
|
search?: undefined
|
|
1757
1757
|
response: Response<Tag> | ErrorResponse
|
|
1758
1758
|
},
|
|
1759
|
-
"/v2/tags/global/{
|
|
1759
|
+
"/v2/tags/global/{global_tag_id}/demote": {
|
|
1760
1760
|
method: "post"
|
|
1761
1761
|
body: TagGlobalDemoteBody
|
|
1762
1762
|
search?: undefined
|
|
@@ -1780,13 +1780,13 @@ export interface Paths {
|
|
|
1780
1780
|
search?: undefined
|
|
1781
1781
|
response: Response<TagCategory> | ErrorResponse
|
|
1782
1782
|
},
|
|
1783
|
-
"/v2/tags/category/{
|
|
1783
|
+
"/v2/tags/category/{tag_category_name}/update": {
|
|
1784
1784
|
method: "post"
|
|
1785
1785
|
body: TagCategoryUpdateBody
|
|
1786
1786
|
search?: undefined
|
|
1787
1787
|
response: Response<TagCategory> | ErrorResponse
|
|
1788
1788
|
},
|
|
1789
|
-
"/v2/tags/category/{
|
|
1789
|
+
"/v2/tags/category/{tag_category_name}/delete": {
|
|
1790
1790
|
method: "post"
|
|
1791
1791
|
body?: undefined
|
|
1792
1792
|
search?: undefined
|
|
@@ -1804,7 +1804,7 @@ export interface Paths {
|
|
|
1804
1804
|
search?: undefined
|
|
1805
1805
|
response: Response<CustomTagUsage[]> | ErrorResponse
|
|
1806
1806
|
},
|
|
1807
|
-
"/v2/tags/custom/{
|
|
1807
|
+
"/v2/tags/custom/{custom_tag_id}/update": {
|
|
1808
1808
|
method: "post"
|
|
1809
1809
|
body: CustomTagRenameBody
|
|
1810
1810
|
search?: undefined
|
|
@@ -1954,13 +1954,13 @@ export interface Paths {
|
|
|
1954
1954
|
search?: undefined
|
|
1955
1955
|
response: void | ErrorResponse
|
|
1956
1956
|
},
|
|
1957
|
-
"/v2/feed/{
|
|
1957
|
+
"/v2/feed/{feed_id}/authed/rss.xml": {
|
|
1958
1958
|
method: "get"
|
|
1959
1959
|
body?: undefined
|
|
1960
1960
|
search?: undefined
|
|
1961
1961
|
response: void | ErrorResponse
|
|
1962
1962
|
},
|
|
1963
|
-
"/v2/feed/{
|
|
1963
|
+
"/v2/feed/{feed_id}/followed/rss.xml": {
|
|
1964
1964
|
method: "get"
|
|
1965
1965
|
body?: undefined
|
|
1966
1966
|
search?: undefined
|
|
@@ -1978,79 +1978,79 @@ export interface Paths {
|
|
|
1978
1978
|
search: PaginationSearch
|
|
1979
1979
|
response: PaginatedResponse<HistoryResponse> | ErrorResponse
|
|
1980
1980
|
},
|
|
1981
|
-
"/v2/history/work/{
|
|
1981
|
+
"/v2/history/work/{author_vanity}/{work_vanity}/add": {
|
|
1982
1982
|
method: "post"
|
|
1983
1983
|
body?: undefined
|
|
1984
1984
|
search?: undefined
|
|
1985
1985
|
response: void | ErrorResponse
|
|
1986
1986
|
},
|
|
1987
|
-
"/v2/history/work/{
|
|
1987
|
+
"/v2/history/work/{author_vanity}/{work_vanity}/delete": {
|
|
1988
1988
|
method: "post"
|
|
1989
1989
|
body?: undefined
|
|
1990
1990
|
search?: undefined
|
|
1991
1991
|
response: void | ErrorResponse
|
|
1992
1992
|
},
|
|
1993
|
-
"/v2/history/chapter/{
|
|
1993
|
+
"/v2/history/chapter/{author_vanity}/{work_vanity}/chapter/{chapter_url}/add": {
|
|
1994
1994
|
method: "post"
|
|
1995
1995
|
body?: undefined
|
|
1996
1996
|
search?: undefined
|
|
1997
1997
|
response: void | ErrorResponse
|
|
1998
1998
|
},
|
|
1999
|
-
"/v2/history/chapter/{
|
|
1999
|
+
"/v2/history/chapter/{author_vanity}/{work_vanity}/chapter/{chapter_url}/delete": {
|
|
2000
2000
|
method: "post"
|
|
2001
2001
|
body?: undefined
|
|
2002
2002
|
search?: undefined
|
|
2003
2003
|
response: void | ErrorResponse
|
|
2004
2004
|
},
|
|
2005
|
-
"/v2/history/bookmarks/{
|
|
2005
|
+
"/v2/history/bookmarks/{author_vanity}/{work_vanity}/delete/all": {
|
|
2006
2006
|
method: "post"
|
|
2007
2007
|
body?: undefined
|
|
2008
2008
|
search?: undefined
|
|
2009
2009
|
response: Response<Bookmarks> | ErrorResponse
|
|
2010
2010
|
},
|
|
2011
|
-
"/v2/history/bookmarks/{
|
|
2011
|
+
"/v2/history/bookmarks/{author_vanity}/{work_vanity}/delete/furthest-read": {
|
|
2012
2012
|
method: "post"
|
|
2013
2013
|
body?: undefined
|
|
2014
2014
|
search?: undefined
|
|
2015
2015
|
response: Response<Bookmarks> | ErrorResponse
|
|
2016
2016
|
},
|
|
2017
|
-
"/v2/history/bookmarks/{
|
|
2017
|
+
"/v2/history/bookmarks/{author_vanity}/{work_vanity}/delete/last-read": {
|
|
2018
2018
|
method: "post"
|
|
2019
2019
|
body?: undefined
|
|
2020
2020
|
search?: undefined
|
|
2021
2021
|
response: Response<Bookmarks> | ErrorResponse
|
|
2022
2022
|
},
|
|
2023
|
-
"/v2/reactions/comment/{
|
|
2023
|
+
"/v2/reactions/comment/{comment_id}/{reaction_type}/add": {
|
|
2024
2024
|
method: "post"
|
|
2025
2025
|
body?: undefined
|
|
2026
2026
|
search?: undefined
|
|
2027
2027
|
response: void | ErrorResponse
|
|
2028
2028
|
},
|
|
2029
|
-
"/v2/reactions/comment/{
|
|
2029
|
+
"/v2/reactions/comment/{comment_id}/{reaction_type}/remove": {
|
|
2030
2030
|
method: "post"
|
|
2031
2031
|
body?: undefined
|
|
2032
2032
|
search?: undefined
|
|
2033
2033
|
response: void | ErrorResponse
|
|
2034
2034
|
},
|
|
2035
|
-
"/v2/reactions/chapter/{
|
|
2035
|
+
"/v2/reactions/chapter/{author_vanity}/{work_vanity}/{chapter_url}/{reaction_type}/add": {
|
|
2036
2036
|
method: "post"
|
|
2037
2037
|
body?: undefined
|
|
2038
2038
|
search?: undefined
|
|
2039
2039
|
response: void | ErrorResponse
|
|
2040
2040
|
},
|
|
2041
|
-
"/v2/reactions/chapter/{
|
|
2041
|
+
"/v2/reactions/chapter/{author_vanity}/{work_vanity}/{chapter_url}/{reaction_type}/remove": {
|
|
2042
2042
|
method: "post"
|
|
2043
2043
|
body?: undefined
|
|
2044
2044
|
search?: undefined
|
|
2045
2045
|
response: void | ErrorResponse
|
|
2046
2046
|
},
|
|
2047
|
-
"/v2/reactions/chapter/{
|
|
2047
|
+
"/v2/reactions/chapter/{author_vanity}/{work_vanity}/{chapter_url}/supporter/add": {
|
|
2048
2048
|
method: "post"
|
|
2049
2049
|
body?: undefined
|
|
2050
2050
|
search?: undefined
|
|
2051
2051
|
response: void | ErrorResponse
|
|
2052
2052
|
},
|
|
2053
|
-
"/v2/reactions/chapter/{
|
|
2053
|
+
"/v2/reactions/chapter/{author_vanity}/{work_vanity}/{chapter_url}/supporter/remove": {
|
|
2054
2054
|
method: "post"
|
|
2055
2055
|
body?: undefined
|
|
2056
2056
|
search?: undefined
|
|
@@ -2062,13 +2062,13 @@ export interface Paths {
|
|
|
2062
2062
|
search?: undefined
|
|
2063
2063
|
response: void | ErrorResponse
|
|
2064
2064
|
},
|
|
2065
|
-
"/v2/changelogs/{
|
|
2065
|
+
"/v2/changelogs/{changelog_id}/update": {
|
|
2066
2066
|
method: "post"
|
|
2067
2067
|
body: ChangelogUpdateBody
|
|
2068
2068
|
search?: undefined
|
|
2069
2069
|
response: void | ErrorResponse
|
|
2070
2070
|
},
|
|
2071
|
-
"/v2/changelogs/{
|
|
2071
|
+
"/v2/changelogs/{changelog_id}/delete": {
|
|
2072
2072
|
method: "post"
|
|
2073
2073
|
body?: undefined
|
|
2074
2074
|
search?: undefined
|
|
@@ -2086,79 +2086,79 @@ export interface Paths {
|
|
|
2086
2086
|
search?: undefined
|
|
2087
2087
|
response: Response<SiteStatus> | ErrorResponse
|
|
2088
2088
|
},
|
|
2089
|
-
"/v2/moderation/work/{
|
|
2089
|
+
"/v2/moderation/work/{author_vanity}/{work_vanity}/censor": {
|
|
2090
2090
|
method: "post"
|
|
2091
2091
|
body: WorkCensorBody
|
|
2092
2092
|
search?: undefined
|
|
2093
2093
|
response: void | ErrorResponse
|
|
2094
2094
|
},
|
|
2095
|
-
"/v2/moderation/work/{
|
|
2095
|
+
"/v2/moderation/work/{author_vanity}/{work_vanity}/lock": {
|
|
2096
2096
|
method: "post"
|
|
2097
2097
|
body: WorkLockBody
|
|
2098
2098
|
search?: undefined
|
|
2099
2099
|
response: void | ErrorResponse
|
|
2100
2100
|
},
|
|
2101
|
-
"/v2/moderation/work/{
|
|
2101
|
+
"/v2/moderation/work/{author_vanity}/{work_vanity}/unlock": {
|
|
2102
2102
|
method: "post"
|
|
2103
2103
|
body?: undefined
|
|
2104
2104
|
search?: undefined
|
|
2105
2105
|
response: void | ErrorResponse
|
|
2106
2106
|
},
|
|
2107
|
-
"/v2/moderation/author/{
|
|
2107
|
+
"/v2/moderation/author/{author_vanity}/censor": {
|
|
2108
2108
|
method: "post"
|
|
2109
2109
|
body: AuthorCensorBody
|
|
2110
2110
|
search?: undefined
|
|
2111
2111
|
response: void | ErrorResponse
|
|
2112
2112
|
},
|
|
2113
|
-
"/v2/moderation/author/{
|
|
2113
|
+
"/v2/moderation/author/{author_vanity}/delete": {
|
|
2114
2114
|
method: "post"
|
|
2115
2115
|
body: ModerationAuthorDeleteBody
|
|
2116
2116
|
search?: undefined
|
|
2117
2117
|
response: void | ErrorResponse
|
|
2118
2118
|
},
|
|
2119
|
-
"/v2/moderation/author/{
|
|
2119
|
+
"/v2/moderation/author/{author_vanity}/grant-supporter": {
|
|
2120
2120
|
method: "post"
|
|
2121
2121
|
body: ModerationSupporterGrantBody
|
|
2122
2122
|
search?: undefined
|
|
2123
2123
|
response: void | ErrorResponse
|
|
2124
2124
|
},
|
|
2125
|
-
"/v2/moderation/author/{
|
|
2125
|
+
"/v2/moderation/author/{author_vanity}/comments/remove": {
|
|
2126
2126
|
method: "post"
|
|
2127
2127
|
body: PrivilegeRevokeBody
|
|
2128
2128
|
search?: undefined
|
|
2129
2129
|
response: void | ErrorResponse
|
|
2130
2130
|
},
|
|
2131
|
-
"/v2/moderation/author/{
|
|
2131
|
+
"/v2/moderation/author/{author_vanity}/privileges/{privilege_name}/revoke": {
|
|
2132
2132
|
method: "post"
|
|
2133
2133
|
body: PrivilegeRevokeBody
|
|
2134
2134
|
search?: undefined
|
|
2135
2135
|
response: void | ErrorResponse
|
|
2136
2136
|
},
|
|
2137
|
-
"/v2/moderation/chapter/{
|
|
2137
|
+
"/v2/moderation/chapter/{author_vanity}/{work_vanity}/{chapter_url}/censor": {
|
|
2138
2138
|
method: "post"
|
|
2139
2139
|
body: ChapterCensorBody
|
|
2140
2140
|
search?: undefined
|
|
2141
2141
|
response: void | ErrorResponse
|
|
2142
2142
|
},
|
|
2143
|
-
"/v2/reports/author/{
|
|
2143
|
+
"/v2/reports/author/{author_vanity}/add": {
|
|
2144
2144
|
method: "post"
|
|
2145
2145
|
body: ReportAuthorBody
|
|
2146
2146
|
search?: undefined
|
|
2147
2147
|
response: void | ErrorResponse
|
|
2148
2148
|
},
|
|
2149
|
-
"/v2/reports/work/{
|
|
2149
|
+
"/v2/reports/work/{author_vanity}/{work_vanity}/add": {
|
|
2150
2150
|
method: "post"
|
|
2151
2151
|
body: ReportWorkBody
|
|
2152
2152
|
search?: undefined
|
|
2153
2153
|
response: void | ErrorResponse
|
|
2154
2154
|
},
|
|
2155
|
-
"/v2/reports/chapter/{
|
|
2155
|
+
"/v2/reports/chapter/{author_vanity}/{work_vanity}/{chapter_url}/add": {
|
|
2156
2156
|
method: "post"
|
|
2157
2157
|
body: ReportChapterBody
|
|
2158
2158
|
search?: undefined
|
|
2159
2159
|
response: void | ErrorResponse
|
|
2160
2160
|
},
|
|
2161
|
-
"/v2/reports/comment/{
|
|
2161
|
+
"/v2/reports/comment/{comment_id}/add": {
|
|
2162
2162
|
method: "post"
|
|
2163
2163
|
body: ReportCommentBody
|
|
2164
2164
|
search?: undefined
|
|
@@ -2170,43 +2170,43 @@ export interface Paths {
|
|
|
2170
2170
|
search?: undefined
|
|
2171
2171
|
response: void | ErrorResponse
|
|
2172
2172
|
},
|
|
2173
|
-
"/v2/shelves/{
|
|
2173
|
+
"/v2/shelves/{shelf_id}/rss.xml": {
|
|
2174
2174
|
method: "get"
|
|
2175
2175
|
body?: undefined
|
|
2176
2176
|
search?: undefined
|
|
2177
2177
|
response: void | ErrorResponse
|
|
2178
2178
|
},
|
|
2179
|
-
"/v2/shelves/{
|
|
2179
|
+
"/v2/shelves/{shelf_id}/feed": {
|
|
2180
2180
|
method: "get"
|
|
2181
2181
|
body?: undefined
|
|
2182
2182
|
search: PaginationSearch
|
|
2183
2183
|
response: PaginatedResponse<FeedResponse> | ErrorResponse
|
|
2184
2184
|
},
|
|
2185
|
-
"/v2/shelves/{
|
|
2185
|
+
"/v2/shelves/{shelf_id}": {
|
|
2186
2186
|
method: "get"
|
|
2187
2187
|
body?: undefined
|
|
2188
2188
|
search?: undefined
|
|
2189
2189
|
response: Response<Shelf> | ErrorResponse
|
|
2190
2190
|
},
|
|
2191
|
-
"/v2/shelves/{
|
|
2191
|
+
"/v2/shelves/{shelf_id}/delete": {
|
|
2192
2192
|
method: "post"
|
|
2193
2193
|
body?: undefined
|
|
2194
2194
|
search?: undefined
|
|
2195
2195
|
response: void | ErrorResponse
|
|
2196
2196
|
},
|
|
2197
|
-
"/v2/shelves/{
|
|
2197
|
+
"/v2/shelves/{shelf_id}/regen": {
|
|
2198
2198
|
method: "post"
|
|
2199
2199
|
body?: undefined
|
|
2200
2200
|
search?: undefined
|
|
2201
2201
|
response: Response<ShelfDetails> | ErrorResponse
|
|
2202
2202
|
},
|
|
2203
|
-
"/v2/shelves/{
|
|
2203
|
+
"/v2/shelves/{shelf_id}/update": {
|
|
2204
2204
|
method: "post"
|
|
2205
2205
|
body: ShelfInsertable
|
|
2206
2206
|
search?: undefined
|
|
2207
2207
|
response: void | ErrorResponse
|
|
2208
2208
|
},
|
|
2209
|
-
"/v2/shelves/{
|
|
2209
|
+
"/v2/shelves/{shelf_id}/reorder": {
|
|
2210
2210
|
method: "post"
|
|
2211
2211
|
body: ShelfRelativePosition
|
|
2212
2212
|
search?: undefined
|