api.fluff4.me 1.0.460 → 1.0.461
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 -0
- package/openapi.json +19 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1114,6 +1114,12 @@ export interface Paths {
|
|
|
1114
1114
|
search?: undefined
|
|
1115
1115
|
response: Response<PatreonCampaignTier[]> | ErrorResponse
|
|
1116
1116
|
},
|
|
1117
|
+
"/patreon/campaign/remove": {
|
|
1118
|
+
method: "post"
|
|
1119
|
+
body?: undefined
|
|
1120
|
+
search?: undefined
|
|
1121
|
+
response: void | ErrorResponse
|
|
1122
|
+
},
|
|
1117
1123
|
"/tag/create/global": {
|
|
1118
1124
|
method: "post"
|
|
1119
1125
|
body: TagCreateGlobal
|
package/openapi.json
CHANGED
|
@@ -6735,6 +6735,25 @@
|
|
|
6735
6735
|
}
|
|
6736
6736
|
}
|
|
6737
6737
|
},
|
|
6738
|
+
"/patreon/campaign/remove": {
|
|
6739
|
+
"post": {
|
|
6740
|
+
"responses": {
|
|
6741
|
+
"200": {
|
|
6742
|
+
"description": "200 response"
|
|
6743
|
+
},
|
|
6744
|
+
"default": {
|
|
6745
|
+
"description": "Error",
|
|
6746
|
+
"content": {
|
|
6747
|
+
"application/json": {
|
|
6748
|
+
"schema": {
|
|
6749
|
+
"$ref": "#/components/schemas/ErrorResponse"
|
|
6750
|
+
}
|
|
6751
|
+
}
|
|
6752
|
+
}
|
|
6753
|
+
}
|
|
6754
|
+
}
|
|
6755
|
+
}
|
|
6756
|
+
},
|
|
6738
6757
|
"/tag/create/global": {
|
|
6739
6758
|
"post": {
|
|
6740
6759
|
"requestBody": {
|
package/package.json
CHANGED