api.fluff4.me 1.0.480 → 1.0.482
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 +7 -1
- package/openapi.json +50 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -660,6 +660,12 @@ export interface Paths {
|
|
|
660
660
|
search?: undefined
|
|
661
661
|
response: void | ErrorResponse
|
|
662
662
|
},
|
|
663
|
+
"/auth/patreon/patron/delete": {
|
|
664
|
+
method: "post"
|
|
665
|
+
body?: undefined
|
|
666
|
+
search?: undefined
|
|
667
|
+
response: Response<AuthorSelf> | ErrorResponse
|
|
668
|
+
},
|
|
663
669
|
"/author/create": {
|
|
664
670
|
method: "post"
|
|
665
671
|
body: AuthorCreateBody
|
|
@@ -1139,7 +1145,7 @@ export interface Paths {
|
|
|
1139
1145
|
method: "post"
|
|
1140
1146
|
body?: undefined
|
|
1141
1147
|
search?: undefined
|
|
1142
|
-
response:
|
|
1148
|
+
response: Response<AuthorSelf> | ErrorResponse
|
|
1143
1149
|
},
|
|
1144
1150
|
"/tag/create/global": {
|
|
1145
1151
|
method: "post"
|
package/openapi.json
CHANGED
|
@@ -3460,6 +3460,40 @@
|
|
|
3460
3460
|
}
|
|
3461
3461
|
}
|
|
3462
3462
|
},
|
|
3463
|
+
"/auth/patreon/patron/delete": {
|
|
3464
|
+
"post": {
|
|
3465
|
+
"responses": {
|
|
3466
|
+
"200": {
|
|
3467
|
+
"description": "200 response",
|
|
3468
|
+
"content": {
|
|
3469
|
+
"application/json": {
|
|
3470
|
+
"schema": {
|
|
3471
|
+
"type": "object",
|
|
3472
|
+
"properties": {
|
|
3473
|
+
"data": {
|
|
3474
|
+
"$ref": "#/components/schemas/AuthorSelf"
|
|
3475
|
+
}
|
|
3476
|
+
},
|
|
3477
|
+
"required": [
|
|
3478
|
+
"data"
|
|
3479
|
+
]
|
|
3480
|
+
}
|
|
3481
|
+
}
|
|
3482
|
+
}
|
|
3483
|
+
},
|
|
3484
|
+
"default": {
|
|
3485
|
+
"description": "Error",
|
|
3486
|
+
"content": {
|
|
3487
|
+
"application/json": {
|
|
3488
|
+
"schema": {
|
|
3489
|
+
"$ref": "#/components/schemas/ErrorResponse"
|
|
3490
|
+
}
|
|
3491
|
+
}
|
|
3492
|
+
}
|
|
3493
|
+
}
|
|
3494
|
+
}
|
|
3495
|
+
}
|
|
3496
|
+
},
|
|
3463
3497
|
"/author/create": {
|
|
3464
3498
|
"post": {
|
|
3465
3499
|
"requestBody": {
|
|
@@ -6850,7 +6884,22 @@
|
|
|
6850
6884
|
"post": {
|
|
6851
6885
|
"responses": {
|
|
6852
6886
|
"200": {
|
|
6853
|
-
"description": "200 response"
|
|
6887
|
+
"description": "200 response",
|
|
6888
|
+
"content": {
|
|
6889
|
+
"application/json": {
|
|
6890
|
+
"schema": {
|
|
6891
|
+
"type": "object",
|
|
6892
|
+
"properties": {
|
|
6893
|
+
"data": {
|
|
6894
|
+
"$ref": "#/components/schemas/AuthorSelf"
|
|
6895
|
+
}
|
|
6896
|
+
},
|
|
6897
|
+
"required": [
|
|
6898
|
+
"data"
|
|
6899
|
+
]
|
|
6900
|
+
}
|
|
6901
|
+
}
|
|
6902
|
+
}
|
|
6854
6903
|
},
|
|
6855
6904
|
"default": {
|
|
6856
6905
|
"description": "Error",
|
package/package.json
CHANGED