api.fluff4.me 1.0.1104 → 1.0.1105
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 +10 -10
- package/openapi.json +80 -10
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1553,31 +1553,31 @@ export interface Paths {
|
|
|
1553
1553
|
method: "post"
|
|
1554
1554
|
body?: undefined
|
|
1555
1555
|
search?: undefined
|
|
1556
|
-
response: Response<Follow> | ErrorResponse
|
|
1556
|
+
response: Response<Follow | null> | ErrorResponse
|
|
1557
1557
|
},
|
|
1558
1558
|
"/unfollow/work/{id}": {
|
|
1559
1559
|
method: "post"
|
|
1560
1560
|
body?: undefined
|
|
1561
1561
|
search?: undefined
|
|
1562
|
-
response: Response<Follow> | ErrorResponse
|
|
1562
|
+
response: Response<Follow | null> | ErrorResponse
|
|
1563
1563
|
},
|
|
1564
1564
|
"/unfollow/work/{author}/{vanity}": {
|
|
1565
1565
|
method: "post"
|
|
1566
1566
|
body?: undefined
|
|
1567
1567
|
search?: undefined
|
|
1568
|
-
response: Response<Follow> | ErrorResponse
|
|
1568
|
+
response: Response<Follow | null> | ErrorResponse
|
|
1569
1569
|
},
|
|
1570
1570
|
"/unfollow/tag/{id}": {
|
|
1571
1571
|
method: "post"
|
|
1572
1572
|
body?: undefined
|
|
1573
1573
|
search?: undefined
|
|
1574
|
-
response: Response<Follow> | ErrorResponse
|
|
1574
|
+
response: Response<Follow | null> | ErrorResponse
|
|
1575
1575
|
},
|
|
1576
1576
|
"/unfollow/category/{id}": {
|
|
1577
1577
|
method: "post"
|
|
1578
1578
|
body?: undefined
|
|
1579
1579
|
search?: undefined
|
|
1580
|
-
response: Response<Follow> | ErrorResponse
|
|
1580
|
+
response: Response<Follow | null> | ErrorResponse
|
|
1581
1581
|
},
|
|
1582
1582
|
"/following": {
|
|
1583
1583
|
method: "get"
|
|
@@ -1661,31 +1661,31 @@ export interface Paths {
|
|
|
1661
1661
|
method: "post"
|
|
1662
1662
|
body?: undefined
|
|
1663
1663
|
search?: undefined
|
|
1664
|
-
response: Response<Follow> | ErrorResponse
|
|
1664
|
+
response: Response<Follow | null> | ErrorResponse
|
|
1665
1665
|
},
|
|
1666
1666
|
"/unignore/work/{id}": {
|
|
1667
1667
|
method: "post"
|
|
1668
1668
|
body?: undefined
|
|
1669
1669
|
search?: undefined
|
|
1670
|
-
response: Response<Follow> | ErrorResponse
|
|
1670
|
+
response: Response<Follow | null> | ErrorResponse
|
|
1671
1671
|
},
|
|
1672
1672
|
"/unignore/work/{author}/{vanity}": {
|
|
1673
1673
|
method: "post"
|
|
1674
1674
|
body?: undefined
|
|
1675
1675
|
search?: undefined
|
|
1676
|
-
response: Response<Follow> | ErrorResponse
|
|
1676
|
+
response: Response<Follow | null> | ErrorResponse
|
|
1677
1677
|
},
|
|
1678
1678
|
"/unignore/tag/{id}": {
|
|
1679
1679
|
method: "post"
|
|
1680
1680
|
body?: undefined
|
|
1681
1681
|
search?: undefined
|
|
1682
|
-
response: Response<Follow> | ErrorResponse
|
|
1682
|
+
response: Response<Follow | null> | ErrorResponse
|
|
1683
1683
|
},
|
|
1684
1684
|
"/unignore/category/{id}": {
|
|
1685
1685
|
method: "post"
|
|
1686
1686
|
body?: undefined
|
|
1687
1687
|
search?: undefined
|
|
1688
|
-
response: Response<Follow> | ErrorResponse
|
|
1688
|
+
response: Response<Follow | null> | ErrorResponse
|
|
1689
1689
|
},
|
|
1690
1690
|
"/unignore/author-work-comments/{vanity}": {
|
|
1691
1691
|
method: "post"
|
package/openapi.json
CHANGED
|
@@ -9641,7 +9641,14 @@
|
|
|
9641
9641
|
"type": "object",
|
|
9642
9642
|
"properties": {
|
|
9643
9643
|
"data": {
|
|
9644
|
-
"
|
|
9644
|
+
"anyOf": [
|
|
9645
|
+
{
|
|
9646
|
+
"$ref": "#/components/schemas/Follow"
|
|
9647
|
+
},
|
|
9648
|
+
{
|
|
9649
|
+
"type": "null"
|
|
9650
|
+
}
|
|
9651
|
+
]
|
|
9645
9652
|
}
|
|
9646
9653
|
},
|
|
9647
9654
|
"required": [
|
|
@@ -9681,7 +9688,14 @@
|
|
|
9681
9688
|
"type": "object",
|
|
9682
9689
|
"properties": {
|
|
9683
9690
|
"data": {
|
|
9684
|
-
"
|
|
9691
|
+
"anyOf": [
|
|
9692
|
+
{
|
|
9693
|
+
"$ref": "#/components/schemas/Follow"
|
|
9694
|
+
},
|
|
9695
|
+
{
|
|
9696
|
+
"type": "null"
|
|
9697
|
+
}
|
|
9698
|
+
]
|
|
9685
9699
|
}
|
|
9686
9700
|
},
|
|
9687
9701
|
"required": [
|
|
@@ -9725,7 +9739,14 @@
|
|
|
9725
9739
|
"type": "object",
|
|
9726
9740
|
"properties": {
|
|
9727
9741
|
"data": {
|
|
9728
|
-
"
|
|
9742
|
+
"anyOf": [
|
|
9743
|
+
{
|
|
9744
|
+
"$ref": "#/components/schemas/Follow"
|
|
9745
|
+
},
|
|
9746
|
+
{
|
|
9747
|
+
"type": "null"
|
|
9748
|
+
}
|
|
9749
|
+
]
|
|
9729
9750
|
}
|
|
9730
9751
|
},
|
|
9731
9752
|
"required": [
|
|
@@ -9765,7 +9786,14 @@
|
|
|
9765
9786
|
"type": "object",
|
|
9766
9787
|
"properties": {
|
|
9767
9788
|
"data": {
|
|
9768
|
-
"
|
|
9789
|
+
"anyOf": [
|
|
9790
|
+
{
|
|
9791
|
+
"$ref": "#/components/schemas/Follow"
|
|
9792
|
+
},
|
|
9793
|
+
{
|
|
9794
|
+
"type": "null"
|
|
9795
|
+
}
|
|
9796
|
+
]
|
|
9769
9797
|
}
|
|
9770
9798
|
},
|
|
9771
9799
|
"required": [
|
|
@@ -9805,7 +9833,14 @@
|
|
|
9805
9833
|
"type": "object",
|
|
9806
9834
|
"properties": {
|
|
9807
9835
|
"data": {
|
|
9808
|
-
"
|
|
9836
|
+
"anyOf": [
|
|
9837
|
+
{
|
|
9838
|
+
"$ref": "#/components/schemas/Follow"
|
|
9839
|
+
},
|
|
9840
|
+
{
|
|
9841
|
+
"type": "null"
|
|
9842
|
+
}
|
|
9843
|
+
]
|
|
9809
9844
|
}
|
|
9810
9845
|
},
|
|
9811
9846
|
"required": [
|
|
@@ -10425,7 +10460,14 @@
|
|
|
10425
10460
|
"type": "object",
|
|
10426
10461
|
"properties": {
|
|
10427
10462
|
"data": {
|
|
10428
|
-
"
|
|
10463
|
+
"anyOf": [
|
|
10464
|
+
{
|
|
10465
|
+
"$ref": "#/components/schemas/Follow"
|
|
10466
|
+
},
|
|
10467
|
+
{
|
|
10468
|
+
"type": "null"
|
|
10469
|
+
}
|
|
10470
|
+
]
|
|
10429
10471
|
}
|
|
10430
10472
|
},
|
|
10431
10473
|
"required": [
|
|
@@ -10465,7 +10507,14 @@
|
|
|
10465
10507
|
"type": "object",
|
|
10466
10508
|
"properties": {
|
|
10467
10509
|
"data": {
|
|
10468
|
-
"
|
|
10510
|
+
"anyOf": [
|
|
10511
|
+
{
|
|
10512
|
+
"$ref": "#/components/schemas/Follow"
|
|
10513
|
+
},
|
|
10514
|
+
{
|
|
10515
|
+
"type": "null"
|
|
10516
|
+
}
|
|
10517
|
+
]
|
|
10469
10518
|
}
|
|
10470
10519
|
},
|
|
10471
10520
|
"required": [
|
|
@@ -10509,7 +10558,14 @@
|
|
|
10509
10558
|
"type": "object",
|
|
10510
10559
|
"properties": {
|
|
10511
10560
|
"data": {
|
|
10512
|
-
"
|
|
10561
|
+
"anyOf": [
|
|
10562
|
+
{
|
|
10563
|
+
"$ref": "#/components/schemas/Follow"
|
|
10564
|
+
},
|
|
10565
|
+
{
|
|
10566
|
+
"type": "null"
|
|
10567
|
+
}
|
|
10568
|
+
]
|
|
10513
10569
|
}
|
|
10514
10570
|
},
|
|
10515
10571
|
"required": [
|
|
@@ -10549,7 +10605,14 @@
|
|
|
10549
10605
|
"type": "object",
|
|
10550
10606
|
"properties": {
|
|
10551
10607
|
"data": {
|
|
10552
|
-
"
|
|
10608
|
+
"anyOf": [
|
|
10609
|
+
{
|
|
10610
|
+
"$ref": "#/components/schemas/Follow"
|
|
10611
|
+
},
|
|
10612
|
+
{
|
|
10613
|
+
"type": "null"
|
|
10614
|
+
}
|
|
10615
|
+
]
|
|
10553
10616
|
}
|
|
10554
10617
|
},
|
|
10555
10618
|
"required": [
|
|
@@ -10589,7 +10652,14 @@
|
|
|
10589
10652
|
"type": "object",
|
|
10590
10653
|
"properties": {
|
|
10591
10654
|
"data": {
|
|
10592
|
-
"
|
|
10655
|
+
"anyOf": [
|
|
10656
|
+
{
|
|
10657
|
+
"$ref": "#/components/schemas/Follow"
|
|
10658
|
+
},
|
|
10659
|
+
{
|
|
10660
|
+
"type": "null"
|
|
10661
|
+
}
|
|
10662
|
+
]
|
|
10593
10663
|
}
|
|
10594
10664
|
},
|
|
10595
10665
|
"required": [
|
package/package.json
CHANGED