Skip to content

Commit

Permalink
Remove /stacks
Browse files Browse the repository at this point in the history
  • Loading branch information
tomleb committed Nov 22, 2024
1 parent c61a386 commit 750a693
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 56 deletions.
44 changes: 0 additions & 44 deletions open-api/immich-openapi-specs.json
Original file line number Diff line number Diff line change
Expand Up @@ -473,50 +473,6 @@
]
}
},
"/stacks": {
"get": {
"operationId": "searchStacks",
"parameters": [
{
"name": "primaryAssetId",
"required": false,
"in": "query",
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/StackResponseDto"
},
"type": "array"
}
}
},
"description": ""
}
},
"security": [
{
"bearer": []
},
{
"cookie": []
},
{
"api_key": []
}
],
"tags": [
"Stacks"
]
}
},
"/stacks/{id}": {
"get": {
"operationId": "getStack",
Expand Down
12 changes: 0 additions & 12 deletions open-api/typescript-sdk/src/fetch-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -311,18 +311,6 @@ export function getSharedLinkById({ id }: {
...opts
}));
}
export function searchStacks({ primaryAssetId }: {
primaryAssetId?: string;
}, opts?: Oazapfts.RequestOpts) {
return oazapfts.ok(oazapfts.fetchJson<{
status: 200;
data: StackResponseDto[];
}>(`/stacks${QS.query(QS.explode({
primaryAssetId
}))}`, {
...opts
}));
}
export function getStack({ id }: {
id: string;
}, opts?: Oazapfts.RequestOpts) {
Expand Down

0 comments on commit 750a693

Please sign in to comment.