api.fluff4.me 1.0.274 → 1.0.277
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 +6 -6
- package/openapi.json +6 -6
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -42,7 +42,7 @@ export interface Author {
|
|
|
42
42
|
pronouns?: string | null
|
|
43
43
|
}
|
|
44
44
|
|
|
45
|
-
export interface
|
|
45
|
+
export interface AuthDeleteBody {
|
|
46
46
|
id: string
|
|
47
47
|
}
|
|
48
48
|
|
|
@@ -481,9 +481,9 @@ export interface Paths {
|
|
|
481
481
|
body?: undefined
|
|
482
482
|
response: void | ErrorResponse
|
|
483
483
|
},
|
|
484
|
-
"/auth/
|
|
484
|
+
"/auth/delete": {
|
|
485
485
|
method: "post"
|
|
486
|
-
body:
|
|
486
|
+
body: AuthDeleteBody
|
|
487
487
|
response: void | ErrorResponse
|
|
488
488
|
},
|
|
489
489
|
"/auth/services": {
|
|
@@ -751,7 +751,7 @@ export interface Paths {
|
|
|
751
751
|
body: CommentUpdateBody
|
|
752
752
|
response: Response<CommentResolved> | ErrorResponse
|
|
753
753
|
},
|
|
754
|
-
"/comment/{id}/
|
|
754
|
+
"/comment/{id}/delete": {
|
|
755
755
|
method: "post"
|
|
756
756
|
body?: undefined
|
|
757
757
|
response: void | ErrorResponse
|
|
@@ -801,12 +801,12 @@ export interface Paths {
|
|
|
801
801
|
body: TagCategoryUpdateBody
|
|
802
802
|
response: Response<TagCategory> | ErrorResponse
|
|
803
803
|
},
|
|
804
|
-
"/tag/
|
|
804
|
+
"/tag/delete/global/{vanity}": {
|
|
805
805
|
method: "post"
|
|
806
806
|
body?: undefined
|
|
807
807
|
response: void | ErrorResponse
|
|
808
808
|
},
|
|
809
|
-
"/tag/
|
|
809
|
+
"/tag/delete/category/{vanity}": {
|
|
810
810
|
method: "post"
|
|
811
811
|
body?: undefined
|
|
812
812
|
response: void | ErrorResponse
|
package/openapi.json
CHANGED
|
@@ -143,7 +143,7 @@
|
|
|
143
143
|
"vanity"
|
|
144
144
|
]
|
|
145
145
|
},
|
|
146
|
-
"
|
|
146
|
+
"AuthDeleteBody": {
|
|
147
147
|
"type": "object",
|
|
148
148
|
"properties": {
|
|
149
149
|
"id": {
|
|
@@ -2461,13 +2461,13 @@
|
|
|
2461
2461
|
}
|
|
2462
2462
|
}
|
|
2463
2463
|
},
|
|
2464
|
-
"/auth/
|
|
2464
|
+
"/auth/delete": {
|
|
2465
2465
|
"post": {
|
|
2466
2466
|
"requestBody": {
|
|
2467
2467
|
"content": {
|
|
2468
2468
|
"application/json": {
|
|
2469
2469
|
"schema": {
|
|
2470
|
-
"$ref": "#/components/schemas/
|
|
2470
|
+
"$ref": "#/components/schemas/AuthDeleteBody"
|
|
2471
2471
|
}
|
|
2472
2472
|
}
|
|
2473
2473
|
}
|
|
@@ -4872,7 +4872,7 @@
|
|
|
4872
4872
|
}
|
|
4873
4873
|
}
|
|
4874
4874
|
},
|
|
4875
|
-
"/comment/{id}/
|
|
4875
|
+
"/comment/{id}/delete": {
|
|
4876
4876
|
"parameters": [
|
|
4877
4877
|
{
|
|
4878
4878
|
"name": "id",
|
|
@@ -5291,7 +5291,7 @@
|
|
|
5291
5291
|
}
|
|
5292
5292
|
}
|
|
5293
5293
|
},
|
|
5294
|
-
"/tag/
|
|
5294
|
+
"/tag/delete/global/{vanity}": {
|
|
5295
5295
|
"parameters": [
|
|
5296
5296
|
{
|
|
5297
5297
|
"name": "vanity",
|
|
@@ -5316,7 +5316,7 @@
|
|
|
5316
5316
|
}
|
|
5317
5317
|
}
|
|
5318
5318
|
},
|
|
5319
|
-
"/tag/
|
|
5319
|
+
"/tag/delete/category/{vanity}": {
|
|
5320
5320
|
"parameters": [
|
|
5321
5321
|
{
|
|
5322
5322
|
"name": "vanity",
|
package/package.json
CHANGED