api.fluff4.me 1.0.951 → 1.0.953
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 +12 -0
- package/openapi.json +40 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -988,6 +988,10 @@ export interface SearchSearch {
|
|
|
988
988
|
text: string
|
|
989
989
|
}
|
|
990
990
|
|
|
991
|
+
export interface EmbedSearch {
|
|
992
|
+
url: string
|
|
993
|
+
}
|
|
994
|
+
|
|
991
995
|
export interface ErrorResponse {
|
|
992
996
|
code: number
|
|
993
997
|
detail?: string | null
|
|
@@ -2109,4 +2113,12 @@ export interface Paths {
|
|
|
2109
2113
|
}
|
|
2110
2114
|
response: Response<SearchResponse> | ErrorResponse
|
|
2111
2115
|
},
|
|
2116
|
+
"/embed": {
|
|
2117
|
+
method: "get"
|
|
2118
|
+
body?: undefined
|
|
2119
|
+
search: {
|
|
2120
|
+
url: string
|
|
2121
|
+
}
|
|
2122
|
+
response: void | ErrorResponse
|
|
2123
|
+
},
|
|
2112
2124
|
}
|
package/openapi.json
CHANGED
|
@@ -5607,6 +5607,17 @@
|
|
|
5607
5607
|
"text"
|
|
5608
5608
|
]
|
|
5609
5609
|
},
|
|
5610
|
+
"EmbedSearch": {
|
|
5611
|
+
"type": "object",
|
|
5612
|
+
"properties": {
|
|
5613
|
+
"url": {
|
|
5614
|
+
"type": "string"
|
|
5615
|
+
}
|
|
5616
|
+
},
|
|
5617
|
+
"required": [
|
|
5618
|
+
"url"
|
|
5619
|
+
]
|
|
5620
|
+
},
|
|
5610
5621
|
"ErrorResponse": {
|
|
5611
5622
|
"type": "object",
|
|
5612
5623
|
"properties": {
|
|
@@ -13039,6 +13050,35 @@
|
|
|
13039
13050
|
}
|
|
13040
13051
|
}
|
|
13041
13052
|
}
|
|
13053
|
+
},
|
|
13054
|
+
"/embed": {
|
|
13055
|
+
"get": {
|
|
13056
|
+
"parameters": [
|
|
13057
|
+
{
|
|
13058
|
+
"name": "url",
|
|
13059
|
+
"in": "query",
|
|
13060
|
+
"required": true,
|
|
13061
|
+
"schema": {
|
|
13062
|
+
"type": "string"
|
|
13063
|
+
}
|
|
13064
|
+
}
|
|
13065
|
+
],
|
|
13066
|
+
"responses": {
|
|
13067
|
+
"200": {
|
|
13068
|
+
"description": "200 response"
|
|
13069
|
+
},
|
|
13070
|
+
"default": {
|
|
13071
|
+
"description": "Error",
|
|
13072
|
+
"content": {
|
|
13073
|
+
"application/json": {
|
|
13074
|
+
"schema": {
|
|
13075
|
+
"$ref": "#/components/schemas/ErrorResponse"
|
|
13076
|
+
}
|
|
13077
|
+
}
|
|
13078
|
+
}
|
|
13079
|
+
}
|
|
13080
|
+
}
|
|
13081
|
+
}
|
|
13042
13082
|
}
|
|
13043
13083
|
}
|
|
13044
13084
|
}
|
package/package.json
CHANGED