mirror of
https://github.com/immich-app/immich.git
synced 2025-05-24 02:13:51 -04:00
parent
3bdd2612ce
commit
a6cd4b8427
@ -2358,6 +2358,7 @@
|
|||||||
"required": false,
|
"required": false,
|
||||||
"in": "query",
|
"in": "query",
|
||||||
"schema": {
|
"schema": {
|
||||||
|
"format": "uuid",
|
||||||
"type": "array",
|
"type": "array",
|
||||||
"items": {
|
"items": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
@ -4630,7 +4631,7 @@
|
|||||||
"required": true
|
"required": true
|
||||||
},
|
},
|
||||||
"responses": {
|
"responses": {
|
||||||
"201": {
|
"200": {
|
||||||
"content": {
|
"content": {
|
||||||
"application/json": {
|
"application/json": {
|
||||||
"schema": {
|
"schema": {
|
||||||
@ -4768,7 +4769,7 @@
|
|||||||
"required": true
|
"required": true
|
||||||
},
|
},
|
||||||
"responses": {
|
"responses": {
|
||||||
"201": {
|
"200": {
|
||||||
"content": {
|
"content": {
|
||||||
"application/json": {
|
"application/json": {
|
||||||
"schema": {
|
"schema": {
|
||||||
@ -8481,6 +8482,7 @@
|
|||||||
},
|
},
|
||||||
"personIds": {
|
"personIds": {
|
||||||
"items": {
|
"items": {
|
||||||
|
"format": "uuid",
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
"type": "array"
|
"type": "array"
|
||||||
@ -9611,6 +9613,7 @@
|
|||||||
},
|
},
|
||||||
"personIds": {
|
"personIds": {
|
||||||
"items": {
|
"items": {
|
||||||
|
"format": "uuid",
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
"type": "array"
|
"type": "array"
|
||||||
|
@ -2210,7 +2210,7 @@ export function searchMetadata({ metadataSearchDto }: {
|
|||||||
metadataSearchDto: MetadataSearchDto;
|
metadataSearchDto: MetadataSearchDto;
|
||||||
}, opts?: Oazapfts.RequestOpts) {
|
}, opts?: Oazapfts.RequestOpts) {
|
||||||
return oazapfts.ok(oazapfts.fetchJson<{
|
return oazapfts.ok(oazapfts.fetchJson<{
|
||||||
status: 201;
|
status: 200;
|
||||||
data: SearchResponseDto;
|
data: SearchResponseDto;
|
||||||
}>("/search/metadata", oazapfts.json({
|
}>("/search/metadata", oazapfts.json({
|
||||||
...opts,
|
...opts,
|
||||||
@ -2248,7 +2248,7 @@ export function searchSmart({ smartSearchDto }: {
|
|||||||
smartSearchDto: SmartSearchDto;
|
smartSearchDto: SmartSearchDto;
|
||||||
}, opts?: Oazapfts.RequestOpts) {
|
}, opts?: Oazapfts.RequestOpts) {
|
||||||
return oazapfts.ok(oazapfts.fetchJson<{
|
return oazapfts.ok(oazapfts.fetchJson<{
|
||||||
status: 201;
|
status: 200;
|
||||||
data: SearchResponseDto;
|
data: SearchResponseDto;
|
||||||
}>("/search/smart", oazapfts.json({
|
}>("/search/smart", oazapfts.json({
|
||||||
...opts,
|
...opts,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user