api.fluff4.me 1.0.433 → 1.0.434
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 +40 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1138,6 +1138,12 @@ export interface Paths {
|
|
|
1138
1138
|
search?: undefined
|
|
1139
1139
|
response: Response<CustomTag> | ErrorResponse
|
|
1140
1140
|
},
|
|
1141
|
+
"/tag/custom/get": {
|
|
1142
|
+
method: "get"
|
|
1143
|
+
body?: undefined
|
|
1144
|
+
search?: undefined
|
|
1145
|
+
response: Response<CustomTag[]> | ErrorResponse
|
|
1146
|
+
},
|
|
1141
1147
|
"/manifest/tags": {
|
|
1142
1148
|
method: "get"
|
|
1143
1149
|
body?: undefined
|
package/openapi.json
CHANGED
|
@@ -6937,6 +6937,46 @@
|
|
|
6937
6937
|
}
|
|
6938
6938
|
}
|
|
6939
6939
|
},
|
|
6940
|
+
"/tag/custom/get": {
|
|
6941
|
+
"get": {
|
|
6942
|
+
"responses": {
|
|
6943
|
+
"200": {
|
|
6944
|
+
"description": "200 response",
|
|
6945
|
+
"content": {
|
|
6946
|
+
"application/json": {
|
|
6947
|
+
"schema": {
|
|
6948
|
+
"type": "object",
|
|
6949
|
+
"properties": {
|
|
6950
|
+
"data": {
|
|
6951
|
+
"type": "array",
|
|
6952
|
+
"items": {
|
|
6953
|
+
"$ref": "#/components/schema/CustomTag"
|
|
6954
|
+
}
|
|
6955
|
+
}
|
|
6956
|
+
},
|
|
6957
|
+
"required": [
|
|
6958
|
+
"data"
|
|
6959
|
+
]
|
|
6960
|
+
}
|
|
6961
|
+
}
|
|
6962
|
+
}
|
|
6963
|
+
},
|
|
6964
|
+
"304": {
|
|
6965
|
+
"description": "304 response"
|
|
6966
|
+
},
|
|
6967
|
+
"default": {
|
|
6968
|
+
"description": "Error",
|
|
6969
|
+
"content": {
|
|
6970
|
+
"application/json": {
|
|
6971
|
+
"schema": {
|
|
6972
|
+
"$ref": "#/components/schemas/ErrorResponse"
|
|
6973
|
+
}
|
|
6974
|
+
}
|
|
6975
|
+
}
|
|
6976
|
+
}
|
|
6977
|
+
}
|
|
6978
|
+
}
|
|
6979
|
+
},
|
|
6940
6980
|
"/manifest/tags": {
|
|
6941
6981
|
"get": {
|
|
6942
6982
|
"responses": {
|
package/package.json
CHANGED