@futo-org/backups-api-client 0.35.1 → 0.37.0
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/dist/fetch-client.d.ts +2 -2
- package/package.json +1 -1
package/dist/fetch-client.d.ts
CHANGED
|
@@ -43,7 +43,7 @@ export type MetaResponseDto = {
|
|
|
43
43
|
};
|
|
44
44
|
export type ConnectionDto = {
|
|
45
45
|
id: string;
|
|
46
|
-
"type": "immich" | "restic";
|
|
46
|
+
"type": "immich" | "standalone" | "restic";
|
|
47
47
|
name: string;
|
|
48
48
|
createdAt: string;
|
|
49
49
|
lastSeenAt?: string | null;
|
|
@@ -56,7 +56,7 @@ export type ConnectionListResponseDto = {
|
|
|
56
56
|
connections: ConnectionDto[];
|
|
57
57
|
};
|
|
58
58
|
export type ConnectionCreateRequestDto = {
|
|
59
|
-
"type": "immich" | "restic";
|
|
59
|
+
"type": "immich" | "standalone" | "restic";
|
|
60
60
|
name: string;
|
|
61
61
|
};
|
|
62
62
|
export type ConnectionResponseDto = {
|
package/package.json
CHANGED