api.fluff4.me 1.0.1096 → 1.0.1097
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 +13 -0
- package/openapi.json +63 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -591,6 +591,7 @@ export interface WorkResolveSearch {
|
|
|
591
591
|
|
|
592
592
|
export interface Follow {
|
|
593
593
|
author?: string | null
|
|
594
|
+
ignoring_work_comments?: true | null
|
|
594
595
|
work?: WorkReference | null
|
|
595
596
|
tag?: string | null
|
|
596
597
|
tag_category?: string | null
|
|
@@ -1642,6 +1643,12 @@ export interface Paths {
|
|
|
1642
1643
|
search?: undefined
|
|
1643
1644
|
response: Response<Follow> | ErrorResponse
|
|
1644
1645
|
},
|
|
1646
|
+
"/ignore/author-work-comments/{vanity}": {
|
|
1647
|
+
method: "post"
|
|
1648
|
+
body?: undefined
|
|
1649
|
+
search?: undefined
|
|
1650
|
+
response: void | ErrorResponse
|
|
1651
|
+
},
|
|
1645
1652
|
"/unignore/author/{id}": {
|
|
1646
1653
|
method: "post"
|
|
1647
1654
|
body?: undefined
|
|
@@ -1672,6 +1679,12 @@ export interface Paths {
|
|
|
1672
1679
|
search?: undefined
|
|
1673
1680
|
response: Response<Follow> | ErrorResponse
|
|
1674
1681
|
},
|
|
1682
|
+
"/unignore/author-work-comments/{vanity}": {
|
|
1683
|
+
method: "post"
|
|
1684
|
+
body?: undefined
|
|
1685
|
+
search?: undefined
|
|
1686
|
+
response: void | ErrorResponse
|
|
1687
|
+
},
|
|
1675
1688
|
"/ignoring/{type}": {
|
|
1676
1689
|
method: "get"
|
|
1677
1690
|
body?: undefined
|
package/openapi.json
CHANGED
|
@@ -3720,6 +3720,19 @@
|
|
|
3720
3720
|
}
|
|
3721
3721
|
]
|
|
3722
3722
|
},
|
|
3723
|
+
"ignoring_work_comments": {
|
|
3724
|
+
"anyOf": [
|
|
3725
|
+
{
|
|
3726
|
+
"type": "boolean",
|
|
3727
|
+
"enum": [
|
|
3728
|
+
true
|
|
3729
|
+
]
|
|
3730
|
+
},
|
|
3731
|
+
{
|
|
3732
|
+
"type": "null"
|
|
3733
|
+
}
|
|
3734
|
+
]
|
|
3735
|
+
},
|
|
3723
3736
|
"work": {
|
|
3724
3737
|
"anyOf": [
|
|
3725
3738
|
{
|
|
@@ -10273,6 +10286,31 @@
|
|
|
10273
10286
|
}
|
|
10274
10287
|
}
|
|
10275
10288
|
},
|
|
10289
|
+
"/ignore/author-work-comments/{vanity}": {
|
|
10290
|
+
"parameters": [
|
|
10291
|
+
{
|
|
10292
|
+
"name": "vanity",
|
|
10293
|
+
"in": "path"
|
|
10294
|
+
}
|
|
10295
|
+
],
|
|
10296
|
+
"post": {
|
|
10297
|
+
"responses": {
|
|
10298
|
+
"200": {
|
|
10299
|
+
"description": "200 response"
|
|
10300
|
+
},
|
|
10301
|
+
"default": {
|
|
10302
|
+
"description": "Error",
|
|
10303
|
+
"content": {
|
|
10304
|
+
"application/json": {
|
|
10305
|
+
"schema": {
|
|
10306
|
+
"$ref": "#/components/schemas/ErrorResponse"
|
|
10307
|
+
}
|
|
10308
|
+
}
|
|
10309
|
+
}
|
|
10310
|
+
}
|
|
10311
|
+
}
|
|
10312
|
+
}
|
|
10313
|
+
},
|
|
10276
10314
|
"/unignore/author/{id}": {
|
|
10277
10315
|
"parameters": [
|
|
10278
10316
|
{
|
|
@@ -10477,6 +10515,31 @@
|
|
|
10477
10515
|
}
|
|
10478
10516
|
}
|
|
10479
10517
|
},
|
|
10518
|
+
"/unignore/author-work-comments/{vanity}": {
|
|
10519
|
+
"parameters": [
|
|
10520
|
+
{
|
|
10521
|
+
"name": "vanity",
|
|
10522
|
+
"in": "path"
|
|
10523
|
+
}
|
|
10524
|
+
],
|
|
10525
|
+
"post": {
|
|
10526
|
+
"responses": {
|
|
10527
|
+
"200": {
|
|
10528
|
+
"description": "200 response"
|
|
10529
|
+
},
|
|
10530
|
+
"default": {
|
|
10531
|
+
"description": "Error",
|
|
10532
|
+
"content": {
|
|
10533
|
+
"application/json": {
|
|
10534
|
+
"schema": {
|
|
10535
|
+
"$ref": "#/components/schemas/ErrorResponse"
|
|
10536
|
+
}
|
|
10537
|
+
}
|
|
10538
|
+
}
|
|
10539
|
+
}
|
|
10540
|
+
}
|
|
10541
|
+
}
|
|
10542
|
+
},
|
|
10480
10543
|
"/ignoring/{type}": {
|
|
10481
10544
|
"parameters": [
|
|
10482
10545
|
{
|
package/package.json
CHANGED